diff --git a/.gitignore b/.gitignore index 0b6bd24070..06c5242898 100644 --- a/.gitignore +++ b/.gitignore @@ -64,13 +64,13 @@ core-java-io/hard_link.txt core-java-io/target_link.txt core-java/src/main/java/com/baeldung/manifest/MANIFEST.MF ethereum/logs/ -jmeter/src/main/resources/*-JMeter.csv -jmeter/src/main/resources/*-Basic*.csv -jmeter/src/main/resources/*-JMeter*.csv -jmeter/src/main/resources/*ReportsDashboard*.csv -jmeter/src/main/resources/dashboard/*ReportsDashboard*.csv -jmeter/src/main/resources/*FileExtractionExample.csv -jmeter/src/main/resources/*_Summary-Report.csv +testing-modules/jmeter/src/main/resources/*-JMeter.csv +testing-modules/jmeter/src/main/resources/*-Basic*.csv +testing-modules/jmeter/src/main/resources/*-JMeter*.csv +testing-modules/jmeter/src/main/resources/*ReportsDashboard*.csv +testing-modules/jmeter/src/main/resources/dashboard/*ReportsDashboard*.csv +testing-modules/jmeter/src/main/resources/*FileExtractionExample.csv +testing-modules/jmeter/src/main/resources/*_Summary-Report.csv ninja/devDb.mv.db @@ -128,3 +128,6 @@ persistence-modules/neo4j/data/** /deep-shallow-copy/.mvn/wrapper /deep-shallow-copy/mvnw /deep-shallow-copy/mvnw.cmd + +#spring-5-webflux-2 +**/testdb.mv.db \ No newline at end of file diff --git a/algorithms-modules/algorithms-miscellaneous-2/pom.xml b/algorithms-modules/algorithms-miscellaneous-2/pom.xml index ca14533e82..e04c22680a 100644 --- a/algorithms-modules/algorithms-miscellaneous-2/pom.xml +++ b/algorithms-modules/algorithms-miscellaneous-2/pom.xml @@ -14,16 +14,6 @@ - - org.apache.commons - commons-math3 - ${commons-math3.version} - - - commons-codec - commons-codec - ${commons-codec.version} - org.projectlombok lombok diff --git a/algorithms-modules/algorithms-miscellaneous-2/src/test/java/com/baeldung/algorithms/DijkstraAlgorithmLongRunningUnitTest.java b/algorithms-modules/algorithms-miscellaneous-2/src/test/java/com/baeldung/algorithms/DijkstraAlgorithmLongRunningUnitTest.java index 7e80d335be..849eb86427 100644 --- a/algorithms-modules/algorithms-miscellaneous-2/src/test/java/com/baeldung/algorithms/DijkstraAlgorithmLongRunningUnitTest.java +++ b/algorithms-modules/algorithms-miscellaneous-2/src/test/java/com/baeldung/algorithms/DijkstraAlgorithmLongRunningUnitTest.java @@ -1,7 +1,5 @@ package com.baeldung.algorithms; - - import com.baeldung.algorithms.ga.dijkstra.Dijkstra; import com.baeldung.algorithms.ga.dijkstra.Graph; import com.baeldung.algorithms.ga.dijkstra.Node; diff --git a/algorithms-modules/algorithms-miscellaneous-7/README.md b/algorithms-modules/algorithms-miscellaneous-7/README.md index 87a1ee15ec..ac761c3db6 100644 --- a/algorithms-modules/algorithms-miscellaneous-7/README.md +++ b/algorithms-modules/algorithms-miscellaneous-7/README.md @@ -5,4 +5,5 @@ - [Getting Pixel Array From Image in Java](https://www.baeldung.com/java-getting-pixel-array-from-image) - [Calculate Distance Between Two Coordinates in Java](https://www.baeldung.com/java-find-distance-between-points) - [Rotate Arrays in Java](https://www.baeldung.com/java-rotate-arrays) +- [Find Missing Number From a Given Array in Java](https://www.baeldung.com/java-array-find-missing-number) - More articles: [[<-- prev]](/algorithms-miscellaneous-6) diff --git a/algorithms-modules/algorithms-miscellaneous-7/src/test/java/com/baeldung/algorithms/weightedaverage/WeightedAverageUnitTest.java b/algorithms-modules/algorithms-miscellaneous-7/src/test/java/com/baeldung/algorithms/weightedaverage/WeightedAverageUnitTest.java new file mode 100644 index 0000000000..24082d6ac7 --- /dev/null +++ b/algorithms-modules/algorithms-miscellaneous-7/src/test/java/com/baeldung/algorithms/weightedaverage/WeightedAverageUnitTest.java @@ -0,0 +1,153 @@ +package com.baeldung.algorithms.weightedaverage; + +import org.junit.jupiter.api.Test; + +import java.util.*; +import java.util.function.BiConsumer; +import java.util.function.BinaryOperator; +import java.util.function.Function; +import java.util.function.Supplier; +import java.util.stream.Collector; +import java.util.stream.IntStream; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class WeightedAverageUnitTest { + + private List values = Arrays.asList( + new Values(1, 10), + new Values(3, 20), + new Values(5, 30), + new Values(7, 50), + new Values(9, 40) + ); + + private Double expected = 6.2; + + @Test + void twoPass() { + double top = values.stream() + .mapToDouble(v -> v.value * v.weight) + .sum(); + double bottom = values.stream() + .mapToDouble(v -> v.weight) + .sum(); + + double result = top / bottom; + assertEquals(expected, result); + } + + @Test + void onePass() { + double top = 0; + double bottom = 0; + + for (Values v : values) { + top += (v.value * v.weight); + bottom += v.weight; + } + + double result = top / bottom; + assertEquals(expected, result); + } + + @Test + void expanding() { + double result = values.stream() + .flatMap(v -> Collections.nCopies(v.weight, v.value).stream()) + .mapToInt(v -> v) + .average() + .getAsDouble(); + assertEquals(expected, result); + } + + @Test + void reduce() { + class WeightedAverage { + final double top; + final double bottom; + + public WeightedAverage(double top, double bottom) { + this.top = top; + this.bottom = bottom; + } + + double average() { + return top / bottom; + } + } + + double result = values.stream() + .reduce(new WeightedAverage(0, 0), + (acc, next) -> new WeightedAverage( + acc.top + (next.value * next.weight), + acc.bottom + next.weight), + (left, right) -> new WeightedAverage( + left.top + right.top, + left.bottom + right.bottom)) + .average(); + assertEquals(expected, result); + } + + @Test + void customCollector() { + class WeightedAverage implements Collector { + class RunningTotals { + double top; + double bottom; + + public RunningTotals() { + this.top = 0; + this.bottom = 0; + } + } + + @Override + public Supplier supplier() { + return RunningTotals::new; + } + + @Override + public BiConsumer accumulator() { + return (current, next) -> { + current.top += (next.value * next.weight); + current.bottom += next.weight; + }; + } + + @Override + public BinaryOperator combiner() { + return (left, right) -> { + left.top += right.top; + left.bottom += right.bottom; + + return left; + }; + } + + @Override + public Function finisher() { + return rt -> rt.top / rt.bottom; + } + + @Override + public Set characteristics() { + return Collections.singleton(Characteristics.UNORDERED); + } + } + + double result = values.stream() + .collect(new WeightedAverage()); + assertEquals(expected, result); + } + + private static class Values { + int value; + int weight; + + public Values(int value, int weight) { + this.value = value; + this.weight = weight; + } + } +} diff --git a/apache-cxf-modules/cxf-aegis/pom.xml b/apache-cxf-modules/cxf-aegis/pom.xml index 6b9e026cdd..d013aabc65 100644 --- a/apache-cxf-modules/cxf-aegis/pom.xml +++ b/apache-cxf-modules/cxf-aegis/pom.xml @@ -20,8 +20,4 @@ - - 4.0.0 - - \ No newline at end of file diff --git a/apache-cxf-modules/cxf-introduction/pom.xml b/apache-cxf-modules/cxf-introduction/pom.xml index fdcd100cc5..5e68bf3cbf 100644 --- a/apache-cxf-modules/cxf-introduction/pom.xml +++ b/apache-cxf-modules/cxf-introduction/pom.xml @@ -48,7 +48,6 @@ - 4.0.0 4.0.0 3.0.0 diff --git a/apache-cxf-modules/cxf-jaxrs-implementation/pom.xml b/apache-cxf-modules/cxf-jaxrs-implementation/pom.xml index 8418853b1e..978c5a51ed 100644 --- a/apache-cxf-modules/cxf-jaxrs-implementation/pom.xml +++ b/apache-cxf-modules/cxf-jaxrs-implementation/pom.xml @@ -16,12 +16,12 @@ org.apache.cxf cxf-rt-frontend-jaxrs - 4.0.0 + ${cxf.version} org.apache.cxf cxf-rt-transports-http-jetty - 4.0.0 + ${cxf.version} jakarta.xml.ws diff --git a/apache-cxf-modules/cxf-spring/pom.xml b/apache-cxf-modules/cxf-spring/pom.xml index 67a61e8200..234a19eebc 100644 --- a/apache-cxf-modules/cxf-spring/pom.xml +++ b/apache-cxf-modules/cxf-spring/pom.xml @@ -115,6 +115,7 @@ + 3.1.8 5.3.25 1.6.1 1.2 diff --git a/apache-cxf-modules/pom.xml b/apache-cxf-modules/pom.xml index 63c4e16747..245a31614b 100644 --- a/apache-cxf-modules/pom.xml +++ b/apache-cxf-modules/pom.xml @@ -35,7 +35,7 @@ - 3.1.8 + 4.0.0 \ No newline at end of file diff --git a/apache-cxf-modules/sse-jaxrs/sse-jaxrs-client/pom.xml b/apache-cxf-modules/sse-jaxrs/sse-jaxrs-client/pom.xml index ce2b0059c3..b092345334 100644 --- a/apache-cxf-modules/sse-jaxrs/sse-jaxrs-client/pom.xml +++ b/apache-cxf-modules/sse-jaxrs/sse-jaxrs-client/pom.xml @@ -16,12 +16,12 @@ org.apache.cxf cxf-rt-rs-client - ${cxf-version} + ${cxf.version} org.apache.cxf cxf-rt-rs-sse - ${cxf-version} + ${cxf.version} jakarta.ws.rs @@ -60,7 +60,6 @@ - 4.0.0 3.1.0 diff --git a/apache-kafka-2/README.md b/apache-kafka-2/README.md index 3aa8fcf4ad..bc3a8885bf 100644 --- a/apache-kafka-2/README.md +++ b/apache-kafka-2/README.md @@ -15,3 +15,4 @@ You can build the project from the command line using: *mvn clean install*, or i - [bootstrap-server in Kafka Configuration](https://www.baeldung.com/java-kafka-bootstrap-server) - [Introduction to Apache Kafka](https://www.baeldung.com/apache-kafka) - [Ensuring Message Ordering in Kafka: Strategies and Configurations](https://www.baeldung.com/kafka-message-ordering) +- [Read Multiple Messages with Apache Kafka](https://www.baeldung.com/kafka-read-multiple-messages) diff --git a/apache-poi-3/README.md b/apache-poi-3/README.md index 9e9d6a94eb..b7272d5e69 100644 --- a/apache-poi-3/README.md +++ b/apache-poi-3/README.md @@ -1,3 +1,4 @@ ## Relevant Articles - [How To Convert Excel Data Into List Of Java Objects](https://www.baeldung.com/java-convert-excel-data-into-list) - [Expand Columns with Apache POI](https://www.baeldung.com/java-apache-poi-expand-columns) +- [Apply Bold Text Style for an Entire Row Using Apache POI](https://www.baeldung.com/appache-poi-apply-bold-text-style-entire-row) diff --git a/apache-poi-3/pom.xml b/apache-poi-3/pom.xml index 1ac42f13a3..8d0204669f 100644 --- a/apache-poi-3/pom.xml +++ b/apache-poi-3/pom.xml @@ -76,7 +76,7 @@ - 5.2.3 + 5.2.5 4.1.1 0.15.7 2.6.12 diff --git a/apache-poi-3/src/main/java/com/baeldung/poi/rowstyle/PoiUtils.java b/apache-poi-3/src/main/java/com/baeldung/poi/rowstyle/PoiUtils.java new file mode 100644 index 0000000000..f40c3ad821 --- /dev/null +++ b/apache-poi-3/src/main/java/com/baeldung/poi/rowstyle/PoiUtils.java @@ -0,0 +1,53 @@ +package com.baeldung.poi.rowstyle; + +import java.io.FileOutputStream; +import java.io.IOException; +import java.nio.file.Path; + +import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.CellStyle; +import org.apache.poi.ss.usermodel.Font; +import org.apache.poi.ss.usermodel.Row; +import org.apache.poi.ss.usermodel.Sheet; +import org.apache.poi.ss.usermodel.Workbook; + +public class PoiUtils { + + private PoiUtils() { + } + + private static void newCell(Row row, String value) { + short cellNum = row.getLastCellNum(); + if (cellNum == -1) + cellNum = 0; + + Cell cell = row.createCell(cellNum); + cell.setCellValue(value); + } + + public static Row newRow(Sheet sheet, String... rowValues) { + Row row = sheet.createRow(sheet.getLastRowNum() + 1); + + for (String value : rowValues) { + newCell(row, value); + } + + return row; + } + + public static CellStyle boldFontStyle(Workbook workbook) { + Font boldFont = workbook.createFont(); + boldFont.setBold(true); + + CellStyle boldStyle = workbook.createCellStyle(); + boldStyle.setFont(boldFont); + + return boldStyle; + } + + public static void write(Workbook workbook, Path path) throws IOException { + try (FileOutputStream fileOut = new FileOutputStream(path.toFile())) { + workbook.write(fileOut); + } + } +} diff --git a/apache-poi-3/src/test/java/com/baeldung/poi/rowstyle/PoiBoldStyleIntegrationTest.java b/apache-poi-3/src/test/java/com/baeldung/poi/rowstyle/PoiBoldStyleIntegrationTest.java new file mode 100644 index 0000000000..dd031cf7cf --- /dev/null +++ b/apache-poi-3/src/test/java/com/baeldung/poi/rowstyle/PoiBoldStyleIntegrationTest.java @@ -0,0 +1,150 @@ +package com.baeldung.poi.rowstyle; + +import static org.junit.jupiter.api.Assertions.assertNotEquals; +import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; + +import org.apache.poi.hssf.usermodel.HSSFCellStyle; +import org.apache.poi.hssf.usermodel.HSSFWorkbook; +import org.apache.poi.openxml4j.exceptions.InvalidFormatException; +import org.apache.poi.ss.usermodel.CellStyle; +import org.apache.poi.ss.usermodel.Row; +import org.apache.poi.ss.usermodel.Sheet; +import org.apache.poi.ss.usermodel.Workbook; +import org.apache.poi.xssf.streaming.SXSSFWorkbook; +import org.apache.poi.xssf.usermodel.XSSFCellStyle; +import org.apache.poi.xssf.usermodel.XSSFWorkbook; +import org.junit.jupiter.api.Test; + +class PoiBoldStyleIntegrationTest { + + private void writeSampleSheet(Path destination, Workbook workbook) throws IOException { + Sheet sheet = workbook.createSheet(); + CellStyle boldStyle = PoiUtils.boldFontStyle(workbook); + + Row header = PoiUtils.newRow(sheet, "Name", "Value", "Details"); + header.setRowStyle(boldStyle); + + PoiUtils.newRow(sheet, "Albert", "A", "First"); + PoiUtils.newRow(sheet, "Jane", "B", "Second"); + PoiUtils.newRow(sheet, "Zack", "C", "Third"); + + PoiUtils.write(workbook, destination); + } + + private void assertRowStyleAppliedAndDefaultCellStylesDontMatch(Path sheetFile) throws IOException, InvalidFormatException { + try (Workbook workbook = new XSSFWorkbook(sheetFile.toFile())) { + Sheet sheet = workbook.getSheetAt(0); + Row row0 = sheet.getRow(0); + + XSSFCellStyle rowStyle = (XSSFCellStyle) row0.getRowStyle(); + assertTrue(rowStyle.getFont() + .getBold()); + + row0.forEach(cell -> { + XSSFCellStyle style = (XSSFCellStyle) cell.getCellStyle(); + assertNotEquals(rowStyle, style); + }); + + Row row1 = sheet.getRow(1); + XSSFCellStyle row1Style = (XSSFCellStyle) row1.getRowStyle(); + assertNull(row1Style); + + Files.delete(sheetFile); + } + } + + @Test + void givenXssfWorkbook_whenSetRowStyle1stRow_thenOnly1stRowStyled() throws IOException, InvalidFormatException { + Path sheetFile = Files.createTempFile("xssf-row-style", ".xlsx"); + + try (Workbook workbook = new XSSFWorkbook()) { + writeSampleSheet(sheetFile, workbook); + } + + assertRowStyleAppliedAndDefaultCellStylesDontMatch(sheetFile); + } + + @Test + void givenSxssfWorkbook_whenSetRowStyle_thenOnly1stRowStyled() throws IOException, InvalidFormatException { + Path sheetFile = Files.createTempFile("sxssf-row-style", ".xlsx"); + + try (Workbook workbook = new SXSSFWorkbook()) { + writeSampleSheet(sheetFile, workbook); + } + + assertRowStyleAppliedAndDefaultCellStylesDontMatch(sheetFile); + } + + @Test + void givenHssfWorkbook_whenSetRowStyle_thenOnly1stRowStyled() throws IOException { + Path sheetFile = Files.createTempFile("hssf-row-style", ".xls"); + + try (Workbook workbook = new HSSFWorkbook()) { + writeSampleSheet(sheetFile, workbook); + } + + try (Workbook workbook = new HSSFWorkbook(Files.newInputStream(sheetFile))) { + Sheet sheet = workbook.getSheetAt(0); + Row row0 = sheet.getRow(0); + + HSSFCellStyle rowStyle = (HSSFCellStyle) row0.getRowStyle(); + assertTrue(rowStyle.getFont(workbook) + .getBold()); + + row0.forEach(cell -> { + HSSFCellStyle style = (HSSFCellStyle) cell.getCellStyle(); + assertNotEquals(rowStyle, style); + }); + + Row row1 = sheet.getRow(1); + HSSFCellStyle row1Style = (HSSFCellStyle) row1.getRowStyle(); + assertNull(row1Style); + + Files.delete(sheetFile); + } + } + + @Test + void givenXssfWorkbook_whenSetCellStyleForEachRow_thenAllCellsContainStyle() throws IOException, InvalidFormatException { + Path sheetFile = Files.createTempFile("xssf-cell-style", ".xlsx"); + + try (Workbook workbook = new XSSFWorkbook()) { + Sheet sheet = workbook.createSheet(); + CellStyle boldStyle = PoiUtils.boldFontStyle(workbook); + + Row header = PoiUtils.newRow(sheet, "Name", "Value", "Details"); + header.forEach(cell -> cell.setCellStyle(boldStyle)); + + PoiUtils.newRow(sheet, "Albert", "A", "First"); + PoiUtils.newRow(sheet, "Jane", "B", "Second"); + PoiUtils.newRow(sheet, "Zack", "C", "Third"); + + PoiUtils.write(workbook, sheetFile); + } + + try (Workbook workbook = new XSSFWorkbook(sheetFile.toFile())) { + Sheet sheet = workbook.getSheetAt(0); + Row row0 = sheet.getRow(0); + + XSSFCellStyle rowStyle = (XSSFCellStyle) row0.getRowStyle(); + assertNull(rowStyle); + + row0.forEach(cell -> { + XSSFCellStyle style = (XSSFCellStyle) cell.getCellStyle(); + assertTrue(style.getFont() + .getBold()); + }); + + Row row1 = sheet.getRow(1); + rowStyle = (XSSFCellStyle) row1.getRowStyle(); + assertNull(rowStyle); + + Files.delete(sheetFile); + } + } +} diff --git a/aws-modules/aws-lambda-modules/lambda-function/pom.xml b/aws-modules/aws-lambda-modules/lambda-function/pom.xml index 9fff7d1d9a..8c56aaabed 100644 --- a/aws-modules/aws-lambda-modules/lambda-function/pom.xml +++ b/aws-modules/aws-lambda-modules/lambda-function/pom.xml @@ -97,7 +97,7 @@ 1.1.1 3.11.0 1.2.1 - 2.8.2 + 2.10.1 \ No newline at end of file diff --git a/core-java-modules/core-java-11-3/pom.xml b/core-java-modules/core-java-11-3/pom.xml index 0161f4dcca..cacbc9089c 100644 --- a/core-java-modules/core-java-11-3/pom.xml +++ b/core-java-modules/core-java-11-3/pom.xml @@ -46,7 +46,7 @@ 11 11 2.16.0 - 2.10 + 2.10.1 \ No newline at end of file diff --git a/core-java-modules/core-java-21/README.md b/core-java-modules/core-java-21/README.md index ffb999a4ba..fcb9faaace 100644 --- a/core-java-modules/core-java-21/README.md +++ b/core-java-modules/core-java-21/README.md @@ -3,3 +3,4 @@ - [String Templates in Java 21](https://www.baeldung.com/java-21-string-templates) - [Unnamed Classes and Instance Main Methods in Java 21](https://www.baeldung.com/java-21-unnamed-class-instance-main) - [Unnamed Patterns and Variables in Java 21](https://www.baeldung.com/java-unnamed-patterns-variables) +- [JFR View Command in Java 21](https://www.baeldung.com/java-flight-recorder-view) diff --git a/core-java-modules/core-java-21/src/main/java/com/baeldung/jfrview/JFRExample.java b/core-java-modules/core-java-21/src/main/java/com/baeldung/jfrview/JFRExample.java new file mode 100644 index 0000000000..98eb29fe15 --- /dev/null +++ b/core-java-modules/core-java-21/src/main/java/com/baeldung/jfrview/JFRExample.java @@ -0,0 +1,21 @@ +package com.baeldung.jfrview; + +import java.util.ArrayList; +import java.util.List; + +public class JFRExample { + public static void main(String[] args) { + JFRExample se = new JFRExample(); + se.insertToList(new ArrayList<>()); + } + + private void insertToList(List list) { + try { + while (true) { + list.add(new Object()); + } + } catch (OutOfMemoryError e) { + System.out.println("Out of Memory. Exiting"); + } + } +} diff --git a/core-java-modules/core-java-8-datetime-2/README.md b/core-java-modules/core-java-8-datetime-2/README.md index 6fe450816e..e689e7257f 100644 --- a/core-java-modules/core-java-8-datetime-2/README.md +++ b/core-java-modules/core-java-8-datetime-2/README.md @@ -9,4 +9,8 @@ - [Round the Date in Java](https://www.baeldung.com/java-round-the-date) - [Representing Furthest Possible Date in Java](https://www.baeldung.com/java-date-represent-max) - [Retrieving Unix Time in Java](https://www.baeldung.com/java-retrieve-unix-time) +- [Calculate Months Between Two Dates in Java](https://www.baeldung.com/java-months-difference-two-dates) +- [Format LocalDate to ISO 8601 With T and Z](https://www.baeldung.com/java-format-localdate-iso-8601-t-z) +- [Check if Two Date Ranges Overlap](https://www.baeldung.com/java-check-two-date-ranges-overlap) +- [Difference between ZoneOffset.UTC and ZoneId.of(“UTC”)](https://www.baeldung.com/java-zoneoffset-utc-zoneid-of) - [[<-- Prev]](/core-java-modules/core-java-datetime-java8-1) diff --git a/core-java-modules/core-java-8-datetime-2/src/main/java/com/baeldung/daterangeoverlap/DateRangeOverlapChecker.java b/core-java-modules/core-java-8-datetime-2/src/main/java/com/baeldung/daterangeoverlap/DateRangeOverlapChecker.java new file mode 100644 index 0000000000..9b898c87f5 --- /dev/null +++ b/core-java-modules/core-java-8-datetime-2/src/main/java/com/baeldung/daterangeoverlap/DateRangeOverlapChecker.java @@ -0,0 +1,46 @@ +package com.baeldung.daterangeoverlap; + +import java.time.LocalDate; +import java.util.Calendar; + +import org.joda.time.DateTime; +import org.joda.time.Interval; + +public class DateRangeOverlapChecker { + + public static boolean isOverlapUsingCalendarAndDuration(Calendar start1, Calendar end1, Calendar start2, Calendar end2) { + long overlap = Math.min(end1.getTimeInMillis(), end2.getTimeInMillis()) - Math.max(start1.getTimeInMillis(), start2.getTimeInMillis()); + return overlap >= 0; + } + + public static boolean isOverlapUsingLocalDateAndDuration(LocalDate start1, LocalDate end1, LocalDate start2, LocalDate end2) { + long overlap = Math.min(end1.toEpochDay(), end2.toEpochDay()) - Math.max(start1.toEpochDay(), start2.toEpochDay()); + return overlap >= 0; + } + + public static boolean isOverlapUsingJodaTime(DateTime start1, DateTime end1, DateTime start2, DateTime end2) { + Interval interval1 = new Interval(start1, end1); + Interval interval2 = new Interval(start2, end2); + return interval1.overlaps(interval2); + } + + public static boolean isOverlapUsingCalendarAndCondition(Calendar start1, Calendar end1, Calendar start2, Calendar end2) { + return !(end1.before(start2) || start1.after(end2)); + } + + public static boolean isOverlapUsingLocalDateAndCondition(LocalDate start1, LocalDate end1, LocalDate start2, LocalDate end2) { + return !(end1.isBefore(start2) || start1.isAfter(end2)); + } + + public static boolean isOverlapUsingCalendarAndFindMin(Calendar start1, Calendar end1, Calendar start2, Calendar end2) { + long overlap1 = Math.min(end1.getTimeInMillis() - start1.getTimeInMillis(), end1.getTimeInMillis() - start2.getTimeInMillis()); + long overlap2 = Math.min(end2.getTimeInMillis() - start2.getTimeInMillis(), end2.getTimeInMillis() - start1.getTimeInMillis()); + return Math.min(overlap1, overlap2) / (24 * 60 * 60 * 1000) >= 0; + } + + public static boolean isOverlapUsingLocalDateAndFindMin(LocalDate start1, LocalDate end1, LocalDate start2, LocalDate end2) { + long overlap1 = Math.min(end1.toEpochDay() - start1.toEpochDay(), end1.toEpochDay() - start2.toEpochDay()); + long overlap2 = Math.min(end2.toEpochDay() - start2.toEpochDay(), end2.toEpochDay() - start1.toEpochDay()); + return Math.min(overlap1, overlap2) >= 0; + } +} diff --git a/core-java-modules/core-java-8-datetime-2/src/test/java/com/baeldung/daterangeoverlap/DateRangeOverlapCheckerUnitTest.java b/core-java-modules/core-java-8-datetime-2/src/test/java/com/baeldung/daterangeoverlap/DateRangeOverlapCheckerUnitTest.java new file mode 100644 index 0000000000..5811cb6552 --- /dev/null +++ b/core-java-modules/core-java-8-datetime-2/src/test/java/com/baeldung/daterangeoverlap/DateRangeOverlapCheckerUnitTest.java @@ -0,0 +1,158 @@ +package com.baeldung.daterangeoverlap; + +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +import java.time.LocalDate; +import java.util.Calendar; + +import org.joda.time.DateTime; +import org.junit.Test; + +public class DateRangeOverlapCheckerUnitTest { + + @Test + public void givenPartialOverlappingRanges_thenReturnsTrue() { + Calendar start1 = Calendar.getInstance(); + start1.set(2024, 11, 15); + Calendar end1 = Calendar.getInstance(); + end1.set(2024, 11, 20); + + Calendar start2 = Calendar.getInstance(); + start2.set(2024, 11, 18); + Calendar end2 = Calendar.getInstance(); + end2.set(2024, 11, 22); + + LocalDate startLD1 = LocalDate.of(2024, 12, 15); + LocalDate endLD1 = LocalDate.of(2024, 12, 20); + + LocalDate startLD2 = LocalDate.of(2024, 12, 18); + LocalDate endLD2 = LocalDate.of(2024, 12, 22); + + DateTime startJT1 = new DateTime(2024, 12, 15, 0, 0); + DateTime endJT1 = new DateTime(2024, 12, 20, 0, 0); + + DateTime startJT2 = new DateTime(2024, 12, 18, 0, 0); + DateTime endJT2 = new DateTime(2024, 12, 22, 0, 0); + + assertTrue(DateRangeOverlapChecker.isOverlapUsingCalendarAndDuration(start1, end1, start2, end2)); + assertTrue(DateRangeOverlapChecker.isOverlapUsingLocalDateAndDuration(startLD1, endLD1, startLD2, endLD2)); + + assertTrue(DateRangeOverlapChecker.isOverlapUsingCalendarAndCondition(start1, end1, start2, end2)); + assertTrue(DateRangeOverlapChecker.isOverlapUsingLocalDateAndCondition(startLD1, endLD1, startLD2, endLD2)); + + assertTrue(DateRangeOverlapChecker.isOverlapUsingCalendarAndFindMin(start1, end1, start2, end2)); + assertTrue(DateRangeOverlapChecker.isOverlapUsingLocalDateAndFindMin(startLD1, endLD1, startLD2, endLD2)); + + assertTrue(DateRangeOverlapChecker.isOverlapUsingJodaTime(startJT1, endJT1, startJT2, endJT2)); + } + + @Test + public void givenFullOverlappingRanges_thenReturnsTrue() { + Calendar start1 = Calendar.getInstance(); + start1.set(2024, 11, 15); + Calendar end1 = Calendar.getInstance(); + end1.set(2024, 11, 20); + + Calendar start2 = Calendar.getInstance(); + start2.set(2024, 11, 16); + Calendar end2 = Calendar.getInstance(); + end2.set(2024, 11, 18); + + LocalDate startLD1 = LocalDate.of(2024, 12, 15); + LocalDate endLD1 = LocalDate.of(2024, 12, 20); + + LocalDate startLD2 = LocalDate.of(2024, 12, 16); + LocalDate endLD2 = LocalDate.of(2024, 12, 18); + + DateTime startJT1 = new DateTime(2024, 12, 15, 0, 0); + DateTime endJT1 = new DateTime(2024, 12, 20, 0, 0); + + DateTime startJT2 = new DateTime(2024, 12, 16, 0, 0); + DateTime endJT2 = new DateTime(2024, 12, 18, 0, 0); + + assertTrue(DateRangeOverlapChecker.isOverlapUsingCalendarAndDuration(start1, end1, start2, end2)); + assertTrue(DateRangeOverlapChecker.isOverlapUsingLocalDateAndDuration(startLD1, endLD1, startLD2, endLD2)); + + assertTrue(DateRangeOverlapChecker.isOverlapUsingCalendarAndCondition(start1, end1, start2, end2)); + assertTrue(DateRangeOverlapChecker.isOverlapUsingLocalDateAndCondition(startLD1, endLD1, startLD2, endLD2)); + + assertTrue(DateRangeOverlapChecker.isOverlapUsingCalendarAndFindMin(start1, end1, start2, end2)); + assertTrue(DateRangeOverlapChecker.isOverlapUsingLocalDateAndFindMin(startLD1, endLD1, startLD2, endLD2)); + + assertTrue(DateRangeOverlapChecker.isOverlapUsingJodaTime(startJT1, endJT1, startJT2, endJT2)); + } + + @Test + public void givenConsecutiveRanges_thenReturnsFalse() { + Calendar start1 = Calendar.getInstance(); + start1.set(2024, 11, 15); + Calendar end1 = Calendar.getInstance(); + end1.set(2024, 11, 20); + + Calendar start2 = Calendar.getInstance(); + start2.set(2024, 11, 21); + Calendar end2 = Calendar.getInstance(); + end2.set(2024, 11, 24); + + LocalDate startLD1 = LocalDate.of(2024, 12, 15); + LocalDate endLD1 = LocalDate.of(2024, 12, 20); + + LocalDate startLD2 = LocalDate.of(2024, 12, 21); + LocalDate endLD2 = LocalDate.of(2024, 12, 24); + + DateTime startJT1 = new DateTime(2024, 12, 15, 0, 0); + DateTime endJT1 = new DateTime(2024, 12, 20, 0, 0); + + DateTime startJT2 = new DateTime(2024, 12, 21, 0, 0); + DateTime endJT2 = new DateTime(2024, 12, 24, 0, 0); + + assertFalse(DateRangeOverlapChecker.isOverlapUsingCalendarAndDuration(start1, end1, start2, end2)); + assertFalse(DateRangeOverlapChecker.isOverlapUsingLocalDateAndDuration(startLD1, endLD1, startLD2, endLD2)); + + assertFalse(DateRangeOverlapChecker.isOverlapUsingCalendarAndCondition(start1, end1, start2, end2)); + assertFalse(DateRangeOverlapChecker.isOverlapUsingLocalDateAndCondition(startLD1, endLD1, startLD2, endLD2)); + + assertFalse(DateRangeOverlapChecker.isOverlapUsingCalendarAndFindMin(start1, end1, start2, end2)); + assertFalse(DateRangeOverlapChecker.isOverlapUsingLocalDateAndFindMin(startLD1, endLD1, startLD2, endLD2)); + + assertFalse(DateRangeOverlapChecker.isOverlapUsingJodaTime(startJT1, endJT1, startJT2, endJT2)); + } + + @Test + public void givenZeroRangeRanges_thenReturnsTrue() { + Calendar start1 = Calendar.getInstance(); + start1.set(2024, 11, 15); + Calendar end1 = Calendar.getInstance(); + end1.set(2024, 11, 20); + + Calendar start2 = Calendar.getInstance(); + start2.set(2024, 11, 20); + Calendar end2 = Calendar.getInstance(); + end2.set(2024, 11, 20); + + LocalDate startLD1 = LocalDate.of(2024, 12, 15); + LocalDate endLD1 = LocalDate.of(2024, 12, 20); + + LocalDate startLD2 = LocalDate.of(2024, 12, 20); + LocalDate endLD2 = LocalDate.of(2024, 12, 20); + + DateTime startJT1 = new DateTime(2024, 12, 15, 0, 0); + DateTime endJT1 = new DateTime(2024, 12, 20, 0, 0); + + DateTime startJT2 = new DateTime(2024, 12, 20, 0, 0); + DateTime endJT2 = new DateTime(2024, 12, 20, 0, 0); + + assertTrue(DateRangeOverlapChecker.isOverlapUsingCalendarAndDuration(start1, end1, start2, end2)); + assertTrue(DateRangeOverlapChecker.isOverlapUsingLocalDateAndDuration(startLD1, endLD1, startLD2, endLD2)); + + assertTrue(DateRangeOverlapChecker.isOverlapUsingCalendarAndCondition(start1, end1, start2, end2)); + assertTrue(DateRangeOverlapChecker.isOverlapUsingLocalDateAndCondition(startLD1, endLD1, startLD2, endLD2)); + + assertTrue(DateRangeOverlapChecker.isOverlapUsingCalendarAndFindMin(start1, end1, start2, end2)); + assertTrue(DateRangeOverlapChecker.isOverlapUsingLocalDateAndFindMin(startLD1, endLD1, startLD2, endLD2)); + + //the overlaps method considers two intervals as overlapping only if they have a non-zero duration. + assertFalse(DateRangeOverlapChecker.isOverlapUsingJodaTime(startJT1, endJT1, startJT2, endJT2)); + } +} diff --git a/core-java-modules/core-java-8-datetime-2/src/test/java/com/baeldung/zoneoffsetandzoneidof/ZoneOffSetAndZoneIdOfUnitTest.java b/core-java-modules/core-java-8-datetime-2/src/test/java/com/baeldung/zoneoffsetandzoneidof/ZoneOffSetAndZoneIdOfUnitTest.java new file mode 100644 index 0000000000..84f40c3cd5 --- /dev/null +++ b/core-java-modules/core-java-8-datetime-2/src/test/java/com/baeldung/zoneoffsetandzoneidof/ZoneOffSetAndZoneIdOfUnitTest.java @@ -0,0 +1,25 @@ +package com.baeldung.zoneoffsetandzoneidof; + +import org.junit.jupiter.api.Test; + +import java.time.OffsetDateTime; +import java.time.ZoneId; +import java.time.ZoneOffset; +import java.time.ZonedDateTime; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class ZoneOffSetAndZoneIdOfUnitTest { + + @Test + public void givenOffsetDateTimeWithUTCZoneOffset_thenOffsetShouldBeUTC() { + OffsetDateTime dateTimeWithOffset = OffsetDateTime.now(ZoneOffset.UTC); + assertEquals(dateTimeWithOffset.getOffset(), ZoneOffset.UTC); + } + + @Test + public void givenZonedDateTimeWithUTCZoneId_thenZoneShouldBeUTC() { + ZonedDateTime zonedDateTime = ZonedDateTime.now(ZoneId.of("UTC")); + assertEquals(zonedDateTime.getZone(), ZoneId.of("UTC")); + } +} diff --git a/core-java-modules/core-java-arrays-convert/README.md b/core-java-modules/core-java-arrays-convert/README.md index 118d8e00ed..01a65670b2 100644 --- a/core-java-modules/core-java-arrays-convert/README.md +++ b/core-java-modules/core-java-arrays-convert/README.md @@ -12,3 +12,4 @@ This module contains articles about arrays conversion in Java - [Convert an ArrayList of String to a String Array in Java](https://www.baeldung.com/java-convert-string-arraylist-array) - [Convert Char Array to Int Array in Java](https://www.baeldung.com/java-convert-char-int-array) - [How to Convert Byte Array to Char Array](https://www.baeldung.com/java-convert-byte-array-char) +- [Convert byte[] to Byte[] and Vice Versa in Java](https://www.baeldung.com/java-byte-array-wrapper-primitive-type-convert) diff --git a/core-java-modules/core-java-arrays-convert/src/test/java/com/baeldung/array/conversions/ByteArrayToPrimitiveByteArrayUnitTest.java b/core-java-modules/core-java-arrays-convert/src/test/java/com/baeldung/array/conversions/ByteArrayToPrimitiveByteArrayUnitTest.java new file mode 100644 index 0000000000..758fe74685 --- /dev/null +++ b/core-java-modules/core-java-arrays-convert/src/test/java/com/baeldung/array/conversions/ByteArrayToPrimitiveByteArrayUnitTest.java @@ -0,0 +1,36 @@ +package com.baeldung.array.conversions; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.apache.commons.lang3.ArrayUtils; +import org.junit.jupiter.api.Test; + +public class ByteArrayToPrimitiveByteArrayUnitTest { + private static final byte[] EXPECTED_ARRAY_VALUES = {65, 66, 67, 68}; + private static final Byte[] BYTE_ARRAY = {65, 66, 67, 68}; + + @Test + public void givenByteArray_whenConvertingUsingByteValue_thenGiveExpectedResult() { + byte[] newByteArray = new byte[BYTE_ARRAY.length]; + for (int i = 0; i < BYTE_ARRAY.length; i++) { + newByteArray[i] = BYTE_ARRAY[i].byteValue(); + } + assertThat(newByteArray).containsExactly(EXPECTED_ARRAY_VALUES); + } + + @Test + public void givenByteArray_whenConvertingUsingUnboxing_thenGiveExpectedResult() { + byte[] newByteArray = new byte[BYTE_ARRAY.length]; + for (int i = 0; i < BYTE_ARRAY.length; i++) { + newByteArray[i] = BYTE_ARRAY[i]; + } + assertThat(newByteArray).containsExactly(EXPECTED_ARRAY_VALUES); + } + + @Test + public void givenByteArray_whenConvertingArrayUtils_thenGiveExpectedResult() { + byte[] newByteArray = ArrayUtils.toPrimitive(BYTE_ARRAY); + + assertThat(newByteArray).containsExactly(EXPECTED_ARRAY_VALUES); + } +} diff --git a/core-java-modules/core-java-arrays-convert/src/test/java/com/baeldung/array/conversions/PrimitiveByteArrayToByteArrayUnitTest.java b/core-java-modules/core-java-arrays-convert/src/test/java/com/baeldung/array/conversions/PrimitiveByteArrayToByteArrayUnitTest.java new file mode 100644 index 0000000000..8c0bd4401c --- /dev/null +++ b/core-java-modules/core-java-arrays-convert/src/test/java/com/baeldung/array/conversions/PrimitiveByteArrayToByteArrayUnitTest.java @@ -0,0 +1,47 @@ +package com.baeldung.array.conversions; + +import static org.assertj.core.api.Assertions.assertThat; + +import java.util.Arrays; + +import org.apache.commons.lang3.ArrayUtils; +import org.junit.jupiter.api.Test; + +public class PrimitiveByteArrayToByteArrayUnitTest { + private static final byte[] PRIMITIVE_BYTE_ARRAY = {65, 66, 67, 68}; + private static final Byte[] EXPECTED_ARRAY_VALUES = {65, 66, 67, 68}; + + @Test + public void givenPrimitiveByteArray_whenConvertingUsingByteValueOf_thenGiveExpectedResult() { + Byte[] newByteArray = new Byte[PRIMITIVE_BYTE_ARRAY.length]; + for (int i = 0; i < PRIMITIVE_BYTE_ARRAY.length; i++) { + newByteArray[i] = Byte.valueOf(PRIMITIVE_BYTE_ARRAY[i]); + } + assertThat(newByteArray).containsExactly(EXPECTED_ARRAY_VALUES); + } + + @Test + public void givenPrimitiveByteArray_whenConvertingUsingAutoboxing_thenGiveExpectedResult() { + Byte[] newByteArray = new Byte[PRIMITIVE_BYTE_ARRAY.length]; + for (int i = 0; i < PRIMITIVE_BYTE_ARRAY.length; i++) { + newByteArray[i] = PRIMITIVE_BYTE_ARRAY[i]; + } + assertThat(newByteArray).containsExactly(EXPECTED_ARRAY_VALUES); + } + + @Test + public void givenPrimitiveByteArray_whenConvertingUsingAutoboxingAndArraysSetAll_thenGiveExpectedResult() { + Byte[] newByteArray = new Byte[PRIMITIVE_BYTE_ARRAY.length]; + Arrays.setAll(newByteArray, n -> PRIMITIVE_BYTE_ARRAY[n]); + + assertThat(newByteArray) + .containsExactly(EXPECTED_ARRAY_VALUES); + } + + @Test + public void givenPrimitiveByteArray_whenConvertingUsingArrayUtils_thenGiveExpectedResult() { + Byte[] newByteArray = ArrayUtils.toObject(PRIMITIVE_BYTE_ARRAY); + + assertThat(newByteArray).containsExactly(EXPECTED_ARRAY_VALUES); + } +} diff --git a/core-java-modules/core-java-arrays-guides/README.md b/core-java-modules/core-java-arrays-guides/README.md index d8b0d126a1..c3e135514b 100644 --- a/core-java-modules/core-java-arrays-guides/README.md +++ b/core-java-modules/core-java-arrays-guides/README.md @@ -10,3 +10,4 @@ This module contains complete guides about arrays in Java - [Creating a Generic Array in Java](https://www.baeldung.com/java-generic-array) - [Maximum Size of Java Arrays](https://www.baeldung.com/java-arrays-max-size) - [Merge Two Arrays and Remove Duplicates in Java](https://www.baeldung.com/java-merge-two-arrays-delete-duplicates) +- [Print a Java 2D Array](https://www.baeldung.com/java-2d-array-print) diff --git a/core-java-modules/core-java-arrays-guides/pom.xml b/core-java-modules/core-java-arrays-guides/pom.xml index cc67add9e3..12da6b2145 100644 --- a/core-java-modules/core-java-arrays-guides/pom.xml +++ b/core-java-modules/core-java-arrays-guides/pom.xml @@ -7,10 +7,6 @@ core-java-arrays-guides jar - - 2.1.5 - - core-java-modules com.baeldung.core-java-modules @@ -34,7 +30,10 @@ ${system-stubs.jupiter.version} test - + + 2.1.5 + + diff --git a/core-java-modules/core-java-char/README.md b/core-java-modules/core-java-char/README.md index 56040a3ea5..c8a7331875 100644 --- a/core-java-modules/core-java-char/README.md +++ b/core-java-modules/core-java-char/README.md @@ -6,3 +6,4 @@ This module contains articles about Java Character Class - [Character#isAlphabetic vs. Character#isLetter](https://www.baeldung.com/java-character-isletter-isalphabetic) - [Difference Between Java’s “char” and “String”](https://www.baeldung.com/java-char-vs-string) - [Increment Character in Java](https://www.baeldung.com/java-char-sequence) +- [Creating Unicode Character From Its Code Point Hex String](https://www.baeldung.com/java-unicode-character-from-code-point-hex-string) diff --git a/core-java-modules/core-java-char/src/test/java/com/baeldung/unicodechar/UnicodeCharFromCodePointHexStringUnitTest.java b/core-java-modules/core-java-char/src/test/java/com/baeldung/unicodechar/UnicodeCharFromCodePointHexStringUnitTest.java new file mode 100644 index 0000000000..014267abdc --- /dev/null +++ b/core-java-modules/core-java-char/src/test/java/com/baeldung/unicodechar/UnicodeCharFromCodePointHexStringUnitTest.java @@ -0,0 +1,70 @@ +package com.baeldung.unicodechar; + +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class UnicodeCharFromCodePointHexStringUnitTest { + private static final String U_CHECK = "✅"; // U+2705 + private static final String U_STRONG = "强"; // U+5F3A + + + @Test + void whenEscapeUAndNumberInString_thenGetExpectedUnicodeStr() { + String check = "\u2705"; + assertEquals(U_CHECK, check); + + String strong = "\u5F3A"; + assertEquals(U_STRONG, strong); + + // "A" U+0041 + assertEquals("A", "\u0041"); + } + + + @Test + void whenConcatUAndNumberAsString_thenDoNotGetExpectedUnicodeStr() { + String check = "\\u" + "2705"; + assertEquals("\\u2705", check); + + String strong = "\\u" + "5F3A"; + assertEquals("\\u5F3A", strong); + } + + + @Test + void whenCastHexCodePointToCharAndConvertCharToString_thenGetExpectedUnicodeStr() { + + int codePoint = Integer.parseInt("2705", 16); //Decimal int: 9989 + char[] checkChar = Character.toChars(codePoint); + String check = String.valueOf(checkChar); + assertEquals(U_CHECK, check); + + // For Java 11 and later versions + // assertEquals(U_CHECK, Character.toString(codePoint)); + + codePoint = Integer.parseInt("5F3A", 16); //Decimal int: 24378 + char[] strongChar = Character.toChars(codePoint); + String strong = String.valueOf(strongChar); + assertEquals(U_STRONG, strong); + + // For Java 11 and later versions + // assertEquals(U_STRONG, Character.toString(codePoint)); + } + + String stringFromCodePointHex(String codePointHex) { + int codePoint = Integer.parseInt(codePointHex, 16); + + // For Java 11 and later versions: return Character.toString(codePoint) + + char[] chars = Character.toChars(codePoint); + return String.valueOf(chars); + } + + @Test + void whenUsingstringFromCodePointHex_thenGetExpectedUnicodeStr() { + assertEquals("A", stringFromCodePointHex("0041")); + assertEquals(U_CHECK, stringFromCodePointHex("2705")); + assertEquals(U_STRONG, stringFromCodePointHex("5F3A")); + } +} \ No newline at end of file diff --git a/core-java-modules/core-java-collections-5/README.md b/core-java-modules/core-java-collections-5/README.md index c9fce58ac2..4f174b5163 100644 --- a/core-java-modules/core-java-collections-5/README.md +++ b/core-java-modules/core-java-collections-5/README.md @@ -11,4 +11,7 @@ - [Intro to Vector Class in Java](https://www.baeldung.com/java-vector-guide) - [HashSet toArray() Method in Java](https://www.baeldung.com/java-hashset-toarray) - [Time Complexity of Java Collections Sort in Java](https://www.baeldung.com/java-time-complexity-collections-sort) +- [Check if List Contains at Least One Enum](https://www.baeldung.com/java-list-check-enum-presence) +- [Comparison of for Loops and Iterators](https://www.baeldung.com/java-for-loops-vs-iterators) +- [PriorityQueue iterator() Method in Java](https://www.baeldung.com/java-priorityqueue-iterator) - More articles: [[<-- prev]](/core-java-modules/core-java-collections-4) diff --git a/core-java-modules/core-java-collections-5/pom.xml b/core-java-modules/core-java-collections-5/pom.xml index da58ef1db5..06d872ec37 100644 --- a/core-java-modules/core-java-collections-5/pom.xml +++ b/core-java-modules/core-java-collections-5/pom.xml @@ -5,18 +5,6 @@ 4.0.0 core-java-collections-5 core-java-collections-5 - - - - org.apache.maven.plugins - maven-compiler-plugin - - 9 - 9 - - - - jar @@ -61,6 +49,19 @@ + + + + org.apache.maven.plugins + maven-compiler-plugin + + 9 + 9 + + + + + 5.9.2 0.9.38 diff --git a/core-java-modules/core-java-collections-list-5/pom.xml b/core-java-modules/core-java-collections-list-5/pom.xml index 10c0ded0c3..d62263eb63 100644 --- a/core-java-modules/core-java-collections-list-5/pom.xml +++ b/core-java-modules/core-java-collections-list-5/pom.xml @@ -55,7 +55,6 @@ ${org.json.version} test - diff --git a/core-java-modules/core-java-collections-list-6/README.md b/core-java-modules/core-java-collections-list-6/README.md index fd162743dc..bf634fb79c 100644 --- a/core-java-modules/core-java-collections-list-6/README.md +++ b/core-java-modules/core-java-collections-list-6/README.md @@ -1,2 +1,6 @@ ## Relevant Articles - [Check if a List Contains a String Element While Ignoring Case](https://www.baeldung.com/java-list-search-case-insensitive) +- [Removing the Last Node in a Linked List](https://www.baeldung.com/java-linked-list-remove-last-element) +- [Call a Method on Each Element of a List in Java](https://www.baeldung.com/java-call-method-each-list-item) +- [Sorting One List Based on Another List in Java](https://www.baeldung.com/java-sorting-one-list-using-another) +- [Reset ListIterator to First Element of the List in Java](https://www.baeldung.com/java-reset-listiterator) diff --git a/core-java-modules/core-java-collections-list-6/src/test/java/com/baeldung/resetlistiterator/ResetListIteratorUnitTest.java b/core-java-modules/core-java-collections-list-6/src/test/java/com/baeldung/resetlistiterator/ResetListIteratorUnitTest.java new file mode 100644 index 0000000000..2b033e3061 --- /dev/null +++ b/core-java-modules/core-java-collections-list-6/src/test/java/com/baeldung/resetlistiterator/ResetListIteratorUnitTest.java @@ -0,0 +1,46 @@ +package com.baeldung.resetlistiterator; + +import org.junit.jupiter.api.Test; + +import java.util.List; +import java.util.ListIterator; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; + +public class ResetListIteratorUnitTest { + + private static final List MY_LIST = List.of("A", "B", "C", "D", "E", "F", "G"); + + @Test + void whenRecreateAnListIterator_thenGetTheExpectedResult() { + ListIterator lit = MY_LIST.listIterator(); + lit.next(); + lit.next(); + lit.next(); + lit.next(); + + lit = MY_LIST.listIterator(); + + assertFalse(lit.hasPrevious()); + assertEquals("A", lit.next()); + } + + @Test + void whenBackwardIterationToTheFirst_thenGetTheExpectedResult() { + ListIterator lit = MY_LIST.listIterator(); + lit.next(); + lit.next(); + lit.next(); + lit.next(); + + + while (lit.hasPrevious()) { + lit.previous(); + } + + assertFalse(lit.hasPrevious()); + assertEquals("A", lit.next()); + } + +} \ No newline at end of file diff --git a/core-java-modules/core-java-collections-maps-6/pom.xml b/core-java-modules/core-java-collections-maps-6/pom.xml index a0cdc07644..6d10115d31 100644 --- a/core-java-modules/core-java-collections-maps-6/pom.xml +++ b/core-java-modules/core-java-collections-maps-6/pom.xml @@ -27,7 +27,7 @@ com.google.code.gson gson - 2.8.9 + 2.10.1 org.json diff --git a/core-java-modules/core-java-collections-maps-7/README.md b/core-java-modules/core-java-collections-maps-7/README.md index 73b36394a3..54668e13e5 100644 --- a/core-java-modules/core-java-collections-maps-7/README.md +++ b/core-java-modules/core-java-collections-maps-7/README.md @@ -5,6 +5,6 @@ - [How to Get First or Last Entry From a LinkedHashMap in Java](https://www.baeldung.com/java-linkedhashmap-first-last-key-value-pair) - [How to Write and Read a File with a Java HashMap](https://www.baeldung.com/java-hashmap-write-read-file) - [Limiting the Max Size of a HashMap in Java](https://www.baeldung.com/java-hashmap-size-bound) -- [How to Sort LinkedHashMap By Values in Java](https://www.baeldung.com/java-sort-linkedhashmap-using-values) +- [How to Sort LinkedHashMap by Values in Java](https://www.baeldung.com/java-sort-linkedhashmap-using-values) - [How to Increment a Map Value in Java](https://www.baeldung.com/java-increment-map-value) - More articles: [[<-- prev]](/core-java-modules/core-java-collections-maps-6) diff --git a/core-java-modules/core-java-collections-set/pom.xml b/core-java-modules/core-java-collections-set/pom.xml index 1fb59db991..b3cd1ec90f 100644 --- a/core-java-modules/core-java-collections-set/pom.xml +++ b/core-java-modules/core-java-collections-set/pom.xml @@ -41,7 +41,7 @@ - 2.8.5 + 2.10.1 \ No newline at end of file diff --git a/core-java-modules/core-java-concurrency-advanced-5/src/main/java/com/baeldung/countdownlatchvssemaphore/CountDownLatchDemo.java b/core-java-modules/core-java-concurrency-advanced-5/src/main/java/com/baeldung/countdownlatchvssemaphore/CountDownLatchDemo.java new file mode 100644 index 0000000000..e2435bb544 --- /dev/null +++ b/core-java-modules/core-java-concurrency-advanced-5/src/main/java/com/baeldung/countdownlatchvssemaphore/CountDownLatchDemo.java @@ -0,0 +1,33 @@ +package com.baeldung.countdownlatchvssemaphore; + +import java.util.concurrent.CountDownLatch; + +public class CountDownLatchDemo { + + public static void main(String[] args) throws InterruptedException { + // Create a CountDownLatch with an initial count equal to the number of tasks to be completed + int numberOfTasks = 3; + CountDownLatch latch = new CountDownLatch(numberOfTasks); + + // Simulate completion of tasks by worker threads + for (int i = 1; i <= numberOfTasks; i++) { + new Thread(() -> { + System.out.println("Task completed by Thread " + Thread.currentThread() + .getId()); + + // Decrement the latch count to signal completion of a task + latch.countDown(); + }).start(); + } + + // Main thread waits until all tasks are completed + latch.await(); + System.out.println("All tasks completed. Main thread proceeds."); + + // Attempting to reset will have no effect + latch.countDown(); + // Latch is already at zero, await() returns immediately + latch.await(); // This line won't block + System.out.println("Latch is already at zero and cannot be reset."); + } +} diff --git a/core-java-modules/core-java-concurrency-advanced-5/src/main/java/com/baeldung/countdownlatchvssemaphore/SemaphoreDemo.java b/core-java-modules/core-java-concurrency-advanced-5/src/main/java/com/baeldung/countdownlatchvssemaphore/SemaphoreDemo.java new file mode 100644 index 0000000000..483462e7fb --- /dev/null +++ b/core-java-modules/core-java-concurrency-advanced-5/src/main/java/com/baeldung/countdownlatchvssemaphore/SemaphoreDemo.java @@ -0,0 +1,42 @@ +package com.baeldung.countdownlatchvssemaphore; + +import java.util.concurrent.Semaphore; + +public class SemaphoreDemo { + + public static void main(String[] args) { + // Create a Semaphore with a fixed number of permits + int NUM_PERMITS = 3; + Semaphore semaphore = new Semaphore(NUM_PERMITS); + + // Simulate resource access by worker threads + for (int i = 1; i <= 5; i++) { + new Thread(() -> { + try { + // Acquire a permit to access the resource + semaphore.acquire(); + System.out.println("Thread " + Thread.currentThread().getId() + " accessing resource."); + + // Simulate resource usage + Thread.sleep(2000); + } catch (InterruptedException e) { + e.printStackTrace(); + } finally { + // Release the permit after resource access is complete + semaphore.release(); + } + }).start(); + } + + // Simulate resetting the Semaphore by releasing additional permits after a delay + try { + Thread.sleep(5000); + + // Resetting the semaphore permits to the initial count + semaphore.release(NUM_PERMITS); + System.out.println("Semaphore permits reset to initial count."); + } catch (InterruptedException e) { + e.printStackTrace(); + } + } +} \ No newline at end of file diff --git a/core-java-modules/core-java-concurrency-basic-2/README.md b/core-java-modules/core-java-concurrency-basic-2/README.md index 91b84e3749..6d0b708644 100644 --- a/core-java-modules/core-java-concurrency-basic-2/README.md +++ b/core-java-modules/core-java-concurrency-basic-2/README.md @@ -12,4 +12,5 @@ This module contains articles about basic Java concurrency - [How to Get the Number of Threads in a Java Process](https://www.baeldung.com/java-get-number-of-threads) - [Set the Name of a Thread in Java](https://www.baeldung.com/java-set-thread-name) - [Thread vs. Single Thread Executor Service](https://www.baeldung.com/java-single-thread-executor-service) +- [Difference Between a Future and a Promise in Java](https://www.baeldung.com/java-future-vs-promise-comparison) - [[<-- Prev]](../core-java-concurrency-basic)[[Next -->]](../core-java-concurrency-basic-3) diff --git a/core-java-modules/core-java-concurrency-basic-3/README.md b/core-java-modules/core-java-concurrency-basic-3/README.md index 1021544e11..823c5cea8d 100644 --- a/core-java-modules/core-java-concurrency-basic-3/README.md +++ b/core-java-modules/core-java-concurrency-basic-3/README.md @@ -13,4 +13,5 @@ This module contains articles about basic Java concurrency. - [Retry Logic with CompletableFuture](https://www.baeldung.com/java-completablefuture-retry-logic) - [Convert From List of CompletableFuture to CompletableFuture List](https://www.baeldung.com/java-completablefuture-list-convert) - [Synchronize a Static Variable Among Different Threads](https://www.baeldung.com/java-synchronize-static-variable-different-threads) +- [Difference Between execute() and submit() in Executor Service](https://www.baeldung.com/java-execute-vs-submit-executor-service) - [[<-- Prev]](../core-java-concurrency-basic-2) diff --git a/core-java-modules/core-java-console/README.md b/core-java-modules/core-java-console/README.md index 77ad16d015..cab2cc24be 100644 --- a/core-java-modules/core-java-console/README.md +++ b/core-java-modules/core-java-console/README.md @@ -8,3 +8,4 @@ - [System.console() vs. System.out](https://www.baeldung.com/java-system-console-vs-system-out) - [How to Log to the Console in Color](https://www.baeldung.com/java-log-console-in-color) - [Create Table Using ASCII in a Console in Java](https://www.baeldung.com/java-console-ascii-make-table) +- [Printing Message on Console without Using main() Method in Java](https://www.baeldung.com/java-no-main-print-message-console) diff --git a/core-java-modules/core-java-date-operations-4/README.md b/core-java-modules/core-java-date-operations-4/README.md new file mode 100644 index 0000000000..6f8bc6c4b8 --- /dev/null +++ b/core-java-modules/core-java-date-operations-4/README.md @@ -0,0 +1,6 @@ +## Core Date Operations (Part 4) +This module contains articles about date operations in Java. + +### Relevant Articles: +- [Calculate Number of Weekdays Between Two Dates in Java](https://www.baeldung.com/java-count-weekdays-between-two-dates) +- [Convert Long to Date in Java](https://www.baeldung.com/java-long-date-conversion) diff --git a/core-java-modules/core-java-date-operations-4/pom.xml b/core-java-modules/core-java-date-operations-4/pom.xml new file mode 100644 index 0000000000..317b2cb6e7 --- /dev/null +++ b/core-java-modules/core-java-date-operations-4/pom.xml @@ -0,0 +1,46 @@ + + + 4.0.0 + core-java-date-operations-4 + core-java-date-operations-4 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 11 + 11 + + + + + jar + + + com.baeldung.core-java-modules + core-java-modules + 0.0.1-SNAPSHOT + + + + + joda-time + joda-time + ${joda-time.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + + + 2.12.6 + + + \ No newline at end of file diff --git a/core-java-modules/core-java-date-operations-4/src/main/java/com/baeldung/calculateweekdays/CalculateWeekdays.java b/core-java-modules/core-java-date-operations-4/src/main/java/com/baeldung/calculateweekdays/CalculateWeekdays.java new file mode 100644 index 0000000000..ded8f9bc13 --- /dev/null +++ b/core-java-modules/core-java-date-operations-4/src/main/java/com/baeldung/calculateweekdays/CalculateWeekdays.java @@ -0,0 +1,46 @@ +package com.baeldung.calculateweekdays; + +import java.time.DayOfWeek; +import java.time.LocalDate; +import java.time.temporal.ChronoUnit; +import java.time.temporal.TemporalAdjusters; +import java.util.Arrays; + +public class CalculateWeekdays { + + public long getWorkingDaysWithStream(LocalDate start, LocalDate end){ + return start.datesUntil(end) + .map(LocalDate::getDayOfWeek) + .filter(day -> !Arrays.asList(DayOfWeek.SATURDAY, DayOfWeek.SUNDAY).contains(day)) + .count(); + } + + public long getWorkingDaysWithoutStream(LocalDate start, LocalDate end) { + boolean startOnWeekend = false; + + // If starting at the weekend, move to following Monday + if(start.getDayOfWeek().getValue() > 5){ + start = start.with(TemporalAdjusters.next(DayOfWeek.MONDAY)); + startOnWeekend = true; + } + boolean endOnWeekend = false; + // If ending at the weekend, move to previous Friday + if(end.getDayOfWeek().getValue() > 5){ + end = end.with(TemporalAdjusters.previous(DayOfWeek.FRIDAY)); + endOnWeekend = true; + } + // Cover case where starting on Saturday and ending following Sunday + if(start.isAfter(end)){ + return 0; + } + // Get total weeks + long weeks = ChronoUnit.WEEKS.between(start, end); + + long addValue = startOnWeekend || endOnWeekend ? 1 : 0; + + // Add on days that did not make up a full week + return ( weeks * 5 ) + ( end.getDayOfWeek().getValue() - start.getDayOfWeek().getValue() ) + addValue; + } + + +} diff --git a/core-java-modules/core-java-date-operations-4/src/test/java/com/baeldung/calculateweekdays/CalculateWeekdaysUnitTest.java b/core-java-modules/core-java-date-operations-4/src/test/java/com/baeldung/calculateweekdays/CalculateWeekdaysUnitTest.java new file mode 100644 index 0000000000..05a2202682 --- /dev/null +++ b/core-java-modules/core-java-date-operations-4/src/test/java/com/baeldung/calculateweekdays/CalculateWeekdaysUnitTest.java @@ -0,0 +1,83 @@ +package com.baeldung.calculateweekdays; + +import static junit.framework.TestCase.assertEquals; + +import java.time.LocalDate; + +import org.junit.jupiter.api.Test; + +public class CalculateWeekdaysUnitTest { + + // Start Saturday end following Sunday (answer is 0) + LocalDate startTomorrow = LocalDate.of(2023, 12, 2); + LocalDate endTomorrow = LocalDate.of(2023, 12, 3); + + // Three week gap with midweek start and finish (answer is 17) + LocalDate startThreeWeeks = LocalDate.of(2023, 11, 28); + LocalDate endThreeWeeks = LocalDate.of(2023, 12, 21); + + // Three week gap with midweek start and weekend finish (answer is 17) + LocalDate startThreeWeeks2 = LocalDate.of(2023, 11, 6); + LocalDate endThreeWeeks2 = LocalDate.of(2023, 12, 30); + + // Week gap start and end on weekend (answer is 40) + LocalDate startThreeWeeksWeekend = LocalDate.of(2023, 12, 2); + LocalDate endThreeWeeksWeekend = LocalDate.of(2023, 12, 9); + + @Test + void givenTwoDaysOnSameWeekend_whenUsingStreams_thenCalculateWeekdays(){ + CalculateWeekdays c = new CalculateWeekdays(); + long result = c.getWorkingDaysWithStream(startTomorrow, endTomorrow); + assertEquals(0, result); + } + + @Test + void givenTwoDaysOnSameWeekend_whenUsingMaths_thenCalculateWeekdays(){ + CalculateWeekdays c = new CalculateWeekdays(); + long result = c.getWorkingDaysWithoutStream(startTomorrow, endTomorrow); + assertEquals(0, result); + } + + @Test + void givenAThreeWeekGapMidweekDates_whenUsingStreams_thenCalculateWeekdays(){ + CalculateWeekdays c = new CalculateWeekdays(); + long result = c.getWorkingDaysWithStream(startThreeWeeks, endThreeWeeks); + assertEquals(17, result); + } + + @Test + void givenAThreeWeekGapMidweekDates_whenUsingMaths_thenCalculateWeekdays(){ + CalculateWeekdays c = new CalculateWeekdays(); + long result = c.getWorkingDaysWithoutStream(startThreeWeeks, endThreeWeeks); + assertEquals(17, result); + } + + @Test + void givenThreeWeekGapMidweekAndWeekendDates_whenUsingStreams_thenCalculateWeekdays(){ + CalculateWeekdays c = new CalculateWeekdays(); + long result = c.getWorkingDaysWithStream(startThreeWeeksWeekend, endThreeWeeksWeekend); + assertEquals(5, result); + } + + @Test + void givenThreeWeekGapMidweekAndWeekendDates_whenUsingMaths_thenCalculateWeekdays(){ + CalculateWeekdays c = new CalculateWeekdays(); + long result = c.getWorkingDaysWithoutStream(startThreeWeeksWeekend, endThreeWeeksWeekend); + assertEquals(5, result); + } + + @Test + void givenThreeWeekGapWeekendDates_whenUsingStreams_thenCalculateWeekdays(){ + CalculateWeekdays c = new CalculateWeekdays(); + long result = c.getWorkingDaysWithStream(startThreeWeeks2, endThreeWeeks2); + assertEquals(40, result); + } + + @Test + void givenThreeWeekGapWeekendDates_whenUsingMaths_thenCalculateWeekdays(){ + CalculateWeekdays c = new CalculateWeekdays(); + long result = c.getWorkingDaysWithoutStream(startThreeWeeks2, endThreeWeeks2); + assertEquals(40, result); + } + +} diff --git a/core-java-modules/core-java-date-operations-4/src/test/java/com/baeldung/longtodate/LongToDateUnitTest.java b/core-java-modules/core-java-date-operations-4/src/test/java/com/baeldung/longtodate/LongToDateUnitTest.java new file mode 100644 index 0000000000..589411114c --- /dev/null +++ b/core-java-modules/core-java-date-operations-4/src/test/java/com/baeldung/longtodate/LongToDateUnitTest.java @@ -0,0 +1,74 @@ +package com.baeldung.longtodate; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.time.LocalDate; +import java.util.Calendar; +import java.util.Date; +import java.util.TimeZone; + +import org.joda.time.DateTimeZone; +import org.joda.time.Instant; +import org.junit.jupiter.api.Test; + +class LongToDateUnitTest { + + @Test + void givenLongValue_whenUsingInstantClass_thenConvert() { + Instant expectedDate = Instant.parse("2020-09-08T12:16:40Z"); + long seconds = 1599567400L; + + Instant date = Instant.ofEpochSecond(seconds); + + assertEquals(expectedDate, date); + } + + @Test + void givenLongValue_whenUsingLocalDateClass_thenConvert() { + LocalDate expectedDate = LocalDate.of(2023, 10, 17); + long epochDay = 19647L; + + LocalDate date = LocalDate.ofEpochDay(epochDay); + + assertEquals(expectedDate, date); + } + + @Test + void givenLongValue_whenUsingDateClass_thenConvert() throws ParseException { + SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + dateFormat.setTimeZone(TimeZone.getTimeZone("UTC")); + Date expectedDate = dateFormat.parse("2023-07-15 22:00:00"); + long milliseconds = 1689458400000L; + + Date date = new Date(milliseconds); + + assertEquals(expectedDate, date); + } + + @Test + void givenLongValue_whenUsingCalendarClass_thenConvert() throws ParseException { + SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + dateFormat.setTimeZone(TimeZone.getTimeZone("UTC")); + Date expectedDate = dateFormat.parse("2023-07-15 22:00:00"); + long milliseconds = 1689458400000L; + + Calendar calendar = Calendar.getInstance(); + calendar.setTimeZone(TimeZone.getTimeZone("UTC")); + calendar.setTimeInMillis(milliseconds); + + assertEquals(expectedDate, calendar.getTime()); + } + + @Test + void givenLongValue_whenUsingJodaTimeLocalDateClass_thenConvert() { + org.joda.time.LocalDate expectedDate = new org.joda.time.LocalDate(2023, 7, 15); + long milliseconds = 1689458400000L; + + org.joda.time.LocalDate date = new org.joda.time.LocalDate(milliseconds, DateTimeZone.UTC); + + assertEquals(expectedDate, date); + } + +} diff --git a/core-java-modules/core-java-datetime-conversion-2/README.md b/core-java-modules/core-java-datetime-conversion-2/README.md new file mode 100644 index 0000000000..b71d8b9190 --- /dev/null +++ b/core-java-modules/core-java-datetime-conversion-2/README.md @@ -0,0 +1,6 @@ +## Java Date/time conversion Cookbooks and Examples + +This module contains articles about converting between Java date and time objects. + +### Relevant Articles: +- [Convert Gregorian to Hijri Date in Java](https://www.baeldung.com/java-date-gregorian-hijri-conversion) diff --git a/core-java-modules/core-java-datetime-conversion-2/pom.xml b/core-java-modules/core-java-datetime-conversion-2/pom.xml new file mode 100644 index 0000000000..079df86a72 --- /dev/null +++ b/core-java-modules/core-java-datetime-conversion-2/pom.xml @@ -0,0 +1,57 @@ + + + 4.0.0 + core-java-datetime-conversion-2 + ${project.parent.version} + core-java-datetime-conversion-2 + jar + + + com.baeldung.core-java-modules + core-java-modules + 0.0.1-SNAPSHOT + + + + + joda-time + joda-time + ${joda-time.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + com.github.msarhan + ummalqura-calendar + ${ummalqura-calendar.version} + + + + + + core-java-datetime-conversion-2 + + + src/main/resources + true + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + + + 2.12.5 + 2.0.2 + + + \ No newline at end of file diff --git a/core-java-modules/core-java-datetime-conversion-2/src/main/java/com/baeldung/gregoriantohijri/GregorianToHijriDateConverter.java b/core-java-modules/core-java-datetime-conversion-2/src/main/java/com/baeldung/gregoriantohijri/GregorianToHijriDateConverter.java new file mode 100644 index 0000000000..022b43260c --- /dev/null +++ b/core-java-modules/core-java-datetime-conversion-2/src/main/java/com/baeldung/gregoriantohijri/GregorianToHijriDateConverter.java @@ -0,0 +1,34 @@ +package com.baeldung.gregoriantohijri; + +import java.text.ParseException; +import java.time.LocalDate; +import java.time.chrono.ChronoLocalDate; +import java.time.chrono.HijrahChronology; +import java.time.chrono.HijrahDate; +import java.util.GregorianCalendar; + +import org.joda.time.chrono.IslamicChronology; + +import com.github.msarhan.ummalqura.calendar.UmmalquraCalendar; + +public class GregorianToHijriDateConverter { + public static HijrahDate usingHijrahChronology(LocalDate gregorianDate) { + HijrahChronology hijrahChronology = HijrahChronology.INSTANCE; + ChronoLocalDate hijriChronoLocalDate = hijrahChronology.date(gregorianDate); + return HijrahDate.from(hijriChronoLocalDate); + } + + public static HijrahDate usingFromMethod(LocalDate gregorianDate) { + return HijrahDate.from(gregorianDate); + } + + public static org.joda.time.DateTime usingJodaDate(org.joda.time.DateTime gregorianDate) { + return gregorianDate.withChronology(IslamicChronology.getInstance()); + } + + public static UmmalquraCalendar usingUmmalquraCalendar(GregorianCalendar gregorianCalendar) throws ParseException { + UmmalquraCalendar hijriCalendar = new UmmalquraCalendar(); + hijriCalendar.setTime(gregorianCalendar.getTime()); + return hijriCalendar; + } +} diff --git a/core-java-modules/core-java-datetime-conversion-2/src/main/java/com/baeldung/stringdatetoxmlgregoriancalendar/StringDateToXMLGregorianCalendarConverter.java b/core-java-modules/core-java-datetime-conversion-2/src/main/java/com/baeldung/stringdatetoxmlgregoriancalendar/StringDateToXMLGregorianCalendarConverter.java new file mode 100644 index 0000000000..2ec1efecd0 --- /dev/null +++ b/core-java-modules/core-java-datetime-conversion-2/src/main/java/com/baeldung/stringdatetoxmlgregoriancalendar/StringDateToXMLGregorianCalendarConverter.java @@ -0,0 +1,42 @@ +package com.baeldung.stringdatetoxmlgregoriancalendar; + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.time.LocalDate; +import java.util.Date; +import java.util.GregorianCalendar; + +import javax.xml.datatype.DatatypeConfigurationException; +import javax.xml.datatype.DatatypeFactory; +import javax.xml.datatype.XMLGregorianCalendar; + +import org.joda.time.DateTime; +import org.joda.time.format.DateTimeFormat; + +public class StringDateToXMLGregorianCalendarConverter { + public static XMLGregorianCalendar usingDatatypeFactoryForDate(String dateAsString) throws DatatypeConfigurationException { + return DatatypeFactory.newInstance().newXMLGregorianCalendar(dateAsString); + } + + public static XMLGregorianCalendar usingLocalDate(String dateAsString) throws DatatypeConfigurationException { + LocalDate localDate = LocalDate.parse(dateAsString); + return DatatypeFactory.newInstance().newXMLGregorianCalendar(localDate.toString()); + } + + public static XMLGregorianCalendar usingSimpleDateFormat(String dateTimeAsString) throws DatatypeConfigurationException, ParseException { + SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss"); + Date date = simpleDateFormat.parse(dateTimeAsString); + return DatatypeFactory.newInstance().newXMLGregorianCalendar(simpleDateFormat.format(date)); + } + + public static XMLGregorianCalendar usingGregorianCalendar(String dateTimeAsString) throws DatatypeConfigurationException, ParseException { + GregorianCalendar calendar = new GregorianCalendar(); + calendar.setTime(new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss").parse(dateTimeAsString)); + return DatatypeFactory.newInstance().newXMLGregorianCalendar(calendar); + } + + public static XMLGregorianCalendar usingJodaTime(String dateTimeAsString) throws DatatypeConfigurationException { + DateTime dateTime = DateTime.parse(dateTimeAsString, DateTimeFormat.forPattern("yyyy-MM-dd'T'HH:mm:ss")); + return DatatypeFactory.newInstance().newXMLGregorianCalendar(dateTime.toGregorianCalendar()); + } +} diff --git a/core-java-modules/core-java-datetime-conversion-2/src/test/java/com/baeldung/gregoriantohijri/GregorianToHijriDateConverterUnitTest.java b/core-java-modules/core-java-datetime-conversion-2/src/test/java/com/baeldung/gregoriantohijri/GregorianToHijriDateConverterUnitTest.java new file mode 100644 index 0000000000..bc1ae8d33f --- /dev/null +++ b/core-java-modules/core-java-datetime-conversion-2/src/test/java/com/baeldung/gregoriantohijri/GregorianToHijriDateConverterUnitTest.java @@ -0,0 +1,53 @@ +package com.baeldung.gregoriantohijri; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.text.ParseException; +import java.time.LocalDate; +import java.time.chrono.HijrahDate; +import java.time.temporal.ChronoField; +import java.util.Calendar; +import java.util.GregorianCalendar; + +import org.joda.time.DateTime; +import org.junit.jupiter.api.Test; + +import com.github.msarhan.ummalqura.calendar.UmmalquraCalendar; + +public class GregorianToHijriDateConverterUnitTest { + @Test + void givenGregorianDate_whenUsingHijrahChronologyClass_thenConvertHijriDate() { + LocalDate gregorianDate = LocalDate.of(2013, 3, 31); + HijrahDate hijriDate = GregorianToHijriDateConverter.usingHijrahChronology(gregorianDate); + assertEquals(1434, hijriDate.get(ChronoField.YEAR)); + assertEquals(5, hijriDate.get(ChronoField.MONTH_OF_YEAR)); + assertEquals(19, hijriDate.get(ChronoField.DAY_OF_MONTH)); + } + + @Test + void givenGregorianDate_whenUsingFromMethod_thenConvertHijriDate() { + LocalDate gregorianDate = LocalDate.of(2013, 3, 31); + HijrahDate hijriDate = GregorianToHijriDateConverter.usingFromMethod(gregorianDate); + assertEquals(1434, hijriDate.get(ChronoField.YEAR)); + assertEquals(5, hijriDate.get(ChronoField.MONTH_OF_YEAR)); + assertEquals(19, hijriDate.get(ChronoField.DAY_OF_MONTH)); + } + + @Test + void givenGregorianDate_whenUsingJodaDate_thenConvertHijriDate() { + DateTime gregorianDate = new DateTime(2013, 3, 31, 0, 0, 0); + DateTime hijriDate = GregorianToHijriDateConverter.usingJodaDate(gregorianDate); + assertEquals(1434, hijriDate.getYear()); + assertEquals(5, hijriDate.getMonthOfYear()); + assertEquals(19, hijriDate.getDayOfMonth()); + } + + @Test + void givenGregorianDate_whenUsingUmmalquraCalendar_thenConvertHijriDate() throws ParseException { + GregorianCalendar gregorianCalendar = new GregorianCalendar(2013, Calendar.MARCH, 31); + UmmalquraCalendar ummalquraCalendar = GregorianToHijriDateConverter.usingUmmalquraCalendar(gregorianCalendar); + assertEquals(1434, ummalquraCalendar.get(Calendar.YEAR)); + assertEquals(5, ummalquraCalendar.get(Calendar.MONTH) + 1); + assertEquals(19, ummalquraCalendar.get(Calendar.DAY_OF_MONTH)); + } +} diff --git a/core-java-modules/core-java-datetime-conversion-2/src/test/java/com/baeldung/stringdatetoxmlgregoriancalendar/StringDateToXMLGregorianCalendarConverterUnitTest.java b/core-java-modules/core-java-datetime-conversion-2/src/test/java/com/baeldung/stringdatetoxmlgregoriancalendar/StringDateToXMLGregorianCalendarConverterUnitTest.java new file mode 100644 index 0000000000..b3c15a3fd4 --- /dev/null +++ b/core-java-modules/core-java-datetime-conversion-2/src/test/java/com/baeldung/stringdatetoxmlgregoriancalendar/StringDateToXMLGregorianCalendarConverterUnitTest.java @@ -0,0 +1,63 @@ +package com.baeldung.stringdatetoxmlgregoriancalendar; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.text.ParseException; +import javax.xml.datatype.DatatypeConfigurationException; +import javax.xml.datatype.XMLGregorianCalendar; + +import org.junit.jupiter.api.Test; + +public class StringDateToXMLGregorianCalendarConverterUnitTest { + private static final String dateAsString = "2014-04-24"; + private static final String dateTimeAsString = "2014-04-24T15:45:30"; + + @Test + void givenStringDate_whenUsingDatatypeFactory_thenConvertToXMLGregorianCalendar() throws DatatypeConfigurationException { + XMLGregorianCalendar xmlGregorianCalendar = StringDateToXMLGregorianCalendarConverter.usingDatatypeFactoryForDate(dateAsString); + assertEquals(24,xmlGregorianCalendar.getDay()); + assertEquals(4,xmlGregorianCalendar.getMonth()); + assertEquals(2014,xmlGregorianCalendar.getYear()); + } + + @Test + void givenStringDateTime_whenUsingApacheCommonsLang3_thenConvertToXMLGregorianCalendar() throws DatatypeConfigurationException { + XMLGregorianCalendar xmlGregorianCalendar = StringDateToXMLGregorianCalendarConverter.usingLocalDate(dateAsString); + assertEquals(24,xmlGregorianCalendar.getDay()); + assertEquals(4,xmlGregorianCalendar.getMonth()); + assertEquals(2014,xmlGregorianCalendar.getYear()); + } + + @Test + void givenStringDateTime_whenUsingSimpleDateFormat_thenConvertToXMLGregorianCalendar() throws DatatypeConfigurationException, ParseException { + XMLGregorianCalendar xmlGregorianCalendar = StringDateToXMLGregorianCalendarConverter.usingSimpleDateFormat(dateTimeAsString); + assertEquals(24,xmlGregorianCalendar.getDay()); + assertEquals(4,xmlGregorianCalendar.getMonth()); + assertEquals(2014,xmlGregorianCalendar.getYear()); + assertEquals(15,xmlGregorianCalendar.getHour()); + assertEquals(45,xmlGregorianCalendar.getMinute()); + assertEquals(30,xmlGregorianCalendar.getSecond()); + } + + @Test + void givenStringDateTime_whenUsingGregorianCalendar_thenConvertToXMLGregorianCalendar() throws DatatypeConfigurationException, ParseException { + XMLGregorianCalendar xmlGregorianCalendar = StringDateToXMLGregorianCalendarConverter.usingGregorianCalendar(dateTimeAsString); + assertEquals(24,xmlGregorianCalendar.getDay()); + assertEquals(4,xmlGregorianCalendar.getMonth()); + assertEquals(2014,xmlGregorianCalendar.getYear()); + assertEquals(15,xmlGregorianCalendar.getHour()); + assertEquals(45,xmlGregorianCalendar.getMinute()); + assertEquals(30,xmlGregorianCalendar.getSecond()); + } + + @Test + void givenStringDateTime_whenUsingJodaTime_thenConvertToXMLGregorianCalendar() throws DatatypeConfigurationException { + XMLGregorianCalendar xmlGregorianCalendar = StringDateToXMLGregorianCalendarConverter.usingJodaTime(dateTimeAsString); + assertEquals(24,xmlGregorianCalendar.getDay()); + assertEquals(4,xmlGregorianCalendar.getMonth()); + assertEquals(2014,xmlGregorianCalendar.getYear()); + assertEquals(15,xmlGregorianCalendar.getHour()); + assertEquals(45,xmlGregorianCalendar.getMinute()); + assertEquals(30,xmlGregorianCalendar.getSecond()); + } +} diff --git a/core-java-modules/core-java-datetime-conversion/README.md b/core-java-modules/core-java-datetime-conversion/README.md index f30a21f84c..ecb9298da1 100644 --- a/core-java-modules/core-java-datetime-conversion/README.md +++ b/core-java-modules/core-java-datetime-conversion/README.md @@ -12,3 +12,4 @@ This module contains articles about converting between Java date and time object - [Convert Epoch Time to LocalDate and LocalDateTime](https://www.baeldung.com/java-convert-epoch-localdate) - [Convert Timestamp String to Long in Java](https://www.baeldung.com/java-convert-timestamp-string-long) - [Convert Long Timestamp to LocalDateTime in Java](https://www.baeldung.com/java-convert-long-timestamp-localdatetime) +- [Convert Joda-Time DateTime to Date and Vice Versa](https://www.baeldung.com/java-convert-joda-time-datetime-to-date) diff --git a/core-java-modules/core-java-datetime-string-2/README.md b/core-java-modules/core-java-datetime-string-2/README.md index 6ff19a44ab..c6f06da8fb 100644 --- a/core-java-modules/core-java-datetime-string-2/README.md +++ b/core-java-modules/core-java-datetime-string-2/README.md @@ -5,3 +5,4 @@ This module contains articles about parsing and formatting Java date and time ob ### Relevant Articles: - [Convert String to Instant](https://www.baeldung.com/java-string-to-instant) - [Sort Date Strings in Java](https://www.baeldung.com/java-sort-date-strings) +- [Using Current Time as Filename in Java](https://www.baeldung.com/java-current-time-filename) diff --git a/core-java-modules/core-java-datetime-string-2/pom.xml b/core-java-modules/core-java-datetime-string-2/pom.xml index d619b0af84..d37d4d69a4 100644 --- a/core-java-modules/core-java-datetime-string-2/pom.xml +++ b/core-java-modules/core-java-datetime-string-2/pom.xml @@ -13,6 +13,14 @@ 0.0.1-SNAPSHOT + + + joda-time + joda-time + ${joda-time.version} + + + @@ -22,4 +30,8 @@ + + 2.12.5 + + \ No newline at end of file diff --git a/core-java-modules/core-java-datetime-string-2/src/test/java/com/baeldung/timestamp/CurrentTimeAsFileNameUnitTest.java b/core-java-modules/core-java-datetime-string-2/src/test/java/com/baeldung/timestamp/CurrentTimeAsFileNameUnitTest.java new file mode 100644 index 0000000000..4087df288b --- /dev/null +++ b/core-java-modules/core-java-datetime-string-2/src/test/java/com/baeldung/timestamp/CurrentTimeAsFileNameUnitTest.java @@ -0,0 +1,114 @@ +package com.baeldung.timestamp; + +import static org.junit.Assert.assertTrue; + +import java.text.MessageFormat; +import java.text.SimpleDateFormat; +import java.time.Instant; +import java.time.LocalDateTime; +import java.time.OffsetDateTime; +import java.time.ZoneId; +import java.time.ZoneOffset; +import java.time.ZonedDateTime; +import java.time.format.DateTimeFormatter; +import java.time.temporal.ChronoUnit; +import java.util.Calendar; +import java.util.Date; +import java.util.regex.Pattern; + +import org.joda.time.DateTime; +import org.joda.time.format.DateTimeFormat; +import org.junit.Test; + +public class CurrentTimeAsFileNameUnitTest { + + static final String TIMESTAMP_FORMAT = "yyyyMMddHHmmss"; + static final DateTimeFormatter DATETIME_FORMATTER = DateTimeFormatter.ofPattern(TIMESTAMP_FORMAT); + static final SimpleDateFormat SIMPLEDATE_FORMAT = new SimpleDateFormat(TIMESTAMP_FORMAT); + + @Test + public void whenUsingCalendar_thenCurrentTimeAsFileName() { + String currentTime = SIMPLEDATE_FORMAT.format(Calendar.getInstance().getTime()); + String fileName = getFileName(currentTime); + + assertTrue(verifyFileName(fileName)); + } + + @Test + public void whenUsingDate_thenCurrentTimeAsFileName() { + String currentTime = SIMPLEDATE_FORMAT.format(new Date()); + String fileName = getFileName(currentTime); + + assertTrue(verifyFileName(fileName)); + } + + @Test + public void whenUsingInstant_thenCurrentTimeAsFileName() { + String currentTime = Instant + .now() + .truncatedTo(ChronoUnit.SECONDS) + .toString() + .replaceAll("[:TZ-]", ""); + String fileName = getFileName(currentTime); + + assertTrue(verifyFileName(fileName)); + } + + @Test + public void whenUsingLocalDateTime_thenCurrentTimeAsFileName() { + String currentTime = LocalDateTime.now().format(DATETIME_FORMATTER); + String fileName = getFileName(currentTime); + + assertTrue(verifyFileName(fileName)); + } + + @Test + public void whenUsingZonedDateTime_thenCurrentTimeAsFileName() { + String currentTime = ZonedDateTime + .now(ZoneId.of("Europe/Paris")) + .format(DATETIME_FORMATTER); + String fileName = getFileName(currentTime); + + assertTrue(verifyFileName(fileName)); + } + + @Test + public void whenUsingOffsetDateTime_thenCurrentTimeAsFileName() { + String currentTime = OffsetDateTime + .of(LocalDateTime.now(), ZoneOffset.of("+01:00")) + .format(DATETIME_FORMATTER); + String fileName = getFileName(currentTime); + + assertTrue(verifyFileName(fileName)); + } + + @Test + public void whenUsingJodaDateTime_thenCurrentTimeAsFileName() { + String currentTime = DateTime.now().toString(TIMESTAMP_FORMAT); + String fileName = getFileName(currentTime); + + assertTrue(verifyFileName(fileName)); + } + + @Test + public void whenUsingJodaInstant_thenCurrentTimeAsFileName() { + String currentTime = DateTimeFormat + .forPattern(TIMESTAMP_FORMAT) + .print(org.joda.time.Instant.now() + .toDateTime()); + String fileName = getFileName(currentTime); + + assertTrue(verifyFileName(fileName)); + } + + String getFileName(String currentTime) { + return MessageFormat.format("{0}.txt", currentTime); + } + + boolean verifyFileName(String fileName) { + return Pattern + .compile("[0-9]{14}+\\.txt", Pattern.CASE_INSENSITIVE) + .matcher(fileName) + .matches(); + } +} diff --git a/core-java-modules/core-java-function/README.md b/core-java-modules/core-java-function/README.md index eb27aea153..b750ad8a5a 100644 --- a/core-java-modules/core-java-function/README.md +++ b/core-java-modules/core-java-function/README.md @@ -6,3 +6,4 @@ - [Java 8 Predicate Chain](https://www.baeldung.com/java-predicate-chain) - [Use Cases for Static Methods in Java](https://www.baeldung.com/java-static-methods-use-cases) - [TriFunction Interface in Java](https://www.baeldung.com/java-trifunction) +- [Lazy Field Initialization with Lambdas](https://www.baeldung.com/java-lambda-lazy-field-initialization) diff --git a/core-java-modules/core-java-io-4/README.md b/core-java-modules/core-java-io-4/README.md index 7856fbaf41..4b2bba6a50 100644 --- a/core-java-modules/core-java-io-4/README.md +++ b/core-java-modules/core-java-io-4/README.md @@ -9,7 +9,7 @@ This module contains articles about core Java input and output (IO) - [SequenceInputStream Class in Java](https://www.baeldung.com/java-sequenceinputstream) - [Read a File Into a Map in Java](https://www.baeldung.com/java-read-file-into-map) - [Read User Input Until a Condition Is Met](https://www.baeldung.com/java-read-input-until-condition) -- [Java Scanner.skip method with examples](https://www.baeldung.com/java-scanner-skip) +- [Java Scanner.skip Method with Examples](https://www.baeldung.com/java-scanner-skip) - [Generate the MD5 Checksum for a File in Java](https://www.baeldung.com/java-md5-checksum-file) - [Getting the Filename From a String Containing an Absolute File Path](https://www.baeldung.com/java-filename-full-path) - [Mocking Java InputStream Object](https://www.baeldung.com/java-mocking-inputstream) diff --git a/core-java-modules/core-java-io-5/README.md b/core-java-modules/core-java-io-5/README.md index 4578cf3777..f0dafe2e4b 100644 --- a/core-java-modules/core-java-io-5/README.md +++ b/core-java-modules/core-java-io-5/README.md @@ -6,5 +6,7 @@ This module contains articles about core Java input and output (IO) - [Get File Extension From MIME Type in Java](https://www.baeldung.com/java-mime-type-file-extension) - [How to Remove Line Breaks From a File in Java](https://www.baeldung.com/java-file-remove-line-breaks) - [Difference Between ZipFile and ZipInputStream in Java](https://www.baeldung.com/java-zipfile-vs-zipinputstream) +- [How to Write Strings to OutputStream in Java](https://www.baeldung.com/java-write-string-outputstream) +- [Read a File and Split It Into Multiple Files in Java](https://www.baeldung.com/java-read-file-split-into-several) - [[<-- Prev]](/core-java-modules/core-java-io-4) diff --git a/core-java-modules/core-java-io-5/file.txt b/core-java-modules/core-java-io-5/file.txt new file mode 100644 index 0000000000..5dd01c177f --- /dev/null +++ b/core-java-modules/core-java-io-5/file.txt @@ -0,0 +1 @@ +Hello, world! \ No newline at end of file diff --git a/core-java-modules/core-java-io-5/src/main/java/com/baeldung/readwritethread/ReadWriteBlockingQueue.java b/core-java-modules/core-java-io-5/src/main/java/com/baeldung/readwritethread/ReadWriteBlockingQueue.java new file mode 100644 index 0000000000..ee0cc84955 --- /dev/null +++ b/core-java-modules/core-java-io-5/src/main/java/com/baeldung/readwritethread/ReadWriteBlockingQueue.java @@ -0,0 +1,85 @@ +package com.baeldung.readwritethread; + +import java.io.BufferedReader; +import java.io.BufferedWriter; +import java.io.FileReader; +import java.io.FileWriter; +import java.io.IOException; +import java.util.concurrent.BlockingQueue; +import java.util.concurrent.LinkedBlockingQueue; + +public class ReadWriteBlockingQueue { + + public static void main(String[] args) throws InterruptedException { + + BlockingQueue queue = new LinkedBlockingQueue<>(); + String readFileName = "src/main/resources/read_file.txt"; + String writeFileName = "src/main/resources/write_file.txt"; + + Thread producerThread = new Thread(new FileProducer(queue, readFileName)); + Thread consumerThread1 = new Thread(new FileConsumer(queue, writeFileName)); + + producerThread.start(); + Thread.sleep(100); // Give producer a head start + consumerThread1.start(); + try { + producerThread.join(); + consumerThread1.join(); + } catch (InterruptedException e) { + e.printStackTrace(); + } + + } +} + +class FileProducer implements Runnable { + + private final BlockingQueue queue; + private final String inputFileName; + + public FileProducer(BlockingQueue queue, String inputFileName) { + this.queue = queue; + this.inputFileName = inputFileName; + } + + @Override + public void run() { + try (BufferedReader reader = new BufferedReader(new FileReader(inputFileName))) { + String line; + while ((line = reader.readLine()) != null) { + queue.offer(line); + System.out.println("Producer added line: " + line); + System.out.println("Queue size: " + queue.size()); + } + } catch (IOException e) { + e.printStackTrace(); + } + } +} + +class FileConsumer implements Runnable { + + private final BlockingQueue queue; + private final String outputFileName; + + public FileConsumer(BlockingQueue queue, String outputFileName) { + this.queue = queue; + this.outputFileName = outputFileName; + } + + @Override + public void run() { + try (BufferedWriter writer = new BufferedWriter(new FileWriter(outputFileName))) { + String line; + while ((line = queue.poll()) != null) { + writer.write(line); + writer.newLine(); + System.out.println(Thread.currentThread() + .getId() + " - Consumer processed line: " + line); + System.out.println("Queue size: " + queue.size()); + } + } catch (IOException e) { + e.printStackTrace(); + } + } +} \ No newline at end of file diff --git a/core-java-modules/core-java-io-5/src/main/java/com/baeldung/readwritethread/ReadWriteThread.java b/core-java-modules/core-java-io-5/src/main/java/com/baeldung/readwritethread/ReadWriteThread.java new file mode 100644 index 0000000000..47f6a79d5f --- /dev/null +++ b/core-java-modules/core-java-io-5/src/main/java/com/baeldung/readwritethread/ReadWriteThread.java @@ -0,0 +1,55 @@ +package com.baeldung.readwritethread; + +import java.io.BufferedReader; +import java.io.FileReader; +import java.io.FileWriter; +import java.io.IOException; + +public class ReadWriteThread { + + public static void readFile(String filePath) { + Thread thread = new Thread(new Runnable() { + @Override + public void run() { + try (BufferedReader bufferedReader = new BufferedReader(new FileReader(filePath))) { + String line; + while ((line = bufferedReader.readLine()) != null) { + System.out.println(line); + } + } catch (IOException e) { + e.printStackTrace(); + } + } + }); + thread.start(); + } + + public static void writeFile(String filePath, String content) { + Thread thread = new Thread(new Runnable() { + @Override + public void run() { + try (FileWriter fileWriter = new FileWriter(filePath)) { + fileWriter.write("Hello, world!"); + } catch (IOException e) { + e.printStackTrace(); + } + } + }); + thread.start(); + } + + public static void main(String[] args) { + String file = "src/main/resources/text.txt"; + + writeFile(file, "Hello, world!"); + + readFile(file); + + // Sleep for a while to allow the threads to complete + try { + Thread.sleep(1000); + } catch (InterruptedException e) { + e.printStackTrace(); + } + } +} diff --git a/core-java-modules/core-java-io-5/src/main/resources/read_file.txt b/core-java-modules/core-java-io-5/src/main/resources/read_file.txt new file mode 100644 index 0000000000..9193448ace --- /dev/null +++ b/core-java-modules/core-java-io-5/src/main/resources/read_file.txt @@ -0,0 +1,5 @@ +Hello, +Baeldung! +Nice to meet you! +My name is +Wynn. \ No newline at end of file diff --git a/core-java-modules/core-java-io-5/src/main/resources/text.txt b/core-java-modules/core-java-io-5/src/main/resources/text.txt new file mode 100644 index 0000000000..5dd01c177f --- /dev/null +++ b/core-java-modules/core-java-io-5/src/main/resources/text.txt @@ -0,0 +1 @@ +Hello, world! \ No newline at end of file diff --git a/core-java-modules/core-java-io-5/src/main/resources/write_file.txt b/core-java-modules/core-java-io-5/src/main/resources/write_file.txt new file mode 100644 index 0000000000..f1df68d0ad --- /dev/null +++ b/core-java-modules/core-java-io-5/src/main/resources/write_file.txt @@ -0,0 +1,5 @@ +Hello, +Baeldung! +Nice to meet you! +My name is +Wynn. diff --git a/core-java-modules/core-java-io-apis-2/README.md b/core-java-modules/core-java-io-apis-2/README.md index 043e0c1ee3..29666826a8 100644 --- a/core-java-modules/core-java-io-apis-2/README.md +++ b/core-java-modules/core-java-io-apis-2/README.md @@ -9,3 +9,5 @@ This module contains articles about core Java input/output(IO) APIs. - [Converting Relative to Absolute Paths in Java](https://www.baeldung.com/java-from-relative-to-absolute-paths) - [Detect EOF in Java](https://www.baeldung.com/java-file-detect-end-of-file) - [PrintWriter vs. FileWriter in Java](https://www.baeldung.com/java-printwriter-filewriter-difference) +- [Read Input Character-by-Character in Java](https://www.baeldung.com/java-read-input-character) +- [Difference Between flush() and close() in Java FileWriter](https://www.baeldung.com/java-filewriter-flush-vs-close) diff --git a/core-java-modules/core-java-io-apis-2/pom.xml b/core-java-modules/core-java-io-apis-2/pom.xml index 579fa4a589..89ab6d163a 100644 --- a/core-java-modules/core-java-io-apis-2/pom.xml +++ b/core-java-modules/core-java-io-apis-2/pom.xml @@ -82,6 +82,7 @@ test + core-java-io-apis-2 @@ -91,6 +92,7 @@ + 5.9.3 diff --git a/core-java-modules/core-java-io-apis/README.md b/core-java-modules/core-java-io-apis/README.md index b00b0a6022..faf7067f74 100644 --- a/core-java-modules/core-java-io-apis/README.md +++ b/core-java-modules/core-java-io-apis/README.md @@ -11,5 +11,5 @@ This module contains articles about core Java input/output(IO) APIs. - [Quick Use of FilenameFilter](https://www.baeldung.com/java-filename-filter) - [Guide to BufferedReader](https://www.baeldung.com/java-buffered-reader) - [Difference Between FileReader and BufferedReader in Java](https://www.baeldung.com/java-filereader-vs-bufferedreader) -- [Java: Read Multiple Inputs on Same Line](https://www.baeldung.com/java-read-multiple-inputs-same-line) -- [Write Console Output to Text File in Java](https://www.baeldung.com/java-write-console-output-file) \ No newline at end of file +- [Read Multiple Inputs on the Same Line in Java](https://www.baeldung.com/java-read-multiple-inputs-same-line) +- [Write Console Output to Text File in Java](https://www.baeldung.com/java-write-console-output-file) diff --git a/core-java-modules/core-java-lang-6/Dockerfile b/core-java-modules/core-java-lang-6/Dockerfile new file mode 100644 index 0000000000..60c052f79f --- /dev/null +++ b/core-java-modules/core-java-lang-6/Dockerfile @@ -0,0 +1,7 @@ +FROM maven:3.9-amazoncorretto-17 +WORKDIR /app +COPY /src/test/java/com/baeldung/setenvironment/SettingDockerEnvironmentVariableUnitTest.java \ + ./src/test/java/com/baeldung/setenvironment/ +COPY /docker-pom.xml ./ +ENV CUSTOM_DOCKER_ENV_VARIABLE=TRUE +ENTRYPOINT mvn -f docker-pom.xml test \ No newline at end of file diff --git a/core-java-modules/core-java-lang-6/README.md b/core-java-modules/core-java-lang-6/README.md index 214409dd04..5319dd15f7 100644 --- a/core-java-modules/core-java-lang-6/README.md +++ b/core-java-modules/core-java-lang-6/README.md @@ -10,4 +10,8 @@ This module contains articles about core features in the Java language - [Stop Executing Further Code in Java](https://www.baeldung.com/java-stop-running-code) - [Using the Apache Commons Lang 3 for Comparing Objects in Java](https://www.baeldung.com/java-apache-commons-lang-3-compare-objects) - [Return First Non-null Value in Java](https://www.baeldung.com/java-first-non-null) +- [Compress and Uncompress Byte Array Using Deflater/Inflater](https://www.baeldung.com/java-compress-uncompress-byte-array) - [Static Final Variables in Java](https://www.baeldung.com/java-static-final-variables) +- [What Is the Error: “Non-static method cannot be referenced from a static context”?](https://www.baeldung.com/java-non-static-method-cannot-be-referenced-from-a-static-context) +- [Recursively Sum the Integers in an Array](https://www.baeldung.com/java-recursive-sum-integer-array) +- [Set an Environment Variable at Runtime in Java](https://www.baeldung.com/java-set-environment-variable-runtime) diff --git a/core-java-modules/core-java-lang-6/docker-pom.xml b/core-java-modules/core-java-lang-6/docker-pom.xml new file mode 100644 index 0000000000..5977480664 --- /dev/null +++ b/core-java-modules/core-java-lang-6/docker-pom.xml @@ -0,0 +1,42 @@ + + + 4.0.0 + + com.baeldung.core-java-modules + core-java-lang-6 + 0.0.1-SNAPSHOT + + + + org.testcontainers + testcontainers + ${testcontainers.junit.version} + test + + + org.testcontainers + junit-jupiter + ${testcontainers.junit.version} + test + + + org.junit.jupiter + junit-jupiter-api + 5.10.1 + test + + + org.junit.jupiter + junit-jupiter-engine + 5.10.1 + test + + + + + 1.19.3 + + + \ No newline at end of file diff --git a/core-java-modules/core-java-lang-6/pom.xml b/core-java-modules/core-java-lang-6/pom.xml index accb014963..8f7f574e22 100644 --- a/core-java-modules/core-java-lang-6/pom.xml +++ b/core-java-modules/core-java-lang-6/pom.xml @@ -3,14 +3,14 @@ xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 + core-java-lang-6 + com.baeldung.core-java-modules core-java-modules 0.0.1-SNAPSHOT - core-java-lang-6 - @@ -33,6 +33,25 @@ jmh-generator-annprocess ${jmh.version} + + org.junit-pioneer + junit-pioneer + ${junit.pioneer.version} + test + + + org.testcontainers + testcontainers + ${testcontaienr.version} + test + + + org.testcontainers + junit-jupiter + ${testcontaienr.version} + test + + @@ -53,6 +72,8 @@ ${jmh.version} + 14 + 14 @@ -61,6 +82,8 @@ 1.6.0.Beta1 1.37 + 2.2.0 + 1.19.3 \ No newline at end of file diff --git a/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingChildProcessEnvironmentVariableUnitTest.java b/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingChildProcessEnvironmentVariableUnitTest.java new file mode 100644 index 0000000000..609f6be739 --- /dev/null +++ b/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingChildProcessEnvironmentVariableUnitTest.java @@ -0,0 +1,44 @@ +package com.baeldung.setenvironment; + +import static org.assertj.core.api.Assertions.assertThat; + +import java.io.IOException; +import java.util.Map; +import org.junit.jupiter.api.Tag; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable; + +class SettingChildProcessEnvironmentVariableUnitTest { + + public static final String ENVIRONMENT_VARIABLE_NAME = "test"; + public static final String ENVIRONMENT_VARIABLE_VALUE = "Hello World"; + public static final String CHILD_PROCESS_CONDITION = "CHILD_PROCESS_TEST"; + public static final String CHILD_PROCESS_VALUE = "true"; + public static final String CHILD_PROCESS_TAG = "child_process"; + public static final String TAG = String.format("-Dgroups=%s", CHILD_PROCESS_TAG); + private final String testClass = String.format("-Dtest=%s", getClass().getName()); + private final String[] arguments = {"mvn", "test", TAG, testClass}; + + @Test + void givenChildProcessTestRunner_whenRunTheTest_thenAllSucceed() + throws IOException, InterruptedException { + ProcessBuilder processBuilder = new ProcessBuilder(); + processBuilder.inheritIO(); + + Map environment = processBuilder.environment(); + environment.put(CHILD_PROCESS_CONDITION, CHILD_PROCESS_VALUE); + environment.put(ENVIRONMENT_VARIABLE_NAME, ENVIRONMENT_VARIABLE_VALUE); + Process process = processBuilder.command(arguments).start(); + + int errorCode = process.waitFor(); + assertThat(errorCode).isZero(); + } + + @Test + @EnabledIfEnvironmentVariable(named = CHILD_PROCESS_CONDITION, matches = CHILD_PROCESS_VALUE) + @Tag(CHILD_PROCESS_TAG) + void givenChildProcess_whenGetEnvironmentVariable_thenReturnsCorrectValue() { + String actual = System.getenv(ENVIRONMENT_VARIABLE_NAME); + assertThat(actual).isEqualTo(ENVIRONMENT_VARIABLE_VALUE); + } +} diff --git a/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingDockerEnvironmentVariableUnitTest.java b/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingDockerEnvironmentVariableUnitTest.java new file mode 100644 index 0000000000..5621b431a8 --- /dev/null +++ b/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingDockerEnvironmentVariableUnitTest.java @@ -0,0 +1,19 @@ +package com.baeldung.setenvironment; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable; + +class SettingDockerEnvironmentVariableUnitTest { + + public static final String ENV_VARIABLE_NAME = "CUSTOM_DOCKER_ENV_VARIABLE"; + public static final String ENV_VARIABLE_VALUE = "TRUE"; + + @Test + @EnabledIfEnvironmentVariable(named = ENV_VARIABLE_NAME, matches = ENV_VARIABLE_VALUE) + void givenDockerEnvironment_whenGetEnvironmentVariable_thenReturnsCorrectValue() { + String actual = System.getenv(ENV_VARIABLE_NAME); + assertEquals(ENV_VARIABLE_VALUE, actual); + } +} diff --git a/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingSameProcessEnvironmentVariableUnitTest.java b/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingSameProcessEnvironmentVariableUnitTest.java new file mode 100644 index 0000000000..7cd44430fa --- /dev/null +++ b/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingSameProcessEnvironmentVariableUnitTest.java @@ -0,0 +1,83 @@ +package com.baeldung.setenvironment; + +import static org.assertj.core.api.Assertions.assertThat; + +import java.lang.reflect.Field; +import java.util.Collections; +import java.util.Map; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.condition.EnabledForJreRange; +import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable; +import org.junit.jupiter.api.condition.JRE; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.CsvSource; +import org.junitpioneer.jupiter.SetEnvironmentVariable; + +class SettingSameProcessEnvironmentVariableUnitTest { + + private static final String PROCESS_ENVIRONMENT = "java.lang.ProcessEnvironment"; + private static final String ENVIRONMENT = "theUnmodifiableEnvironment"; + private static final String SOURCE_MAP = "m"; + private static final Object STATIC_METHOD = null; + private static final Class UMODIFIABLE_MAP_CLASS + = Collections.unmodifiableMap(Collections.emptyMap()).getClass(); + private static final Class MAP_CLASS = Map.class; + public static final String ENV_VARIABLE_NAME = "test"; + public static final String ENV_VARIABLE_VALUE = "Hello World"; + + @ParameterizedTest + @CsvSource({ENV_VARIABLE_VALUE + "," + ENV_VARIABLE_NAME}) + @EnabledForJreRange(max = JRE.JAVA_16) + void givenReflexiveAccess_whenGetSourceMap_thenSuccessfullyModifyVariables(String environmentVariable, String value) + throws ClassNotFoundException, NoSuchFieldException, IllegalAccessException { + Map modifiableEnvironment = getModifiableEnvironment(); + assertThat(modifiableEnvironment).isNotNull(); + + modifiableEnvironment.put(environmentVariable, value); + String actual = modifiableEnvironment.get(environmentVariable); + assertThat(actual).isEqualTo(value); + } + + @Test + @EnabledIfEnvironmentVariable(named = "PATH", matches = ".*", + disabledReason = "The test relies on the presence of PATH variable") + void givenOS_whenGetPath_thenVariableIsPresent() { + String classPath = System.getenv("PATH"); + assertThat(classPath).isNotNull(); + } + + @Test + void givenOS_whenGetEnv_thenVariablesArePresent() { + Map environment = System.getenv(); + assertThat(environment).isNotNull(); + } + + @Test + @SetEnvironmentVariable(key = ENV_VARIABLE_NAME, value = ENV_VARIABLE_VALUE) + @EnabledForJreRange(max = JRE.JAVA_16) + void givenVariableSet_whenGetEnvironmentVariable_thenReturnsCorrectValue() { + String actual = System.getenv(ENV_VARIABLE_NAME); + assertThat(actual).isEqualTo(ENV_VARIABLE_VALUE); + } + + @SuppressWarnings("unchecked") + private static Map getModifiableEnvironment() + throws ClassNotFoundException, NoSuchFieldException, IllegalAccessException { + Class environmentClass = Class.forName(PROCESS_ENVIRONMENT); + Field environmentField = environmentClass.getDeclaredField(ENVIRONMENT); + assertThat(environmentField).isNotNull(); + environmentField.setAccessible(true); + + Object unmodifiableEnvironmentMap = environmentField.get(STATIC_METHOD); + assertThat(unmodifiableEnvironmentMap).isNotNull(); + assertThat(unmodifiableEnvironmentMap).isInstanceOf(UMODIFIABLE_MAP_CLASS); + + Field underlyingMapField = unmodifiableEnvironmentMap.getClass().getDeclaredField(SOURCE_MAP); + underlyingMapField.setAccessible(true); + Object underlyingMap = underlyingMapField.get(unmodifiableEnvironmentMap); + assertThat(underlyingMap).isNotNull(); + assertThat(underlyingMap).isInstanceOf(MAP_CLASS); + + return (Map) underlyingMap; + } +} diff --git a/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingTestcontainerVariableUnitTest.java b/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingTestcontainerVariableUnitTest.java new file mode 100644 index 0000000000..b6f9054931 --- /dev/null +++ b/core-java-modules/core-java-lang-6/src/test/java/com/baeldung/setenvironment/SettingTestcontainerVariableUnitTest.java @@ -0,0 +1,31 @@ +package com.baeldung.setenvironment; + +import static org.assertj.core.api.Assertions.assertThat; + +import java.nio.file.Path; +import java.nio.file.Paths; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.testcontainers.containers.GenericContainer; +import org.testcontainers.images.builder.ImageFromDockerfile; + +class SettingTestcontainerVariableUnitTest { + + public static final String CONTAINER_REPORT_FILE = "/app/target/surefire-reports/TEST-com.baeldung.setenvironment.SettingDockerEnvironmentVariableUnitTest.xml"; + public static final String HOST_REPORT_FILE = "./container-test-report.xml"; + public static final String DOCKERFILE = "./Dockerfile"; + + @Test + @Disabled("Requires working Docker environment ") + void givenTestcontainerEnvironment_whenGetEnvironmentVariable_thenReturnsCorrectValue() { + Path dockerfilePath = Paths.get(DOCKERFILE); + GenericContainer container = new GenericContainer( + new ImageFromDockerfile().withDockerfile(dockerfilePath)); + assertThat(container).isNotNull(); + container.start(); + while (container.isRunning()) { + // Busy spin + } + container.copyFileFromContainer(CONTAINER_REPORT_FILE, HOST_REPORT_FILE); + } +} diff --git a/core-java-modules/core-java-lang-math-3/README.md b/core-java-modules/core-java-lang-math-3/README.md index 37027970b6..e0d7ccdcf5 100644 --- a/core-java-modules/core-java-lang-math-3/README.md +++ b/core-java-modules/core-java-lang-math-3/README.md @@ -13,4 +13,8 @@ - [Java Money and the Currency API](http://www.baeldung.com/java-money-and-currency) - [Clamp Function in Java](https://www.baeldung.com/java-clamp-function) - [Creating a Magic Square in Java](https://www.baeldung.com/java-magic-square) +- [Check if a Point Is Between Two Points Drawn on a Straight Line in Java](https://www.baeldung.com/java-check-point-straight-line) +- [Validate if a String Is a Valid Geo Coordinate](https://www.baeldung.com/java-geo-coordinates-validation) +- [Rotate a Vertex Around a Certain Point in Java](https://www.baeldung.com/java-rotate-vertex-around-point) +- [Calculating the Power of Any Number in Java Without Using Math pow() Method](https://www.baeldung.com/java-calculating-the-power-without-math-pow) - More articles: [[<-- Prev]](/core-java-modules/core-java-lang-math-2) diff --git a/core-java-modules/core-java-lang-math-3/src/main/java/com/baeldung/math/rotatevertex/VertexRotation.java b/core-java-modules/core-java-lang-math-3/src/main/java/com/baeldung/math/rotatevertex/VertexRotation.java new file mode 100644 index 0000000000..b8ec6a9065 --- /dev/null +++ b/core-java-modules/core-java-lang-math-3/src/main/java/com/baeldung/math/rotatevertex/VertexRotation.java @@ -0,0 +1,26 @@ +package com.baeldung.math.rotatevertex; + +import java.awt.geom.AffineTransform; +import java.awt.geom.Point2D; + +public class VertexRotation { + public static Point2D.Double usingOriginAsRotationPoint(Point2D.Double vertex, Point2D.Double rotationPoint, double angle) { + double translatedToOriginX = vertex.x - rotationPoint.x; + double translatedToOriginY = vertex.y - rotationPoint.y; + + double rotatedX = translatedToOriginX * Math.cos(angle) - translatedToOriginY * Math.sin(angle); + double rotatedY = translatedToOriginX * Math.sin(angle) + translatedToOriginY * Math.cos(angle); + + double reverseTranslatedX = rotatedX + rotationPoint.x; + double reverseTranslatedY = rotatedY + rotationPoint.y; + + return new Point2D.Double(reverseTranslatedX, reverseTranslatedY); + } + + public static Point2D.Double usingAffineTransform(Point2D.Double vertex, Point2D.Double rotationPoint, double angle) { + AffineTransform affineTransform = AffineTransform.getRotateInstance(angle, rotationPoint.x, rotationPoint.y); + Point2D.Double rotatedVertex = new Point2D.Double(); + affineTransform.transform(vertex, rotatedVertex); + return rotatedVertex; + } +} diff --git a/core-java-modules/core-java-lang-math-3/src/test/java/com/baeldung/com.baeldung.powerinsteadofmathpow/FindPowerInsteadOfUsingMathPowUnitTest.java b/core-java-modules/core-java-lang-math-3/src/test/java/com/baeldung/com.baeldung.powerinsteadofmathpow/FindPowerInsteadOfUsingMathPowUnitTest.java new file mode 100644 index 0000000000..537b361971 --- /dev/null +++ b/core-java-modules/core-java-lang-math-3/src/test/java/com/baeldung/com.baeldung.powerinsteadofmathpow/FindPowerInsteadOfUsingMathPowUnitTest.java @@ -0,0 +1,57 @@ +package com.baeldung.powerinsteadofmathpow; + +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class FindPowerInsteadOfUsingMathPowUnitTest { + double result = 1; + double base = 2; + int exponent = 3; + + @Test + public void givenBaseAndExponentNumbers_whenUtilizingIterativeApproach_thenReturnThePower() { + + for (int i = 0; i < exponent; i++) { + result *= base; + } + + assertEquals(8, result); + } + + @Test + public void givenBaseAndExponentNumbers_whenUtilizingRecursionApproach_thenReturnThePower() { + + result = calculatePowerRecursively(base, exponent); + + assertEquals(8, result); + } + + private double calculatePowerRecursively(double base, int exponent) { + if (exponent == 0) { + return 1; + } else { + return base * calculatePowerRecursively(base, exponent - 1); + } + } + + @Test + public void givenBaseAndExponentNumbers_whenUtilizingFastApproach_thenReturnThePower() { + result = calculatePowerFast(base, exponent); + + assertEquals(8, result); + } + + private double calculatePowerFast(double base, int exponent) { + if (exponent == 0) { + return 1; + } + + double halfPower = calculatePowerFast(base, exponent / 2); + if (exponent % 2 == 0) { + return halfPower * halfPower; + } else { + return base * halfPower * halfPower; + } + } +} diff --git a/core-java-modules/core-java-lang-math-3/src/test/java/com/baeldung/math/rotatevertex/VertexRotationUnitTest.java b/core-java-modules/core-java-lang-math-3/src/test/java/com/baeldung/math/rotatevertex/VertexRotationUnitTest.java new file mode 100644 index 0000000000..50b1aaf196 --- /dev/null +++ b/core-java-modules/core-java-lang-math-3/src/test/java/com/baeldung/math/rotatevertex/VertexRotationUnitTest.java @@ -0,0 +1,31 @@ +package com.baeldung.math.rotatevertex; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.awt.geom.Point2D; + +import org.junit.jupiter.api.Test; + +public class VertexRotationUnitTest { + @Test + void givenRotationPoint_whenUseOrigin_thenRotateVertex() { + Point2D.Double vertex = new Point2D.Double(2.0, 2.0); + Point2D.Double rotationPoint = new Point2D.Double(0.0, 1.0); + double angle = Math.toRadians(45.0); + Point2D.Double rotatedVertex = VertexRotation.usingOriginAsRotationPoint(vertex, rotationPoint, angle); + + assertEquals(0.707, rotatedVertex.getX(), 0.001); + assertEquals(3.121, rotatedVertex.getY(), 0.001); + } + + @Test + void givenRotationPoint_whenUseAffineTransform_thenRotateVertex() { + Point2D.Double vertex = new Point2D.Double(2.0, 2.0); + Point2D.Double rotationPoint = new Point2D.Double(0.0, 1.0); + double angle = Math.toRadians(45.0); + Point2D.Double rotatedVertex = VertexRotation.usingAffineTransform(vertex, rotationPoint, angle); + + assertEquals(0.707, rotatedVertex.getX(), 0.001); + assertEquals(3.121, rotatedVertex.getY(), 0.001); + } +} diff --git a/core-java-modules/core-java-lang-math/pom.xml b/core-java-modules/core-java-lang-math/pom.xml index 118998991f..85e653930c 100644 --- a/core-java-modules/core-java-lang-math/pom.xml +++ b/core-java-modules/core-java-lang-math/pom.xml @@ -5,6 +5,14 @@ 4.0.0 core-java-lang-math core-java-lang-math + jar + + + com.baeldung.core-java-modules + core-java-modules + 0.0.1-SNAPSHOT + + org.projectlombok @@ -13,13 +21,6 @@ compile - jar - - - com.baeldung.core-java-modules - core-java-modules - 0.0.1-SNAPSHOT - core-java-lang-math diff --git a/core-java-modules/core-java-lang-oop-generics/README.md b/core-java-modules/core-java-lang-oop-generics/README.md index 3e33ba5315..f230208851 100644 --- a/core-java-modules/core-java-lang-oop-generics/README.md +++ b/core-java-modules/core-java-lang-oop-generics/README.md @@ -10,3 +10,4 @@ This module contains articles about generics in Java - [Java Warning “unchecked conversion”](https://www.baeldung.com/java-unchecked-conversion) - [Java Warning “Unchecked Cast”](https://www.baeldung.com/java-warning-unchecked-cast) - [What Does the Holder Class Do in Java?](https://www.baeldung.com/java-holder-class) +- [Determine the Class of a Generic Type in Java](https://www.baeldung.com/java-generic-type-find-class-runtime) diff --git a/core-java-modules/core-java-lang-oop-patterns/pom.xml b/core-java-modules/core-java-lang-oop-patterns/pom.xml index 4b89584def..f0a714e911 100644 --- a/core-java-modules/core-java-lang-oop-patterns/pom.xml +++ b/core-java-modules/core-java-lang-oop-patterns/pom.xml @@ -32,7 +32,7 @@ - 2.8.2 + 2.10.1 \ No newline at end of file diff --git a/core-java-modules/core-java-networking-4/urlnormalization/URLNormalizationUnitTest.java b/core-java-modules/core-java-networking-4/urlnormalization/URLNormalizationUnitTest.java new file mode 100644 index 0000000000..3f57b0da48 --- /dev/null +++ b/core-java-modules/core-java-networking-4/urlnormalization/URLNormalizationUnitTest.java @@ -0,0 +1,50 @@ +package com.baeldung.urlnormalization; + +import org.junit.jupiter.api.Test; +import org.apache.commons.validator.routines.UrlValidator; + +import java.io.UnsupportedEncodingException; +import java.net.URI; +import java.net.URISyntaxException; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class URLNormalizationUnitTest { + String originalUrl = "https://www.example.com:8080/path/to/resource?param1=value1¶m2=value2#fragment"; + String expectedNormalizedUrl = "https://www.example.com:8080/path/to/resource"; + + @Test + public void givenOriginalUrl_whenUsingApacheCommonsValidator_thenValidatedAndMaybeManuallyNormalized() { + UrlValidator urlValidator = new UrlValidator(); + if (urlValidator.isValid(originalUrl)) { + String normalizedUri = originalUrl.split("\\?")[0]; + assertEquals(expectedNormalizedUrl, normalizedUri); + } else { + fail(originalUrl); + } + } + + @Test + public void givenOriginalUrl_whenUsingJavaURIClass_thenNormalizedUrl() throws URISyntaxException { + URI uri = new URI(originalUrl); + URI normalizedUri = new URI(uri.getScheme(), uri.getAuthority(), uri.getPath(), null, null); + String normalizedUrl = normalizedUri.toString(); + assertEquals(expectedNormalizedUrl, normalizedUrl); + } + + @Test + public void givenOriginalUrl_whenUsingRegularExpression_thenNormalizedUrl() { + String regex = "^(https?://[^/]+/[^?#]+)"; + Pattern pattern = Pattern.compile(regex); + Matcher matcher = pattern.matcher(originalUrl); + + if (matcher.find()) { + String normalizedUrl = matcher.group(1); + assertEquals(expectedNormalizedUrl, normalizedUrl); + } else { + fail(originalUrl); + } + } +} diff --git a/core-java-modules/core-java-numbers-6/pom.xml b/core-java-modules/core-java-numbers-6/pom.xml index 34e53056a4..a5ddcfc0ee 100644 --- a/core-java-modules/core-java-numbers-6/pom.xml +++ b/core-java-modules/core-java-numbers-6/pom.xml @@ -31,6 +31,7 @@ ${guava.version} + core-java-numbers-6 @@ -44,4 +45,5 @@ 1.16.0 + \ No newline at end of file diff --git a/core-java-modules/core-java-numbers-7/README.md b/core-java-modules/core-java-numbers-7/README.md index 42a43fd1fd..e86d199d97 100644 --- a/core-java-modules/core-java-numbers-7/README.md +++ b/core-java-modules/core-java-numbers-7/README.md @@ -1,2 +1,4 @@ ## Relevant Articles - [Check if a double Is an Integer in Java](https://www.baeldung.com/java-check-double-integer) +- [Print a Double Value Without Scientific Notation in Java](https://www.baeldung.com/java-print-double-number-no-scientific-notation) +- [Check if a Float Value is Equivalent to an Integer Value in Java](https://www.baeldung.com/java-float-integer-equal) diff --git a/core-java-modules/core-java-numbers-7/pom.xml b/core-java-modules/core-java-numbers-7/pom.xml index dec3084108..3940a0b1d0 100644 --- a/core-java-modules/core-java-numbers-7/pom.xml +++ b/core-java-modules/core-java-numbers-7/pom.xml @@ -25,6 +25,7 @@ ${guava.version} + core-java-numbers-7 @@ -34,4 +35,5 @@ + \ No newline at end of file diff --git a/core-java-modules/core-java-numbers-conversions/README.md b/core-java-modules/core-java-numbers-conversions/README.md index b5f02a9d47..9f2a1d07b8 100644 --- a/core-java-modules/core-java-numbers-conversions/README.md +++ b/core-java-modules/core-java-numbers-conversions/README.md @@ -2,7 +2,9 @@ - [Convert a Number to a Letter in Java](https://www.baeldung.com/java-convert-number-to-letter) - [Convert Long to BigDecimal in Java](https://www.baeldung.com/java-convert-long-bigdecimal) - [Convert int to Long in Java](https://www.baeldung.com/java-convert-int-long) -- [How To Convert Double To Float In Java](https://www.baeldung.com/java-convert-double-float) +- [How to Convert Double to Float in Java](https://www.baeldung.com/java-convert-double-float) - [Converting from float to BigDecimal in Java](https://www.baeldung.com/java-convert-float-bigdecimal) - [Convert Positive Integer to Negative and Vice Versa in Java](https://www.baeldung.com/java-negating-integer) - [Rounding Up a Number to Nearest Multiple of 5 in Java](https://www.baeldung.com/java-round-nearest-multiple-five) +- [Convert byte to int Type in Java](https://www.baeldung.com/java-byte-to-int-conversion) +- [Converting Integer to BigDecimal in Java](https://www.baeldung.com/java-integer-bigdecimal-conversion) diff --git a/core-java-modules/core-java-numbers-conversions/src/main/java/com/baeldung/bytetoint/ByteToIntConversion.java b/core-java-modules/core-java-numbers-conversions/src/main/java/com/baeldung/bytetoint/ByteToIntConversion.java new file mode 100644 index 0000000000..59d350cba4 --- /dev/null +++ b/core-java-modules/core-java-numbers-conversions/src/main/java/com/baeldung/bytetoint/ByteToIntConversion.java @@ -0,0 +1,25 @@ +package com.baeldung.bytetoint; + +public class ByteToIntConversion { + static int usingTypeCasting(byte b){ + int i = b; + return i; + } + + static int usingIntegerValueOf(byte b){ + return Integer.valueOf(b); + } + + static int usingByteIntValue(byte b){ + Byte byteObj = new Byte(b); + return byteObj.intValue(); + } + + static int usingMathToIntExact(byte b){ + return Math.toIntExact(b); + } + + static int usingByteUnsignedInt(byte b){ + return Byte.toUnsignedInt(b); + } +} diff --git a/core-java-modules/core-java-numbers-conversions/src/test/java/com/baeldung/bytetoint/ByteToIntConversionUnitTest.java b/core-java-modules/core-java-numbers-conversions/src/test/java/com/baeldung/bytetoint/ByteToIntConversionUnitTest.java new file mode 100644 index 0000000000..61217aad6d --- /dev/null +++ b/core-java-modules/core-java-numbers-conversions/src/test/java/com/baeldung/bytetoint/ByteToIntConversionUnitTest.java @@ -0,0 +1,45 @@ +package com.baeldung.bytetoint; + +import org.junit.Test; +import static org.junit.Assert.assertEquals; + +public class ByteToIntConversionUnitTest { + @Test + public void givenByte_whenUsingTypeCasting_thenConvertToInt() { + byte b = -51; + int result = ByteToIntConversion.usingTypeCasting(b); + assertEquals(-51, result); + } + + @Test + void givenByte_whenUsingIntegerValueOf_thenConvertToInt() { + byte b = -51; + int result = ByteToIntConversion.usingIntegerValueOf(b); + + assertEquals(-51, result); + } + + @Test + void givenByte_whenUsingByteIntValue_thenConvertToInt() { + byte b = -51; + int result = ByteToIntConversion.usingByteIntValue(b); + + assertEquals(-51, result); + } + + @Test + void givenByte_whenUsingMathToIntExact_thenConvertToInt() { + byte b = -51; + int result = ByteToIntConversion.usingMathToIntExact(b); + + assertEquals(-51, result); + } + + @Test + void givenByte_whenUsingByteUnsignedInt_thenConvertToInt() { + byte b = -51; + int result = ByteToIntConversion.usingByteUnsignedInt(b); + + assertEquals(205, result); + } +} diff --git a/core-java-modules/core-java-perf-2/src/test/java/com/baeldung/oom/OomCrashUnitTest.java b/core-java-modules/core-java-perf-2/src/test/java/com/baeldung/oom/OomCrashUnitTest.java new file mode 100644 index 0000000000..21b7c83ad4 --- /dev/null +++ b/core-java-modules/core-java-perf-2/src/test/java/com/baeldung/oom/OomCrashUnitTest.java @@ -0,0 +1,52 @@ +package com.baeldung.oom; + +import java.util.ArrayList; +import java.util.List; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + +@Disabled +class OomCrashUnitTest { + + public static final Runnable MEMORY_LEAK = () -> { + List list = new ArrayList<>(); + while (true) { + list.add(tenMegabytes()); + } + }; + + @Test + void givenMemoryLeakCode_whenRunInsideThread_thenMainAppDoestFail() throws InterruptedException { + Thread memoryLeakThread = new Thread(MEMORY_LEAK); + memoryLeakThread.start(); + memoryLeakThread.join(); + } + + @Test + void givenMemoryLeakCode_whenRunSeveralTimesInsideThread_thenMainAppDoestFail() throws InterruptedException { + for (int i = 0; i < 5; i++) { + Thread memoryLeakThread = new Thread(MEMORY_LEAK); + memoryLeakThread.start(); + memoryLeakThread.join(); + } + } + + @Test + void givenBadExample_whenUseItInProductionCode_thenQuestionedByEmployerAndProbablyFired() + throws InterruptedException { + Thread npeThread = new Thread(() -> { + String nullString = null; + try { + nullString.isEmpty(); + } catch (NullPointerException e) { + throw new OutOfMemoryError(e.getMessage()); + } + }); + npeThread.start(); + npeThread.join(); + } + + private static byte[] tenMegabytes() { + return new byte[1024 * 1014 * 10]; + } +} diff --git a/core-java-modules/core-java-records/pom.xml b/core-java-modules/core-java-records/pom.xml index 0caa1765fd..5968bbb344 100644 --- a/core-java-modules/core-java-records/pom.xml +++ b/core-java-modules/core-java-records/pom.xml @@ -2,14 +2,15 @@ + 4.0.0 + core-java-records + core-java-modules com.baeldung.core-java-modules 0.0.1-SNAPSHOT - 4.0.0 - core-java-records diff --git a/core-java-modules/core-java-reflection-3/src/main/java/com/baeldung/reflection/innerclass/Person.java b/core-java-modules/core-java-reflection-3/src/main/java/com/baeldung/reflection/innerclass/Person.java new file mode 100644 index 0000000000..d226aad268 --- /dev/null +++ b/core-java-modules/core-java-reflection-3/src/main/java/com/baeldung/reflection/innerclass/Person.java @@ -0,0 +1,20 @@ +package com.baeldung.reflection.innerclass; + +public class Person { + String name; + Address address; + + public Person() { + } + + public class Address { + String zip; + + public Address(String zip) { + this.zip = zip; + } + } + + public static class Builder { + } +} diff --git a/core-java-modules/core-java-reflection-3/src/test/java/com/baeldung/reflection/innerclass/CreateInnerClassWithReflectionUnitTest.java b/core-java-modules/core-java-reflection-3/src/test/java/com/baeldung/reflection/innerclass/CreateInnerClassWithReflectionUnitTest.java new file mode 100644 index 0000000000..2654cb646d --- /dev/null +++ b/core-java-modules/core-java-reflection-3/src/test/java/com/baeldung/reflection/innerclass/CreateInnerClassWithReflectionUnitTest.java @@ -0,0 +1,67 @@ +package com.baeldung.reflection.innerclass; + +import java.lang.reflect.Constructor; +import java.lang.reflect.InvocationTargetException; +import java.util.Arrays; +import java.util.stream.Collectors; + +import static org.junit.jupiter.api.Assertions.*; +import org.junit.jupiter.api.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class CreateInnerClassWithReflectionUnitTest { + + static Logger logger = LoggerFactory.getLogger(CreateInnerClassWithReflectionUnitTest.class); + + @Test + void givenInnerClass_whenUseReflection_thenShowConstructors() { + final String personBuilderClassName = "com.baeldung.reflection.innerclass.Person$Builder"; + final String personAddressClassName = "com.baeldung.reflection.innerclass.Person$Address"; + assertDoesNotThrow(() -> logConstructors(Class.forName(personAddressClassName))); + assertDoesNotThrow(() -> logConstructors(Class.forName(personBuilderClassName))); + } + + private static void logConstructors(Class clazz) { + Arrays.stream(clazz.getDeclaredConstructors()) + .map(c -> formatConstructorSignature(c)) + .forEach(logger::info); + } + + private static String formatConstructorSignature(Constructor constructor) { + String params = Arrays.stream(constructor.getParameters()) + .map(parameter -> parameter.getType().getSimpleName() + " " + parameter.getName()) + .collect(Collectors.joining(", ")); + return constructor.getName() + "(" + params + ")"; + } + + @Test + void givenStaticInnerClass_whenUseReflection_thenInstantiate() + throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, + InstantiationException, IllegalAccessException { + final String personBuilderClassName = "com.baeldung.reflection.innerclass.Person$Builder"; + Class personBuilderClass = (Class) Class.forName(personBuilderClassName); + Person.Builder personBuilderObj = personBuilderClass.getDeclaredConstructor().newInstance(); + assertTrue(personBuilderObj instanceof Person.Builder); + } + + @Test + void givenNonStaticInnerClass_whenUseReflection_thenInstantiate() + throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, + InstantiationException, IllegalAccessException { + final String personClassName = "com.baeldung.reflection.innerclass.Person"; + final String personAddressClassName = "com.baeldung.reflection.innerclass.Person$Address"; + + Class personClass = (Class) Class.forName(personClassName); + Person personObj = personClass.getConstructor().newInstance(); + + Class personAddressClass = (Class) Class.forName(personAddressClassName); + + assertThrows(NoSuchMethodException.class, () -> personAddressClass.getDeclaredConstructor(String.class)); + + Constructor constructorOfPersonAddress = personAddressClass.getDeclaredConstructor(Person.class, String.class); + Person.Address personAddressObj = constructorOfPersonAddress.newInstance(personObj, "751003"); + assertTrue(personAddressObj instanceof Person.Address); + } + +} diff --git a/core-java-modules/core-java-regex-2/README.md b/core-java-modules/core-java-regex-2/README.md index 404b33b65f..5f08a521c1 100644 --- a/core-java-modules/core-java-regex-2/README.md +++ b/core-java-modules/core-java-regex-2/README.md @@ -9,5 +9,5 @@ - [Regular Expression: \z vs \Z Anchors in Java](https://www.baeldung.com/java-regular-expression-z-vs-z-anchors) - [Extract Text Between Square Brackets](https://www.baeldung.com/java-get-content-between-square-brackets) - [Get the Indexes of Regex Pattern Matches in Java](https://www.baeldung.com/java-indexes-regex-pattern-matches) -- [Check if a String is Strictly Alphanumeric With Java](https://www.baeldung.com/java-check-string-contains-only-letters-numbers) +- [Check if a String Is Strictly Alphanumeric With Java](https://www.baeldung.com/java-check-string-contains-only-letters-numbers) - More articles: [[<-- prev]](/core-java-modules/core-java-regex) diff --git a/core-java-modules/core-java-regex-3/README.md b/core-java-modules/core-java-regex-3/README.md new file mode 100644 index 0000000000..18b5f0127f --- /dev/null +++ b/core-java-modules/core-java-regex-3/README.md @@ -0,0 +1,3 @@ +### Relevant Articles: + +- More articles: [[<-- prev]](/core-java-modules/core-java-regex-2) diff --git a/core-java-modules/core-java-regex-3/pom.xml b/core-java-modules/core-java-regex-3/pom.xml new file mode 100644 index 0000000000..143b615246 --- /dev/null +++ b/core-java-modules/core-java-regex-3/pom.xml @@ -0,0 +1,24 @@ + + + 4.0.0 + core-java-regex-3 + core-java-regex-3 + + + org.junit.jupiter + junit-jupiter + 5.8.1 + test + + + jar + + + com.baeldung.core-java-modules + core-java-modules + 0.0.1-SNAPSHOT + + + \ No newline at end of file diff --git a/core-java-modules/core-java-regex-3/src/test/java/com/baeldung/passwordvalidation/PasswordValidationUsingRegexUnitTest.java b/core-java-modules/core-java-regex-3/src/test/java/com/baeldung/passwordvalidation/PasswordValidationUsingRegexUnitTest.java new file mode 100644 index 0000000000..cbd1f1da58 --- /dev/null +++ b/core-java-modules/core-java-regex-3/src/test/java/com/baeldung/passwordvalidation/PasswordValidationUsingRegexUnitTest.java @@ -0,0 +1,53 @@ +package com.baeldung.passwordvalidation; + +import org.junit.jupiter.api.Test; + +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +import static org.junit.jupiter.api.Assertions.*; + +public class PasswordValidationUsingRegexUnitTest { + String password = "Baeldung20@"; + + @Test + public void givenStringPassword_whenUsingDynamicPasswordValidationRules_thenCheckIfPasswordValid() { + boolean result = false; + try { + if (password != null) { + String MIN_LENGTH = "8"; + String MAX_LENGTH = "20"; + boolean SPECIAL_CHAR_NEEDED = false; + + String ONE_DIGIT = "(?=.*[0-9])"; + String LOWER_CASE = "(?=.*[a-z])"; + String UPPER_CASE = "(?=.*[A-Z])"; + String SPECIAL_CHAR = SPECIAL_CHAR_NEEDED ? "(?=.*[@#$%^&+=])" : ""; + String NO_SPACE = "(?=\\S+$)"; + + String MIN_MAX_CHAR = ".{" + MIN_LENGTH + "," + MAX_LENGTH + "}"; + String PATTERN = ONE_DIGIT + LOWER_CASE + UPPER_CASE + SPECIAL_CHAR + NO_SPACE + MIN_MAX_CHAR; + + assertTrue(password.matches(PATTERN)); + } + + } catch (Exception ex) { + ex.printStackTrace(); + fail("Exception occurred: " + ex.getMessage()); + } + } + + @Test + public void givenStringPassword_whenUsingRegulaExpressions_thenCheckIfPasswordValid() { + + + String regExpn = + "^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%^&+=])(?=\\S+$).{8,20}$"; + + Pattern pattern = Pattern.compile(regExpn, Pattern.CASE_INSENSITIVE); + Matcher matcher = pattern.matcher(password); + + assertTrue(matcher.matches()); + } + +} diff --git a/core-java-modules/core-java-security-4/README.md b/core-java-modules/core-java-security-4/README.md index 3c910e50be..5e12606bbf 100644 --- a/core-java-modules/core-java-security-4/README.md +++ b/core-java-modules/core-java-security-4/README.md @@ -6,4 +6,6 @@ This module contains articles about core Java Security - [Check if Certificate Is Self-Signed or CA-Signed With Java](https://www.baeldung.com/java-check-certificate-sign) - [Extract CN From X509 Certificate in Java](https://www.baeldung.com/java-extract-common-name-x509-certificate) - [Check Certificate Name and Alias in Keystore File](https://www.baeldung.com/java-keystore-check-certificate-name-alias) +- [Using a Custom TrustStore in Java](https://www.baeldung.com/java-custom-truststore) +- [Enable Java SSL Debug Logging](https://www.baeldung.com/java-ssl-debug-logging) - More articles: [[<-- prev]](/core-java-modules/core-java-security-3) diff --git a/core-java-modules/core-java-security-4/src/main/java/com/baeldung/enablessldebug/SSLDebugLogger.java b/core-java-modules/core-java-security-4/src/main/java/com/baeldung/enablessldebug/SSLDebugLogger.java new file mode 100644 index 0000000000..73fd3b9981 --- /dev/null +++ b/core-java-modules/core-java-security-4/src/main/java/com/baeldung/enablessldebug/SSLDebugLogger.java @@ -0,0 +1,32 @@ +package com.baeldung.enablessldebug; + +import java.io.BufferedReader; +import java.io.InputStreamReader; +import java.net.URL; + +import javax.net.ssl.HttpsURLConnection; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class SSLDebugLogger { + private static final Logger logger = LoggerFactory.getLogger(SSLDebugLogger.class); + + public static void enableSSLDebugUsingSystemProperties() { + System.setProperty("javax.net.debug", "ssl"); + } + + public static void makeHttpsRequest() throws Exception { + String url = "https://github.com/eugenp/tutorials"; + URL httpsUrl = new URL(url); + HttpsURLConnection connection = (HttpsURLConnection) httpsUrl.openConnection(); + + try (BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()))) { + String line; + logger.info("Response from " + url + ":"); + while ((line = reader.readLine()) != null) { + logger.info(line); + } + } + } +} diff --git a/core-java-modules/core-java-security-4/src/test/java/com/baeldung/enablessldebug/SSLDebugLoggerUnitTest.java b/core-java-modules/core-java-security-4/src/test/java/com/baeldung/enablessldebug/SSLDebugLoggerUnitTest.java new file mode 100644 index 0000000000..759ebdef95 --- /dev/null +++ b/core-java-modules/core-java-security-4/src/test/java/com/baeldung/enablessldebug/SSLDebugLoggerUnitTest.java @@ -0,0 +1,49 @@ +package com.baeldung.enablessldebug; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.PrintStream; +import java.util.logging.ConsoleHandler; +import java.util.logging.Level; +import java.util.logging.LogManager; +import java.util.logging.Logger; + +import org.junit.jupiter.api.Test; + +public class SSLDebugLoggerUnitTest { + @Test + void givenSSLDebuggingEnabled_whenUsingSystemProperties_thenEnableSSLDebugLogging() throws Exception { + ByteArrayOutputStream outContent = new ByteArrayOutputStream(); + System.setErr(new PrintStream(outContent)); + + SSLDebugLogger.enableSSLDebugUsingSystemProperties(); + assertEquals("ssl", System.getProperty("javax.net.debug")); + + SSLDebugLogger.makeHttpsRequest(); + assertTrue(outContent.toString().contains("javax.net.ssl|DEBUG|")); + outContent.reset(); + + System.clearProperty("javax.net.debug"); + assertNull(System.getProperty("javax.net.debug")); + + SSLDebugLogger.makeHttpsRequest(); + assertEquals(outContent.toString(),""); + } + + @Test + void givenSSLDebuggingEnabled_whenUsingConfigurationFile_thenEnableSSLDebugLogging() throws IOException { + InputStream configFile = SSLDebugLoggerUnitTest.class.getClassLoader().getResourceAsStream("logging.properties"); + LogManager.getLogManager().readConfiguration(configFile); + + Logger sslLogger = Logger.getLogger("javax.net.ssl"); + ConsoleHandler consoleHandler = (ConsoleHandler) sslLogger.getHandlers()[0]; + Level consoleHandlerLevel = consoleHandler.getLevel(); + + assertEquals(Level.ALL, consoleHandlerLevel, "SSL ConsoleHandler level should be ALL"); + } +} diff --git a/core-java-modules/core-java-security-4/src/test/resources/logging.properties b/core-java-modules/core-java-security-4/src/test/resources/logging.properties new file mode 100644 index 0000000000..ab5cf9862f --- /dev/null +++ b/core-java-modules/core-java-security-4/src/test/resources/logging.properties @@ -0,0 +1,3 @@ +java.util.logging.ConsoleHandler.level=ALL +javax.net.ssl.handlers=java.util.logging.ConsoleHandler +javax.net.ssl.level=ALL diff --git a/core-java-modules/core-java-string-algorithms-4/README.md b/core-java-modules/core-java-string-algorithms-4/README.md index 19eac0a38c..4ce76f8c6e 100644 --- a/core-java-modules/core-java-string-algorithms-4/README.md +++ b/core-java-modules/core-java-string-algorithms-4/README.md @@ -4,3 +4,4 @@ This module contains articles about string-related algorithms. ### Relevant Articles: - [Rotating a Java String By n Characters](https://www.baeldung.com/java-rotate-string-by-n-characters) +- [Remove Characters From a String That Are in the Other String](https://www.baeldung.com/java-strings-character-difference) diff --git a/core-java-modules/core-java-string-algorithms-4/src/test/java/com/baeldung/string/runlength/RunLengthEncodingUnitTest.java b/core-java-modules/core-java-string-algorithms-4/src/test/java/com/baeldung/string/runlength/RunLengthEncodingUnitTest.java new file mode 100644 index 0000000000..c7b8b14874 --- /dev/null +++ b/core-java-modules/core-java-string-algorithms-4/src/test/java/com/baeldung/string/runlength/RunLengthEncodingUnitTest.java @@ -0,0 +1,93 @@ +package com.baeldung.string.runlength; + +import org.junit.jupiter.api.Test; + +import java.util.Collections; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class RunLengthEncodingUnitTest { + private static final String INPUT = "WWWWWWWWWWWWBAAACCDEEEEE"; + private static final String RLE = "12W1B3A2C1D5E"; + + String runLengthEncode(String input) { + StringBuilder result = new StringBuilder(); + int count = 1; + char[] chars = input.toCharArray(); + for (int i = 0; i < chars.length; i++) { + char c = chars[i]; + if (i + 1 < chars.length && c == chars[i + 1]) { + count++; + } else { + result.append(count).append(c); + count = 1; + } + } + return result.toString(); + } + + + String runLengthDecode(String rle) { + StringBuilder result = new StringBuilder(); + char[] chars = rle.toCharArray(); + + int count = 0; + for (char c : chars) { + if (Character.isDigit(c)) { + count = 10 * count + Character.getNumericValue(c); + } else { + result.append(String.join("", Collections.nCopies(count, String.valueOf(c)))); + count = 0; + } + } + return result.toString(); + } + + String runLengthEncodeByRegEx(String input) { + String[] arr = input.split("(?<=(\\D))(?!\\1)"); + StringBuilder result = new StringBuilder(); + for (String run : arr) { + result.append(run.length()).append(run.charAt(0)); + } + return result.toString(); + } + + String runLengthDecodeByRegEx(String rle) { + if (rle.isEmpty()) { + return ""; + } + String[] arr = rle.split("(?<=\\D)|(?=\\D+)"); + if (arr.length % 2 != 0) { + throw new IllegalArgumentException("Not a RLE string"); + } + StringBuilder result = new StringBuilder(); + + for (int i = 1; i <= arr.length; i += 2) { + int count = Integer.parseInt(arr[i - 1]); + String c = arr[i]; + + result.append(String.join("", Collections.nCopies(count, c))); + } + return result.toString(); + } + + @Test + void whenInvokingRunLengthEncode_thenGetExpectedResult() { + assertEquals(RLE, runLengthEncode(INPUT)); + } + + @Test + void whenInvokingRunLengthDecode_thenGetExpectedResult() { + assertEquals(INPUT, runLengthDecode(RLE)); + } + + @Test + void whenInvokingRunLengthEncodeByRegEx_thenGetExpectedResult() { + assertEquals(RLE, runLengthEncodeByRegEx(INPUT)); + } + + @Test + void whenInvokingRunLengthDecodeByRegEx_thenGetExpectedResult() { + assertEquals(INPUT, runLengthDecodeByRegEx(RLE)); + } +} \ No newline at end of file diff --git a/core-java-modules/core-java-string-conversions-3/README.md b/core-java-modules/core-java-string-conversions-3/README.md index ea328c208f..144773b7c3 100644 --- a/core-java-modules/core-java-string-conversions-3/README.md +++ b/core-java-modules/core-java-string-conversions-3/README.md @@ -5,4 +5,4 @@ - [Split Java String Into Key-Value Pairs](https://www.baeldung.com/java-split-string-map) - [How to Center Text Output in Java](https://www.baeldung.com/java-center-text-output) - [How to Convert an Object to String](https://www.baeldung.com/java-object-string-representation) -- [Convert String to long or Long in Java](https://www.baeldung.com/java-convert-string-to-long) +- [Convert String to long or Long in Java](https://www.baeldung.com/java-convert-string-long) diff --git a/core-java-modules/core-java-string-operations-6/pom.xml b/core-java-modules/core-java-string-operations-6/pom.xml index 69deeea0d8..2cd7c6ad3e 100644 --- a/core-java-modules/core-java-string-operations-6/pom.xml +++ b/core-java-modules/core-java-string-operations-6/pom.xml @@ -12,6 +12,7 @@ core-java-modules 0.0.1-SNAPSHOT + org.apache.commons diff --git a/core-java-modules/core-java-string-operations-7/README.md b/core-java-modules/core-java-string-operations-7/README.md index a0460f26d2..a358c8fa57 100644 --- a/core-java-modules/core-java-string-operations-7/README.md +++ b/core-java-modules/core-java-string-operations-7/README.md @@ -3,7 +3,15 @@ - [How to Center Text Output in Java](https://www.baeldung.com/java-center-text-output) - [Capitalize the First Letter of Each Word in a String](https://www.baeldung.com/java-string-initial-capital-letter-every-word) - [Check if a String Contains Only Unicode Letters](https://www.baeldung.com/java-string-all-unicode-characters) -- [Create a Mutable String in Java](https://www.baeldung.com/java-mutable-string) +- [Create a “Mutable” String in Java](https://www.baeldung.com/java-mutable-string) - [Check if a String Contains a Number Value in Java](https://www.baeldung.com/java-string-number-presence) - [Difference Between String isEmpty() and isBlank()](https://www.baeldung.com/java-string-isempty-vs-isblank) - [String’s Maximum Length in Java](https://www.baeldung.com/java-strings-maximum-length) +- [Java’s String.length() and String.getBytes().length](https://www.baeldung.com/java-string-length-vs-getbytes-length) +- [Replace Non-Printable Unicode Characters in Java](https://www.baeldung.com/java-replace-non-printable-unicode-characters) +- [Check If a Java StringBuilder Object Contains a Character](https://www.baeldung.com/java-check-stringbuilder-object-contains-character) +- [Comparing One String With Multiple Values in One Expression in Java](https://www.baeldung.com/java-compare-string-multiple-values-one-expression) +- [UTF-8 Validation in Java](https://www.baeldung.com/java-utf-8-validation) +- [Simple Morse Code Translation in Java](https://www.baeldung.com/java-morse-code-english-translate) +- [How to Determine if a String Contains Invalid Encoded Characters](https://www.baeldung.com/java-check-string-contains-invalid-encoded-characters) +- [Regular Expression for Password Validation in Java](https://www.baeldung.com/java-regex-password-validation) diff --git a/core-java-modules/core-java-string-operations-7/pom.xml b/core-java-modules/core-java-string-operations-7/pom.xml index cea3e32f2f..ebc587715d 100644 --- a/core-java-modules/core-java-string-operations-7/pom.xml +++ b/core-java-modules/core-java-string-operations-7/pom.xml @@ -39,6 +39,11 @@ icu4j ${icu4j.version} + + org.apache.commons + commons-collections4 + ${apache.commons.collection.version} + org.junit.jupiter junit-jupiter @@ -75,6 +80,7 @@ 11 11 3.13.0 + 4.4 2.9.1 1.10.0 74.1 diff --git a/core-java-modules/core-java-string-operations-7/src/main/java/com/baeldung/morse/MorseTranslator.java b/core-java-modules/core-java-string-operations-7/src/main/java/com/baeldung/morse/MorseTranslator.java new file mode 100644 index 0000000000..8d141f66e1 --- /dev/null +++ b/core-java-modules/core-java-string-operations-7/src/main/java/com/baeldung/morse/MorseTranslator.java @@ -0,0 +1,103 @@ +package com.baeldung.morse; + +import org.apache.commons.collections4.BidiMap; +import org.apache.commons.collections4.bidimap.DualHashBidiMap; + +public class MorseTranslator { + + private static final BidiMap morseAlphabet = new DualHashBidiMap<>(); + + static { + morseAlphabet.put("A", ".-"); + morseAlphabet.put("B", "-..."); + morseAlphabet.put("C", "-.-."); + morseAlphabet.put("D", "-.."); + morseAlphabet.put("E", "."); + morseAlphabet.put("F", "..-."); + morseAlphabet.put("G", "--."); + morseAlphabet.put("H", "...."); + morseAlphabet.put("I", ".."); + morseAlphabet.put("J", ".---"); + morseAlphabet.put("K", "-.-"); + morseAlphabet.put("L", ".-.."); + morseAlphabet.put("M", "--"); + morseAlphabet.put("N", "-."); + morseAlphabet.put("O", "---"); + morseAlphabet.put("P", ".--."); + morseAlphabet.put("Q", "--.-"); + morseAlphabet.put("R", ".-."); + morseAlphabet.put("S", "..."); + morseAlphabet.put("T", "-"); + morseAlphabet.put("U", "..-"); + morseAlphabet.put("V", "...-"); + morseAlphabet.put("W", ".--"); + morseAlphabet.put("X", "-..-"); + morseAlphabet.put("Y", "-.--"); + morseAlphabet.put("Z", "--.."); + morseAlphabet.put("0", "-----"); + morseAlphabet.put("1", ".----"); + morseAlphabet.put("2", "..---"); + morseAlphabet.put("3", "...--"); + morseAlphabet.put("4", "....-"); + morseAlphabet.put("5", "....."); + morseAlphabet.put("6", "-...."); + morseAlphabet.put("7", "--..."); + morseAlphabet.put("8", "---.."); + morseAlphabet.put("9", "----."); + morseAlphabet.put(".", ".-.-.-"); + morseAlphabet.put(",", "--..--"); + morseAlphabet.put("?", "..--.."); + morseAlphabet.put("'", ".----."); + morseAlphabet.put("!", "-.-.-----."); + morseAlphabet.put("/", "-..-."); + morseAlphabet.put("(", "-.--."); + morseAlphabet.put(")", "-.--.-"); + morseAlphabet.put("&", ".-..."); + morseAlphabet.put(":", "---..."); + morseAlphabet.put(";", "-.-.-."); + morseAlphabet.put("=", "-...-"); + morseAlphabet.put("+", ".-.-."); + morseAlphabet.put("-", "-....-"); + morseAlphabet.put("_", "..--.-"); + morseAlphabet.put("\"", ".-..-."); + morseAlphabet.put("$", "...-..-"); + morseAlphabet.put("@", ".--.-."); + morseAlphabet.put(" ", "/"); + } + + static String englishToMorse(String english) { + if (english == null) { + return null; + } + String upperCaseEnglish = english.toUpperCase(); + String[] morse = new String[upperCaseEnglish.length()]; + for (int index = 0; index < upperCaseEnglish.length(); index++) { + String morseCharacter = morseAlphabet.get(String.valueOf(upperCaseEnglish.charAt(index))); + if (morseCharacter == null) { + throw new IllegalArgumentException("Character " + upperCaseEnglish.charAt(index) + " can't be translated to morse"); + } + morse[index] = morseCharacter; + } + return String.join(" ", morse); + } + + static String morseToEnglish(String morse) { + if (morse == null) { + return null; + } + if (morse.isEmpty()) { + return ""; + } + String[] morseUnitCharacters = morse.split(" "); + StringBuilder stringBuilder = new StringBuilder(); + for (int index = 0; index < morseUnitCharacters.length; index ++) { + String englishCharacter = morseAlphabet.getKey(morseUnitCharacters[index]); + if (englishCharacter == null) { + throw new IllegalArgumentException("Character " + morseUnitCharacters[index] + " is not a valid morse character"); + } + stringBuilder.append(englishCharacter); + } + return stringBuilder.toString(); + } + +} \ No newline at end of file diff --git a/core-java-modules/core-java-string-operations-7/src/test/java/com/baeldung/checkifstringcontainsinvalidcharacters/CheckIfStringContainsInvalidEncodedCharactersUnitTest.java b/core-java-modules/core-java-string-operations-7/src/test/java/com/baeldung/checkifstringcontainsinvalidcharacters/CheckIfStringContainsInvalidEncodedCharactersUnitTest.java new file mode 100644 index 0000000000..249587b56a --- /dev/null +++ b/core-java-modules/core-java-string-operations-7/src/test/java/com/baeldung/checkifstringcontainsinvalidcharacters/CheckIfStringContainsInvalidEncodedCharactersUnitTest.java @@ -0,0 +1,33 @@ +package com.baeldung.checkifstringcontainsinvalidcharacters; + +import org.junit.jupiter.api.Test; + +import java.nio.charset.*; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +import static org.junit.jupiter.api.Assertions.*; +import static org.junit.jupiter.api.Assertions.assertTrue; + +public class CheckIfStringContainsInvalidEncodedCharactersUnitTest { + + public String input = "HÆllo, World!"; + + @Test + public void givenInputString_whenUsingRegexPattern_thenFindIfInvalidCharacters() { + String regexPattern = "[^\\x00-\\x7F]+"; + Pattern pattern = Pattern.compile(regexPattern); + Matcher matcher = pattern.matcher(input); + assertTrue(matcher.find()); + } + + @Test + public void givenInputString_whenUsingStringEncoding_thenFindIfInvalidCharacters() { + byte[] bytes = input.getBytes(StandardCharsets.UTF_8); + boolean found = false; + for (byte b : bytes) { + found = (b & 0xFF) > 127 ? true : found; + } + assertTrue(found); + } +} diff --git a/core-java-modules/core-java-string-operations-7/src/test/java/com/baeldung/morse/MorseTranslatorUnitTest.java b/core-java-modules/core-java-string-operations-7/src/test/java/com/baeldung/morse/MorseTranslatorUnitTest.java new file mode 100644 index 0000000000..f1ab2c961f --- /dev/null +++ b/core-java-modules/core-java-string-operations-7/src/test/java/com/baeldung/morse/MorseTranslatorUnitTest.java @@ -0,0 +1,55 @@ +package com.baeldung.morse; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertThrows; + +import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; + +public class MorseTranslatorUnitTest { + + @ParameterizedTest + @ValueSource(strings = {"MORSE CODE!", "morse code!", "mOrSe cOdE!"}) + void givenAValidEnglishWordWhateverTheCapitalization_whenEnglishToMorse_thenTranslatedToMorse(String english) { + assertEquals("-- --- .-. ... . / -.-. --- -.. . -.-.-----.", MorseTranslator.englishToMorse(english)); + } + + @Test + void givenAnEnglishWordWithAnIllegalCharacter_whenEnglishToMorse_thenThrows() { + String english = "~This sentence starts with an illegal character"; + assertThrows(IllegalArgumentException.class, () -> MorseTranslator.englishToMorse(english)); + } + + @Test + void givenNull_whenEnglishToMorse_thenNull() { + assertNull(MorseTranslator.englishToMorse(null)); + } + + @Test + void givenEmptyString_whenEnglishToMorse_thenEmptyArray() { + assertEquals("", MorseTranslator.englishToMorse("")); + } + + @Test + void givenAValidMorseWord_whenMorseToEnglish_thenTranslatedToUpperCaseEnglish() { + assertEquals("MORSE CODE!", MorseTranslator.morseToEnglish("-- --- .-. ... . / -.-. --- -.. . -.-.-----.")); + } + + @Test + void givenAMorseWordWithAnIllegalCharacter_whenMorseToEnglish_thenThrows() { + assertThrows(IllegalArgumentException.class, () -> MorseTranslator.morseToEnglish(".!!!!!!!")); + } + + @Test + void givenNull_whenMorseToEnglish_thenNull() { + assertNull(MorseTranslator.morseToEnglish(null)); + } + + @Test + void givenEmptyArray_whenMorseToEnglish_thenEmptyString() { + assertEquals("", MorseTranslator.morseToEnglish("")); + } + +} \ No newline at end of file diff --git a/core-java-modules/core-java-sun/README.md b/core-java-modules/core-java-sun/README.md index 82977bca6c..83bf34bb8a 100644 --- a/core-java-modules/core-java-sun/README.md +++ b/core-java-modules/core-java-sun/README.md @@ -8,3 +8,4 @@ This module contains articles about the sun package - [Guide to sun.misc.Unsafe](http://www.baeldung.com/java-unsafe) - [Why Is sun.misc.Unsafe.park Actually Unsafe?](https://www.baeldung.com/java-sun-misc-unsafe-park-reason) - [Sharing Memory Between JVMs](https://www.baeldung.com/java-sharing-memory-between-jvms) +- [Parse Java Source Code and Extract Methods](https://www.baeldung.com/java-parse-code-extract-methods) diff --git a/core-java-modules/core-java-swing/pom.xml b/core-java-modules/core-java-swing/pom.xml index 28228ebb29..b46fe0f65a 100644 --- a/core-java-modules/core-java-swing/pom.xml +++ b/core-java-modules/core-java-swing/pom.xml @@ -1,10 +1,10 @@ + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - core-java-string-swing - core-java-string-swing + core-java-swing + core-java-swing jar @@ -12,6 +12,7 @@ core-java-modules 0.0.1-SNAPSHOT + 20 20 diff --git a/core-java-modules/core-java-time-measurements/README.md b/core-java-modules/core-java-time-measurements/README.md index a3e8b71ae8..2bdc9f059e 100644 --- a/core-java-modules/core-java-time-measurements/README.md +++ b/core-java-modules/core-java-time-measurements/README.md @@ -7,3 +7,4 @@ This module contains articles about the measurement of time in Java. - [Measure Elapsed Time in Java](http://www.baeldung.com/java-measure-elapsed-time) - [Overriding System Time for Testing in Java](https://www.baeldung.com/java-override-system-time) - [Java Timer](http://www.baeldung.com/java-timer-and-timertask) +- [Java System.currentTimeMillis() Vs. System.nanoTime()](https://www.baeldung.com/java-system-currenttimemillis-vs-system-nanotime) diff --git a/core-java-modules/core-java-uuid/pom.xml b/core-java-modules/core-java-uuid/pom.xml index e6710dbdf2..76154033c2 100644 --- a/core-java-modules/core-java-uuid/pom.xml +++ b/core-java-modules/core-java-uuid/pom.xml @@ -29,6 +29,16 @@ tsid-creator 5.2.3 + + commons-codec + commons-codec + 1.16.0 + + + org.apache.commons + commons-lang3 + 3.14.0 + diff --git a/core-java-modules/core-java-uuid/src/test/java/com/baeldung/uuid/DecodeUUIDStringFromBase64UnitTest.java b/core-java-modules/core-java-uuid/src/test/java/com/baeldung/uuid/DecodeUUIDStringFromBase64UnitTest.java new file mode 100644 index 0000000000..4ea496a723 --- /dev/null +++ b/core-java-modules/core-java-uuid/src/test/java/com/baeldung/uuid/DecodeUUIDStringFromBase64UnitTest.java @@ -0,0 +1,64 @@ +package com.baeldung.uuid; + +import static org.apache.commons.codec.binary.Base64.decodeBase64; +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.nio.ByteBuffer; +import java.util.Base64; +import java.util.UUID; + +import org.apache.commons.lang3.Conversion; +import org.junit.jupiter.api.Test; + +public class DecodeUUIDStringFromBase64UnitTest { + private final UUID originalUUID = UUID.fromString("cc5f93f7-8cf1-4a51-83c6-e740313a0c6c"); + + @Test + public void givenEncodedString_whenDecodingUsingBase64Decoder_thenGiveExpectedUUID() { + String expectedEncodedString = "UUrxjPeTX8xsDDoxQOfGgw"; + byte[] decodedBytes = Base64.getDecoder() + .decode(expectedEncodedString); + UUID uuid = convertToUUID(decodedBytes); + assertEquals(originalUUID, uuid); + } + + @Test + public void givenEncodedString_whenDecodingUsingByteBufferAndBase64UrlDecoder_thenGiveExpectedUUID() { + String expectedEncodedString = "zF-T94zxSlGDxudAMToMbA"; + byte[] decodedBytes = Base64.getUrlDecoder() + .decode(expectedEncodedString); + ByteBuffer byteBuffer = ByteBuffer.wrap(decodedBytes); + long mostSignificantBits = byteBuffer.getLong(); + long leastSignificantBits = byteBuffer.getLong(); + UUID uuid = new UUID(mostSignificantBits, leastSignificantBits); + assertEquals(originalUUID, uuid); + } + + @Test + public void givenEncodedString_whenDecodingUsingApacheUtils_thenGiveExpectedUUID() { + String expectedEncodedString = "UUrxjPeTX8xsDDoxQOfGgw"; + byte[] decodedBytes = decodeBase64(expectedEncodedString); + UUID uuid = Conversion.byteArrayToUuid(decodedBytes, 0); + assertEquals(originalUUID, uuid); + } + + private UUID convertToUUID(byte[] src) { + long mostSignificantBits = convertBytesToLong(src, 0); + long leastSignificantBits = convertBytesToLong(src, 8); + + return new UUID(mostSignificantBits, leastSignificantBits); + } + + private long convertBytesToLong(byte[] uuidBytes, int start) { + long result = 0; + + for(int i = 0; i < 8; i++) { + int shift = i * 8; + long bits = (255L & (long)uuidBytes[i + start]) << shift; + long mask = 255L << shift; + result = result & ~mask | bits; + } + + return result; + } +} diff --git a/core-java-modules/core-java-uuid/src/test/java/com/baeldung/uuid/EncodeUUIDToBase64StringUnitTest.java b/core-java-modules/core-java-uuid/src/test/java/com/baeldung/uuid/EncodeUUIDToBase64StringUnitTest.java new file mode 100644 index 0000000000..0748573548 --- /dev/null +++ b/core-java-modules/core-java-uuid/src/test/java/com/baeldung/uuid/EncodeUUIDToBase64StringUnitTest.java @@ -0,0 +1,62 @@ +package com.baeldung.uuid; + +import static org.apache.commons.codec.binary.Base64.encodeBase64URLSafeString; +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.nio.ByteBuffer; +import java.util.Base64; +import java.util.UUID; + +import org.apache.commons.lang3.Conversion; +import org.junit.jupiter.api.Test; + +public class EncodeUUIDToBase64StringUnitTest { + private final UUID originalUUID = UUID.fromString("cc5f93f7-8cf1-4a51-83c6-e740313a0c6c"); + + @Test + public void givenUUID_whenEncodingUsingBase64Encoder_thenGiveExpectedEncodedString() { + String expectedEncodedString = "UUrxjPeTX8xsDDoxQOfGgw"; + byte[] uuidBytes = convertToByteArray(originalUUID); + String encodedUUID = Base64.getEncoder().withoutPadding() + .encodeToString(uuidBytes); + assertEquals(expectedEncodedString, encodedUUID); + } + + @Test + public void givenUUID_whenEncodingUsingByteBufferAndBase64UrlEncoder_thenGiveExpectedEncodedString() { + String expectedEncodedString = "zF-T94zxSlGDxudAMToMbA"; + ByteBuffer byteBuffer = ByteBuffer.wrap(new byte[16]); + byteBuffer.putLong(originalUUID.getMostSignificantBits()); + byteBuffer.putLong(originalUUID.getLeastSignificantBits()); + String encodedUUID = Base64.getUrlEncoder().withoutPadding() + .encodeToString(byteBuffer.array()); + assertEquals(expectedEncodedString, encodedUUID); + } + + @Test + public void givenUUID_whenEncodingUsingApacheUtils_thenGiveExpectedEncodedString() { + String expectedEncodedString = "UUrxjPeTX8xsDDoxQOfGgw"; + byte[] bytes = Conversion.uuidToByteArray(originalUUID, new byte[16], 0, 16); + String encodedUUID = encodeBase64URLSafeString(bytes); + assertEquals(expectedEncodedString, encodedUUID); + } + + private byte[] convertToByteArray(UUID uuid) { + byte[] result = new byte[16]; + + long mostSignificantBits = uuid.getMostSignificantBits(); + fillByteArray(0, 8, result, mostSignificantBits); + + long leastSignificantBits = uuid.getLeastSignificantBits(); + fillByteArray(8, 16, result, leastSignificantBits); + + return result; + } + + private static void fillByteArray(int start, int end, byte[] result, long bits) { + for (int i = start; i < end; i++) { + int shift = i * 8; + result[i] = (byte) ((int) (255L & bits >> shift)); + } + } +} diff --git a/core-java-modules/pom.xml b/core-java-modules/pom.xml index f4722855bc..568fc37811 100644 --- a/core-java-modules/pom.xml +++ b/core-java-modules/pom.xml @@ -112,6 +112,7 @@ core-java-datetime-string-2 core-java-date-operations-2 core-java-date-operations-3 + core-java-date-operations-4 core-java-documentation core-java-exceptions core-java-exceptions-2 @@ -199,6 +200,7 @@ core-java-string-operations-7 core-java-regex core-java-regex-2 + core-java-regex-3 core-java-uuid core-java-collections-maps-6 core-java-records @@ -209,6 +211,7 @@ core-java-collections-set core-java-date-operations-1 core-java-datetime-conversion + core-java-datetime-conversion-2 core-java-httpclient java-native java-rmi diff --git a/docker-modules/docker-caching/multi-module-caching/pom.xml b/docker-modules/docker-caching/multi-module-caching/pom.xml index f2b52f246d..b9977f8f3a 100644 --- a/docker-modules/docker-caching/multi-module-caching/pom.xml +++ b/docker-modules/docker-caching/multi-module-caching/pom.xml @@ -25,7 +25,7 @@ - 32.1.3-jre + 33.0.0-jre \ No newline at end of file diff --git a/docker-modules/docker-caching/single-module-caching/pom.xml b/docker-modules/docker-caching/single-module-caching/pom.xml index bb44c21e10..1e90c7130e 100644 --- a/docker-modules/docker-caching/single-module-caching/pom.xml +++ b/docker-modules/docker-caching/single-module-caching/pom.xml @@ -49,7 +49,7 @@ 8 8 UTF-8 - 32.1.3-jre + 33.0.0-jre \ No newline at end of file diff --git a/gradle-modules/gradle-5/cmd-line-args/build.gradle b/gradle-modules/gradle-5/cmd-line-args/build.gradle index 15c9288024..a40b04a7a1 100644 --- a/gradle-modules/gradle-5/cmd-line-args/build.gradle +++ b/gradle-modules/gradle-5/cmd-line-args/build.gradle @@ -7,6 +7,8 @@ ext.javaMainClass = "com.baeldung.cmd.MainClass" application { mainClassName = javaMainClass } +sourceCompatibility = "1.8" +targetCompatibility = "1.8" task propertyTypes(){ doLast{ diff --git a/gradle-modules/gradle-5/gradle-lint-intro/build.gradle b/gradle-modules/gradle-5/gradle-lint-intro/build.gradle index fab83bfeec..ba32d53605 100644 --- a/gradle-modules/gradle-5/gradle-lint-intro/build.gradle +++ b/gradle-modules/gradle-5/gradle-lint-intro/build.gradle @@ -5,6 +5,9 @@ ext { awsVersion = '2.20.83' } +sourceCompatibility = "1.8" +targetCompatibility = "1.8" + dependencies { implementation platform("software.amazon.awssdk:bom:$awsVersion") diff --git a/gradle-modules/gradle-5/java-exec/build.gradle b/gradle-modules/gradle-5/java-exec/build.gradle index 08aa738902..67ea3e3d39 100644 --- a/gradle-modules/gradle-5/java-exec/build.gradle +++ b/gradle-modules/gradle-5/java-exec/build.gradle @@ -13,6 +13,8 @@ jar { ) } } +sourceCompatibility = "1.8" +targetCompatibility = "1.8" application { mainClassName = javaMainClass diff --git a/gradle-modules/gradle-5/source-sets/build.gradle b/gradle-modules/gradle-5/source-sets/build.gradle index 8325450cfd..8a65e5a845 100644 --- a/gradle-modules/gradle-5/source-sets/build.gradle +++ b/gradle-modules/gradle-5/source-sets/build.gradle @@ -3,6 +3,9 @@ apply plugin: "eclipse" apply plugin: "java" description = "Source Sets example" +sourceCompatibility = "1.8" +targetCompatibility = "1.8" + task printSourceSetInformation(){ description = "Print source set information" diff --git a/gradle-modules/gradle-5/unused-dependencies/build.gradle b/gradle-modules/gradle-5/unused-dependencies/build.gradle index d848cd0e0d..028224519c 100644 --- a/gradle-modules/gradle-5/unused-dependencies/build.gradle +++ b/gradle-modules/gradle-5/unused-dependencies/build.gradle @@ -1,6 +1,9 @@ description = "Gradle Unused Dependencies example" +sourceCompatibility = "1.8" +targetCompatibility = "1.8" + dependencies { implementation('com.google.guava:guava:29.0-jre') implementation('org.apache.httpcomponents:httpclient:4.5.12') diff --git a/gradle-modules/gradle-6/dependency-constraints/build.gradle.kts b/gradle-modules/gradle-6/dependency-constraints/build.gradle.kts index 41336d3c91..138dbcc595 100644 --- a/gradle-modules/gradle-6/dependency-constraints/build.gradle.kts +++ b/gradle-modules/gradle-6/dependency-constraints/build.gradle.kts @@ -4,6 +4,8 @@ plugins { group = "com.baeldung" version = "1.0.0" +sourceCompatibility = "1.8" +targetCompatibility = "1.8" dependencies { api("io.reactivex.rxjava2:rxjava:2.2.16") diff --git a/gradle-modules/gradle-6/fibonacci-recursive/build.gradle.kts b/gradle-modules/gradle-6/fibonacci-recursive/build.gradle.kts index 0872a52472..884175577f 100644 --- a/gradle-modules/gradle-6/fibonacci-recursive/build.gradle.kts +++ b/gradle-modules/gradle-6/fibonacci-recursive/build.gradle.kts @@ -2,6 +2,9 @@ plugins { `java-library` } +sourceCompatibility = "1.8" +targetCompatibility = "1.8" + dependencies { api(project(":fibonacci-spi")) compileOnly("com.google.auto.service:auto-service-annotations:1.0-rc6") diff --git a/gradle-modules/gradle-6/fibonacci-spi/build.gradle.kts b/gradle-modules/gradle-6/fibonacci-spi/build.gradle.kts index e571f329a9..b468793a3f 100644 --- a/gradle-modules/gradle-6/fibonacci-spi/build.gradle.kts +++ b/gradle-modules/gradle-6/fibonacci-spi/build.gradle.kts @@ -3,6 +3,9 @@ plugins { `java-test-fixtures` } +sourceCompatibility = "1.8" +targetCompatibility = "1.8" + dependencies { testFixturesApi("org.junit.jupiter:junit-jupiter-api:5.5.2") testFixturesImplementation("org.junit.jupiter:junit-jupiter-engine:5.5.2") diff --git a/gradle-modules/gradle-6/httpclient-platform/build.gradle.kts b/gradle-modules/gradle-6/httpclient-platform/build.gradle.kts index a021bff013..693f4e5452 100644 --- a/gradle-modules/gradle-6/httpclient-platform/build.gradle.kts +++ b/gradle-modules/gradle-6/httpclient-platform/build.gradle.kts @@ -2,6 +2,9 @@ plugins { `java-platform` } +sourceCompatibility = "1.8" +targetCompatibility = "1.8" + dependencies { constraints { api("org.apache.httpcomponents:fluent-hc:4.5.10") diff --git a/gradle-modules/gradle-6/module-metadata-publishing/build.gradle.kts b/gradle-modules/gradle-6/module-metadata-publishing/build.gradle.kts index 9812c72f6f..382f989e7c 100644 --- a/gradle-modules/gradle-6/module-metadata-publishing/build.gradle.kts +++ b/gradle-modules/gradle-6/module-metadata-publishing/build.gradle.kts @@ -3,6 +3,9 @@ plugins { `maven-publish` } +sourceCompatibility = "1.8" +targetCompatibility = "1.8" + publishing { publications { register("mavenJava") { diff --git a/gradle-modules/gradle-6/person-rest-client/build.gradle.kts b/gradle-modules/gradle-6/person-rest-client/build.gradle.kts index c562b3e164..3ca9d21adc 100644 --- a/gradle-modules/gradle-6/person-rest-client/build.gradle.kts +++ b/gradle-modules/gradle-6/person-rest-client/build.gradle.kts @@ -2,6 +2,9 @@ plugins { `java-library` } +sourceCompatibility = "1.8" +targetCompatibility = "1.8" + dependencies { api(platform(project(":httpclient-platform"))) implementation("org.apache.httpcomponents:fluent-hc") diff --git a/gradle-modules/gradle-6/widget-rest-client/build.gradle.kts b/gradle-modules/gradle-6/widget-rest-client/build.gradle.kts index e1af4b7f71..2f5842b8dc 100644 --- a/gradle-modules/gradle-6/widget-rest-client/build.gradle.kts +++ b/gradle-modules/gradle-6/widget-rest-client/build.gradle.kts @@ -2,6 +2,9 @@ plugins { `java-library` } +sourceCompatibility = "1.8" +targetCompatibility = "1.8" + dependencies { api(platform(project(":httpclient-platform"))) implementation("org.apache.httpcomponents:httpclient") diff --git a/gradle-modules/gradle-7/conditional-dependency-demo/build.gradle.kts b/gradle-modules/gradle-7/conditional-dependency-demo/build.gradle.kts index 95601a160d..935a23d56f 100644 --- a/gradle-modules/gradle-7/conditional-dependency-demo/build.gradle.kts +++ b/gradle-modules/gradle-7/conditional-dependency-demo/build.gradle.kts @@ -6,6 +6,8 @@ plugins { group = "com.baeldung.gradle" version = "0.0.1-SNAPSHOT" +sourceCompatibility = "1.8" +targetCompatibility = "1.8" repositories { mavenCentral() diff --git a/gradle-modules/gradle-7/conditional-dependency-demo/consumer1/build.gradle.kts b/gradle-modules/gradle-7/conditional-dependency-demo/consumer1/build.gradle.kts index 9858c5b139..5f266cae7a 100644 --- a/gradle-modules/gradle-7/conditional-dependency-demo/consumer1/build.gradle.kts +++ b/gradle-modules/gradle-7/conditional-dependency-demo/consumer1/build.gradle.kts @@ -4,6 +4,8 @@ plugins { group = "com.baeldung.gradle" version = "0.0.1-SNAPSHOT" +sourceCompatibility = "1.8" +targetCompatibility = "1.8" repositories { mavenCentral() diff --git a/gradle-modules/gradle-7/conditional-dependency-demo/consumer2/build.gradle.kts b/gradle-modules/gradle-7/conditional-dependency-demo/consumer2/build.gradle.kts index 2031aea59c..70a16e2971 100644 --- a/gradle-modules/gradle-7/conditional-dependency-demo/consumer2/build.gradle.kts +++ b/gradle-modules/gradle-7/conditional-dependency-demo/consumer2/build.gradle.kts @@ -4,6 +4,8 @@ plugins { group = "com.baeldung.gradle" version = "0.0.1-SNAPSHOT" +sourceCompatibility = "1.8" +targetCompatibility = "1.8" repositories { mavenCentral() diff --git a/gradle-modules/gradle-7/conditional-dependency-demo/provider1/build.gradle.kts b/gradle-modules/gradle-7/conditional-dependency-demo/provider1/build.gradle.kts index d3dcd96b08..8601796ac4 100644 --- a/gradle-modules/gradle-7/conditional-dependency-demo/provider1/build.gradle.kts +++ b/gradle-modules/gradle-7/conditional-dependency-demo/provider1/build.gradle.kts @@ -4,6 +4,8 @@ plugins { group = "com.baeldung.gradle" version = "0.0.1-SNAPSHOT" +sourceCompatibility = "1.8" +targetCompatibility = "1.8" repositories { mavenCentral() diff --git a/gradle-modules/gradle-7/conditional-dependency-demo/provider2/build.gradle.kts b/gradle-modules/gradle-7/conditional-dependency-demo/provider2/build.gradle.kts index d3dcd96b08..8601796ac4 100644 --- a/gradle-modules/gradle-7/conditional-dependency-demo/provider2/build.gradle.kts +++ b/gradle-modules/gradle-7/conditional-dependency-demo/provider2/build.gradle.kts @@ -4,6 +4,8 @@ plugins { group = "com.baeldung.gradle" version = "0.0.1-SNAPSHOT" +sourceCompatibility = "1.8" +targetCompatibility = "1.8" repositories { mavenCentral() diff --git a/gradle-modules/gradle-7/gradle-javadoc/build.gradle b/gradle-modules/gradle-7/gradle-javadoc/build.gradle index 5d8303d64c..761d911ad8 100644 --- a/gradle-modules/gradle-7/gradle-javadoc/build.gradle +++ b/gradle-modules/gradle-7/gradle-javadoc/build.gradle @@ -4,6 +4,8 @@ plugins { group 'org.example' version '1.0-SNAPSHOT' +sourceCompatibility = "1.8" +targetCompatibility = "1.8" javadoc { destinationDir = file("${buildDir}/docs/javadoc") diff --git a/gradle-modules/gradle-7/gradle-proxy-configuration/build.gradle b/gradle-modules/gradle-7/gradle-proxy-configuration/build.gradle index 7463486961..c6e10b053e 100644 --- a/gradle-modules/gradle-7/gradle-proxy-configuration/build.gradle +++ b/gradle-modules/gradle-7/gradle-proxy-configuration/build.gradle @@ -4,6 +4,8 @@ plugins { group = 'org.baeldung' version = '1.0-SNAPSHOT' +sourceCompatibility = "1.8" +targetCompatibility = "1.8" repositories { mavenCentral() diff --git a/gradle-modules/gradle-7/gradle-wsdl-stubs/build.gradle b/gradle-modules/gradle-7/gradle-wsdl-stubs/build.gradle index 6d0cfc1972..3917c2f401 100644 --- a/gradle-modules/gradle-7/gradle-wsdl-stubs/build.gradle +++ b/gradle-modules/gradle-7/gradle-wsdl-stubs/build.gradle @@ -3,6 +3,9 @@ plugins { id 'com.github.bjornvester.wsdl2java' version '2.0.2' } +sourceCompatibility = "1.8" +targetCompatibility = "1.8" + repositories { mavenCentral() } diff --git a/gradle-modules/gradle-7/multiple-repositories-demo/publish-package/build.gradle b/gradle-modules/gradle-7/multiple-repositories-demo/publish-package/build.gradle index bd97650e9c..89d77ddcae 100644 --- a/gradle-modules/gradle-7/multiple-repositories-demo/publish-package/build.gradle +++ b/gradle-modules/gradle-7/multiple-repositories-demo/publish-package/build.gradle @@ -5,6 +5,8 @@ plugins { group = "com.baeldung.gradle" version = "1.0.0-SNAPSHOT" +sourceCompatibility = "1.8" +targetCompatibility = "1.8" repositories { mavenLocal() diff --git a/gradle-modules/gradle/gradle-employee-app/build.gradle b/gradle-modules/gradle/gradle-employee-app/build.gradle index c7040504f1..03d28f7e20 100644 --- a/gradle-modules/gradle/gradle-employee-app/build.gradle +++ b/gradle-modules/gradle/gradle-employee-app/build.gradle @@ -6,8 +6,8 @@ plugins { apply plugin: 'application' mainClassName = 'employee.EmployeeApp' -sourceCompatibility = JavaVersion.VERSION_1_8 -targetCompatibility = JavaVersion.VERSION_1_8 +sourceCompatibility = "1.8" +targetCompatibility = "1.8" println 'This is executed during configuration phase' diff --git a/gradle-modules/gradle/gradle-fat-jar/build.gradle b/gradle-modules/gradle/gradle-fat-jar/build.gradle index 4c3d86d757..55fbf2d748 100644 --- a/gradle-modules/gradle/gradle-fat-jar/build.gradle +++ b/gradle-modules/gradle/gradle-fat-jar/build.gradle @@ -13,6 +13,9 @@ plugins { id 'java' } +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 + repositories { mavenCentral() } diff --git a/gradle-modules/gradle/gradle-to-maven/build.gradle b/gradle-modules/gradle/gradle-to-maven/build.gradle index 7cd2617ef4..87f4272c13 100644 --- a/gradle-modules/gradle/gradle-to-maven/build.gradle +++ b/gradle-modules/gradle/gradle-to-maven/build.gradle @@ -10,6 +10,8 @@ group = 'com.baeldung' // by default, pom's artifactId is taken from the directory name version = '0.0.1' +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 dependencies { implementation 'org.slf4j:slf4j-api:1.7.25' diff --git a/gradle-modules/gradle/gradletaskdemo/build.gradle b/gradle-modules/gradle/gradletaskdemo/build.gradle index 5f07573365..cb8f285fa0 100644 --- a/gradle-modules/gradle/gradletaskdemo/build.gradle +++ b/gradle-modules/gradle/gradletaskdemo/build.gradle @@ -13,6 +13,9 @@ plugins { id 'java' } +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 + apply from: 'aplugin.gradle' apply plugin: 'org.shipkit.bintray-release' diff --git a/gradle-modules/gradle/greeter/build.gradle b/gradle-modules/gradle/greeter/build.gradle index 0aab8c2313..bc6f800ea0 100644 --- a/gradle-modules/gradle/greeter/build.gradle +++ b/gradle-modules/gradle/greeter/build.gradle @@ -1,6 +1,9 @@ apply plugin : 'java' apply plugin : 'application' +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 + dependencies { implementation project(':greeting-library') implementation project(':greeting-library-java') diff --git a/gradle-modules/gradle/greeting-library-java/build.gradle b/gradle-modules/gradle/greeting-library-java/build.gradle index 916a9a435e..778536ba49 100644 --- a/gradle-modules/gradle/greeting-library-java/build.gradle +++ b/gradle-modules/gradle/greeting-library-java/build.gradle @@ -1,6 +1,9 @@ apply plugin :'java' //apply plugin : 'application' +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 + dependencies{ implementation group: 'joda-time', name: 'joda-time', version: '2.9.9' testImplementation group: 'junit', name: 'junit', version: '4.12' diff --git a/gradle-modules/gradle/greeting-library/build.gradle b/gradle-modules/gradle/greeting-library/build.gradle index a8fa91963c..16304cd5ed 100644 --- a/gradle-modules/gradle/greeting-library/build.gradle +++ b/gradle-modules/gradle/greeting-library/build.gradle @@ -7,3 +7,8 @@ dependencies { exclude module : 'groovy-all' } } + +java { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 +} diff --git a/gradle-modules/gradle/junit5/build.gradle b/gradle-modules/gradle/junit5/build.gradle index e589541e08..41c870e6f6 100644 --- a/gradle-modules/gradle/junit5/build.gradle +++ b/gradle-modules/gradle/junit5/build.gradle @@ -3,6 +3,9 @@ plugins { id 'java-library' } +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 + dependencies { testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1' diff --git a/javax-sound/src/main/resources/AudioFileWithMpegFormat.mpeg b/javax-sound/src/main/resources/AudioFileWithMpegFormat.mpeg new file mode 100644 index 0000000000..0013253092 Binary files /dev/null and b/javax-sound/src/main/resources/AudioFileWithMpegFormat.mpeg differ diff --git a/javax-sound/src/main/resources/AudioFileWithWavFormat.wav b/javax-sound/src/main/resources/AudioFileWithWavFormat.wav new file mode 100644 index 0000000000..7b9da8cc56 Binary files /dev/null and b/javax-sound/src/main/resources/AudioFileWithWavFormat.wav differ diff --git a/json-modules/gson-2/README.md b/json-modules/gson-2/README.md index 912f8b0a20..4d7d917cc0 100644 --- a/json-modules/gson-2/README.md +++ b/json-modules/gson-2/README.md @@ -6,3 +6,4 @@ This module contains articles about Gson - [Solving Gson Parsing Errors](https://www.baeldung.com/gson-parsing-errors) - [Difference between Gson @Expose and @SerializedName](https://www.baeldung.com/gson-expose-vs-serializedname) - [Resolving Gson’s “Multiple JSON Fields” Exception](https://www.baeldung.com/java-gson-multiple-json-fields-exception) +- [Using Static Methods Instead of Deprecated JsonParser](https://www.baeldung.com/java-static-methods-jsonparser-replacement) diff --git a/json-modules/json-conversion/README.md b/json-modules/json-conversion/README.md index a0cf0f6246..a1851d9b7a 100644 --- a/json-modules/json-conversion/README.md +++ b/json-modules/json-conversion/README.md @@ -5,3 +5,4 @@ This module contains articles about JSON Conversions ### Relevant Articles: - [Convert JSON Array to Java List](https://www.baeldung.com/java-convert-json-array-to-list) - [Reading JSON Documents as Maps and Comparing Them](https://www.baeldung.com/java-json-maps-comparison) +- [Convert Byte Array to JSON and Vice Versa in Java](https://www.baeldung.com/java-json-byte-array-conversion) diff --git a/kubernetes-modules/k8s-operator/README.md b/kubernetes-modules/k8s-operator/README.md index 215c7d8e18..40d6efd2c1 100644 --- a/kubernetes-modules/k8s-operator/README.md +++ b/kubernetes-modules/k8s-operator/README.md @@ -2,3 +2,6 @@ This sample demonstrates how to create a simple operator using the Java Operator Framework. In our case, the operator will facilitate the deployment of a Dependency-Track instance on a cluster. + +### Relevant Articles: +- [Create Kubernetes Operators with the Java Operator SDK](https://www.baeldung.com/java-kubernetes-operator-sdk) diff --git a/libraries-data-db/pom.xml b/libraries-data-db/pom.xml index 7f77d40667..42485ef43f 100644 --- a/libraries-data-db/pom.xml +++ b/libraries-data-db/pom.xml @@ -8,9 +8,9 @@ com.baeldung - parent-boot-2 + parent-boot-3 0.0.1-SNAPSHOT - ../parent-boot-2 + ../parent-boot-3 @@ -159,6 +159,11 @@ ebean-api ${ebean.version} + + jakarta.xml.bind + jakarta.xml.bind-api + ${jakarta.xml.bind.version} + @@ -290,22 +295,24 @@ - 11.11.2 + 13.25.2 18.1.0 3.0.0 1.8 6.1 - 6.0.3 + 6.0.6 6.0.1 6.0.0-release 6.0.1 3.2.1 5.1.0 13.15.2 - 2.1.3.Final + 2.5.0.Final 2.2.3 - 1.17.6 + 1.19.3 3.0.8 + 4.0.1 + true \ No newline at end of file diff --git a/libraries-data-db/src/main/java/com/baeldung/libraries/jdo/ProductXML.java b/libraries-data-db/src/main/java/com/baeldung/libraries/jdo/ProductXML.java index 2679b049bb..025834dbd4 100644 --- a/libraries-data-db/src/main/java/com/baeldung/libraries/jdo/ProductXML.java +++ b/libraries-data-db/src/main/java/com/baeldung/libraries/jdo/ProductXML.java @@ -2,7 +2,7 @@ package com.baeldung.libraries.jdo; import javax.jdo.annotations.PersistenceCapable; import javax.jdo.annotations.PrimaryKey; -import javax.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlAttribute; @PersistenceCapable() public class ProductXML { diff --git a/libraries-data-db/src/main/java/com/baeldung/libraries/jdo/xml/AnnotadedPerson.java b/libraries-data-db/src/main/java/com/baeldung/libraries/jdo/xml/AnnotadedPerson.java index 0520bf1d09..d7f72d78ee 100644 --- a/libraries-data-db/src/main/java/com/baeldung/libraries/jdo/xml/AnnotadedPerson.java +++ b/libraries-data-db/src/main/java/com/baeldung/libraries/jdo/xml/AnnotadedPerson.java @@ -3,12 +3,13 @@ package com.baeldung.libraries.jdo.xml; import javax.jdo.annotations.Element; import javax.jdo.annotations.PersistenceCapable; import javax.jdo.annotations.PrimaryKey; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElementWrapper; import java.util.ArrayList; import java.util.List; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlElementWrapper; + @PersistenceCapable(schema = "/myproduct/people", table = "person") public class AnnotadedPerson { @XmlAttribute diff --git a/libraries-data/README.md b/libraries-data/README.md index 7e87475328..9a8b1fbe4c 100644 --- a/libraries-data/README.md +++ b/libraries-data/README.md @@ -9,4 +9,5 @@ This module contains articles about libraries for data processing in Java. - [A Guide to Apache Crunch](https://www.baeldung.com/apache-crunch) - [Intro to Apache Storm](https://www.baeldung.com/apache-storm) - [Guide to JMapper](https://www.baeldung.com/jmapper) -More articles: [[next -->]](/../libraries-data-2) \ No newline at end of file +- [What Does It Mean to Hydrate an Object?](https://www.baeldung.com/java-object-hydration) +- More articles: [[next -->]](/../libraries-data-2) diff --git a/logging-modules/logging-techniques/README.md b/logging-modules/logging-techniques/README.md new file mode 100644 index 0000000000..4f3acae4e2 --- /dev/null +++ b/logging-modules/logging-techniques/README.md @@ -0,0 +1,2 @@ +### Relevant Articles: +- [Structured Logging in Java](https://www.baeldung.com/java-structured-logging) diff --git a/maven-modules/maven-build-lifecycle/README.md b/maven-modules/maven-build-lifecycle/README.md new file mode 100644 index 0000000000..0fe002223f --- /dev/null +++ b/maven-modules/maven-build-lifecycle/README.md @@ -0,0 +1,2 @@ +### Relevant Articles: +- [Difference Between mvn install and mvn verify](https://www.baeldung.com/maven-install-versus-verify) diff --git a/maven-modules/maven-build-lifecycle/pom.xml b/maven-modules/maven-build-lifecycle/pom.xml new file mode 100644 index 0000000000..5cfb854200 --- /dev/null +++ b/maven-modules/maven-build-lifecycle/pom.xml @@ -0,0 +1,55 @@ + + + 4.0.0 + + com.baeldung + maven-modules + 0.0.1-SNAPSHOT + + + maven-build-lifecycle + + + 11 + 11 + 3.1.2 + 3.1.2 + 5.3.1 + UTF-8 + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven.surefire.version} + + + + **/*Test.java + + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${maven.failsafe.version} + + + + + integration-test + verify + + + + + + + + \ No newline at end of file diff --git a/maven-modules/maven-build-lifecycle/src/main/java/com/baeldung/mavenlifecycle/CourseApp.java b/maven-modules/maven-build-lifecycle/src/main/java/com/baeldung/mavenlifecycle/CourseApp.java new file mode 100644 index 0000000000..1982c7c422 --- /dev/null +++ b/maven-modules/maven-build-lifecycle/src/main/java/com/baeldung/mavenlifecycle/CourseApp.java @@ -0,0 +1,7 @@ +package com.baeldung.mavenlifecycle; + +public class CourseApp { + public String getCourse() { + return "Baeldung Spring Masterclass"; + } +} diff --git a/maven-modules/maven-build-lifecycle/src/test/java/com/baeldung/mavenlifecycle/CourseAppIT.java b/maven-modules/maven-build-lifecycle/src/test/java/com/baeldung/mavenlifecycle/CourseAppIT.java new file mode 100644 index 0000000000..d89181ab3a --- /dev/null +++ b/maven-modules/maven-build-lifecycle/src/test/java/com/baeldung/mavenlifecycle/CourseAppIT.java @@ -0,0 +1,15 @@ +package com.baeldung.mavenlifecycle; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import org.junit.jupiter.api.Test; + +class CourseAppIT { + + @Test + void givenIntegrationTest_whenGetCourse_ThenCourseShouldBePresent() { + CourseApp courseApp = new CourseApp(); + + assertEquals("Baeldung Spring Masterclass", courseApp.getCourse()); + } +} diff --git a/maven-modules/maven-build-lifecycle/src/test/java/com/baeldung/mavenlifecycle/CourseAppUnitTest.java b/maven-modules/maven-build-lifecycle/src/test/java/com/baeldung/mavenlifecycle/CourseAppUnitTest.java new file mode 100644 index 0000000000..e148075bb7 --- /dev/null +++ b/maven-modules/maven-build-lifecycle/src/test/java/com/baeldung/mavenlifecycle/CourseAppUnitTest.java @@ -0,0 +1,16 @@ +package com.baeldung.mavenlifecycle; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import org.junit.jupiter.api.Test; + + +class CourseAppUnitTest { + + @Test + void whenGetCourse_ThenCourseShouldBePresent() { + CourseApp courseApp = new CourseApp(); + + assertEquals("Baeldung Spring Masterclass", courseApp.getCourse()); + } +} diff --git a/maven-modules/maven-exec-plugin/pom.xml b/maven-modules/maven-exec-plugin/pom.xml index 7f017b415d..fc4d2d79f1 100644 --- a/maven-modules/maven-exec-plugin/pom.xml +++ b/maven-modules/maven-exec-plugin/pom.xml @@ -8,6 +8,36 @@ 0.0.1-SNAPSHOT maven-exec-plugin + + + org.apache.maven.shared + maven-invoker + ${apache.maven.invoker.version} + + + org.apache.maven + maven-embedder + ${apache.maven.version} + + + org.junit.jupiter + junit-jupiter + ${junit.jupiter.version} + test + + + org.junit.jupiter + junit-jupiter-engine + ${junit.jupiter.version} + test + + + org.junit.jupiter + junit-jupiter-api + ${junit.jupiter.version} + test + + @@ -38,6 +68,9 @@ 3.12.1 3.1.0 + 5.10.0 + 3.9.6 + 3.2.0 \ No newline at end of file diff --git a/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/JavaVersion.java b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/JavaVersion.java new file mode 100644 index 0000000000..1dc57c5e18 --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/JavaVersion.java @@ -0,0 +1,17 @@ +package com.baeldung.learningplatform; + +public enum JavaVersion { + + JAVA_8("1.8"), JAVA_9("9"), JAVA_17("17"); + + private final String version; + + + JavaVersion(String version) { + this.version = version; + } + + public String getVersion() { + return this.version; + } +} diff --git a/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/Maven.java b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/Maven.java new file mode 100644 index 0000000000..4dbe6db6fa --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/Maven.java @@ -0,0 +1,13 @@ +package com.baeldung.learningplatform; + +import java.nio.file.Path; + +public interface Maven { + String POM_XML = "pom.xml"; + String COMPILE_GOAL = "compile"; + String USE_CUSTOM_POM = "-f"; + int OK = 0; + String MVN = "mvn"; + + void compile(Path projectFolder); +} diff --git a/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenCompilationException.java b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenCompilationException.java new file mode 100644 index 0000000000..572a7bc408 --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenCompilationException.java @@ -0,0 +1,12 @@ +package com.baeldung.learningplatform; + +public class MavenCompilationException extends RuntimeException { + + public MavenCompilationException(String message, Throwable cause) { + super(message, cause); + } + + public MavenCompilationException(String message) { + super(message); + } +} diff --git a/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenEmbedder.java b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenEmbedder.java new file mode 100644 index 0000000000..0969ff504f --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenEmbedder.java @@ -0,0 +1,16 @@ +package com.baeldung.learningplatform; + +import java.nio.file.Path; +import org.apache.maven.cli.MavenCli; + +public class MavenEmbedder implements Maven { + + public static final String MVN_HOME = "maven.multiModuleProjectDirectory"; + + @Override + public void compile(Path projectFolder) { + MavenCli cli = new MavenCli(); + System.setProperty(MVN_HOME, projectFolder.toString()); + cli.doMain(new String[]{COMPILE_GOAL}, projectFolder.toString(), null, null); + } +} diff --git a/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenExecutorAdapter.java b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenExecutorAdapter.java new file mode 100644 index 0000000000..1acee8404e --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenExecutorAdapter.java @@ -0,0 +1,26 @@ +package com.baeldung.learningplatform; + +import java.io.IOException; +import java.nio.file.Path; + +public abstract class MavenExecutorAdapter implements Maven { + + @Override + public void compile(Path projectFolder) { + int exitCode; + try { + exitCode = execute(projectFolder, COMPILE_GOAL); + } catch (InterruptedException e) { + throw new MavenCompilationException("Interrupted during compilation", e); + } catch (IOException e) { + throw new MavenCompilationException("Incorrect execution", e); + } + if (exitCode != OK) { + throw new MavenCompilationException("Failure during compilation: " + exitCode); + } + } + + protected abstract int execute(Path projectFolder, String compileGoal) + throws InterruptedException, IOException; + +} diff --git a/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenInvoker.java b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenInvoker.java new file mode 100644 index 0000000000..49fed4b6f9 --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenInvoker.java @@ -0,0 +1,30 @@ +package com.baeldung.learningplatform; + +import java.nio.file.Path; +import java.util.Collections; +import org.apache.maven.shared.invoker.DefaultInvocationRequest; +import org.apache.maven.shared.invoker.DefaultInvoker; +import org.apache.maven.shared.invoker.InvocationRequest; +import org.apache.maven.shared.invoker.InvocationResult; +import org.apache.maven.shared.invoker.Invoker; +import org.apache.maven.shared.invoker.MavenInvocationException; + +public class MavenInvoker implements Maven { + + @Override + public void compile(Path projectFolder) { + InvocationRequest request = new DefaultInvocationRequest(); + request.setPomFile(projectFolder.resolve(POM_XML).toFile()); + request.setGoals(Collections.singletonList(Maven.COMPILE_GOAL)); + Invoker invoker = new DefaultInvoker(); + try { + InvocationResult result = invoker.execute(request); + if (result.getExitCode() != 0) { + throw new MavenCompilationException("Build failed", result.getExecutionException()); + } + } catch (MavenInvocationException e) { + throw new MavenCompilationException("Exception during Maven invocation", e); + } + + } +} diff --git a/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenProcessBuilder.java b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenProcessBuilder.java new file mode 100644 index 0000000000..7f4459f98a --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenProcessBuilder.java @@ -0,0 +1,15 @@ +package com.baeldung.learningplatform; + +import java.io.IOException; +import java.nio.file.Path; + +public class MavenProcessBuilder extends MavenExecutorAdapter { + private static final ProcessBuilder PROCESS_BUILDER = new ProcessBuilder(); + + protected int execute(Path projectFolder, String compileGoal) throws IOException, InterruptedException { + Process process = PROCESS_BUILDER + .command(MVN, USE_CUSTOM_POM, projectFolder.resolve(POM_XML).toString(), compileGoal) + .start(); + return process.waitFor(); + } +} diff --git a/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenRuntimeExec.java b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenRuntimeExec.java new file mode 100644 index 0000000000..20ffa33607 --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/MavenRuntimeExec.java @@ -0,0 +1,13 @@ +package com.baeldung.learningplatform; + +import java.io.IOException; +import java.nio.file.Path; + +public class MavenRuntimeExec extends MavenExecutorAdapter { + @Override + protected int execute(Path projectFolder, String compileGoal) throws InterruptedException, IOException { + String[] arguments = {MVN, USE_CUSTOM_POM, projectFolder.resolve(POM_XML).toString(), COMPILE_GOAL}; + Process process = Runtime.getRuntime().exec(arguments); + return process.waitFor(); + } +} diff --git a/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/ProjectBuilder.java b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/ProjectBuilder.java new file mode 100644 index 0000000000..5f9538e97d --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/main/java/com/baeldung/learningplatform/ProjectBuilder.java @@ -0,0 +1,100 @@ +package com.baeldung.learningplatform; + +import java.io.FileWriter; +import java.io.IOException; +import java.nio.file.FileSystems; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.List; +import org.apache.maven.model.Build; +import org.apache.maven.model.Dependency; +import org.apache.maven.model.Model; +import org.apache.maven.model.Plugin; +import org.apache.maven.model.io.xpp3.MavenXpp3Writer; +import org.codehaus.plexus.util.xml.Xpp3Dom; + +public class ProjectBuilder { + + private static final String PACKAGE = "package "; + private static final String POM_XML = "pom.xml"; + private static final String SRC_TEST = "src/test/"; + private static final String SRC_MAIN_JAVA = "src/main/java/"; + private static final String PACKAGE_DELIMITER = "."; + private static final String MAIN_JAVA = "Main.java"; + private final List dependencies = new ArrayList<>(); + private JavaVersion javaVersion = JavaVersion.JAVA_8; + + public ProjectBuilder addDependency(String groupId, String artifactId, String version) { + Dependency dependency = new Dependency(); + dependency.setGroupId(groupId); + dependency.setArtifactId(artifactId); + dependency.setVersion(version); + dependencies.add(dependency); + return this; + } + + public ProjectBuilder setJavaVersion(JavaVersion version) { + this.javaVersion = version; + return this; + } + + public void build(String userName, Path projectPath, String packageName) throws IOException { + Model model = new Model(); + configureModel(userName, model); + dependencies.forEach(model::addDependency); + Build build = configureJavaVersion(); + model.setBuild(build); + MavenXpp3Writer writer = new MavenXpp3Writer(); + writer.write(new FileWriter(projectPath.resolve(POM_XML).toFile()), model); + generateFolders(projectPath, SRC_TEST); + + Path generatedPackage = generateFolders(projectPath, + SRC_MAIN_JAVA + + packageName.replace(PACKAGE_DELIMITER, FileSystems.getDefault().getSeparator())); + String generatedClass = generateMainClass(PACKAGE + packageName); + Files.writeString(generatedPackage.resolve(MAIN_JAVA), generatedClass); + } + + private static void configureModel(String userName, Model model) { + model.setModelVersion("4.0.0"); + model.setArtifactId("com." + userName.toLowerCase()); + model.setGroupId("learning-project"); + model.setVersion("0.0.1-SNAPSHOT"); + } + + private static String generateMainClass(String packageName) { + return packageName + ";\n" + + "\n" + + "public class Main {\n" + + " public static void main(String[] args){\n" + + " System.out.println(\"Hello World!\");\n" + + " }\n" + + "}\n"; + } + + private static Path generateFolders(Path sourceFolder, String packageName) throws IOException { + return Files.createDirectories(sourceFolder.resolve(packageName)); + } + + private Build configureJavaVersion() { + Plugin plugin = new Plugin(); + plugin.setGroupId("org.apache.maven.plugins"); + plugin.setArtifactId("maven-compiler-plugin"); + plugin.setVersion("3.8.1"); + + Xpp3Dom configuration = new Xpp3Dom("configuration"); + Xpp3Dom source = new Xpp3Dom("source"); + source.setValue(javaVersion.getVersion()); + Xpp3Dom target = new Xpp3Dom("target"); + target.setValue(javaVersion.getVersion()); + configuration.addChild(source); + configuration.addChild(target); + + plugin.setConfiguration(configuration); + + Build build = new Build(); + build.addPlugin(plugin); + return build; + } +} diff --git a/maven-modules/maven-exec-plugin/src/test/java/com/baeldung/learningplatform/FileUtil.java b/maven-modules/maven-exec-plugin/src/test/java/com/baeldung/learningplatform/FileUtil.java new file mode 100644 index 0000000000..b781ab61f4 --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/test/java/com/baeldung/learningplatform/FileUtil.java @@ -0,0 +1,32 @@ +package com.baeldung.learningplatform; + +import java.io.IOException; +import java.nio.file.FileVisitResult; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.SimpleFileVisitor; +import java.nio.file.attribute.BasicFileAttributes; + +public class FileUtil { + + private FileUtil() { + } + + public static void removeDirectoryRecursively(Path folder) throws IOException { + if (Files.exists(folder)) { + Files.walkFileTree(folder, new SimpleFileVisitor<>() { + @Override + public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException { + Files.delete(file); + return FileVisitResult.CONTINUE; + } + + @Override + public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException { + Files.delete(dir); + return FileVisitResult.CONTINUE; + } + }); + } + } +} diff --git a/maven-modules/maven-exec-plugin/src/test/java/com/baeldung/learningplatform/MavenRuntimeExecUnitTest.java b/maven-modules/maven-exec-plugin/src/test/java/com/baeldung/learningplatform/MavenRuntimeExecUnitTest.java new file mode 100644 index 0000000000..4765cb299c --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/test/java/com/baeldung/learningplatform/MavenRuntimeExecUnitTest.java @@ -0,0 +1,41 @@ +package com.baeldung.learningplatform; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.stream.Stream; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.io.TempDir; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.MethodSource; + +class MavenRuntimeExecUnitTest { + + private static final String PACKAGE_NAME = "com.baeldung.generatedcode"; + private static final String USER_NAME = "john_doe"; + @TempDir + private Path tempDir; + + @BeforeEach + public void setUp() throws IOException { + ProjectBuilder projectBuilder = new ProjectBuilder(); + projectBuilder.build(USER_NAME, tempDir, PACKAGE_NAME); + } + + @ParameterizedTest + @MethodSource + void givenMavenInterface_whenCompileMavenProject_thenCreateTargetDirectory(Maven maven) { + maven.compile(tempDir); + assertTrue(Files.exists(tempDir)); + } + + static Stream givenMavenInterface_whenCompileMavenProject_thenCreateTargetDirectory() { + return Stream.of( + new MavenRuntimeExec(), + new MavenProcessBuilder(), + new MavenEmbedder(), + new MavenInvoker()); + } +} \ No newline at end of file diff --git a/maven-modules/maven-exec-plugin/src/test/java/com/baeldung/learningplatform/ProjectsPaths.java b/maven-modules/maven-exec-plugin/src/test/java/com/baeldung/learningplatform/ProjectsPaths.java new file mode 100644 index 0000000000..3967a83ca2 --- /dev/null +++ b/maven-modules/maven-exec-plugin/src/test/java/com/baeldung/learningplatform/ProjectsPaths.java @@ -0,0 +1,11 @@ +package com.baeldung.learningplatform; + +import java.nio.file.Path; +import java.nio.file.Paths; + +public interface ProjectsPaths { + + public static final Path PROJECT_DIR = Paths.get("src/test/resources/learning-project/"); + public static final Path PROJECT_POM_XML = PROJECT_DIR.resolve("pom.xml"); + public static final Path PROJECT_TARGET = PROJECT_DIR.resolve("target"); +} diff --git a/maven-modules/pom.xml b/maven-modules/pom.xml index 913421d496..5e293fdb02 100644 --- a/maven-modules/pom.xml +++ b/maven-modules/pom.xml @@ -21,6 +21,7 @@ host-maven-repo-example jacoco-coverage-aggregation maven-archetype + maven-build-lifecycle maven-build-optimization maven-builder-plugin maven-classifier diff --git a/messaging-modules/rabbitmq/pom.xml b/messaging-modules/rabbitmq/pom.xml index 2ea2700c4a..d4bdae414a 100644 --- a/messaging-modules/rabbitmq/pom.xml +++ b/messaging-modules/rabbitmq/pom.xml @@ -41,7 +41,7 @@ - 2020.0.3 + 2023.0.0 true diff --git a/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/ConnectionPerChannelPublisher.java b/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/ConnectionPerChannelPublisher.java index 1692066bef..61d5dab8a2 100644 --- a/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/ConnectionPerChannelPublisher.java +++ b/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/ConnectionPerChannelPublisher.java @@ -1,15 +1,12 @@ package com.baeldung.benchmark; -import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.LongSummaryStatistics; -import java.util.Random; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.Callable; import java.util.concurrent.CountDownLatch; import java.util.concurrent.ExecutorService; -import java.util.concurrent.Future; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; import java.util.stream.Collectors; @@ -18,8 +15,6 @@ import java.util.stream.IntStream; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import com.baeldung.benchmark.Worker.WorkerResult; -import com.rabbitmq.client.Channel; import com.rabbitmq.client.Connection; import com.rabbitmq.client.ConnectionFactory; diff --git a/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/SharedConnectionPublisher.java b/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/SharedConnectionPublisher.java index 7b44ccb9ea..5e5eb3ef08 100644 --- a/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/SharedConnectionPublisher.java +++ b/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/SharedConnectionPublisher.java @@ -8,13 +8,10 @@ import java.util.Random; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.Callable; import java.util.concurrent.CountDownLatch; -import java.util.concurrent.ExecutionException; -import java.util.concurrent.Executor; import java.util.concurrent.ExecutorService; import java.util.concurrent.Future; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; -import java.util.concurrent.TimeoutException; import java.util.stream.Collectors; import org.slf4j.Logger; diff --git a/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/SingleConnectionPublisherNio.java b/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/SingleConnectionPublisherNio.java index cd4fe28ce9..bbfbff83b3 100644 --- a/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/SingleConnectionPublisherNio.java +++ b/messaging-modules/rabbitmq/src/main/java/com/baeldung/benchmark/SingleConnectionPublisherNio.java @@ -8,13 +8,10 @@ import java.util.Random; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.Callable; import java.util.concurrent.CountDownLatch; -import java.util.concurrent.ExecutionException; -import java.util.concurrent.Executor; import java.util.concurrent.ExecutorService; import java.util.concurrent.Future; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; -import java.util.concurrent.TimeoutException; import java.util.stream.Collectors; import org.slf4j.Logger; diff --git a/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/ConnectionPerChannelPublisherLiveTest.java b/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/ConnectionPerChannelPublisherLiveTest.java index 0309912e91..9131d8dd59 100644 --- a/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/ConnectionPerChannelPublisherLiveTest.java +++ b/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/ConnectionPerChannelPublisherLiveTest.java @@ -2,6 +2,7 @@ package com.baeldung.benchmark; import java.util.Arrays; +import java.util.stream.Stream; import org.junit.jupiter.api.Test; class ConnectionPerChannelPublisherLiveTest { @@ -9,9 +10,9 @@ class ConnectionPerChannelPublisherLiveTest { @Test void whenConnectionPerChannel_thenRunBenchmark() throws Exception { // host, workerCount, iterations, payloadSize - Arrays.asList(1,5,10,20,50,100,150).stream() + Stream.of(1,5,10,20,50,100,150) .forEach(workers -> { - ConnectionPerChannelPublisher.main(new String[]{"192.168.99.100", Integer.toString(workers), "1000", "4096"}); + ConnectionPerChannelPublisher.main(new String[]{"localhost", Integer.toString(workers), "1000", "4096"}); }); } diff --git a/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/SingleConnectionPublisherLiveTest.java b/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/SingleConnectionPublisherLiveTest.java index 6c03f90fb0..073b1a08a8 100644 --- a/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/SingleConnectionPublisherLiveTest.java +++ b/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/SingleConnectionPublisherLiveTest.java @@ -2,6 +2,7 @@ package com.baeldung.benchmark; import java.util.Arrays; +import java.util.stream.Stream; import org.junit.jupiter.api.Test; class SingleConnectionPublisherLiveTest { @@ -9,9 +10,9 @@ class SingleConnectionPublisherLiveTest { @Test void whenSingleChannel_thenRunBenchmark() throws Exception { // host, workerCount, iterations, payloadSize - Arrays.asList(1,5,10,20,50,100,150).stream() + Stream.of(1,5,10,20,50) .forEach(workers -> { - SingleConnectionPublisher.main(new String[]{"192.168.99.100", Integer.toString(workers), "1000", "4096"}); + SingleConnectionPublisher.main(new String[]{"localhost", Integer.toString(workers), "1000", "4096"}); }); } diff --git a/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/queue/dynamic/DynamicQueueCreationLiveTest.java b/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/queue/dynamic/DynamicQueueCreationLiveTest.java index aa430035ef..2f97440505 100644 --- a/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/queue/dynamic/DynamicQueueCreationLiveTest.java +++ b/messaging-modules/rabbitmq/src/test/java/com/baeldung/benchmark/queue/dynamic/DynamicQueueCreationLiveTest.java @@ -56,11 +56,17 @@ public class DynamicQueueCreationLiveTest { @Test void givenQueueName_whenQueueDoesNotExist_thenCheckingIfQueueExists() throws IOException, TimeoutException { - - try (Channel channel = connection.createChannel()) { + Channel temp = null; + try { + Channel channel = connection.createChannel(); assertThrows(IOException.class, () -> { channel.queueDeclarePassive(QUEUE_NAME_NEW); }); + temp = channel; + } finally { + if(temp != null && temp.isOpen()) { + temp.close(); + } } } diff --git a/microservices-modules/event-driven-microservice/.gitignore b/microservices-modules/event-driven-microservice/.gitignore new file mode 100644 index 0000000000..98c0d387a6 --- /dev/null +++ b/microservices-modules/event-driven-microservice/.gitignore @@ -0,0 +1,27 @@ +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +replay_pid* + +.idea/ +target/ diff --git a/microservices-modules/event-driven-microservice/README.md b/microservices-modules/event-driven-microservice/README.md new file mode 100644 index 0000000000..657f2ec6b7 --- /dev/null +++ b/microservices-modules/event-driven-microservice/README.md @@ -0,0 +1,13 @@ +# Event Driven Microservices using Conductor + +This is an example project showing how to build event driven applications using [Conductor](https://github.com/conductor-oss/conductor) + +# Pre-requisites +1. Docker +2. Running conductor server + +**Start the conductor server** + +```shell +docker run --init -p 8080:8080 -p 1234:5000 conductoross/conductor-standalone:3.15.0 +``` \ No newline at end of file diff --git a/microservices-modules/event-driven-microservice/pom.xml b/microservices-modules/event-driven-microservice/pom.xml new file mode 100644 index 0000000000..a1ba8d6e35 --- /dev/null +++ b/microservices-modules/event-driven-microservice/pom.xml @@ -0,0 +1,76 @@ + + + 4.0.0 + + + org.springframework.boot + spring-boot-starter-parent + 3.2.0 + + + + io.orkes.demo + event-driven-microservice + 0.1 + + event-driven-microservice + Demo Project for Orkes Conductor on Spring Boot + + + + + + org.springframework.boot + spring-boot-starter-web + + + + io.orkes.conductor + orkes-conductor-client + ${conductor.client.version} + + + + org.springdoc + springdoc-openapi-starter-webmvc-ui + ${spring.webmvc.version} + + + + org.projectlombok + lombok + true + + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + + + + 17 + 2.0.8 + 2.1.0 + + + diff --git a/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/Application.java b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/Application.java new file mode 100644 index 0000000000..441f85f23c --- /dev/null +++ b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/Application.java @@ -0,0 +1,28 @@ +package io.orkes.demo.banking; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.ComponentScan; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.netflix.conductor.common.config.ObjectMapperProvider; + +import lombok.AllArgsConstructor; + +@AllArgsConstructor +@SpringBootApplication +@ComponentScan(basePackages = { "io.orkes" }) +public class Application { + + public static void main(String[] args) { + SpringApplication.run(Application.class, args); + } + + // ObjectMapper instance used for JSON serialization - can be modified to configure additional modules + @Bean + public ObjectMapper getObjectMapper() { + return new ObjectMapperProvider().getObjectMapper(); + } + +} diff --git a/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/controller/APIController.java b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/controller/APIController.java new file mode 100644 index 0000000000..6b89bdddae --- /dev/null +++ b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/controller/APIController.java @@ -0,0 +1,41 @@ +package io.orkes.demo.banking.controller; + +import java.util.Map; + +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RestController; + +import io.orkes.demo.banking.pojos.DepositDetail; +import io.orkes.demo.banking.service.FraudCheckService; +import io.orkes.demo.banking.service.WorkflowService; +import io.orkes.demo.banking.workers.FraudCheckResult; +import lombok.AllArgsConstructor; +import lombok.extern.slf4j.Slf4j; + +@Slf4j +@AllArgsConstructor +@RestController +public class APIController { + + private final FraudCheckService fraudCheckService; + + private final WorkflowService workflowService; + + @PostMapping(value = "/triggerDeposit", produces = "application/json") + public ResponseEntity triggerDeposit(@RequestBody DepositDetail depositDetail) { + log.info("Checking for fraud: {}", depositDetail); + return ResponseEntity.ok(fraudCheckService.checkForFraud(depositDetail)); + } + + // docs-marker-start-1 + @PostMapping(value = "/checkForFraud", produces = "application/json") + public Map checkForFraud(@RequestBody DepositDetail depositDetail) throws Exception { + log.info("Checking if fraud check is required for: {}", depositDetail); + return workflowService.executeWorkflow(depositDetail); + } + + // docs-marker-end-1 + +} diff --git a/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/pojos/DepositDetail.java b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/pojos/DepositDetail.java new file mode 100644 index 0000000000..7c382398eb --- /dev/null +++ b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/pojos/DepositDetail.java @@ -0,0 +1,19 @@ +package io.orkes.demo.banking.pojos; + +import java.math.BigDecimal; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@NoArgsConstructor +@AllArgsConstructor +public class DepositDetail { + + private String accountId; + private BigDecimal amount; + +} diff --git a/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/service/FraudCheckService.java b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/service/FraudCheckService.java new file mode 100644 index 0000000000..80bd8b8886 --- /dev/null +++ b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/service/FraudCheckService.java @@ -0,0 +1,29 @@ +package io.orkes.demo.banking.service; + +import static io.orkes.demo.banking.workers.FraudCheckResult.Result.FAIL; +import static io.orkes.demo.banking.workers.FraudCheckResult.Result.PASS; + +import java.math.BigDecimal; + +import org.springframework.stereotype.Service; + +import io.orkes.demo.banking.pojos.DepositDetail; +import io.orkes.demo.banking.workers.FraudCheckResult; + +@Service +public class FraudCheckService { + + public FraudCheckResult checkForFraud(DepositDetail depositDetail) { + FraudCheckResult fcr = new FraudCheckResult(); + if (depositDetail.getAmount() + .compareTo(BigDecimal.valueOf(100000)) > 0) { + fcr.setResult(FAIL); + fcr.setReason("Amount too large"); + } else { + fcr.setResult(PASS); + fcr.setReason("All good!"); + } + return fcr; + } + +} diff --git a/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/service/WorkflowService.java b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/service/WorkflowService.java new file mode 100644 index 0000000000..843508d190 --- /dev/null +++ b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/service/WorkflowService.java @@ -0,0 +1,71 @@ +package io.orkes.demo.banking.service; + +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.ExecutionException; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.TimeoutException; + +import org.springframework.stereotype.Service; + +import com.netflix.conductor.common.metadata.workflow.StartWorkflowRequest; + +import io.orkes.conductor.client.WorkflowClient; +import io.orkes.conductor.common.model.WorkflowRun; +import io.orkes.demo.banking.pojos.DepositDetail; +import lombok.AllArgsConstructor; +import lombok.extern.slf4j.Slf4j; + +@Slf4j +@AllArgsConstructor +@Service +public class WorkflowService { + + private final WorkflowClient workflowClient; + + /** + * Starts the workflow execution asynchronously + * @param depositDetail + * @return + */ + public Map startDepositWorkflow(DepositDetail depositDetail) { + StartWorkflowRequest request = new StartWorkflowRequest(); + request.setName("microservice_orchestration"); + Map inputData = new HashMap<>(); + inputData.put("amount", depositDetail.getAmount()); + inputData.put("accountId", depositDetail.getAccountId()); + request.setInput(inputData); + + String workflowId = workflowClient.startWorkflow(request); + log.info("Workflow id: {}", workflowId); + return Map.of("workflowId", workflowId); + } + + /** + * Executes the workflow, waits for it to complete and returns the output of the workflow + * @param depositDetail + * @return + * @throws ExecutionException + * @throws InterruptedException + * @throws TimeoutException + */ + public Map executeWorkflow(DepositDetail depositDetail) throws ExecutionException, InterruptedException, TimeoutException { + StartWorkflowRequest request = new StartWorkflowRequest(); + request.setName("microservice_orchestration"); + request.setVersion(1); + Map inputData = new HashMap<>(); + inputData.put("amount", depositDetail.getAmount()); + inputData.put("accountId", depositDetail.getAccountId()); + request.setInput(inputData); + + CompletableFuture workflowRun = workflowClient.executeWorkflow(request, UUID.randomUUID() + .toString(), 10); + log.info("Workflow id: {}", workflowRun); + + return workflowRun.get(10, TimeUnit.SECONDS) + .getOutput(); + } + +} diff --git a/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/workers/ConductorWorkers.java b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/workers/ConductorWorkers.java new file mode 100644 index 0000000000..5f5256a3ca --- /dev/null +++ b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/workers/ConductorWorkers.java @@ -0,0 +1,34 @@ +package io.orkes.demo.banking.workers; + +import java.math.BigDecimal; + +import org.springframework.stereotype.Component; + +import com.netflix.conductor.sdk.workflow.task.InputParam; +import com.netflix.conductor.sdk.workflow.task.WorkerTask; + +import io.orkes.demo.banking.pojos.DepositDetail; +import io.orkes.demo.banking.service.FraudCheckService; +import lombok.AllArgsConstructor; +import lombok.extern.slf4j.Slf4j; + +@AllArgsConstructor +@Component +@Slf4j +public class ConductorWorkers { + + private final FraudCheckService fraudCheckService; + + /** + * + * @param amount + * @return Given the amount, the service check if the fraud check should done before executing the transaction + */ + @WorkerTask(value = "fraud-check-required") + public FraudCheckResult simpleWorker(@InputParam("amount") BigDecimal amount) { + DepositDetail dd = new DepositDetail(); + dd.setAmount(amount); + return fraudCheckService.checkForFraud(dd); + } + +} diff --git a/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/workers/FraudCheckResult.java b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/workers/FraudCheckResult.java new file mode 100644 index 0000000000..b4e667910f --- /dev/null +++ b/microservices-modules/event-driven-microservice/src/main/java/io/orkes/demo/banking/workers/FraudCheckResult.java @@ -0,0 +1,15 @@ +package io.orkes.demo.banking.workers; + +import lombok.Data; + +@Data +public class FraudCheckResult { + + public enum Result { + PASS, + FAIL; + } + + private Result result; + private String reason; +} diff --git a/microservices-modules/event-driven-microservice/src/main/resources/application.properties b/microservices-modules/event-driven-microservice/src/main/resources/application.properties new file mode 100644 index 0000000000..6f31f7f1f2 --- /dev/null +++ b/microservices-modules/event-driven-microservice/src/main/resources/application.properties @@ -0,0 +1,11 @@ +# swagger-ui custom path +springdoc.swagger-ui.path=/swagger-ui.html +management.endpoints.enabled-by-default=false +management.endpoint.info.enabled=false +server.port=8081 +# If you want to use Orkes Playground, then change the server url to https://play.orkes.io/api/ +# Obtain key and secret by logging into +# and navigating to applications menu, create an application and generate key/secret +conductor.security.client.key-id=CHANGE_ME +conductor.security.client.secret=CHANGE_ME +conductor.server.url=https://play.orkes.io/api/ \ No newline at end of file diff --git a/microservices-modules/event-driven-microservice/src/test/java/io/orkes/demo/banking/ApplicationTests.java b/microservices-modules/event-driven-microservice/src/test/java/io/orkes/demo/banking/ApplicationTests.java new file mode 100644 index 0000000000..9e5fe270b1 --- /dev/null +++ b/microservices-modules/event-driven-microservice/src/test/java/io/orkes/demo/banking/ApplicationTests.java @@ -0,0 +1,14 @@ +package io.orkes.demo.banking; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class ApplicationTests { + + @Test + void contextLoads() { + + } + +} diff --git a/microservices-modules/event-driven-microservice/style.xml b/microservices-modules/event-driven-microservice/style.xml new file mode 100644 index 0000000000..e99b59d78e --- /dev/null +++ b/microservices-modules/event-driven-microservice/style.xml @@ -0,0 +1,65 @@ + + diff --git a/microservices-modules/micronaut-reactive/pom.xml b/microservices-modules/micronaut-reactive/pom.xml index 4e0af0afe6..c65d587b06 100644 --- a/microservices-modules/micronaut-reactive/pom.xml +++ b/microservices-modules/micronaut-reactive/pom.xml @@ -11,6 +11,7 @@ io.micronaut.platform micronaut-parent 4.1.2 + jar diff --git a/microservices-modules/pom.xml b/microservices-modules/pom.xml index a88b6e0fd6..0f0baac488 100644 --- a/microservices-modules/pom.xml +++ b/microservices-modules/pom.xml @@ -22,6 +22,7 @@ msf4j open-liberty rest-express + event-driven-microservice \ No newline at end of file diff --git a/patterns-modules/design-patterns-behavioral-2/README.md b/patterns-modules/design-patterns-behavioral-2/README.md index 2afa7b9eb6..80c8a62728 100644 --- a/patterns-modules/design-patterns-behavioral-2/README.md +++ b/patterns-modules/design-patterns-behavioral-2/README.md @@ -2,3 +2,4 @@ - [Memento Design Pattern in Java](https://www.baeldung.com/java-memento-design-pattern) - [Difference Between Fluent Interface and Builder Pattern in Java](https://www.baeldung.com/java-fluent-interface-vs-builder-pattern) - [Smart Batching in Java](https://www.baeldung.com/java-smart-batching) +- [Convert Null Value to a Default Value in Java](https://www.baeldung.com/java-convert-null-default-value) diff --git a/patterns-modules/design-patterns-behavioral-2/src/main/java/com/baeldung/nullconversion/Delivery.java b/patterns-modules/design-patterns-behavioral-2/src/main/java/com/baeldung/nullconversion/Delivery.java index 3c584d9566..7f18cfd9bc 100644 --- a/patterns-modules/design-patterns-behavioral-2/src/main/java/com/baeldung/nullconversion/Delivery.java +++ b/patterns-modules/design-patterns-behavioral-2/src/main/java/com/baeldung/nullconversion/Delivery.java @@ -32,4 +32,7 @@ public class Delivery { public static Delivery freeDelivery() { return new Delivery("Free delivery"); } + public static Delivery defaultDelivery() { + return new Delivery("Default delivery"); + } } diff --git a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/OnePersonDeliveryServiceUnitTest.java b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/OnePersonDeliveryServiceUnitTest.java index 01cd658bd1..304458b213 100644 --- a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/OnePersonDeliveryServiceUnitTest.java +++ b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/OnePersonDeliveryServiceUnitTest.java @@ -7,6 +7,7 @@ import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import com.baeldung.nullconversion.service.OnePersonExplicitDeliveryService; import com.baeldung.nullconversion.service.OnePersonGuavaOptionalDeliveryService; import com.baeldung.nullconversion.service.OnePersonOptionalDeliveryService; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ArgumentsSource; @@ -27,13 +28,4 @@ class OnePersonDeliveryServiceUnitTest { Delivery actual = deliveryService.calculateDeliveryForPerson(1L); assertThat(actual).isEqualTo(expected); } - - @ParameterizedTest - @ArgumentsSource(NullReturningPersonChainProvider.class) - void givenMockDeliverServiceWhenNullValuesThenGuavaOptionalServiceThrowsException(Person person) { - DeliveryService deliveryService = new OnePersonGuavaOptionalDeliveryService(person); - assertThatExceptionOfType(NullPointerException.class) - .isThrownBy(() -> deliveryService.calculateDeliveryForPerson(1L)); - - } } \ No newline at end of file diff --git a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/PersonProvider.java b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/PersonProvider.java index d31d9d8ec4..301e859fe7 100644 --- a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/PersonProvider.java +++ b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/PersonProvider.java @@ -18,10 +18,10 @@ public class PersonProvider implements ArgumentsProvider { return Stream.of( Arguments.of(person, Delivery.freeDelivery()), - Arguments.of(cloneAndMutate(person, p -> p.getAddress().getZipCode().setCode("")), null), - Arguments.of(cloneAndMutate(person, p -> p.getAddress().setZipCode(null)), null), - Arguments.of(cloneAndMutate(person, p -> p.setAddress(null)), null), - Arguments.of(null, null) + Arguments.of(cloneAndMutate(person, p -> p.getAddress().getZipCode().setCode("")), Delivery.defaultDelivery()), + Arguments.of(cloneAndMutate(person, p -> p.getAddress().setZipCode(null)), Delivery.defaultDelivery()), + Arguments.of(cloneAndMutate(person, p -> p.setAddress(null)), Delivery.defaultDelivery()), + Arguments.of(null, Delivery.defaultDelivery()) ); } diff --git a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/MockOnePersonDeliveryServiceBase.java b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/MockOnePersonDeliveryServiceBase.java index 973f8bce97..1080f69d97 100644 --- a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/MockOnePersonDeliveryServiceBase.java +++ b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/MockOnePersonDeliveryServiceBase.java @@ -23,7 +23,7 @@ public abstract class MockOnePersonDeliveryServiceBase implements DeliveryServic String code = zipCode.getCode(); return calculateDeliveryForZipCode(code); } - return null; + return Delivery.defaultDelivery(); } public Delivery calculateDeliveryForPersonWithOptional(Long id) { @@ -32,7 +32,7 @@ public abstract class MockOnePersonDeliveryServiceBase implements DeliveryServic .map(Address::getZipCode) .map(ZipCode::getCode) .map(this::calculateDeliveryForZipCode) - .orElse(null); + .orElse(Delivery.defaultDelivery()); } protected Person getPersonById(Long id) { @@ -41,7 +41,7 @@ public abstract class MockOnePersonDeliveryServiceBase implements DeliveryServic protected Delivery calculateDeliveryForZipCode(String zipCode) { if (zipCode == null || zipCode.isEmpty()) { - return null; + return Delivery.defaultDelivery(); } else { return Delivery.freeDelivery(); } diff --git a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonExplicitDeliveryService.java b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonExplicitDeliveryService.java index 652d0a002b..7d81d3cf51 100644 --- a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonExplicitDeliveryService.java +++ b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonExplicitDeliveryService.java @@ -19,6 +19,6 @@ public class OnePersonExplicitDeliveryService extends MockOnePersonDeliveryServi String code = zipCode.getCode(); return calculateDeliveryForZipCode(code); } - return null; + return Delivery.defaultDelivery(); } } diff --git a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonGuavaOptionalDeliveryService.java b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonGuavaOptionalDeliveryService.java index 29d42789a0..f495576e87 100644 --- a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonGuavaOptionalDeliveryService.java +++ b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonGuavaOptionalDeliveryService.java @@ -20,7 +20,7 @@ public class OnePersonGuavaOptionalDeliveryService extends MockOnePersonDelivery .transform(Address::getZipCode) .transform(ZipCode::getCode) .transform(this::calculateDeliveryForZipCode) - .orNull(); + .or(Delivery.defaultDelivery()); } } diff --git a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonOptionalDeliveryService.java b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonOptionalDeliveryService.java index 586f0009ea..1a7ab5d870 100644 --- a/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonOptionalDeliveryService.java +++ b/patterns-modules/design-patterns-behavioral-2/src/test/java/com/baeldung/nullconversion/service/OnePersonOptionalDeliveryService.java @@ -20,7 +20,7 @@ public class OnePersonOptionalDeliveryService extends MockOnePersonDeliveryServi .map(Address::getZipCode) .map(ZipCode::getCode) .map(this::calculateDeliveryForZipCode) - .orElse(null); + .orElse(Delivery.defaultDelivery()); } } diff --git a/patterns-modules/design-patterns-creational-2/README.md b/patterns-modules/design-patterns-creational-2/README.md index b7fdb556d1..3be51963c3 100644 --- a/patterns-modules/design-patterns-creational-2/README.md +++ b/patterns-modules/design-patterns-creational-2/README.md @@ -1,3 +1,4 @@ ## Relevant Articles - [The Factory Design Pattern in Java](https://www.baeldung.com/java-factory-pattern) - [Drawbacks of the Singleton Design Pattern](https://www.baeldung.com/java-patterns-singleton-cons) +- [Builder Pattern and Inheritance](https://www.baeldung.com/java-builder-pattern-inheritance) diff --git a/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withgenerics/Car.java b/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withgenerics/Car.java new file mode 100644 index 0000000000..c80f5dcd07 --- /dev/null +++ b/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withgenerics/Car.java @@ -0,0 +1,42 @@ +package com.baeldung.builder.inheritance.withgenerics; + +public class Car extends Vehicle { + + private String make; + private String model; + + public String getModel() { + return model; + } + + public Car(Builder builder) { + super(builder); + this.make = builder.make; + this.model = builder.model; + } + + public String getMake() { + return make; + } + + public static class Builder> extends Vehicle.Builder { + + protected String make; + protected String model; + + public T make(String make) { + this.make = make; + return self(); + } + + public T model(String model) { + this.model = model; + return self(); + } + + @Override + public Car build() { + return new Car(this); + } + } +} diff --git a/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withgenerics/ElectricCar.java b/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withgenerics/ElectricCar.java new file mode 100644 index 0000000000..2b22cf27c7 --- /dev/null +++ b/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withgenerics/ElectricCar.java @@ -0,0 +1,28 @@ +package com.baeldung.builder.inheritance.withgenerics; + +public class ElectricCar extends Car { + private String batteryType; + + public String getBatteryType() { + return batteryType; + } + + public ElectricCar(Builder builder) { + super(builder); + this.batteryType = builder.batteryType; + } + + public static class Builder> extends Car.Builder { + protected String batteryType; + + public T batteryType(String batteryType) { + this.batteryType = batteryType; + return self(); + } + + @Override + public ElectricCar build() { + return new ElectricCar(this); + } + } +} diff --git a/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withgenerics/Vehicle.java b/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withgenerics/Vehicle.java new file mode 100644 index 0000000000..c530e042fb --- /dev/null +++ b/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withgenerics/Vehicle.java @@ -0,0 +1,44 @@ +package com.baeldung.builder.inheritance.withgenerics; + +public class Vehicle { + + private String colour; + private String fuelType; + + public Vehicle(Builder builder) { + this.colour = builder.colour; + this.fuelType = builder.fuelType; + } + + public String getColour() { + return colour; + } + + public String getFuelType() { + return fuelType; + } + + public static class Builder { + + protected String colour; + protected String fuelType; + + T self() { + return (T) this; + } + + public T colour(String colour) { + this.colour = colour; + return self(); + } + + public T fuelType(String fuelType) { + this.fuelType = fuelType; + return self(); + } + + public Vehicle build() { + return new Vehicle(this); + } + } +} diff --git a/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withoutgenerics/Car.java b/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withoutgenerics/Car.java new file mode 100644 index 0000000000..bde5d63e07 --- /dev/null +++ b/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withoutgenerics/Car.java @@ -0,0 +1,53 @@ +package com.baeldung.builder.inheritance.withoutgenerics; + +public class Car extends Vehicle { + + private String make; + private String model; + + public String getMake() { + return make; + } + + public String getModel() { + return model; + } + + public Car(CarBuilder builder) { + super(builder); + this.make = builder.make; + this.model = builder.model; + } + + public static class CarBuilder extends VehicleBuilder { + + protected String make; + protected String model; + + @Override + public CarBuilder colour(String colour) { + this.colour = colour; + return this; + } + + @Override + public CarBuilder fuelType(String fuelType) { + this.fuelType = fuelType; + return this; + } + + public CarBuilder make(String make) { + this.make = make; + return this; + } + + public CarBuilder model(String model) { + this.model = model; + return this; + } + + public Car build() { + return new Car(this); + } + } +} diff --git a/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withoutgenerics/Vehicle.java b/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withoutgenerics/Vehicle.java new file mode 100644 index 0000000000..c0bcd8641b --- /dev/null +++ b/patterns-modules/design-patterns-creational-2/src/main/java/com/baeldung/builder/inheritance/withoutgenerics/Vehicle.java @@ -0,0 +1,41 @@ +package com.baeldung.builder.inheritance.withoutgenerics; + +public class Vehicle { + + private String fuelType; + private String colour; + + public String getFuelType() { + return fuelType; + } + + public String getColour() { + return colour; + } + + public Vehicle(VehicleBuilder builder) { + this.colour = builder.colour; + this.fuelType = builder.fuelType; + + } + + public static class VehicleBuilder { + + protected String fuelType; + protected String colour; + + public VehicleBuilder fuelType(String fuelType) { + this.fuelType = fuelType; + return this; + } + + public VehicleBuilder colour(String colour) { + this.colour = colour; + return this; + } + + public Vehicle build() { + return new Vehicle(this); + } + } +} diff --git a/patterns-modules/design-patterns-creational-2/src/main/resources/builder-pattern.puml b/patterns-modules/design-patterns-creational-2/src/main/resources/builder-pattern.puml new file mode 100644 index 0000000000..0e7b9717f8 --- /dev/null +++ b/patterns-modules/design-patterns-creational-2/src/main/resources/builder-pattern.puml @@ -0,0 +1,56 @@ +@startuml +'https://plantuml.com/class-diagram +'skinparam Handwritten true +skinparam ClassBorderColor black/#63b175 +skinparam BackgroundColor #fdf8f6 +skinparam class { + ArrowColor #63b175 +} + +hide empty methods +hide empty attributes + +class Vehicle { + +fuelType : String + +colour : String +} + +class VehicleBuilder { + +fuelType : String + +colour : String + +build() : Vehicle + +fuelType(String fuelType) : VehicleBuilder + +colour(String colour) : VehicleBuilder +} +class Car { + +make : String + +model : String +} +class CarBuilder { + +make : String + +model : String + +build() : Car + +make(String make): CarBuilder + +model(String make): CarBuilder +} + +class ElectricCar { + +batteryType : String + +} + +class ElectricCarBuilder { + +batteryType : String + +build() : ElectricCar + +batteryType(String batteryType): ElectricCarBuilder +} +CarBuilder -left-|> VehicleBuilder: extends +ElectricCarBuilder -left-|> CarBuilder: extends +VehicleBuilder -down-> Vehicle: builds +CarBuilder -down-> Car:builds +ElectricCarBuilder -down-> ElectricCar: builds + +Vehicle <|-right- Car: extends +Car <|-right- ElectricCar: extends + +@enduml \ No newline at end of file diff --git a/patterns-modules/design-patterns-creational-2/src/test/java/com/baeldung/builder/inheritance/withoutgenerics/BuilderInheritanceUnitTest.java b/patterns-modules/design-patterns-creational-2/src/test/java/com/baeldung/builder/inheritance/withoutgenerics/BuilderInheritanceUnitTest.java new file mode 100644 index 0000000000..397cc25a01 --- /dev/null +++ b/patterns-modules/design-patterns-creational-2/src/test/java/com/baeldung/builder/inheritance/withoutgenerics/BuilderInheritanceUnitTest.java @@ -0,0 +1,19 @@ +package com.baeldung.builder.inheritance.withoutgenerics; + +import static org.junit.jupiter.api.Assertions.*; +import org.junit.jupiter.api.Test; + +public class BuilderInheritanceUnitTest { + + @Test + void givenNonGenericImpl_whenBuild_thenReturnObject() { + Car car = new Car.CarBuilder().colour("red") + .fuelType("Petrol") + .make("Ford") + .model("F") + .build(); + assertEquals("red", car.getColour()); + assertEquals("Ford", car.getMake()); + } + +} diff --git a/patterns-modules/design-patterns-creational-2/src/test/java/com/baledung/builder/inheritance/withgenerics/BuilderInheritanceUnitTest.java b/patterns-modules/design-patterns-creational-2/src/test/java/com/baledung/builder/inheritance/withgenerics/BuilderInheritanceUnitTest.java new file mode 100644 index 0000000000..d1bc0b1e85 --- /dev/null +++ b/patterns-modules/design-patterns-creational-2/src/test/java/com/baledung/builder/inheritance/withgenerics/BuilderInheritanceUnitTest.java @@ -0,0 +1,36 @@ +package com.baledung.builder.inheritance.withgenerics; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import org.junit.jupiter.api.Test; + +import com.baeldung.builder.inheritance.withgenerics.Car; +import com.baeldung.builder.inheritance.withgenerics.ElectricCar; + +public class BuilderInheritanceUnitTest { + + @Test + void givenGenericImpl_whenBuild_thenReturnObject() { + Car.Builder carBuilder1 = new Car.Builder(); + Car car = carBuilder1.colour("red") + .fuelType("Petrol") + .make("Ford") + .model("F") + .build(); + + ElectricCar.Builder ElectricCarBuilder = new ElectricCar.Builder(); + ElectricCar eCar = ElectricCarBuilder.make("Mercedes") + .colour("White") + .model("G") + .fuelType("Electric") + .batteryType("Lithium") + .build(); + + assertEquals("red", car.getColour()); + assertEquals("Ford", car.getMake()); + + assertEquals("Electric", eCar.getFuelType()); + assertEquals("Lithium", eCar.getBatteryType()); + } + +} diff --git a/patterns-modules/monkey-patching/README.md b/patterns-modules/monkey-patching/README.md new file mode 100644 index 0000000000..2d8a74fd9e --- /dev/null +++ b/patterns-modules/monkey-patching/README.md @@ -0,0 +1,2 @@ +### Relevant Articles: +- [Monkey Patching in Java](https://www.baeldung.com/java-monkey-patching) diff --git a/patterns-modules/monkey-patching/pom.xml b/patterns-modules/monkey-patching/pom.xml new file mode 100644 index 0000000000..e7fae87646 --- /dev/null +++ b/patterns-modules/monkey-patching/pom.xml @@ -0,0 +1,44 @@ + + + 4.0.0 + com.baeldung + monkey-patching + 1.0.0-SNAPSHOT + monkey-patching + jar + + + com.baeldung + patterns-modules + 1.0.0-SNAPSHOT + + + + + org.springframework.boot + spring-boot-starter-web + 2.7.0 + + + org.springframework.boot + spring-boot-starter-test + 2.7.0 + + + org.springframework.boot + spring-boot-starter-aop + 2.7.0 + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + diff --git a/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/Application.java b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/Application.java new file mode 100644 index 0000000000..6c586b1c84 --- /dev/null +++ b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/Application.java @@ -0,0 +1,12 @@ +package com.baeldung.monkey.patching; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + + public static void main(String[] args) { + SpringApplication.run(Application.class, args); + } +} \ No newline at end of file diff --git a/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/aop/BeanConfiguration.java b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/aop/BeanConfiguration.java new file mode 100644 index 0000000000..dff55dc008 --- /dev/null +++ b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/aop/BeanConfiguration.java @@ -0,0 +1,15 @@ +package com.baeldung.monkey.patching.aop; + +import com.baeldung.monkey.patching.converter.MoneyConverter; +import com.baeldung.monkey.patching.converter.MoneyConverterImpl; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +@Configuration +public class BeanConfiguration { + + @Bean + public MoneyConverter moneyConverter() { + return new MoneyConverterImpl(); + } +} diff --git a/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/aop/LoggingAspect.java b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/aop/LoggingAspect.java new file mode 100644 index 0000000000..bbceb581c6 --- /dev/null +++ b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/aop/LoggingAspect.java @@ -0,0 +1,22 @@ +package com.baeldung.monkey.patching.aop; + +import org.aspectj.lang.JoinPoint; +import org.aspectj.lang.annotation.After; +import org.aspectj.lang.annotation.Aspect; +import org.aspectj.lang.annotation.Before; +import org.springframework.stereotype.Component; + +@Aspect +@Component +public class LoggingAspect { + + @Before("execution(* com.baeldung.monkey.patching.converter.MoneyConverter.convertEURtoUSD(..))") + public void beforeConvertEURtoUSD(JoinPoint joinPoint) { + System.out.println("Before method: " + joinPoint.getSignature().getName()); + } + + @After("execution(* com.baeldung.monkey.patching.converter.MoneyConverter.convertEURtoUSD(..))") + public void afterConvertEURtoUSD(JoinPoint joinPoint) { + System.out.println("After method: " + joinPoint.getSignature().getName()); + } +} \ No newline at end of file diff --git a/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/converter/MoneyConverter.java b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/converter/MoneyConverter.java new file mode 100644 index 0000000000..97e32aaa61 --- /dev/null +++ b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/converter/MoneyConverter.java @@ -0,0 +1,5 @@ +package com.baeldung.monkey.patching.converter; + +public interface MoneyConverter { + double convertEURtoUSD(double amount); +} diff --git a/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/converter/MoneyConverterImpl.java b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/converter/MoneyConverterImpl.java new file mode 100644 index 0000000000..86071341c9 --- /dev/null +++ b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/converter/MoneyConverterImpl.java @@ -0,0 +1,15 @@ +package com.baeldung.monkey.patching.converter; + +public class MoneyConverterImpl implements MoneyConverter { + + private final double conversionRate; + + public MoneyConverterImpl() { + this.conversionRate = 1.10; + } + + @Override + public double convertEURtoUSD(double amount) { + return amount * conversionRate; + } +} diff --git a/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/decorator/MoneyConverterDecorator.java b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/decorator/MoneyConverterDecorator.java new file mode 100644 index 0000000000..81c86f136e --- /dev/null +++ b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/decorator/MoneyConverterDecorator.java @@ -0,0 +1,21 @@ +package com.baeldung.monkey.patching.decorator; + +import com.baeldung.monkey.patching.converter.MoneyConverter; + +public class MoneyConverterDecorator implements MoneyConverter { + + private final MoneyConverter moneyConverter; + + public MoneyConverterDecorator(MoneyConverter moneyConverter) { + this.moneyConverter = moneyConverter; + } + + @Override + public double convertEURtoUSD(double amount) { + + System.out.println("Before method: convertEURtoUSD"); + double result = moneyConverter.convertEURtoUSD(amount); + System.out.println("After method: convertEURtoUSD"); + return result; + } +} diff --git a/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/proxy/LoggingInvocationHandler.java b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/proxy/LoggingInvocationHandler.java new file mode 100644 index 0000000000..266738e514 --- /dev/null +++ b/patterns-modules/monkey-patching/src/main/java/com/baeldung/monkey/patching/proxy/LoggingInvocationHandler.java @@ -0,0 +1,21 @@ +package com.baeldung.monkey.patching.proxy; + +import java.lang.reflect.InvocationHandler; +import java.lang.reflect.Method; + +public class LoggingInvocationHandler implements InvocationHandler { + + private final Object target; + + public LoggingInvocationHandler(Object target) { + this.target = target; + } + + @Override + public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { + System.out.println("Before method: " + method.getName()); + Object result = method.invoke(target, args); + System.out.println("After method: " + method.getName()); + return result; + } +} diff --git a/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/aop/LoggingAspectIntegrationTest.java b/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/aop/LoggingAspectIntegrationTest.java new file mode 100644 index 0000000000..da185f654a --- /dev/null +++ b/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/aop/LoggingAspectIntegrationTest.java @@ -0,0 +1,35 @@ +package com.baeldung.monkey.patching.aop; + +import com.baeldung.monkey.patching.converter.MoneyConverter; +import org.junit.Test; +import org.junit.jupiter.api.Assertions; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringRunner; + +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; + +import static org.junit.Assert.assertTrue; + +@SpringBootTest +@RunWith(SpringRunner.class) +public class LoggingAspectIntegrationTest { + + @Autowired + private MoneyConverter moneyConverter; + + @Test + public void whenMethodCalled_thenSurroundedByLogs() { + ByteArrayOutputStream logOutputStream = new ByteArrayOutputStream(); + System.setOut(new PrintStream(logOutputStream)); + + double result = moneyConverter.convertEURtoUSD(10); + + Assertions.assertEquals(11, result); + String logOutput = logOutputStream.toString(); + assertTrue(logOutput.contains("Before method: convertEURtoUSD")); + assertTrue(logOutput.contains("After method: convertEURtoUSD")); + } +} diff --git a/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/converter/MoneyConverterUnitTest.java b/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/converter/MoneyConverterUnitTest.java new file mode 100644 index 0000000000..bf6cfe58e8 --- /dev/null +++ b/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/converter/MoneyConverterUnitTest.java @@ -0,0 +1,17 @@ +package com.baeldung.monkey.patching.converter; + +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +class MoneyConverterUnitTest { + + @Test + void whenMoneyConverter_thenResultIsCorrect() { + MoneyConverterImpl moneyConverter = new MoneyConverterImpl(); + + double result = moneyConverter.convertEURtoUSD(10); + + assertEquals(11, result); + } +} \ No newline at end of file diff --git a/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/decorator/MoneyConverterDecoratorUnitTest.java b/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/decorator/MoneyConverterDecoratorUnitTest.java new file mode 100644 index 0000000000..24013f0ce7 --- /dev/null +++ b/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/decorator/MoneyConverterDecoratorUnitTest.java @@ -0,0 +1,28 @@ +package com.baeldung.monkey.patching.decorator; + +import com.baeldung.monkey.patching.converter.MoneyConverter; +import com.baeldung.monkey.patching.converter.MoneyConverterImpl; +import org.junit.Test; +import org.junit.jupiter.api.Assertions; + +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; + +import static org.junit.Assert.assertTrue; + +public class MoneyConverterDecoratorUnitTest { + + @Test + public void whenMethodCalled_thenSurroundedByLogs() { + ByteArrayOutputStream logOutputStream = new ByteArrayOutputStream(); + System.setOut(new PrintStream(logOutputStream)); + MoneyConverter moneyConverter = new MoneyConverterDecorator(new MoneyConverterImpl()); + + double result = moneyConverter.convertEURtoUSD(10); + + Assertions.assertEquals(11, result); + String logOutput = logOutputStream.toString(); + assertTrue(logOutput.contains("Before method: convertEURtoUSD")); + assertTrue(logOutput.contains("After method: convertEURtoUSD")); + } +} diff --git a/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/proxy/LoggingInvocationHandlerUnitTest.java b/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/proxy/LoggingInvocationHandlerUnitTest.java new file mode 100644 index 0000000000..7b6f49b9c5 --- /dev/null +++ b/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/proxy/LoggingInvocationHandlerUnitTest.java @@ -0,0 +1,34 @@ +package com.baeldung.monkey.patching.proxy; + +import com.baeldung.monkey.patching.converter.MoneyConverter; +import com.baeldung.monkey.patching.converter.MoneyConverterImpl; +import org.junit.Test; +import org.junit.jupiter.api.Assertions; + +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; +import java.lang.reflect.Proxy; + +import static org.junit.Assert.assertTrue; + +public class LoggingInvocationHandlerUnitTest { + + @Test + public void whenMethodCalled_thenSurroundedByLogs() { + ByteArrayOutputStream logOutputStream = new ByteArrayOutputStream(); + System.setOut(new PrintStream(logOutputStream)); + MoneyConverter moneyConverter = new MoneyConverterImpl(); + MoneyConverter proxy = (MoneyConverter) Proxy.newProxyInstance( + MoneyConverter.class.getClassLoader(), + new Class[]{MoneyConverter.class}, + new LoggingInvocationHandler(moneyConverter) + ); + + double result = proxy.convertEURtoUSD(10); + + Assertions.assertEquals(11, result); + String logOutput = logOutputStream.toString(); + assertTrue(logOutput.contains("Before method: convertEURtoUSD")); + assertTrue(logOutput.contains("After method: convertEURtoUSD")); + } +} diff --git a/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/reflection/ReflectionUnitTest.java b/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/reflection/ReflectionUnitTest.java new file mode 100644 index 0000000000..4729f05802 --- /dev/null +++ b/patterns-modules/monkey-patching/src/test/java/com/baeldung/monkey/patching/reflection/ReflectionUnitTest.java @@ -0,0 +1,24 @@ +package com.baeldung.monkey.patching.reflection; + +import com.baeldung.monkey.patching.converter.MoneyConverter; +import com.baeldung.monkey.patching.converter.MoneyConverterImpl; +import org.junit.Test; + +import java.lang.reflect.Field; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class ReflectionUnitTest { + +@Test +public void givenPrivateField_whenUsingReflection_thenBehaviorCanBeChanged() throws IllegalAccessException, NoSuchFieldException { + MoneyConverter moneyConvertor = new MoneyConverterImpl(); + + Field conversionRate = MoneyConverterImpl.class.getDeclaredField("conversionRate"); + conversionRate.setAccessible(true); + conversionRate.set(moneyConvertor, 1.2); + double result = moneyConvertor.convertEURtoUSD(10); + + assertEquals(12, result); +} +} diff --git a/patterns-modules/pom.xml b/patterns-modules/pom.xml index 7dd26ac31c..a32779a9d8 100644 --- a/patterns-modules/pom.xml +++ b/patterns-modules/pom.xml @@ -35,6 +35,7 @@ idd intercepting-filter solid + monkey-patching diff --git a/persistence-modules/hibernate-exceptions/README.md b/persistence-modules/hibernate-exceptions/README.md index 0225d3a753..bc635bc31e 100644 --- a/persistence-modules/hibernate-exceptions/README.md +++ b/persistence-modules/hibernate-exceptions/README.md @@ -7,3 +7,4 @@ - [EntityNotFoundException in Hibernate](https://www.baeldung.com/hibernate-entitynotfoundexception) - [Hibernate’s “Not-Null Property References a Null or Transient Value” Error](https://www.baeldung.com/hibernate-not-null-error) - [Hibernate’s “Detached Entity Passed to Persist” Error](https://www.baeldung.com/hibernate-detached-entity-passed-to-persist) +- [Fixing Hibernate QueryException: Named Parameter Not Bound](https://www.baeldung.com/hibernate-queryexception-named-parameter-not-bound-fix) diff --git a/persistence-modules/java-calcite/README.md b/persistence-modules/java-calcite/README.md new file mode 100644 index 0000000000..4f0c24a09c --- /dev/null +++ b/persistence-modules/java-calcite/README.md @@ -0,0 +1,2 @@ +### Relevant Articles: +- [Introduction to Apache Calcite](https://www.baeldung.com/apache-calcite) diff --git a/persistence-modules/pom.xml b/persistence-modules/pom.xml index 5ca2ffbf1a..de1e7ebdd2 100644 --- a/persistence-modules/pom.xml +++ b/persistence-modules/pom.xml @@ -62,14 +62,14 @@ solr spring-boot-persistence-2 spring-boot-persistence-3 - + spring-boot-mysql spring-boot-persistence spring-boot-persistence-h2 spring-boot-persistence-mongodb spring-boot-persistence-mongodb-2 spring-boot-persistence-mongodb-3 spring-data-arangodb - + spring-data-cassandra-test spring-data-cosmosdb spring-data-couchbase-2 @@ -97,14 +97,12 @@ spring-data-mongodb-2 spring-data-mongodb-reactive spring-data-redis - - spring-data-rest-2 spring-data-rest-querydsl spring-data-solr spring-data-shardingsphere spring-hibernate-3 - + spring-hibernate-5 spring-hibernate-6 spring-jpa spring-jpa-2 diff --git a/persistence-modules/spring-boot-persistence-4/README.md b/persistence-modules/spring-boot-persistence-4/README.md index bb2da31d9c..7011f492ca 100644 --- a/persistence-modules/spring-boot-persistence-4/README.md +++ b/persistence-modules/spring-boot-persistence-4/README.md @@ -1,2 +1,4 @@ ## Relevant Articles - [Scroll API in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-scroll-api) +- [List vs. Set in @OneToMany JPA](https://www.baeldung.com/spring-jpa-onetomany-list-vs-set) +- [N+1 Problem in Hibernate and Spring Data JPA](https://www.baeldung.com/spring-hibernate-n1-problem) diff --git a/persistence-modules/spring-boot-persistence-4/pom.xml b/persistence-modules/spring-boot-persistence-4/pom.xml index 7a6c2d2b17..1452f5ad66 100644 --- a/persistence-modules/spring-boot-persistence-4/pom.xml +++ b/persistence-modules/spring-boot-persistence-4/pom.xml @@ -42,6 +42,21 @@ spring-boot-starter-test test + + io.hypersistence + hypersistence-utils-hibernate-62 + ${hypersistence-utils.version} + + + com.vladmihalcea + db-util + ${db.util.version} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version} + @@ -58,6 +73,9 @@ 5.9.3 17 17 + 1.0.7 + 3.7.0 + 2.16.0 \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/ParametrizationAware.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/ParametrizationAware.java new file mode 100644 index 0000000000..08b12f38ab --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/ParametrizationAware.java @@ -0,0 +1,14 @@ +package com.baeldung.listvsset; + +import java.lang.reflect.ParameterizedType; +import java.util.Arrays; +import java.util.List; + +public abstract class ParametrizationAware { + + public List> getParametrizationClass() { + ParameterizedType type = (ParameterizedType) this.getClass().getGenericSuperclass(); + return Arrays.stream(type.getActualTypeArguments()) + .map(s -> ((Class) s)).toList(); + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/Service.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/Service.java new file mode 100644 index 0000000000..1b11d6facb --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/Service.java @@ -0,0 +1,63 @@ +package com.baeldung.listvsset; + +import java.util.List; +import java.util.Optional; +import java.util.function.Predicate; +import java.util.function.ToIntFunction; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.transaction.annotation.Transactional; + +@Transactional +public class Service extends ParametrizationAware { + + private final JpaRepository repository; + + public Service(JpaRepository repository) { + this.repository = repository; + } + + public JpaRepository getRepository() { + return repository; + } + + public int countNumberOfRequestsWithFunction(ToIntFunction> function) { + return function.applyAsInt(repository.findAll()); + } + + + public Optional getUserById(Long id) { + return repository.findById(id); + } + + public void deleteAll() { + repository.deleteAll(); + } + + public List saveAll(Iterable entities) { + return repository.saveAll(entities); + } + + public List findAll() { + return repository.findAll(); + } + + public Optional getUserByIdWithPredicate(long id, Predicate predicate) { + Optional user = repository.findById(id); + user.ifPresent(predicate::test); + return user; + } + + public int getUserByIdWithFunction(Long id, ToIntFunction function) { + + Optional optionalUser = repository.findById(id); + if (optionalUser.isPresent()) { + return function.applyAsInt(optionalUser.get()); + } else { + return 0; + } + } + + public void save(S entity) { + repository.save(entity); + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Application.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Application.java new file mode 100644 index 0000000000..8e48e25d58 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Application.java @@ -0,0 +1,8 @@ +package com.baeldung.listvsset.eager.list.fulldomain; + +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Comment.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Comment.java new file mode 100644 index 0000000000..6a939b63bb --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Comment.java @@ -0,0 +1,83 @@ +package com.baeldung.listvsset.eager.list.fulldomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.ManyToOne; +import java.util.Objects; + +@Entity +public class Comment { + + @Id + private Long id; + + private String text; + + @ManyToOne + private User author; + + @JsonBackReference + @ManyToOne + private Post post; + + public Comment() { + } + + public Long getId() { + return this.id; + } + + public String getText() { + return this.text; + } + + public User getAuthor() { + return this.author; + } + + public Post getPost() { + return this.post; + } + + public void setId(Long id) { + this.id = id; + } + + public void setText(String text) { + this.text = text; + } + + public void setAuthor(User author) { + this.author = author; + } + + public void setPost(Post post) { + this.post = post; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Comment comment = (Comment) o; + + return Objects.equals(id, comment.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Comment(id=" + this.getId() + ", text=" + this.getText() + ", author=" + this.getAuthor() + ", post=" + this.getPost() + + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Group.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Group.java new file mode 100644 index 0000000000..57a8b40378 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Group.java @@ -0,0 +1,72 @@ +package com.baeldung.listvsset.eager.list.fulldomain; + +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.ManyToMany; +import jakarta.persistence.Table; +import java.util.List; +import java.util.Objects; + +@Entity(name = "interest_group") +@Table(name = "interest_group") +public class Group { + + @Id + private Long id; + + private String name; + + @ManyToMany(fetch = FetchType.EAGER) + private List members; + + public Group() { + } + + public Long getId() { + return this.id; + } + + public String getName() { + return this.name; + } + + public List getMembers() { + return this.members; + } + + public void setId(Long id) { + this.id = id; + } + + public void setName(String name) { + this.name = name; + } + + public void setMembers(List members) { + this.members = members; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Group group = (Group) o; + + return Objects.equals(id, group.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Group(id=" + this.getId() + ", name=" + this.getName() + ", members=" + this.getMembers() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Post.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Post.java new file mode 100644 index 0000000000..bfcbfeb0fd --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Post.java @@ -0,0 +1,90 @@ +package com.baeldung.listvsset.eager.list.fulldomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import com.fasterxml.jackson.annotation.JsonManagedReference; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.Lob; +import jakarta.persistence.ManyToOne; +import jakarta.persistence.OneToMany; +import java.util.List; +import java.util.Objects; + +@Entity +public class Post { + + @Id + private Long id; + + @Lob + private String content; + + @JsonManagedReference + @OneToMany(cascade = CascadeType.ALL, mappedBy = "post", fetch = FetchType.EAGER) + private List comments; + + @JsonBackReference + @ManyToOne + private User author; + + public Post() { + } + + public Long getId() { + return this.id; + } + + public String getContent() { + return this.content; + } + + public List getComments() { + return this.comments; + } + + public User getAuthor() { + return this.author; + } + + public void setId(Long id) { + this.id = id; + } + + public void setContent(String content) { + this.content = content; + } + + public void setComments(List comments) { + this.comments = comments; + } + + public void setAuthor(User author) { + this.author = author; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Post post = (Post) o; + + return Objects.equals(id, post.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Post(id=" + this.getId() + ", content=" + this.getContent() + ", comments=" + this.getComments() + ", author=" + + this.getAuthor() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/PostRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/PostRepository.java new file mode 100644 index 0000000000..ae84e4bc29 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/PostRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.list.fulldomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface PostRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Profile.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Profile.java new file mode 100644 index 0000000000..06a453b42a --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/Profile.java @@ -0,0 +1,94 @@ +package com.baeldung.listvsset.eager.list.fulldomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.JoinColumn; +import jakarta.persistence.Lob; +import jakarta.persistence.OneToOne; +import java.util.Objects; + +@Entity +public class Profile { + + @Id + private Long id; + + @Lob + private String biography; + private String website; + private String profilePictureUrl; + + @JsonBackReference + @OneToOne(mappedBy = "profile") + @JoinColumn(unique = true) + private User user; + + public Profile() { + } + + public Long getId() { + return this.id; + } + + public String getBiography() { + return this.biography; + } + + public String getWebsite() { + return this.website; + } + + public String getProfilePictureUrl() { + return this.profilePictureUrl; + } + + public User getUser() { + return this.user; + } + + public void setId(Long id) { + this.id = id; + } + + public void setBiography(String biography) { + this.biography = biography; + } + + public void setWebsite(String website) { + this.website = website; + } + + public void setProfilePictureUrl(String profilePictureUrl) { + this.profilePictureUrl = profilePictureUrl; + } + + public void setUser(User user) { + this.user = user; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Profile profile = (Profile) o; + + return Objects.equals(id, profile.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Profile(id=" + this.getId() + ", biography=" + this.getBiography() + ", website=" + this.getWebsite() + + ", profilePictureUrl=" + this.getProfilePictureUrl() + ", user=" + this.getUser() + ")"; + } +} + diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/User.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/User.java new file mode 100644 index 0000000000..4f0c26d0a1 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/User.java @@ -0,0 +1,110 @@ +package com.baeldung.listvsset.eager.list.fulldomain; + +import com.fasterxml.jackson.annotation.JsonManagedReference; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.ManyToMany; +import jakarta.persistence.OneToMany; +import jakarta.persistence.OneToOne; +import jakarta.persistence.Table; +import java.util.List; +import java.util.Objects; + +@Entity(name = "simple_user") +@Table(name = "simple_user") +public class User { + + @Id + private Long id; + private String username; + private String email; + + @JsonManagedReference + @OneToOne(cascade = CascadeType.ALL) + private Profile profile; + + @JsonManagedReference + @OneToMany(cascade = CascadeType.ALL, mappedBy = "author", fetch = FetchType.EAGER) + protected List posts; + + + @ManyToMany(mappedBy = "members", fetch = FetchType.EAGER) + private List groups; + + public User() { + } + + public Long getId() { + return this.id; + } + + public String getUsername() { + return this.username; + } + + public String getEmail() { + return this.email; + } + + public Profile getProfile() { + return this.profile; + } + + public List getPosts() { + return this.posts; + } + + public List getGroups() { + return this.groups; + } + + public void setId(Long id) { + this.id = id; + } + + public void setUsername(String username) { + this.username = username; + } + + public void setEmail(String email) { + this.email = email; + } + + public void setProfile(Profile profile) { + this.profile = profile; + } + + public void setPosts(List posts) { + this.posts = posts; + } + + public void setGroups(List groups) { + this.groups = groups; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + User user = (User) o; + + return Objects.equals(id, user.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "User(id=" + this.getId() + ", username=" + this.getUsername() + ", email=" + this.getEmail() + ", profile=" + + this.getProfile() + ", posts=" + this.getPosts() + ", groups=" + this.getGroups() + ")"; + } +} \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/UserRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/UserRepository.java new file mode 100644 index 0000000000..174c495bfe --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/UserRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.list.fulldomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface UserRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/UserService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/UserService.java new file mode 100644 index 0000000000..acea27d2fa --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/fulldomain/UserService.java @@ -0,0 +1,20 @@ +package com.baeldung.listvsset.eager.list.fulldomain; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Transactional +@Service +public class UserService extends com.baeldung.listvsset.Service { + + public UserService(JpaRepository repository) { + super(repository); + } + + @Override + public UserRepository getRepository() { + return ((UserRepository) super.getRepository()); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/Application.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/Application.java new file mode 100644 index 0000000000..81d82f5d43 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/Application.java @@ -0,0 +1,8 @@ +package com.baeldung.listvsset.eager.list.moderatedomain; + +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/Group.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/Group.java new file mode 100644 index 0000000000..10ed2f37e8 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/Group.java @@ -0,0 +1,72 @@ +package com.baeldung.listvsset.eager.list.moderatedomain; + +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.ManyToMany; +import jakarta.persistence.Table; +import java.util.List; +import java.util.Objects; + +@Entity(name = "interest_group") +@Table(name = "interest_group") +public class Group { + + @Id + private Long id; + + private String name; + + @ManyToMany(fetch = FetchType.EAGER) + private List members; + + public Group() { + } + + public Long getId() { + return this.id; + } + + public String getName() { + return this.name; + } + + public List getMembers() { + return this.members; + } + + public void setId(Long id) { + this.id = id; + } + + public void setName(String name) { + this.name = name; + } + + public void setMembers(List members) { + this.members = members; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Group group = (Group) o; + + return Objects.equals(id, group.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Group(id=" + this.getId() + ", name=" + this.getName() + ", members=" + this.getMembers() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/GroupRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/GroupRepository.java new file mode 100644 index 0000000000..b14b210fc7 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/GroupRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.list.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface GroupRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/GroupService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/GroupService.java new file mode 100644 index 0000000000..3f84410f94 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/GroupService.java @@ -0,0 +1,29 @@ +package com.baeldung.listvsset.eager.list.moderatedomain; + +import java.util.List; +import java.util.Optional; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +@Service +public class GroupService { + + private final GroupRepository groupRepository; + + @Autowired + public GroupService(GroupRepository groupRepository) { + this.groupRepository = groupRepository; + } + + public Optional findById(Long aLong) { + return groupRepository.findById(aLong); + } + + public List findAll() { + return groupRepository.findAll(); + } + + public S save(S entity) { + return groupRepository.save(entity); + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/Post.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/Post.java new file mode 100644 index 0000000000..479d0cfdd3 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/Post.java @@ -0,0 +1,73 @@ +package com.baeldung.listvsset.eager.list.moderatedomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.Lob; +import jakarta.persistence.ManyToOne; +import java.util.Objects; + +@Entity +public class Post { + + @Id + private Long id; + + @Lob + private String content; + + @JsonBackReference + @ManyToOne + private User author; + + public Post() { + } + + public Long getId() { + return this.id; + } + + public String getContent() { + return this.content; + } + + public User getAuthor() { + return this.author; + } + + public void setId(Long id) { + this.id = id; + } + + public void setContent(String content) { + this.content = content; + } + + public void setAuthor(User author) { + this.author = author; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Post post = (Post) o; + + return Objects.equals(id, post.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Post(id=" + this.getId() + ", content=" + this.getContent() + ", author=" + this.getAuthor() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/PostRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/PostRepository.java new file mode 100644 index 0000000000..1c11f13690 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/PostRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.list.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface PostRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/User.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/User.java new file mode 100644 index 0000000000..e3d7925d56 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/User.java @@ -0,0 +1,84 @@ +package com.baeldung.listvsset.eager.list.moderatedomain; + +import com.fasterxml.jackson.annotation.JsonManagedReference; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.OneToMany; +import jakarta.persistence.Table; +import java.util.List; +import java.util.Objects; + +@Entity(name = "simple_user") +@Table(name = "simple_user") +public class User { + + @Id + private Long id; + private String username; + private String email; + + @JsonManagedReference + @OneToMany(cascade = CascadeType.ALL, mappedBy = "author", fetch = FetchType.EAGER) + protected List posts; + + public User() { + } + + public Long getId() { + return this.id; + } + + public String getUsername() { + return this.username; + } + + public String getEmail() { + return this.email; + } + + public List getPosts() { + return this.posts; + } + + public void setId(Long id) { + this.id = id; + } + + public void setUsername(String username) { + this.username = username; + } + + public void setEmail(String email) { + this.email = email; + } + + public void setPosts(List posts) { + this.posts = posts; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + User user = (User) o; + + return Objects.equals(id, user.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "User(id=" + this.getId() + ", username=" + this.getUsername() + ", email=" + this.getEmail() + ", posts=" + this.getPosts() + + ")"; + } +} \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/UserRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/UserRepository.java new file mode 100644 index 0000000000..e3c7b471da --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/UserRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.list.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface UserRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/UserService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/UserService.java new file mode 100644 index 0000000000..439b9b6445 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/moderatedomain/UserService.java @@ -0,0 +1,20 @@ +package com.baeldung.listvsset.eager.list.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Transactional +@Service +public class UserService extends com.baeldung.listvsset.Service { + + public UserService(JpaRepository repository) { + super(repository); + } + + @Override + public UserRepository getRepository() { + return ((UserRepository) super.getRepository()); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/Application.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/Application.java new file mode 100644 index 0000000000..dfa61d66b8 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/Application.java @@ -0,0 +1,8 @@ +package com.baeldung.listvsset.eager.list.simpledomain; + +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/Post.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/Post.java new file mode 100644 index 0000000000..159e95bd70 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/Post.java @@ -0,0 +1,72 @@ +package com.baeldung.listvsset.eager.list.simpledomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.Lob; +import jakarta.persistence.ManyToOne; +import java.util.Objects; + +@Entity +public class Post { + + @Id + private Long id; + + @Lob + private String content; + + @JsonBackReference + @ManyToOne + private User author; + + public Post() { + } + + public Long getId() { + return this.id; + } + + public String getContent() { + return this.content; + } + + public User getAuthor() { + return this.author; + } + + public void setId(Long id) { + this.id = id; + } + + public void setContent(String content) { + this.content = content; + } + + public void setAuthor(User author) { + this.author = author; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Post post = (Post) o; + + return Objects.equals(id, post.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Post(id=" + this.getId() + ", content=" + this.getContent() + ", author=" + this.getAuthor() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/PostRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/PostRepository.java new file mode 100644 index 0000000000..95fc9ccf16 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/PostRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.list.simpledomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface PostRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/User.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/User.java new file mode 100644 index 0000000000..ba861b8bc1 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/User.java @@ -0,0 +1,84 @@ +package com.baeldung.listvsset.eager.list.simpledomain; + +import com.fasterxml.jackson.annotation.JsonManagedReference; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.OneToMany; +import jakarta.persistence.Table; +import java.util.List; +import java.util.Objects; + +@Entity(name = "simple_user") +@Table(name = "simple_user") +public class User { + + @Id + private Long id; + private String username; + private String email; + + @JsonManagedReference + @OneToMany(cascade = CascadeType.ALL, mappedBy = "author", fetch = FetchType.EAGER) + protected List posts; + + public User() { + } + + public Long getId() { + return this.id; + } + + public String getUsername() { + return this.username; + } + + public String getEmail() { + return this.email; + } + + public List getPosts() { + return this.posts; + } + + public void setId(Long id) { + this.id = id; + } + + public void setUsername(String username) { + this.username = username; + } + + public void setEmail(String email) { + this.email = email; + } + + public void setPosts(List posts) { + this.posts = posts; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + User user = (User) o; + + return Objects.equals(id, user.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "User(id=" + this.getId() + ", username=" + this.getUsername() + ", email=" + this.getEmail() + ", posts=" + this.getPosts() + + ")"; + } +} \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/UserRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/UserRepository.java new file mode 100644 index 0000000000..bba1de8723 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/UserRepository.java @@ -0,0 +1,9 @@ +package com.baeldung.listvsset.eager.list.simpledomain; + +import org.springframework.context.annotation.Lazy; +import org.springframework.data.jpa.repository.JpaRepository; + +@Lazy(value = false) +public interface UserRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/UserService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/UserService.java new file mode 100644 index 0000000000..7b7f42f2b3 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/list/simpledomain/UserService.java @@ -0,0 +1,20 @@ +package com.baeldung.listvsset.eager.list.simpledomain; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Transactional +@Service +public class UserService extends com.baeldung.listvsset.Service { + + public UserService(JpaRepository repository) { + super(repository); + } + + @Override + public UserRepository getRepository() { + return ((UserRepository) super.getRepository()); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Application.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Application.java new file mode 100644 index 0000000000..6eb23eac7a --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Application.java @@ -0,0 +1,8 @@ +package com.baeldung.listvsset.eager.set.fulldomain; + +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Comment.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Comment.java new file mode 100644 index 0000000000..be80c53308 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Comment.java @@ -0,0 +1,82 @@ +package com.baeldung.listvsset.eager.set.fulldomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.ManyToOne; +import java.util.Objects; + +@Entity +public class Comment { + + @Id + private Long id; + + private String text; + + @ManyToOne + private User author; + + @JsonBackReference + @ManyToOne + private Post post; + + public Comment() { + } + + public Long getId() { + return this.id; + } + + public String getText() { + return this.text; + } + + public User getAuthor() { + return this.author; + } + + public Post getPost() { + return this.post; + } + + public void setId(Long id) { + this.id = id; + } + + public void setText(String text) { + this.text = text; + } + + public void setAuthor(User author) { + this.author = author; + } + + public void setPost(Post post) { + this.post = post; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Comment comment = (Comment) o; + + return Objects.equals(id, comment.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Comment(id=" + this.getId() + ", text=" + this.getText() + ", author=" + this.getAuthor() + ", post=" + this.getPost() + + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Group.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Group.java new file mode 100644 index 0000000000..dc8cc7dcb1 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Group.java @@ -0,0 +1,72 @@ +package com.baeldung.listvsset.eager.set.fulldomain; + +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.ManyToMany; +import jakarta.persistence.Table; +import java.util.Objects; +import java.util.Set; + +@Entity(name = "interest_group") +@Table(name = "interest_group") +public class Group { + + @Id + private Long id; + + private String name; + + @ManyToMany(fetch = FetchType.EAGER) + private Set members; + + public Group() { + } + + public Long getId() { + return this.id; + } + + public String getName() { + return this.name; + } + + public Set getMembers() { + return this.members; + } + + public void setId(Long id) { + this.id = id; + } + + public void setName(String name) { + this.name = name; + } + + public void setMembers(Set members) { + this.members = members; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Group group = (Group) o; + + return Objects.equals(id, group.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Group(id=" + this.getId() + ", name=" + this.getName() + ", members=" + this.getMembers() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Post.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Post.java new file mode 100644 index 0000000000..1486c6fe03 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Post.java @@ -0,0 +1,90 @@ +package com.baeldung.listvsset.eager.set.fulldomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import com.fasterxml.jackson.annotation.JsonManagedReference; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.Lob; +import jakarta.persistence.ManyToOne; +import jakarta.persistence.OneToMany; +import java.util.Objects; +import java.util.Set; + +@Entity +public class Post { + + @Id + private Long id; + + @Lob + private String content; + + @JsonManagedReference + @OneToMany(cascade = CascadeType.ALL, mappedBy = "post", fetch = FetchType.EAGER) + private Set comments; + + @JsonBackReference + @ManyToOne + private User author; + + public Post() { + } + + public Long getId() { + return this.id; + } + + public String getContent() { + return this.content; + } + + public Set getComments() { + return this.comments; + } + + public User getAuthor() { + return this.author; + } + + public void setId(Long id) { + this.id = id; + } + + public void setContent(String content) { + this.content = content; + } + + public void setComments(Set comments) { + this.comments = comments; + } + + public void setAuthor(User author) { + this.author = author; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Post post = (Post) o; + + return Objects.equals(id, post.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Post(id=" + this.getId() + ", content=" + this.getContent() + ", comments=" + this.getComments() + ", author=" + + this.getAuthor() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/PostRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/PostRepository.java new file mode 100644 index 0000000000..adc22019c9 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/PostRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.set.fulldomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface PostRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Profile.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Profile.java new file mode 100644 index 0000000000..f13fc276ca --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/Profile.java @@ -0,0 +1,94 @@ +package com.baeldung.listvsset.eager.set.fulldomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.JoinColumn; +import jakarta.persistence.Lob; +import jakarta.persistence.OneToOne; +import java.util.Objects; + +@Entity +public class Profile { + + @Id + private Long id; + + @Lob + private String biography; + private String website; + private String profilePictureUrl; + + @JsonBackReference + @OneToOne(mappedBy = "profile") + @JoinColumn(unique = true) + private User user; + + public Profile() { + } + + public Long getId() { + return this.id; + } + + public String getBiography() { + return this.biography; + } + + public String getWebsite() { + return this.website; + } + + public String getProfilePictureUrl() { + return this.profilePictureUrl; + } + + public User getUser() { + return this.user; + } + + public void setId(Long id) { + this.id = id; + } + + public void setBiography(String biography) { + this.biography = biography; + } + + public void setWebsite(String website) { + this.website = website; + } + + public void setProfilePictureUrl(String profilePictureUrl) { + this.profilePictureUrl = profilePictureUrl; + } + + public void setUser(User user) { + this.user = user; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Profile profile = (Profile) o; + + return Objects.equals(id, profile.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Profile(id=" + this.getId() + ", biography=" + this.getBiography() + ", website=" + this.getWebsite() + + ", profilePictureUrl=" + this.getProfilePictureUrl() + ", user=" + this.getUser() + ")"; + } +} + diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/User.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/User.java new file mode 100644 index 0000000000..0fe9603e9b --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/User.java @@ -0,0 +1,110 @@ +package com.baeldung.listvsset.eager.set.fulldomain; + +import com.fasterxml.jackson.annotation.JsonManagedReference; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.ManyToMany; +import jakarta.persistence.OneToMany; +import jakarta.persistence.OneToOne; +import jakarta.persistence.Table; +import java.util.Objects; +import java.util.Set; + +@Entity(name = "simple_user") +@Table(name = "simple_user") +public class User { + + @Id + private Long id; + private String username; + private String email; + + @JsonManagedReference + @OneToOne(cascade = CascadeType.ALL) + private Profile profile; + + @JsonManagedReference + @OneToMany(cascade = CascadeType.ALL, mappedBy = "author", fetch = FetchType.EAGER) + protected Set posts; + + + @ManyToMany(mappedBy = "members", fetch = FetchType.EAGER) + private Set groups; + + public User() { + } + + public Long getId() { + return this.id; + } + + public String getUsername() { + return this.username; + } + + public String getEmail() { + return this.email; + } + + public Profile getProfile() { + return this.profile; + } + + public Set getPosts() { + return this.posts; + } + + public Set getGroups() { + return this.groups; + } + + public void setId(Long id) { + this.id = id; + } + + public void setUsername(String username) { + this.username = username; + } + + public void setEmail(String email) { + this.email = email; + } + + public void setProfile(Profile profile) { + this.profile = profile; + } + + public void setPosts(Set posts) { + this.posts = posts; + } + + public void setGroups(Set groups) { + this.groups = groups; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + User user = (User) o; + + return Objects.equals(id, user.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "User(id=" + this.getId() + ", username=" + this.getUsername() + ", email=" + this.getEmail() + ", profile=" + + this.getProfile() + ", posts=" + this.getPosts() + ", groups=" + this.getGroups() + ")"; + } +} \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/UserRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/UserRepository.java new file mode 100644 index 0000000000..5812881c89 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/UserRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.set.fulldomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface UserRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/UserService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/UserService.java new file mode 100644 index 0000000000..c14e4a5fa4 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/fulldomain/UserService.java @@ -0,0 +1,20 @@ +package com.baeldung.listvsset.eager.set.fulldomain; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Transactional +@Service +public class UserService extends com.baeldung.listvsset.Service { + + public UserService(JpaRepository repository) { + super(repository); + } + + @Override + public UserRepository getRepository() { + return ((UserRepository) super.getRepository()); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/Application.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/Application.java new file mode 100644 index 0000000000..c9a0442ad6 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/Application.java @@ -0,0 +1,8 @@ +package com.baeldung.listvsset.eager.set.lazy.moderatedomain; + +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/Group.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/Group.java new file mode 100644 index 0000000000..3165441ae4 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/Group.java @@ -0,0 +1,71 @@ +package com.baeldung.listvsset.eager.set.lazy.moderatedomain; + +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.ManyToMany; +import jakarta.persistence.Table; +import java.util.Objects; +import java.util.Set; + +@Entity(name = "interest_group") +@Table(name = "interest_group") +public class Group { + + @Id + private Long id; + + private String name; + + @ManyToMany + private Set members; + + public Group() { + } + + public Long getId() { + return this.id; + } + + public String getName() { + return this.name; + } + + public Set getMembers() { + return this.members; + } + + public void setId(Long id) { + this.id = id; + } + + public void setName(String name) { + this.name = name; + } + + public void setMembers(Set members) { + this.members = members; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Group group = (Group) o; + + return Objects.equals(id, group.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Group(id=" + this.getId() + ", name=" + this.getName() + ", members=" + this.getMembers() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/GroupRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/GroupRepository.java new file mode 100644 index 0000000000..8f67f3c10c --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/GroupRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.set.lazy.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface GroupRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/GroupService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/GroupService.java new file mode 100644 index 0000000000..9fd9407309 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/GroupService.java @@ -0,0 +1,29 @@ +package com.baeldung.listvsset.eager.set.lazy.moderatedomain; + +import java.util.List; +import java.util.Optional; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +@Service +public class GroupService { + + private final GroupRepository groupRepository; + + @Autowired + public GroupService(GroupRepository groupRepository) { + this.groupRepository = groupRepository; + } + + public Optional findById(Long aLong) { + return groupRepository.findById(aLong); + } + + public List findAll() { + return groupRepository.findAll(); + } + + public void save(Group group) { + groupRepository.save(group); + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/Post.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/Post.java new file mode 100644 index 0000000000..f1a8aadc15 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/Post.java @@ -0,0 +1,72 @@ +package com.baeldung.listvsset.eager.set.lazy.moderatedomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.Lob; +import jakarta.persistence.ManyToOne; +import java.util.Objects; + +@Entity +public class Post { + + @Id + private Long id; + + @Lob + private String content; + + @JsonBackReference + @ManyToOne + private User author; + + public Post() { + } + + public Long getId() { + return this.id; + } + + public String getContent() { + return this.content; + } + + public User getAuthor() { + return this.author; + } + + public void setId(Long id) { + this.id = id; + } + + public void setContent(String content) { + this.content = content; + } + + public void setAuthor(User author) { + this.author = author; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Post post = (Post) o; + + return Objects.equals(id, post.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Post(id=" + this.getId() + ", content=" + this.getContent() + ", author=" + this.getAuthor() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/PostRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/PostRepository.java new file mode 100644 index 0000000000..8671c4b8a7 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/PostRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.set.lazy.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface PostRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/User.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/User.java new file mode 100644 index 0000000000..fdba1e7efc --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/User.java @@ -0,0 +1,83 @@ +package com.baeldung.listvsset.eager.set.lazy.moderatedomain; + +import com.fasterxml.jackson.annotation.JsonManagedReference; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.OneToMany; +import jakarta.persistence.Table; +import java.util.Objects; +import java.util.Set; + +@Entity(name = "simple_user") +@Table(name = "simple_user") +public class User { + + @Id + private Long id; + private String username; + private String email; + + @JsonManagedReference + @OneToMany(cascade = CascadeType.ALL, mappedBy = "author") + protected Set posts; + + public User() { + } + + public Long getId() { + return this.id; + } + + public String getUsername() { + return this.username; + } + + public String getEmail() { + return this.email; + } + + public Set getPosts() { + return this.posts; + } + + public void setId(Long id) { + this.id = id; + } + + public void setUsername(String username) { + this.username = username; + } + + public void setEmail(String email) { + this.email = email; + } + + public void setPosts(Set posts) { + this.posts = posts; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + User user = (User) o; + + return Objects.equals(id, user.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "User(id=" + this.getId() + ", username=" + this.getUsername() + ", email=" + this.getEmail() + ", posts=" + this.getPosts() + + ")"; + } +} \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/UserRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/UserRepository.java new file mode 100644 index 0000000000..93eb21cbf5 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/UserRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.set.lazy.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface UserRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/UserService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/UserService.java new file mode 100644 index 0000000000..d633c55563 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/lazy/moderatedomain/UserService.java @@ -0,0 +1,20 @@ +package com.baeldung.listvsset.eager.set.lazy.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Transactional +@Service +public class UserService extends com.baeldung.listvsset.Service { + + public UserService(JpaRepository repository) { + super(repository); + } + + @Override + public UserRepository getRepository() { + return ((UserRepository) super.getRepository()); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/Application.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/Application.java new file mode 100644 index 0000000000..ae999bd269 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/Application.java @@ -0,0 +1,8 @@ +package com.baeldung.listvsset.eager.set.moderatedomain; + +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/Group.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/Group.java new file mode 100644 index 0000000000..470204074c --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/Group.java @@ -0,0 +1,72 @@ +package com.baeldung.listvsset.eager.set.moderatedomain; + +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.ManyToMany; +import jakarta.persistence.Table; +import java.util.Objects; +import java.util.Set; + +@Entity(name = "interest_group") +@Table(name = "interest_group") +public class Group { + + @Id + private Long id; + + private String name; + + @ManyToMany(fetch = FetchType.EAGER) + private Set members; + + public Group() { + } + + public Long getId() { + return this.id; + } + + public String getName() { + return this.name; + } + + public Set getMembers() { + return this.members; + } + + public void setId(Long id) { + this.id = id; + } + + public void setName(String name) { + this.name = name; + } + + public void setMembers(Set members) { + this.members = members; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Group group = (Group) o; + + return Objects.equals(id, group.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Group(id=" + this.getId() + ", name=" + this.getName() + ", members=" + this.getMembers() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/GroupRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/GroupRepository.java new file mode 100644 index 0000000000..5cb4690adb --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/GroupRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.set.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface GroupRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/GroupService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/GroupService.java new file mode 100644 index 0000000000..3a8a4fcaa3 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/GroupService.java @@ -0,0 +1,29 @@ +package com.baeldung.listvsset.eager.set.moderatedomain; + +import java.util.List; +import java.util.Optional; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +@Service +public class GroupService { + + private final GroupRepository groupRepository; + + @Autowired + public GroupService(GroupRepository groupRepository) { + this.groupRepository = groupRepository; + } + + public Optional findById(Long aLong) { + return groupRepository.findById(aLong); + } + + public List findAll() { + return groupRepository.findAll(); + } + + public void save(Group group) { + groupRepository.save(group); + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/Post.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/Post.java new file mode 100644 index 0000000000..c81ffae02d --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/Post.java @@ -0,0 +1,72 @@ +package com.baeldung.listvsset.eager.set.moderatedomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.Lob; +import jakarta.persistence.ManyToOne; +import java.util.Objects; + +@Entity +public class Post { + + @Id + private Long id; + + @Lob + private String content; + + @JsonBackReference + @ManyToOne + private User author; + + public Post() { + } + + public Long getId() { + return this.id; + } + + public String getContent() { + return this.content; + } + + public User getAuthor() { + return this.author; + } + + public void setId(Long id) { + this.id = id; + } + + public void setContent(String content) { + this.content = content; + } + + public void setAuthor(User author) { + this.author = author; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Post post = (Post) o; + + return Objects.equals(id, post.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Post(id=" + this.getId() + ", content=" + this.getContent() + ", author=" + this.getAuthor() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/PostRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/PostRepository.java new file mode 100644 index 0000000000..6387cee108 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/PostRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.set.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface PostRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/User.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/User.java new file mode 100644 index 0000000000..54a935f382 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/User.java @@ -0,0 +1,84 @@ +package com.baeldung.listvsset.eager.set.moderatedomain; + +import com.fasterxml.jackson.annotation.JsonManagedReference; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.OneToMany; +import jakarta.persistence.Table; +import java.util.Objects; +import java.util.Set; + +@Entity(name = "simple_user") +@Table(name = "simple_user") +public class User { + + @Id + private Long id; + private String username; + private String email; + + @JsonManagedReference + @OneToMany(cascade = CascadeType.ALL, mappedBy = "author", fetch = FetchType.EAGER) + protected Set posts; + + public User() { + } + + public Long getId() { + return this.id; + } + + public String getUsername() { + return this.username; + } + + public String getEmail() { + return this.email; + } + + public Set getPosts() { + return this.posts; + } + + public void setId(Long id) { + this.id = id; + } + + public void setUsername(String username) { + this.username = username; + } + + public void setEmail(String email) { + this.email = email; + } + + public void setPosts(Set posts) { + this.posts = posts; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + User user = (User) o; + + return Objects.equals(id, user.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "User(id=" + this.getId() + ", username=" + this.getUsername() + ", email=" + this.getEmail() + ", posts=" + this.getPosts() + + ")"; + } +} \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/UserRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/UserRepository.java new file mode 100644 index 0000000000..bf54e0d11b --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/UserRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.set.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface UserRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/UserService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/UserService.java new file mode 100644 index 0000000000..59c8d5dd36 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/moderatedomain/UserService.java @@ -0,0 +1,20 @@ +package com.baeldung.listvsset.eager.set.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Transactional +@Service +public class UserService extends com.baeldung.listvsset.Service { + + public UserService(JpaRepository repository) { + super(repository); + } + + @Override + public UserRepository getRepository() { + return ((UserRepository) super.getRepository()); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/Application.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/Application.java new file mode 100644 index 0000000000..15d780965a --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/Application.java @@ -0,0 +1,8 @@ +package com.baeldung.listvsset.eager.set.simpledomain; + +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/Post.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/Post.java new file mode 100644 index 0000000000..fa0f334aba --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/Post.java @@ -0,0 +1,72 @@ +package com.baeldung.listvsset.eager.set.simpledomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.Lob; +import jakarta.persistence.ManyToOne; +import java.util.Objects; + +@Entity +public class Post { + + @Id + private Long id; + + @Lob + private String content; + + @JsonBackReference + @ManyToOne + private User author; + + public Post() { + } + + public Long getId() { + return this.id; + } + + public String getContent() { + return this.content; + } + + public User getAuthor() { + return this.author; + } + + public void setId(Long id) { + this.id = id; + } + + public void setContent(String content) { + this.content = content; + } + + public void setAuthor(User author) { + this.author = author; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Post post = (Post) o; + + return Objects.equals(id, post.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Post(id=" + this.getId() + ", content=" + this.getContent() + ", author=" + this.getAuthor() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/PostRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/PostRepository.java new file mode 100644 index 0000000000..867144e1b1 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/PostRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.eager.set.simpledomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface PostRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/User.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/User.java new file mode 100644 index 0000000000..a571c50f95 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/User.java @@ -0,0 +1,85 @@ +package com.baeldung.listvsset.eager.set.simpledomain; + +import com.fasterxml.jackson.annotation.JsonManagedReference; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.FetchType; +import jakarta.persistence.Id; +import jakarta.persistence.OneToMany; +import jakarta.persistence.Table; +import java.util.Objects; +import java.util.Set; + +@Entity(name = "simple_user") +@Table(name = "simple_user") +public class User { + + @Id + private Long id; + private String username; + private String email; + + @JsonManagedReference + @OneToMany(cascade = CascadeType.ALL, mappedBy = "author", fetch = FetchType.EAGER) + protected Set posts; + + public User() { + } + + public Long getId() { + return this.id; + } + + public String getUsername() { + return this.username; + } + + public String getEmail() { + return this.email; + } + + public Set getPosts() { + return this.posts; + } + + public void setId(Long id) { + this.id = id; + } + + public void setUsername(String username) { + this.username = username; + } + + public void setEmail(String email) { + this.email = email; + } + + public void setPosts(Set posts) { + this.posts = posts; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + User user = (User) o; + + return Objects.equals(id, user.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "User(id=" + this.getId() + ", username=" + this.getUsername() + ", email=" + this.getEmail() + ", posts=" + this.getPosts() + + ")"; + } +} \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/UserRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/UserRepository.java new file mode 100644 index 0000000000..959a7b3357 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/UserRepository.java @@ -0,0 +1,9 @@ +package com.baeldung.listvsset.eager.set.simpledomain; + +import org.springframework.context.annotation.Lazy; +import org.springframework.data.jpa.repository.JpaRepository; + +@Lazy(value = false) +public interface UserRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/UserService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/UserService.java new file mode 100644 index 0000000000..36e9804b36 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/eager/set/simpledomain/UserService.java @@ -0,0 +1,20 @@ +package com.baeldung.listvsset.eager.set.simpledomain; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Transactional +@Service +public class UserService extends com.baeldung.listvsset.Service { + + public UserService(JpaRepository repository) { + super(repository); + } + + @Override + public UserRepository getRepository() { + return ((UserRepository) super.getRepository()); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/Application.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/Application.java new file mode 100644 index 0000000000..4b5c61f89d --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/Application.java @@ -0,0 +1,8 @@ +package com.baeldung.listvsset.lazy.list.moderatedomain; + +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/Group.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/Group.java new file mode 100644 index 0000000000..3a20ccf8fb --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/Group.java @@ -0,0 +1,71 @@ +package com.baeldung.listvsset.lazy.list.moderatedomain; + +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.ManyToMany; +import jakarta.persistence.Table; +import java.util.List; +import java.util.Objects; + +@Entity(name = "interest_group") +@Table(name = "interest_group") +public class Group { + + @Id + private Long id; + + private String name; + + @ManyToMany + private List members; + + public Group() { + } + + public Long getId() { + return this.id; + } + + public String getName() { + return this.name; + } + + public List getMembers() { + return this.members; + } + + public void setId(Long id) { + this.id = id; + } + + public void setName(String name) { + this.name = name; + } + + public void setMembers(List members) { + this.members = members; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Group group = (Group) o; + + return Objects.equals(id, group.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Group(id=" + this.getId() + ", name=" + this.getName() + ", members=" + this.getMembers() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/GroupRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/GroupRepository.java new file mode 100644 index 0000000000..2bc919566a --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/GroupRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.lazy.list.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface GroupRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/GroupService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/GroupService.java new file mode 100644 index 0000000000..4bd746fef3 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/GroupService.java @@ -0,0 +1,36 @@ +package com.baeldung.listvsset.lazy.list.moderatedomain; + +import java.util.List; +import java.util.Optional; +import java.util.function.ToIntFunction; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Service +@Transactional +public class GroupService { + + private final GroupRepository groupRepository; + + @Autowired + public GroupService(GroupRepository groupRepository) { + this.groupRepository = groupRepository; + } + + public Optional findById(Long aLong) { + return groupRepository.findById(aLong); + } + + public List findAll() { + return groupRepository.findAll(); + } + + public int countNumberOfRequestsWithFunction(ToIntFunction> function) { + return function.applyAsInt(groupRepository.findAll()); + } + + public S save(S entity) { + return groupRepository.save(entity); + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/Post.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/Post.java new file mode 100644 index 0000000000..3d7eb1b6d9 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/Post.java @@ -0,0 +1,72 @@ +package com.baeldung.listvsset.lazy.list.moderatedomain; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.Lob; +import jakarta.persistence.ManyToOne; +import java.util.Objects; + +@Entity +public class Post { + + @Id + private Long id; + + @Lob + private String content; + + @JsonBackReference + @ManyToOne + private User author; + + public Post() { + } + + public Long getId() { + return this.id; + } + + public String getContent() { + return this.content; + } + + public User getAuthor() { + return this.author; + } + + public void setId(Long id) { + this.id = id; + } + + public void setContent(String content) { + this.content = content; + } + + public void setAuthor(User author) { + this.author = author; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Post post = (Post) o; + + return Objects.equals(id, post.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public String toString() { + return "Post(id=" + this.getId() + ", content=" + this.getContent() + ", author=" + this.getAuthor() + ")"; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/PostRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/PostRepository.java new file mode 100644 index 0000000000..e1696a9b75 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/PostRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.lazy.list.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface PostRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/User.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/User.java new file mode 100644 index 0000000000..c3b238d626 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/User.java @@ -0,0 +1,83 @@ +package com.baeldung.listvsset.lazy.list.moderatedomain; + +import com.fasterxml.jackson.annotation.JsonManagedReference; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.OneToMany; +import jakarta.persistence.Table; +import java.util.List; +import java.util.Objects; + +@Entity(name = "simple_user") +@Table(name = "simple_user") +public class User { + + @Id + private Long id; + private String username; + private String email; + + @JsonManagedReference + @OneToMany(cascade = CascadeType.ALL, mappedBy = "author") + protected List posts; + + public User() { + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + User user = (User) o; + + return Objects.equals(id, user.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } + + public Long getId() { + return this.id; + } + + public String getUsername() { + return this.username; + } + + public String getEmail() { + return this.email; + } + + public List getPosts() { + return this.posts; + } + + public void setId(Long id) { + this.id = id; + } + + public void setUsername(String username) { + this.username = username; + } + + public void setEmail(String email) { + this.email = email; + } + + public void setPosts(List posts) { + this.posts = posts; + } + + public String toString() { + return "User(id=" + this.getId() + ", username=" + this.getUsername() + ", email=" + this.getEmail() + ", posts=" + this.getPosts() + + ")"; + } +} \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/UserRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/UserRepository.java new file mode 100644 index 0000000000..0a89e1638f --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/UserRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.listvsset.lazy.list.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface UserRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/UserService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/UserService.java new file mode 100644 index 0000000000..22944f5b35 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/listvsset/lazy/list/moderatedomain/UserService.java @@ -0,0 +1,20 @@ +package com.baeldung.listvsset.lazy.list.moderatedomain; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Transactional +@Service +public class UserService extends com.baeldung.listvsset.Service { + + public UserService(JpaRepository repository) { + super(repository); + } + + @Override + public UserRepository getRepository() { + return ((UserRepository) super.getRepository()); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/Application.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/Application.java new file mode 100644 index 0000000000..648c153c13 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/Application.java @@ -0,0 +1,8 @@ +package com.baeldung.nplusone.defaultfetch.list; + +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/Post.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/Post.java new file mode 100644 index 0000000000..271b6578e1 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/Post.java @@ -0,0 +1,65 @@ +package com.baeldung.nplusone.defaultfetch.list; + +import com.fasterxml.jackson.annotation.JsonBackReference; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.Lob; +import jakarta.persistence.ManyToOne; +import java.util.Objects; + +@Entity +public class Post { + + @Id + private Long id; + + @Lob + private String content; + + @JsonBackReference + @ManyToOne + private User author; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public User getAuthor() { + return author; + } + + public void setAuthor(User author) { + this.author = author; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Post post = (Post) o; + + return Objects.equals(id, post.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/PostRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/PostRepository.java new file mode 100644 index 0000000000..19cd9a32bd --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/PostRepository.java @@ -0,0 +1,7 @@ +package com.baeldung.nplusone.defaultfetch.list; + +import org.springframework.data.jpa.repository.JpaRepository; + +public interface PostRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/User.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/User.java new file mode 100644 index 0000000000..e5c5090d38 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/User.java @@ -0,0 +1,75 @@ +package com.baeldung.nplusone.defaultfetch.list; + +import com.fasterxml.jackson.annotation.JsonManagedReference; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.OneToMany; +import jakarta.persistence.Table; +import java.util.List; +import java.util.Objects; + +@Entity(name = "simple_user") +@Table(name = "simple_user") +public class User { + + @Id + private Long id; + private String username; + private String email; + + @JsonManagedReference + @OneToMany(cascade = CascadeType.ALL, mappedBy = "author") + private List posts; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public List getPosts() { + return posts; + } + + public void setPosts(List posts) { + this.posts = posts; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + User user = (User) o; + + return Objects.equals(id, user.id); + } + + @Override + public int hashCode() { + return id != null ? id.hashCode() : 0; + } +} \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/UserRepository.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/UserRepository.java new file mode 100644 index 0000000000..22516cd31b --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/UserRepository.java @@ -0,0 +1,9 @@ +package com.baeldung.nplusone.defaultfetch.list; + +import org.springframework.context.annotation.Lazy; +import org.springframework.data.jpa.repository.JpaRepository; + +@Lazy(value = false) +public interface UserRepository extends JpaRepository { + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/UserService.java b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/UserService.java new file mode 100644 index 0000000000..d0decf9f9d --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/main/java/com/baeldung/nplusone/defaultfetch/list/UserService.java @@ -0,0 +1,20 @@ +package com.baeldung.nplusone.defaultfetch.list; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Transactional +@Service +public class UserService extends com.baeldung.listvsset.Service { + + public UserService(JpaRepository repository) { + super(repository); + } + + @Override + public UserRepository getRepository() { + return ((UserRepository) super.getRepository()); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/BaseNPlusOneIntegrationTest.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/BaseNPlusOneIntegrationTest.java new file mode 100644 index 0000000000..adc4d07170 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/BaseNPlusOneIntegrationTest.java @@ -0,0 +1,76 @@ +package com.baeldung.listvsset; + +import static org.assertj.core.api.Assertions.assertThat; + +import com.baeldung.listvsset.util.DatabaseUtil; +import com.baeldung.listvsset.util.JsonUtils; +import io.hypersistence.utils.jdbc.validator.SQLStatementCountValidator; +import jakarta.annotation.PostConstruct; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest(properties = { + "spring.jpa.generate-ddl=true", + "spring.jpa.show-sql=false", + "spring.datasource.url=jdbc:h2:mem:~/test;DATABASE_TO_UPPER=false" +}) +abstract public class BaseNPlusOneIntegrationTest extends ParametrizationAware { + + @Autowired + protected List> services; + @Autowired + protected DatabaseUtil databaseUtil; + @Autowired + protected JsonUtils jsonUtils; + + private final Map, Service> serviceMap = new HashMap<>(); + + @PostConstruct + void init() { + for (Service service : services) { + Class parametrization = service.getParametrizationClass().get(0); + serviceMap.put(parametrization, service); + } + } + + @BeforeEach + void setUp() { + addUsers(); + SQLStatementCountValidator.reset(); + System.out.println("************************************************"); + System.out.println("\n\n\n\n\n"); + + } + + @AfterEach + void tearDown() { + System.out.println("\n\n\n\n\n"); + System.out.println("************************************************"); + databaseUtil.truncateAllTables(); + SQLStatementCountValidator.reset(); + } + + @Test + void givenCorrectConfigurationWhenStartContextThenRepositoryIsPresent() { + assertThat(getUserService()).isNotNull(); + } + + @Test + void givenCorrectDatabaseWhenStartThenDatabaseIsNotEmpty() { + List result = getUserService().findAll(); + assertThat(result).isNotEmpty(); + } + + protected Service getUserService() { + Class parametrization = getParametrizationClass().get(0); + return (Service) serviceMap.get(parametrization); + } + + protected abstract void addUsers(); +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/JsonUtilTest.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/JsonUtilTest.java new file mode 100644 index 0000000000..3e14b3c963 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/JsonUtilTest.java @@ -0,0 +1,56 @@ +package com.baeldung.listvsset; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import com.baeldung.listvsset.eager.list.fulldomain.Application; +import com.baeldung.listvsset.eager.list.fulldomain.Comment; +import com.baeldung.listvsset.eager.list.fulldomain.Group; +import com.baeldung.listvsset.eager.list.fulldomain.Post; +import com.baeldung.listvsset.eager.list.fulldomain.Profile; +import com.baeldung.listvsset.eager.list.fulldomain.User; +import com.baeldung.listvsset.util.JsonUtils; +import com.baeldung.listvsset.util.TestConfig; +import java.util.List; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest(classes = {Application.class, TestConfig.class}) +class JsonUtilTest { + + @Autowired + private JsonUtils jsonUtils; + + @Test + void givenFileWhenConvertingToUsersThenConversionIsCorrect() { + List users = jsonUtils.getUsers(User.class); + assertThat(users).isNotEmpty(); + boolean wentThroughEverything = false; + for (User user : users) { + assertThat(user.getGroups()).isNotNull(); + Profile profile = user.getProfile(); + if (profile != null) { + assertThat(user.getId()).isEqualTo(profile.getUser().getId()); + } + for (Post post : user.getPosts()) { + assertThat(user.getId()).isEqualTo(post.getAuthor().getId()); + if (post.getComments() != null) { + wentThroughEverything = true; + for (Comment comment : post.getComments()) { + assertThat(post.getId()).isEqualTo(comment.getPost().getId()); + } + } + } + } + assertTrue(wentThroughEverything); + } + + @Test + void givenFileWhenConvertingToGroupsThenConversionIsCorrect() { + List groups = jsonUtils.getGroups(Group.class); + assertThat(groups).isNotEmpty(); + } + + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/lazy/list/NPlusOneLazyModerateDomainIntegrationTest.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/lazy/list/NPlusOneLazyModerateDomainIntegrationTest.java new file mode 100644 index 0000000000..f4a35a8e38 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/lazy/list/NPlusOneLazyModerateDomainIntegrationTest.java @@ -0,0 +1,77 @@ +package com.baeldung.listvsset.lazy.list; + +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertSelectCount; +import static org.assertj.core.api.Assertions.assertThat; + +import com.baeldung.listvsset.BaseNPlusOneIntegrationTest; +import com.baeldung.listvsset.lazy.list.moderatedomain.Application; +import com.baeldung.listvsset.lazy.list.moderatedomain.Group; +import com.baeldung.listvsset.lazy.list.moderatedomain.GroupService; +import com.baeldung.listvsset.lazy.list.moderatedomain.User; +import com.baeldung.listvsset.util.TestConfig; +import java.util.Collection; +import java.util.List; +import java.util.Optional; +import java.util.stream.Collectors; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest(classes = {Application.class, TestConfig.class}, properties = { + "hibernate.show_sql=true", + "logging.level.org.hibernate.SQL=debug", + "logging.level.org.hibernate.orm.jdbc.bind=trace" +}) +class NPlusOneLazyModerateDomainIntegrationTest extends BaseNPlusOneIntegrationTest { + + @Autowired + private GroupService groupService; + + @Test + void givenLazyListBasedUser_whenFetchingAllUsers_thenIssueOneRequest() { + getUserService().findAll(); + assertSelectCount(1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenLazyListBasedUser_whenFetchingOneUser_thenIssueOneRequest(Long id) { + getUserService().getUserById(id); + assertSelectCount(1); + } + + @Test + void givenLazyListBasedGroup_whenFetchingAllGroups_thenIssueOneRequest() { + groupService.findAll(); + assertSelectCount(1); + } + @Test + void givenLazyListBasedGroup_whenFilteringGroups_thenIssueNPlusOneRequests() { + int numberOfRequests = groupService.countNumberOfRequestsWithFunction(groups -> { + groups.stream() + .map(Group::getMembers) + .flatMap(Collection::stream) + .collect(Collectors.toSet()); + return groups.size(); + }); + assertSelectCount(numberOfRequests + 1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenLazyListBasedGroup_whenFetchingAllGroups_thenIssueOneRequest(Long groupId) { + Optional group = groupService.findById(groupId); + assertThat(group).isPresent(); + assertSelectCount(1); + } + + protected void addUsers() { + List users = jsonUtils.getUsers(User.class); + databaseUtil.saveAll(users); + List groups = jsonUtils.getGroupsWithMembers(Group.class); + databaseUtil.saveAll(groups); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/lazy/list/NPlusOneLazySimpleDomainIntegrationTest.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/lazy/list/NPlusOneLazySimpleDomainIntegrationTest.java new file mode 100644 index 0000000000..583b67ff0c --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/lazy/list/NPlusOneLazySimpleDomainIntegrationTest.java @@ -0,0 +1,55 @@ +package com.baeldung.listvsset.lazy.list; + +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertSelectCount; + +import com.baeldung.listvsset.BaseNPlusOneIntegrationTest; +import com.baeldung.listvsset.util.TestConfig; +import com.baeldung.nplusone.defaultfetch.list.Application; +import com.baeldung.nplusone.defaultfetch.list.Post; +import com.baeldung.nplusone.defaultfetch.list.User; +import java.util.List; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest(classes = {Application.class, TestConfig.class}, properties = { + "hibernate.show_sql=true", + "logging.level.org.hibernate.SQL=debug", + "logging.level.org.hibernate.orm.jdbc.bind=trace" +}) +class NPlusOneLazySimpleDomainIntegrationTest extends BaseNPlusOneIntegrationTest { + + @Test + void givenLazyListBasedUser_WhenFetchingAllUsers_ThenIssueOneRequests() { + getUserService().findAll(); + assertSelectCount(1); + } + + @Test + void givenLazyListBasedUser_WhenFetchingAllUsersCheckingPosts_ThenIssueNPlusOneRequests() { + int numberOfRequests = getUserService().countNumberOfRequestsWithFunction(users -> { + List> usersWithPosts + = users.stream() + .map(User::getPosts) + .filter(List::isEmpty) + .toList(); + return users.size(); + }); + assertSelectCount(numberOfRequests + 1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenLazyListBasedUser_WhenFetchingOneUser_ThenIssueTwoRequest(Long id) { + getUserService().getUserByIdWithPredicate(id, user -> !user.getPosts().isEmpty()); + assertSelectCount(2); + } + + + protected void addUsers() { + List users = jsonUtils.getUsers(User.class); + databaseUtil.saveAll(users); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/list/NPlusOneEagerFullDomainIntegrationTest.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/list/NPlusOneEagerFullDomainIntegrationTest.java new file mode 100644 index 0000000000..b281bd715f --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/list/NPlusOneEagerFullDomainIntegrationTest.java @@ -0,0 +1,129 @@ +package com.baeldung.listvsset.list; + +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertSelectCount; + +import com.baeldung.listvsset.BaseNPlusOneIntegrationTest; +import com.baeldung.listvsset.eager.list.fulldomain.Application; +import com.baeldung.listvsset.eager.list.fulldomain.Comment; +import com.baeldung.listvsset.eager.list.fulldomain.Group; +import com.baeldung.listvsset.eager.list.fulldomain.Post; +import com.baeldung.listvsset.eager.list.fulldomain.User; +import com.baeldung.listvsset.util.TestConfig; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.function.ToIntFunction; +import java.util.stream.Stream; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.Arguments; +import org.junit.jupiter.params.provider.MethodSource; +import org.junit.jupiter.params.provider.ValueSource; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest(classes = {Application.class, TestConfig.class}, properties = { + "hibernate.show_sql=true", + "logging.level.org.hibernate.SQL=debug", + "logging.level.org.hibernate.orm.jdbc.bind=trace" +}) +class NPlusOneEagerFullDomainIntegrationTest extends BaseNPlusOneIntegrationTest { + + public static final String POSTS = "posts"; + public static final String USERS = "users"; + + @ParameterizedTest + @MethodSource + void givenEagerListBasedUser_WhenFetchingAllUsers_ThenIssueNPlusOneRequests(ToIntFunction> function) { + int numberOfRequests = getUserService().countNumberOfRequestsWithFunction(function); + assertSelectCount(numberOfRequests); + } + + static Stream givenEagerListBasedUser_WhenFetchingAllUsers_ThenIssueNPlusOneRequests() { + return Stream.of( + Arguments.of((ToIntFunction>) s -> { + int result = 2 * s.size() + 1; + List posts = s.stream().map(User::getPosts) + .flatMap(List::stream) + .toList(); + + result += posts.size(); + return result; + }) + ); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerListBasedUser_WhenFetchingOneUser_ThenUseDFS(Long id) { + int numberOfRequests = getUserService().getUserByIdWithFunction(id, this::countNumberOfRequests); + assertSelectCount(numberOfRequests); + } + + private int countNumberOfRequests(User user) { + HashMap> visitedMap = new HashMap<>(); + visitedMap.put(POSTS, new HashSet<>()); + visitedMap.put(USERS, new HashSet<>()); + int result = 1; + visitedMap.get(USERS).add(user.getId()); + List posts = user.getPosts(); + result += 1; + result += explorePosts(posts, visitedMap); + return result; + + } + + private int explorePosts(List posts, HashMap> visitedMap) { + int result = 0; + if (posts == null || posts.isEmpty()) { + return result; + } + for (Post post : posts) { + if (!visitedMap.get(POSTS).contains(post.getId())) { + result++; + visitedMap.get(POSTS).add(post.getId()); + List commenters = post.getComments().stream().map(Comment::getAuthor).toList(); + result += exploreUsers(commenters, visitedMap); + } + } + return result; + } + + private int exploreUsers(List users, HashMap> visitedMap) { + int result = 0; + if (users == null || users.isEmpty()) { + return result; + } + for (User user : users) { + if (!visitedMap.get(USERS).contains(user.getId())) { + ++result; + visitedMap.get(USERS).add(user.getId()); + result += explorePosts(user.getPosts(), visitedMap); + ++result; + } + } + return result; + } + + protected void addUsers() { + List groups = jsonUtils.getGroups(Group.class); + databaseUtil.saveAll(groups); + List users = jsonUtils.getUsers(User.class); + Map> comments = new HashMap<>(); + for (User user : users) { + for (Post post : user.getPosts()) { + if (!comments.containsKey(post.getId())) { + comments.put(post.getId(), new ArrayList<>()); + } + comments.get(post.getId()).addAll(post.getComments()); + post.setComments(Collections.emptyList()); + } + } + databaseUtil.saveAll(users); + // Handle non-existent users while adding comments + databaseUtil.mergeAll(jsonUtils.getUsers(User.class)); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/list/NPlusOneEagerModerateDomainIntegrationTest.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/list/NPlusOneEagerModerateDomainIntegrationTest.java new file mode 100644 index 0000000000..a0b0f4eb10 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/list/NPlusOneEagerModerateDomainIntegrationTest.java @@ -0,0 +1,87 @@ +package com.baeldung.listvsset.list; + +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertDeleteCount; +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertInsertCount; +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertSelectCount; +import static com.vladmihalcea.sql.SQLStatementCountValidator.reset; +import static org.assertj.core.api.Assertions.assertThat; + +import com.baeldung.listvsset.BaseNPlusOneIntegrationTest; +import com.baeldung.listvsset.eager.list.moderatedomain.Application; +import com.baeldung.listvsset.eager.list.moderatedomain.Group; +import com.baeldung.listvsset.eager.list.moderatedomain.GroupService; +import com.baeldung.listvsset.eager.list.moderatedomain.User; +import com.baeldung.listvsset.util.TestConfig; +import java.util.List; +import java.util.Optional; +import java.util.Set; +import java.util.stream.Collectors; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest(classes = {Application.class, TestConfig.class}, properties = { + "hibernate.show_sql=true", + "logging.level.org.hibernate.SQL=debug", + "logging.level.org.hibernate.orm.jdbc.bind=trace" +}) +class NPlusOneEagerModerateDomainIntegrationTest extends BaseNPlusOneIntegrationTest { + + @Autowired + private GroupService groupService; + + @Test + void givenEagerListBasedUser_whenFetchingAllUsers_thenIssueNPlusOneRequests() { + List users = getUserService().findAll(); + assertSelectCount(users.size() + 1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerListBasedUser_whenFetchingOneUser_thenIssueOneRequest(Long id) { + getUserService().getUserById(id); + assertSelectCount(1); + } + + @Test + void givenEagerListBasedGroup_whenFetchingAllGroups_thenIssueNPlusMPlusOneRequests() { + List groups = groupService.findAll(); + Set users = groups.stream().map(Group::getMembers).flatMap(List::stream).collect(Collectors.toSet()); + assertSelectCount(groups.size() + users.size() + 1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerListBasedGroup_whenFetchingAllGroups_thenIssueNPlusOneRequests(Long groupId) { + Optional group = groupService.findById(groupId); + assertThat(group).isPresent(); + assertSelectCount(1 + group.get().getMembers().size()); + } + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerListBasedGroup_whenRemoveUser_thenRecreateGroup(Long groupId) { + Optional optionalGroup = groupService.findById(groupId); + assertThat(optionalGroup).isPresent(); + Group group = optionalGroup.get(); + List members = group.getMembers(); + assertSelectCount(1 + members.size()); + if (!members.isEmpty()) { + reset(); + members.remove(0); + groupService.save(group); + assertSelectCount(1 + members.size() + 1); + assertDeleteCount(1); + assertInsertCount(members.size()); + } + } + + protected void addUsers() { + List users = jsonUtils.getUsers(User.class); + databaseUtil.saveAll(users); + List groups = jsonUtils.getGroupsWithMembers(Group.class); + databaseUtil.saveAll(groups); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/list/NPlusOneEagerSimpleDomainIntegrationTest.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/list/NPlusOneEagerSimpleDomainIntegrationTest.java new file mode 100644 index 0000000000..957e36e028 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/list/NPlusOneEagerSimpleDomainIntegrationTest.java @@ -0,0 +1,67 @@ +package com.baeldung.listvsset.list; + +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertSelectCount; +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertUpdateCount; +import static com.vladmihalcea.sql.SQLStatementCountValidator.reset; +import static org.assertj.core.api.Assertions.assertThat; + +import com.baeldung.listvsset.BaseNPlusOneIntegrationTest; +import com.baeldung.listvsset.eager.list.simpledomain.Application; +import com.baeldung.listvsset.eager.list.simpledomain.Post; +import com.baeldung.listvsset.eager.list.simpledomain.User; +import com.baeldung.listvsset.util.TestConfig; +import java.util.List; +import java.util.Optional; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest(classes = {Application.class, TestConfig.class}, properties = { + "hibernate.show_sql=true", + "logging.level.org.hibernate.SQL=debug", + "logging.level.org.hibernate.orm.jdbc.bind=trace" +}) +class NPlusOneEagerSimpleDomainIntegrationTest extends BaseNPlusOneIntegrationTest { + + @Test + void givenEagerListBasedUser_WhenFetchingAllUsers_ThenIssueNPlusOneRequests() { + List users = getUserService().findAll(); + assertSelectCount(users.size() + 1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerListBasedUser_WhenFetchingOneUser_ThenIssueOneRequest(Long id) { + getUserService().getUserById(id); + assertSelectCount(1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerListBasedUser_whenDeletePost_ThenIssueSingleUpdate(Long id) { + Optional optionalUser = getUserService().getUserById(id); + assertSelectCount(1); + optionalUser.ifPresent(user -> { + List posts = user.getPosts(); + int originalNumberOfPosts = posts.size(); + reset(); + if (!posts.isEmpty()) { + posts.get(0).setAuthor(null); + getUserService().save(user); + assertSelectCount(1); + assertUpdateCount(1); + getUserService().getUserById(id).ifPresent(updatedUser -> { + assertThat(updatedUser.getPosts()).hasSize(originalNumberOfPosts - 1); + }); + } + + }); + } + + protected void addUsers() { + List users = jsonUtils.getUsers(User.class); + databaseUtil.saveAll(users); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/set/NPlusOneEagerFullDomainJoinIntegrationTest.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/set/NPlusOneEagerFullDomainJoinIntegrationTest.java new file mode 100644 index 0000000000..0239993741 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/set/NPlusOneEagerFullDomainJoinIntegrationTest.java @@ -0,0 +1,106 @@ +package com.baeldung.listvsset.set; + +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertSelectCount; + +import com.baeldung.listvsset.BaseNPlusOneIntegrationTest; +import com.baeldung.listvsset.eager.set.fulldomain.Application; +import com.baeldung.listvsset.eager.set.fulldomain.Comment; +import com.baeldung.listvsset.eager.set.fulldomain.Group; +import com.baeldung.listvsset.eager.set.fulldomain.Post; +import com.baeldung.listvsset.eager.set.fulldomain.User; +import com.baeldung.listvsset.util.TestConfig; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest(classes = {Application.class, TestConfig.class}, properties = { + "hibernate.show_sql=true", + "logging.level.org.hibernate.SQL=debug", + "logging.level.org.hibernate.orm.jdbc.bind=trace" +}) +class NPlusOneEagerFullDomainJoinIntegrationTest extends BaseNPlusOneIntegrationTest { + + public static final String POSTS = "posts"; + public static final String USERS = "users"; + + @Test + void givenEagerSetBasedUser_WhenFetchingAllUsers_ThenIssueNPlusOneRequests() { + List users = getUserService().findAll(); + assertSelectCount(users.size() + 1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerUserWhenFetchingOneUserThenIssueNPlusOneRequestsWithCartesianProduct(Long id) { + HashMap> visitedMap = new HashMap<>(); + visitedMap.put(POSTS, new HashSet<>()); + visitedMap.put(USERS, new HashSet<>()); + int numberOfRequests = getUserService() + .getUserByIdWithFunction(id, user -> { + int result = 1; + visitedMap.get(USERS).add(user.getId()); + Set posts = user.getPosts(); + result += explorePosts(posts, visitedMap); + return result; + }); + assertSelectCount(numberOfRequests); + } + + private int explorePosts(Set posts, HashMap> visitedMap) { + int result = 0; + if (posts == null || posts.isEmpty()) { + return result; + } + for (Post post : posts) { + if (!visitedMap.get(POSTS).contains(post.getId())) { + visitedMap.get(POSTS).add(post.getId()); + List commenters = post.getComments().stream().map(Comment::getAuthor).toList(); + result += exploreUsers(commenters, visitedMap); + } + } + return result; + } + + private int exploreUsers(List users, HashMap> visitedMap) { + int result = 0; + if (users == null || users.isEmpty()) { + return result; + } + for (User user : users) { + if (!visitedMap.get(USERS).contains(user.getId())) { + ++result; + visitedMap.get(USERS).add(user.getId()); + result += explorePosts(user.getPosts(), visitedMap); + } + } + return result; + } + + protected void addUsers() { + List groups = jsonUtils.getGroups(Group.class); + databaseUtil.saveAll(groups); + List users = jsonUtils.getUsers(User.class); + Map> comments = new HashMap<>(); + for (User user : users) { + for (Post post : user.getPosts()) { + if (!comments.containsKey(post.getId())) { + comments.put(post.getId(), new ArrayList<>()); + } + comments.get(post.getId()).addAll(post.getComments()); + post.setComments(Collections.emptySet()); + } + } + databaseUtil.saveAll(users); + // Handle non-existent users while adding comments + databaseUtil.mergeAll(jsonUtils.getUsers(User.class)); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/set/NPlusOneEagerModerateDomainIntegrationTest.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/set/NPlusOneEagerModerateDomainIntegrationTest.java new file mode 100644 index 0000000000..47211e7bca --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/set/NPlusOneEagerModerateDomainIntegrationTest.java @@ -0,0 +1,83 @@ +package com.baeldung.listvsset.set; + +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertDeleteCount; +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertSelectCount; +import static com.vladmihalcea.sql.SQLStatementCountValidator.reset; +import static org.assertj.core.api.Assertions.assertThat; + +import com.baeldung.listvsset.BaseNPlusOneIntegrationTest; +import com.baeldung.listvsset.eager.set.moderatedomain.Application; +import com.baeldung.listvsset.eager.set.moderatedomain.Group; +import com.baeldung.listvsset.eager.set.moderatedomain.GroupService; +import com.baeldung.listvsset.eager.set.moderatedomain.User; +import com.baeldung.listvsset.util.TestConfig; +import java.util.List; +import java.util.Optional; +import java.util.Set; +import java.util.stream.Collectors; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest(classes = {Application.class, TestConfig.class}, properties = { + "hibernate.show_sql=true", + "logging.level.org.hibernate.SQL=debug", + "logging.level.org.hibernate.orm.jdbc.bind=trace" +}) +class NPlusOneEagerModerateDomainIntegrationTest extends BaseNPlusOneIntegrationTest { + + @Autowired + private GroupService groupService; + + @Test + void givenEagerSetBasedUser_whenFetchingAllUsers_thenIssueNPlusOneRequests() { + List users = getUserService().findAll(); + assertSelectCount(users.size() + 1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerSetBasedUser_whenFetchingOneUser_thenIssueOneRequest(Long id) { + getUserService().getUserById(id); + assertSelectCount(1); + } + + @Test + void givenEagerSetBasedGroup_whenFetchingAllGroups_thenIssueNPlusOneRequests() { + List groups = groupService.findAll(); + assertSelectCount(groups.size() + 1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerSetBasedGroup_whenFetchingAllGroups_thenCreateCartesianProductInOneQuery(Long groupId) { + groupService.findById(groupId); + assertSelectCount(1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerListBasedGroup_whenRemoveUser_thenIssueOnlyOneDelete(Long groupId) { + Optional optionalGroup = groupService.findById(groupId); + assertThat(optionalGroup).isPresent(); + Group group = optionalGroup.get(); + if (!group.getMembers().isEmpty()) { + reset(); + Set newMembers = group.getMembers().stream().skip(1).collect(Collectors.toSet()); + group.setMembers(newMembers); + groupService.save(group); + assertSelectCount(1); + assertDeleteCount(1); + } + } + + protected void addUsers() { + List users = jsonUtils.getUsers(User.class); + databaseUtil.saveAll(users); + List groups = jsonUtils.getGroupsWithMembers(Group.class); + databaseUtil.saveAll(groups); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/set/NPlusOneEagerSimpleDomainIntegrationTest.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/set/NPlusOneEagerSimpleDomainIntegrationTest.java new file mode 100644 index 0000000000..4b939307b6 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/set/NPlusOneEagerSimpleDomainIntegrationTest.java @@ -0,0 +1,68 @@ +package com.baeldung.listvsset.set; + +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertSelectCount; +import static com.vladmihalcea.sql.SQLStatementCountValidator.assertUpdateCount; +import static com.vladmihalcea.sql.SQLStatementCountValidator.reset; +import static org.assertj.core.api.Assertions.assertThat; + +import com.baeldung.listvsset.BaseNPlusOneIntegrationTest; +import com.baeldung.listvsset.eager.set.simpledomain.Application; +import com.baeldung.listvsset.eager.set.simpledomain.Post; +import com.baeldung.listvsset.eager.set.simpledomain.User; +import com.baeldung.listvsset.util.TestConfig; +import java.util.List; +import java.util.Optional; +import java.util.Set; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest(classes = {Application.class, TestConfig.class}, properties = { + "hibernate.show_sql=true", + "logging.level.org.hibernate.SQL=debug", + "logging.level.org.hibernate.orm.jdbc.bind=trace" +}) +class NPlusOneEagerSimpleDomainIntegrationTest extends BaseNPlusOneIntegrationTest { + + @Test + void givenEagerSetBasedUser_WhenFetchingAllUsers_ThenIssueNPlusOneRequests() { + List users = getUserService().findAll(); + assertSelectCount(users.size() + 1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerSetBasedUser_WhenFetchingOneUser_ThenIssueOneRequest(Long id) { + getUserService().getUserById(id); + assertSelectCount(1); + } + + @ParameterizedTest + @ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) + void givenEagerListBasedUser_whenDeletePost_ThenIssueSingleUpdate(Long id) { + Optional optionalUser = getUserService().getUserById(id); + assertSelectCount(1); + optionalUser.ifPresent(user -> { + Set posts = user.getPosts(); + int originalNumberOfPosts = posts.size(); + reset(); + if (!posts.isEmpty()) { + posts.iterator().next().setAuthor(null); + getUserService().save(user); + assertSelectCount(1); + assertUpdateCount(1); + getUserService().getUserById(id).ifPresent(updatedUser -> { + assertThat(updatedUser.getPosts()).hasSize(originalNumberOfPosts - 1); + }); + } + + }); + } + + protected void addUsers() { + List users = jsonUtils.getUsers(User.class); + databaseUtil.saveAll(users); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/DataSourceWrapper.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/DataSourceWrapper.java new file mode 100644 index 0000000000..6ca7c45391 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/DataSourceWrapper.java @@ -0,0 +1,35 @@ +package com.baeldung.listvsset.util; + +import io.hypersistence.utils.logging.InlineQueryLogEntryCreator; +import javax.sql.DataSource; +import net.ttddyy.dsproxy.listener.ChainListener; +import net.ttddyy.dsproxy.listener.DataSourceQueryCountListener; +import net.ttddyy.dsproxy.listener.logging.SLF4JQueryLoggingListener; +import net.ttddyy.dsproxy.support.ProxyDataSourceBuilder; +import org.springframework.beans.BeansException; +import org.springframework.beans.factory.config.BeanPostProcessor; +import org.springframework.stereotype.Component; + +@Component +public class DataSourceWrapper implements BeanPostProcessor { + + public Object postProcessBeforeInitialization(Object bean, String beanName) { + return bean; + } + + public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException { + if (bean instanceof DataSource originalDataSource) { + ChainListener listener = new ChainListener(); + SLF4JQueryLoggingListener loggingListener = new SLF4JQueryLoggingListener(); + loggingListener.setQueryLogEntryCreator(new InlineQueryLogEntryCreator()); + listener.addListener(loggingListener); + listener.addListener(new DataSourceQueryCountListener()); + return ProxyDataSourceBuilder + .create(originalDataSource) + .name("DS-Proxy") + .listener(listener) + .build(); + } + return bean; + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/DatabaseUtil.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/DatabaseUtil.java new file mode 100644 index 0000000000..1e6e75511f --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/DatabaseUtil.java @@ -0,0 +1,47 @@ +package com.baeldung.listvsset.util; + +import jakarta.persistence.EntityManager; +import jakarta.persistence.PersistenceContext; +import jakarta.transaction.Transactional; +import java.util.List; +import org.springframework.stereotype.Component; + +@Component +public class DatabaseUtil { + + public static final String TRUNCATE_QUERY_FORMAT = "TRUNCATE TABLE %s"; + @PersistenceContext + private EntityManager entityManager; + + @Transactional + public void truncateAllTables() { + switchForeignKeysOff(); + entityManager.createNativeQuery("SHOW TABLES", String.class) + .getResultList() + .forEach(this::truncateTable); + switchForeignKeysOn(); + } + + @Transactional + public void saveAll(List entities) { + entities.forEach(s -> entityManager.persist(s)); + } + + @Transactional + public void mergeAll(List entities) { + entities.forEach(s -> entityManager.merge(s)); + } + + private int truncateTable(Object s) { + return entityManager + .createNativeQuery(TRUNCATE_QUERY_FORMAT.formatted(s)).executeUpdate(); + } + + private void switchForeignKeysOn() { + entityManager.createNativeQuery("SET REFERENTIAL_INTEGRITY TRUE").executeUpdate(); + } + + private void switchForeignKeysOff() { + entityManager.createNativeQuery("SET REFERENTIAL_INTEGRITY FALSE").executeUpdate(); + } +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/JsonUtils.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/JsonUtils.java new file mode 100644 index 0000000000..c8577da58d --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/JsonUtils.java @@ -0,0 +1,51 @@ +package com.baeldung.listvsset.util; + +import com.fasterxml.jackson.databind.DeserializationFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import java.io.File; +import java.io.IOException; +import java.util.List; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; + +@Component +public class JsonUtils { + + @Value("users.json") + private File userFile; + + @Value("groups.json") + private File groupFile; + + @Value("groups_with_members.json") + private File groupsWithMembersFile; + + private static final ObjectMapper MAPPER = new ObjectMapper(); + + static { + MAPPER.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); + } + + public List getUsers(Class userType) { + return getObjects(userType, userFile); + } + + public List getGroups(Class userType) { + return getObjects(userType, groupFile); + } + + public List getGroupsWithMembers(Class groupType) { + return getObjects(groupType, groupsWithMembersFile); + } + + private List getObjects(Class userType, File userFile1) { + try { + return MAPPER.readValue(userFile1, MAPPER.getTypeFactory() + .constructCollectionType(List.class, userType)); + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/TestConfig.java b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/TestConfig.java new file mode 100644 index 0000000000..82ee56b35b --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/java/com/baeldung/listvsset/util/TestConfig.java @@ -0,0 +1,24 @@ +package com.baeldung.listvsset.util; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +@Configuration +public class TestConfig { + + @Bean + public DataSourceWrapper dataSourceWrapper() { + return new DataSourceWrapper(); + } + + @Bean + public DatabaseUtil databaseUtil() { + return new DatabaseUtil(); + } + + @Bean + JsonUtils jsonUtils() { + return new JsonUtils(); + } + +} diff --git a/persistence-modules/spring-boot-persistence-4/src/test/resources/groups.json b/persistence-modules/spring-boot-persistence-4/src/test/resources/groups.json new file mode 100644 index 0000000000..9ccad3f79a --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/resources/groups.json @@ -0,0 +1,402 @@ +[ + { + "id": 1, + "name": "Bitwolf" + }, + { + "id": 2, + "name": "Solarbreeze" + }, + { + "id": 3, + "name": "Bamity" + }, + { + "id": 4, + "name": "Hatity" + }, + { + "id": 5, + "name": "Veribet" + }, + { + "id": 6, + "name": "Tampflex" + }, + { + "id": 7, + "name": "Zontrax" + }, + { + "id": 8, + "name": "Aerified" + }, + { + "id": 9, + "name": "Konklab" + }, + { + "id": 10, + "name": "Tampflex" + }, + { + "id": 11, + "name": "Mat Lam Tam" + }, + { + "id": 12, + "name": "Alpha" + }, + { + "id": 13, + "name": "Quo Lux" + }, + { + "id": 14, + "name": "Kanlam" + }, + { + "id": 15, + "name": "Veribet" + }, + { + "id": 16, + "name": "Ventosanzap" + }, + { + "id": 17, + "name": "Opela" + }, + { + "id": 18, + "name": "Alphazap" + }, + { + "id": 19, + "name": "Lotlux" + }, + { + "id": 20, + "name": "Alpha" + }, + { + "id": 21, + "name": "Andalax" + }, + { + "id": 22, + "name": "Bitchip" + }, + { + "id": 23, + "name": "Cookley" + }, + { + "id": 24, + "name": "Konklab" + }, + { + "id": 25, + "name": "Konklab" + }, + { + "id": 26, + "name": "Lotstring" + }, + { + "id": 27, + "name": "Konklux" + }, + { + "id": 28, + "name": "Temp" + }, + { + "id": 29, + "name": "Voyatouch" + }, + { + "id": 30, + "name": "Trippledex" + }, + { + "id": 31, + "name": "Sonsing" + }, + { + "id": 32, + "name": "Andalax" + }, + { + "id": 33, + "name": "Voltsillam" + }, + { + "id": 34, + "name": "Stronghold" + }, + { + "id": 35, + "name": "Hatity" + }, + { + "id": 36, + "name": "Andalax" + }, + { + "id": 37, + "name": "Holdlamis" + }, + { + "id": 38, + "name": "Bamity" + }, + { + "id": 39, + "name": "Voltsillam" + }, + { + "id": 40, + "name": "Aerified" + }, + { + "id": 41, + "name": "Regrant" + }, + { + "id": 42, + "name": "Subin" + }, + { + "id": 43, + "name": "Tin" + }, + { + "id": 44, + "name": "Voltsillam" + }, + { + "id": 45, + "name": "Trippledex" + }, + { + "id": 46, + "name": "Solarbreeze" + }, + { + "id": 47, + "name": "Treeflex" + }, + { + "id": 48, + "name": "Fintone" + }, + { + "id": 49, + "name": "Tin" + }, + { + "id": 50, + "name": "It" + }, + { + "id": 51, + "name": "Y-Solowarm" + }, + { + "id": 52, + "name": "Bigtax" + }, + { + "id": 53, + "name": "Flowdesk" + }, + { + "id": 54, + "name": "Vagram" + }, + { + "id": 55, + "name": "Keylex" + }, + { + "id": 56, + "name": "Zontrax" + }, + { + "id": 57, + "name": "Vagram" + }, + { + "id": 58, + "name": "Lotstring" + }, + { + "id": 59, + "name": "Cookley" + }, + { + "id": 60, + "name": "Zaam-Dox" + }, + { + "id": 61, + "name": "Zoolab" + }, + { + "id": 62, + "name": "Quo Lux" + }, + { + "id": 63, + "name": "Ventosanzap" + }, + { + "id": 64, + "name": "Ventosanzap" + }, + { + "id": 65, + "name": "Lotstring" + }, + { + "id": 66, + "name": "Keylex" + }, + { + "id": 67, + "name": "Stim" + }, + { + "id": 68, + "name": "Alphazap" + }, + { + "id": 69, + "name": "It" + }, + { + "id": 70, + "name": "Cardify" + }, + { + "id": 71, + "name": "Zamit" + }, + { + "id": 72, + "name": "Holdlamis" + }, + { + "id": 73, + "name": "Konklab" + }, + { + "id": 74, + "name": "Ventosanzap" + }, + { + "id": 75, + "name": "Wrapsafe" + }, + { + "id": 76, + "name": "Cookley" + }, + { + "id": 77, + "name": "Y-find" + }, + { + "id": 78, + "name": "Regrant" + }, + { + "id": 79, + "name": "Otcom" + }, + { + "id": 80, + "name": "Cookley" + }, + { + "id": 81, + "name": "Bigtax" + }, + { + "id": 82, + "name": "Holdlamis" + }, + { + "id": 83, + "name": "Bigtax" + }, + { + "id": 84, + "name": "Voltsillam" + }, + { + "id": 85, + "name": "Duobam" + }, + { + "id": 86, + "name": "Flowdesk" + }, + { + "id": 87, + "name": "It" + }, + { + "id": 88, + "name": "Hatity" + }, + { + "id": 89, + "name": "Zathin" + }, + { + "id": 90, + "name": "Hatity" + }, + { + "id": 91, + "name": "Cardify" + }, + { + "id": 92, + "name": "Konklab" + }, + { + "id": 93, + "name": "Treeflex" + }, + { + "id": 94, + "name": "Flexidy" + }, + { + "id": 95, + "name": "Latlux" + }, + { + "id": 96, + "name": "Bitwolf" + }, + { + "id": 97, + "name": "Zontrax" + }, + { + "id": 98, + "name": "Greenlam" + }, + { + "id": 99, + "name": "Asoka" + }, + { + "id": 100, + "name": "Ronstring" + } +] \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/test/resources/groups_with_members.json b/persistence-modules/spring-boot-persistence-4/src/test/resources/groups_with_members.json new file mode 100644 index 0000000000..99e0da9891 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/resources/groups_with_members.json @@ -0,0 +1,183 @@ +[ + { + "id": 1, + "name": "Pacocha-Hills", + "members": [ + { + "id": 1 + }, + { + "id": 2 + }, + { + "id": 3 + }, + { + "id": 4 + } + ] + }, + { + "id": 2, + "name": "Windler, Wiegand and Bernhard", + "members": [] + }, + { + "id": 3, + "name": "Flatley-Hilll", + "members": [ + { + "id": 1 + }, + { + "id": 2 + }, + { + "id": 3 + }, + { + "id": 4 + }, + { + "id": 5 + }, + { + "id": 6 + }, + { + "id": 7 + }, + { + "id": 8 + }, + { + "id": 9 + } + ] + }, + { + "id": 4, + "name": "Daugherty and Sons", + "members": [ + { + "id": 1 + }, + { + "id": 2 + }, + { + "id": 3 + }, + { + "id": 4 + }, + { + "id": 5 + }, + { + "id": 6 + }, + { + "id": 7 + } + ] + }, + { + "id": 5, + "name": "Leannon, Kub and Murazik", + "members": [ + { + "id": 1 + }, + { + "id": 2 + }, + { + "id": 3 + }, + { + "id": 4 + }, + { + "id": 5 + }, + { + "id": 6 + } + ] + }, + { + "id": 6, + "name": "Considine-Koss", + "members": [ + { + "id": 1 + }, + { + "id": 2 + }, + { + "id": 3 + }, + { + "id": 4 + }, + { + "id": 5 + }, + { + "id": 6 + }, + { + "id": 7 + } + ] + }, + { + "id": 7, + "name": "Russel LLC", + "members": [ + { + "id": 1 + }, + { + "id": 2 + }, + { + "id": 3 + }, + { + "id": 4 + } + ] + }, + { + "id": 8, + "name": "Wisoky-Grimes", + "members": [ + { + "id": 1 + }, + { + "id": 2 + } + ] + }, + { + "id": 9, + "name": "Larson Inc", + "members": [ + { + "id": 1 + }, + { + "id": 2 + } + ] + }, + { + "id": 10, + "name": "Franecki-Simonis", + "members": [] + } +] \ No newline at end of file diff --git a/persistence-modules/spring-boot-persistence-4/src/test/resources/users.json b/persistence-modules/spring-boot-persistence-4/src/test/resources/users.json new file mode 100644 index 0000000000..1fa6202dd3 --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/src/test/resources/users.json @@ -0,0 +1,899 @@ +[ + { + "id": 1, + "username": "ecrumbleholme0", + "email": "pmerritt0@wordpress.org", + "groups": [ + { + "id": 70 + }, + { + "id": 67 + }, + { + "id": 54 + }, + { + "id": 41 + }, + { + "id": 40 + }, + { + "id": 5 + }, + { + "id": 82 + } + ], + "profile": { + "id": 1, + "biography": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.", + "website": "https://engadget.com/adipiscing/lorem/vitae/mattis.jpg?non=in&mattis=porttitor&pulvinar=pede&nulla", + "profilePictureUrl": "http://dummyimage.com/207x100.png/dddddd/000000" + }, + "posts": [] + }, + { + "id": 2, + "username": "moldred1", + "email": "grichardes1@shareasale.com", + "groups": [ + { + "id": 39 + }, + { + "id": 53 + }, + { + "id": 26 + }, + { + "id": 70 + }, + { + "id": 49 + }, + { + "id": 33 + }, + { + "id": 64 + }, + { + "id": 65 + }, + { + "id": 14 + }, + { + "id": 10 + } + ], + "profile": { + "id": 2, + "biography": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin risus. Praesent lectus.", + "website": "http://arizona.edu/urna/ut.html?erat=pretium&volutpat=iaculis&in=diam&congue", + "profilePictureUrl": "http://dummyimage.com/200x100.png/dddddd/000000" + }, + "posts": [ + { + "id": 1, + "content": "Curabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.", + "comments": [ + { + "id": 208446, + "test": { + "id": "Optional empowering attitude" + }, + "author": { + "id": 10 + } + }, + { + "id": 229466, + "test": { + "id": "Customizable multi-tasking encryption" + }, + "author": { + "id": 3 + } + }, + { + "id": 408703, + "test": { + "id": "Re-engineered contextually-based protocol" + }, + "author": { + "id": 9 + } + }, + { + "id": 837433, + "test": { + "id": "Centralized well-modulated pricing structure" + }, + "author": { + "id": 8 + } + } + ] + }, + { + "id": 2, + "content": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.", + "comments": [] + }, + { + "id": 3, + "content": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio. Curabitur convallis.\n\nDuis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.\n\nMauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.", + "comments": [ + { + "id": 53333, + "test": { + "id": "Cross-platform bi-directional encoding" + }, + "author": { + "id": 6 + } + }, + { + "id": 806260, + "test": { + "id": "Expanded composite neural-net" + }, + "author": { + "id": 1 + } + }, + { + "id": 266068, + "test": { + "id": "Implemented attitude-oriented knowledge user" + }, + "author": { + "id": 3 + } + } + ] + } + ] + }, + { + "id": 3, + "username": "agoodsall2", + "email": "ofellman2@ibm.com", + "groups": [ + { + "id": 36 + }, + { + "id": 7 + }, + { + "id": 77 + }, + { + "id": 28 + }, + { + "id": 32 + } + ], + "profile": { + "id": 3, + "biography": "In hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo.", + "website": "http://cargocollective.com/consequat/in/consequat/ut/nulla/sed.png?dictumst=faucibus", + "profilePictureUrl": "http://dummyimage.com/224x100.png/cc0000/ffffff" + }, + "posts": [ + { + "id": 4, + "content": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla. Sed vel enim sit amet nunc viverra dapibus. Nulla suscipit ligula in lacus.\n\nCurabitur at ipsum ac tellus semper interdum. Mauris ullamcorper purus sit amet nulla. Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", + "comments": [ + { + "id": 349493, + "test": { + "id": "Operative actuating budgetary management" + }, + "author": { + "id": 2 + } + }, + { + "id": 909598, + "test": { + "id": "Profound next generation product" + }, + "author": { + "id": 4 + } + }, + { + "id": 247072, + "test": { + "id": "Team-oriented multimedia analyzer" + }, + "author": { + "id": 9 + } + } + ] + }, + { + "id": 5, + "content": "Integer ac leo. Pellentesque ultrices mattis odio. Donec vitae nisi.", + "comments": [ + { + "id": 572489, + "test": { + "id": "Open-source optimizing focus group" + }, + "author": { + "id": 5 + } + }, + { + "id": 133947, + "test": { + "id": "Self-enabling attitude-oriented success" + }, + "author": { + "id": 1 + } + }, + { + "id": 496573, + "test": { + "id": "Profit-focused multimedia firmware" + }, + "author": { + "id": 8 + } + }, + { + "id": 137780, + "test": { + "id": "Self-enabling intermediate info-mediaries" + }, + "author": { + "id": 2 + } + } + ] + }, + { + "id": 6, + "content": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.\n\nNullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.", + "comments": [] + } + ] + }, + { + "id": 4, + "username": "cpourvoieur3", + "email": "mlisimore3@unicef.org", + "groups": [ + { + "id": 27 + }, + { + "id": 49 + }, + { + "id": 21 + }, + { + "id": 48 + }, + { + "id": 90 + }, + { + "id": 57 + }, + { + "id": 19 + }, + { + "id": 10 + } + ], + "profile": { + "id": 4, + "biography": "Curabitur gravida nisi at nibh. In hac habitasse platea dictumst. Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", + "website": "http://slideshare.net/rutrum/nulla/tellus/in/sagittis/dui.png?duis=volutpat&at=erat", + "profilePictureUrl": "http://dummyimage.com/167x100.png/cc0000/ffffff" + }, + "posts": [ + { + "id": 7, + "content": "Vestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.\n\nIn congue. Etiam justo. Etiam pretium iaculis justo.\n\nIn hac habitasse platea dictumst. Etiam faucibus cursus urna. Ut tellus.", + "comments": [] + }, + { + "id": 8, + "content": "Sed ante. Vivamus tortor. Duis mattis egestas metus.\n\nAenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", + "comments": [] + }, + { + "id": 9, + "content": "Duis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.\n\nDonec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.\n\nDuis bibendum. Morbi non quam nec dui luctus rutrum. Nulla tellus.", + "comments": [ + { + "id": 727396, + "test": { + "id": "Business-focused maximized framework" + }, + "author": { + "id": 6 + } + }, + { + "id": 529333, + "test": { + "id": "Fully-configurable client-driven Graphic Interface" + }, + "author": { + "id": 1 + } + }, + { + "id": 698528, + "test": { + "id": "Diverse methodical framework" + }, + "author": { + "id": 1 + } + }, + { + "id": 570927, + "test": { + "id": "Profound interactive infrastructure" + }, + "author": { + "id": 5 + } + } + ] + }, + { + "id": 10, + "content": "Proin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.\n\nAenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.", + "comments": [ + { + "id": 374234, + "test": { + "id": "Profit-focused fresh-thinking success" + }, + "author": { + "id": 6 + } + }, + { + "id": 266342, + "test": { + "id": "Advanced optimizing Graphic Interface" + }, + "author": { + "id": 6 + } + }, + { + "id": 970877, + "test": { + "id": "Multi-lateral web-enabled synergy" + }, + "author": { + "id": 8 + } + }, + { + "id": 635357, + "test": { + "id": "Centralized real-time time-frame" + }, + "author": { + "id": 5 + } + }, + { + "id": 818761, + "test": { + "id": "Profit-focused secondary middleware" + }, + "author": { + "id": 2 + } + } + ] + } + ] + }, + { + "id": 5, + "username": "driddoch4", + "email": "hfreake4@simplemachines.org", + "groups": [ + { + "id": 68 + }, + { + "id": 52 + }, + { + "id": 18 + }, + { + "id": 82 + }, + { + "id": 29 + }, + { + "id": 55 + }, + { + "id": 95 + } + ], + "profile": { + "id": 5, + "biography": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", + "website": "http://jiathis.com/turpis/enim/blandit/mi/in.html?duis=augue&mattis=vel&egestas", + "profilePictureUrl": "http://dummyimage.com/181x100.png/5fa2dd/ffffff" + }, + "posts": [ + { + "id": 11, + "content": "Phasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.\n\nProin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.\n\nDuis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.", + "comments": [ + { + "id": 668167, + "test": { + "id": "Decentralized static application" + }, + "author": { + "id": 2 + } + }, + { + "id": 645021, + "test": { + "id": "Progressive cohesive complexity" + }, + "author": { + "id": 8 + } + }, + { + "id": 904836, + "test": { + "id": "Right-sized human-resource middleware" + }, + "author": { + "id": 2 + } + }, + { + "id": 193482, + "test": { + "id": "Organized bottom-line monitoring" + }, + "author": { + "id": 3 + } + } + ] + }, + { + "id": 12, + "content": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.", + "comments": [ + { + "id": 820497, + "test": { + "id": "Open-architected well-modulated structure" + }, + "author": { + "id": 10 + } + } + ] + }, + { + "id": 13, + "content": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.\n\nCras non velit nec nisi vulputate nonummy. Maecenas tincidunt lacus at velit. Vivamus vel nulla eget eros elementum pellentesque.\n\nQuisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.", + "comments": [ + { + "id": 214834, + "test": { + "id": "Face to face content-based contingency" + }, + "author": { + "id": 4 + } + }, + { + "id": 361052, + "test": { + "id": "Vision-oriented client-driven emulation" + }, + "author": { + "id": 10 + } + }, + { + "id": 819369, + "test": { + "id": "Decentralized clear-thinking projection" + }, + "author": { + "id": 9 + } + } + ] + }, + { + "id": 14, + "content": "Integer ac leo. Pellentesque ultrices mattis odio. Donec vitae nisi.\n\nNam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla. Sed vel enim sit amet nunc viverra dapibus. Nulla suscipit ligula in lacus.", + "comments": [] + } + ] + }, + { + "id": 6, + "username": "dvelte5", + "email": "shuke5@canalblog.com", + "groups": [ + { + "id": 86 + }, + { + "id": 28 + }, + { + "id": 8 + }, + { + "id": 22 + } + ], + "profile": { + "id": 6, + "biography": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.", + "website": "http://amazon.co.jp/eget/semper.aspx?faucibus=habitasse&cursus=platea&urna", + "profilePictureUrl": "http://dummyimage.com/179x100.png/dddddd/000000" + }, + "posts": [] + }, + { + "id": 7, + "username": "mhallor6", + "email": "gpetters6@tiny.cc", + "groups": [ + { + "id": 49 + }, + { + "id": 56 + }, + { + "id": 24 + } + ], + "profile": { + "id": 7, + "biography": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla. Sed vel enim sit amet nunc viverra dapibus. Nulla suscipit ligula in lacus.", + "website": "https://globo.com/eget/nunc.js?justo=nulla&eu=neque&massa=libero&donec=convallis&dapibus", + "profilePictureUrl": "http://dummyimage.com/122x100.png/ff4444/ffffff" + }, + "posts": [ + { + "id": 15, + "content": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.", + "comments": [ + { + "id": 380358, + "test": { + "id": "Optimized user-facing software" + }, + "author": { + "id": 1 + } + } + ] + } + ] + }, + { + "id": 8, + "username": "nbergeau7", + "email": "mkibbel7@tmall.com", + "groups": [ + { + "id": 24 + }, + { + "id": 54 + }, + { + "id": 95 + } + ], + "profile": { + "id": 8, + "biography": "Suspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.", + "website": "http://people.com.cn/odio/consequat/varius.jsp?eros=nullam&vestibulum=varius&ac=nulla", + "profilePictureUrl": "http://dummyimage.com/230x100.png/5fa2dd/ffffff" + }, + "posts": [ + { + "id": 16, + "content": "Pellentesque at nulla. Suspendisse potenti. Cras in purus eu magna vulputate luctus.\n\nCum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.", + "comments": [] + }, + { + "id": 17, + "content": "Sed ante. Vivamus tortor. Duis mattis egestas metus.\n\nAenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", + "comments": [ + { + "id": 886087, + "test": { + "id": "Total demand-driven infrastructure" + }, + "author": { + "id": 9 + } + }, + { + "id": 235353, + "test": { + "id": "Versatile mobile monitoring" + }, + "author": { + "id": 4 + } + }, + { + "id": 264476, + "test": { + "id": "Future-proofed static initiative" + }, + "author": { + "id": 2 + } + } + ] + }, + { + "id": 18, + "content": "Praesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.", + "comments": [ + { + "id": 299869, + "test": { + "id": "Pre-emptive 3rd generation pricing structure" + }, + "author": { + "id": 5 + } + }, + { + "id": 82649, + "test": { + "id": "Public-key holistic pricing structure" + }, + "author": { + "id": 2 + } + }, + { + "id": 675757, + "test": { + "id": "Function-based homogeneous monitoring" + }, + "author": { + "id": 4 + } + }, + { + "id": 321146, + "test": { + "id": "Proactive intangible ability" + }, + "author": { + "id": 1 + } + }, + { + "id": 754321, + "test": { + "id": "Operative zero tolerance complexity" + }, + "author": { + "id": 3 + } + } + ] + } + ] + }, + { + "id": 9, + "username": "ddebruin8", + "email": "zdavidovits8@aol.com", + "groups": [ + { + "id": 40 + }, + { + "id": 67 + }, + { + "id": 67 + }, + { + "id": 13 + }, + { + "id": 50 + }, + { + "id": 34 + }, + { + "id": 53 + } + ], + "profile": { + "id": 9, + "biography": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", + "website": "http://shinystat.com/nec/sem/duis/aliquam/convallis/nunc.json?eget=facilisi&semper=cras", + "profilePictureUrl": "http://dummyimage.com/229x100.png/5fa2dd/ffffff" + }, + "posts": [ + { + "id": 19, + "content": "Proin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.\n\nAenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.", + "comments": [ + { + "id": 246330, + "test": { + "id": "Cross-platform needs-based firmware" + }, + "author": { + "id": 10 + } + }, + { + "id": 340531, + "test": { + "id": "Total content-based data-warehouse" + }, + "author": { + "id": 9 + } + }, + { + "id": 145457, + "test": { + "id": "Programmable transitional budgetary management" + }, + "author": { + "id": 3 + } + }, + { + "id": 13492, + "test": { + "id": "Switchable encompassing archive" + }, + "author": { + "id": 8 + } + }, + { + "id": 310239, + "test": { + "id": "Self-enabling attitude-oriented strategy" + }, + "author": { + "id": 4 + } + } + ] + }, + { + "id": 20, + "content": "Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.\n\nFusce consequat. Nulla nisl. Nunc nisl.", + "comments": [] + }, + { + "id": 21, + "content": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.\n\nDuis bibendum. Morbi non quam nec dui luctus rutrum. Nulla tellus.\n\nIn sagittis dui vel nisl. Duis ac nibh. Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", + "comments": [ + { + "id": 909627, + "test": { + "id": "Expanded intangible forecast" + }, + "author": { + "id": 7 + } + } + ] + } + ] + }, + { + "id": 10, + "username": "lwoodrooffe9", + "email": "mhowatt9@kickstarter.com", + "groups": [ + { + "id": 31 + }, + { + "id": 44 + }, + { + "id": 38 + }, + { + "id": 14 + } + ], + "profile": { + "id": 10, + "biography": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.", + "website": "https://blinklist.com/semper/est/quam/pharetra/magna/ac.png?sagittis=eu&nam=tincidunt", + "profilePictureUrl": "http://dummyimage.com/121x100.png/5fa2dd/ffffff" + }, + "posts": [ + { + "id": 22, + "content": "Sed ante. Vivamus tortor. Duis mattis egestas metus.\n\nAenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", + "comments": [ + { + "id": 831777, + "test": { + "id": "Open-source non-volatile help-desk" + }, + "author": { + "id": 7 + } + }, + { + "id": 883941, + "test": { + "id": "Fully-configurable mission-critical emulation" + }, + "author": { + "id": 6 + } + }, + { + "id": 759548, + "test": { + "id": "Right-sized bifurcated strategy" + }, + "author": { + "id": 10 + } + }, + { + "id": 294894, + "test": { + "id": "Balanced explicit paradigm" + }, + "author": { + "id": 3 + } + } + ] + } + ] + } +] \ No newline at end of file diff --git a/persistence-modules/spring-data-jpa-query-3/README.md b/persistence-modules/spring-data-jpa-query-3/README.md index 8b094e66b2..99032138a6 100644 --- a/persistence-modules/spring-data-jpa-query-3/README.md +++ b/persistence-modules/spring-data-jpa-query-3/README.md @@ -8,7 +8,9 @@ This module contains articles about querying data using Spring Data JPA. - [Joining Tables With Spring Data JPA Specifications](https://www.baeldung.com/spring-jpa-joining-tables) - [NonUniqueResultException in Spring Data JPA](https://www.baeldung.com/spring-jpa-non-unique-result-exception) - [Spring Data Repositories – Collections vs. Stream](https://www.baeldung.com/spring-data-collections-vs-stream) +- [Return Map Instead of List in Spring Data JPA](https://www.baeldung.com/spring-data-return-map-instead-of-list) - [Converting List to Page Using Spring Data JPA](https://www.baeldung.com/spring-data-jpa-convert-list-page) +- [@Query Definitions With SpEL Support in Spring Data JPA](https://www.baeldung.com/spring-data-query-definitions-spel) - More articles: [[<-- prev]](../spring-data-jpa-query-2) ### Eclipse Config diff --git a/persistence-modules/spring-data-jpa-repo-3/README.md b/persistence-modules/spring-data-jpa-repo-3/README.md index 623ac66bb3..03b0e7f76b 100644 --- a/persistence-modules/spring-data-jpa-repo-3/README.md +++ b/persistence-modules/spring-data-jpa-repo-3/README.md @@ -8,4 +8,5 @@ This module contains articles about Spring Data JPA. - [Hibernate Natural IDs in Spring Boot](https://www.baeldung.com/spring-boot-hibernate-natural-ids) - [Correct Use of flush() in JPA](https://www.baeldung.com/spring-jpa-flush) - [Difference Between findBy and findOneBy in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-findby-vs-findoneby) +- [How to Get Last Record in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-last-record) - More articles: [[<-- prev]](../spring-data-jpa-repo-2) diff --git a/persistence-modules/spring-data-jpa-repo-4/README.md b/persistence-modules/spring-data-jpa-repo-4/README.md index a8afbbe733..92f4158df8 100644 --- a/persistence-modules/spring-data-jpa-repo-4/README.md +++ b/persistence-modules/spring-data-jpa-repo-4/README.md @@ -4,4 +4,7 @@ - [Unidirectional One-to-Many and Cascading Delete in JPA](https://www.baeldung.com/spring-jpa-unidirectional-one-to-many-and-cascading-delete) - [TRUNCATE TABLE in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-truncate-table) +- [When to Use the getReferenceById() and findById() Methods in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-getreferencebyid-findbyid-methods) +- [Implementing Persistable-Only Entities in Spring Data JPA](https://www.baeldung.com/spring-data-persistable-only-entities) +- [Storing PostgreSQL JSONB Using Spring Boot and JPA](https://www.baeldung.com/spring-boot-jpa-storing-postgresql-jsonb) - More articles: [[<-- prev]](../spring-data-jpa-repo-3) diff --git a/persistence-modules/spring-data-jpa-repo-4/pom.xml b/persistence-modules/spring-data-jpa-repo-4/pom.xml index c823391d9f..9b03f7fdfb 100644 --- a/persistence-modules/spring-data-jpa-repo-4/pom.xml +++ b/persistence-modules/spring-data-jpa-repo-4/pom.xml @@ -30,6 +30,11 @@ org.springframework.boot spring-boot-starter-data-jpa + + io.hypersistence + hypersistence-utils-hibernate-55 + ${hypersistance-utils-hibernate-55.version} + com.h2database h2 @@ -47,6 +52,30 @@ guava ${guava.version} + + org.projectlombok + lombok + + + org.postgresql + postgresql + ${postgresql.version} + + + org.slf4j + slf4j-api + ${org.slf4j.version} + + + ch.qos.logback + logback-core + ${logback.version} + + + ch.qos.logback + logback-classic + ${logback.version} + @@ -98,4 +127,9 @@ + + 3.7.0 + 42.7.1 + + \ No newline at end of file diff --git a/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/Address.java b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/Address.java new file mode 100644 index 0000000000..976a232082 --- /dev/null +++ b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/Address.java @@ -0,0 +1,15 @@ +package com.baeldung.spring.data.persistence.json; + +import lombok.*; + +@Data +@NoArgsConstructor +@AllArgsConstructor +@EqualsAndHashCode +public class Address { + + private String postCode; + + private String city; + +} diff --git a/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/AddressAttributeConverter.java b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/AddressAttributeConverter.java new file mode 100644 index 0000000000..736f5e8ec2 --- /dev/null +++ b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/AddressAttributeConverter.java @@ -0,0 +1,36 @@ +package com.baeldung.spring.data.persistence.json; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import lombok.extern.slf4j.Slf4j; + +import javax.persistence.AttributeConverter; +import javax.persistence.Converter; + +@Converter +@Slf4j +public class AddressAttributeConverter implements AttributeConverter { + + private static final ObjectMapper objectMapper = new ObjectMapper(); + + @Override + public String convertToDatabaseColumn(Address address) { + try { + return objectMapper.writeValueAsString(address); + } catch (JsonProcessingException jpe) { + log.warn("Cannot convert Address into JSON"); + return null; + } + } + + @Override + public Address convertToEntityAttribute(String value) { + try { + return objectMapper.readValue(value, Address.class); + } catch (JsonProcessingException e) { + log.warn("Cannot convert JSON into Address"); + return null; + } + } + +} \ No newline at end of file diff --git a/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/JsonAttributeApplication.java b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/JsonAttributeApplication.java new file mode 100644 index 0000000000..708b43a534 --- /dev/null +++ b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/JsonAttributeApplication.java @@ -0,0 +1,13 @@ +package com.baeldung.spring.data.persistence.json; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class JsonAttributeApplication { + + public static void main(String[] args) { + SpringApplication.run(JsonAttributeApplication.class, args); + } + +} \ No newline at end of file diff --git a/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentEntity.java b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentEntity.java new file mode 100644 index 0000000000..c5fd31ddd3 --- /dev/null +++ b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentEntity.java @@ -0,0 +1,31 @@ +package com.baeldung.spring.data.persistence.json; + +import javax.persistence.*; + +import io.hypersistence.utils.hibernate.type.json.JsonBinaryType; +import lombok.*; +import org.hibernate.annotations.Type; +import org.hibernate.annotations.TypeDef; + +@Entity +@Table(name = "student") +@Data +@Builder +@NoArgsConstructor +@AllArgsConstructor +@EqualsAndHashCode(of = {"id"}) +@TypeDef(name = "jsonb", typeClass = JsonBinaryType.class) +public class StudentEntity { + + @Id + @Column(name = "student_id", length = 8) + private String id; + + @Column(name = "admit_year", length = 4) + private String admitYear; + + @Type(type = "jsonb") + @Column(name = "address", columnDefinition = "jsonb") + private Address address; + +} \ No newline at end of file diff --git a/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentRepository.java b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentRepository.java new file mode 100644 index 0000000000..bae8ab6ad9 --- /dev/null +++ b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentRepository.java @@ -0,0 +1,16 @@ +package com.baeldung.spring.data.persistence.json; + +import org.springframework.data.jpa.repository.Query; +import org.springframework.data.repository.CrudRepository; +import org.springframework.data.repository.query.Param; +import org.springframework.stereotype.Repository; + +import java.util.List; + +@Repository +public interface StudentRepository extends CrudRepository { + + @Query(value = "SELECT * FROM student WHERE address->>'postCode' = :postCode", nativeQuery = true) + List findByAddressPostCode(@Param("postCode") String postCode); + +} \ No newline at end of file diff --git a/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentStrEntity.java b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentStrEntity.java new file mode 100644 index 0000000000..552cdeaed6 --- /dev/null +++ b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentStrEntity.java @@ -0,0 +1,27 @@ +package com.baeldung.spring.data.persistence.json; + +import javax.persistence.*; + +import lombok.*; + +@Entity +@Table(name = "student_str") +@Data +@Builder +@NoArgsConstructor +@AllArgsConstructor +@EqualsAndHashCode(of = {"id"}) +public class StudentStrEntity { + + @Id + @Column(name = "student_id", length = 8) + private String id; + + @Column(name = "admit_year", length = 4) + private String admitYear; + + @Convert(converter = AddressAttributeConverter.class) + @Column(name = "address", length = 500) + private Address address; + +} \ No newline at end of file diff --git a/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentStrRepository.java b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentStrRepository.java new file mode 100644 index 0000000000..ce40166b22 --- /dev/null +++ b/persistence-modules/spring-data-jpa-repo-4/src/main/java/com/baeldung/spring/data/persistence/json/StudentStrRepository.java @@ -0,0 +1,16 @@ +package com.baeldung.spring.data.persistence.json; + +import org.springframework.data.jpa.repository.Query; +import org.springframework.data.repository.CrudRepository; +import org.springframework.data.repository.query.Param; +import org.springframework.stereotype.Repository; + +import java.util.List; + +@Repository +public interface StudentStrRepository extends CrudRepository { + + @Query(value = "SELECT * FROM student WHERE address->>'postCode' = :postCode", nativeQuery = true) + List findByAddressPostCode(@Param("postCode") String postCode); + +} diff --git a/persistence-modules/spring-data-jpa-repo-4/src/test/java/com/baeldung/spring/data/persistence/json/JsonAttributeLiveTest.java b/persistence-modules/spring-data-jpa-repo-4/src/test/java/com/baeldung/spring/data/persistence/json/JsonAttributeLiveTest.java new file mode 100644 index 0000000000..1242b3f2f4 --- /dev/null +++ b/persistence-modules/spring-data-jpa-repo-4/src/test/java/com/baeldung/spring/data/persistence/json/JsonAttributeLiveTest.java @@ -0,0 +1,76 @@ +package com.baeldung.spring.data.persistence.json; + +import org.junit.jupiter.api.*; +import org.springframework.boot.test.context.SpringBootTest; + +import javax.inject.Inject; +import java.util.List; +import java.util.Optional; + +import static org.assertj.core.api.Assertions.assertThat; + +@SpringBootTest(classes = JsonAttributeApplication.class) +@TestMethodOrder(MethodOrderer.OrderAnnotation.class) +class JsonAttributeLiveTest { + + @Inject + private StudentStrRepository studentStrRepository; + + @Inject + private StudentRepository studentRepository; + + @Test + @Order(10) + void whenSaveAnStudentStrEntityAndFindById_thenTheRecordPresentsInDb() { + String studentId = "23876371"; + String postCode = "KT6 7BB"; + + Address address = new Address(postCode, "London"); + StudentStrEntity studentStrEntity = StudentStrEntity.builder() + .id(studentId) + .admitYear("2023") + .address(address) + .build(); + + StudentStrEntity savedStudentStrEntity = studentStrRepository.save(studentStrEntity); + + Optional studentEntityOptional = studentStrRepository.findById(studentId); + assertThat(studentEntityOptional.isPresent()).isTrue(); + + studentStrEntity = studentEntityOptional.get(); + assertThat(studentStrEntity.getId()).isEqualTo(studentId); + assertThat(studentStrEntity.getAddress().getPostCode()).isEqualTo(postCode); + } + + @Test + @Order(20) + void whenSaveAnStudentEntityAndFindById_thenTheRecordPresentsInDb() { + String studentId = "23876371"; + String postCode = "KT6 7BB"; + + Address address = new Address(postCode, "London"); + StudentEntity studentEntity = StudentEntity.builder() + .id(studentId) + .admitYear("2023") + .address(address) + .build(); + + StudentEntity savedStudentEntity = studentRepository.save(studentEntity); + + Optional studentEntityOptional = studentRepository.findById(studentId); + assertThat(studentEntityOptional.isPresent()).isTrue(); + + studentEntity = studentEntityOptional.get(); + assertThat(studentEntity.getId()).isEqualTo(studentId); + assertThat(studentEntity.getAddress().getPostCode()).isEqualTo(postCode); + } + + @Test + @Order(50) + void whenFindByAddressPostCode_thenReturnListIsNotEmpty() { + String postCode = "KT6 7BB"; + List studentStrEntityList = studentStrRepository.findByAddressPostCode(postCode); + assertThat(studentStrEntityList).isNotEmpty(); + } + +} \ No newline at end of file diff --git a/persistence-modules/spring-data-jpa-repo/pom.xml b/persistence-modules/spring-data-jpa-repo/pom.xml index 4ce19d83d0..1eed56266a 100644 --- a/persistence-modules/spring-data-jpa-repo/pom.xml +++ b/persistence-modules/spring-data-jpa-repo/pom.xml @@ -8,9 +8,9 @@ com.baeldung - parent-boot-2 + parent-boot-3 0.0.1-SNAPSHOT - ../../parent-boot-2 + ../../parent-boot-3 @@ -47,6 +47,31 @@ guava ${guava.version} + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + + + + + org.springframework.boot + spring-boot-maven-plugin + + + repackage + + repackage + + + true + + + + + + + \ No newline at end of file diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/CustomItemRepositoryImpl.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/CustomItemRepositoryImpl.java index 820a2cdd41..132095213d 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/CustomItemRepositoryImpl.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/CustomItemRepositoryImpl.java @@ -1,12 +1,12 @@ package com.baeldung.boot.daos.impl; -import javax.persistence.EntityManager; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Repository; import com.baeldung.boot.daos.CustomItemRepository; import com.baeldung.boot.domain.Item; +import jakarta.persistence.EntityManager; @Repository public class CustomItemRepositoryImpl implements CustomItemRepository { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/CustomItemTypeRepositoryImpl.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/CustomItemTypeRepositoryImpl.java index e057f36b26..d533503b57 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/CustomItemTypeRepositoryImpl.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/CustomItemTypeRepositoryImpl.java @@ -1,6 +1,5 @@ package com.baeldung.boot.daos.impl; -import javax.persistence.EntityManager; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Repository; @@ -8,6 +7,8 @@ import org.springframework.stereotype.Repository; import com.baeldung.boot.daos.CustomItemTypeRepository; import com.baeldung.boot.domain.ItemType; +import jakarta.persistence.EntityManager; + @Repository public class CustomItemTypeRepositoryImpl implements CustomItemTypeRepository { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/ExtendedRepositoryImpl.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/ExtendedRepositoryImpl.java index fbe6695844..14d59b9d7e 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/ExtendedRepositoryImpl.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/daos/impl/ExtendedRepositoryImpl.java @@ -3,18 +3,19 @@ package com.baeldung.boot.daos.impl; import java.io.Serializable; import java.util.List; -import javax.persistence.EntityManager; -import javax.persistence.TypedQuery; -import javax.persistence.criteria.CriteriaBuilder; -import javax.persistence.criteria.CriteriaQuery; -import javax.persistence.criteria.Root; -import javax.transaction.Transactional; import org.springframework.data.jpa.repository.support.JpaEntityInformation; import org.springframework.data.jpa.repository.support.SimpleJpaRepository; import com.baeldung.boot.daos.ExtendedRepository; +import jakarta.persistence.EntityManager; +import jakarta.persistence.TypedQuery; +import jakarta.persistence.criteria.CriteriaBuilder; +import jakarta.persistence.criteria.CriteriaQuery; +import jakarta.persistence.criteria.Root; +import jakarta.transaction.Transactional; + public class ExtendedRepositoryImpl extends SimpleJpaRepository implements ExtendedRepository { private EntityManager entityManager; diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Item.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Item.java index 8ac06af15a..1a9c418064 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Item.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Item.java @@ -2,9 +2,9 @@ package com.baeldung.boot.domain; import java.math.BigDecimal; -import javax.persistence.Entity; -import javax.persistence.Id; -import javax.persistence.ManyToOne; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.ManyToOne; @Entity public class Item { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/ItemType.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/ItemType.java index 8a52a9847c..41f248c149 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/ItemType.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/ItemType.java @@ -3,11 +3,11 @@ package com.baeldung.boot.domain; import java.util.ArrayList; import java.util.List; -import javax.persistence.CascadeType; -import javax.persistence.Entity; -import javax.persistence.Id; -import javax.persistence.JoinColumn; -import javax.persistence.OneToMany; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.JoinColumn; +import jakarta.persistence.OneToMany; @Entity public class ItemType { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/KVTag.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/KVTag.java index 1901f43c0a..fd19370c3b 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/KVTag.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/KVTag.java @@ -1,6 +1,6 @@ package com.baeldung.boot.domain; -import javax.persistence.Embeddable; +import jakarta.persistence.Embeddable; @Embeddable public class KVTag { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Location.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Location.java index 9c1b93d551..34d5ea7315 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Location.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Location.java @@ -3,11 +3,11 @@ package com.baeldung.boot.domain; import java.util.ArrayList; import java.util.List; -import javax.persistence.CascadeType; -import javax.persistence.Entity; -import javax.persistence.Id; -import javax.persistence.JoinColumn; -import javax.persistence.OneToMany; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.JoinColumn; +import jakarta.persistence.OneToMany; @Entity public class Location { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/MerchandiseEntity.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/MerchandiseEntity.java index e94c23de86..613aeb21ef 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/MerchandiseEntity.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/MerchandiseEntity.java @@ -1,11 +1,12 @@ package com.baeldung.boot.domain; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; import java.math.BigDecimal; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; + @Entity public class MerchandiseEntity { @Id diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/SkillTag.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/SkillTag.java index 0933a3e6af..c46017bce7 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/SkillTag.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/SkillTag.java @@ -1,6 +1,6 @@ package com.baeldung.boot.domain; -import javax.persistence.Embeddable; +import jakarta.persistence.Embeddable; @Embeddable public class SkillTag { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Store.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Store.java index 5b4b831cc7..ea01094c98 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Store.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Store.java @@ -3,12 +3,12 @@ package com.baeldung.boot.domain; import java.util.ArrayList; import java.util.List; -import javax.persistence.CascadeType; -import javax.persistence.Entity; -import javax.persistence.Id; -import javax.persistence.JoinColumn; -import javax.persistence.ManyToOne; -import javax.persistence.OneToMany; +import jakarta.persistence.CascadeType; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.JoinColumn; +import jakarta.persistence.ManyToOne; +import jakarta.persistence.OneToMany; @Entity public class Store { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Student.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Student.java index 1003167cc7..01c26fa987 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Student.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/boot/domain/Student.java @@ -1,11 +1,12 @@ package com.baeldung.boot.domain; -import javax.persistence.ElementCollection; -import javax.persistence.Entity; -import javax.persistence.Id; import java.util.ArrayList; import java.util.List; +import jakarta.persistence.ElementCollection; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; + @Entity public class Student { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/derivedquery/entity/User.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/derivedquery/entity/User.java index 49e824f09f..b5b5eb40b0 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/derivedquery/entity/User.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/derivedquery/entity/User.java @@ -1,11 +1,12 @@ package com.baeldung.derivedquery.entity; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.Id; -import javax.persistence.Table; import java.time.ZonedDateTime; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.Id; +import jakarta.persistence.Table; + @Table(name = "users") @Entity public class User { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Foo.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Foo.java index f799635eae..f725be4adf 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Foo.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Foo.java @@ -2,11 +2,11 @@ package com.baeldung.jpa.domain; import java.io.Serializable; -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; @Entity public class Foo implements Serializable { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Fruit.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Fruit.java index 6314c58da3..84c9daf4c4 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Fruit.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Fruit.java @@ -1,8 +1,8 @@ package com.baeldung.jpa.domain; -import javax.persistence.Entity; -import javax.persistence.Id; -import javax.xml.bind.annotation.XmlRootElement; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.xml.bind.annotation.XmlRootElement; @XmlRootElement @Entity diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Passenger.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Passenger.java index acfb7947c0..3a98d97426 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Passenger.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Passenger.java @@ -1,12 +1,13 @@ package com.baeldung.jpa.domain; -import javax.persistence.Basic; -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.Id; import java.util.Objects; +import jakarta.persistence.Basic; +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.Id; + @Entity public class Passenger { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Song.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Song.java index 9dcde0bea4..caeef47f8f 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Song.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/jpa/domain/Song.java @@ -1,14 +1,16 @@ package com.baeldung.jpa.domain; -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; import java.time.LocalDateTime; +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; + @Entity public class Song { - @Id private long id; + @Id + private long id; private String name; @Column(name = "length_in_seconds") private int lengthInSeconds; diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/spring/data/persistence/like/model/Movie.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/spring/data/persistence/like/model/Movie.java index f500b61a8a..292219b7b1 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/spring/data/persistence/like/model/Movie.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/spring/data/persistence/like/model/Movie.java @@ -1,9 +1,9 @@ package com.baeldung.spring.data.persistence.like.model; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; @Entity public class Movie { diff --git a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/storedprocedure/entity/Car.java b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/storedprocedure/entity/Car.java index 2817c25ff7..0a61a16e24 100644 --- a/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/storedprocedure/entity/Car.java +++ b/persistence-modules/spring-data-jpa-repo/src/main/java/com/baeldung/storedprocedure/entity/Car.java @@ -1,13 +1,13 @@ package com.baeldung.storedprocedure.entity; -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.NamedStoredProcedureQuery; -import javax.persistence.StoredProcedureParameter; -import javax.persistence.ParameterMode; +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.persistence.NamedStoredProcedureQuery; +import jakarta.persistence.ParameterMode; +import jakarta.persistence.StoredProcedureParameter; @Entity @NamedStoredProcedureQuery(name = "Car.getTotalCardsbyModelEntity", procedureName = "GET_TOTAL_CARS_BY_MODEL", parameters = { diff --git a/persistence-modules/spring-data-jpa-repo/src/test/java/com/baeldung/boot/daos/ExtendedStudentRepositoryIntegrationTest.java b/persistence-modules/spring-data-jpa-repo/src/test/java/com/baeldung/boot/daos/ExtendedStudentRepositoryIntegrationTest.java index 51874e2bbe..f05f4fc86c 100644 --- a/persistence-modules/spring-data-jpa-repo/src/test/java/com/baeldung/boot/daos/ExtendedStudentRepositoryIntegrationTest.java +++ b/persistence-modules/spring-data-jpa-repo/src/test/java/com/baeldung/boot/daos/ExtendedStudentRepositoryIntegrationTest.java @@ -4,7 +4,6 @@ import static org.assertj.core.api.Assertions.assertThat; import java.util.List; -import javax.annotation.Resource; import org.junit.Before; import org.junit.Test; @@ -16,6 +15,8 @@ import org.springframework.test.context.junit4.SpringRunner; import com.baeldung.boot.BootApplication; import com.baeldung.boot.domain.Student; +import jakarta.annotation.Resource; + @RunWith(SpringRunner.class) @ContextConfiguration(classes = { BootApplication.class}) @DirtiesContext diff --git a/persistence-modules/spring-data-jpa-repo/src/test/java/com/baeldung/jpa/PassengerRepositoryIntegrationTest.java b/persistence-modules/spring-data-jpa-repo/src/test/java/com/baeldung/jpa/PassengerRepositoryIntegrationTest.java index 1676cd6406..e7689c3f14 100644 --- a/persistence-modules/spring-data-jpa-repo/src/test/java/com/baeldung/jpa/PassengerRepositoryIntegrationTest.java +++ b/persistence-modules/spring-data-jpa-repo/src/test/java/com/baeldung/jpa/PassengerRepositoryIntegrationTest.java @@ -6,10 +6,6 @@ import static org.hamcrest.core.IsNot.not; import java.util.List; -import javax.persistence.EntityManager; -import javax.persistence.PersistenceContext; -import javax.transaction.Transactional; - import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; @@ -21,6 +17,10 @@ import org.springframework.test.context.junit4.SpringRunner; import com.baeldung.jpa.domain.Passenger; import com.baeldung.jpa.repository.PassengerRepository; +import jakarta.persistence.EntityManager; +import jakarta.persistence.PersistenceContext; +import jakarta.transaction.Transactional; + @RunWith(SpringRunner.class) @ContextConfiguration(classes = { JpaApplication.class}) @DirtiesContext diff --git a/persistence-modules/spring-hibernate-5/pom.xml b/persistence-modules/spring-hibernate-5/pom.xml index 3ad8f791df..b6c8176f2f 100644 --- a/persistence-modules/spring-hibernate-5/pom.xml +++ b/persistence-modules/spring-hibernate-5/pom.xml @@ -125,6 +125,20 @@ + + + + org.apache.maven.plugins + maven-surefire-plugin + + + --add-opens java.base/java.lang=ALL-UNNAMED + + + + + + 5.0.2.RELEASE @@ -132,7 +146,7 @@ 4.2.1.RELEASE 5.6.15.Final - 5.8.2.Final + 5.11.12.Final 8.2.0 9.0.0.M26 1.1 diff --git a/persistence-modules/spring-hibernate-5/src/main/resources/ehcache.xml b/persistence-modules/spring-hibernate-5/src/main/resources/ehcache.xml new file mode 100644 index 0000000000..6b92162c3c --- /dev/null +++ b/persistence-modules/spring-hibernate-5/src/main/resources/ehcache.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/persistence-modules/spring-hibernate-5/src/test/java/com/baeldung/persistence/deletion/model/Foo.java b/persistence-modules/spring-hibernate-5/src/test/java/com/baeldung/persistence/deletion/model/Fooo.java similarity index 93% rename from persistence-modules/spring-hibernate-5/src/test/java/com/baeldung/persistence/deletion/model/Foo.java rename to persistence-modules/spring-hibernate-5/src/test/java/com/baeldung/persistence/deletion/model/Fooo.java index f0d57c5b6e..13f5edcfdf 100644 --- a/persistence-modules/spring-hibernate-5/src/test/java/com/baeldung/persistence/deletion/model/Foo.java +++ b/persistence-modules/spring-hibernate-5/src/test/java/com/baeldung/persistence/deletion/model/Fooo.java @@ -7,13 +7,13 @@ import javax.persistence.*; @Entity @Table(name = "FOO") @Where(clause = "DELETED = 0") -public class Foo { +public class Fooo { - public Foo() { + public Fooo() { super(); } - public Foo(final String name) { + public Fooo(final String name) { super(); this.name = name; } diff --git a/persistence-modules/spring-hibernate-5/src/test/java/com/baeldung/persistence/service/DeletionIntegrationTest.java b/persistence-modules/spring-hibernate-5/src/test/java/com/baeldung/persistence/service/DeletionIntegrationTest.java index dfc944f649..55a287a4e7 100644 --- a/persistence-modules/spring-hibernate-5/src/test/java/com/baeldung/persistence/service/DeletionIntegrationTest.java +++ b/persistence-modules/spring-hibernate-5/src/test/java/com/baeldung/persistence/service/DeletionIntegrationTest.java @@ -14,7 +14,7 @@ import org.springframework.transaction.annotation.Transactional; import com.baeldung.persistence.deletion.config.PersistenceJPAConfigDeletion; import com.baeldung.persistence.deletion.model.Bar; import com.baeldung.persistence.deletion.model.Baz; -import com.baeldung.persistence.deletion.model.Foo; +import com.baeldung.persistence.deletion.model.Fooo; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; @@ -41,29 +41,29 @@ public class DeletionIntegrationTest { @Test @Transactional public final void givenEntityIsRemoved_thenItIsNotInDB() { - Foo foo = new Foo("foo"); - entityManager.persist(foo); + Fooo fooo = new Fooo("foo"); + entityManager.persist(fooo); flushAndClear(); - foo = entityManager.find(Foo.class, foo.getId()); - assertThat(foo, notNullValue()); + fooo = entityManager.find(Fooo.class, fooo.getId()); + assertThat(fooo, notNullValue()); - entityManager.remove(foo); + entityManager.remove(fooo); flushAndClear(); - assertThat(entityManager.find(Foo.class, foo.getId()), nullValue()); + assertThat(entityManager.find(Fooo.class, fooo.getId()), nullValue()); } @Test @Transactional public final void givenEntityIsRemovedAndReferencedByAnotherEntity_thenItIsNotRemoved() { Bar bar = new Bar("bar"); - Foo foo = new Foo("foo"); - foo.setBar(bar); - entityManager.persist(foo); + Fooo fooo = new Fooo("foo"); + fooo.setBar(bar); + entityManager.persist(fooo); flushAndClear(); - foo = entityManager.find(Foo.class, foo.getId()); + fooo = entityManager.find(Fooo.class, fooo.getId()); bar = entityManager.find(Bar.class, bar.getId()); entityManager.remove(bar); flushAndClear(); @@ -71,8 +71,8 @@ public class DeletionIntegrationTest { bar = entityManager.find(Bar.class, bar.getId()); assertThat(bar, notNullValue()); - foo = entityManager.find(Foo.class, foo.getId()); - foo.setBar(null); + fooo = entityManager.find(Fooo.class, fooo.getId()); + fooo.setBar(null); entityManager.remove(bar); flushAndClear(); @@ -83,16 +83,16 @@ public class DeletionIntegrationTest { @Transactional public final void givenEntityIsRemoved_thenRemovalIsCascaded() { Bar bar = new Bar("bar"); - Foo foo = new Foo("foo"); - foo.setBar(bar); - entityManager.persist(foo); + Fooo fooo = new Fooo("foo"); + fooo.setBar(bar); + entityManager.persist(fooo); flushAndClear(); - foo = entityManager.find(Foo.class, foo.getId()); - entityManager.remove(foo); + fooo = entityManager.find(Fooo.class, fooo.getId()); + entityManager.remove(fooo); flushAndClear(); - assertThat(entityManager.find(Foo.class, foo.getId()), nullValue()); + assertThat(entityManager.find(Fooo.class, fooo.getId()), nullValue()); assertThat(entityManager.find(Bar.class, bar.getId()), nullValue()); } @@ -116,39 +116,39 @@ public class DeletionIntegrationTest { @Test @Transactional public final void givenEntityIsDeletedWithJpaBulkDeleteStatement_thenItIsNotInDB() { - Foo foo = new Foo("foo"); - entityManager.persist(foo); + Fooo fooo = new Fooo("foo"); + entityManager.persist(fooo); flushAndClear(); - entityManager.createQuery("delete from Foo where id = :id").setParameter("id", foo.getId()).executeUpdate(); + entityManager.createQuery("delete from Foo where id = :id").setParameter("id", fooo.getId()).executeUpdate(); - assertThat(entityManager.find(Foo.class, foo.getId()), nullValue()); + assertThat(entityManager.find(Fooo.class, fooo.getId()), nullValue()); } @Test @Transactional public final void givenEntityIsDeletedWithNativeQuery_thenItIsNotInDB() { - Foo foo = new Foo("foo"); - entityManager.persist(foo); + Fooo fooo = new Fooo("foo"); + entityManager.persist(fooo); flushAndClear(); - entityManager.createNativeQuery("delete from FOO where ID = :id").setParameter("id", foo.getId()).executeUpdate(); + entityManager.createNativeQuery("delete from FOO where ID = :id").setParameter("id", fooo.getId()).executeUpdate(); - assertThat(entityManager.find(Foo.class, foo.getId()), nullValue()); + assertThat(entityManager.find(Fooo.class, fooo.getId()), nullValue()); } @Test @Transactional public final void givenEntityIsSoftDeleted_thenItIsNotReturnedFromQueries() { - Foo foo = new Foo("foo"); - entityManager.persist(foo); + Fooo fooo = new Fooo("foo"); + entityManager.persist(fooo); flushAndClear(); - foo = entityManager.find(Foo.class, foo.getId()); - foo.setDeleted(); + fooo = entityManager.find(Fooo.class, fooo.getId()); + fooo.setDeleted(); flushAndClear(); - assertThat(entityManager.find(Foo.class, foo.getId()), nullValue()); + assertThat(entityManager.find(Fooo.class, fooo.getId()), nullValue()); } private void flushAndClear() { diff --git a/persistence-modules/spring-jdbc/README.md b/persistence-modules/spring-jdbc/README.md index 19f8537a4e..de2153088f 100644 --- a/persistence-modules/spring-jdbc/README.md +++ b/persistence-modules/spring-jdbc/README.md @@ -7,4 +7,4 @@ - [Obtaining Auto-generated Keys in Spring JDBC](https://www.baeldung.com/spring-jdbc-autogenerated-keys) - [Spring JDBC Batch Inserts](https://www.baeldung.com/spring-jdbc-batch-inserts) - [Fix EmptyResultDataAccessException When Using JdbcTemplate](https://www.baeldung.com/jdbctemplate-fix-emptyresultdataaccessexception) -- [How to replace deprecated jdbcTemplate.queryForObject and jdbcTemplate.query in spring boot 2.4.X and above](https://www.baeldung.com/spring-boot-replace-deprecated-jdbctemplate-queryforobject-query) +- [How to Replace Deprecated jdbcTemplate.queryForObject and jdbcTemplate.query in Spring Boot 2.4.X and above](https://www.baeldung.com/spring-boot-replace-deprecated-jdbctemplate-queryforobject-query) diff --git a/persistence-modules/spring-jpa-2/pom.xml b/persistence-modules/spring-jpa-2/pom.xml index c20c43912b..e3387d94c0 100644 --- a/persistence-modules/spring-jpa-2/pom.xml +++ b/persistence-modules/spring-jpa-2/pom.xml @@ -55,7 +55,7 @@ io.jsonwebtoken jjwt-api - 0.12.3 + ${jjwt.version} @@ -107,6 +107,18 @@ jackson-core ${jakson-core.version} + + ch.qos.logback + logback-classic + ${logback.version} + test + + + ch.qos.logback + logback-core + ${logback.version} + test + @@ -115,8 +127,11 @@ 3.1.0 10.1.9 - 2.15.1 - 2.14.2 + 2.16.1 + 2.16.1 + + 0.12.3 + 1.4.14 \ No newline at end of file diff --git a/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/config/MultitenantConfiguration.java b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/config/MultitenantConfiguration.java index 64d66f5cc9..cf547066dd 100644 --- a/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/config/MultitenantConfiguration.java +++ b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/config/MultitenantConfiguration.java @@ -1,5 +1,6 @@ package com.baeldung.multitenant.config; +import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.jdbc.DataSourceBuilder; import org.springframework.context.annotation.Bean; @@ -18,6 +19,9 @@ import java.util.Properties; @Configuration public class MultitenantConfiguration { + @Value("${defaultTenant}") + private String defaultTenant; + @Bean @ConfigurationProperties(prefix = "tenants") public DataSource dataSource() { @@ -43,7 +47,7 @@ public class MultitenantConfiguration { } AbstractRoutingDataSource dataSource = new MultitenantDataSource(); - dataSource.setDefaultTargetDataSource(resolvedDataSources.get("tenant_1")); + dataSource.setDefaultTargetDataSource(resolvedDataSources.get(defaultTenant)); dataSource.setTargetDataSources(resolvedDataSources); dataSource.afterPropertiesSet(); diff --git a/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/security/AuthenticationService.java b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/security/AuthenticationService.java index 42eab1d6de..c547640b4d 100644 --- a/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/security/AuthenticationService.java +++ b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/security/AuthenticationService.java @@ -1,26 +1,31 @@ package com.baeldung.multitenant.security; import io.jsonwebtoken.Jwts; -import io.jsonwebtoken.SignatureAlgorithm; +import io.jsonwebtoken.security.Keys; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.core.Authentication; -import jakarta.servlet.http.HttpServletRequest; -import jakarta.servlet.http.HttpServletResponse; +import javax.crypto.SecretKey; +import java.nio.charset.StandardCharsets; import java.util.Collections; import java.util.Date; public class AuthenticationService { private static final long EXPIRATIONTIME = 864_000_00; // 1 day in milliseconds - private static final String SIGNINGKEY = "SecretKey"; + private static final String SECRETKEY = "q3t6w9zCFJNcQfTjWnq3t6w9zCFJNcQfTjWnZr4u7xADGKaPd"; + private static final SecretKey SIGNINGKEY = Keys.hmacShaKeyFor(SECRETKEY.getBytes(StandardCharsets.UTF_8)); private static final String PREFIX = "Bearer"; public static void addToken(HttpServletResponse res, String username, String tenant) { - String JwtToken = Jwts.builder().setSubject(username) - .setAudience(tenant) - .setExpiration(new Date(System.currentTimeMillis() + EXPIRATIONTIME)) - .signWith(SignatureAlgorithm.HS512, SIGNINGKEY) + String JwtToken = Jwts.builder() + .subject(username) + .audience().add(tenant).and() + .issuedAt(new Date(System.currentTimeMillis())) + .expiration(new Date(System.currentTimeMillis() + EXPIRATIONTIME)) + .signWith(SIGNINGKEY) .compact(); res.addHeader("Authorization", PREFIX + " " + JwtToken); } @@ -29,9 +34,8 @@ public class AuthenticationService { String token = req.getHeader("Authorization"); if (token != null) { String user = Jwts.parser() - .setSigningKey(SIGNINGKEY) - .build().parseClaimsJws(token.replace(PREFIX, "")) - .getBody() + .verifyWith(SIGNINGKEY) + .build().parseClaimsJws(token.replace(PREFIX, "").trim()).getPayload() .getSubject(); if (user != null) { return new UsernamePasswordAuthenticationToken(user, null, Collections.emptyList()); @@ -48,7 +52,7 @@ public class AuthenticationService { } String tenant = Jwts.parser() .setSigningKey(SIGNINGKEY) - .build().parseClaimsJws(token.replace(PREFIX, "")) + .build().parseClaimsJws(token.replace(PREFIX, "").trim()) .getBody() .getAudience() .iterator() diff --git a/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/security/SecurityConfiguration.java b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/security/SecurityConfiguration.java index acad0d61e4..b1b12b3b9f 100644 --- a/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/security/SecurityConfiguration.java +++ b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/multitenant/security/SecurityConfiguration.java @@ -4,9 +4,9 @@ import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.authentication.AuthenticationManager; import org.springframework.security.config.Customizer; +import org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; -import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer; import org.springframework.security.config.annotation.web.configurers.HeadersConfigurer; import org.springframework.security.config.http.SessionCreationPolicy; import org.springframework.security.core.userdetails.User; @@ -42,16 +42,21 @@ public class SecurityConfiguration { return new BCryptPasswordEncoder(); } + @Bean + public AuthenticationManager authenticationManager(AuthenticationConfiguration authenticationConfiguration) throws Exception { + return authenticationConfiguration.getAuthenticationManager(); + } + @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { - final AuthenticationManager authenticationManager = http.getSharedObject(AuthenticationManager.class); + final AuthenticationManager authenticationManager = authenticationManager(http.getSharedObject(AuthenticationConfiguration.class)); http .authorizeHttpRequests(authorize -> authorize.requestMatchers("/login").permitAll().anyRequest().authenticated()) .sessionManagement(securityContext -> securityContext.sessionCreationPolicy(SessionCreationPolicy.STATELESS)) .addFilterBefore(new LoginFilter("/login", authenticationManager), UsernamePasswordAuthenticationFilter.class) .addFilterBefore(new AuthenticationFilter(), UsernamePasswordAuthenticationFilter.class) - .csrf(AbstractHttpConfigurer::disable) + .csrf(csrf -> csrf.disable()) .headers(header -> header.frameOptions(HeadersConfigurer.FrameOptionsConfig::disable)) .httpBasic(Customizer.withDefaults()); diff --git a/persistence-modules/spring-jpa-2/src/main/resources/application.properties b/persistence-modules/spring-jpa-2/src/main/resources/application.properties index 0270c1683e..61fccff032 100644 --- a/persistence-modules/spring-jpa-2/src/main/resources/application.properties +++ b/persistence-modules/spring-jpa-2/src/main/resources/application.properties @@ -9,3 +9,7 @@ spring.datasource.url=jdbc:h2:mem:db;DB_CLOSE_DELAY=-1 #spring.datasource.username=mysqluser #spring.datasource.password=mysqlpass #spring.datasource.url=jdbc:mysql://localhost:3306/myDb?createDatabaseIfNotExist=true + +# MultiTenantApplication +defaultTenant=tenant_1 +spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect \ No newline at end of file diff --git a/pom.xml b/pom.xml index e0e9629b98..32920bb91f 100644 --- a/pom.xml +++ b/pom.xml @@ -465,10 +465,10 @@ parent-spring-4 parent-spring-5 parent-spring-6 - - apache-spark + apache-spark jhipster-modules + web-modules/restx @@ -615,10 +615,10 @@ parent-spring-4 parent-spring-5 parent-spring-6 - - apache-spark + apache-spark jhipster-modules + web-modules/restx @@ -733,7 +733,7 @@ jackson-simple java-blockchain java-jdi - + java-panama javafx javax-sound javaxval-2 @@ -821,14 +821,14 @@ spring-actuator spring-ai spring-aop-2 - + spring-batch-2 spring-batch spring-boot-modules spring-boot-rest spring-cloud-modules/spring-cloud-azure spring-cloud-modules/spring-cloud-circuit-breaker - + spring-cloud-modules/spring-cloud-contract spring-cloud-modules/spring-cloud-eureka spring-cloud-modules/spring-cloud-netflix-feign @@ -973,7 +973,7 @@ jackson-simple java-blockchain java-jdi - + java-panama javafx javax-sound javaxval-2 @@ -1060,14 +1060,14 @@ spring-actuator spring-ai spring-aop-2 - + spring-batch-2 spring-batch spring-boot-modules spring-boot-rest spring-cloud-modules/spring-cloud-azure spring-cloud-modules/spring-cloud-circuit-breaker - + spring-cloud-modules/spring-cloud-contract spring-cloud-modules/spring-cloud-eureka spring-cloud-modules/spring-cloud-netflix-feign @@ -1215,7 +1215,7 @@ 3.21.0 1.18.30 2.1.214 - 32.1.3-jre + 33.0.0-jre 3.3.0 diff --git a/quarkus-modules/quarkus-vs-springboot/hyperfoil/volume/zip_code_database.csv b/quarkus-modules/quarkus-vs-springboot/hyperfoil/volume/zip_code_database.csv new file mode 100644 index 0000000000..e1fcdaca8d --- /dev/null +++ b/quarkus-modules/quarkus-vs-springboot/hyperfoil/volume/zip_code_database.csv @@ -0,0 +1,12079 @@ +zip,type,decommissioned,primary_city,acceptable_cities,unacceptable_cities,state,county,timezone,area_codes,world_region,country,latitude,longitude,irs_estimated_population +00501,UNIQUE,0,Holtsville,,"Internal Revenue Service",NY,"Suffolk County",America/New_York,631,NA,US,40.81,-73.04,562 +00544,UNIQUE,0,Holtsville,,"Internal Revenue Service",NY,"Suffolk County",America/New_York,631,NA,US,40.81,-73.04,0 +00601,STANDARD,0,Adjuntas,,"Colinas Del Gigante, Jard De Adjuntas, Urb San Joaquin",PR,"Adjuntas Municipio",America/Puerto_Rico,"787,939",NA,US,18.16,-66.72,0 +00602,STANDARD,0,Aguada,,"Alts De Aguada, Bo Guaniquilla, Comunidad Las Flores, Ext Los Robles, Sect Juan Ramirez, Sect La Ceiba, Sect Mariano Concepcion, Urb Isabel La Catolica",PR,"Aguada Municipio",America/Puerto_Rico,"787,939",NA,US,18.38,-67.18,0 +00603,STANDARD,0,Aguadilla,Ramey,"Bda Caban, Bda Esteves, Bo Borinquen, Bo Ceiba Baja, Brisas Del Paraiso, Ext El Prado, Ext Marbella, Jard De Borinquen, Las Brisas, Repto Jimenez, Repto Juan Aguiar, Repto Lopez, Repto Tres Palmas, Sect Las Villas, Urb Borinquen, Urb Cristal, Urb El Prado, Urb Esteves, Urb Garcia, Urb Las Americas, Urb Las Casitas Country Club, Urb Maleza Gdns, Urb Marbella, Urb Ramey, Urb Rubianes, Urb San Carlos, Urb Santa Marta, Urb Victoria, Villa Alegria, Villa Linda, Villa Lydia, Villa Universitaria, Villas De Almeria, Vista Alegre, Vista Verde",PR,"Aguadilla Municipio",America/Puerto_Rico,787,NA,US,18.43,-67.15,0 +00604,"PO BOX",0,Aguadilla,Ramey,,PR,,America/Puerto_Rico,,NA,US,18.43,-67.15,0 +00605,"PO BOX",0,Aguadilla,,,PR,,America/Puerto_Rico,,NA,US,18.43,-67.15,0 +00606,STANDARD,0,Maricao,,"Urb San Juan Bautista",PR,"Maricao Municipio",America/Puerto_Rico,"787,939",NA,US,18.18,-66.98,0 +00610,STANDARD,0,Anasco,,"Brisas De Anasco, Est De Valle Verde, Jard De Anasco, Paseo Del Valle, Repto Daguey, Sect Sanchez, Urb Los Arboles, Urb San Antonio, Urb Valle Real",PR,"Anasco Municipio",America/Puerto_Rico,787,NA,US,18.28,-67.14,0 +00611,"PO BOX",0,Angeles,,,PR,,America/Puerto_Rico,,NA,US,18.28,-66.79,0 +00612,STANDARD,0,Arecibo,,"Alt De Juncos, Alt De San Felipe, Bda Duhamel, Bo El Pasaje, Bo Islote, Bo Islote Ii, Bo Jarealitos, Bo Obrero, Bo Santana, Ciudad Atlantis, Comunidad Buenos Aires, Est De Arecibo, Est De Balseiro, Ext Marisol, Ext Tanama, Ext Villa Los Santos I, Ext Villa Los Santos Ii, Hacienda Toledo, Jard De Arecibo, Jard De San Rafael, Parc Mattey, Parc Navas, Parc Perez, Parc Rodriguez Olmo, Parq De Jardines, Paseo De La Reina, Paseo Del Prado, Paseos Reales, Repto Diosesano, Repto Marquez, Repto San Jose, Repto San Juan, Rpto Capitolio, Sect Abra, Sect El Cano, Sect Las Animas, Sect Muelle, Urb Arecibo Gdns, Urb Brisas Del Mar Ii, Urb College Park, Urb Costas Del Atlantico, Urb El Paraiso, Urb Factor, Urb Garcia, Urb Garden View, Urb La Mucura, Urb Las Brisas, Urb Los Aires, Urb Los Corales, Urb Los Llanos, Urb Los Pinos, Urb Los Pinos Ii, Urb Marisol, Urb Martell, Urb Ocean Vw, Urb Paseos Del Prado, Urb Radioville, Urb Regional, Urb San Daniel, Urb San Felipe, Urb San Lorenzo, Urb Tanama, Urb University Gdns, Urb Vict",PR,"Arecibo Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.73,0 +00613,"PO BOX",0,Arecibo,,,PR,,America/Puerto_Rico,,NA,US,18.45,-66.73,0 +00614,"PO BOX",0,Arecibo,,,PR,,America/Puerto_Rico,,NA,US,18.45,-66.73,0 +00616,STANDARD,0,Bajadero,,"Brisas Del Valle",PR,"Arecibo Municipio",America/Puerto_Rico,787,NA,US,18.42,-66.67,0 +00617,STANDARD,0,Barceloneta,,"Atlantic View Village, Bda Catalana, Brisas De Llanadas, Brisas Del Monte, Est De Barceloneta, Est De Florida, Ext Est De Imbery, Ext Parc Punta Palmas, Isla De Roque Estates, Parc Garrochales, Parc Imbery, Parc Magueyes, Parc Palenque, Parc Punta Palmas, Parc Tiburon, Repto Las Llanadas, Urb Cataluna, Urb Cimarrona Ct, Urb City Paradise, Urb Las Delicias, Urb Las Praderas, Urb Las Praderas Ii, Urb Ortega, Urb Palmeras, Urb Plazuela Estates, Urb Sol Naciente, Villa Barcelona, Villa Central, Villa Georgetti, Villas De La Sabana",PR,"Barceloneta Municipio",America/Puerto_Rico,787,NA,US,18.45,-66.56,0 +00622,STANDARD,0,Boqueron,,"Villa Taina",PR,"Cabo Rojo Municipio",America/Puerto_Rico,787,NA,US,17.99,-67.15,0 +00623,STANDARD,0,"Cabo Rojo",,"Alts De Joyuda, Alts Del Mar, Bo Ballaja, Bo Monte Grande, Est De Miramar, Est Reales, Ext Elizabeth, Ext La Concepcion, Ext Parc Elizabeth, Ext Sierra Linda, Finquita Betances, Haciendas De Belvedere, Haciendas De Cabo Rojo, Haciendas De Miramar, Jard Del Puerto, Mans De Cabo Rojo, Mansiones, Parc Betances, Parc Elizabeth, Parc Las 35, Parc Las Margaritas, Parc Puerto Real, Paseos De Plan Bonito, Qtas De Cabo Rojo, Qtas De Miradero, Qtas Del Deportivo, Repto Miradero, Repto Oliveras, Urb Alta Vista, Urb Ana Maria, Urb Borinquen, Urb El Retiro, Urb Elizabeth, Urb Joyuda Coast, Urb Kofresi, Urb La Concepcion, Urb Las Vistas, Urb Monte Grande, Urb Monte Rio, Urb Montesol, Urb Ramirez, Urb Remanso De Cabo Rojo, Urb San Miguel, Urb Sierra Linda, Villa Aida, Villa Del Carmen, Villa Luisa, Villas De Plan Bonito",PR,"Cabo Rojo Municipio",America/Puerto_Rico,787,NA,US,18.08,-67.14,0 +00624,STANDARD,0,Penuelas,,"Alt De Penuelas Ii, Alts De Penuelas, Brisas De Guayanes, Colinas De Penuelas, Ext Alts De Penuelas Ii, Jard De Penuelas, Mans De Puerto Galexda, Portales De Vista Bahia, Repto Kennedy, Sect Mal Paso, Urb El Madrigal, Urb El Penon, Urb Guayanes, Urb Llanos De Sabana Palma, Urb Monte Verde, Urb Penuelas Valley, Urb Rio Sol, Urb Riverside, Urb Sagrado Corazon, Valle Alto, Villa Esmeralda, Vista Bahia",PR,"Penuelas Municipio",America/Puerto_Rico,787,NA,US,18.06,-66.72,0 +00692,STANDARD,0,"Vega Alta",,"Alts De Cerro Gordo 1&2, Alts De Cerro Gordo 3&4, Bda Corea, Bo Brenas, Comunidad Manantial, Est Cerro Gordo, Est Del Valle, Est San Nicolas, Ext La Esperanza, Ext La Inmaculada, Ext Sanchez, Ext Santa Ana, Ext Santa Maria, Ext Santa Rita, Hacienda El Molino, Parc Carmen, Parc Ponderosa, Urb Cerro Gordo Hls, Urb Cielo Dorado, Urb Golden Vlg, Urb Grand Palm Ii, Urb Isomar, Urb La Esperanza, Urb La Inmaculada, Urb La Inmaculada Ct, Urb Las Colinas, Urb Las Palmas Cerro Gordo, Urb Puesta Del Sol, Urb Santa Ana, Urb Santa Rita, Urb Sierra Maestra, Urb Treasure Pt, Urb Vega Dorada, Urb Velomas, Villa Linares, Vistas De La Vega",PR,"Vega Alta Municipio",America/Puerto_Rico,787,NA,US,18.41,-66.32,0 +00693,STANDARD,0,"Vega Baja",,"Alt De Vega Baja, Bda Collazo, Bda Sandin, Bo Algarrobo, Bo Carmelita, Bo La Trocha, Bo Las Granjas, Bo Ojo De Agua, Bo Pueblo Nuevo, Bo Yeguada, Brisas De Tortuguero, Brisas Del Mar, Ceiba Sabana, Ciudad Real, Colinas Del Marquez, Comunidad Bethel, Est De Tortuguero, Ext Ocean Front, Hacienda La Arboleda, Haciendas De Monteverde, Jard De Vega Baja, Los Naranjos, Ocean Park, Parc Amadeo, Qtas De Tortuguero, Repto Sobrino, Sect Arenales, Sect Brisas Del Rosario, Sect El Lido, Sect Lomba, Sect Miraflores, Urb Alborada, Urb Atlantic View, Urb Brasilia, Urb Cabo Caribe, Urb Camino Del Sol, Urb Ciara Del Sol, Urb El Rosario, Urb El Verde, Urb Guarico, Urb La Cruv, Urb Las Delicias, Urb Las Flores, Urb Las Terrenas, Urb Los Almendros, Urb Los Hucares, Urb Monte Carlo, Urb Ocean Front, Urb San Agustin, Urb San Demetrio, Urb San Vicente, Urb Vega Baja Lakes, Urb Vega Serena, Villa Del Rosario, Villa Los Pescadores, Villa Pinares, Villa Real, Villa Rosa 2, Villas De La Playa, Vista Verde",PR,"Vega Baja Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.39,0 +00694,"PO BOX",0,"Vega Baja",,,PR,"Vega Baja Municipio",America/Puerto_Rico,,NA,US,18.48,-66.39,0 +00698,STANDARD,0,Yauco,,"Alts De Yauco, Alts Del Cafetal, Bda Galarza, Bda Las Delicias, Bda Lluberas, Bo Alto De Cuba, Bo Palomas, Colinas De Yauco, Est De Yauco, Est De Yodimar, Ext Alts De Yauco, Ext Alts De Yauco Ii, Hacienda Mariani, Haciendas Florida, Jard De Borinquen, Jard De Montblanc, Jard M Blanco, Qtas De Valle Verde, Repto Esperanza, Res Barinas, Sect La Vega, Sect Las Pelas, Sect Pueblo Nuevo, Urb Barinas, Urb Buena Vista, Urb Costa Sur, Urb El Rocio, Urb El Rosario, Urb Hill View, Urb La Quinta, Urb Los Angeles, Urb Los Pinos, Urb Luchetti, Urb Mifedo, Urb Monteverde, Urb Roosevelt, Urb San Francisco, Urb Turnkey, Veredas De Yauco, Villa Milagros, Villa Olimpia, Villas Del Cafetal, Villas Del Cafetal Ii, Vista Real, Vistas De Monte Sol, Vistas Del Palmar",PR,"Yauco Municipio",America/Puerto_Rico,787,NA,US,18.03,-66.86,0 +00703,STANDARD,0,"Aguas Buenas",,"Est Del Rio, Mans De Aguas Buenas, Urb San Antonio",PR,"Aguas Buenas Municipio",America/Puerto_Rico,787,NA,US,18.25,-66.1,0 +00704,STANDARD,0,Aguirre,,"Est De Trinitaria, Ext El Coqui, Parc Cabasa, Parc Parque, Paseo Costa Del Sur, Sect Lanausse, Urb Eugene Rice, Urb Gonzalez, Urb La Fabrica, Urb Monte Soria 2, Villas Del Coqui",PR,"Salinas Municipio",America/Puerto_Rico,,NA,US,17.96,-66.22,0 +00705,STANDARD,0,Aibonito,,"Bda San Luis, Bo Llanos, Brisas De Aibonito, Colinas De San Francisco, Est Del Llano, Ext Bella Vista, Ext San Luis, Ext Villa Rosales, Praderas De Aibonito, Repto Robles, Urb Bella Vista, Urb Buena Vista, Urb Golden Vlg Iv, Urb La Providencia, Villa De La Rosa, Villa Rosales, Villas Del Coqui",PR,"Aibonito Municipio",America/Puerto_Rico,787,NA,US,18.14,-66.26,0 +00707,STANDARD,0,Maunabo,,"Brisas De Emajaguas, Jard Los Almendros, Urb San Pedro, Villa Alegre, Villas De Maunabo",PR,"Maunabo Municipio",America/Puerto_Rico,"787,939",NA,US,18,-65.9,0 +00714,STANDARD,0,Arroyo,,"Brisas Del Mar, Calle Estancias De Mirasol, Ext Jard De Arroyo, Jard De Arroyo, Jard De Lafayette, Parq De Guasimas, Qtas De Guasima, Repto Bello Mar, Urb Arroyo Del Mar, Urb Belinda, URB LAS 500, Urb Miramar 1, Urb Palmar 2, Urb San Antonio, Villas De Arroyo, Villas De Lafayette",PR,"Arroyo Municipio",America/Puerto_Rico,"787,939",NA,US,17.97,-66.06,0 +00715,STANDARD,0,Mercedita,Ponce,"Bo Calzada, Bo La Cuarta, Brisas De Maravilla, Central Mercedita",PR,"Ponce Municipio",America/Puerto_Rico,787,NA,US,18.01,-66.56,0 +00716,STANDARD,0,Ponce,Mercedita,"Bo Bucana, Bo Campo Alegre, Bo Sabanetas, Bo Tenerias, Comunidad Tabaiba, Est Del Carmen, Ext Alhambra, Ext Alta Vista, Ext Villa Del Carmen, Hillcrest Village, Jard Alhambra, Jard Fagot, Parc Amalia Marin, Parc Sabanetas, Parq Del Rio, Repto Anaida, Repto Sabanetas, Sect Los Potes, Sect Playita, Sect Salistral, Urb Alhambra, Urb Alhambra Ct, Urb Alta Vista, Urb Anaida, Urb Bella Vista, Urb Camino Del Sur, Urb Costa Caribe, Urb Costa Sabana, Urb El Monte, Urb Flamboyanes, Urb Las Monjitas, Urb Los Almendros, Urb Los Caobos, Urb Sagrado Corazon, Urb San Tomas, Urb Santa Clara, Valle Real, Valle Verde, Villa De Juan, Villa Del Carmen, Villa Del Sagrado Corazon, Villa Esperanza, Villa Flores, Villa Pampanos, Villa Tabaiba, Vista Point, Vistas Del Mar",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,17.98,-66.6,0 +00717,STANDARD,0,Ponce,,"Bda Belgica, Bda Mariani, Bda Salazar, Bda Santa Rosa, Bo Caracoles, Bo Cuatro Calles, Bo San Anton, Ext Salazar, Repto Universitario, Urb Buena Vista, Urb Constancia, Urb Constancia Gdns, Urb El Bosque, Urb Los Maestros, Urb Mariani, Urb Mercedita, Urb Patio Laboy, Urb Perla Del Sur, Urb San Antonio, Urb San Jorge, Urb Santa Maria, Urb Starlight, Villa Grillasca, Vista Alegre",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,18,-66.61,0 +00718,STANDARD,0,Naguabo,,"Bo Mariana, Brisas De Naguabo, Hacienda Grande, Jard De Esperanza, Jard De La Via, Jard Del Este, Mans Playa Hucares, Repto Santiago, Urb Casabella, Urb City Palace, Urb Diplo, Urb Juan Mendoza, Urb Promised Land, Urb Ramon Rivero, Urb Santo Tomas, Villa Del Rosario",PR,"Naguabo Municipio",America/Puerto_Rico,787,NA,US,18.21,-65.73,0 +00719,STANDARD,0,Naranjito,,"Jard De Naranjito, Sect Chevres",PR,"Naranjito Municipio",America/Puerto_Rico,787,NA,US,18.3,-66.24,0 +00720,STANDARD,0,Orocovis,,"Alt De Orocovis, Urb Santa Teresita, Villas De Orocovix I, Villas De Orocovix Ii",PR,"Orocovis Municipio",America/Puerto_Rico,"787,939",NA,US,18.22,-66.39,0 +00721,"PO BOX",0,Palmer,"Rio Grande",,PR,,America/Puerto_Rico,,NA,US,18.37,-65.77,0 +00723,STANDARD,0,Patillas,,"Jard De Mamey, Jard De Patillas, Parq Del Sol, Portales De Jacaboa, Urb El Paraiso, Urb Mariani, Urb San Benito, Urb San Jose, Urb San Martin, Urb Solimar, Valle Alto, Valle De La Providencia, Villas De Patillas",PR,"Patillas Municipio",America/Puerto_Rico,,NA,US,18,-66.01,0 +00725,STANDARD,0,Caguas,,"Alt De Caguas, Alt Del Turabo, Bda Morales, Bosques De La Sierra, Brisas Del Parque I, Brisas Del Parque Ii, Est El Verde, Ext Caguax, Ext El Verde, Ext La Granja, Ext Villa Blanca, Hacienda Borinquen, Jard Pla, Lomas De La Serrania, Parq Las Mercedes, Paseo Del Rio, Qtas De San Luis 1, Qtas De San Luis 2, Qtas De Villa Blanca, Repto Caguax, Repto Solano, Res Bairoa, Terr De Borinquen, Urb Balcones Las Catalinas, Urb Batista, Urb Billy Suarez, Urb Bonneville Gardens, Urb Bonneville Gdns, Urb Bonneville Terr, Urb Borinquen Valley, Urb Borinquen Valley 2, Urb Brooklyn, Urb Bunker, Urb Caguas Milenio, Urb Caguas Milenio Ii, Urb Caguas Norte, Urb Caribe Gardens, Urb Caribe Gdns, Urb Condado Moderno, Urb Condado Viejo, Urb El Retiro, Urb El Rincon De La Serrania, Urb El Verde, Urb Grillo, Urb Jose Delgado, Urb Jose Mercado, Urb La Granja, Urb La Hacienda, Urb La Meseta, Urb Machin, Urb Mariolga, Urb Montefiori, Urb Monticielo, Urb Myrlena, Urb Nazario, Urb Notre Dame, Urb Paradise, Urb San Alfonso, Urb San Antonio",PR,"Caguas Municipio",America/Puerto_Rico,"787,939",NA,US,18.23,-66.03,0 +00726,"PO BOX",0,Caguas,,,PR,,America/Puerto_Rico,,NA,US,18.23,-66.03,0 +00727,STANDARD,0,Caguas,,"Alt De La Fuente, Alt Villa Del Rey, Bosque Verde, Chalets De Bairoa, Ciudad Jardin De Bairoa, Est De Bairoa, Est Degetau, Est Del Turabo, Hacienda San Jose, Jard De Caguas, La Cima I, Mans De Ciudad Jardin Bairoa, Mans El Paraiso, Parq Del Monte, Parq Del Monte 2, Parq Del Rio, Parq Las Haciendas, Repto San Jose, Sect Altos De La Fuente, Urb Altomonte, Urb Altos De La Fuente, Urb Arbolada, Urb Asomante, Urb Bairoa Golden Gate Ii, Urb Bairoa Golden Gates, Urb Bairoa Park, Urb Bonneville Hts, Urb Bonneville Manor, Urb Bonneville Vly, Urb Cautiva, Urb Diamond Vlg, Urb El Valle, Urb Idamaris Gardens, Urb Idamaris Gdns, Urb La Estancia, Urb La Reserva, Urb Las Nubes, Urb Mirador De Bairoa, Urb Palmas Del Turabo, Urb Sanjuanera, Urb Surena, Urb Terralinda, Urb Turabo Gardens, Urb Turabo Gdns, Valle Tolima, Valle Verde, Villa Caliz, Villa Caribe, Villa Del Rey 3, Villa Del Rey 4, Villa Del Rey 5, Villa Esperanza, Villa Hermosa, Villa Nueva",PR,"Caguas Municipio",America/Puerto_Rico,"787,939",NA,US,18.22,-66.07,0 +00728,STANDARD,0,Ponce,,"Bda Baldorioty, Bo Magueyes, Bosque Senorial, Brisas Del Mar, Comunidad Punta Diamante, Ext Jard Del Caribe, Ext Las Delicias 2, Ext Punto Oro, Ext Villa Paraiso, Hacienda La Matilde, Hacienda Las Lomas, Jard Del Caribe, Jard Del Caribe 5, Parc El Tuque, Parc Magueyes, Parc Nueva Vida, Parc Nuevas Magueyes, Parc Quebrada Limon, Qtas Del Sur, Res Canas Housing, Res Perla Del Bucana, Sect La Cotorra, Sect Las Batatas, Sect Las Cucharas, Sect Playita, Urb Baldorioty, Urb Baramaya, Urb Bello Horizonte, Urb Canas, Urb Casa Mia, Urb La Providencia, Urb Las Delicias, Urb Las Margaritas, Urb Morell Campos, Urb Punto Oro, Urb Rio Canas, Urb San Antonio, Urb San Jose, Valle Altamira, Valle De Andalucia, Valle Del Rey, Villa Delicias, Villa Paraiso, Villa Rio Canas",PR,"Ponce Municipio",America/Puerto_Rico,,NA,US,17.99,-66.66,0 +00729,STANDARD,0,Canovanas,,"Brisas De Canovanas, Brisas De Loiza, Ciudad Jardin De Canovanas, Est Del Rio, Ext Villas De Loiza, Haciendas De Canovanas, Jard De Canovanas, Jard De Palmarejo, Las Quintas De Altamira, Parc Central, Parc Monteverde, Parc San Isidro, Parc Villa Delicias, Qtas De Canovanas, Qtas Jard De Parmarejo, Urb Country View, Urb Country View Loiza, Urb Del Pilar, Urb Forest Plantation, Urb Las Haciendas Canovanas, Urb Las Vegas, Urb Loiza Valley, Urb Los Eucaliptos, Urb Pueblo Indio, Urb River Gdns, Urb River Plantation, Urb River Valley, Urb River Valley Pk, Urb Town Pk, Urb Usubal, Villas De Loiza, Villas Del Este, Villas Doradas",PR,"Canovanas Municipio",America/Puerto_Rico,787,NA,US,18.37,-65.9,0 +00730,STANDARD,0,Ponce,,"Alt De Jacaranda, Alt Del Madrigal, Bda Borinquen, Bda Clausells, Bda Ferran, Bda Tamarindo, Bo La Ponderosa, Bo Magueyes, Bo Pueblito Nuevo, Bo Tamarindo, Comunidad Playita Ferry, Est Del Golf Club, Ext El Madrigal, Ext La Guadalupe, Ext Qtas De Monserrate, Ext Santa Teresita, Ext Valle Alto, Jard De Ponce, Lomas De Country Club, Qtas De Monserrate, Sect Clausell, Sect La Ponderosa, Sect Las Canitas, Sect Playita, Urb El Madrigal, Urb Ferry Barranca, Urb Glenview Gdns, Urb Jacaranda, Urb Jaime L Drew, Urb La Guadalupe, Urb La Lula, Urb La Rambla, Urb Las Monjitas, Urb Morell Campos, Urb Nuevo Mameyes, Urb Santa Teresita, Urb Tibes, Valle Alto, Villa Dos Rios",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,18.03,-66.62,0 +00731,STANDARD,0,Ponce,,"Urb Riberas De Bucana, Urb Terra Senorial",PR,"Ponce Municipio",America/Puerto_Rico,787,NA,US,18.11,-66.63,0 +00732,"PO BOX",0,Ponce,,,PR,,America/Puerto_Rico,,NA,US,17.98,-66.6,0 +00733,"PO BOX",0,Ponce,,,PR,,America/Puerto_Rico,,NA,US,17.98,-66.6,0 +00734,"PO BOX",0,Ponce,,,PR,,America/Puerto_Rico,,NA,US,17.98,-66.6,0 +00735,STANDARD,0,Ceiba,"Roosevelt Rds, Roosevelt Roads","Brisas De Ceiba, Ext Villa Del Pilar, Jard Avila, Jard De Ceiba, Jard De Ceiba Ii, Parc Calderonas, Parc Calderonas Nuevas, Paseo De La Costa, Paseos De Ceiba, Res La Ceiba, Urb Celina, Urb Roosevelt Gdns, Urb Santa Maria, Urb Vegas De Ceiba, Villa Del Pilar, Villa Flores",PR,"Ceiba Municipio",America/Puerto_Rico,787,NA,US,18.25,-65.68,0 +00736,STANDARD,0,Cayey,,"Bda Buena Vista, Bda Cantera, Bda Nueva, Bda Polvorin, Bda Vieques, Bo Beatriz, Bo Carite, Bo Cedro, Bo Farallon, Bo Guavate, Bo Las Parras, Bo Mogote, Bo Montellano, Bo Pedro Avila, Bo Vegas, Chalets Las Muesas, Colinas De Cayey, Colinas View, Comunidad San Tomas, Est De Las Brumas, Est De Monte Rio, Hacienda Vistas Del Plata, Jard De Cayey, Jard Del Caribe, Mans De Los Cedros, Mans Monte Verde, Parc El Polvorin, Paseo De Las Brumas, Praderas Del Plata, Repto Ana Luisa, Repto Montellano, Sect Pepe Hoyo, Sect Sanchez, Urb Aponte, Urb Bosch, Urb Carrasquillo, Urb El Remanso, Urb El Rocio, Urb El Torito, Urb Fullana, Urb La Planicie, Urb La Plata, Urb Las Muesas, Urb Minima, Urb Mirador Echevarri, Urb Mirador Universitario, Urb Miradores De Cayey, Urb San Cristobal, Urb San Martin, Valle Alto, Villa Verde",PR,"Cayey Municipio",America/Puerto_Rico,"787,939",NA,US,18.11,-66.16,0 +00737,"PO BOX",0,Cayey,,,PR,,America/Puerto_Rico,,NA,US,18.11,-66.16,0 +00738,STANDARD,0,Fajardo,,"Alts De Monte Brisas, Alts De San Pedro, Bda Obrera, Bda Roosevelt, Bo Jerusalen, Bo Proyecto Fema, Bo Proyecto Veve Calzada 3, Bo Vega Baja, Ext Melendez, Ext Veve Calzada, Jard De Monte Brisas, La Costa Apts, Mans Punta Del Este, Qtas De Fajardo, Terr Demajagua, Terr Demajagua 2, Urb Alhambra, Urb Altamira, Urb Baralt, Urb Batey, Urb Fajardo Gdns, Urb Garcia Ponce, Urb La Costa Gdns Homes, Urb Marines, Urb Melendez, Urb Monte Brisas 1, Urb Monte Brisas 2, Urb Monte Brisas 3, Urb Monte Brisas 5, Urb Monte Vista, Urb Montemar, Urb Naranjo Valley, Urb Puertas Del Sol, Urb Rafael Bermudez, Urb San Pedro, Urb Santa Isidra 1, Urb Santa Isidra 2, Urb Santa Isidra 3, Urb Santa Isidra 4, Urb Veve Calzada, Urb Viera, Valle Verde, Villa Clarita, Villa Marina, Vistas Del Convento, Vistas Del Mar",PR,"Fajardo Municipio",America/Puerto_Rico,"787,939",NA,US,18.33,-65.65,0 +00739,STANDARD,0,Cidra,,"Bosque Real, Ciudad Primavera, Est Del Bosque, Hacienda Primavera, Jard De Rabanal, Jard Treasure Island, Parc Gandara, Parc Gandara Ii, Sect Campobello, Sect Lozada, Urb Campo Bello, Urb Campo Lago, Urb Campo Primavera, Urb Domingo Alejandro, Urb Domingo Rodriguez, Urb Ferrer, Urb Freire, Urb Monte Primavera, Urb Sabanera, Urb Treasure Vly, Villa Del Carmen, Villas De San Ignacio, Vista Monte, Vistas De Sabanera",PR,"Cidra Municipio",America/Puerto_Rico,787,NA,US,18.17,-66.15,0 +00740,STANDARD,0,"Puerto Real",,"Valle Puerto Real",PR,"Fajardo Municipio",America/Puerto_Rico,,NA,US,18.33,-65.63,0 +00741,STANDARD,0,"Punta Santiago","Punta Stgo","Urb Verdemar, Villa Palmira",PR,"Humacao Municipio",America/Puerto_Rico,,NA,US,18.16,-65.75,0 +00742,STANDARD,0,"Roosevelt Roads","Ceiba, Roosevelt Rds",,PR,,America/Puerto_Rico,,NA,US,18.27,-65.65,0 +00744,"PO BOX",0,"Rio Blanco",,,PR,,America/Puerto_Rico,,NA,US,18.22,-65.79,0 +00745,STANDARD,0,"Rio Grande",,"Alt Rio Grande, Bda Shangai, Est Del Sol, Ext Est Del Sol, Hacienda Las Garzas, Jard Rio Grande, Parc La Dolores, Repto Costa Del Sol, Urb Cambalache I, Urb Cambalache Ii, Urb Casa Verde, Urb Coco Beach, Urb Galateo, Urb Jose H Ramirez, Urb Jose Ph Hernandez, Urb Los Arboles, Urb Los Maestros, Urb Miramelinda Estate, Urb Pedregales, Urb Ponderosa, Urb Rio Grande Est, Urb Rio Grande Hls, Urb Sra Del Carmen, Villa Realidad, Villa Vizcay, Villas De Rio Grande, Vistas De Rio Grande I, Vistas De Rio Grande Ii, Vistas Del Mar",PR,"Rio Grande Municipio",America/Puerto_Rico,787,NA,US,18.38,-65.83,0 +00751,STANDARD,0,Salinas,,"Bo Coco Nuevo, Bo Coco Viejo, Bo Playita, Bo Santa Ana I, Bo Santa Ana Iii, Brisas De Evelymar, Est De Evelymar, Ext Carmen, Ext Monserrate, Jard De Salinas, Sect Campito, Urb Corales Del Mar, Urb La Arboleda, Urb La Carmen, Urb La Providencia, Urb Las Antillas, Urb Las Mercedes, Urb Llanos De Providencia, Urb Marbella, Urb Monserrate, Urb Salimar, Villa Cofresi, Villa Natalia",PR,"Salinas Municipio",America/Puerto_Rico,787,NA,US,17.97,-66.29,0 +00754,STANDARD,0,"San Lorenzo",,"Alt De San Lorenzo, Bda Roosevelt, Bosque Llano, Ciudad Masso, Ext Alt De San Lorenzo, Ext Bda Roosevelt, Ext Jard De San Lorenzo, Ext Tamarindo, Hacienda Florida, Jard De Cerro Gordo, Jard De San Lorenzo, Mans De Monte Sereno, Paseo De Las Flores, Paseo De San Lorenzo, Urb Los Caminos, Urb Los Flamboyanes, Urb Masso, Urb Monte Rey, Urb Munoz Marin, Urb Portal Del Sol, Urb San Lorenzo Valley, Urb Santa Clara, Urb Savannah Real, Urb Tamarindo 1, Urb Valentina, Urb Valentina 2, Villas Del Hato, Vistas De San Lorenzo",PR,"San Lorenzo Municipio",America/Puerto_Rico,787,NA,US,18.19,-65.96,0 +00757,STANDARD,0,"Santa Isabel",,"Alt De Santa Isabel, Bda Felicia 1, Bda San Felipe, Brisas Del Prado, Est De Santa Isabel, Ext Bda Monserrate, Hacienda Concordia, Hacienda Condcordia 2, Hacienda Isabel, Jard De Santa Isabel, Paseo Jacaranda, Portal De La Reina, Praderas Del Sur, Sect Villa Del Mar, Urb Alborada, Urb Buenos Aires, Urb Santiago Apostol, Valle Costero, Villa Camarero, Villa Retiro Sur, Villa Serena",PR,"Santa Isabel Municipio",America/Puerto_Rico,787,NA,US,17.97,-66.4,0 +00765,STANDARD,0,Vieques,,"Bo Coffi, Bo Tortuguero, Urb Isabel Ii, Urb Lucila Franco",PR,"Vieques Municipio",America/Puerto_Rico,787,NA,US,18.13,-65.44,0 +00766,STANDARD,0,Villalba,,"Alt De Villalba, Alts Del Alba, Bo Camarones, Est De Mayoral, Est De Santa Rosa, Ext Est De Mayoral, Portales Del Alba, Qtas Del Alba, Urb La Vega, Urb Las Alondras, Urb Luceros De Villalba, Urb Tierra Santa, Villa Alba, Villa Laura, Vista Alegre, Vista Bella",PR,"Villalba Municipio",America/Puerto_Rico,"787,939",NA,US,18.13,-66.48,0 +00767,STANDARD,0,Yabucoa,,"Alts De Terralinda, Ext Villas De Buenaventura, Jard De Yabucoa, Parq Ind Juan Martin, Repto Horizonte, Sect Piedra Azul, Urb Calvario, Urb Jaime C Rodriguez, Urb Los Angeles, Urb Mendez, Urb Santa Elena, Urb Santa Maria, Valles De Yabucoa, Villa El Recreo, Villa Hilda, Villas De Buenaventura",PR,"Yabucoa Municipio",America/Puerto_Rico,787,NA,US,18.04,-65.87,0 +00769,STANDARD,0,Coamo,,"Alts De Coamo, Bda San Antonio, Est De Coamo, Est De Hucar, Ext Jard De Coamo, Hacienda Del Rio, Hacienda Miraflores, Haciendas Monterrey, Jard De Coamo, Jard De Santa Ana, Mans De Coamo, Parc Niagara, Parq De Las Flores, Paseo Real, Qtas De Coamo, Urb Bella Vista Est, Urb Coamo Gdns, Urb El Bosque, Urb El Eden, Urb El Mirador, Urb La Arboleda, Urb Las Aguilas, Urb Las Fuentes De Coamo, Urb Monte Flores, Urb Monte Real, Urb Mountain Vw, Urb Paraiso De Coamo, Urb Provincias Del Rio 1, Urb Provincias Del Rio 2, Urb San Antonio, Urb Vistamar, Valle Abajo, Valle Arriba, Valle Escondido, Villa Cristina, Villa Madrid, Villa Santa Catalina, Villa Tropical, Vista Del Sol, Vistas De Coamo",PR,"Coamo Municipio",America/Puerto_Rico,787,NA,US,18.08,-66.36,0 +00771,STANDARD,0,"Las Piedras",,"Colinas De San Agustin, Est De Los Artesanos, Est Del Rocio, Ext La Inmaculada, Ext Las Mercedes, Jard De Oriente, Mans De Las Piedras, Mans De Los Artesanos, Olympic Hls, Paseo De Los Artesanos, Paseo Samaritano, Portales De Las Piedras, Repto Arenales, Urb April Gdns, Urb Camino Sereno, Urb Campo Real, Urb La Estancia, Urb La Inmaculada, Urb Las Campinas I, Urb Las Campinas Ii, Urb Las Campinas Iii, Urb Olimpic Cts, Urb Olimpic Pk, Urb Olivia Pk, Urb Olympic Ville, Urb Oriente, Urb Palma Royale, Urb Park Hurst, Valle Piedras, Villa Las Mercedes, Villas De San Cristobal, Villas De San Cristobal Ii, Vistas Del Rio",PR,"Las Piedras Municipio",America/Puerto_Rico,787,NA,US,18.18,-65.86,0 +00772,STANDARD,0,Loiza,,"Jard De Loiza, Sect Villa Canona, Urb Santiago, Vistas Del Oceano",PR,"Loiza Municipio",America/Puerto_Rico,,NA,US,18.43,-65.88,0 +00773,STANDARD,0,Luquillo,,"Brisas De Luquillo, Brisas Del Mar, Est Del Atlantico, Hacienda Margarita, Hacienda Paloma, Hacienda Paloma Ii, Urb Alamar, Urb Costa Azul, Urb Los Paisajes, Urb Luquillo Lomas, Urb Luquillo Mar, Urb Paisaje Del Lago, Urb Paisajes Del Rio, Urb River Edge Hl, Urb Solimar, Urb Vilomar, Villa Angelina, Vistas De Luquillo, Vistas De Luquillo Ii",PR,"Luquillo Municipio",America/Puerto_Rico,"787,939",NA,US,18.37,-65.71,0 +00775,"PO BOX",0,Culebra,,,PR,"Culebra Municipio",America/Puerto_Rico,,NA,US,18.33,-65.3,0 +00777,STANDARD,0,Juncos,,"Bda Flores, Brisas Del Prado, Ciudad Jardin Juncos, Colinas De Juncos, Colinas Del Este, Est De Juncos, Est De La Ceiba, Ext Jard De Barcelona, Haciendas De Juncos, Haciendas De Tena, Jard De Barcelona, Jard De Ceiba Norte, Jard Del Valenciano, Mans De Juncos, Paseo De La Ceiba, Paseo Palma Real, Portales De Juncos, Repto Valenciano, Sect Canales, Sect Cuatro Calles, Urb Cerro Ceiba, Urb Diamaris, Urb El Cid, Urb El Encanto, Urb La Ceiba, Urb Lirios, Urb Lirios Cala, Urb Lirios Cala Ii, Urb Loma Alta, Urb Los Almendros, Urb Madrid, Urb Senderos De Juncos, Urb Valencia 1, Urb Valencia 2, Urb Virginia Vly, Villa Ana, Villa Graciela, Villas Central Victoria",PR,"Juncos Municipio",America/Puerto_Rico,787,NA,US,18.22,-65.91,0 +00778,STANDARD,0,Gurabo,,"Alt De Montebrisas, Alts De Hato Nuevo, Bda Campamento, Bda Nueva, Ciudad Jardin, Est De Gran Vista, Est De Santa Barbara, Est Siervas De Maria, Ext Llanos De Gurabo, Ext Villa Marina, Jard De Gurabo, Lomas Del Sol, Mans De Navarro, Mans De Santa Barbara, Parc Nuevas, Parq Las Americas, Paseo De Santa Barbara, Praderas De Navarro, Repto San Jose, Senderos De Gurabo, Turabo Industrial Park, Urb Altapaz, Urb Bajo Costo, Urb Campinas De Navarro, Urb El Vivero, Urb Gran Vista I, Urb Gran Vista Ii, Urb Heavenly Vw Est, Urb Horizonte, Urb Llanos De Gurabo, Urb Los Flamboyanes, Urb Los Paisajes, Urb Los Robles, Urb Los Suenos, Urb Monte Alto, Urb Monte Subacio, Urb Oreilly, Urb Paraiso De Gurabo, Urb Preciosa, Urb Reina De Los Angeles, Urb Sabanera Del Rio, Urb Veredas, Valle De Ensueno, Valle De Santa Barbara, Valle Del Tesoro, Villa Alegre, Villa Marina, Villas De Gurabo, Villas Del Carmen, Vista Lago",PR,"Gurabo Municipio",America/Puerto_Rico,787,NA,US,18.25,-65.97,0 +00780,STANDARD,0,"Coto Laurel",Ponce,"Bo Verdum, Brisas De Juliana, Brisas Del Laurel, Est Del Laurel, Est Del Monte, Ext Lago Horizonte, Hacienda Juliana, Haciendas Del Monte, Mans Del Lago, Mans Del Sur, Mans Real, Urb El Laurel, Urb Lago Horizonte, Urb Laurel Sur, Urb Llanos Del Sur, Urb Santa America, Urb Santa Rita, Urb Santa Rita 2, Urb Santa Rita 3, Urb Sombras Del Real, Villas Del Laurel 1, Villas Del Laurel 2, Villas Del Turey",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,18.09,-66.57,0 +00782,STANDARD,0,Comerio,,"Urb Ariel, Urb La Hacienda, Urb La Plata, Urb Pasarell, Urb Rio Plata, Urb Sabana Del Palmar",PR,"Comerio Municipio",America/Puerto_Rico,787,NA,US,18.22,-66.22,0 +00783,STANDARD,0,Corozal,,"Bda Sostre, Bo Pueblo, Colinas De Corozal, Ext Sylvia, Loma Linda, Sect Cienagueta, Urb Cerromonte, Urb Cibuco, Urb El Centro, Urb Las Brisas, Urb Maria Del Carmen, Urb Monterey, Urb Monteverde, Urb San Feliz, Urb Sobrino, Urb Sylvia, Valle De Aramana",PR,"Corozal Municipio",America/Puerto_Rico,787,NA,US,18.34,-66.31,0 +00784,STANDARD,0,Guayama,,"Alts Del Olimpo, Bda Blondet, Bda Borinquen, Bda Marin, Bda Santa Ana, Bo Corazon, Bo Machete, Bo Olimpo, Brisas Del Mar, Chalets De Brisas Del Mar, Comunidad Miramar, Comunidad Puente Jobos, Comunidad San Martin, Hacienda Guamani, Hacienda Jazmin, Hacienda Los Recreos, Jard De Guamani, Jard De Monte Olivo, Jardines De La Reina, Parc Nueva Olimpo, Urb Algarrobos, Urb Bello Horizonte, Urb Camino De La Princesa, Urb Caribe Mar, Urb Costa Azul, Urb Dorado, Urb El Legado Golf Resort, Urb Green Hls, Urb Guayama Valley, Urb La Hacienda, Urb La Pradera, Urb Rexmanor, Urb Villamar, Urb Vistamar, Urb Vistamar 3, Urb Vives, Valles De Guayama, Villa Rosa, Villa Rosa 1, Villa Rosa 2, Villa Rosa 3, Villa Universitaria",PR,"Guayama Municipio",America/Puerto_Rico,"787,939",NA,US,17.97,-66.11,0 +00785,"PO BOX",0,Guayama,,,PR,,America/Puerto_Rico,,NA,US,17.97,-66.11,0 +00786,"PO BOX",0,"La Plata",,,PR,"Aibonito Municipio",America/Puerto_Rico,,NA,US,18.16,-66.23,0 +00791,STANDARD,0,Humacao,,"Alts De San Benito, Bda Azucena, Bda Obrera, Bda Praa, Ciudad Cristiana, Colinas Del Este, Est De La Loma, Ext Cotto Mabu, Ext Roig, Ext San Antonio, Jard Central, Jard De Humacao, Mans Del Caribe, Parq De Candelero, Plaza Del Mar, Qtas De Humacao, Repto San Felipe, Urb Arboleda, Urb Buzo, Urb El Paraiso, Urb El Recreo, Urb La Estancia, Urb La Patagonia, Urb Las Leandras, Urb Los Maestros, Urb Los Rosales, Urb Los Sauces, Urb Mabu, Urb Miradero, Urb Palacios Del Sol, Urb Palmanova, Urb Palmas Plantation, Urb Palmas Reales, Urb Pereyo, Urb Rivera Donato, Urb San Antonio, Urb San Francisco, Urb Sunrise, Villa Franca 2, Villa Humacao, Villa Oriente, Villa Universitaria, Villas De Candelero, Villas Del Rio, Vista Alegre, Vista Hermosa",PR,"Humacao Municipio",America/Puerto_Rico,787,NA,US,18.15,-65.81,0 +00792,"PO BOX",0,Humacao,,,PR,,America/Puerto_Rico,,NA,US,18.15,-65.81,0 +00794,STANDARD,0,Barranquitas,,"Bda Alemania, Urb Campo Cristal, Urb San Cristobal, Vistas De Montecielo",PR,"Barranquitas Municipio",America/Puerto_Rico,787,NA,US,18.18,-66.3,0 +00795,STANDARD,0,"Juana Diaz",,"Alts De Rosandramar, Alts Del Encanto, Brisas Del Sur, Brisas Del Valle, Colinas De San Martin, Colinas De Verde Azul, Colinas Del Prado, Comunidad Monte Cristo, Est De Juana Diaz, Est Del Rio, Est El Guayabal, Ext Del Carmen, Ext Jacaguax, Ext La Fe, Ext Las Flores, Ext Las Marias, Hacienda Casa Blanca, Hacienda Las Vegas, Jard De Santo Domingo, Mans Camino Real, Mans En Paseo De Reyes, Paseo Del Parque, Paseo Sol Y Mar, Portal Del Valle, Qtas De Altamira, Sect Las Flores, Urb Camino Real, Urb Del Carmen, Urb Hermanos Santiago, Urb Jacaguax, Urb La Esperanza, Urb Las Flores, Urb Las Marias, Urb Las Quintas, Urb Los Reyes, Urb Monte Sol, Urb Palacios Del Prado, Urb San Martin, Urb San Martin Ii, Urb Santa Rita 4, Urb Tomas Carrion Maduro, Valle Hucares, Valle Sereno, Villa El Encanto, Villa Norma, Villas Del Prado, Villas Del Sol",PR,"Juana Diaz Municipio",America/Puerto_Rico,"939,787",NA,US,18.05,-66.5,0 +00801,"PO BOX",0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,,NA,US,18.35,-64.93,0 +00802,STANDARD,0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,340,NA,US,18.35,-64.93,0 +00803,"PO BOX",0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,,NA,US,18.35,-64.93,0 +00804,"PO BOX",0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,,NA,US,18.35,-64.93,0 +00805,"PO BOX",0,"St Thomas",,,VI,,America/St_Thomas,,NA,US,18.34,-64.93,0 +00820,STANDARD,0,Christiansted,"St Croix",,VI,,America/St_Thomas,340,NA,US,17.74,-64.7,0 +00821,"PO BOX",0,Christiansted,,,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00822,"PO BOX",0,Christiansted,,,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00823,"PO BOX",0,Christiansted,"St Croix",,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00824,"PO BOX",0,Christiansted,"St Croix",,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00830,STANDARD,0,"St John","Cruz Bay",,VI,,America/St_Thomas,,NA,US,18.33,-64.79,0 +00831,"PO BOX",0,"St John","Cruz Bay",,VI,,America/St_Thomas,,NA,US,18.33,-64.79,0 +00840,STANDARD,0,Frederiksted,,,VI,,America/St_Thomas,340,NA,US,17.71,-64.88,0 +00841,"PO BOX",0,Frederiksted,,,VI,,America/St_Thomas,,NA,US,17.71,-64.88,0 +00850,STANDARD,0,Kingshill,,,VI,,America/St_Thomas,340,NA,US,17.76,-64.82,0 +00851,"PO BOX",0,Kingshill,,,VI,,America/St_Thomas,,NA,US,17.73,-64.8,0 +00901,STANDARD,0,"San Juan","Old San Juan, Viejo San Juan, Viejo Sn Juan",,PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.47,-66.1,0 +00902,"PO BOX",0,"San Juan","Old San Juan, Viejo San Juan, Viejo Sn Juan",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00906,"PO BOX",0,"San Juan","Pta De Tierra, Puerta De Tierra",,PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.46,-66.09,0 +00907,STANDARD,0,"San Juan","Condado, Miramar, Santurce","Bda Figueroa",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.08,0 +00908,"PO BOX",0,"San Juan",,"Santurce, Santurce Station",PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00909,STANDARD,0,"San Juan","Fdez Juncos, Fernandez Juncos, Minillas, Santurce","Urb Hipodromo",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.44,-66.07,0 +00910,"PO BOX",0,"San Juan","Fdez Juncos, Fernandez Juncos",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00911,STANDARD,0,"San Juan",Santurce,"Loiza Street",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.06,0 +00912,STANDARD,0,"San Juan",Santurce,,PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.06,0 +00913,STANDARD,0,"San Juan","Isla Verde, Santurce",,PR,"San Juan Municipio",America/Puerto_Rico,"939,787",NA,US,18.45,-66.04,0 +00914,"PO BOX",0,"San Juan",Santurce,"Loiza Street",PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00915,STANDARD,0,"San Juan","Barrio Obrero, Bo Obrero, Santurce","Bda Buena Vista, Sect Cantera, Sect La Playita",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.05,0 +00916,"PO BOX",0,"San Juan","Barrio Obrero, Santurce",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00917,STANDARD,0,"San Juan","Hato Rey","Bda Bitumul, Bda Buena Vista, Bda Israel, Bda Las Monjas, Sect El Relincho, Urb Davila & Llenza, Urb El Prado, Urb Floral Park, Urb Perez Morris, Urb Pinero, Urb Quintana, Urb Umpierre",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.42,-66.05,0 +00918,STANDARD,0,"San Juan",,"Bda Tokio, Ext Roosevelt, Parq Central, Urb Baldrich, Urb El Vedado, Urb Hyde Pk, Urb Jb Huyke, Urb Los Ingenieros, Urb Los Maestros, Urb Roosevelt, Villa Pica",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.42,-66.07,0 +00919,"PO BOX",0,"San Juan","Hato Rey",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00920,STANDARD,0,"San Juan","Caparra, Caparra Hills, Caparra Ter, Caparra Terrace, Pto Nuevo, Puerto Nuevo","Bechara Ind Park, Mario Julia Ind Park, Monterrey Ind Park, Rio Piedras, San Miguel Ind Park, Urb Altamira, Urb Caparra Hts, Urb Puerto Nuevo, Urb San Patricio, Urb Summit Hls, Villa Borinquen",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-66.09,0 +00921,STANDARD,0,"San Juan","College Park, Pto Nuevo, Puerto Nuevo, Rio Piedras","Ext College Park, Parq De San Ignacio, Repto Landrau, Repto Metropolitano, Urb Altamesa, Urb Caparra Terr, Urb College Park, Urb Coop V Borinquen, Urb La Riviera, Urb La Riviera Ind Park, Urb Las Americas, Urb Las Lomas, Urb Puerto Nuevo, Urb Santiago Iglesias, Villa El Salvador, Villa Magna",PR,"San Juan Municipio",America/Puerto_Rico,939,NA,US,18.39,-66.09,0 +00922,"PO BOX",0,"San Juan","Caparra, Caparra Hills, Caparra Ter, Caparra Terrace",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00923,STANDARD,0,"San Juan",,"65th Infantry, Bo Capetillo, Repto America, Repto San Jose, Urb Casas Yoyo, Urb Del Carmen, Urb Dos Pinos, Urb Dos Pinos Townhouse, Urb Embalse San Jose, Urb Los Maestros, Urb Matienzo Cintron, Urb Open Land, Urb San Agustin, Urb San Jose, Urb Santa Barbara, Urb Valencia, Urb Victoria, Valle Universitario, Villa Dos Pinos, Villa Granada, Vista Del Cano",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.41,-66.04,0 +00924,STANDARD,0,"San Juan","Rio Piedras","65th Infantry, Alt De Berwind, Bda El Polvorin, Bda Hernandez, Bda Santo Domingo, Ciudad Central I, Colinas De Monte Carlo, Colinas Verde, Ext Colinas Verde, Ext Town Park, Mans De San Martin, Parc Falu, Parc Hill Brothers, Sect Los Penas, Urb Berwind Est, Urb Club Manor, Urb Country Club, Urb Delicias, Urb El Cemi, Urb El Comandante, Urb Gonzalez Seijo, Urb Highland Pk, Urb La Vista, Urb Las Virtudes, Urb Luarca, Urb Monte Carlo, Urb Sabana Llana, Urb San Martin, Urb Sevilla, Urb Town Pk, Urb Vosburg, Villa Capri, Villa Navarra, Villa Olimpica, Villa Prades, Villa Rosales, Vista Del Atlantico",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.4,-66.01,0 +00925,STANDARD,0,"San Juan","Rio Piedras","Bda Blondet, University Station, Urb Cabrera, Urb Gonzalez, Urb Santa Rita",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.4,-66.05,0 +00926,STANDARD,0,"San Juan","Cupey, Rio Piedras","Alts Del Remanso, Alturas De Borinquen Gdns, Bda Vista Alegre, Bo Buen Consejo, Bo Canejas, Bo Carraizo, Bo Dulce, Bo Quebrada Arena, Bo Tortugo, Bo Venezuela, Camino Del Bosque, Ciudad Senorial, Colinas De Cupey, Est De San Geraldo, Ext Alameda, Ext Mans De Vilanova, Ext Milaville, Hacienda De Carraizo, Hacienda Las Ceibas, Ind Victor Fernandez, Jard Botanico Sur, Jard De Caldas, Las Flores De Montehiedra, Los Arboles De Montehiedra, Mans Colinas De Cupey, Mans De Caldas, Mans De Park Gdns, Mans De Rio Piedras, Mans De Romany, Mans De Villanova, Palmares De Monteverde, Palmas De Carraizo, Parq Ind Quebrada Arenas, Parq Senorial, Paseo Alto, Paseo De La Fuente, Paseo Del Parque, Paseo Del Prado, Paseo Las Brisas, Paseo Las Vistas, Paseo Mayor, Paseo Real, Paseo San Juan, Qtas De Cupey, Repto Contemporaneo, Repto De Diego, Repto Oyola, Repto Universitario, Repto Veterano, Sect Betancourt, Sect Hoyo, Sect La Corte, Sect La Marina, Sect Paracochero, Senderos Estate, Urb Alamein, Urb Beverly Hills Ct, Urb Borinqu",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.35,-66.05,0 +00927,STANDARD,0,"San Juan","Rio Piedras","Bda Villamil, Ext Santa Maria, Jard De Vedruna, Jard Metropolitano, Parq De Santa Maria, University Gardens, Urb Antonsanti, Urb Belisa, Urb Caribe, Urb Hyde Pk, Urb San Francisco, Urb San Ignacio, Urb Santa Ana, Urb Santa Maria, Urb University Gardens, Urb University Gdns, Villa Los Olmos, Villa Nevarez, Villas De Palma Real, Villas De San Francisco, Villas De San Ignacio",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.4,-66.06,0 +00928,"PO BOX",0,"San Juan","Rio Piedras",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00929,"PO BOX",0,"San Juan","Rio Piedras","65th Infantry",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00930,"PO BOX",0,"San Juan","Rio Piedras, San Jose",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00931,"PO BOX",0,"San Juan","Rio Piedras",,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00933,"PO BOX",0,"San Juan",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00934,STANDARD,0,"Fort Buchanan",,"Urb Coconut Grove, Urb Coqui Gdns, Urb Las Colinas",PR,"Guaynabo Municipio",America/Puerto_Rico,787,NA,US,18.41,-66.12,0 +00935,UNIQUE,0,"San Juan",,"Centro Medico Metropolitano",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00936,"PO BOX",0,"San Juan","Barrio Obrero, Caparra, Cupey, Minillas, Old San Juan, Rio Piedras, San Jose, Santurce","65th Infantry, Gpo, Loiza Street, Santurce Station",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.4,-66.07,0 +00937,"PO BOX",0,"San Juan",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00939,UNIQUE,0,"San Juan",,"Unique Brm",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00940,"PO BOX",0,"San Juan","Minillas, Santurce",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00949,STANDARD,0,"Toa Baja",Levittown,"Alt Hacienda Dorada, Alts De Covadonga, Bo Campanilla, Bo Candelaria, Bo Palo Seco, Brisas De Campanero, Brisas De Campanero Ii, Comunidad Punta Salinas, Ext La Inmaculada, Ext Lagos De Plata, Hacienda Del Norte, Hacienda Del Norte 2, Mans Del Lago, Mans Del Mar, Mans Del Norte, Mans Del Sur, Parq Punta Salinas, Pradera, Pradera Norte, Qta Real, Repto Anamar, Res Campanilla, Sect La Pra, Urb Almira, Urb Altagracia, Urb Camino Del Mar, Urb Campanillas, Urb Covadonga, Urb Dos Rios, Urb El Naranjal, Urb El Plantio, Urb La Inmaculada, Urb La Rosaleda I, Urb La Rosaleda Ii, Urb Lagos De Plata, Urb Las Colinas, Urb Las Gaviotas, Urb Levittown, Urb Levittown Lakes, Urb Levittville, Urb Pabellones, Urb San Pedro, Urb Santa Maria, Urb Toaville, Urb Valparaiso, Villa De Levittown, Vista Del Lago",PR,"Toa Baja Municipio",America/Puerto_Rico,"787,939",NA,US,18.44,-66.25,0 +00950,"PO BOX",0,"Toa Baja",,,PR,"Dorado Municipio",America/Puerto_Rico,,NA,US,18.46,-66.23,0 +00951,"PO BOX",0,"Toa Baja",,,PR,"Toa Baja Municipio",America/Puerto_Rico,,NA,US,18.43,-66.25,0 +00952,STANDARD,0,"Sabana Seca",,"Mans Del Sol",PR,"Toa Baja Municipio",America/Puerto_Rico,,NA,US,18.42,-66.19,0 +00953,STANDARD,0,"Toa Alta",,"Alt De Bucarabones, Alts De Montecasino, Alts Del Toa, Brisas De Montecasino, Ciudad Jardin I, Ciudad Jardin Ii, Ciudad Jardin Iii, Colinas De Plata, Est De La Fuente, Hacienda Del Toa, Hacienda El Paraiso, Hacienda El Pilar, Haciendas De Borinquen, Jard De Casablanca, Jard De Escorial, Jard De La Fuente, Jard De Mediterraneo, Jard De Toa Alta, Mans De Montecasino I, Mans De Montecasino Ii, Mans Del Toa, Plaza De La Fuente, Praderas Del Rio, Qtas De Plaza Aquarium, Repto San Jose, Sect Los Rodriguez, Terr Del Toa, Urb Casitas De La Fuente, Urb Fuentebella, Urb Gran Vista, Urb La Providencia, Urb Las Cascadas, Urb Las Cascadas Ii, Urb Los Arboles, Urb Madelaine, Urb Monte Lago Est, Urb Monte Sol, Urb Monte Verde, Urb Montecasino, Urb Montecasino Hts, Urb Palacio Imperial, Urb Palacios De Marbella, Urb Palacios De Versalles, Urb Palacios Del Monte, Urb Palacios Del Rio I, Urb Palacios Del Rio Ii, Urb Palacios Reales, Urb Portobello, Urb San Fernando, Urb Toa Alta Hts, Urb Toalinda, Urb Town Hls, Urb Veredas Del",PR,"Toa Alta Municipio",America/Puerto_Rico,"939,787",NA,US,18.39,-66.25,0 +00954,"PO BOX",0,"Toa Alta",,,PR,"Toa Alta",America/Puerto_Rico,,NA,US,18.39,-66.25,0 +00955,"PO BOX",0,"San Juan",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00956,STANDARD,0,Bayamon,,"Alts De Bayamon, Bosque De Las Flores, Bosque De Las Palmas, Bosque De Los Pinos, Ciudad Interamericana, Est Del Bosque, Ext Campo Alegre, Ext Oller, Ext Santa Juanita, Ext Vista Bella, Haciendas El Zorzal, Jard De Bayamonte, Lomas Verdes, Mans De Sierra Taina, Urb Agustin Stahl, Urb Aventura, Urb Bayamon Hls, Urb Campo Alegre, Urb Country Est, Urb El Cortijo, Urb Forest View, Urb Francisco Oller, Urb Golden Hls, Urb Irlanda Hts, Urb Lomas Verde, Urb Los Faroles, Urb Magnolia Gardens, Urb Magnolia Gdns, Urb Royal Palm, Urb Royal Town, Urb Santa Juanita, Urb Sunny Hls, Valle Bello Chalets, Villa Contessa, Villas De Buena Vista, Villas De Santa Juanita, Villas Del Caribe, Vista Bella",PR,"Bayamon Municipio",America/Puerto_Rico,"939,787",NA,US,18.32,-66.17,0 +00957,STANDARD,0,Bayamon,,"Alt De Cana, Alt De Sans Souci, Bda Calderon, Bo Los Angeles, Colinas De Bayoan, Est De Cerro Gordo, Ext Rexville, Parc Van Scoy, Urb Alhambra, Urb Bayamon Gdns, Urb Bella Vista, Urb Cana, Urb Flamingo Hls, Urb Flamingo Ter, Urb Los Dominicos, Urb May Fair, Urb Miraflores, Urb Montanez, Urb Panorama, Urb Panorama Estates, Urb Panorama Vlg, Urb Patio De Rexville, Urb Rexville, Urb Royal Gdns, Urb San Fernando, Urb Sans Souci, Urb Santa Catalina, Urb Santa Elena, Urb Santa Elenita, Urb Santa Monica, Urb Sierra Linda, Valle De Cerro Gordo, Villa Arrieta, Vista Alta",PR,"Bayamon Municipio",America/Puerto_Rico,"787,939",NA,US,18.37,-66.19,0 +00958,"PO BOX",0,Bayamon,,,PR,Bayamon,America/Puerto_Rico,,NA,US,18.28,-66.13,0 +00959,STANDARD,0,Bayamon,,"Alt De Flamboyan, Alt Del Rio, Bda Pesquera, Bo Cerro Gordo, Bo Hato Tejas, Colinas Vista Alegre, Ext Forest Hls, Ext Hnas Davila, Ext La Milagrosa, Ext Villa Rica, Flamboyan Gardens, Ind Minillas, Jard De Caparra, Parc Juan Sanchez, Parq De Torrimar, Parq Flamingo, Parq San Miguel, Parq Valencia, Qtas De Flamingo, Qtas Del Norte, Repto Davila, Repto Flamingo, Repto Rivera, Repto Valencia, Urb Altos De Torrimar, Urb Braulio Dueno, Urb Casa Linda Ct, Urb Flamboyan Gardens, Urb Flamboyan Gdns, Urb Forest Hls, Urb Hnas Davila, Urb La Milagrosa, Urb Las Americas, Urb Riberas Del Rio, Urb Riviera Court, Urb Riviera Village, Urb San Rafael Est, Urb San Rafael Est Ii, Urb Santa Rosa, Urb Tortuguero, Urb Versalles, Urb Victoria Hts, Villa Betania, Villa De San Agustin, Villa Del Rio Bayamon, Villa Rica, Villa Verde, Villas De Caparra, Villas De San Miguel, Vista Alegre",PR,"Bayamon Municipio",America/Puerto_Rico,"939,787",NA,US,18.39,-66.15,0 +00960,"PO BOX",0,Bayamon,,,PR,"Bayamon Municipio",America/Puerto_Rico,,NA,US,18.42,-66.15,0 +00961,STANDARD,0,Bayamon,,"Bda La Cambija, Bo Hato Tejas, Bo Volcan, Bo Volcan Arenas, Brisas De Corea, Comunidad El Volcan, Ind Corujo, Ind Luchetti, Qta Del Rio, Qtas De Boulevar, Repto Teresita, Sect Punta Brava, Urb Campo Verde, Urb El Coqui, Urb Enramada, Urb Estancias, Urb Fronteras, Urb Los Almendros, Urb Mirabella Vlg, Urb Monte Claro, Urb Rio Hondo 1, Urb Rio Hondo 2, Urb Rio Hondo 3, Urb Rio Hondo 4, Urb Rio Plantation, Urb River Vw, Urb Riverside Park, Urb Santa Cruz, Urb Sierra Bayamon, Urb Veredas, Valle Verde 1, Valle Verde 2, Valle Verde 3, Villa Espana",PR,"Bayamon Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-66.17,0 +00962,STANDARD,0,Catano,,"Bda Vietnam, Bo Juana Matos, Bo Palmas, Jard De Catano I, Jard De Catano Ii, Parc William Fuertes, Repto Paraiso, Sect La Puntilla, Urb Bahia, Urb Bajo Costo, Urb Bay View, Urb Catano Pueblo, Urb El Coqui 2, Urb Las Vegas, Urb Marina Bahia, Urb Proyecto 141, Villa Aurora, Vista Del Morro",PR,"Catano Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.15,0 +00963,"PO BOX",0,Catano,,,PR,Catano,America/Puerto_Rico,,NA,US,18.43,-66.11,0 +00965,STANDARD,0,Guaynabo,,"Bda Vietnam, Bo Amelia, Bo Sabana, Urb Sunset Harbor, Villa Concepcion 1, Villa Concepcion 2",PR,"Guaynabo Municipio",America/Puerto_Rico,787,NA,US,18.43,-66.11,0 +00966,STANDARD,0,Guaynabo,,"Alt De Torrimar, Bda Buen Samaritano, Bda San Miguel, Bo Buen Samaritano, Bo Juan Domingo, Chalet De La Reina, Est De Torrimar, Ext Victor Braeger, Ext Villa Caparra, Mans De Tintillo, Mans Garden Hls, Parq De Villa Caparra, Parq Mediterraneo, Repto Santana, Terrs De Tintillo, Urb Arboleda, Urb Garden Ct, Urb Garden Hls, Urb Garden Hls Est, Urb Garden Hls Villas, Urb Gardenville, Urb Las Ramblas, Urb Los Frailes Norte, Urb Martin Ct, Urb Novas Ct, Urb Prado Alto, Urb Sevilla Biltmore, Urb Suchville, Urb Susan Ct, Urb Susan Ct Chalets, Urb Tintillo Gdns, Urb Tintillo Hls, Urb Tintilo Gardens, Urb Torrimar, Urb Victor Braeger, Villa Caparra, Villa Verde, Villas De Caparra, Villas De Prado Alto, Villas De Tintillos, Villas De Trujillo",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.4,-66.12,0 +00968,STANDARD,0,Guaynabo,,"Alt De San Patricio, Amelia Ind Park, Caparra Hls Ind Park, Ext Alts De San Patricio, Metro Office Park, Parq San Patricio, Rexco Ind Park, Urb Caparra Hls, Urb Golden Gate, Urb Parkside, Urb San Patricio, Urb San Patricio Meadows",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-66.1,0 +00969,STANDARD,0,Guaynabo,,"Alt De Santa Maria, Alt De Torrimar, Alt De Torrimar Este, Bosque De Los Frailes, Chalets De Altavista, Chalets De Santa Clara, Colinas De Guaynabo, Colinas De Parkville, Colinas Metropolitana, Est Del Parque, Est Reales, Ext Parkville, Ext Santa Paula, Ext Terrs De Guaynabo, Mans De Alejandrino, Mans De Guaynabo, Mans De Santa Paula, Mans Reales, Parq De Bucare, Parq De Bucare Ii, Parq San Ramon, Parq Torremolinos, Qtas Reales, Repto La Esperanza, Terrs De Guaynabo, Urb Alto Apolo, Urb Alto Apolo States, Urb Apolo, Urb Baldwin Mansions, Urb Baldwin Park, Urb Bellomonte, Urb Bucare, Urb Bucare Gdns, Urb Cerro Real, Urb Colimar, Urb Collegeville, Urb El Alamo, Urb El Jard De Guaynabo, Urb El Palmar De Torrimar, Urb Frailes Sur, Urb Highland Gardens, Urb Highland Gdns, Urb Juan Ponce De Leon, Urb La Colina, Urb La Lomita, Urb La Villa De Torrimar, Urb Las Ramblas, Urb Los Frailes Sur, Urb Mallorca, Urb Monte Alvernia, Urb Monte Olimpo, Urb Munoz Rivera, Urb Oasis Gardens, Urb Oasis Gdns, Urb Palma Real, Urb Par",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.38,-66.11,0 +00970,"PO BOX",0,Guaynabo,,,PR,,America/Puerto_Rico,,NA,US,18.38,-66.11,0 +00971,STANDARD,0,Guaynabo,,"Bel Air, Finca Elena, Urb Artesia Residences, Urb Camino Del Monte, Urb La Fontana De Torrimar, Urb Riverside",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.32,-66.12,0 +00975,UNIQUE,0,"San Juan",,"Bureau Of Census",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00976,STANDARD,0,"Trujillo Alto",Trujillo,"Alt De Fairview, Alt Interamericana, Bda Gonzalez, Bosque Del Lago, Ciudad Universitaria, Colinas De Fairview, Jard De Trujillo, Lomas De Trujillo, Mans San Rafael, Parc Saint Just, Parq Del Monte, Parq Del Rio, Parq Ind Saint Just, Parq Montebello, Repto San Rafael, Saint Just, Sect La Pra, Terr De Cupey, Urb Altavilla, Urb Antillana, Urb Corrientes, Urb El Conquistador, Urb Entrerios, Urb Golden Hls, Urb Interamericana Gdn, Urb La Cima, Urb Lago Alto, Urb Lantigua, Urb Lourdes, Urb Monte Trujillo, Urb Montebello Est, Urb Pacifica, Urb Primavera, Urb Riachuelo, Urb Rincon Espanol, Urb Rio Cristal, Urb Riverwalk, Urb Round Hls, Urb San Rafael Vlg, Urb Sunville, Urb Wonderville, Valle San Juan, Villa Blanca, Villa De Caney, Villas Del Sol",PR,"Trujillo Alto Municipio",America/Puerto_Rico,"787,939",NA,US,18.36,-66.01,0 +00977,"PO BOX",0,"Trujillo Alto",Trujillo,,PR,,America/Puerto_Rico,,NA,US,18.36,-66.01,0 +00978,"PO BOX",0,"Saint Just",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.37,-66.01,0 +00979,STANDARD,0,Carolina,,"Ext Villamar, Isla Verde, Parq De Isla Verde, Urb Atlantic View, Urb Biascochea, Urb Cape Sea Vlg, Urb La Marina, Urb Los Angeles, Urb Palmar Norte, Urb Palmar Sur, Urb Villamar, Villa La Marina",PR,"Carolina Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.03,0 +00981,"PO BOX",0,Carolina,,"Isla Verde",PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +00982,STANDARD,0,Carolina,,"Alt De Villa Fontana, Isla Verde, Qtas De Country Club, Urb Country Club, Urb El Comandante, Villa Flores",PR,"Carolina Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-65.99,0 +00983,STANDARD,0,Carolina,,"Isla Verde, Jard De Country Club, La Ceramica Ind Park, Mans De Vistamar Marina, Urb Bahia Vistamar, Urb Castellana Garden, Urb Castellana Gdn, Urb Eduardo J Saldana, Urb Sabana Gardens, Urb Sabana Gdns, Urb Vistamar, Urb Vistamar Marina, Valle Arriba Hts, Villa Asturias, Villa Fontana, Villa Fontana Pk, Villa Venecia",PR,"Carolina Municipio",America/Puerto_Rico,787,NA,US,18.4,-65.98,0 +00984,"PO BOX",0,Carolina,,,PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +00985,STANDARD,0,Carolina,,"Bda Buena Vista, Bo Buena Vista, Bo Villa Caridad, Bo Villa Esperanza, Bo Villa Justicia, Est De San Fernando, Isla Verde, Jard De Borinquen, Jard De Buena Vista, Urb Jose S Quinones, Urb Rosa Maria, Villa Carolina, Villa Cooperativa, Villas Del Sol",PR,"Carolina Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-65.95,0 +00986,"PO BOX",0,Carolina,,,PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +00987,STANDARD,0,Carolina,,"Alt De Parq Ecuestre, Bo Buenaventura, Bo Colo, Bo Martin Gonzalez, Brisas De Metropolis, Chalets De La Fuente Ii, Ciudad Central Ii, Ciudad Centro, Ciudad Jardin, Est Del Parque, Ext Parq Ecuestre, Hacienda Real, Isla Verde, Jard De Carolina, Loma Alta, Lomas De Carolina, Mans De Carolina, Parq Ecuestre, Parq Ind Jn Matos, Paseo De La Alhambra, Paseo Del Prado, Qtas De Campeche, Sect Barraza 3, Sect Barrazas, Terrs De Carolina, Urb Carolina Alta, Urb Colinitas De Cacao, Urb Los Arboles, Urb Los Caciques, Urb Los Colobos, Urb Metropolis, Urb Mountain Vw, Urb Paraiso De Carolina, Urb Remanzo Taino, Urb Rolling Hls, Valle Escondido, Villa De San Anton, Villa Del Madrigal",PR,"Carolina Municipio",America/Puerto_Rico,"787,939",NA,US,18.34,-65.94,0 +00988,"PO BOX",0,Carolina,,,PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +01001,STANDARD,0,Agawam,,,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.61,15240 +01002,STANDARD,0,Amherst,"Cushman, Pelham","South Amherst",MA,"Hampshire County",America/New_York,413,NA,US,42.37,-72.52,16070 +01003,STANDARD,0,Amherst,,,MA,"Hampshire County",America/New_York,413,NA,US,42.39,-72.52,184 +01004,"PO BOX",0,Amherst,,,MA,"Hampshire County",America/New_York,413,NA,US,42.37,-72.52,794 +01005,STANDARD,0,Barre,,,MA,"Worcester County",America/New_York,978,NA,US,42.42,-72.1,4420 +01007,STANDARD,0,Belchertown,,,MA,"Hampshire County",America/New_York,413,NA,US,42.27,-72.4,14520 +01008,STANDARD,0,Blandford,,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.93,1160 +01009,"PO BOX",0,Bondsville,,,MA,"Hampden County",America/New_York,413,NA,US,42.2,-72.34,1238 +01010,STANDARD,0,Brimfield,,"East Brimfield",MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.2,3560 +01011,STANDARD,0,Chester,,,MA,"Hampden County",America/New_York,413,NA,US,42.28,-72.98,1050 +01012,STANDARD,0,Chesterfield,,,MA,"Hampshire County",America/New_York,413,NA,US,42.4,-72.85,630 +01013,STANDARD,0,Chicopee,Willimansett,,MA,"Hampden County",America/New_York,413,NA,US,42.15,-72.6,19020 +01014,"PO BOX",0,Chicopee,,,MA,"Hampden County",America/New_York,413,NA,US,42.17,-72.57,354 +01020,STANDARD,0,Chicopee,,,MA,"Hampden County",America/New_York,413,NA,US,42.17,-72.57,25700 +01021,"PO BOX",0,Chicopee,,,MA,"Hampden County",America/New_York,413,NA,US,42.17,-72.57,566 +01022,STANDARD,0,Chicopee,"Westover AFB",,MA,"Hampden County",America/New_York,413,NA,US,42.2,-72.54,1720 +01026,STANDARD,0,Cummington,,"West Cummington",MA,"Hampshire County",America/New_York,413,NA,US,42.46,-72.9,840 +01027,STANDARD,0,Easthampton,"E Hampton, Mount Tom, Westhampton",Loudville,MA,"Hampshire County",America/New_York,413,NA,US,42.26,-72.68,16210 +01028,STANDARD,0,"East Longmeadow","E Longmeadow",,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.51,15560 +01029,"PO BOX",0,"East Otis",,"Big Pond, E Otis",MA,"Berkshire County",America/New_York,413,NA,US,42.17,-73.03,557 +01030,STANDARD,0,"Feeding Hills",,,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.67,10880 +01031,STANDARD,0,Gilbertville,,"Old Furnace",MA,"Worcester County",America/New_York,413,NA,US,42.33,-72.2,990 +01032,STANDARD,0,Goshen,,Lithia,MA,"Hampshire County",America/New_York,413,NA,US,42.46,-72.81,470 +01033,STANDARD,0,Granby,,,MA,"Hampshire County",America/New_York,413,NA,US,42.26,-72.52,5760 +01034,STANDARD,0,Granville,Tolland,"Granville Center, West Granville",MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.86,1810 +01035,STANDARD,0,Hadley,,"North Hadley",MA,"Hampshire County",America/New_York,413,NA,US,42.35,-72.58,4650 +01036,STANDARD,0,Hampden,,Hampton,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.41,4700 +01037,"PO BOX",0,Hardwick,,,MA,"Worcester County",America/New_York,,NA,US,42.35,-72.2,779 +01038,STANDARD,0,Hatfield,,"West Hatfield",MA,"Hampshire County",America/New_York,413,NA,US,42.37,-72.6,2300 +01039,STANDARD,0,Haydenville,"West Whately",,MA,"Hampshire County",America/New_York,,NA,US,42.39,-72.7,1320 +01040,STANDARD,0,Holyoke,,Halyoke,MA,"Hampden County",America/New_York,413,NA,US,42.21,-72.64,29720 +01041,"PO BOX",0,Holyoke,,Halyoke,MA,"Hampden County",America/New_York,413,NA,US,42.21,-72.64,1408 +01050,STANDARD,0,Huntington,Montgomery,"Crescent Mills, Hntgtn, Knightville, North Chester, South Worthington",MA,"Hampshire County",America/New_York,413,NA,US,42.23,-72.88,2270 +01053,STANDARD,0,Leeds,,,MA,"Hampshire County",America/New_York,413,NA,US,42.35,-72.71,1520 +01054,STANDARD,0,Leverett,,"East Leverett, North Leverett",MA,"Franklin County",America/New_York,,NA,US,42.45,-72.5,1680 +01056,STANDARD,0,Ludlow,,,MA,"Hampden County",America/New_York,413,NA,US,42.16,-72.48,18100 +01057,STANDARD,0,Monson,,,MA,"Hampden County",America/New_York,413,NA,US,42.09,-72.31,7520 +01059,"PO BOX",0,"North Amherst",Amherst,,MA,"Hampshire County",America/New_York,413,NA,US,42.4,-72.52,70 +01060,STANDARD,0,Northampton,,"North Hampton",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.63,11010 +01061,"PO BOX",0,Northampton,,"North Hampton",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.67,469 +01062,STANDARD,0,Florence,"Bay State Village, Bay State Vlg, Northampton","North Hampton",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.67,10010 +01063,UNIQUE,0,Northampton,,"North Hampton, Smith College",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.64,177 +01066,"PO BOX",0,"North Hatfield","N Hatfield","No Hatfield",MA,"Hampshire County",America/New_York,413,NA,US,42.41,-72.66,402 +01068,STANDARD,0,Oakham,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.35,-72.05,1790 +01069,STANDARD,0,Palmer,,,MA,"Hampden County",America/New_York,413,NA,US,42.16,-72.32,6950 +01070,STANDARD,0,Plainfield,,,MA,"Hampshire County",America/New_York,413,NA,US,42.51,-72.91,530 +01071,STANDARD,0,Russell,,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.85,1440 +01072,STANDARD,0,Shutesbury,,,MA,"Franklin County",America/New_York,,NA,US,42.45,-72.4,1390 +01073,STANDARD,0,Southampton,,,MA,"Hampshire County",America/New_York,413,NA,US,42.23,-72.73,6050 +01074,"PO BOX",0,"South Barre",,,MA,"Worcester County",America/New_York,351,NA,US,42.39,-72.09,655 +01075,STANDARD,0,"South Hadley",,"S Hadley, So Hadley, South Hadley Falls",MA,"Hampshire County",America/New_York,413,NA,US,42.26,-72.56,14610 +01077,STANDARD,0,Southwick,,,MA,"Hampden County",America/New_York,413,NA,US,42.05,-72.76,8880 +01079,"PO BOX",0,Thorndike,,,MA,"Hampden County",America/New_York,413,NA,US,42.2,-72.33,992 +01080,STANDARD,0,"Three Rivers",,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.37,1960 +01081,STANDARD,0,Wales,,,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.21,1520 +01082,STANDARD,0,Ware,Hardwick,,MA,"Hampshire County",America/New_York,413,NA,US,42.25,-72.24,8920 +01083,"PO BOX",0,Warren,,,MA,"Worcester County",America/New_York,,NA,US,42.21,-72.19,3037 +01084,STANDARD,0,"West Chesterfield","W Chesterfld",,MA,"Hampshire County",America/New_York,413,NA,US,42.39,-72.88,137 +01085,STANDARD,0,Westfield,Montgomery,,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.75,34400 +01086,"PO BOX",0,Westfield,,,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.79,886 +01088,STANDARD,0,"West Hatfield","W Hatfield",,MA,"Hampshire County",America/New_York,413,NA,US,42.39,-72.64,530 +01089,STANDARD,0,"West Springfield","W Springfield","West Springfld",MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.65,25250 +01090,"PO BOX",0,"West Springfield","W Springfield",,MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.65,510 +01092,"PO BOX",0,"West Warren",,"W Warren",MA,"Worcester County",America/New_York,,NA,US,42.19,-72.24,1332 +01093,"PO BOX",0,Whately,,,MA,"Franklin County",America/New_York,,NA,US,42.44,-72.65,516 +01094,"PO BOX",0,Wheelwright,,,MA,"Worcester County",America/New_York,,NA,US,42.35,-72.14,340 +01095,STANDARD,0,Wilbraham,,,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.43,14200 +01096,STANDARD,0,Williamsburg,,"S Chesterfield, South Chesterfield",MA,"Hampshire County",America/New_York,413,NA,US,42.4,-72.76,2260 +01097,"PO BOX",0,Woronoco,,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.83,88 +01098,STANDARD,0,Worthington,,,MA,"Hampshire County",America/New_York,413,NA,US,42.41,-72.93,1090 +01101,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,2038 +01102,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01103,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.59,1660 +01104,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.57,19740 +01105,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.58,7930 +01106,STANDARD,0,Longmeadow,Springfield,,MA,"Hampden County",America/New_York,413,NA,US,42.04,-72.57,15310 +01107,STANDARD,0,Springfield,,"Brightwood, Spfld",MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.61,8170 +01108,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.08,-72.56,22420 +01109,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,22080 +01111,UNIQUE,0,Springfield,,"Mass Mutual Life Ins Co",MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01115,"PO BOX",0,Springfield,,"Bay State W Tower",MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,25 +01116,"PO BOX",0,Longmeadow,"E Longmeadow, East Longmeadow",,MA,"Hampden County",America/New_York,413,NA,US,42.04,-72.57,82 +01118,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.09,-72.53,13060 +01119,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.51,10910 +01128,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.09,-72.49,2560 +01129,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.49,6490 +01133,UNIQUE,1,Springfield,,"Monarch Life Ins Co",MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.59,0 +01138,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,688 +01139,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,467 +01144,STANDARD,0,Springfield,,,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01151,STANDARD,0,"Indian Orchard","Indian Orch, Springfield",Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.15,-72.51,7700 +01152,STANDARD,0,Springfield,,,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01195,STANDARD,1,Springfield,"Springfield Bmc",,MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.58,0 +01199,UNIQUE,0,Springfield,,"Baystate Medical, Spfld",MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.6,0 +01201,STANDARD,0,Pittsfield,,Allendale,MA,"Berkshire County",America/New_York,413,NA,US,42.45,-73.26,37180 +01202,"PO BOX",0,Pittsfield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.45,-73.26,1387 +01203,"PO BOX",0,Pittsfield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.45,-73.26,0 +01220,STANDARD,0,Adams,,,MA,"Berkshire County",America/New_York,413,NA,US,42.62,-73.11,7100 +01222,STANDARD,0,"Ashley Falls",,,MA,"Berkshire County",America/New_York,413,NA,US,42.05,-73.33,720 +01223,STANDARD,0,Becket,Washington,"Becket Corners, Sherwood Forest",MA,"Berkshire County",America/New_York,413,NA,US,42.33,-73.07,2010 +01224,STANDARD,0,Berkshire,Lanesborough,,MA,"Berkshire County",America/New_York,413,NA,US,42.51,-73.2,160 +01225,STANDARD,0,Cheshire,,,MA,"Berkshire County",America/New_York,413,NA,US,42.55,-73.15,2930 +01226,STANDARD,0,Dalton,,,MA,"Berkshire County",America/New_York,413,NA,US,42.47,-73.16,5710 +01227,"PO BOX",0,Dalton,,,MA,"Berkshire County",America/New_York,413,NA,US,42.47,-73.16,262 +01229,"PO BOX",0,Glendale,,,MA,"Berkshire County",America/New_York,413,NA,US,42.28,-73.34,163 +01230,STANDARD,0,"Great Barrington","Egremont, Gt Barrington, N Egremont, New Marlboro, New Marlborou, New Marlborough, North Egremont, Simons Rock","Alford, Berkshire Heights, Hartsville, Risingdale, Van Deusenville",MA,"Berkshire County",America/New_York,413,NA,US,42.19,-73.35,6170 +01235,STANDARD,0,Hinsdale,Peru,,MA,"Berkshire County",America/New_York,413,NA,US,42.42,-73.07,2470 +01236,STANDARD,0,Housatonic,,,MA,"Berkshire County",America/New_York,413,NA,US,42.27,-73.38,1420 +01237,STANDARD,0,Lanesborough,"Hancock, New Ashford",,MA,"Berkshire County",America/New_York,413,NA,US,42.51,-73.22,2700 +01238,STANDARD,0,Lee,,"W Becket",MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.25,5090 +01240,STANDARD,0,Lenox,,,MA,"Berkshire County",America/New_York,413,NA,US,42.35,-73.28,4030 +01242,"PO BOX",0,"Lenox Dale",,,MA,"Berkshire County",America/New_York,413,NA,US,42.33,-73.25,559 +01243,"PO BOX",0,Middlefield,,,MA,"Hampshire County",America/New_York,413,NA,US,42.35,-73.01,315 +01244,"PO BOX",0,"Mill River",,,MA,"Berkshire County",America/New_York,413,NA,US,42.12,-73.26,328 +01245,STANDARD,0,Monterey,"West Otis",,MA,"Berkshire County",America/New_York,413,NA,US,42.18,-73.21,660 +01247,STANDARD,0,"North Adams","Clarksburg, Florida","N Adams, No Adams",MA,"Berkshire County",America/New_York,413,NA,US,42.68,-73.11,11340 +01252,STANDARD,0,"North Egremont","N Egremont","No Egremont",MA,"Berkshire County",America/New_York,413,NA,US,42.17,-73.44,281 +01253,STANDARD,0,Otis,,"Cold Spring, North Otis",MA,"Berkshire County",America/New_York,413,NA,US,42.21,-73.11,720 +01254,STANDARD,0,Richmond,,,MA,"Berkshire County",America/New_York,413,NA,US,42.37,-73.36,1000 +01255,STANDARD,0,Sandisfield,,"South Sandisfield",MA,"Berkshire County",America/New_York,413,NA,US,42.11,-73.13,610 +01256,STANDARD,0,Savoy,,,MA,"Berkshire County",America/New_York,413,NA,US,42.56,-73.02,600 +01257,STANDARD,0,Sheffield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.1,-73.34,2080 +01258,"PO BOX",0,"South Egremont","Mount Washington, Mt Washington, S Egremont","So Egremont",MA,"Berkshire County",America/New_York,413,NA,US,42.11,-73.46,580 +01259,STANDARD,0,Southfield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.07,-73.23,430 +01260,"PO BOX",0,"South Lee",,,MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.34,254 +01262,"PO BOX",0,Stockbridge,,,MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.32,1342 +01263,UNIQUE,0,Stockbridge,,"Assoc Of Marian Helpers, Marian Helpers, Marion Fathers",MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.32,0 +01264,"PO BOX",0,Tyringham,Lee,,MA,"Berkshire County",America/New_York,413,NA,US,42.24,-73.19,198 +01266,STANDARD,0,"West Stockbridge","Alford, W Stockbridge","Interlaken, West Stockbridge Center",MA,"Berkshire County",America/New_York,413,NA,US,42.31,-73.39,1190 +01267,STANDARD,0,Williamstown,,"Williamstn, Wmstown",MA,"Berkshire County",America/New_York,413,NA,US,42.7,-73.2,5220 +01270,STANDARD,0,Windsor,,"East Windsor",MA,"Berkshire County",America/New_York,413,NA,US,42.51,-73.04,700 +01301,STANDARD,0,Greenfield,Leyden,,MA,"Franklin County",America/New_York,413,NA,US,42.58,-72.59,13940 +01302,"PO BOX",0,Greenfield,,,MA,"Franklin County",America/New_York,413,NA,US,42.58,-72.59,502 +01330,STANDARD,0,Ashfield,,"South Ashfield",MA,"Franklin County",America/New_York,413,NA,US,42.53,-72.78,1280 +01331,STANDARD,0,Athol,Phillipston,,MA,"Worcester County",America/New_York,978,NA,US,42.59,-72.23,11340 +01337,STANDARD,0,Bernardston,Leyden,,MA,"Franklin County",America/New_York,413,NA,US,42.66,-72.55,2470 +01338,STANDARD,0,Buckland,,,MA,"Franklin County",America/New_York,413,NA,US,42.57,-72.82,210 +01339,STANDARD,0,Charlemont,Hawley,"West Hawley",MA,"Franklin County",America/New_York,,NA,US,42.63,-72.88,1200 +01340,STANDARD,0,Colrain,Shattuckville,,MA,"Franklin County",America/New_York,413,NA,US,42.66,-72.68,1510 +01341,STANDARD,0,Conway,,,MA,"Franklin County",America/New_York,413,NA,US,42.51,-72.68,1470 +01342,STANDARD,0,Deerfield,,"East Deerfield, West Deerfield",MA,"Franklin County",America/New_York,413,NA,US,42.55,-72.6,1320 +01343,STANDARD,0,Drury,,,MA,"Berkshire County",America/New_York,413,NA,US,42.66,-72.98,153 +01344,STANDARD,0,Erving,,"Farley, Stoneville",MA,"Franklin County",America/New_York,,NA,US,42.6,-72.4,1420 +01346,STANDARD,0,Heath,Charlemont,,MA,"Franklin County",America/New_York,413,NA,US,42.66,-72.83,330 +01347,"PO BOX",0,"Lake Pleasant",,,MA,"Franklin County",America/New_York,,NA,US,42.56,-72.52,165 +01349,STANDARD,0,"Millers Falls",,,MA,"Franklin County",America/New_York,413,NA,US,42.56,-72.48,750 +01350,"PO BOX",0,"Monroe Bridge",Monroe,,MA,"Franklin County",America/New_York,,NA,US,42.72,-72.98,35 +01351,STANDARD,0,Montague,,,MA,"Franklin County",America/New_York,413,NA,US,42.53,-72.53,2080 +01354,STANDARD,0,Gill,"Mount Hermon, Mt Hermon, Northfield Mount Hermon, Northfield Mt Hermon",,MA,"Franklin County",America/New_York,413,NA,US,42.62,-72.51,1410 +01355,STANDARD,0,"New Salem",,,MA,"Franklin County",America/New_York,978,NA,US,42.5,-72.33,850 +01360,STANDARD,0,Northfield,,"N Field, No Field",MA,"Franklin County",America/New_York,413,NA,US,42.7,-72.43,2690 +01364,STANDARD,0,Orange,Warwick,"Blissville, Eagleville, Lake Mattawa, N Orange, North Orange",MA,"Franklin County",America/New_York,978,NA,US,42.59,-72.3,6330 +01366,STANDARD,0,Petersham,,,MA,"Worcester County",America/New_York,978,NA,US,42.48,-72.18,1090 +01367,STANDARD,0,Rowe,,"Hoosac Tunnel, Zoar",MA,"Franklin County",America/New_York,413,NA,US,42.7,-72.9,410 +01368,STANDARD,0,Royalston,"S Royalston",,MA,"Worcester County",America/New_York,978,NA,US,42.68,-72.18,1090 +01370,STANDARD,0,"Shelburne Falls","Shelburne Fls","Baptist Corner, East Charlemont, Shelburne",MA,"Franklin County",America/New_York,413,NA,US,42.6,-72.74,3500 +01373,STANDARD,0,"South Deerfield","S Deerfield","So Deerfield",MA,"Franklin County",America/New_York,413,NA,US,42.47,-72.59,4030 +01375,STANDARD,0,Sunderland,,,MA,"Franklin County",America/New_York,413,NA,US,42.46,-72.58,2750 +01376,STANDARD,0,"Turners Falls",,,MA,"Franklin County",America/New_York,413,NA,US,42.59,-72.55,4270 +01378,STANDARD,0,Warwick,Orange,,MA,"Franklin County",America/New_York,978,NA,US,42.68,-72.33,650 +01379,STANDARD,0,Wendell,,,MA,"Franklin County",America/New_York,,NA,US,42.55,-72.4,690 +01380,STANDARD,0,"Wendell Depot",,,MA,"Franklin County",America/New_York,,NA,US,42.58,-72.37,81 +01420,STANDARD,0,Fitchburg,,,MA,"Worcester County",America/New_York,"978,508",NA,US,42.58,-71.81,34250 +01430,STANDARD,0,Ashburnham,,"South Ashburnham",MA,"Worcester County",America/New_York,978,NA,US,42.63,-71.9,5850 +01431,STANDARD,0,Ashby,,,MA,"Middlesex County",America/New_York,978,NA,US,42.68,-71.81,2920 +01432,STANDARD,0,Ayer,,"Devens, Fort Devens, Ft Devens",MA,"Middlesex County",America/New_York,978,NA,US,42.56,-71.58,7440 +01434,STANDARD,0,Devens,Ayer,,MA,"Worcester County",America/New_York,,NA,US,42.53,-71.61,420 +01436,STANDARD,0,Baldwinville,,"Otter River",MA,"Worcester County",America/New_York,,NA,US,42.6,-72.07,2570 +01438,"PO BOX",0,"East Templeton","E Templeton",,MA,"Worcester County",America/New_York,,NA,US,42.56,-72.03,704 +01440,STANDARD,0,Gardner,,,MA,"Worcester County",America/New_York,978,NA,US,42.58,-71.98,16810 +01441,UNIQUE,0,Westminster,,Tyco,MA,"Worcester County",America/New_York,351,NA,US,42.58,-71.98,0 +01450,STANDARD,0,Groton,,,MA,"Middlesex County",America/New_York,978,NA,US,42.6,-71.57,10850 +01451,STANDARD,0,Harvard,,,MA,"Worcester County",America/New_York,978,NA,US,42.5,-71.58,5320 +01452,STANDARD,0,Hubbardston,,,MA,"Worcester County",America/New_York,978,NA,US,42.48,-72.01,4160 +01453,STANDARD,0,Leominster,,,MA,"Worcester County",America/New_York,"508,978",NA,US,42.51,-71.77,38370 +01460,STANDARD,0,Littleton,,Pingryville,MA,"Middlesex County",America/New_York,"508,781,978",NA,US,42.53,-71.47,9820 +01462,STANDARD,0,Lunenburg,,,MA,"Worcester County",America/New_York,"508,978",NA,US,42.59,-71.72,11070 +01463,STANDARD,0,Pepperell,,"E Pepperell, East Pepperell",MA,"Middlesex County",America/New_York,"351,978",NA,US,42.66,-71.58,10910 +01464,STANDARD,0,Shirley,"Shirley Center, Shirley Ctr",,MA,"Middlesex County",America/New_York,978,NA,US,42.54,-71.65,5650 +01467,"PO BOX",0,"Still River",,,MA,"Worcester County",America/New_York,,NA,US,42.49,-71.61,318 +01468,STANDARD,0,Templeton,,,MA,"Worcester County",America/New_York,978,NA,US,42.55,-72.06,4130 +01469,STANDARD,0,Townsend,,,MA,"Middlesex County",America/New_York,978,NA,US,42.66,-71.7,6810 +01470,UNIQUE,0,Groton,,"New England Business Brm",MA,"Middlesex County",America/New_York,351,NA,US,42.6,-71.57,0 +01471,UNIQUE,0,Groton,,"New England Business Svc Inc",MA,"Middlesex County",America/New_York,351,NA,US,42.6,-71.57,0 +01472,"PO BOX",0,"West Groton",,"W Groton",MA,"Middlesex County",America/New_York,,NA,US,42.61,-71.62,352 +01473,STANDARD,0,Westminster,,,MA,"Worcester County",America/New_York,978,NA,US,42.55,-71.9,7940 +01474,STANDARD,0,"West Townsend","Townsend, W Townsend",,MA,"Middlesex County",America/New_York,978,NA,US,42.66,-71.74,1880 +01475,STANDARD,0,Winchendon,,,MA,"Worcester County",America/New_York,978,NA,US,42.68,-72.04,8850 +01477,"PO BOX",1,"Winchendon Springs","Winchdon Spgs",,MA,"Worcester County",America/New_York,351,NA,US,42.69,-72.01,214 +01501,STANDARD,0,Auburn,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.2,-71.83,15780 +01503,STANDARD,0,Berlin,,,MA,"Worcester County",America/New_York,978,NA,US,42.38,-71.63,3000 +01504,STANDARD,0,Blackstone,,"E Blackstone, East Blackstone, Millerville",MA,"Worcester County",America/New_York,"508,774",NA,US,42.04,-71.53,8490 +01505,STANDARD,0,Boylston,,Morningdale,MA,"Worcester County",America/New_York,"508,774",NA,US,42.35,-71.73,4630 +01506,STANDARD,0,Brookfield,,,MA,"Worcester County",America/New_York,413,NA,US,42.21,-72.1,3020 +01507,STANDARD,0,Charlton,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.13,-71.96,12310 +01508,"PO BOX",0,"Charlton City",,"Richardson Corners",MA,"Worcester County",America/New_York,,NA,US,42.13,-71.96,958 +01509,"PO BOX",0,"Charlton Depot","Charlton Dept, Charlton Dpt",,MA,"Worcester County",America/New_York,,NA,US,42.13,-71.96,52 +01510,STANDARD,0,Clinton,,,MA,"Worcester County",America/New_York,978,NA,US,42.41,-71.68,13190 +01515,STANDARD,0,"East Brookfield","E Brookfield",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.22,-72.04,2140 +01516,STANDARD,0,Douglas,"East Douglas",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.05,-71.73,8470 +01517,"PO BOX",1,"East Princeton","E Princeton",,MA,"Worcester County",America/New_York,,NA,US,42.46,-71.89,0 +01518,STANDARD,0,Fiskdale,Sturbridge,,MA,"Worcester County",America/New_York,"774,508",NA,US,42.12,-72.11,3120 +01519,STANDARD,0,Grafton,,"Hassanamisco Indian Reservat",MA,"Worcester County",America/New_York,"508,774",NA,US,42.2,-71.68,7030 +01520,STANDARD,0,Holden,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.35,-71.85,15860 +01521,STANDARD,0,Holland,Fiskdale,Halland,MA,"Hampden County",America/New_York,508,NA,US,42.05,-72.15,2260 +01522,STANDARD,0,Jefferson,,,MA,"Worcester County",America/New_York,,NA,US,42.38,-71.87,3310 +01523,STANDARD,0,Lancaster,,"North Lancaster",MA,"Worcester County",America/New_York,,NA,US,42.45,-71.66,6030 +01524,STANDARD,0,Leicester,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.25,-71.9,6090 +01525,"PO BOX",0,Linwood,,,MA,"Worcester County",America/New_York,,NA,US,42.11,-71.63,1058 +01526,"PO BOX",0,Manchaug,,,MA,"Worcester County",America/New_York,,NA,US,42.12,-71.76,534 +01527,STANDARD,0,Millbury,,"East Millbury",MA,"Worcester County",America/New_York,"508,774",NA,US,42.19,-71.76,12730 +01529,STANDARD,0,Millville,,,MA,"Worcester County",America/New_York,,NA,US,42.03,-71.58,3020 +01531,STANDARD,0,"New Braintree",,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.31,-72.13,930 +01532,STANDARD,0,Northborough,,Northboro,MA,"Worcester County",America/New_York,"508,774",NA,US,42.31,-71.64,15150 +01534,STANDARD,0,Northbridge,,Rockdale,MA,"Worcester County",America/New_York,,NA,US,42.15,-71.65,5800 +01535,STANDARD,0,"North Brookfield","N Brookfield",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.27,-72.08,4140 +01536,STANDARD,0,"North Grafton",,"N Grafton, No Grafton",MA,"Worcester County",America/New_York,,NA,US,42.23,-71.69,6930 +01537,STANDARD,0,"North Oxford",,,MA,"Worcester County",America/New_York,508,NA,US,42.16,-71.88,2040 +01538,"PO BOX",0,"North Uxbridge","N Uxbridge",,MA,"Worcester County",America/New_York,,NA,US,42.05,-71.64,584 +01540,STANDARD,0,Oxford,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.11,-71.87,10280 +01541,STANDARD,0,Princeton,,,MA,"Worcester County",America/New_York,978,NA,US,42.45,-71.86,3420 +01542,STANDARD,0,Rochdale,,,MA,"Worcester County",America/New_York,,NA,US,42.2,-71.9,2100 +01543,STANDARD,0,Rutland,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.36,-71.95,8730 +01545,STANDARD,0,Shrewsbury,,Edgemere,MA,"Worcester County",America/New_York,"508,774",NA,US,42.3,-71.71,36410 +01546,UNIQUE,0,Shrewsbury,,"Central Mass P & D Ctr",MA,"Worcester County",America/New_York,508,NA,US,42.3,-71.71,0 +01550,STANDARD,0,Southbridge,,"Globe Village, Sandersdale",MA,"Worcester County",America/New_York,"508,774",NA,US,42.08,-72.03,15000 +01560,STANDARD,0,"South Grafton",,Saundersville,MA,"Worcester County",America/New_York,,NA,US,42.17,-71.68,4420 +01561,"PO BOX",0,"South Lancaster","S Lancaster","So Lancaster",MA,"Worcester County",America/New_York,,NA,US,42.44,-71.69,1100 +01562,STANDARD,0,Spencer,,"Lambs Grove",MA,"Worcester County",America/New_York,"508,774",NA,US,42.24,-71.99,10200 +01564,STANDARD,0,Sterling,,"Sterling Junction",MA,"Worcester County",America/New_York,978,NA,US,42.43,-71.75,7790 +01566,STANDARD,0,Sturbridge,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.09,-72.06,6430 +01568,STANDARD,0,Upton,,"W Upton, West Upton",MA,"Worcester County",America/New_York,"508,774",NA,US,42.17,-71.61,7640 +01569,STANDARD,0,Uxbridge,,,MA,"Worcester County",America/New_York,"774,508",NA,US,42.08,-71.6,13130 +01570,STANDARD,0,Webster,"Dudley Hill",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.04,-71.87,15140 +01571,STANDARD,0,Dudley,,,MA,"Worcester County",America/New_York,,NA,US,42.05,-71.93,10480 +01580,UNIQUE,1,Westborough,,"Emc, Westboro",MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.61,0 +01581,STANDARD,0,Westborough,,Westboro,MA,"Worcester County",America/New_York,"508,774",NA,US,42.26,-71.61,20030 +01582,UNIQUE,1,Westborough,,"National Grid Co, Westboro",MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.61,0 +01583,STANDARD,0,"West Boylston",,"Oakdale, Westboylston",MA,"Worcester County",America/New_York,,NA,US,42.36,-71.78,6770 +01585,STANDARD,0,"West Brookfield","W Brookfield",Westbrookfield,MA,"Worcester County",America/New_York,"508,413",NA,US,42.23,-72.14,3850 +01586,"PO BOX",0,"West Millbury",Millbury,,MA,"Worcester County",America/New_York,,NA,US,42.19,-71.76,0 +01588,STANDARD,0,Whitinsville,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.11,-71.67,9140 +01590,STANDARD,0,Sutton,"Wilkinsonvile, Wilkinsonville",,MA,"Worcester County",America/New_York,,NA,US,42.15,-71.76,8810 +01601,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,322 +01602,STANDARD,0,Worcester,,"West Side",MA,"Worcester County",America/New_York,,NA,US,42.27,-71.85,20370 +01603,STANDARD,0,Worcester,,"Webster Square",MA,"Worcester County",America/New_York,508,NA,US,42.24,-71.84,17210 +01604,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.25,-71.77,31160 +01605,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.29,-71.79,22130 +01606,STANDARD,0,Worcester,,Greendale,MA,"Worcester County",America/New_York,508,NA,US,42.32,-71.8,18170 +01607,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.23,-71.79,7610 +01608,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"774,978,508",NA,US,42.26,-71.8,3020 +01609,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"508,774,978",NA,US,42.29,-71.83,12920 +01610,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.25,-71.81,16760 +01611,STANDARD,0,"Cherry Valley",,,MA,"Worcester County",America/New_York,,NA,US,42.23,-71.87,1990 +01612,STANDARD,0,Paxton,Worcester,,MA,"Worcester County",America/New_York,,NA,US,42.31,-71.93,4400 +01613,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,1369 +01614,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,68 +01615,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,13 +01653,UNIQUE,0,Worcester,,Allmerica,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,0 +01654,UNIQUE,1,Worcester,,Verizon,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,0 +01655,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"508,774,978",NA,US,42.26,-71.8,0 +01701,STANDARD,0,Framingham,,"Framingham Center, Framingham So, Saxonville",MA,"Middlesex County",America/New_York,"508,774,781,978",NA,US,42.3,-71.43,30960 +01702,STANDARD,0,Framingham,,,MA,"Middlesex County",America/New_York,"508,774,781,978",NA,US,42.28,-71.44,27520 +01703,"PO BOX",0,Framingham,,,MA,"Middlesex County",America/New_York,508,NA,US,42.3,-71.43,160 +01704,"PO BOX",0,Framingham,,,MA,"Middlesex County",America/New_York,508,NA,US,42.3,-71.43,385 +01705,"PO BOX",0,Framingham,,,MA,"Middlesex County",America/New_York,508,NA,US,42.3,-71.43,71 +01718,STANDARD,0,Acton,,,MA,"Middlesex County",America/New_York,"508,978,781",NA,US,42.52,-71.43,650 +01719,STANDARD,0,Boxborough,"Acton, Boxboro",,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.5,-71.5,5310 +01720,STANDARD,0,Acton,,"W Acton, West Acton",MA,"Middlesex County",America/New_York,"781,508,978",NA,US,42.48,-71.46,22480 +01721,STANDARD,0,Ashland,,,MA,"Middlesex County",America/New_York,,NA,US,42.25,-71.46,17680 +01730,STANDARD,0,Bedford,,,MA,"Middlesex County",America/New_York,"781,857",NA,US,42.48,-71.26,13720 +01731,STANDARD,0,"Hanscom AFB",Bedford,,MA,"Middlesex County",America/New_York,"857,781",NA,US,42.46,-71.28,2340 +01740,STANDARD,0,Bolton,,,MA,"Worcester County",America/New_York,978,NA,US,42.43,-71.6,5580 +01741,STANDARD,0,Carlisle,,,MA,"Middlesex County",America/New_York,,NA,US,42.53,-71.35,5260 +01742,STANDARD,0,Concord,,"W Concord, West Concord",MA,"Middlesex County",America/New_York,978,NA,US,42.45,-71.35,17320 +01745,STANDARD,0,Fayville,Southborough,Southboro,MA,"Worcester County",America/New_York,,NA,US,42.29,-71.5,420 +01746,STANDARD,0,Holliston,,,MA,"Middlesex County",America/New_York,"508,774",NA,US,42.2,-71.43,14680 +01747,STANDARD,0,Hopedale,,,MA,"Worcester County",America/New_York,,NA,US,42.12,-71.54,5710 +01748,STANDARD,0,Hopkinton,,,MA,"Middlesex County",America/New_York,"508,774",NA,US,42.22,-71.52,18000 +01749,STANDARD,0,Hudson,,,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.39,-71.56,18500 +01752,STANDARD,0,Marlborough,,Marlboro,MA,"Middlesex County",America/New_York,"508,774,978",NA,US,42.34,-71.54,36140 +01754,STANDARD,0,Maynard,,,MA,"Middlesex County",America/New_York,978,NA,US,42.42,-71.45,9820 +01756,STANDARD,0,Mendon,,,MA,"Worcester County",America/New_York,,NA,US,42.1,-71.55,6220 +01757,STANDARD,0,Milford,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.14,-71.51,26240 +01760,STANDARD,0,Natick,,"N Natick, No Natick, North Natick, S Natick, So Natick, South Natick",MA,"Middlesex County",America/New_York,"508,774",NA,US,42.28,-71.35,34390 +01770,STANDARD,0,Sherborn,,,MA,"Middlesex County",America/New_York,,NA,US,42.23,-71.36,4320 +01772,STANDARD,0,Southborough,,Southboro,MA,"Worcester County",America/New_York,"508,978",NA,US,42.3,-71.51,10070 +01773,STANDARD,0,Lincoln,,"Lincoln Center",MA,"Middlesex County",America/New_York,781,NA,US,42.41,-71.3,5370 +01775,STANDARD,0,Stow,,,MA,"Middlesex County",America/New_York,,NA,US,42.43,-71.5,7240 +01776,STANDARD,0,Sudbury,,"N Sudbury, North Sudbury",MA,"Middlesex County",America/New_York,978,NA,US,42.36,-71.4,18920 +01778,STANDARD,0,Wayland,,Cochituate,MA,"Middlesex County",America/New_York,"508,774",NA,US,42.36,-71.36,14070 +01784,"PO BOX",0,Woodville,,,MA,"Middlesex County",America/New_York,,NA,US,42.23,-71.55,150 +01801,STANDARD,0,Woburn,,,MA,"Middlesex County",America/New_York,"339,617,781,978",NA,US,42.48,-71.15,37040 +01803,STANDARD,0,Burlington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.5,-71.2,25140 +01805,UNIQUE,0,Burlington,,"Lahey Clinic Med Ctr",MA,"Middlesex County",America/New_York,339,NA,US,42.5,-71.2,0 +01806,UNIQUE,1,Woburn,At&t,,MA,"Middlesex County",America/New_York,339,NA,US,42.47,-71.15,0 +01807,UNIQUE,1,Woburn,,"National Grid",MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,0 +01808,UNIQUE,1,Woburn,,At&t,MA,"Middlesex County",America/New_York,339,NA,US,42.5,-71.12,0 +01810,STANDARD,0,Andover,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.65,-71.14,34300 +01812,UNIQUE,0,Andover,,"Internal Revenue Service",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,0 +01813,UNIQUE,0,Woburn,,"Mellon Financial Services",MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,0 +01815,UNIQUE,0,Woburn,,"Bank Of America",MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,0 +01821,STANDARD,0,Billerica,,,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.55,-71.26,29760 +01822,"PO BOX",0,Billerica,,,MA,"Middlesex County",America/New_York,351,NA,US,42.55,-71.26,0 +01824,STANDARD,0,Chelmsford,"Kates Corner, S Chelmsford",,MA,"Middlesex County",America/New_York,,NA,US,42.59,-71.36,25670 +01826,STANDARD,0,Dracut,,,MA,"Middlesex County",America/New_York,,NA,US,42.68,-71.3,30570 +01827,STANDARD,0,Dunstable,,,MA,"Middlesex County",America/New_York,,NA,US,42.66,-71.48,3370 +01830,STANDARD,0,Haverhill,,,MA,"Essex County",America/New_York,978,NA,US,42.78,-71.08,22530 +01831,"PO BOX",0,Haverhill,,,MA,"Essex County",America/New_York,351,NA,US,42.78,-71.08,992 +01832,STANDARD,0,Haverhill,,,MA,"Essex County",America/New_York,978,NA,US,42.79,-71.13,22060 +01833,STANDARD,0,Georgetown,Haverhill,,MA,"Essex County",America/New_York,"351,978",NA,US,42.73,-70.98,8160 +01834,STANDARD,0,Groveland,,,MA,"Essex County",America/New_York,,NA,US,42.75,-71.03,6500 +01835,STANDARD,0,Haverhill,"Bradford, Ward Hill",,MA,"Essex County",America/New_York,978,NA,US,42.75,-71.09,13410 +01840,STANDARD,0,Lawrence,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.71,-71.16,4860 +01841,STANDARD,0,Lawrence,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.71,-71.16,45810 +01842,"PO BOX",0,Lawrence,,,MA,"Essex County",America/New_York,351,NA,US,42.7,-71.16,1297 +01843,STANDARD,0,Lawrence,,"S Lawrence, South Lawrence",MA,"Essex County",America/New_York,"508,978",NA,US,42.7,-71.16,24610 +01844,STANDARD,0,Methuen,,,MA,"Essex County",America/New_York,,NA,US,42.74,-71.18,48180 +01845,STANDARD,0,"North Andover",,"N Andover",MA,"Essex County",America/New_York,,NA,US,42.7,-71.11,28090 +01850,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,"781,978",NA,US,42.66,-71.3,13800 +01851,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,"781,978",NA,US,42.63,-71.32,28740 +01852,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,"781,978",NA,US,42.63,-71.3,29640 +01853,"PO BOX",0,Lowell,,,MA,"Middlesex County",America/New_York,351,NA,US,42.63,-71.32,1641 +01854,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,978,NA,US,42.65,-71.35,20230 +01860,STANDARD,0,Merrimac,,,MA,"Essex County",America/New_York,978,NA,US,42.83,-71,6300 +01862,STANDARD,0,"North Billerica","N Billerica",,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.58,-71.3,9640 +01863,STANDARD,0,"North Chelmsford","N Chelmsford",,MA,"Middlesex County",America/New_York,,NA,US,42.63,-71.39,8700 +01864,STANDARD,0,"North Reading",,"N Reading",MA,"Middlesex County",America/New_York,978,NA,US,42.58,-71.08,15130 +01865,"PO BOX",0,"Nutting Lake",,"Nuttings Lake",MA,"Middlesex County",America/New_York,,NA,US,42.54,-71.25,397 +01866,"PO BOX",0,Pinehurst,,,MA,"Middlesex County",America/New_York,,NA,US,42.53,-71.23,178 +01867,STANDARD,0,Reading,,,MA,"Middlesex County",America/New_York,781,NA,US,42.53,-71.1,24830 +01876,STANDARD,0,Tewksbury,,,MA,"Middlesex County",America/New_York,,NA,US,42.61,-71.23,28800 +01879,STANDARD,0,Tyngsboro,,Tyngsborough,MA,"Middlesex County",America/New_York,978,NA,US,42.68,-71.41,11800 +01880,STANDARD,0,Wakefield,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.5,-71.06,25390 +01885,"PO BOX",0,"West Boxford",,,MA,"Essex County",America/New_York,,NA,US,42.67,-71.03,331 +01886,STANDARD,0,Westford,,"Forge Village, Nabnasset",MA,"Middlesex County",America/New_York,"508,978",NA,US,42.58,-71.43,24610 +01887,STANDARD,0,Wilmington,,,MA,"Middlesex County",America/New_York,978,NA,US,42.55,-71.16,22600 +01888,"PO BOX",0,Woburn,,,MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,242 +01889,UNIQUE,0,"North Reading",,"Massachusetts District, N Reading",MA,"Middlesex County",America/New_York,351,NA,US,42.56,-71.06,0 +01890,STANDARD,0,Winchester,,,MA,"Middlesex County",America/New_York,781,NA,US,42.45,-71.14,22370 +01899,UNIQUE,0,Andover,,"Bar Coded Irs",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,0 +01901,STANDARD,0,Lynn,,,MA,"Essex County",America/New_York,"339,781",NA,US,42.46,-70.95,1680 +01902,STANDARD,0,Lynn,,,MA,"Essex County",America/New_York,"339,781",NA,US,42.47,-70.94,41340 +01903,"PO BOX",0,Lynn,,,MA,"Essex County",America/New_York,339,NA,US,42.47,-70.96,1107 +01904,STANDARD,0,Lynn,"East Lynn",,MA,"Essex County",America/New_York,"508,978",NA,US,42.47,-70.96,18870 +01905,STANDARD,0,Lynn,"West Lynn",,MA,"Essex County",America/New_York,"617,339,781",NA,US,42.47,-70.98,24070 +01906,STANDARD,0,Saugus,,,MA,"Essex County",America/New_York,"339,617,781",NA,US,42.46,-71.01,25750 +01907,STANDARD,0,Swampscott,,,MA,"Essex County",America/New_York,,NA,US,42.47,-70.91,14120 +01908,STANDARD,0,Nahant,,,MA,"Essex County",America/New_York,,NA,US,42.43,-70.93,3160 +01910,UNIQUE,0,Lynn,,"General Elec Co",MA,"Essex County",America/New_York,339,NA,US,42.47,-70.96,0 +01913,STANDARD,0,Amesbury,,,MA,"Essex County",America/New_York,978,NA,US,42.85,-70.92,15210 +01915,STANDARD,0,Beverly,,"Beverly Farms",MA,"Essex County",America/New_York,"508,978",NA,US,42.57,-70.87,35240 +01921,STANDARD,0,Boxford,,,MA,"Essex County",America/New_York,,NA,US,42.67,-70.98,8150 +01922,STANDARD,0,Byfield,Newbury,,MA,"Essex County",America/New_York,,NA,US,42.75,-70.93,3040 +01923,STANDARD,0,Danvers,,,MA,"Essex County",America/New_York,"351,978",NA,US,42.57,-70.95,26050 +01929,STANDARD,0,Essex,,,MA,"Essex County",America/New_York,978,NA,US,42.63,-70.77,3380 +01930,STANDARD,0,Gloucester,,Magnolia,MA,"Essex County",America/New_York,"508,978",NA,US,42.62,-70.66,25740 +01931,"PO BOX",0,Gloucester,,,MA,"Essex County",America/New_York,351,NA,US,42.62,-70.66,554 +01936,"PO BOX",0,Hamilton,,,MA,"Essex County",America/New_York,,NA,US,42.61,-70.86,361 +01937,"PO BOX",0,Hathorne,,,MA,"Essex County",America/New_York,,NA,US,42.59,-70.98,375 +01938,STANDARD,0,Ipswich,,,MA,"Essex County",America/New_York,978,NA,US,42.67,-70.83,12880 +01940,STANDARD,0,Lynnfield,,"South Lynnfield",MA,"Essex County",America/New_York,781,NA,US,42.53,-71.04,13070 +01944,STANDARD,0,Manchester,"Manchester By The Sea",,MA,"Essex County",America/New_York,"508,978",NA,US,42.56,-70.76,5070 +01945,STANDARD,0,Marblehead,,Mhead,MA,"Essex County",America/New_York,781,NA,US,42.5,-70.85,20130 +01949,STANDARD,0,Middleton,,,MA,"Essex County",America/New_York,,NA,US,42.6,-71.01,8340 +01950,STANDARD,0,Newburyport,,"Plum Island",MA,"Essex County",America/New_York,978,NA,US,42.81,-70.88,16930 +01951,STANDARD,0,Newbury,Newburyport,"Plum Island",MA,"Essex County",America/New_York,978,NA,US,42.77,-70.85,3400 +01952,STANDARD,0,Salisbury,"Salisbury Bch, Salisbury Beach",,MA,"Essex County",America/New_York,,NA,US,42.83,-70.84,7780 +01960,STANDARD,0,Peabody,,"West Peabody",MA,"Essex County",America/New_York,"508,978",NA,US,42.53,-70.97,48300 +01961,"PO BOX",0,Peabody,,,MA,"Essex County",America/New_York,351,NA,US,42.53,-70.97,315 +01965,"PO BOX",0,"Prides Crossing","Prides Xing",,MA,"Essex County",America/New_York,351,NA,US,42.56,-70.86,428 +01966,STANDARD,0,Rockport,,"Pigeon Cove",MA,"Essex County",America/New_York,"508,351,978",NA,US,42.64,-70.61,6420 +01969,STANDARD,0,Rowley,,,MA,"Essex County",America/New_York,978,NA,US,42.72,-70.89,5980 +01970,STANDARD,0,Salem,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.51,-70.9,36430 +01971,"PO BOX",0,Salem,,,MA,"Essex County",America/New_York,351,NA,US,42.51,-70.89,356 +01982,STANDARD,0,"South Hamilton","S Hamilton",,MA,"Essex County",America/New_York,978,NA,US,42.62,-70.86,6970 +01983,STANDARD,0,Topsfield,,,MA,"Essex County",America/New_York,978,NA,US,42.63,-70.95,6330 +01984,STANDARD,0,Wenham,,,MA,"Essex County",America/New_York,,NA,US,42.6,-70.88,3670 +01985,STANDARD,0,"West Newbury",,,MA,"Essex County",America/New_York,978,NA,US,42.8,-71,4440 +02018,"PO BOX",0,Accord,Hingham,,MA,"Plymouth County",America/New_York,339,NA,US,42.17,-70.88,123 +02019,STANDARD,0,Bellingham,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.09,-71.47,15950 +02020,"PO BOX",0,"Brant Rock",,,MA,"Plymouth County",America/New_York,,NA,US,42.08,-70.64,759 +02021,STANDARD,0,Canton,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.15,-71.13,22440 +02025,STANDARD,0,Cohasset,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.23,-70.8,8160 +02026,STANDARD,0,Dedham,,,MA,"Norfolk County",America/New_York,"617,781",NA,US,42.24,-71.17,23360 +02027,"PO BOX",0,Dedham,,,MA,"Norfolk County",America/New_York,339,NA,US,42.24,-71.17,183 +02030,STANDARD,0,Dover,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.24,-71.27,5950 +02031,STANDARD,1,"East Mansfield","Mansfield, E Mansfield",,MA,"Bristol County",America/New_York,508,NA,US,42.02,-71.17,0 +02032,STANDARD,0,"East Walpole",,"E Walpole",MA,"Norfolk County",America/New_York,"508,774,339,781",NA,US,42.15,-71.21,4680 +02035,STANDARD,0,Foxboro,Foxborough,,MA,"Norfolk County",America/New_York,"781,508,774",NA,US,42.06,-71.24,17420 +02038,STANDARD,0,Franklin,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.08,-71.38,31300 +02040,"PO BOX",0,Greenbush,Scituate,,MA,"Plymouth County",America/New_York,339,NA,US,42.19,-70.76,122 +02041,"PO BOX",0,"Green Harbor",,,MA,"Plymouth County",America/New_York,,NA,US,42.1,-70.71,843 +02043,STANDARD,0,Hingham,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.23,-70.88,23520 +02044,UNIQUE,0,Hingham,,"Shared Firm Zip Code",MA,"Plymouth County",America/New_York,339,NA,US,42.23,-70.88,0 +02045,STANDARD,0,Hull,,"Nantasket Beach",MA,"Plymouth County",America/New_York,781,NA,US,42.3,-70.9,9010 +02047,"PO BOX",0,Humarock,,,MA,"Plymouth County",America/New_York,339,NA,US,42.13,-70.69,649 +02048,STANDARD,0,Mansfield,,,MA,"Bristol County",America/New_York,"508,774",NA,US,42.02,-71.21,22930 +02050,STANDARD,0,Marshfield,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.09,-70.7,22610 +02051,"PO BOX",0,"Marshfield Hills","Marshfld Hls",,MA,"Plymouth County",America/New_York,,NA,US,42.15,-70.73,752 +02052,STANDARD,0,Medfield,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.18,-71.3,12950 +02053,STANDARD,0,Medway,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.16,-71.43,12770 +02054,STANDARD,0,Millis,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.16,-71.35,8050 +02055,"PO BOX",0,Minot,Scituate,,MA,"Plymouth County",America/New_York,339,NA,US,42.19,-70.76,77 +02056,STANDARD,0,Norfolk,,,MA,"Norfolk County",America/New_York,,NA,US,42.11,-71.31,10160 +02059,"PO BOX",0,"North Marshfield","N Marshfield",,MA,"Plymouth County",America/New_York,,NA,US,42.1,-70.71,363 +02060,"PO BOX",0,"North Scituate","N Scituate, Scituate",,MA,"Plymouth County",America/New_York,339,NA,US,42.21,-70.76,237 +02061,STANDARD,0,Norwell,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.16,-70.78,11240 +02062,STANDARD,0,Norwood,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.18,-71.19,27960 +02065,"PO BOX",0,"Ocean Bluff",Marshfield,,MA,"Plymouth County",America/New_York,,NA,US,42.1,-70.71,447 +02066,STANDARD,0,Scituate,,"Scituate Center, Scituate Harbor",MA,"Plymouth County",America/New_York,"339,781",NA,US,42.18,-70.73,17810 +02067,STANDARD,0,Sharon,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.11,-71.18,18280 +02070,"PO BOX",0,Sheldonville,,,MA,"Norfolk County",America/New_York,,NA,US,42.05,-71.35,182 +02071,STANDARD,0,"South Walpole",,"S Walpole",MA,"Norfolk County",America/New_York,"508,774,781",NA,US,42.1,-71.27,1010 +02072,STANDARD,0,Stoughton,,,MA,"Norfolk County",America/New_York,781,NA,US,42.11,-71.1,26430 +02081,STANDARD,0,Walpole,,,MA,"Norfolk County",America/New_York,"781,508,774",NA,US,42.13,-71.24,19030 +02090,STANDARD,0,Westwood,,Islington,MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.21,-71.21,15880 +02093,STANDARD,0,Wrentham,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.06,-71.33,11410 +02108,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,857,339",NA,US,42.36,-71.06,3770 +02109,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.37,-71.05,3820 +02110,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"508,774,617,781,857,978",NA,US,42.36,-71.05,3660 +02111,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,781,978,339,857",NA,US,42.35,-71.06,5950 +02112,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,574 +02113,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"781,617",NA,US,42.37,-71.06,5090 +02114,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,339,857",NA,US,42.36,-71.07,10610 +02115,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.34,-71.1,9770 +02116,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"508,617,781,978,857",NA,US,42.35,-71.08,14920 +02117,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,443 +02118,STANDARD,0,Boston,Roxbury,,MA,"Suffolk County",America/New_York,"857,617",NA,US,42.34,-71.07,21420 +02119,STANDARD,0,Roxbury,Boston,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.32,-71.09,22500 +02120,STANDARD,0,"Roxbury Crossing","Boston, Mission Hill, Roxbury, Roxbury Xing",,MA,"Suffolk County",America/New_York,"857,617",NA,US,42.33,-71.1,7340 +02121,STANDARD,0,Dorchester,"Boston, Grove Hall",,MA,"Suffolk County",America/New_York,"617,781,857",NA,US,42.31,-71.09,23330 +02122,STANDARD,0,Dorchester,Boston,,MA,"Suffolk County",America/New_York,"781,617,857",NA,US,42.29,-71.04,20730 +02123,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,449 +02124,STANDARD,0,"Dorchester Center","Boston, Dorchester, Dorchestr Ctr",,MA,"Suffolk County",America/New_York,617,NA,US,42.29,-71.07,43660 +02125,STANDARD,0,Dorchester,"Boston, Uphams Corner",,MA,"Suffolk County",America/New_York,"617,857,781",NA,US,42.32,-71.06,27640 +02126,STANDARD,0,Mattapan,Boston,"Hyde Park",MA,"Suffolk County",America/New_York,617,NA,US,42.27,-71.1,20480 +02127,STANDARD,0,"South Boston",Boston,"S Boston",MA,"Suffolk County",America/New_York,"617,774,781,978,857",NA,US,42.33,-71.04,29350 +02128,STANDARD,0,"East Boston",Boston,"E Boston",MA,"Suffolk County",America/New_York,"617,857",NA,US,42.36,-71.01,33980 +02129,STANDARD,0,Charlestown,Boston,,MA,"Suffolk County",America/New_York,"857,617,781",NA,US,42.38,-71.06,16480 +02130,STANDARD,0,"Jamaica Plain",Boston,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.3,-71.11,30960 +02131,STANDARD,0,Roslindale,Boston,,MA,"Suffolk County",America/New_York,617,NA,US,42.28,-71.13,27520 +02132,STANDARD,0,"West Roxbury",Boston,"W Roxbury",MA,"Suffolk County",America/New_York,"617,781",NA,US,42.28,-71.16,25120 +02133,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"339,508,781,857,978,617",NA,US,42.35,-71.06,0 +02134,STANDARD,0,Allston,Boston,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.35,-71.13,12700 +02135,STANDARD,0,Brighton,Boston,"Jamaica Plain",MA,"Suffolk County",America/New_York,"617,857",NA,US,42.35,-71.15,30670 +02136,STANDARD,0,"Hyde Park","Boston, Readville",,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.26,-71.13,32270 +02137,"PO BOX",0,Readville,"Boston, Hyde Park",,MA,"Suffolk County",America/New_York,617,NA,US,42.25,-71.12,180 +02138,STANDARD,0,Cambridge,,,MA,"Middlesex County",America/New_York,"508,617,857",NA,US,42.38,-71.14,22070 +02139,STANDARD,0,Cambridge,,"Cambridgeport, Inman Square",MA,"Middlesex County",America/New_York,"339,781,978,508,617,857",NA,US,42.37,-71.11,26870 +02140,STANDARD,0,Cambridge,"N Cambridge, North Cambridge","Porter Square",MA,"Middlesex County",America/New_York,617,NA,US,42.39,-71.13,17780 +02141,STANDARD,0,Cambridge,"E Cambridge, East Cambridge",,MA,"Middlesex County",America/New_York,"339,617,508,781,857,978",NA,US,42.37,-71.08,10580 +02142,STANDARD,0,Cambridge,,"Kendall Square",MA,"Middlesex County",America/New_York,"508,781,857,978,339,617",NA,US,42.36,-71.08,2550 +02143,STANDARD,0,Somerville,,"E Somerville, East Somerville",MA,"Middlesex County",America/New_York,"617,857",NA,US,42.38,-71.1,20810 +02144,STANDARD,0,Somerville,"W Somerville, West Somerville",,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.4,-71.12,19420 +02145,STANDARD,0,Somerville,"Winter Hill",,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.39,-71.1,22130 +02148,STANDARD,0,Malden,,,MA,"Middlesex County",America/New_York,"857,339,617,781",NA,US,42.43,-71.05,54910 +02149,STANDARD,0,Everett,,,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.4,-71.05,39200 +02150,STANDARD,0,Chelsea,,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.39,-71.03,32690 +02151,STANDARD,0,Revere,,"Beachmont, Revere Beach",MA,"Suffolk County",America/New_York,"617,339,781",NA,US,42.41,-70.99,49600 +02152,STANDARD,0,Winthrop,,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.37,-70.98,16070 +02153,"PO BOX",0,Medford,"Tufts Univ, Tufts University",,MA,"Middlesex County",America/New_York,617,NA,US,42.42,-71.1,0 +02155,STANDARD,0,Medford,,,MA,"Middlesex County",America/New_York,"617,339,781",NA,US,42.42,-71.1,49560 +02156,"PO BOX",0,"West Medford",,"W Medford",MA,"Middlesex County",America/New_York,339,NA,US,42.42,-71.13,20 +02163,STANDARD,0,Boston,Cambridge,"Soldiers Field",MA,"Suffolk County",America/New_York,"339,781,978,508,617,857",NA,US,42.37,-71.12,520 +02169,STANDARD,0,Quincy,,"Houghs Neck, Quincy Center, South Quincy, West Quincy",MA,"Norfolk County",America/New_York,"617,857",NA,US,42.26,-71,50500 +02170,STANDARD,0,Quincy,Wollaston,,MA,"Norfolk County",America/New_York,"617,857",NA,US,42.27,-71.02,18130 +02171,STANDARD,0,Quincy,"North Quincy, Squantum","Marina Bay, N Quincy, No Quincy, Norfolk Downs",MA,"Norfolk County",America/New_York,"617,857",NA,US,42.29,-71.02,16970 +02176,STANDARD,0,Melrose,,,MA,"Middlesex County",America/New_York,"339,617,781",NA,US,42.45,-71.05,27490 +02180,STANDARD,0,Stoneham,,,MA,"Middlesex County",America/New_York,"617,781",NA,US,42.47,-71.09,21610 +02184,STANDARD,0,Braintree,,"Braintree Highlands, Braintree Hld, E Braintree, East Braintree",MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.2,-71,36360 +02185,"PO BOX",0,Braintree,,,MA,"Norfolk County",America/New_York,339,NA,US,42.2,-71,257 +02186,STANDARD,0,Milton,,"East Milton",MA,"Norfolk County",America/New_York,617,NA,US,42.24,-71.08,26500 +02187,"PO BOX",0,"Milton Village","Milton Vlg",,MA,"Norfolk County",America/New_York,617,NA,US,42.26,-71.08,63 +02188,STANDARD,0,Weymouth,,"Weymouth Lndg",MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.2,-70.96,13550 +02189,STANDARD,0,"East Weymouth",Weymouth,,MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.2,-70.94,13410 +02190,STANDARD,0,"South Weymouth","S Weymouth, Weymouth","Weymouth Nas",MA,"Norfolk County",America/New_York,,NA,US,42.17,-70.95,17100 +02191,STANDARD,0,"North Weymouth","N Weymouth, Weymouth",,MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.24,-70.94,7630 +02196,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,793 +02199,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"339,857,978,508,617,781",NA,US,42.35,-71.08,1240 +02201,UNIQUE,0,Boston,,"Boston City Hall",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,15 +02203,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,857,NA,US,42.36,-71.06,0 +02204,UNIQUE,0,Boston,,"Mass Tax, Massachusetts Tax",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02205,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,1678 +02206,UNIQUE,0,Boston,,"State Street Corporation",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02207,UNIQUE,1,Boston,,"Bell Atlantic Telephone Co",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.05,0 +02210,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,774,781,857,978",NA,US,42.35,-71.04,4340 +02211,UNIQUE,0,Boston,,"Bank Of America",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02212,UNIQUE,0,Boston,,"Bank Of America",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02215,STANDARD,0,Boston,,"Boston University, Kenmore",MA,"Suffolk County",America/New_York,"617,857",NA,US,42.35,-71.1,7510 +02216,UNIQUE,1,Boston,,"John Hancock P O Box 192",MA,"Suffolk County",America/New_York,617,NA,US,42.34,-71.07,17 +02217,UNIQUE,0,Boston,,"John Hancock P O Box 505",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02222,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"857,617,781",NA,US,42.35,-71.06,0 +02228,"PO BOX",1,"East Boston",Boston,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,93 +02238,"PO BOX",0,Cambridge,"Harvard Sq, Harvard Square",,MA,"Middlesex County",America/New_York,617,NA,US,42.37,-71.11,534 +02239,UNIQUE,1,Cambridge,"Com/energy Services",,MA,"Middlesex County",America/New_York,617,NA,US,42.36,-71.1,0 +02241,UNIQUE,0,Boston,,"Bank Of America, Fleet Bank Boston",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02266,UNIQUE,1,Boston,,"Boston Financial Data Servic",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02269,"PO BOX",0,Quincy,,,MA,"Norfolk County",America/New_York,617,NA,US,42.26,-71,478 +02283,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,"617,781,978,508,857",NA,US,42.35,-71.06,0 +02284,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,"508,617,781,857,978",NA,US,42.35,-71.06,0 +02293,UNIQUE,0,Boston,,"Fidelity Service Company",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02295,UNIQUE,1,Boston,,"John Hancock Mutual Ins",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02297,UNIQUE,0,Boston,,"Cash Management",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02298,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.34,-71.05,0 +02301,STANDARD,0,Brockton,,,MA,"Plymouth County",America/New_York,"508,774,781",NA,US,42.08,-71.02,57670 +02302,STANDARD,0,Brockton,,,MA,"Plymouth County",America/New_York,"508,774,781",NA,US,42.09,-71,31920 +02303,"PO BOX",0,Brockton,,,MA,"Plymouth County",America/New_York,508,NA,US,42.08,-71.02,1583 +02304,"PO BOX",0,Brockton,,,MA,"Plymouth County",America/New_York,508,NA,US,42.08,-71.02,323 +02305,"PO BOX",0,Brockton,,,MA,"Plymouth County",America/New_York,508,NA,US,42.08,-71.02,464 +02322,STANDARD,0,Avon,,,MA,"Norfolk County",America/New_York,,NA,US,42.13,-71.05,4480 +02324,STANDARD,0,Bridgewater,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.98,-70.97,22530 +02325,UNIQUE,0,Bridgewater,,"Bridgewater State College",MA,"Plymouth County",America/New_York,508,NA,US,41.98,-70.97,10 +02327,"PO BOX",0,Bryantville,,,MA,"Plymouth County",America/New_York,,NA,US,42.06,-70.8,613 +02330,STANDARD,0,Carver,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.88,-70.76,10460 +02331,"PO BOX",0,Duxbury,,,MA,"Plymouth County",America/New_York,339,NA,US,42.04,-70.67,1883 +02332,STANDARD,0,Duxbury,,,MA,"Plymouth County",America/New_York,781,NA,US,42.04,-70.67,14590 +02333,STANDARD,0,"East Bridgewater","E Bridgewater, E Bridgewtr",,MA,"Plymouth County",America/New_York,"508,774",NA,US,42.03,-70.95,13580 +02334,"PO BOX",0,Easton,,,MA,"Bristol County",America/New_York,508,NA,US,42.03,-71.1,375 +02337,"PO BOX",0,Elmwood,,,MA,"Plymouth County",America/New_York,,NA,US,42.01,-70.96,119 +02338,STANDARD,0,Halifax,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,41.98,-70.86,7450 +02339,STANDARD,0,Hanover,,"Assinippi, West Hanover",MA,"Plymouth County",America/New_York,781,NA,US,42.11,-70.81,14590 +02340,UNIQUE,1,Hanover,,Wearguard,MA,"Plymouth County",America/New_York,339,NA,US,42.11,-70.81,0 +02341,STANDARD,0,Hanson,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.06,-70.85,9950 +02343,STANDARD,0,Holbrook,,,MA,"Norfolk County",America/New_York,,NA,US,42.14,-71,10240 +02344,UNIQUE,0,Middleboro,Middleborough,"Aetna Life & Casualty Co",MA,"Plymouth County",America/New_York,508,NA,US,41.86,-70.9,0 +02345,"PO BOX",0,Manomet,,,MA,"Plymouth County",America/New_York,,NA,US,41.92,-70.56,1470 +02346,STANDARD,0,Middleboro,,Middleborough,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.86,-70.9,21890 +02347,STANDARD,0,Lakeville,,,MA,"Plymouth County",America/New_York,774,NA,US,41.85,-70.95,10840 +02348,UNIQUE,0,Lakeville,"Middleboro, Middleborough",Talbots,MA,"Plymouth County",America/New_York,508,NA,US,41.86,-70.9,0 +02349,UNIQUE,0,Middleboro,Middleborough,"Ocean Spray",MA,"Plymouth County",America/New_York,508,NA,US,41.86,-70.9,0 +02350,"PO BOX",0,Monponsett,,,MA,"Plymouth County",America/New_York,,NA,US,42.02,-70.84,494 +02351,STANDARD,0,Abington,,"North Abington",MA,"Plymouth County",America/New_York,,NA,US,42.11,-70.95,15540 +02355,"PO BOX",0,"North Carver",,"East Carver",MA,"Plymouth County",America/New_York,,NA,US,41.91,-70.79,409 +02356,STANDARD,0,"North Easton",,"N Easton, No Easton",MA,"Bristol County",America/New_York,"508,774",NA,US,42.05,-71.1,12020 +02357,UNIQUE,0,"North Easton","Stonehill Clg","Stonehill Coll, Stonehill College",MA,"Bristol County",America/New_York,508,NA,US,42.06,-71.08,14 +02358,"PO BOX",0,"North Pembroke","N Pembroke",,MA,"Plymouth County",America/New_York,,NA,US,42.09,-70.78,282 +02359,STANDARD,0,Pembroke,,"East Pembroke",MA,"Plymouth County",America/New_York,"339,781",NA,US,42.06,-70.8,16960 +02360,STANDARD,0,Plymouth,,Cedarville,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.95,-70.66,52730 +02361,"PO BOX",0,Plymouth,,,MA,"Plymouth County",America/New_York,508,NA,US,41.95,-70.66,252 +02362,"PO BOX",0,Plymouth,,,MA,"Plymouth County",America/New_York,508,NA,US,41.95,-70.66,981 +02364,STANDARD,0,Kingston,,"Rocky Nook, Silver Lake",MA,"Plymouth County",America/New_York,"339,617,781",NA,US,41.99,-70.71,12540 +02366,"PO BOX",0,"South Carver",,,MA,"Plymouth County",America/New_York,,NA,US,41.85,-70.66,385 +02367,STANDARD,0,Plympton,,,MA,"Plymouth County",America/New_York,,NA,US,41.95,-70.81,2840 +02368,STANDARD,0,Randolph,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.17,-71.05,31550 +02370,STANDARD,0,Rockland,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.13,-70.91,16180 +02375,STANDARD,0,"South Easton",,"S Easton, So Easton",MA,"Bristol County",America/New_York,"508,774",NA,US,42.03,-71.1,9890 +02379,STANDARD,0,"West Bridgewater","W Bridgewater",,MA,"Plymouth County",America/New_York,508,NA,US,42.01,-71,7030 +02381,"PO BOX",0,"White Horse Beach","Wht Horse Bch",,MA,"Plymouth County",America/New_York,,NA,US,41.93,-70.59,383 +02382,STANDARD,0,Whitman,,,MA,"Plymouth County",America/New_York,781,NA,US,42.08,-70.93,13990 +02420,STANDARD,0,Lexington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.46,-71.22,15380 +02421,STANDARD,0,Lexington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.44,-71.23,17920 +02445,STANDARD,0,Brookline,,,MA,"Norfolk County",America/New_York,"617,857",NA,US,42.32,-71.14,17750 +02446,STANDARD,0,Brookline,,,MA,"Norfolk County",America/New_York,"617,857",NA,US,42.34,-71.12,22940 +02447,"PO BOX",0,"Brookline Village","Brookline Vlg",,MA,"Norfolk County",America/New_York,617,NA,US,42.33,-71.13,120 +02451,STANDARD,0,Waltham,"North Waltham",,MA,"Middlesex County",America/New_York,"339,617,781,508,978",NA,US,42.38,-71.24,16060 +02452,STANDARD,0,Waltham,"North Waltham",,MA,"Middlesex County",America/New_York,"508,978,339,617,781",NA,US,42.39,-71.22,10680 +02453,STANDARD,0,Waltham,"South Waltham",,MA,"Middlesex County",America/New_York,"508,978,339,617,781",NA,US,42.37,-71.24,23010 +02454,"PO BOX",0,Waltham,,,MA,"Middlesex County",America/New_York,339,NA,US,42.38,-71.24,543 +02455,"PO BOX",0,"North Waltham",,,MA,"Middlesex County",America/New_York,339,NA,US,42.39,-71.22,81 +02456,"PO BOX",0,"New Town",,Newton,MA,"Middlesex County",America/New_York,617,NA,US,42.33,-71.2,28 +02457,"PO BOX",0,"Babson Park",,,MA,"Norfolk County",America/New_York,339,NA,US,42.3,-71.27,105 +02458,STANDARD,0,Newton,Newtonville,Riverside,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.35,-71.19,11450 +02459,STANDARD,0,"Newton Center","Newton, Newton Centre","Newton Cntr, Newton Ctr",MA,"Middlesex County",America/New_York,617,NA,US,42.31,-71.19,17470 +02460,STANDARD,0,Newtonville,Newton,,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.35,-71.2,8840 +02461,STANDARD,0,"Newton Highlands","Newton, Newton Hlds",,MA,"Middlesex County",America/New_York,617,NA,US,42.32,-71.21,7020 +02462,STANDARD,0,"Newton Lower Falls","Newton, Newton L F, Newtonville",,MA,"Middlesex County",America/New_York,617,NA,US,42.33,-71.26,1310 +02464,STANDARD,0,"Newton Upper Falls","Newton, Newton U F",,MA,"Middlesex County",America/New_York,617,NA,US,42.31,-71.22,2920 +02465,STANDARD,0,"West Newton",Newton,"W Newton",MA,"Middlesex County",America/New_York,"617,857",NA,US,42.35,-71.22,11680 +02466,STANDARD,0,Auburndale,,Newton,MA,"Middlesex County",America/New_York,617,NA,US,42.34,-71.24,6530 +02467,STANDARD,0,"Chestnut Hill","Boston Clg, Boston College",Newton,MA,"Norfolk County",America/New_York,"857,617",NA,US,42.31,-71.16,14500 +02468,STANDARD,0,Waban,,Newton,MA,"Middlesex County",America/New_York,"617,781",NA,US,42.32,-71.23,5630 +02471,"PO BOX",0,Watertown,,,MA,"Middlesex County",America/New_York,617,NA,US,42.36,-71.17,273 +02472,STANDARD,0,Watertown,"E Watertown, East Watertown",,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.37,-71.18,30230 +02474,STANDARD,0,Arlington,"E Arlington, East Arlington",,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.42,-71.16,26310 +02475,"PO BOX",0,"Arlington Heights","Arlington Hts",,MA,"Middlesex County",America/New_York,339,NA,US,42.41,-71.18,19 +02476,STANDARD,0,Arlington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.41,-71.16,16460 +02477,UNIQUE,0,Watertown,,"Field Premium Inc",MA,"Middlesex County",America/New_York,617,NA,US,42.36,-71.17,0 +02478,STANDARD,0,Belmont,,,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.39,-71.18,25340 +02479,"PO BOX",0,Waverley,,,MA,"Middlesex County",America/New_York,,NA,US,42.39,-71.17,39 +02481,STANDARD,0,"Wellesley Hills","Wellesley, Wellesley Hls","Wellesley Fms",MA,"Norfolk County",America/New_York,"508,774,339,781",NA,US,42.31,-71.27,14710 +02482,STANDARD,0,Wellesley,,,MA,"Norfolk County",America/New_York,"339,781,508,774",NA,US,42.29,-71.3,10310 +02492,STANDARD,0,Needham,,"Needham Jct",MA,"Norfolk County",America/New_York,"508,617,774,857,339,781",NA,US,42.28,-71.24,20810 +02493,STANDARD,0,Weston,,"Cherry Brook, Hastings, Kendal Green, Silver Hill, Stony Brook",MA,"Middlesex County",America/New_York,,NA,US,42.36,-71.3,10490 +02494,STANDARD,0,"Needham Heights","Needham, Needham Hgts",,MA,"Norfolk County",America/New_York,"339,781,508,617,774,857",NA,US,42.3,-71.23,10100 +02495,"PO BOX",0,Nonantum,Newton,,MA,"Middlesex County",America/New_York,617,NA,US,42.33,-71.2,30 +02532,STANDARD,0,"Buzzards Bay",Bourne,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.75,-70.61,10210 +02534,"PO BOX",0,Cataumet,,,MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.61,916 +02535,STANDARD,0,Chilmark,"Aquinnah, Gay Head",,MA,"Dukes County",America/New_York,508,NA,US,41.34,-70.74,1190 +02536,STANDARD,0,"East Falmouth","E Falmouth, Ea Falmouth, Hatchville, Teaticket, Waquoit",,MA,"Barnstable County",America/New_York,508,NA,US,41.56,-70.55,18110 +02537,STANDARD,0,"East Sandwich","E Sandwich",,MA,"Barnstable County",America/New_York,508,NA,US,41.73,-70.43,5730 +02538,STANDARD,0,"East Wareham","E Wareham",,MA,"Plymouth County",America/New_York,774,NA,US,41.78,-70.65,4140 +02539,STANDARD,0,Edgartown,,"Chappaquiddick Island",MA,"Dukes County",America/New_York,"508,774",NA,US,41.38,-70.53,5020 +02540,STANDARD,0,Falmouth,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.56,-70.62,6280 +02541,"PO BOX",0,Falmouth,,,MA,"Barnstable County",America/New_York,508,NA,US,41.54,-70.6,594 +02542,STANDARD,0,"Buzzards Bay","Otis Angb","Otis AFB, Otis Air National Guard, Otis Ang",MA,"Barnstable County",America/New_York,"508,774",NA,US,41.71,-70.55,500 +02543,STANDARD,0,"Woods Hole",Falmouth,Woodshole,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.52,-70.66,700 +02552,"PO BOX",0,Menemsha,,,MA,"Dukes County",America/New_York,,NA,US,41.34,-70.73,46 +02553,"PO BOX",0,"Monument Beach","Monument Bch",,MA,"Barnstable County",America/New_York,508,NA,US,41.71,-70.62,1171 +02554,STANDARD,0,Nantucket,,,MA,"Nantucket County",America/New_York,"508,774",NA,US,41.27,-70.1,10410 +02556,STANDARD,0,"North Falmouth","N Falmouth",,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.64,-70.63,3280 +02557,"PO BOX",0,"Oak Bluffs",,,MA,"Dukes County",America/New_York,,NA,US,41.45,-70.56,2660 +02558,"PO BOX",0,Onset,,,MA,"Plymouth County",America/New_York,508,NA,US,41.74,-70.66,2189 +02559,STANDARD,0,Pocasset,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.69,-70.63,2930 +02561,"PO BOX",0,Sagamore,,,MA,"Barnstable County",America/New_York,508,NA,US,41.77,-70.53,884 +02562,STANDARD,0,"Sagamore Beach","Sagamore Bch",,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.79,-70.53,3090 +02563,STANDARD,0,Sandwich,,,MA,"Barnstable County",America/New_York,"774,508",NA,US,41.75,-70.49,9720 +02564,"PO BOX",0,Siasconset,Nantucket,Sconset,MA,"Nantucket County",America/New_York,508,NA,US,41.27,-70,423 +02565,"PO BOX",1,"Silver Beach","N Falmouth, North Falmouth",,MA,"Barnstable County",America/New_York,508,NA,US,41.63,-70.64,0 +02568,STANDARD,0,"Vineyard Haven","Vineyard Hvn","North Tisbury, Tisbury",MA,"Dukes County",America/New_York,"508,774",NA,US,41.45,-70.6,7250 +02571,STANDARD,0,Wareham,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.76,-70.71,9350 +02573,"PO BOX",1,"West Chop","Vineyard Haven, Vineyard Hvn",Tisbury,MA,"Dukes County",America/New_York,,NA,US,41.45,-70.6,0 +02574,"PO BOX",0,"West Falmouth","W Falmouth",,MA,"Barnstable County",America/New_York,508,NA,US,41.6,-70.64,1104 +02575,"PO BOX",0,"West Tisbury",,Tisbury,MA,"Dukes County",America/New_York,,NA,US,41.38,-70.67,1679 +02576,STANDARD,0,"West Wareham",,"W Wareham",MA,"Plymouth County",America/New_York,"508,774",NA,US,41.78,-70.75,3650 +02584,"PO BOX",0,Nantucket,,,MA,"Nantucket County",America/New_York,508,NA,US,41.26,-70.01,1904 +02601,STANDARD,0,Hyannis,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.65,-70.29,13830 +02630,STANDARD,0,Barnstable,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.7,-70.3,1930 +02631,STANDARD,0,Brewster,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.76,-70.08,9040 +02632,STANDARD,0,Centerville,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.66,-70.34,10100 +02633,STANDARD,0,Chatham,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.67,-69.96,3620 +02634,"PO BOX",0,Centerville,,,MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.34,19 +02635,STANDARD,0,Cotuit,,,MA,"Barnstable County",America/New_York,508,NA,US,41.62,-70.44,3350 +02636,STANDARD,1,Centerville,,,MA,"Barnstable County",America/New_York,508,NA,US,41.64,-70.34,0 +02637,"PO BOX",0,Cummaquid,,,MA,"Barnstable County",America/New_York,508,NA,US,41.71,-70.27,564 +02638,STANDARD,0,Dennis,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.73,-70.2,2800 +02639,STANDARD,0,"Dennis Port",Dennisport,,MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.13,2790 +02641,"PO BOX",0,"East Dennis",,"E Dennis",MA,"Barnstable County",America/New_York,508,NA,US,41.75,-70.15,1542 +02642,STANDARD,0,Eastham,,,MA,"Barnstable County",America/New_York,508,NA,US,41.83,-69.96,3680 +02643,"PO BOX",0,"East Orleans",,,MA,"Barnstable County",America/New_York,508,NA,US,41.8,-69.94,1113 +02644,STANDARD,0,Forestdale,,,MA,"Barnstable County",America/New_York,508,NA,US,41.68,-70.5,4190 +02645,STANDARD,0,Harwich,"E Harwich, East Harwich",Hardwich,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.69,-70.07,9340 +02646,STANDARD,0,"Harwich Port",,Harwichport,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.07,1740 +02647,"PO BOX",0,"Hyannis Port",,,MA,"Barnstable County",America/New_York,508,NA,US,41.63,-70.31,393 +02648,STANDARD,0,"Marstons Mills","Marstons Mls",,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.4,7320 +02649,STANDARD,0,Mashpee,,"New Seabury, South Mashpee",MA,"Barnstable County",America/New_York,508,NA,US,41.65,-70.48,13810 +02650,STANDARD,0,"North Chatham",,"N Chatham",MA,"Barnstable County",America/New_York,508,NA,US,41.7,-69.95,820 +02651,"PO BOX",0,"North Eastham",,,MA,"Barnstable County",America/New_York,508,NA,US,41.87,-70,1610 +02652,"PO BOX",0,"North Truro",,,MA,"Barnstable County",America/New_York,508,NA,US,42.04,-70.09,766 +02653,STANDARD,0,Orleans,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.79,-70,4730 +02655,STANDARD,0,Osterville,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.62,-70.38,3330 +02657,STANDARD,0,Provincetown,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,42.06,-70.2,3250 +02659,STANDARD,0,"South Chatham",,,MA,"Barnstable County",America/New_York,508,NA,US,41.68,-70.02,1090 +02660,STANDARD,0,"South Dennis",,"S Dennis",MA,"Barnstable County",America/New_York,508,NA,US,41.7,-70.15,5650 +02661,"PO BOX",0,"South Harwich",,,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.04,365 +02662,"PO BOX",0,"South Orleans",,,MA,"Barnstable County",America/New_York,508,NA,US,41.75,-69.99,862 +02663,"PO BOX",0,"South Wellfleet","S Wellfleet",,MA,"Barnstable County",America/New_York,508,NA,US,41.89,-70.01,611 +02664,STANDARD,0,"South Yarmouth","Bass River, S Yarmouth","So Yarmouth",MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.2,8740 +02666,"PO BOX",0,Truro,,,MA,"Barnstable County",America/New_York,508,NA,US,42,-70.06,1057 +02667,STANDARD,0,Wellfleet,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.93,-70.03,2550 +02668,STANDARD,0,"West Barnstable","W Barnstable",,MA,"Barnstable County",America/New_York,508,NA,US,41.7,-70.37,3150 +02669,"PO BOX",0,"West Chatham",,,MA,"Barnstable County",America/New_York,508,NA,US,41.68,-69.99,812 +02670,STANDARD,0,"West Dennis",,"W Dennis",MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.16,1270 +02671,STANDARD,0,"West Harwich",,,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.11,1060 +02672,"PO BOX",0,"West Hyannisport","W Hyannisport",,MA,"Barnstable County",America/New_York,508,NA,US,41.64,-70.31,577 +02673,STANDARD,0,"West Yarmouth","W Yarmouth",,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.65,-70.24,7930 +02675,STANDARD,0,"Yarmouth Port",,Yarmouthport,MA,"Barnstable County",America/New_York,508,NA,US,41.7,-70.22,6170 +02702,STANDARD,0,Assonet,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.78,-71.06,4030 +02703,STANDARD,0,Attleboro,"S Attleboro, South Attleboro",,MA,"Bristol County",America/New_York,"508,774",NA,US,41.93,-71.29,41160 +02712,"PO BOX",0,Chartley,,,MA,"Bristol County",America/New_York,508,NA,US,41.97,-71.18,272 +02713,"PO BOX",0,Cuttyhunk,,,MA,"Dukes County",America/New_York,,NA,US,41.44,-70.9,32 +02714,"PO BOX",0,Dartmouth,,,MA,"Bristol County",America/New_York,508,NA,US,41.56,-71,47 +02715,STANDARD,0,Dighton,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.82,-71.16,3790 +02717,STANDARD,0,"East Freetown",,,MA,"Bristol County",America/New_York,508,NA,US,41.75,-70.97,4760 +02718,STANDARD,0,"East Taunton",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.87,-71.01,6480 +02719,STANDARD,0,Fairhaven,,,MA,"Bristol County",America/New_York,508,NA,US,41.63,-70.9,13970 +02720,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.73,-71.12,24700 +02721,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.68,-71.15,20650 +02722,"PO BOX",0,"Fall River",,,MA,"Bristol County",America/New_York,508,NA,US,41.71,-71.1,738 +02723,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.69,-71.13,11830 +02724,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,508,NA,US,41.68,-71.18,13340 +02725,STANDARD,0,Somerset,,,MA,"Bristol County",America/New_York,508,NA,US,41.72,-71.19,2330 +02726,STANDARD,0,Somerset,,,MA,"Bristol County",America/New_York,508,NA,US,41.73,-71.15,14570 +02738,STANDARD,0,Marion,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.7,-70.76,5010 +02739,STANDARD,0,Mattapoisett,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.66,-70.8,6240 +02740,STANDARD,0,"New Bedford",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.64,-70.94,33850 +02741,"PO BOX",0,"New Bedford",,,MA,"Bristol County",America/New_York,508,NA,US,41.66,-70.93,157 +02742,"PO BOX",0,"New Bedford",,,MA,"Bristol County",America/New_York,508,NA,US,41.66,-70.93,334 +02743,STANDARD,0,Acushnet,"New Bedford",,MA,"Bristol County",America/New_York,508,NA,US,41.68,-70.9,9700 +02744,STANDARD,0,"New Bedford",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.61,-70.91,9960 +02745,STANDARD,0,"New Bedford",Acushnet,,MA,"Bristol County",America/New_York,508,NA,US,41.7,-70.95,21260 +02746,STANDARD,0,"New Bedford",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.66,-70.93,12450 +02747,STANDARD,0,"North Dartmouth","Dartmouth, N Dartmouth",,MA,"Bristol County",America/New_York,508,NA,US,41.64,-71,16930 +02748,STANDARD,0,"South Dartmouth","Dartmouth, Nonquitt, S Dartmouth",,MA,"Bristol County",America/New_York,508,NA,US,41.55,-70.98,10350 +02760,STANDARD,0,"North Attleboro","N Attleboro","No Attleboro",MA,"Bristol County",America/New_York,"508,774",NA,US,41.97,-71.33,26290 +02761,"PO BOX",0,"North Attleboro","N Attleboro",,MA,"Bristol County",America/New_York,508,NA,US,41.97,-71.33,356 +02762,STANDARD,0,Plainville,,"N Attleboro",MA,"Norfolk County",America/New_York,,NA,US,42,-71.33,9110 +02763,STANDARD,0,"Attleboro Falls","Attleboro Fls, N Attleboro, North Attleboro",,MA,"Bristol County",America/New_York,"508,774",NA,US,41.97,-71.31,2140 +02764,STANDARD,0,"North Dighton","N Dighton",,MA,"Bristol County",America/New_York,508,NA,US,41.85,-71.15,3880 +02766,STANDARD,0,Norton,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.96,-71.18,16650 +02767,STANDARD,0,Raynham,,,MA,"Bristol County",America/New_York,508,NA,US,41.93,-71.04,14220 +02768,"PO BOX",0,"Raynham Center","Raynham Ctr",,MA,"Bristol County",America/New_York,508,NA,US,41.93,-71.04,502 +02769,STANDARD,0,Rehoboth,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.83,-71.26,12030 +02770,STANDARD,0,Rochester,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.73,-70.81,5560 +02771,STANDARD,0,Seekonk,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.81,-71.33,14630 +02777,STANDARD,0,Swansea,,,MA,"Bristol County",America/New_York,508,NA,US,41.75,-71.18,15680 +02779,STANDARD,0,Berkley,,,MA,"Bristol County",America/New_York,508,NA,US,41.85,-71.08,6380 +02780,STANDARD,0,Taunton,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.9,-71.09,44760 +02783,UNIQUE,1,Taunton,,Chadwicks,MA,"Bristol County",America/New_York,508,NA,US,41.9,-71.09,0 +02790,STANDARD,0,Westport,,"Horseneck Beach",MA,"Bristol County",America/New_York,"508,774",NA,US,41.66,-71.1,15150 +02791,"PO BOX",0,"Westport Point","Westport Pt",,MA,"Bristol County",America/New_York,508,NA,US,41.52,-71.07,388 +02801,"PO BOX",0,Adamsville,,,RI,"Newport County",America/New_York,401,NA,US,41.51,-71.16,299 +02802,"PO BOX",0,Albion,,,RI,"Providence County",America/New_York,401,NA,US,41.95,-71.46,770 +02804,STANDARD,0,Ashaway,,,RI,"Washington County",America/New_York,401,NA,US,41.42,-71.78,2630 +02806,STANDARD,0,Barrington,,,RI,"Bristol County",America/New_York,401,NA,US,41.73,-71.31,16780 +02807,"PO BOX",0,"Block Island","New Shoreham",,RI,"Washington County",America/New_York,401,NA,US,41.16,-71.58,1213 +02808,STANDARD,0,Bradford,,,RI,"Washington County",America/New_York,401,NA,US,41.39,-71.75,2150 +02809,STANDARD,0,Bristol,,,RI,"Bristol County",America/New_York,401,NA,US,41.67,-71.27,17200 +02812,STANDARD,0,Carolina,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.47,-71.64,1280 +02813,STANDARD,0,Charlestown,,,RI,"Washington County",America/New_York,401,NA,US,41.38,-71.65,7160 +02814,STANDARD,0,Chepachet,,Glocester,RI,"Providence County",America/New_York,401,NA,US,41.91,-71.7,7060 +02815,STANDARD,0,Clayville,,Scituate,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.66,240 +02816,STANDARD,0,Coventry,,,RI,"Kent County",America/New_York,401,NA,US,41.68,-71.66,29910 +02817,STANDARD,0,"West Greenwich","W Greenwich",,RI,"Kent County",America/New_York,401,NA,US,41.63,-71.65,6070 +02818,STANDARD,0,"East Greenwich","E Greenwich",,RI,"Kent County",America/New_York,401,NA,US,41.63,-71.5,18190 +02822,STANDARD,0,Exeter,Escoheag,,RI,"Washington County",America/New_York,401,NA,US,41.56,-71.68,5590 +02823,"PO BOX",0,Fiskeville,,,RI,"Providence County",America/New_York,401,NA,US,41.73,-71.54,302 +02824,"PO BOX",0,Forestdale,,,RI,"Providence County",America/New_York,401,NA,US,41.97,-71.55,394 +02825,STANDARD,0,Foster,,Scituate,RI,"Providence County",America/New_York,401,NA,US,41.85,-71.76,5050 +02826,"PO BOX",0,Glendale,,Burrillville,RI,"Providence County",America/New_York,401,NA,US,41.98,-71.65,880 +02827,STANDARD,0,Greene,Coventry,,RI,"Kent County",America/New_York,401,NA,US,41.69,-71.74,2080 +02828,STANDARD,0,Greenville,,Smithfield,RI,"Providence County",America/New_York,401,NA,US,41.87,-71.55,6780 +02829,"PO BOX",0,Harmony,,Glocester,RI,"Providence County",America/New_York,401,NA,US,41.88,-71.61,405 +02830,STANDARD,0,Harrisville,Burrillville,,RI,"Providence County",America/New_York,401,NA,US,41.96,-71.67,5850 +02831,STANDARD,0,Hope,,Scituate,RI,"Providence County",America/New_York,401,NA,US,41.75,-71.56,3910 +02832,STANDARD,0,"Hope Valley",Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.51,-71.72,4470 +02833,STANDARD,0,Hopkinton,,,RI,"Washington County",America/New_York,401,NA,US,41.48,-71.77,540 +02835,STANDARD,0,Jamestown,,,RI,"Newport County",America/New_York,401,NA,US,41.48,-71.36,5130 +02836,STANDARD,0,Kenyon,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.62,91 +02837,STANDARD,0,"Little Compton","L Compton",,RI,"Newport County",America/New_York,401,NA,US,41.5,-71.16,3070 +02838,STANDARD,0,Manville,,Lincoln,RI,"Providence County",America/New_York,401,NA,US,41.96,-71.47,3000 +02839,STANDARD,0,Mapleville,,Burrillville,RI,"Providence County",America/New_York,401,NA,US,41.94,-71.64,1690 +02840,STANDARD,0,Newport,,,RI,"Newport County",America/New_York,401,NA,US,41.47,-71.3,17300 +02841,STANDARD,0,Newport,,Netc,RI,"Newport County",America/New_York,401,NA,US,41.51,-71.33,353 +02842,STANDARD,0,Middletown,,,RI,"Newport County",America/New_York,401,NA,US,41.51,-71.27,14800 +02852,STANDARD,0,"North Kingstown","N Kingstown","Davisville, Wickford",RI,"Washington County",America/New_York,401,NA,US,41.55,-71.46,21920 +02854,STANDARD,1,"North Kingstown","N Kingstown",,RI,"Washington County",America/New_York,401,NA,US,41.59,-71.45,0 +02857,STANDARD,0,"North Scituate","N Scituate, Scituate",Glocester,RI,"Providence County",America/New_York,401,NA,US,41.83,-71.63,8080 +02858,STANDARD,0,Oakland,,Burrillville,RI,"Providence County",America/New_York,401,NA,US,41.97,-71.65,570 +02859,STANDARD,0,Pascoag,,Glocester,RI,"Providence County",America/New_York,401,NA,US,41.95,-71.7,5860 +02860,STANDARD,0,Pawtucket,,,RI,"Providence County",America/New_York,401,NA,US,41.87,-71.37,38550 +02861,STANDARD,0,Pawtucket,,Darlington,RI,"Providence County",America/New_York,401,NA,US,41.88,-71.35,24060 +02862,"PO BOX",0,Pawtucket,,,RI,"Providence County",America/New_York,401,NA,US,41.87,-71.37,912 +02863,STANDARD,0,"Central Falls",,,RI,"Providence County",America/New_York,401,NA,US,41.89,-71.39,15820 +02864,STANDARD,0,Cumberland,,,RI,"Providence County",America/New_York,401,NA,US,41.94,-71.41,33430 +02865,STANDARD,0,Lincoln,,,RI,"Providence County",America/New_York,401,NA,US,41.91,-71.45,16870 +02871,STANDARD,0,Portsmouth,,,RI,"Newport County",America/New_York,401,NA,US,41.6,-71.25,16630 +02872,"PO BOX",0,"Prudence Island","Prudence Isl",,RI,"Newport County",America/New_York,401,NA,US,41.6,-71.31,160 +02873,"PO BOX",0,Rockville,,,RI,"Washington County",America/New_York,401,NA,US,41.53,-71.78,301 +02874,STANDARD,0,Saunderstown,,,RI,"Washington County",America/New_York,401,NA,US,41.51,-71.44,5870 +02875,STANDARD,0,Shannock,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.46,-71.64,310 +02876,STANDARD,0,Slatersville,,,RI,"Providence County",America/New_York,401,NA,US,41.99,-71.59,1120 +02877,STANDARD,0,Slocum,,,RI,"Washington County",America/New_York,401,NA,US,41.52,-71.54,106 +02878,STANDARD,0,Tiverton,,,RI,"Newport County",America/New_York,401,NA,US,41.65,-71.2,14610 +02879,STANDARD,0,Wakefield,"Narragansett, Peace Dale, S Kingstown, South Kingstown","East Matunuck, Green Hill, Jerusalem, Matunuck",RI,"Washington County",America/New_York,401,NA,US,41.45,-71.51,18690 +02880,"PO BOX",0,Wakefield,,,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.51,684 +02881,STANDARD,0,Kingston,,,RI,"Washington County",America/New_York,401,NA,US,41.48,-71.52,1920 +02882,STANDARD,0,Narragansett,"Point Judith","Bonnet Shores, Galilee",RI,"Washington County",America/New_York,401,NA,US,41.39,-71.48,9960 +02883,"PO BOX",0,"Peace Dale","S Kingstown, South Kingstown",,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.5,217 +02885,STANDARD,0,Warren,,,RI,"Bristol County",America/New_York,401,NA,US,41.72,-71.26,9290 +02886,STANDARD,0,Warwick,,,RI,"Kent County",America/New_York,401,NA,US,41.7,-71.46,25970 +02887,"PO BOX",0,Warwick,,,RI,"Kent County",America/New_York,401,NA,US,41.7,-71.42,344 +02888,STANDARD,0,Warwick,,,RI,"Kent County",America/New_York,401,NA,US,41.75,-71.41,17970 +02889,STANDARD,0,Warwick,,Conimicut,RI,"Kent County",America/New_York,401,NA,US,41.7,-71.42,25580 +02891,STANDARD,0,Westerly,,"Misquamicut, Watch Hill",RI,"Washington County",America/New_York,401,NA,US,41.37,-71.81,19510 +02892,STANDARD,0,"West Kingston",Richmond,"South Kingstown",RI,"Washington County",America/New_York,401,NA,US,41.5,-71.59,5090 +02893,STANDARD,0,"West Warwick",,"W Warwick",RI,"Kent County",America/New_York,401,NA,US,41.69,-71.51,26110 +02894,STANDARD,0,"Wood River Junction","Wood River Jt",,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.7,780 +02895,STANDARD,0,Woonsocket,,,RI,"Providence County",America/New_York,401,NA,US,41.99,-71.5,34010 +02896,STANDARD,0,"North Smithfield","N Smithfield",,RI,"Providence County",America/New_York,401,NA,US,41.95,-71.55,9630 +02898,STANDARD,0,Wyoming,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.52,-71.67,1940 +02901,"PO BOX",0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,299 +02902,UNIQUE,0,Providence,,"Providence Journal",RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,69 +02903,STANDARD,0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,5430 +02904,STANDARD,0,Providence,"N Providence, North Providence","No Providence",RI,"Providence County",America/New_York,401,NA,US,41.86,-71.44,25300 +02905,STANDARD,0,Providence,Cranston,,RI,"Providence County",America/New_York,401,NA,US,41.78,-71.4,21710 +02906,STANDARD,0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.84,-71.39,19060 +02907,STANDARD,0,Providence,Cranston,,RI,"Providence County",America/New_York,401,NA,US,41.8,-71.42,25630 +02908,STANDARD,0,Providence,"N Providence, North Providence",,RI,"Providence County",America/New_York,401,NA,US,41.84,-71.44,30170 +02909,STANDARD,0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.45,36880 +02910,STANDARD,0,Cranston,Providence,,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.44,20050 +02911,STANDARD,0,"North Providence","N Providence, Providence","Centerdale, Centredale, No Providence",RI,"Providence County",America/New_York,401,NA,US,41.85,-71.47,13830 +02912,UNIQUE,0,Providence,,"Brown Station, Brown University",RI,"Providence County",America/New_York,401,NA,US,41.83,-71.4,375 +02914,STANDARD,0,"East Providence","E Providence",,RI,"Providence County",America/New_York,401,NA,US,41.81,-71.37,18280 +02915,STANDARD,0,Riverside,,,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.35,14650 +02916,STANDARD,0,Rumford,,,RI,"Providence County",America/New_York,401,NA,US,41.84,-71.35,7790 +02917,STANDARD,0,Smithfield,,Esmond,RI,"Providence County",America/New_York,401,NA,US,41.9,-71.53,10870 +02918,UNIQUE,0,Providence,,"Friar Station, Providence College",RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,36 +02919,STANDARD,0,Johnston,Providence,,RI,"Providence County",America/New_York,401,NA,US,41.83,-71.52,26290 +02920,STANDARD,0,Cranston,,,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.47,31420 +02921,STANDARD,0,Cranston,,,RI,"Providence County",America/New_York,401,NA,US,41.76,-71.48,11770 +02940,"PO BOX",0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,1143 +03031,STANDARD,0,Amherst,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.86,-71.61,11740 +03032,STANDARD,0,Auburn,,,NH,"Rockingham County",America/New_York,603,NA,US,43,-71.34,5800 +03033,STANDARD,0,Brookline,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.73,-71.66,5500 +03034,STANDARD,0,Candia,,,NH,"Rockingham County",America/New_York,603,NA,US,43.07,-71.27,3920 +03036,STANDARD,0,Chester,,,NH,"Rockingham County",America/New_York,603,NA,US,42.95,-71.25,5240 +03037,STANDARD,0,Deerfield,,,NH,"Rockingham County",America/New_York,603,NA,US,43.14,-71.21,4600 +03038,STANDARD,0,Derry,Londonderry,,NH,"Rockingham County",America/New_York,603,NA,US,42.89,-71.28,31700 +03040,"PO BOX",0,"East Candia",,"E Candia",NH,"Rockingham County",America/New_York,603,NA,US,43.05,-71.27,25 +03041,"PO BOX",0,"East Derry",,"E Derry",NH,"Rockingham County",America/New_York,603,NA,US,42.88,-71.27,256 +03042,STANDARD,0,Epping,,,NH,"Rockingham County",America/New_York,603,NA,US,43.03,-71.07,6750 +03043,STANDARD,0,Francestown,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.98,-71.8,1500 +03044,STANDARD,0,Fremont,,,NH,"Rockingham County",America/New_York,603,NA,US,42.99,-71.14,4410 +03045,STANDARD,0,Goffstown,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.01,-71.6,12890 +03046,STANDARD,0,Dunbarton,,,NH,"Merrimack County",America/New_York,603,NA,US,43.1,-71.59,2980 +03047,STANDARD,0,Greenfield,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.95,-71.85,1490 +03048,STANDARD,0,Greenville,Mason,,NH,"Hillsborough County",America/New_York,603,NA,US,42.76,-71.79,3040 +03049,STANDARD,0,Hollis,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.73,-71.58,8400 +03051,STANDARD,0,Hudson,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.76,-71.43,24140 +03052,STANDARD,0,Litchfield,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.83,-71.46,8340 +03053,STANDARD,0,Londonderry,,,NH,"Rockingham County",America/New_York,603,NA,US,42.85,-71.36,24850 +03054,STANDARD,0,Merrimack,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.85,-71.52,25830 +03055,STANDARD,0,Milford,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.83,-71.66,14900 +03057,STANDARD,0,"Mont Vernon",,"Mount Vernon, Mt Vernon",NH,"Hillsborough County",America/New_York,603,NA,US,42.9,-71.66,2560 +03060,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.74,-71.46,25680 +03061,"PO BOX",0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.74,-71.49,931 +03062,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.74,-71.49,27150 +03063,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.78,-71.52,14990 +03064,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.78,-71.47,13400 +03070,STANDARD,0,"New Boston",,,NH,"Hillsborough County",America/New_York,603,NA,US,42.96,-71.68,6020 +03071,STANDARD,0,"New Ipswich",,,NH,"Hillsborough County",America/New_York,603,NA,US,42.75,-71.85,4970 +03073,"PO BOX",0,"North Salem",,"N Salem, No Salem",NH,"Rockingham County",America/New_York,603,NA,US,42.83,-71.22,396 +03076,STANDARD,0,Pelham,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.73,-71.31,13740 +03077,STANDARD,0,Raymond,,,NH,"Rockingham County",America/New_York,603,NA,US,43.03,-71.17,9930 +03079,STANDARD,0,Salem,,,NH,"Rockingham County",America/New_York,603,NA,US,42.78,-71.2,28170 +03082,STANDARD,0,Lyndeborough,,Lyndeboro,NH,"Hillsborough County",America/New_York,603,NA,US,42.9,-71.75,1440 +03084,STANDARD,0,Temple,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.81,-71.83,1200 +03086,STANDARD,0,Wilton,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.84,-71.73,3790 +03087,STANDARD,0,Windham,,,NH,"Rockingham County",America/New_York,603,NA,US,42.8,-71.3,15550 +03101,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.47,2500 +03102,STANDARD,0,Manchester,,Pinardville,NH,"Hillsborough County",America/New_York,603,NA,US,43.01,-71.49,26650 +03103,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,32080 +03104,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.01,-71.44,28070 +03105,"PO BOX",0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,670 +03106,STANDARD,0,Hooksett,Manchester,,NH,"Merrimack County",America/New_York,603,NA,US,43.09,-71.45,13500 +03107,UNIQUE,1,Manchester,,"Nh Insurance",NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,0 +03108,"PO BOX",0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,936 +03109,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.96,-71.4,9820 +03110,STANDARD,0,Bedford,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.95,-71.5,22780 +03111,UNIQUE,0,Manchester,,"Shared Firm Zip",NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,0 +03215,"PO BOX",0,"Waterville Valley","Watervl Vly","Waterville Vly",NH,"Grafton County",America/New_York,603,NA,US,43.95,-71.5,314 +03216,STANDARD,0,Andover,,,NH,"Merrimack County",America/New_York,603,NA,US,43.43,-71.82,2000 +03217,STANDARD,0,Ashland,,,NH,"Grafton County",America/New_York,603,NA,US,43.69,-71.63,1900 +03218,STANDARD,0,Barnstead,,,NH,"Belknap County",America/New_York,603,NA,US,43.33,-71.29,1080 +03220,STANDARD,0,Belmont,,,NH,"Belknap County",America/New_York,603,NA,US,43.44,-71.47,6580 +03221,STANDARD,0,Bradford,,Sutton,NH,"Merrimack County",America/New_York,603,NA,US,43.27,-71.96,2050 +03222,STANDARD,0,Bristol,Alexandria,Bridgewater,NH,"Grafton County",America/New_York,603,NA,US,43.6,-71.74,4950 +03223,STANDARD,0,Campton,"Ellsworth, Thornton",,NH,"Grafton County",America/New_York,603,NA,US,43.86,-71.63,3830 +03224,STANDARD,0,Canterbury,,,NH,"Merrimack County",America/New_York,603,NA,US,43.33,-71.56,2300 +03225,STANDARD,0,"Center Barnstead","Ctr Barnstead",,NH,"Belknap County",America/New_York,603,NA,US,43.33,-71.23,3470 +03226,STANDARD,0,"Center Harbor",,"Centre Harbor, Ctr Harbor",NH,"Belknap County",America/New_York,603,NA,US,43.71,-71.52,1800 +03227,STANDARD,0,"Center Sandwich","Ctr Sandwich, Sandwich",,NH,"Carroll County",America/New_York,603,NA,US,43.83,-71.47,920 +03229,STANDARD,0,Contoocook,Hopkinton,,NH,"Merrimack County",America/New_York,603,NA,US,43.22,-71.71,5830 +03230,STANDARD,0,Danbury,,,NH,"Merrimack County",America/New_York,603,NA,US,43.52,-71.86,1140 +03231,"PO BOX",0,"East Andover",,"E Andover",NH,"Merrimack County",America/New_York,603,NA,US,43.48,-71.76,328 +03233,STANDARD,0,Elkins,,,NH,"Merrimack County",America/New_York,603,NA,US,43.42,-71.93,330 +03234,STANDARD,0,Epsom,,,NH,"Merrimack County",America/New_York,603,NA,US,43.22,-71.33,4460 +03235,STANDARD,0,Franklin,,"W Franklin, West Franklin",NH,"Merrimack County",America/New_York,603,NA,US,43.45,-71.66,7400 +03237,STANDARD,0,Gilmanton,,,NH,"Belknap County",America/New_York,603,NA,US,43.42,-71.41,2420 +03238,"PO BOX",0,Glencliff,,,NH,"Grafton County",America/New_York,603,NA,US,43.98,-71.91,153 +03240,STANDARD,0,Grafton,,,NH,"Grafton County",America/New_York,603,NA,US,43.55,-71.94,1150 +03241,STANDARD,0,Hebron,"East Hebron","E Hebron, Groton",NH,"Grafton County",America/New_York,603,NA,US,43.69,-71.8,770 +03242,STANDARD,0,Henniker,,,NH,"Merrimack County",America/New_York,603,NA,US,43.17,-71.81,3780 +03243,STANDARD,0,Hill,,,NH,"Merrimack County",America/New_York,603,NA,US,43.52,-71.7,900 +03244,STANDARD,0,Hillsborough,"Deering, Hillsboro, Windsor",,NH,"Hillsborough County",America/New_York,603,NA,US,43.12,-71.92,7060 +03245,STANDARD,0,Holderness,,,NH,"Grafton County",America/New_York,603,NA,US,43.73,-71.58,1690 +03246,STANDARD,0,Laconia,,"Lakeport, Weirs Beach",NH,"Belknap County",America/New_York,603,NA,US,43.56,-71.48,13600 +03247,"PO BOX",0,Laconia,,"Gilford, Lakeport, Weirs Beach",NH,"Belknap County",America/New_York,603,NA,US,43.56,-71.48,1611 +03249,STANDARD,0,Gilford,,Guilford,NH,"Belknap County",America/New_York,603,NA,US,43.53,-71.38,6770 +03251,STANDARD,0,Lincoln,,,NH,"Grafton County",America/New_York,603,NA,US,44.04,-71.67,1440 +03252,"PO BOX",0,Lochmere,,,NH,"Belknap County",America/New_York,603,NA,US,43.47,-71.56,205 +03253,STANDARD,0,Meredith,,,NH,"Belknap County",America/New_York,603,NA,US,43.65,-71.5,6030 +03254,STANDARD,0,Moultonborough,Moultonboro,,NH,"Carroll County",America/New_York,603,NA,US,43.75,-71.39,3750 +03255,STANDARD,0,Newbury,"Mount Sunapee","Mt Sunapee",NH,"Merrimack County",America/New_York,603,NA,US,43.32,-72.03,1910 +03256,STANDARD,0,"New Hampton",,,NH,"Belknap County",America/New_York,603,NA,US,43.6,-71.65,2180 +03257,STANDARD,0,"New London",,Sutton,NH,"Merrimack County",America/New_York,603,NA,US,43.41,-71.98,4050 +03258,STANDARD,0,Chichester,,"North Chichester",NH,"Merrimack County",America/New_York,603,NA,US,43.25,-71.39,2480 +03259,STANDARD,0,"North Sandwich","N Sandwich",,NH,"Carroll County",America/New_York,603,NA,US,43.86,-71.38,310 +03260,"PO BOX",0,"North Sutton",,"N Sutton",NH,"Merrimack County",America/New_York,603,NA,US,43.36,-71.94,633 +03261,STANDARD,0,Northwood,,,NH,"Rockingham County",America/New_York,603,NA,US,43.19,-71.15,4340 +03262,STANDARD,0,"North Woodstock","N Woodstock",,NH,"Grafton County",America/New_York,603,NA,US,44.01,-71.73,1070 +03263,STANDARD,0,Pittsfield,,,NH,"Merrimack County",America/New_York,603,NA,US,43.3,-71.33,3550 +03264,STANDARD,0,Plymouth,,Bridgewater,NH,"Grafton County",America/New_York,603,NA,US,43.73,-71.69,4060 +03266,STANDARD,0,Rumney,Dorchester,"Ellsworth, Groton",NH,"Grafton County",America/New_York,603,NA,US,43.8,-71.81,1840 +03268,STANDARD,0,Salisbury,,,NH,"Merrimack County",America/New_York,603,NA,US,43.38,-71.71,1190 +03269,STANDARD,0,Sanbornton,,,NH,"Belknap County",America/New_York,603,NA,US,43.52,-71.6,2780 +03272,"PO BOX",0,"South Newbury",,"S Newbury",NH,"Merrimack County",America/New_York,603,NA,US,43.29,-72,34 +03273,"PO BOX",0,"South Sutton",,"S Sutton",NH,"Merrimack County",America/New_York,603,NA,US,43.31,-71.92,300 +03274,"PO BOX",1,"Stinson Lake",,,NH,"Grafton County",America/New_York,603,NA,US,43.86,-71.8,0 +03275,STANDARD,0,Suncook,"Allenstown, Pembroke",,NH,"Merrimack County",America/New_York,603,NA,US,43.13,-71.45,10610 +03276,STANDARD,0,Tilton,Northfield,,NH,"Merrimack County",America/New_York,603,NA,US,43.44,-71.58,7560 +03278,STANDARD,0,Warner,,Sutton,NH,"Merrimack County",America/New_York,603,NA,US,43.28,-71.81,2850 +03279,STANDARD,0,Warren,,,NH,"Grafton County",America/New_York,603,NA,US,43.92,-71.89,640 +03280,STANDARD,0,Washington,,,NH,"Sullivan County",America/New_York,603,NA,US,43.17,-72.09,1050 +03281,STANDARD,0,Weare,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.1,-71.73,8740 +03282,STANDARD,0,Wentworth,,,NH,"Grafton County",America/New_York,603,NA,US,43.87,-71.91,820 +03284,STANDARD,0,Springfield,,"W Springfield, West Springfield",NH,"Sullivan County",America/New_York,603,NA,US,43.49,-72.03,780 +03285,STANDARD,0,Thornton,,,NH,"Grafton County",America/New_York,603,NA,US,43.93,-71.62,1530 +03287,STANDARD,0,Wilmot,,"Sutton, Wilmot Flat",NH,"Merrimack County",America/New_York,603,NA,US,43.45,-71.91,1210 +03289,"PO BOX",0,Winnisquam,,,NH,"Belknap County",America/New_York,603,NA,US,43.5,-71.49,444 +03290,STANDARD,0,Nottingham,,,NH,"Rockingham County",America/New_York,603,NA,US,43.11,-71.1,4900 +03291,STANDARD,0,"West Nottingham","W Nottingham",,NH,"Rockingham County",America/New_York,603,NA,US,43.18,-71.14,180 +03293,"PO BOX",0,Woodstock,,,NH,"Grafton County",America/New_York,603,NA,US,43.97,-71.68,189 +03298,UNIQUE,0,Tilton,,"Brm J Jill, J Jill, J Jill Brm",NH,"Belknap County",America/New_York,603,NA,US,43.44,-71.58,0 +03299,UNIQUE,0,Tilton,,"J Jill",NH,"Belknap County",America/New_York,603,NA,US,43.44,-71.58,0 +03301,STANDARD,0,Concord,,,NH,"Merrimack County",America/New_York,603,NA,US,43.23,-71.56,27400 +03302,"PO BOX",0,Concord,,,NH,"Merrimack County",America/New_York,603,NA,US,43.23,-71.56,1295 +03303,STANDARD,0,Concord,"Boscawen, Penacook, Webster",,NH,"Merrimack County",America/New_York,603,NA,US,43.31,-71.67,13830 +03304,STANDARD,0,Bow,,,NH,"Merrimack County",America/New_York,603,NA,US,43.13,-71.54,8160 +03305,UNIQUE,0,Concord,,"Nh Dept Of Safety",NH,"Merrimack County",America/New_York,603,NA,US,43.23,-71.56,0 +03307,STANDARD,0,Loudon,,,NH,"Merrimack County",America/New_York,603,NA,US,43.28,-71.46,5390 +03431,STANDARD,0,Keene,"North Swanzey, Roxbury, Surry","N Swanzey",NH,"Cheshire County",America/New_York,603,NA,US,42.95,-72.29,19230 +03435,UNIQUE,0,Keene,,"Keene State College",NH,"Cheshire County",America/New_York,603,NA,US,42.95,-72.29,11 +03440,STANDARD,0,Antrim,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.03,-71.94,2460 +03441,STANDARD,0,Ashuelot,,,NH,"Cheshire County",America/New_York,603,NA,US,42.78,-72.45,350 +03442,STANDARD,0,Bennington,,,NH,"Hillsborough County",America/New_York,603,NA,US,43,-71.93,1260 +03443,STANDARD,0,Chesterfield,,,NH,"Cheshire County",America/New_York,603,NA,US,42.88,-72.46,710 +03444,STANDARD,0,Dublin,,,NH,"Cheshire County",America/New_York,603,NA,US,42.91,-72.06,1380 +03445,STANDARD,0,Sullivan,,"E Sullivan, East Sullivan, Nelson",NH,"Cheshire County",America/New_York,603,NA,US,43.01,-72.21,650 +03446,STANDARD,0,Swanzey,,"E Swanzey, East Swanzey, Swanzey Center, Swanzey Ctr",NH,"Cheshire County",America/New_York,603,NA,US,42.86,-72.28,5500 +03447,STANDARD,0,Fitzwilliam,,,NH,"Cheshire County",America/New_York,603,NA,US,42.78,-72.15,2190 +03448,STANDARD,0,Gilsum,,,NH,"Cheshire County",America/New_York,603,NA,US,43.05,-72.26,690 +03449,STANDARD,0,Hancock,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.96,-71.98,1680 +03450,STANDARD,0,Harrisville,,,NH,"Cheshire County",America/New_York,603,NA,US,42.95,-72.1,870 +03451,STANDARD,0,Hinsdale,,,NH,"Cheshire County",America/New_York,603,NA,US,42.78,-72.48,3530 +03452,STANDARD,0,Jaffrey,,,NH,"Cheshire County",America/New_York,603,NA,US,42.81,-72.02,4920 +03455,STANDARD,0,Marlborough,,,NH,"Cheshire County",America/New_York,603,NA,US,42.9,-72.21,1910 +03456,STANDARD,0,Marlow,,,NH,"Cheshire County",America/New_York,603,NA,US,43.11,-72.2,710 +03457,STANDARD,0,Nelson,Munsonville,,NH,"Cheshire County",America/New_York,603,NA,US,42.99,-72.12,670 +03458,STANDARD,0,Peterborough,Sharon,,NH,"Hillsborough County",America/New_York,603,NA,US,42.87,-71.96,6200 +03461,STANDARD,0,Rindge,,,NH,"Cheshire County",America/New_York,603,NA,US,42.75,-72.01,5170 +03462,STANDARD,0,Spofford,,,NH,"Cheshire County",America/New_York,603,NA,US,42.9,-72.4,1590 +03464,STANDARD,0,Stoddard,,,NH,"Cheshire County",America/New_York,603,NA,US,43.08,-72.1,1000 +03465,STANDARD,0,Troy,,,NH,"Cheshire County",America/New_York,603,NA,US,42.83,-72.18,1940 +03466,STANDARD,0,"West Chesterfield","W Chesterfld","W Chesterfield",NH,"Cheshire County",America/New_York,603,NA,US,42.87,-72.51,1240 +03467,STANDARD,0,Westmoreland,,,NH,"Cheshire County",America/New_York,603,NA,US,42.96,-72.45,1530 +03468,"PO BOX",0,"West Peterborough","W Peterboro","W Peterborough",NH,"Hillsborough County",America/New_York,603,NA,US,42.85,-71.96,214 +03469,"PO BOX",0,"West Swanzey",,"W Swanzey",NH,"Cheshire County",America/New_York,603,NA,US,42.87,-72.32,902 +03470,STANDARD,0,Winchester,Richmond,,NH,"Cheshire County",America/New_York,603,NA,US,42.77,-72.38,4220 +03561,STANDARD,0,Littleton,,,NH,"Grafton County",America/New_York,603,NA,US,44.31,-71.76,5420 +03570,STANDARD,0,Berlin,,,NH,"Coos County",America/New_York,603,NA,US,44.48,-71.25,6760 +03574,STANDARD,0,Bethlehem,,,NH,"Grafton County",America/New_York,603,NA,US,44.28,-71.68,2270 +03575,"PO BOX",0,"Bretton Woods",,,NH,"Coos County",America/New_York,603,NA,US,44.31,-71.4,123 +03576,STANDARD,0,Colebrook,"Dixville, Stewartstown","Columbia, Dixville Notch",NH,"Coos County",America/New_York,603,NA,US,44.89,-71.49,2440 +03579,STANDARD,0,Errol,"Wentworths Location, Wntwrths Lctn",,NH,"Coos County",America/New_York,603,NA,US,44.78,-71.13,290 +03580,STANDARD,0,Franconia,Easton,,NH,"Grafton County",America/New_York,603,NA,US,44.22,-71.74,1330 +03581,STANDARD,0,Gorham,Shelburne,,NH,"Coos County",America/New_York,603,NA,US,44.39,-71.18,2760 +03582,STANDARD,0,Groveton,"Northumberland, Northumberlnd, Stark",,NH,"Coos County",America/New_York,603,NA,US,44.59,-71.51,2000 +03583,STANDARD,0,Jefferson,,Northumberland,NH,"Coos County",America/New_York,603,NA,US,44.41,-71.47,960 +03584,STANDARD,0,Lancaster,,Northumberland,NH,"Coos County",America/New_York,603,NA,US,44.48,-71.56,3070 +03585,STANDARD,0,Lisbon,"Landaff, Lyman",,NH,"Grafton County",America/New_York,603,NA,US,44.21,-71.9,2310 +03586,STANDARD,0,"Sugar Hill",,,NH,"Grafton County",America/New_York,603,NA,US,44.23,-71.78,480 +03588,STANDARD,0,Milan,Dummer,,NH,"Coos County",America/New_York,603,NA,US,44.57,-71.18,1460 +03589,"PO BOX",0,"Mount Washington","Mt Washington",,NH,"Coos County",America/New_York,603,NA,US,44.27,-71.3,0 +03590,STANDARD,0,"North Stratford","N Stratford, Stratford","Columbia, No Stratford",NH,"Coos County",America/New_York,603,NA,US,44.76,-71.58,690 +03592,STANDARD,0,Pittsburg,Clarksville,,NH,"Coos County",America/New_York,603,NA,US,45.05,-71.39,860 +03593,STANDARD,0,Randolph,,,NH,"Coos County",America/New_York,603,NA,US,44.37,-71.25,280 +03595,"PO BOX",0,"Twin Mountain",,,NH,"Coos County",America/New_York,603,NA,US,44.3,-71.5,637 +03597,"PO BOX",0,"West Stewartstown","W Stewartstwn","W Stewartstown",NH,"Coos County",America/New_York,603,NA,US,44.74,-71.38,647 +03598,STANDARD,0,Whitefield,"Carroll, Dalton",,NH,"Coos County",America/New_York,603,NA,US,44.37,-71.61,2990 +03601,STANDARD,0,Acworth,,,NH,"Sullivan County",America/New_York,603,NA,US,43.24,-72.29,390 +03602,STANDARD,0,Alstead,Langdon,"Alstead Center, East Alstead",NH,"Cheshire County",America/New_York,603,NA,US,43.15,-72.36,2400 +03603,STANDARD,0,Charlestown,,Unity,NH,"Sullivan County",America/New_York,603,NA,US,43.23,-72.42,4500 +03604,"PO BOX",0,Drewsville,,,NH,"Cheshire County",America/New_York,603,NA,US,43.13,-72.38,177 +03605,STANDARD,0,Lempster,"East Lempster","E Lempster",NH,"Sullivan County",America/New_York,603,NA,US,43.23,-72.21,910 +03607,STANDARD,0,"South Acworth",,"S Acworth, So Acworth",NH,"Sullivan County",America/New_York,603,NA,US,43.18,-72.32,240 +03608,STANDARD,0,Walpole,,,NH,"Cheshire County",America/New_York,603,NA,US,43.08,-72.43,2540 +03609,STANDARD,0,"North Walpole",,"N Walpole, No Walpole",NH,"Cheshire County",America/New_York,603,NA,US,43.14,-72.44,660 +03740,STANDARD,0,Bath,,,NH,"Grafton County",America/New_York,603,NA,US,44.16,-71.96,980 +03741,STANDARD,0,Canaan,Orange,,NH,"Grafton County",America/New_York,603,NA,US,43.64,-72.01,3700 +03743,STANDARD,0,Claremont,,Unity,NH,"Sullivan County",America/New_York,603,NA,US,43.37,-72.33,11370 +03745,STANDARD,0,Cornish,,,NH,"Sullivan County",America/New_York,603,NA,US,43.48,-72.32,1140 +03746,"PO BOX",0,"Cornish Flat",,,NH,"Sullivan County",America/New_York,603,NA,US,43.49,-72.27,501 +03748,STANDARD,0,Enfield,,,NH,"Grafton County",America/New_York,603,NA,US,43.64,-72.14,4130 +03749,"PO BOX",0,"Enfield Center","Enfield Ctr",,NH,"Grafton County",America/New_York,603,NA,US,43.57,-72.11,209 +03750,STANDARD,0,Etna,,,NH,"Grafton County",America/New_York,603,NA,US,43.71,-72.19,1060 +03751,"PO BOX",0,"Georges Mills",,,NH,"Sullivan County",America/New_York,603,NA,US,43.45,-72.09,538 +03752,STANDARD,0,Goshen,,,NH,"Sullivan County",America/New_York,603,NA,US,43.3,-72.14,720 +03753,STANDARD,0,Grantham,,,NH,"Sullivan County",America/New_York,603,NA,US,43.48,-72.13,3530 +03754,"PO BOX",0,Guild,,,NH,"Sullivan County",America/New_York,603,NA,US,43.38,-72.14,213 +03755,STANDARD,0,Hanover,,,NH,"Grafton County",America/New_York,603,NA,US,43.7,-72.27,6250 +03756,STANDARD,0,Lebanon,,"Dartmouth Hitchcock Med Ctr",NH,"Grafton County",America/New_York,603,NA,US,43.63,-72.25,0 +03765,STANDARD,0,Haverhill,,,NH,"Grafton County",America/New_York,603,NA,US,44.03,-72.06,450 +03766,STANDARD,0,Lebanon,,,NH,"Grafton County",America/New_York,603,NA,US,43.63,-72.25,8680 +03768,STANDARD,0,Lyme,,,NH,"Grafton County",America/New_York,603,NA,US,43.8,-72.15,1640 +03769,"PO BOX",0,"Lyme Center",,,NH,"Grafton County",America/New_York,603,NA,US,43.83,-72.1,118 +03770,STANDARD,0,Meriden,,,NH,"Sullivan County",America/New_York,603,NA,US,43.52,-72.27,700 +03771,STANDARD,0,Monroe,,,NH,"Grafton County",America/New_York,603,NA,US,44.28,-72.01,790 +03773,STANDARD,0,Newport,Croydon,Unity,NH,"Sullivan County",America/New_York,603,NA,US,43.37,-72.17,6530 +03774,STANDARD,0,"North Haverhill","N Haverhill","No Haverhill",NH,"Grafton County",America/New_York,603,NA,US,44.09,-71.99,1560 +03777,STANDARD,0,Orford,,,NH,"Grafton County",America/New_York,603,NA,US,43.89,-72.06,1080 +03779,STANDARD,0,Piermont,,,NH,"Grafton County",America/New_York,603,NA,US,43.96,-72.08,670 +03780,STANDARD,0,Pike,,Benton,NH,"Grafton County",America/New_York,603,NA,US,44.05,-71.99,380 +03781,STANDARD,0,Plainfield,,,NH,"Sullivan County",America/New_York,603,NA,US,43.53,-72.35,1590 +03782,STANDARD,0,Sunapee,,,NH,"Sullivan County",America/New_York,603,NA,US,43.38,-72.08,2740 +03784,STANDARD,0,"West Lebanon",,"W Lebanon",NH,"Grafton County",America/New_York,603,NA,US,43.64,-72.31,3520 +03785,STANDARD,0,Woodsville,Benton,"Easton, Landaff",NH,"Grafton County",America/New_York,603,NA,US,44.14,-72.02,1890 +03801,STANDARD,0,Portsmouth,Newington,,NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,20250 +03802,"PO BOX",0,Portsmouth,,,NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,1102 +03803,UNIQUE,0,Portsmouth,,"Air National Guard",NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,0 +03804,"PO BOX",0,Portsmouth,,,NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,93 +03805,STANDARD,1,Newington,Portsmouth,,NH,"Rockingham County",America/New_York,603,NA,US,43.23,-70.82,0 +03809,STANDARD,0,Alton,,,NH,"Belknap County",America/New_York,603,NA,US,43.45,-71.21,3650 +03810,STANDARD,0,"Alton Bay",,"West Alton",NH,"Belknap County",America/New_York,603,NA,US,43.48,-71.24,1700 +03811,STANDARD,0,Atkinson,,,NH,"Rockingham County",America/New_York,603,NA,US,42.83,-71.14,7020 +03812,STANDARD,0,Bartlett,"Harts Lctn, Harts Location",,NH,"Carroll County",America/New_York,603,NA,US,44.08,-71.27,480 +03813,STANDARD,0,"Center Conway",Chatham,"North Chatham, South Chatham",NH,"Carroll County",America/New_York,603,NA,US,43.97,-71.04,2960 +03814,STANDARD,0,"Center Ossipee","Ctr Ossipee",,NH,"Carroll County",America/New_York,603,NA,US,43.76,-71.12,2020 +03815,"PO BOX",0,"Center Strafford","Ctr Strafford",,NH,"Strafford County",America/New_York,603,NA,US,43.26,-71.11,111 +03816,STANDARD,0,"Center Tuftonboro","Ctr Tuftnboro","Ctr Tuftonboro, Tuftonboro",NH,"Carroll County",America/New_York,603,NA,US,43.71,-71.25,1080 +03817,STANDARD,0,Chocorua,,,NH,"Carroll County",America/New_York,603,NA,US,43.89,-71.24,540 +03818,STANDARD,0,Conway,Albany,,NH,"Carroll County",America/New_York,603,NA,US,43.97,-71.12,3530 +03819,STANDARD,0,Danville,,"S Danville, So Danville, South Danville",NH,"Rockingham County",America/New_York,603,NA,US,42.91,-71.12,4100 +03820,STANDARD,0,Dover,,,NH,"Strafford County",America/New_York,603,NA,US,43.19,-70.87,27980 +03821,"PO BOX",0,Dover,,,NH,"Strafford County",America/New_York,603,NA,US,43.19,-70.87,849 +03822,UNIQUE,0,Dover,,"Liberty Mutual Insurance",NH,"Strafford County",America/New_York,603,NA,US,43.19,-70.87,0 +03823,STANDARD,0,Madbury,,,NH,"Strafford County",America/New_York,603,NA,US,43.17,-70.93,1870 +03824,STANDARD,0,Durham,Lee,,NH,"Strafford County",America/New_York,603,NA,US,43.13,-70.92,5850 +03825,STANDARD,0,Barrington,,,NH,"Strafford County",America/New_York,603,NA,US,43.22,-71.04,9030 +03826,STANDARD,0,"East Hampstead","E Hampstead",,NH,"Rockingham County",America/New_York,603,NA,US,42.88,-71.13,2690 +03827,STANDARD,0,"East Kingston","South Hampton","E Kingston, S Hampton, So Hampton",NH,"Rockingham County",America/New_York,603,NA,US,42.92,-71.01,3200 +03830,STANDARD,0,"East Wakefield","E Wakefield",Wakefield,NH,"Carroll County",America/New_York,603,NA,US,43.61,-70.99,1360 +03832,"PO BOX",0,"Eaton Center",,"Eaton, Eaton Ctr",NH,"Carroll County",America/New_York,603,NA,US,43.9,-71.06,308 +03833,STANDARD,0,Exeter,"Brentwood, Kensington",,NH,"Rockingham County",America/New_York,603,NA,US,42.97,-70.94,21210 +03835,STANDARD,0,Farmington,,,NH,"Strafford County",America/New_York,603,NA,US,43.4,-71.07,5940 +03836,STANDARD,0,Freedom,,,NH,"Carroll County",America/New_York,603,NA,US,43.81,-71.03,1320 +03837,STANDARD,0,"Gilmanton Iron Works","Gilmanton Iw",,NH,"Belknap County",America/New_York,603,NA,US,43.43,-71.34,1240 +03838,STANDARD,0,Glen,,,NH,"Carroll County",America/New_York,603,NA,US,44.11,-71.23,1190 +03839,STANDARD,0,Rochester,,Gonic,NH,"Strafford County",America/New_York,603,NA,US,43.26,-70.99,3700 +03840,STANDARD,0,Greenland,,,NH,"Rockingham County",America/New_York,603,NA,US,43.03,-70.83,4210 +03841,STANDARD,0,Hampstead,,,NH,"Rockingham County",America/New_York,603,NA,US,42.87,-71.18,6270 +03842,STANDARD,0,Hampton,,"Hampton Beach",NH,"Rockingham County",America/New_York,603,NA,US,42.94,-70.82,14570 +03843,"PO BOX",0,Hampton,,"Hampton Beach",NH,"Rockingham County",America/New_York,603,NA,US,42.94,-70.82,998 +03844,STANDARD,0,"Hampton Falls",,,NH,"Rockingham County",America/New_York,603,NA,US,42.91,-70.86,2430 +03845,STANDARD,0,Intervale,,,NH,"Carroll County",America/New_York,603,NA,US,44.1,-71.12,1180 +03846,STANDARD,0,Jackson,,,NH,"Carroll County",America/New_York,603,NA,US,44.14,-71.18,840 +03847,"PO BOX",0,Kearsarge,,,NH,"Carroll County",America/New_York,603,NA,US,44.07,-71.12,345 +03848,STANDARD,0,Kingston,,,NH,"Rockingham County",America/New_York,603,NA,US,42.93,-71.05,5930 +03849,STANDARD,0,Madison,,,NH,"Carroll County",America/New_York,603,NA,US,43.89,-71.14,1270 +03850,"PO BOX",0,"Melvin Village","Melvin Vlg",,NH,"Carroll County",America/New_York,603,NA,US,43.69,-71.3,550 +03851,STANDARD,0,Milton,,,NH,"Strafford County",America/New_York,603,NA,US,43.44,-71.03,3620 +03852,STANDARD,0,"Milton Mills",,,NH,"Strafford County",America/New_York,603,NA,US,43.5,-70.97,570 +03853,STANDARD,0,"Mirror Lake",,,NH,"Carroll County",America/New_York,603,NA,US,43.63,-71.28,580 +03854,"PO BOX",0,"New Castle",,Newcastle,NH,"Rockingham County",America/New_York,603,NA,US,43.06,-70.72,1012 +03855,STANDARD,0,"New Durham",,,NH,"Strafford County",America/New_York,603,NA,US,43.43,-71.17,2580 +03856,STANDARD,0,Newfields,,,NH,"Rockingham County",America/New_York,603,NA,US,43.04,-70.97,1790 +03857,STANDARD,0,Newmarket,,,NH,"Rockingham County",America/New_York,603,NA,US,43.07,-70.94,8420 +03858,STANDARD,0,Newton,,,NH,"Rockingham County",America/New_York,603,NA,US,42.86,-71.03,4550 +03859,"PO BOX",0,"Newton Junction","Newton Jct",,NH,"Rockingham County",America/New_York,603,NA,US,42.86,-71.04,241 +03860,STANDARD,0,"North Conway","Hales Lctn, Hales Location","N Conway, No Conway",NH,"Carroll County",America/New_York,603,NA,US,44.05,-71.12,3900 +03861,STANDARD,0,Lee,,,NH,"Strafford County",America/New_York,603,NA,US,43.1,-71.01,4270 +03862,STANDARD,0,"North Hampton",,"N Hampton, No Hampton",NH,"Rockingham County",America/New_York,603,NA,US,42.97,-70.83,4640 +03864,STANDARD,0,Ossipee,,,NH,"Carroll County",America/New_York,603,NA,US,43.68,-71.11,1470 +03865,STANDARD,0,Plaistow,,,NH,"Rockingham County",America/New_York,603,NA,US,42.83,-71.09,7610 +03866,"PO BOX",0,Rochester,,,NH,"Strafford County",America/New_York,603,NA,US,43.3,-70.97,1032 +03867,STANDARD,0,Rochester,,,NH,"Strafford County",America/New_York,603,NA,US,43.3,-70.97,19000 +03868,STANDARD,0,Rochester,,"E Rochester, East Rochester",NH,"Strafford County",America/New_York,603,NA,US,43.32,-70.94,5470 +03869,STANDARD,0,Rollinsford,,,NH,"Strafford County",America/New_York,603,NA,US,43.23,-70.82,2450 +03870,STANDARD,0,Rye,,,NH,"Rockingham County",America/New_York,603,NA,US,43.01,-70.77,4950 +03871,"PO BOX",0,"Rye Beach",,,NH,"Rockingham County",America/New_York,603,NA,US,42.98,-70.78,571 +03872,STANDARD,0,Sanbornville,Brookfield,,NH,"Carroll County",America/New_York,603,NA,US,43.56,-71.01,3670 +03873,STANDARD,0,Sandown,,,NH,"Rockingham County",America/New_York,603,NA,US,42.92,-71.18,6300 +03874,STANDARD,0,Seabrook,,,NH,"Rockingham County",America/New_York,603,NA,US,42.89,-70.87,8110 +03875,STANDARD,0,"Silver Lake",,,NH,"Carroll County",America/New_York,603,NA,US,43.87,-71.19,780 +03878,STANDARD,0,Somersworth,,,NH,"Strafford County",America/New_York,603,NA,US,43.25,-70.88,10700 +03882,STANDARD,0,Effingham,,"S Effingham, So Effingham, South Effingham",NH,"Carroll County",America/New_York,603,NA,US,43.71,-71,1220 +03883,STANDARD,0,"South Tamworth","S Tamworth","So Tamworth",NH,"Carroll County",America/New_York,603,NA,US,43.81,-71.32,170 +03884,STANDARD,0,Strafford,,,NH,"Strafford County",America/New_York,603,NA,US,43.32,-71.18,4060 +03885,STANDARD,0,Stratham,,,NH,"Rockingham County",America/New_York,603,NA,US,43.02,-70.91,7790 +03886,STANDARD,0,Tamworth,,,NH,"Carroll County",America/New_York,603,NA,US,43.85,-71.26,1470 +03887,STANDARD,0,Union,Middleton,,NH,"Strafford County",America/New_York,603,NA,US,43.5,-71.07,2020 +03890,STANDARD,0,"West Ossipee",,"W Ossipee",NH,"Carroll County",America/New_York,603,NA,US,43.8,-71.2,790 +03894,STANDARD,0,Wolfeboro,,Tuftonboro,NH,"Carroll County",America/New_York,603,NA,US,43.58,-71.2,5410 +03896,"PO BOX",0,"Wolfeboro Falls","Wolfeboro Fls",,NH,"Carroll County",America/New_York,603,NA,US,43.59,-71.24,1311 +03897,STANDARD,0,Wonalancet,,,NH,"Carroll County",America/New_York,603,NA,US,43.87,-71.28,56 +03901,STANDARD,0,Berwick,,,ME,"York County",America/New_York,207,NA,US,43.3,-70.84,7380 +03902,STANDARD,0,"Cape Neddick",,,ME,"York County",America/New_York,207,NA,US,43.21,-70.63,2230 +03903,STANDARD,0,Eliot,,,ME,"York County",America/New_York,207,NA,US,43.15,-70.8,6420 +03904,STANDARD,0,Kittery,,,ME,"York County",America/New_York,207,NA,US,43.09,-70.73,7160 +03905,STANDARD,0,"Kittery Point",,,ME,"York County",America/New_York,207,NA,US,43.08,-70.69,1660 +03906,STANDARD,0,"North Berwick",,"N Berwick, No Berwick",ME,"York County",America/New_York,207,NA,US,43.3,-70.73,4630 +03907,STANDARD,0,Ogunquit,,,ME,"York County",America/New_York,207,NA,US,43.24,-70.59,1450 +03908,STANDARD,0,"South Berwick",,"S Berwick, So Berwick",ME,"York County",America/New_York,207,NA,US,43.23,-70.81,7030 +03909,STANDARD,0,York,,,ME,"York County",America/New_York,207,NA,US,43.14,-70.65,9350 +03910,"PO BOX",0,"York Beach",,,ME,"York County",America/New_York,207,NA,US,43.19,-70.6,1334 +03911,"PO BOX",0,"York Harbor",,,ME,"York County",America/New_York,207,NA,US,43.14,-70.63,756 +04001,STANDARD,0,Acton,,,ME,"York County",America/New_York,207,NA,US,43.53,-70.91,2340 +04002,STANDARD,0,Alfred,Lyman,,ME,"York County",America/New_York,207,NA,US,43.47,-70.71,6900 +04003,STANDARD,0,"Bailey Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-69.99,290 +04004,"PO BOX",0,"Bar Mills",,,ME,"York County",America/New_York,207,NA,US,43.61,-70.54,618 +04005,STANDARD,0,Biddeford,Dayton,,ME,"York County",America/New_York,207,NA,US,43.46,-70.44,19280 +04006,"PO BOX",0,"Biddeford Pool","Biddeford Pl",,ME,"York County",America/New_York,207,NA,US,43.44,-70.34,214 +04007,"PO BOX",0,Biddeford,,,ME,"York County",America/New_York,207,NA,US,43.46,-70.44,61 +04008,STANDARD,0,Bowdoinham,,,ME,"Sagadahoc County",America/New_York,207,NA,US,44.01,-69.89,2820 +04009,STANDARD,0,Bridgton,,,ME,"Cumberland County",America/New_York,207,NA,US,44.06,-70.72,4290 +04010,STANDARD,0,Brownfield,,,ME,"Oxford County",America/New_York,207,NA,US,43.93,-70.9,1420 +04011,STANDARD,0,Brunswick,"Birch Island, Cundys Harbor, Mere Point","Nas Brunswick",ME,"Cumberland County",America/New_York,207,NA,US,43.91,-69.96,17730 +04013,STANDARD,0,"Bustins Island","Bustins Is, S Freeport, South Freeport",,ME,"Cumberland County",America/New_York,207,NA,US,43.79,-70.07,0 +04014,"PO BOX",0,"Cape Porpoise",,,ME,"York County",America/New_York,207,NA,US,43.37,-70.43,391 +04015,STANDARD,0,Casco,,,ME,"Cumberland County",America/New_York,207,NA,US,44,-70.52,2970 +04016,"PO BOX",0,"Center Lovell",,,ME,"Oxford County",America/New_York,207,NA,US,44.17,-70.87,172 +04017,STANDARD,0,"Chebeague Island","Chebeague Is",,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-70.11,380 +04019,"PO BOX",0,"Cliff Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.1,51 +04020,STANDARD,0,Cornish,,,ME,"York County",America/New_York,207,NA,US,43.8,-70.8,1400 +04021,STANDARD,0,"Cumberland Center","Cumberland, Cumberlnd Ctr",,ME,"Cumberland County",America/New_York,207,NA,US,43.8,-70.25,6740 +04022,STANDARD,0,Denmark,,,ME,"Oxford County",America/New_York,207,NA,US,43.97,-70.8,1100 +04024,STANDARD,0,"East Baldwin",,,ME,"Cumberland County",America/New_York,207,NA,US,43.84,-70.69,510 +04027,STANDARD,0,Lebanon,,,ME,"York County",America/New_York,207,NA,US,43.39,-70.85,5720 +04028,"PO BOX",0,"East Parsonsfield","E Parsonfield",,ME,"York County",America/New_York,207,NA,US,43.72,-70.91,102 +04029,STANDARD,0,Sebago,,"E Sebago, East Sebago",ME,"Cumberland County",America/New_York,207,NA,US,43.89,-70.64,1680 +04030,STANDARD,0,"East Waterboro","E Waterboro",,ME,"York County",America/New_York,207,NA,US,43.6,-70.69,1930 +04032,STANDARD,0,Freeport,,,ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.1,7720 +04033,UNIQUE,0,Freeport,,"Ll Bean Co",ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.1,0 +04034,UNIQUE,0,Freeport,,"Ll Bean Co",ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.1,0 +04037,STANDARD,0,Fryeburg,"N Fryeburg, North Fryeburg, Stow",,ME,"Oxford County",America/New_York,207,NA,US,44.01,-70.97,3170 +04038,STANDARD,0,Gorham,,,ME,"Cumberland County",America/New_York,207,NA,US,43.68,-70.44,16190 +04039,STANDARD,0,Gray,,,ME,"Cumberland County",America/New_York,207,NA,US,43.88,-70.33,7570 +04040,STANDARD,0,Harrison,Sweden,,ME,"Cumberland County",America/New_York,207,NA,US,44.11,-70.67,2470 +04041,STANDARD,0,Hiram,,,ME,"Oxford County",America/New_York,207,NA,US,43.87,-70.8,1190 +04042,STANDARD,0,"Hollis Center",,,ME,"York County",America/New_York,207,NA,US,43.59,-70.6,4290 +04043,STANDARD,0,Kennebunk,,,ME,"York County",America/New_York,207,NA,US,43.38,-70.54,10510 +04046,STANDARD,0,Kennebunkport,Arundel,,ME,"York County",America/New_York,207,NA,US,43.35,-70.46,7040 +04047,STANDARD,0,Parsonsfield,"Kezar Falls",Maplewood,ME,"York County",America/New_York,207,NA,US,43.72,-70.92,1660 +04048,STANDARD,0,Limerick,,,ME,"York County",America/New_York,207,NA,US,43.68,-70.79,2770 +04049,STANDARD,0,Limington,,,ME,"York County",America/New_York,207,NA,US,43.73,-70.71,3400 +04050,STANDARD,0,"Long Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.15,200 +04051,STANDARD,0,Lovell,,,ME,"Oxford County",America/New_York,207,NA,US,44.12,-70.89,900 +04054,"PO BOX",0,Moody,,,ME,"York County",America/New_York,207,NA,US,43.3,-70.59,664 +04055,STANDARD,0,Naples,,,ME,"Cumberland County",America/New_York,207,NA,US,43.97,-70.6,3670 +04056,"PO BOX",0,Newfield,,,ME,"York County",America/New_York,207,NA,US,43.66,-70.88,269 +04057,"PO BOX",0,"North Bridgton","N Bridgton",,ME,"Cumberland County",America/New_York,207,NA,US,44.1,-70.7,313 +04061,STANDARD,0,"North Waterboro","N Waterboro",,ME,"York County",America/New_York,207,NA,US,43.63,-70.73,3240 +04062,STANDARD,0,Windham,"N Windham, No Windham, North Windham",,ME,"Cumberland County",America/New_York,207,NA,US,43.79,-70.4,17120 +04063,"PO BOX",0,"Ocean Park",,,ME,"York County",America/New_York,207,NA,US,43.5,-70.39,451 +04064,STANDARD,0,"Old Orchard Beach","Old Orchd Bch",,ME,"York County",America/New_York,207,NA,US,43.52,-70.38,7410 +04066,STANDARD,0,"Orrs Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.77,-69.96,550 +04068,STANDARD,0,Porter,,,ME,"Oxford County",America/New_York,207,NA,US,43.79,-70.93,1120 +04069,STANDARD,0,Pownal,,,ME,"Cumberland County",America/New_York,207,NA,US,43.89,-70.18,1540 +04070,"PO BOX",0,Scarborough,,,ME,"Cumberland County",America/New_York,207,NA,US,43.59,-70.33,1320 +04071,STANDARD,0,Raymond,"Frye Island",,ME,"Cumberland County",America/New_York,207,NA,US,43.9,-70.47,4640 +04072,STANDARD,0,Saco,,,ME,"York County",America/New_York,207,NA,US,43.53,-70.45,18590 +04073,STANDARD,0,Sanford,,,ME,"York County",America/New_York,207,NA,US,43.44,-70.78,14670 +04074,STANDARD,0,Scarborough,"Pine Point",,ME,"Cumberland County",America/New_York,207,NA,US,43.59,-70.33,19670 +04075,STANDARD,1,"Sebago Lake",Standish,,ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.63,0 +04076,STANDARD,0,Shapleigh,"N Shapleigh, North Shapleigh",,ME,"York County",America/New_York,207,NA,US,43.54,-70.84,2490 +04077,"PO BOX",0,"South Casco",,,ME,"Cumberland County",America/New_York,207,NA,US,43.87,-70.51,583 +04078,"PO BOX",0,"South Freeport","S Freeport",,ME,"Cumberland County",America/New_York,207,NA,US,43.86,-70.1,562 +04079,STANDARD,0,Harpswell,"S Harpswell, South Harpswell",,ME,"Cumberland County",America/New_York,207,NA,US,43.8,-69.98,3580 +04082,"PO BOX",0,"South Windham",Windham,,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-70.42,133 +04083,STANDARD,0,Springvale,,,ME,"York County",America/New_York,207,NA,US,43.46,-70.8,4090 +04084,STANDARD,0,Standish,"Sebago Lake",,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-70.55,7020 +04085,STANDARD,0,"Steep Falls",,,ME,"Cumberland County",America/New_York,207,NA,US,43.76,-70.64,1750 +04086,STANDARD,0,Topsham,Pejepscot,,ME,"Sagadahoc County",America/New_York,207,NA,US,43.93,-69.94,8990 +04087,STANDARD,0,Waterboro,,,ME,"York County",America/New_York,207,NA,US,43.53,-70.71,2250 +04088,STANDARD,0,Waterford,,"South Waterford",ME,"Oxford County",America/New_York,207,NA,US,44.18,-70.71,1240 +04090,STANDARD,0,Wells,"Wells Beach",,ME,"York County",America/New_York,207,NA,US,43.32,-70.58,10110 +04091,STANDARD,0,"West Baldwin",,,ME,"Cumberland County",America/New_York,207,NA,US,43.83,-70.77,860 +04092,STANDARD,0,Westbrook,,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.35,16640 +04093,STANDARD,0,Buxton,,"West Buxton",ME,"York County",America/New_York,207,NA,US,43.64,-70.54,7610 +04094,"PO BOX",0,"West Kennebunk","W Kennebunk",,ME,"York County",America/New_York,207,NA,US,43.41,-70.62,565 +04095,STANDARD,0,"West Newfield",,,ME,"York County",America/New_York,207,NA,US,43.64,-70.92,1170 +04096,STANDARD,0,Yarmouth,,,ME,"Cumberland County",America/New_York,207,NA,US,43.79,-70.2,8750 +04097,STANDARD,0,"North Yarmouth","N Yarmouth",,ME,"Cumberland County",America/New_York,207,NA,US,43.84,-70.21,3960 +04098,"PO BOX",0,Westbrook,,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.35,665 +04101,STANDARD,0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,12980 +04102,STANDARD,0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.3,14440 +04103,STANDARD,0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.29,26700 +04104,"PO BOX",0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,2334 +04105,STANDARD,0,Falmouth,Portland,"Falmouth Foreside",ME,"Cumberland County",America/New_York,207,NA,US,43.72,-70.24,12010 +04106,STANDARD,0,"South Portland","Portland, S Portland","So Portland",ME,"Cumberland County",America/New_York,207,NA,US,43.63,-70.28,22980 +04107,STANDARD,0,"Cape Elizabeth","Cape Eliz, Pond Cove, Portland",,ME,"Cumberland County",America/New_York,207,NA,US,43.56,-70.2,9170 +04108,STANDARD,0,"Peaks Island",Portland,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.18,860 +04109,STANDARD,0,Portland,"Cushing Is, Cushing Island, Diamond Cove, Diamond Is, Diamond Island, Great Diamond Island, Grt Dia Is, Little Diamond Island, Ltle Dia Is",,ME,"Cumberland County",America/New_York,207,NA,US,43.64,-70.17,55 +04110,STANDARD,0,"Cumberland Foreside","Cumb Foreside, Portland",,ME,"Cumberland County",America/New_York,207,NA,US,43.75,-70.2,1680 +04112,"PO BOX",0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,904 +04116,"PO BOX",0,"South Portland","Portland, S Portland",,ME,"Cumberland County",America/New_York,207,NA,US,43.63,-70.28,332 +04122,UNIQUE,0,Portland,,"Union Mutual Life Ins",ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,0 +04123,UNIQUE,0,Portland,,"Union Mutual Life Ins",ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,0 +04124,UNIQUE,0,Portland,,"Union Mutual Life Ins",ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,0 +04210,STANDARD,0,Auburn,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.24,18770 +04211,"PO BOX",0,Auburn,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.24,614 +04212,"PO BOX",0,Auburn,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.24,665 +04216,STANDARD,0,Andover,,,ME,"Oxford County",America/New_York,207,NA,US,44.63,-70.75,520 +04217,STANDARD,0,Bethel,"Albany Twp, Gilead, Mason Twp",,ME,"Oxford County",America/New_York,207,NA,US,44.4,-70.79,2920 +04219,STANDARD,0,"Bryant Pond","Milton Twp",Woodstock,ME,"Oxford County",America/New_York,207,NA,US,44.37,-70.64,1230 +04220,STANDARD,0,Buckfield,Hartford,,ME,"Oxford County",America/New_York,207,NA,US,44.28,-70.36,2680 +04221,STANDARD,0,Canton,,,ME,"Oxford County",America/New_York,207,NA,US,44.44,-70.31,790 +04222,STANDARD,0,Durham,,,ME,"Androscoggin County",America/New_York,207,NA,US,43.92,-70.12,3860 +04223,"PO BOX",0,Danville,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.03,-70.27,104 +04224,STANDARD,0,Dixfield,Carthage,,ME,"Oxford County",America/New_York,207,NA,US,44.53,-70.45,2250 +04225,"PO BOX",0,Dryden,,,ME,"Franklin County",America/New_York,207,NA,US,44.62,-70.25,215 +04226,STANDARD,0,"East Andover",,,ME,"Oxford County",America/New_York,207,NA,US,44.6,-70.68,179 +04227,"PO BOX",0,"East Dixfield",,,ME,"Oxford County",America/New_York,207,NA,US,44.57,-70.29,250 +04228,"PO BOX",0,"East Livermore","E Livermore",,ME,"Androscoggin County",America/New_York,207,NA,US,44.43,-70.12,102 +04230,"PO BOX",0,"East Poland",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.06,-70.33,152 +04231,STANDARD,0,Stoneham,"E Stoneham",,ME,"Oxford County",America/New_York,207,NA,US,44.25,-70.81,240 +04234,"PO BOX",0,"East Wilton",,,ME,"Franklin County",America/New_York,207,NA,US,44.62,-70.19,361 +04236,STANDARD,0,Greene,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.18,-70.14,3980 +04237,STANDARD,0,Hanover,,,ME,"Oxford County",America/New_York,207,NA,US,44.49,-70.73,280 +04238,STANDARD,0,Hebron,,,ME,"Oxford County",America/New_York,207,NA,US,44.19,-70.4,1180 +04239,STANDARD,0,Jay,,,ME,"Franklin County",America/New_York,207,NA,US,44.5,-70.21,3880 +04240,STANDARD,0,Lewiston,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.17,27630 +04241,"PO BOX",0,Lewiston,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.17,568 +04243,"PO BOX",0,Lewiston,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.17,1083 +04250,STANDARD,0,Lisbon,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.01,-70.12,4010 +04252,STANDARD,0,"Lisbon Falls",Lisbon,,ME,"Androscoggin County",America/New_York,207,NA,US,44,-70.05,4240 +04253,STANDARD,0,Livermore,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.4,-70.22,1870 +04254,STANDARD,0,"Livermore Falls","Livermore Fls",,ME,"Androscoggin County",America/New_York,207,NA,US,44.47,-70.18,2350 +04255,STANDARD,0,Greenwood,,,ME,"Oxford County",America/New_York,207,NA,US,44.4,-70.7,620 +04256,STANDARD,0,"Mechanic Falls","Mechanic Fls",,ME,"Androscoggin County",America/New_York,207,NA,US,44.11,-70.39,2650 +04257,STANDARD,0,Mexico,,,ME,"Oxford County",America/New_York,207,NA,US,44.56,-70.54,2010 +04258,STANDARD,0,Minot,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.14,-70.34,2640 +04259,STANDARD,0,Monmouth,,,ME,"Kennebec County",America/New_York,207,NA,US,44.23,-70.01,2860 +04260,STANDARD,0,"New Gloucester","New Gloucestr",,ME,"Cumberland County",America/New_York,207,NA,US,43.96,-70.28,5330 +04261,STANDARD,0,Newry,Upton,,ME,"Oxford County",America/New_York,207,NA,US,44.5,-70.96,390 +04262,"PO BOX",0,"North Jay",,,ME,"Franklin County",America/New_York,207,NA,US,44.53,-70.21,81 +04263,STANDARD,0,Leeds,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.3,-70.12,1940 +04265,STANDARD,0,"North Monmouth","N Monmouth",,ME,"Kennebec County",America/New_York,207,NA,US,44.27,-70.05,780 +04266,"PO BOX",0,"North Turner",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.33,-70.25,368 +04267,"PO BOX",0,"North Waterford","N Waterford",,ME,"Oxford County",America/New_York,207,NA,US,44.21,-70.79,121 +04268,STANDARD,0,Norway,,,ME,"Oxford County",America/New_York,207,NA,US,44.21,-70.55,4100 +04270,STANDARD,0,Oxford,Otisfield,,ME,"Oxford County",America/New_York,207,NA,US,44.14,-70.5,5180 +04271,"PO BOX",0,Paris,,"Paris Hill",ME,"Oxford County",America/New_York,207,NA,US,44.26,-70.5,182 +04274,STANDARD,0,Poland,"Poland Spring",,ME,"Androscoggin County",America/New_York,207,NA,US,44.06,-70.39,5100 +04275,STANDARD,0,Roxbury,Byron,Frye,ME,"Oxford County",America/New_York,207,NA,US,44.66,-70.59,390 +04276,STANDARD,0,Rumford,"Rumford Center, Rumford Ctr, Rumford Point",,ME,"Oxford County",America/New_York,207,NA,US,44.54,-70.56,4320 +04280,STANDARD,0,Sabattus,Wales,,ME,"Androscoggin County",America/New_York,207,NA,US,44.11,-70.1,6210 +04281,STANDARD,0,"South Paris",,,ME,"Oxford County",America/New_York,207,NA,US,44.21,-70.51,4020 +04282,STANDARD,0,Turner,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.25,-70.25,5190 +04284,STANDARD,0,Wayne,,,ME,"Kennebec County",America/New_York,207,NA,US,44.34,-70.06,1080 +04285,STANDARD,0,Weld,,,ME,"Franklin County",America/New_York,207,NA,US,44.69,-70.42,330 +04286,"PO BOX",0,"West Bethel",,,ME,"Oxford County",America/New_York,207,NA,US,44.4,-70.87,111 +04287,STANDARD,0,Bowdoin,"W Bowdoin","West Bowdoin",ME,"Sagadahoc County",America/New_York,207,NA,US,44.04,-70.02,2770 +04288,"PO BOX",0,"West Minot",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.17,-70.33,50 +04289,STANDARD,0,"West Paris",,,ME,"Oxford County",America/New_York,207,NA,US,44.32,-70.57,1550 +04290,STANDARD,0,Peru,,"West Peru",ME,"Oxford County",America/New_York,207,NA,US,44.5,-70.4,1280 +04291,"PO BOX",0,"West Poland",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.05,-70.45,226 +04292,STANDARD,0,Sumner,,,ME,"Oxford County",America/New_York,207,NA,US,44.39,-70.43,800 +04294,STANDARD,0,Wilton,"Perkins Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.59,-70.23,3030 +04330,STANDARD,0,Augusta,"Chelsea, Sidney",Togus,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,21200 +04332,"PO BOX",0,Augusta,,,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,964 +04333,UNIQUE,0,Augusta,,"Me State Agencies",ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,637 +04336,UNIQUE,0,Augusta,,"Central Me Power Co",ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,0 +04338,"PO BOX",0,Augusta,,,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,228 +04341,"PO BOX",0,"Coopers Mills",,,ME,"Lincoln County",America/New_York,207,NA,US,44.27,-69.49,320 +04342,STANDARD,0,Dresden,,,ME,"Lincoln County",America/New_York,207,NA,US,44.1,-69.72,1480 +04343,"PO BOX",0,"East Winthrop",,,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.89,354 +04344,STANDARD,0,Farmingdale,,,ME,"Kennebec County",America/New_York,207,NA,US,44.25,-69.78,2610 +04345,STANDARD,0,Gardiner,"Pittston, West Gardiner",,ME,"Kennebec County",America/New_York,207,NA,US,44.19,-69.78,10380 +04346,STANDARD,0,Randolph,,,ME,"Kennebec County",America/New_York,207,NA,US,44.23,-69.75,1470 +04347,STANDARD,0,Hallowell,,,ME,"Kennebec County",America/New_York,207,NA,US,44.29,-69.81,2290 +04348,STANDARD,0,Jefferson,Somerville,,ME,"Lincoln County",America/New_York,207,NA,US,44.2,-69.45,2770 +04349,STANDARD,0,"Kents Hill",Fayette,,ME,"Kennebec County",America/New_York,207,NA,US,44.43,-70.07,1220 +04350,STANDARD,0,Litchfield,,,ME,"Kennebec County",America/New_York,207,NA,US,44.13,-69.96,3160 +04351,STANDARD,0,Manchester,,,ME,"Kennebec County",America/New_York,207,NA,US,44.32,-69.86,2490 +04352,STANDARD,0,"Mount Vernon",,"Mt Vernon",ME,"Kennebec County",America/New_York,207,NA,US,44.5,-69.98,1520 +04353,STANDARD,0,Whitefield,,,ME,"Lincoln County",America/New_York,207,NA,US,44.17,-69.62,2050 +04354,STANDARD,0,Palermo,,,ME,"Waldo County",America/New_York,207,NA,US,44.4,-69.47,1410 +04355,STANDARD,0,Readfield,,,ME,"Kennebec County",America/New_York,207,NA,US,44.38,-69.96,2400 +04357,STANDARD,0,Richmond,,,ME,"Sagadahoc County",America/New_York,207,NA,US,44.12,-69.83,3080 +04358,STANDARD,0,"South China","China, Weeks Mills",,ME,"Kennebec County",America/New_York,207,NA,US,44.39,-69.58,3670 +04359,"PO BOX",0,"South Gardiner","S Gardiner",,ME,"Kennebec County",America/New_York,207,NA,US,44.18,-69.76,538 +04360,STANDARD,0,Vienna,,,ME,"Kennebec County",America/New_York,207,NA,US,44.53,-69.98,530 +04363,STANDARD,0,Windsor,,,ME,"Kennebec County",America/New_York,207,NA,US,44.31,-69.58,2420 +04364,STANDARD,0,Winthrop,,,ME,"Kennebec County",America/New_York,207,NA,US,44.31,-69.96,5310 +04401,STANDARD,0,Bangor,"Glenburn, Hermon, Veazie",,ME,"Penobscot County",America/New_York,207,NA,US,44.83,-68.78,35140 +04402,"PO BOX",0,Bangor,,,ME,"Penobscot County",America/New_York,207,NA,US,44.83,-68.78,1831 +04406,STANDARD,0,Abbot,"Blanchard Twp",,ME,"Piscataquis County",America/New_York,207,NA,US,45.18,-69.45,570 +04408,STANDARD,0,Aurora,"Great Pond",,ME,"Hancock County",America/New_York,207,NA,US,44.85,-68.32,197 +04410,STANDARD,0,Bradford,,,ME,"Penobscot County",America/New_York,207,NA,US,45.06,-68.93,980 +04411,STANDARD,0,Bradley,,,ME,"Penobscot County",America/New_York,207,NA,US,44.92,-68.62,1350 +04412,STANDARD,0,Brewer,,,ME,"Penobscot County",America/New_York,207,NA,US,44.77,-68.73,8490 +04413,STANDARD,0,Brookton,"Forest City Twp, Forest Twp, Frst City Twp",,ME,"Washington County",America/New_York,207,NA,US,45.52,-67.76,192 +04414,STANDARD,0,Brownville,"Barnard Twp, Ebeemee Twp, Wiliamsbg Twp, Williamsburg Twp",,ME,"Piscataquis County",America/New_York,207,NA,US,45.3,-69.03,1010 +04415,"PO BOX",0,"Brownville Junction","Brownvlle Jct",,ME,"Piscataquis County",America/New_York,207,NA,US,45.4,-69.06,337 +04416,STANDARD,0,Bucksport,"Verona Island",,ME,"Hancock County",America/New_York,207,NA,US,44.6,-68.79,4760 +04417,STANDARD,0,Burlington,,,ME,"Penobscot County",America/New_York,207,NA,US,45.2,-68.42,300 +04418,STANDARD,0,Greenbush,"Cardville, Costigan, Greenfield Twp, Greenfld Twp, Olamon",,ME,"Penobscot County",America/New_York,207,NA,US,45.08,-68.59,1320 +04419,STANDARD,0,Carmel,,,ME,"Penobscot County",America/New_York,207,NA,US,44.79,-69.05,2650 +04420,UNIQUE,0,Castine,,"Maine Maritime Academy",ME,"Hancock County",America/New_York,207,NA,US,44.38,-68.8,14 +04421,STANDARD,0,Castine,,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.81,600 +04422,STANDARD,0,Charleston,,,ME,"Penobscot County",America/New_York,207,NA,US,45.08,-69.04,1010 +04424,STANDARD,0,Danforth,Weston,,ME,"Washington County",America/New_York,207,NA,US,45.66,-67.86,620 +04426,STANDARD,0,"Dover Foxcroft","Atkinson, Bowerbank, Dovr Foxcroft, Dvr Foxcroft, Sebec",,ME,"Piscataquis County",America/New_York,207,NA,US,45.21,-69.18,3860 +04427,STANDARD,0,Corinth,,"East Corinth",ME,"Penobscot County",America/New_York,207,NA,US,44.98,-69.01,2580 +04428,STANDARD,0,Eddington,Clifton,,ME,"Penobscot County",America/New_York,207,NA,US,44.82,-68.69,2670 +04429,STANDARD,0,Holden,"Dedham, East Holden",,ME,"Penobscot County",America/New_York,207,NA,US,44.75,-68.67,4620 +04430,STANDARD,0,"East Millinocket","E Millinocket",,ME,"Penobscot County",America/New_York,207,NA,US,45.62,-68.57,1200 +04431,"PO BOX",0,"East Orland",,,ME,"Hancock County",America/New_York,207,NA,US,44.56,-68.67,342 +04434,STANDARD,0,Etna,,,ME,"Penobscot County",America/New_York,207,NA,US,44.82,-69.11,1110 +04435,STANDARD,0,Exeter,,,ME,"Penobscot County",America/New_York,207,NA,US,44.97,-69.14,760 +04438,STANDARD,0,Frankfort,,,ME,"Waldo County",America/New_York,207,NA,US,44.6,-68.87,1010 +04441,STANDARD,0,Greenville,"Beaver Cove, Frenchtown Twp, Frenchtwn Twp, Lily Bay Twp, Shirley",,ME,"Piscataquis County",America/New_York,207,NA,US,45.46,-69.59,1210 +04442,STANDARD,0,"Greenville Junction","Greenvlle Jct",,ME,"Piscataquis County",America/New_York,207,NA,US,45.47,-69.69,509 +04443,STANDARD,0,Guilford,"Eliotsvle Twp, Elliottsville Twp, Parkman, Willimantic",,ME,"Piscataquis County",America/New_York,207,NA,US,45.23,-69.35,1820 +04444,STANDARD,0,Hampden,Newburgh,,ME,"Penobscot County",America/New_York,207,NA,US,44.73,-68.95,8800 +04448,STANDARD,0,Howland,"Edinburg, Seboeis Plt",,ME,"Penobscot County",America/New_York,207,NA,US,45.25,-68.66,1040 +04449,STANDARD,0,Hudson,,,ME,"Penobscot County",America/New_York,207,NA,US,45,-68.88,1170 +04450,STANDARD,0,Kenduskeag,,,ME,"Penobscot County",America/New_York,207,NA,US,44.91,-68.93,1190 +04451,STANDARD,0,Kingman,"Kingman Twp, Macwahoc Plt",,ME,"Penobscot County",America/New_York,207,NA,US,45.54,-68.2,256 +04453,STANDARD,0,Lagrange,Maxfield,,ME,"Penobscot County",America/New_York,207,NA,US,45.16,-68.84,570 +04454,"PO BOX",0,"Lambert Lake",,,ME,"Washington County",America/New_York,207,NA,US,45.54,-67.52,66 +04455,STANDARD,0,Lee,,,ME,"Penobscot County",America/New_York,207,NA,US,45.36,-68.28,750 +04456,STANDARD,0,Levant,,,ME,"Penobscot County",America/New_York,207,NA,US,44.86,-68.93,2640 +04457,STANDARD,0,Lincoln,"Chester, Lincoln Center, Lincoln Ctr, Mattamisc Twp, Mattamiscontis Twp, Woodville",,ME,"Penobscot County",America/New_York,207,NA,US,45.36,-68.5,4710 +04459,STANDARD,0,Mattawamkeag,"Molunkus Twp",,ME,"Penobscot County",America/New_York,207,NA,US,45.51,-68.35,530 +04460,STANDARD,0,Medway,"Grindstone, Grindstone Twp, Soldiertown, Soldiertown Twp",,ME,"Penobscot County",America/New_York,207,NA,US,45.6,-68.53,1010 +04461,STANDARD,0,Milford,,,ME,"Penobscot County",America/New_York,207,NA,US,44.94,-68.64,2590 +04462,STANDARD,0,Millinocket,"Cedar Lake, Cedar Lake Twp, Indian Purch, Indian Purchase Twp, Long A Twp",,ME,"Penobscot County",America/New_York,207,NA,US,45.65,-68.69,3400 +04463,STANDARD,0,Milo,"Derby, Lake View Plt, Medford, Orneville Twp",,ME,"Piscataquis County",America/New_York,207,NA,US,45.25,-68.98,2130 +04464,STANDARD,0,Monson,,,ME,"Piscataquis County",America/New_York,207,NA,US,45.28,-69.5,510 +04467,"PO BOX",1,Olamon,,,ME,"Penobscot County",America/New_York,207,NA,US,45.12,-68.61,0 +04468,STANDARD,0,"Old Town","Alton, Argyle Twp, Indian Island",,ME,"Penobscot County",America/New_York,207,NA,US,44.95,-68.73,6890 +04469,UNIQUE,0,Orono,,"University Of Maine",ME,"Penobscot County",America/New_York,207,NA,US,44.9,-68.67,100 +04471,STANDARD,0,Orient,"Amity, Cary Plt","North Amity",ME,"Aroostook County",America/New_York,207,NA,US,45.81,-67.84,400 +04472,STANDARD,0,Orland,,,ME,"Hancock County",America/New_York,207,NA,US,44.57,-68.73,1740 +04473,STANDARD,0,Orono,,,ME,"Penobscot County",America/New_York,207,NA,US,44.88,-68.68,4290 +04474,STANDARD,0,Orrington,,,ME,"Penobscot County",America/New_York,207,NA,US,44.73,-68.82,3530 +04475,STANDARD,0,Passadumkeag,,,ME,"Penobscot County",America/New_York,207,NA,US,45.18,-68.61,280 +04476,STANDARD,0,Penobscot,,,ME,"Hancock County",America/New_York,207,NA,US,44.46,-68.71,950 +04478,STANDARD,0,Rockwood,"Little W Twp, Pittstn Acdmy, Pittston Academy Grant Twp, Plymouth Twp, Seboomook Twp, Tomhegan Twp",,ME,"Somerset County",America/New_York,207,NA,US,45.67,-69.74,240 +04479,STANDARD,0,Sangerville,,,ME,"Piscataquis County",America/New_York,207,NA,US,45.16,-69.35,1010 +04481,STANDARD,0,Sebec,Brownville,,ME,"Piscataquis County",America/New_York,207,NA,US,45.27,-69.11,510 +04485,"PO BOX",0,"Shirley Mills",Greenville,Shirley,ME,"Piscataquis County",America/New_York,207,NA,US,45.35,-69.63,124 +04487,STANDARD,0,Springfield,"Carroll Plt, Lakeville, Prentiss Twp, Webster Plt",,ME,"Penobscot County",America/New_York,207,NA,US,45.39,-68.13,530 +04488,STANDARD,0,Stetson,,,ME,"Penobscot County",America/New_York,207,NA,US,44.89,-69.14,1010 +04489,"PO BOX",0,Stillwater,,,ME,"Penobscot County",America/New_York,207,NA,US,44.91,-68.69,468 +04490,STANDARD,0,Topsfield,"Codyville Plt, Waite",,ME,"Washington County",America/New_York,207,NA,US,45.41,-67.73,210 +04491,"PO BOX",0,Vanceboro,,,ME,"Washington County",America/New_York,207,NA,US,45.56,-67.43,176 +04492,STANDARD,0,Waite,Talmadge,,ME,"Washington County",America/New_York,207,NA,US,45.32,-67.69,141 +04493,STANDARD,0,"West Enfield","Enfield, Lowell",,ME,"Penobscot County",America/New_York,207,NA,US,45.26,-68.58,1580 +04495,STANDARD,0,Winn,,,ME,"Penobscot County",America/New_York,207,NA,US,45.48,-68.37,280 +04496,STANDARD,0,Winterport,,,ME,"Waldo County",America/New_York,207,NA,US,44.65,-68.85,3410 +04497,STANDARD,0,Wytopitlock,"Bancroft, Drew Plt, Glenwood Plt, Haynesville, Reed Plt",,ME,"Aroostook County",America/New_York,207,NA,US,45.64,-68.07,210 +04530,STANDARD,0,Bath,"Arrowsic, West Bath",,ME,"Sagadahoc County",America/New_York,207,NA,US,43.93,-69.83,9740 +04535,STANDARD,0,Alna,,,ME,"Lincoln County",America/New_York,207,NA,US,44.1,-69.6,720 +04537,STANDARD,0,Boothbay,,,ME,"Lincoln County",America/New_York,207,NA,US,43.88,-69.62,1890 +04538,STANDARD,0,"Boothbay Harbor","Boothbay Hbr, Capitol Is, Capitol Island",,ME,"Lincoln County",America/New_York,207,NA,US,43.85,-69.62,1570 +04539,STANDARD,0,Bristol,,,ME,"Lincoln County",America/New_York,207,NA,US,43.95,-69.5,1100 +04541,STANDARD,0,Chamberlain,,,ME,"Lincoln County",America/New_York,207,NA,US,43.88,-69.49,75 +04543,STANDARD,0,Damariscotta,,,ME,"Lincoln County",America/New_York,207,NA,US,44.03,-69.51,2050 +04544,STANDARD,0,"East Boothbay",,,ME,"Lincoln County",America/New_York,207,NA,US,43.82,-69.59,650 +04547,STANDARD,0,Friendship,,,ME,"Knox County",America/New_York,207,NA,US,43.98,-69.33,1030 +04548,STANDARD,0,Georgetown,"Mac Mahan","Five Islands",ME,"Sagadahoc County",America/New_York,207,NA,US,43.8,-69.74,910 +04549,STANDARD,0,"Isle Of Springs","Boothbay, Is Of Springs",,ME,"Lincoln County",America/New_York,207,NA,US,43.89,-69.62,0 +04551,STANDARD,0,Bremen,Medomak,,ME,"Lincoln County",America/New_York,207,NA,US,44,-69.42,700 +04553,STANDARD,0,Newcastle,,,ME,"Lincoln County",America/New_York,207,NA,US,44.05,-69.57,1890 +04554,STANDARD,0,"New Harbor",,,ME,"Lincoln County",America/New_York,207,NA,US,43.85,-69.5,620 +04555,STANDARD,0,Nobleboro,,,ME,"Lincoln County",America/New_York,207,NA,US,44.07,-69.48,1640 +04556,STANDARD,0,Edgecomb,,,ME,"Lincoln County",America/New_York,207,NA,US,43.95,-69.63,1130 +04558,STANDARD,0,Pemaquid,"New Harbor",,ME,"Lincoln County",America/New_York,207,NA,US,43.89,-69.52,240 +04562,STANDARD,0,Phippsburg,,,ME,"Sagadahoc County",America/New_York,207,NA,US,43.82,-69.81,1830 +04563,STANDARD,0,Cushing,,,ME,"Knox County",America/New_York,207,NA,US,44.01,-69.24,1270 +04564,STANDARD,0,"Round Pond",,,ME,"Lincoln County",America/New_York,207,NA,US,43.91,-69.46,440 +04565,"PO BOX",0,"Sebasco Estates","Sebasco Ests",,ME,"Sagadahoc County",America/New_York,207,NA,US,43.77,-69.84,162 +04568,STANDARD,0,"South Bristol",,,ME,"Lincoln County",America/New_York,207,NA,US,43.86,-69.56,330 +04570,"PO BOX",0,"Squirrel Island","Boothbay Harbor, Boothbay Hbr, Squirrel Is",,ME,"Lincoln County",America/New_York,207,NA,US,43.81,-69.63,0 +04571,STANDARD,0,Trevett,,,ME,"Lincoln County",America/New_York,207,NA,US,43.89,-69.67,250 +04572,STANDARD,0,Waldoboro,,,ME,"Lincoln County",America/New_York,207,NA,US,44.09,-69.38,4400 +04573,STANDARD,0,Walpole,,,ME,"Lincoln County",America/New_York,207,NA,US,43.94,-69.55,480 +04574,STANDARD,0,Washington,,,ME,"Knox County",America/New_York,207,NA,US,44.27,-69.36,1340 +04575,"PO BOX",0,"West Boothbay Harbor","W Boothbay Ha, W Boothbay Harbor, W Boothby Hbr",,ME,"Lincoln County",America/New_York,207,NA,US,43.85,-69.65,260 +04576,STANDARD,0,Southport,Newagen,,ME,"Lincoln County",America/New_York,207,NA,US,43.81,-69.66,540 +04578,STANDARD,0,Wiscasset,"Westport Is, Westport Island",,ME,"Lincoln County",America/New_York,207,NA,US,44.01,-69.67,3920 +04579,STANDARD,0,Woolwich,,,ME,"Sagadahoc County",America/New_York,207,NA,US,43.96,-69.78,2940 +04605,STANDARD,0,Ellsworth,"Amherst, Fletchers Landing Twp, Fletchers Ldg, Lamoine, Mariaville, Osborn, Otis, Trenton, Waltham",,ME,"Hancock County",America/New_York,207,NA,US,44.58,-68.49,12070 +04606,STANDARD,0,Addison,,,ME,"Washington County",America/New_York,207,NA,US,44.54,-67.71,950 +04607,STANDARD,0,Gouldsboro,"S Gouldsboro, South Gouldsboro",,ME,"Hancock County",America/New_York,207,NA,US,44.47,-68.03,980 +04609,STANDARD,0,"Bar Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.38,-68.21,4230 +04611,"PO BOX",0,Beals,,,ME,"Washington County",America/New_York,207,NA,US,44.48,-67.58,585 +04612,STANDARD,0,Bernard,"West Tremont",,ME,"Hancock County",America/New_York,207,NA,US,44.24,-68.35,420 +04613,STANDARD,0,"Birch Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.38,-68.04,200 +04614,STANDARD,0,"Blue Hill",,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.58,2560 +04616,STANDARD,0,Brooklin,,,ME,"Hancock County",America/New_York,207,NA,US,44.26,-68.56,740 +04617,STANDARD,0,Brooksville,,,ME,"Hancock County",America/New_York,207,NA,US,44.35,-68.76,660 +04619,STANDARD,0,Calais,,,ME,"Washington County",America/New_York,207,NA,US,45.13,-67.2,2540 +04622,STANDARD,0,Cherryfield,"Beddington, Deblois",,ME,"Washington County",America/New_York,207,NA,US,44.6,-67.92,970 +04623,STANDARD,0,"Columbia Falls","Centerville, Columbia, Columbia Fls",,ME,"Washington County",America/New_York,207,NA,US,44.65,-67.72,780 +04624,STANDARD,0,Corea,,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-67.99,159 +04625,"PO BOX",0,"Cranberry Isles","Cranberry Is",,ME,"Hancock County",America/New_York,207,NA,US,44.24,-68.26,49 +04626,STANDARD,0,Cutler,,,ME,"Washington County",America/New_York,207,NA,US,44.69,-67.21,430 +04627,STANDARD,0,"Deer Isle",,,ME,"Hancock County",America/New_York,207,NA,US,44.22,-68.67,1410 +04628,STANDARD,0,Dennysville,"Edmunds Twp, Marion Twp",,ME,"Washington County",America/New_York,207,NA,US,44.9,-67.22,520 +04629,"PO BOX",0,"East Blue Hill","E Blue Hill, Surry",,ME,"Hancock County",America/New_York,207,NA,US,44.42,-68.51,56 +04630,STANDARD,0,"East Machias",,,ME,"Washington County",America/New_York,207,NA,US,44.73,-67.39,1230 +04631,STANDARD,0,Eastport,,,ME,"Washington County",America/New_York,207,NA,US,44.91,-67.01,960 +04634,STANDARD,0,Franklin,Eastbrook,,ME,"Hancock County",America/New_York,207,NA,US,44.58,-68.23,1590 +04635,"PO BOX",0,Frenchboro,,,ME,"Hancock County",America/New_York,207,NA,US,44.11,-68.36,64 +04637,"PO BOX",0,"Grand Lake Stream","Grand Lk Strm",,ME,"Washington County",America/New_York,207,NA,US,45.17,-67.77,136 +04640,STANDARD,0,Hancock,,,ME,"Hancock County",America/New_York,207,NA,US,44.52,-68.25,2040 +04642,STANDARD,0,Harborside,,,ME,"Hancock County",America/New_York,207,NA,US,44.33,-68.81,143 +04643,STANDARD,0,Harrington,,,ME,"Washington County",America/New_York,207,NA,US,44.61,-67.81,850 +04644,"PO BOX",0,"Hulls Cove",,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.25,330 +04645,"PO BOX",0,"Isle Au Haut",Stonington,,ME,"Knox County",America/New_York,207,NA,US,44.04,-68.62,65 +04646,"PO BOX",0,Islesford,,,ME,"Hancock County",America/New_York,207,NA,US,44.25,-68.22,92 +04648,STANDARD,0,Jonesboro,,,ME,"Washington County",America/New_York,207,NA,US,44.66,-67.57,510 +04649,STANDARD,0,Jonesport,,,ME,"Washington County",America/New_York,207,NA,US,44.53,-67.59,1000 +04650,STANDARD,0,"Little Deer Isle","Ltl Deer Is",,ME,"Hancock County",America/New_York,207,NA,US,44.28,-68.71,240 +04652,STANDARD,0,Lubec,"Trescott Twp",,ME,"Washington County",America/New_York,207,NA,US,44.79,-67.11,1230 +04653,STANDARD,0,"Bass Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.21,-68.33,480 +04654,STANDARD,0,Machias,"Day Block Twp, Marshfield, Northfield, Roque Bluffs, Whitneyville",,ME,"Washington County",America/New_York,207,NA,US,44.7,-67.47,2470 +04655,STANDARD,0,Machiasport,"Bucks Harbor",,ME,"Washington County",America/New_York,207,NA,US,44.69,-67.39,760 +04657,STANDARD,0,Meddybemps,"Cathance Twp, Cooper",,ME,"Washington County",America/New_York,207,NA,US,45.03,-67.35,250 +04658,STANDARD,0,Milbridge,,,ME,"Washington County",America/New_York,207,NA,US,44.52,-67.88,1170 +04660,STANDARD,0,"Mount Desert","Otter Creek",,ME,"Hancock County",America/New_York,207,NA,US,44.34,-68.35,1350 +04662,"PO BOX",0,"Northeast Harbor","Ne Harbor",,ME,"Hancock County",America/New_York,207,NA,US,44.3,-68.29,518 +04664,STANDARD,0,Sullivan,"N Sullivan, North Sullivan",,ME,"Hancock County",America/New_York,207,NA,US,44.53,-68.15,1020 +04666,STANDARD,0,Pembroke,Charlotte,,ME,"Washington County",America/New_York,207,NA,US,44.95,-67.16,930 +04667,STANDARD,0,Perry,"Pleasant Point, Pleasant Pt",,ME,"Washington County",America/New_York,207,NA,US,44.97,-67.07,1180 +04668,STANDARD,0,Princeton,"Big Lake Twp, Grand Lake Stream, Grand Lk Strm, Greenlaw Chop, Greenlaw Chopping Twp, Indian Twp",,ME,"Washington County",America/New_York,207,NA,US,45.22,-67.57,1350 +04669,STANDARD,0,"Prospect Harbor","Prospect Hbr",,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.02,280 +04671,STANDARD,0,Robbinston,,,ME,"Washington County",America/New_York,207,NA,US,45.06,-67.16,510 +04672,"PO BOX",0,"Salsbury Cove",,,ME,"Hancock County",America/New_York,207,NA,US,44.43,-68.32,159 +04673,STANDARD,0,Sargentville,,,ME,"Hancock County",America/New_York,207,NA,US,44.31,-68.68,107 +04674,STANDARD,0,"Seal Cove",,,ME,"Hancock County",America/New_York,207,NA,US,44.3,-68.41,340 +04675,"PO BOX",0,"Seal Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.29,-68.24,276 +04676,STANDARD,0,Sedgwick,,,ME,"Hancock County",America/New_York,207,NA,US,44.35,-68.63,790 +04677,STANDARD,0,Sorrento,,,ME,"Hancock County",America/New_York,207,NA,US,44.49,-68.18,240 +04679,STANDARD,0,"Southwest Harbor","Southwest Hbr",,ME,"Hancock County",America/New_York,207,NA,US,44.27,-68.33,1670 +04680,STANDARD,0,Steuben,,,ME,"Washington County",America/New_York,207,NA,US,44.51,-67.96,990 +04681,STANDARD,0,Stonington,,,ME,"Hancock County",America/New_York,207,NA,US,44.18,-68.67,960 +04683,STANDARD,0,Sunset,,,ME,"Hancock County",America/New_York,207,NA,US,44.25,-68.79,132 +04684,STANDARD,0,Surry,,,ME,"Hancock County",America/New_York,207,NA,US,44.49,-68.5,1430 +04685,STANDARD,0,"Swans Island",Minturn,,ME,"Hancock County",America/New_York,207,NA,US,44.14,-68.45,330 +04686,STANDARD,0,Wesley,Machias,,ME,"Washington County",America/New_York,207,NA,US,44.95,-67.66,108 +04691,STANDARD,0,Whiting,,,ME,"Washington County",America/New_York,207,NA,US,44.76,-67.26,350 +04693,STANDARD,0,"Winter Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.39,-68.08,420 +04694,STANDARD,0,Baileyville,"Alexander, Baring Plt, Crawford, Woodland Washington County",,ME,"Washington County",America/New_York,207,NA,US,45.09,-67.46,1910 +04730,STANDARD,0,Houlton,"Hammond, Hodgdon, Linneus, Littleton, Ludlow",,ME,"Aroostook County",America/New_York,207,NA,US,46.11,-67.83,8050 +04732,STANDARD,0,Ashland,"Garfield Plt, Masardis, Nashville Plt, Sheridan",,ME,"Aroostook County",America/New_York,207,NA,US,46.63,-68.4,1320 +04733,STANDARD,0,Benedicta,,,ME,"Aroostook County",America/New_York,207,NA,US,45.8,-68.41,210 +04734,"PO BOX",0,Blaine,,,ME,"Aroostook County",America/New_York,207,NA,US,46.5,-67.86,530 +04735,STANDARD,0,Bridgewater,,,ME,"Aroostook County",America/New_York,207,NA,US,46.42,-67.84,430 +04736,STANDARD,0,Caribou,"Connor Twp, Woodland",,ME,"Aroostook County",America/New_York,207,NA,US,46.86,-67.99,7460 +04737,"PO BOX",0,"Clayton Lake",,,ME,"Aroostook County",America/New_York,207,NA,US,46.61,-69.52,0 +04738,"PO BOX",0,Crouseville,,,ME,"Aroostook County",America/New_York,207,NA,US,46.76,-68.08,148 +04739,STANDARD,0,"Eagle Lake","Quimby, Winterville Plt, Wntervlle Plt",,ME,"Aroostook County",America/New_York,207,NA,US,47.04,-68.59,700 +04740,STANDARD,0,Easton,,,ME,"Aroostook County",America/New_York,207,NA,US,46.64,-67.91,1070 +04741,"PO BOX",0,"Estcourt Station","Estcourt Sta",,ME,"Aroostook County",America/New_York,207,NA,US,47.45,-69.22,0 +04742,STANDARD,0,"Fort Fairfield","Ft Fairfield",,ME,"Aroostook County",America/New_York,207,NA,US,46.76,-67.83,2700 +04743,STANDARD,0,"Fort Kent","New Canada, St John Plt",,ME,"Aroostook County",America/New_York,207,NA,US,47.26,-68.57,3650 +04744,"PO BOX",0,"Fort Kent Mills","Ft Kent Mls",,ME,"Aroostook County",America/New_York,207,NA,US,47.23,-68.58,351 +04745,STANDARD,0,Frenchville,"Upper Frenchville, Upper Frnchvl",,ME,"Aroostook County",America/New_York,207,NA,US,47.28,-68.38,880 +04746,STANDARD,0,"Grand Isle",Lille,,ME,"Aroostook County",America/New_York,207,NA,US,47.3,-68.15,280 +04747,STANDARD,0,"Island Falls","Crystal, Dyer Brook",,ME,"Aroostook County",America/New_York,207,NA,US,46,-68.27,980 +04750,STANDARD,0,Limestone,"Caswell, Loring Cm Ctr",,ME,"Aroostook County",America/New_York,207,NA,US,46.91,-67.83,1440 +04751,UNIQUE,0,Limestone,,"Defense Finance Accounting",ME,"Aroostook County",America/New_York,207,NA,US,46.91,-67.83,0 +04756,STANDARD,0,Madawaska,,,ME,"Aroostook County",America/New_York,207,NA,US,47.34,-68.33,2480 +04757,STANDARD,0,Mapleton,"Castle Hill, Chapman",,ME,"Aroostook County",America/New_York,207,NA,US,46.68,-68.16,2410 +04758,STANDARD,0,"Mars Hill",,,ME,"Aroostook County",America/New_York,207,NA,US,46.51,-67.86,1380 +04760,STANDARD,0,Monticello,,,ME,"Aroostook County",America/New_York,207,NA,US,46.3,-67.84,590 +04761,STANDARD,0,"New Limerick",Houlton,,ME,"Aroostook County",America/New_York,207,NA,US,46.1,-67.96,480 +04762,STANDARD,0,"New Sweden",,,ME,"Aroostook County",America/New_York,207,NA,US,46.94,-68.12,450 +04763,STANDARD,0,Oakfield,,,ME,"Aroostook County",America/New_York,207,NA,US,46.09,-68.15,600 +04764,STANDARD,0,Oxbow,,,ME,"Aroostook County",America/New_York,207,NA,US,46.41,-68.49,56 +04765,STANDARD,0,Patten,"Mount Chase",,ME,"Penobscot County",America/New_York,207,NA,US,45.99,-68.44,870 +04766,STANDARD,0,Perham,,,ME,"Aroostook County",America/New_York,207,NA,US,46.84,-68.19,340 +04768,STANDARD,0,Portage,"Portage Lake",,ME,"Aroostook County",America/New_York,207,NA,US,46.76,-68.47,300 +04769,STANDARD,0,"Presque Isle",,,ME,"Aroostook County",America/New_York,207,NA,US,46.68,-67.98,7490 +04772,STANDARD,0,"Saint Agatha",,,ME,"Aroostook County",America/New_York,207,NA,US,47.24,-68.31,570 +04773,STANDARD,0,"Saint David",,,ME,"Aroostook County",America/New_York,207,NA,US,47.31,-68.22,580 +04774,STANDARD,0,"Saint Francis",Allagash,,ME,"Aroostook County",America/New_York,207,NA,US,47.17,-68.89,440 +04775,"PO BOX",0,Sheridan,,,ME,"Aroostook County",America/New_York,207,NA,US,46.66,-68.41,32 +04776,STANDARD,0,Sherman,"Sherman Mills, Silver Ridge, Silver Ridge Twp",,ME,"Aroostook County",America/New_York,207,NA,US,45.81,-68.31,670 +04777,STANDARD,0,Stacyville,"Herseytown Twp, Hrsytown Twp, Sherman Sta, Sherman Station",,ME,"Penobscot County",America/New_York,207,NA,US,45.89,-68.43,260 +04779,STANDARD,0,Sinclair,"Cross Lake Twp, Cross Lke Twp",,ME,"Aroostook County",America/New_York,207,NA,US,47.16,-68.3,310 +04780,STANDARD,0,"Smyrna Mills","Hersey, Merrill, Moro Plt",,ME,"Aroostook County",America/New_York,207,NA,US,46.24,-68.29,560 +04781,STANDARD,0,Wallagrass,,"Soldier Pond",ME,"Aroostook County",America/New_York,207,NA,US,47.15,-68.57,450 +04783,STANDARD,0,Stockholm,Westmanland,,ME,"Aroostook County",America/New_York,207,NA,US,47.04,-68.14,370 +04785,STANDARD,0,"Van Buren","Cyr Plt, Hamlin",,ME,"Aroostook County",America/New_York,207,NA,US,47.16,-67.95,1600 +04786,STANDARD,0,Washburn,Wade,,ME,"Aroostook County",America/New_York,207,NA,US,46.79,-68.15,1380 +04787,STANDARD,0,Westfield,,,ME,"Aroostook County",America/New_York,207,NA,US,46.57,-67.92,350 +04841,STANDARD,0,Rockland,,,ME,"Knox County",America/New_York,207,NA,US,44.12,-69.13,5830 +04843,STANDARD,0,Camden,,,ME,"Knox County",America/New_York,207,NA,US,44.2,-69.06,4570 +04846,"PO BOX",1,"Glen Cove",,,ME,"Knox County",America/New_York,207,NA,US,44.11,-69.08,158 +04847,STANDARD,0,Hope,Camden,,ME,"Knox County",America/New_York,207,NA,US,44.26,-69.15,1490 +04848,STANDARD,0,Islesboro,,,ME,"Waldo County",America/New_York,207,NA,US,44.3,-68.9,480 +04849,STANDARD,0,Lincolnville,Northport,,ME,"Waldo County",America/New_York,207,NA,US,44.28,-69,3320 +04850,"PO BOX",0,"Lincolnville Center","Lincolnvl Ctr",,ME,"Waldo County",America/New_York,207,NA,US,44.3,-69.07,181 +04851,"PO BOX",0,Matinicus,,,ME,"Knox County",America/New_York,207,NA,US,43.86,-68.88,49 +04852,"PO BOX",0,Monhegan,,,ME,"Lincoln County",America/New_York,207,NA,US,43.76,-69.32,67 +04853,STANDARD,0,"North Haven",,,ME,"Knox County",America/New_York,207,NA,US,44.15,-68.86,380 +04854,STANDARD,0,"Owls Head",,,ME,"Knox County",America/New_York,207,NA,US,44.08,-69.05,1360 +04855,"PO BOX",0,"Port Clyde",,,ME,"Knox County",America/New_York,207,NA,US,43.93,-69.25,294 +04856,STANDARD,0,Rockport,,,ME,"Knox County",America/New_York,207,NA,US,44.18,-69.07,3420 +04858,STANDARD,0,"South Thomaston","S Thomaston",,ME,"Knox County",America/New_York,207,NA,US,44.05,-69.12,1340 +04859,STANDARD,0,"Spruce Head","Tenants Harbor, Tenants Hbr",,ME,"Knox County",America/New_York,207,NA,US,44.01,-69.17,610 +04860,STANDARD,0,"Tenants Harbor","Saint George, Tenants Hbr",,ME,"Knox County",America/New_York,207,NA,US,43.95,-69.23,1450 +04861,STANDARD,0,Thomaston,,,ME,"Knox County",America/New_York,207,NA,US,44.08,-69.18,2350 +04862,STANDARD,0,Union,Appleton,,ME,"Knox County",America/New_York,207,NA,US,44.21,-69.27,3350 +04863,STANDARD,0,Vinalhaven,,,ME,"Knox County",America/New_York,207,NA,US,44.04,-68.83,1080 +04864,STANDARD,0,Warren,,,ME,"Knox County",America/New_York,207,NA,US,44.12,-69.24,3540 +04865,"PO BOX",0,"West Rockport",,,ME,"Knox County",America/New_York,207,NA,US,44.19,-69.15,301 +04901,STANDARD,0,Waterville,"Benton, Winslow",,ME,"Kennebec County",America/New_York,207,NA,US,44.56,-69.55,19610 +04903,"PO BOX",0,Waterville,,,ME,"Kennebec County",America/New_York,207,NA,US,44.54,-69.66,1125 +04910,STANDARD,0,Albion,,,ME,"Kennebec County",America/New_York,207,NA,US,44.53,-69.44,1760 +04911,STANDARD,0,Anson,Starks,,ME,"Somerset County",America/New_York,207,NA,US,44.77,-69.97,1610 +04912,STANDARD,0,Athens,"Brighton Plt",,ME,"Somerset County",America/New_York,207,NA,US,44.92,-69.67,840 +04915,STANDARD,0,Belfast,"Swanville, Waldo",,ME,"Waldo County",America/New_York,207,NA,US,44.42,-69.02,7500 +04917,STANDARD,0,Belgrade,,,ME,"Kennebec County",America/New_York,207,NA,US,44.44,-69.83,2730 +04918,STANDARD,0,"Belgrade Lakes","Belgrade Lks",,ME,"Kennebec County",America/New_York,207,NA,US,44.52,-69.87,350 +04920,STANDARD,0,Bingham,"Concord Twp, Moscow, Pleasant Ridge Plt, Plsnt Rdg Plt",,ME,"Somerset County",America/New_York,207,NA,US,45.05,-69.87,1120 +04921,STANDARD,0,Brooks,Jackson,,ME,"Waldo County",America/New_York,207,NA,US,44.55,-69.12,1370 +04922,STANDARD,0,Burnham,,,ME,"Waldo County",America/New_York,207,NA,US,44.69,-69.42,910 +04923,STANDARD,0,Cambridge,,,ME,"Somerset County",America/New_York,207,NA,US,45.02,-69.47,340 +04924,STANDARD,0,Canaan,,,ME,"Somerset County",America/New_York,207,NA,US,44.76,-69.56,1770 +04925,STANDARD,0,Caratunk,,,ME,"Somerset County",America/New_York,207,NA,US,45.23,-69.99,71 +04926,"PO BOX",0,"China Village","China Vlg",,ME,"Kennebec County",America/New_York,207,NA,US,44.48,-69.51,498 +04927,STANDARD,0,Clinton,,,ME,"Kennebec County",America/New_York,207,NA,US,44.63,-69.5,2930 +04928,STANDARD,0,Corinna,,,ME,"Penobscot County",America/New_York,207,NA,US,44.92,-69.26,1810 +04929,STANDARD,0,Detroit,,,ME,"Somerset County",America/New_York,207,NA,US,44.79,-69.29,730 +04930,STANDARD,0,Dexter,Ripley,,ME,"Penobscot County",America/New_York,207,NA,US,45.01,-69.29,3310 +04932,STANDARD,0,Dixmont,,,ME,"Penobscot County",America/New_York,207,NA,US,44.68,-69.16,1080 +04933,"PO BOX",0,"East Newport",,,ME,"Penobscot County",America/New_York,207,NA,US,44.82,-69.23,118 +04935,"PO BOX",0,"East Vassalboro","E Vassalboro",,ME,"Kennebec County",America/New_York,207,NA,US,44.44,-69.6,136 +04936,STANDARD,0,Eustis,"Chain Of Pnds, Chain Of Ponds Twp, Coburn Gore, Jim Pond Twp",,ME,"Franklin County",America/New_York,207,NA,US,45.21,-70.47,220 +04937,STANDARD,0,Fairfield,,,ME,"Somerset County",America/New_York,207,NA,US,44.59,-69.6,5370 +04938,STANDARD,0,Farmington,"Chesterville, Industry",,ME,"Franklin County",America/New_York,207,NA,US,44.66,-70.14,6500 +04939,STANDARD,0,Garland,,,ME,"Penobscot County",America/New_York,207,NA,US,45.03,-69.16,860 +04940,STANDARD,0,"Farmington Falls","Farmingtn Fls",,ME,"Franklin County",America/New_York,207,NA,US,44.62,-70.08,284 +04941,STANDARD,0,Freedom,Montville,,ME,"Waldo County",America/New_York,207,NA,US,44.47,-69.29,1450 +04942,STANDARD,0,Harmony,"Kingsbury Plt, Mayfield Twp, Wellington",,ME,"Somerset County",America/New_York,207,NA,US,44.97,-69.54,840 +04943,STANDARD,0,Hartland,,,ME,"Somerset County",America/New_York,207,NA,US,44.88,-69.45,1470 +04944,"PO BOX",0,Hinckley,,,ME,"Somerset County",America/New_York,207,NA,US,44.69,-69.65,131 +04945,STANDARD,0,Jackman,"Dennistown, Jhnsn Mtn Twp, Johnson Mountain Twp, Long Pond Twp, Moose River, Parlin Pd Twp, Parlin Pond Twp, Sandy Bay Twp",,ME,"Somerset County",America/New_York,207,NA,US,45.62,-70.25,1040 +04947,STANDARD,0,Kingfield,"Carabaset Vly, Carrabassett Valley",,ME,"Franklin County",America/New_York,207,NA,US,44.95,-70.15,1530 +04949,STANDARD,0,Liberty,,,ME,"Waldo County",America/New_York,207,NA,US,44.38,-69.3,920 +04950,STANDARD,0,Madison,,,ME,"Somerset County",America/New_York,207,NA,US,44.79,-69.88,3610 +04951,STANDARD,0,Monroe,,,ME,"Waldo County",America/New_York,207,NA,US,44.61,-69.01,800 +04952,STANDARD,0,Morrill,Belmont,,ME,"Waldo County",America/New_York,207,NA,US,44.44,-69.14,1760 +04953,STANDARD,0,Newport,,,ME,"Penobscot County",America/New_York,207,NA,US,44.83,-69.26,2640 +04954,"PO BOX",0,"New Portland","N New Portlnd, North New Portland",,ME,"Somerset County",America/New_York,207,NA,US,44.88,-70.09,147 +04955,STANDARD,0,"New Sharon",,,ME,"Franklin County",America/New_York,207,NA,US,44.63,-70.01,1320 +04956,STANDARD,0,"New Vineyard",,,ME,"Franklin County",America/New_York,207,NA,US,44.8,-70.12,640 +04957,STANDARD,0,Norridgewock,Mercer,,ME,"Somerset County",America/New_York,207,NA,US,44.71,-69.79,3340 +04958,STANDARD,0,"North Anson",Embden,,ME,"Somerset County",America/New_York,207,NA,US,44.95,-69.94,1460 +04961,STANDARD,0,"New Portland","Carrying Place Town Twp, Caryng Pl Twp, Dead River Twp, Dead Rvr Twp, Highland Plt, Lexington Twp, N New Portland, N New Portlnd, North New Portland, Pierce Pond, Pierce Pond Twp",,ME,"Somerset County",America/New_York,207,NA,US,45.01,-70.08,760 +04962,"PO BOX",0,"North Vassalboro","N Vassalboro",,ME,"Kennebec County",America/New_York,207,NA,US,44.49,-69.63,392 +04963,STANDARD,0,Oakland,Rome,,ME,"Kennebec County",America/New_York,207,NA,US,44.55,-69.71,6390 +04964,"PO BOX",0,Oquossoc,"Adamstown Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.96,-70.77,268 +04965,STANDARD,0,Palmyra,,,ME,"Somerset County",America/New_York,207,NA,US,44.84,-69.35,1620 +04966,STANDARD,0,Phillips,"Avon, Madrid Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.82,-70.34,1250 +04967,STANDARD,0,Pittsfield,,,ME,"Somerset County",America/New_York,207,NA,US,44.77,-69.38,3340 +04969,STANDARD,0,Plymouth,,,ME,"Penobscot County",America/New_York,207,NA,US,44.76,-69.21,1140 +04970,STANDARD,0,Rangeley,"Coplin Plt, Dallas Plt, Lang Twp, Sandy River Plt, Sandy Rvr Plt",,ME,"Franklin County",America/New_York,207,NA,US,44.96,-70.64,1410 +04971,STANDARD,0,"Saint Albans",,,ME,"Somerset County",America/New_York,207,NA,US,44.91,-69.41,1650 +04972,"PO BOX",0,"Sandy Point",,,ME,"Waldo County",America/New_York,207,NA,US,44.52,-68.84,57 +04973,STANDARD,0,Searsmont,,,ME,"Waldo County",America/New_York,207,NA,US,44.36,-69.19,1230 +04974,STANDARD,0,Searsport,,,ME,"Waldo County",America/New_York,207,NA,US,44.46,-68.91,2340 +04975,"PO BOX",0,Shawmut,,,ME,"Somerset County",America/New_York,207,NA,US,44.63,-69.59,280 +04976,STANDARD,0,Skowhegan,Cornville,,ME,"Somerset County",America/New_York,207,NA,US,44.77,-69.71,7870 +04978,STANDARD,0,Smithfield,,,ME,"Somerset County",America/New_York,207,NA,US,44.63,-69.8,890 +04979,STANDARD,0,Solon,,,ME,"Somerset County",America/New_York,207,NA,US,44.94,-69.85,840 +04981,STANDARD,0,"Stockton Springs","Prospect, Stockton Spgs",,ME,"Waldo County",America/New_York,207,NA,US,44.48,-68.85,1890 +04982,STANDARD,0,Stratton,,,ME,"Franklin County",America/New_York,207,NA,US,45.14,-70.44,540 +04983,STANDARD,0,Strong,"Freeman Twp, Salem Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.8,-70.22,1400 +04984,STANDARD,0,Temple,,,ME,"Franklin County",America/New_York,207,NA,US,44.68,-70.22,420 +04985,STANDARD,0,"West Forks","E Moxie Twp, East Moxie Twp, Indian Stream, Indian Stream Twp, Moxie Gore, Moxie Gore Twp, The Forks Plt",,ME,"Somerset County",America/New_York,207,NA,US,45.37,-69.93,116 +04986,STANDARD,0,Thorndike,Knox,,ME,"Waldo County",America/New_York,207,NA,US,44.57,-69.27,1330 +04987,STANDARD,0,Troy,,,ME,"Waldo County",America/New_York,207,NA,US,44.66,-69.24,860 +04988,STANDARD,0,Unity,,,ME,"Waldo County",America/New_York,207,NA,US,44.61,-69.33,1490 +04989,STANDARD,0,Vassalboro,,,ME,"Kennebec County",America/New_York,207,NA,US,44.45,-69.67,3790 +04992,"PO BOX",0,"West Farmington","W Farmington",,ME,"Franklin County",America/New_York,207,NA,US,44.66,-70.16,603 +05001,STANDARD,0,"White River Junction","White Riv Jct","Lyman, Russtown",VT,"Windsor County",America/New_York,802,NA,US,43.65,-72.32,6530 +05009,UNIQUE,0,"White River Junction","White Riv Jct","Veterans Administration",VT,"Windsor County",America/New_York,802,NA,US,43.65,-72.32,0 +05030,"PO BOX",0,Ascutney,,,VT,"Windsor County",America/New_York,802,NA,US,43.41,-72.42,792 +05031,"PO BOX",0,Barnard,,,VT,"Windsor County",America/New_York,802,NA,US,43.7,-72.59,418 +05032,STANDARD,0,Bethel,,"East Bethel, Lillieville, Olympus",VT,"Windsor County",America/New_York,802,NA,US,43.83,-72.63,2180 +05033,STANDARD,0,Bradford,,"Lower Plain, South Corinth",VT,"Orange County",America/New_York,802,NA,US,43.99,-72.12,2690 +05034,STANDARD,0,Bridgewater,,"Brgwtr, W Bridgewater, West Bridgewater",VT,"Windsor County",America/New_York,802,NA,US,43.58,-72.63,280 +05035,STANDARD,0,"Bridgewater Corners","Brdgewtr Cors, Bridgewtr Cor","Brgwtr Cors, Bridgewater Center, Bridgewater Corn, Bridgewtr Ct, W Bridgewater, West Bridgewater",VT,"Windsor County",America/New_York,802,NA,US,43.6,-72.68,510 +05036,STANDARD,0,Brookfield,,"Brookfield Center",VT,"Orange County",America/New_York,802,NA,US,44.05,-72.6,850 +05037,STANDARD,0,Brownsville,,,VT,"Windsor County",America/New_York,802,NA,US,43.45,-72.49,770 +05038,STANDARD,0,Chelsea,,,VT,"Orange County",America/New_York,802,NA,US,43.98,-72.47,1160 +05039,STANDARD,0,Corinth,,"Cookville, Corinth Center, Corinth Corners, Goose Green, West Corinth",VT,"Orange County",America/New_York,802,NA,US,44.02,-72.23,790 +05040,STANDARD,0,"East Corinth",,,VT,"Orange County",America/New_York,802,NA,US,44.09,-72.22,520 +05041,STANDARD,0,"East Randolph",,"East Brookfield, North Randolph",VT,"Orange County",America/New_York,802,NA,US,43.93,-72.55,240 +05042,STANDARD,0,"East Ryegate",Ryegate,"Mosquitoville, Ryegate Corner",VT,"Caledonia County",America/New_York,802,NA,US,44.19,-72.07,500 +05043,STANDARD,0,"East Thetford",,"E Thetford",VT,"Orange County",America/New_York,802,NA,US,43.81,-72.19,800 +05045,STANDARD,0,Fairlee,,"Ely, Lake Morey",VT,"Orange County",America/New_York,802,NA,US,43.91,-72.19,1310 +05046,STANDARD,0,Groton,,,VT,"Caledonia County",America/New_York,802,NA,US,44.22,-72.2,1080 +05047,"PO BOX",0,Hartford,,,VT,"Windsor County",America/New_York,802,NA,US,43.65,-72.32,778 +05048,STANDARD,0,Hartland,,,VT,"Windsor County",America/New_York,802,NA,US,43.55,-72.4,2280 +05049,"PO BOX",0,"Hartland Four Corners","Hartland Cors",,VT,"Windsor County",America/New_York,802,NA,US,43.54,-72.42,168 +05050,"PO BOX",0,"Mc Indoe Falls","Mc Indoe Fls, Mcindoe Falls",,VT,"Caledonia County",America/New_York,802,NA,US,44.26,-72.06,163 +05051,STANDARD,0,Newbury,,"South Newbury",VT,"Orange County",America/New_York,802,NA,US,44.08,-72.06,900 +05052,STANDARD,0,"North Hartland","N Hartland",,VT,"Windsor County",America/New_York,802,NA,US,43.59,-72.35,320 +05053,STANDARD,0,"North Pomfret",Pomfret,,VT,"Windsor County",America/New_York,802,NA,US,43.72,-72.49,290 +05054,"PO BOX",0,"North Thetford","N Thetford",,VT,"Orange County",America/New_York,802,NA,US,43.85,-72.26,145 +05055,STANDARD,0,Norwich,,,VT,"Windsor County",America/New_York,802,NA,US,43.72,-72.3,3410 +05056,STANDARD,0,Plymouth,,"Plymouth Kingdom, Plymouth Union",VT,"Windsor County",America/New_York,802,NA,US,43.53,-72.73,310 +05058,STANDARD,0,"Post Mills",,,VT,"Orange County",America/New_York,802,NA,US,43.89,-72.26,350 +05059,"PO BOX",0,Quechee,,,VT,"Windsor County",America/New_York,802,NA,US,43.64,-72.43,1420 +05060,STANDARD,0,Randolph,"Braintree, W Brookfield, West Brookfield","East Roxbury",VT,"Orange County",America/New_York,802,NA,US,43.92,-72.67,4130 +05061,STANDARD,0,"Randolph Center","Randolph Ctr",,VT,"Orange County",America/New_York,802,NA,US,43.93,-72.58,1220 +05062,STANDARD,0,Reading,,"Felchville, Hammondsville, Reading Center",VT,"Windsor County",America/New_York,802,NA,US,43.47,-72.55,630 +05065,STANDARD,0,Sharon,,,VT,"Windsor County",America/New_York,802,NA,US,43.78,-72.45,1080 +05067,STANDARD,0,"South Pomfret",Pomfret,,VT,"Windsor County",America/New_York,802,NA,US,43.68,-72.51,260 +05068,STANDARD,0,"South Royalton","Pomfret, S Royalton","East Barnard, Royalton",VT,"Windsor County",America/New_York,802,NA,US,43.82,-72.52,2610 +05069,STANDARD,0,"South Ryegate",,"Newbury Center, Swamp Rd",VT,"Caledonia County",America/New_York,,NA,US,44.2,-72.13,600 +05070,STANDARD,0,"South Strafford","S Strafford","So Strafford",VT,"Orange County",America/New_York,802,NA,US,43.83,-72.37,540 +05071,STANDARD,0,"South Woodstock","S Woodstock",,VT,"Windsor County",America/New_York,802,NA,US,43.56,-72.55,300 +05072,STANDARD,0,Strafford,,,VT,"Orange County",America/New_York,802,NA,US,43.87,-72.38,400 +05073,STANDARD,0,Taftsville,,,VT,"Windsor County",America/New_York,802,NA,US,43.62,-72.46,131 +05074,"PO BOX",0,Thetford,,"Thetford Hill",VT,"Orange County",America/New_York,802,NA,US,43.82,-72.23,234 +05075,STANDARD,0,"Thetford Center","Thetford Ctr","Rices Mills, Thet Ctr",VT,"Orange County",America/New_York,802,NA,US,43.82,-72.27,1200 +05076,STANDARD,0,Topsham,"East Corinth","Topsham Four Corners",VT,"Orange County",America/New_York,802,NA,US,44.14,-72.23,460 +05077,STANDARD,0,Tunbridge,,"North Tunbridge",VT,"Orange County",America/New_York,802,NA,US,43.88,-72.5,1010 +05079,STANDARD,0,Vershire,,,VT,"Orange County",America/New_York,802,NA,US,43.97,-72.32,580 +05081,STANDARD,0,"Wells River",,,VT,"Orange County",America/New_York,802,NA,US,44.15,-72.06,710 +05083,STANDARD,0,"West Fairlee",,"W Fairlee",VT,"Orange County",America/New_York,802,NA,US,43.92,-72.27,240 +05084,STANDARD,0,"West Hartford",Pomfret,,VT,"Windsor County",America/New_York,802,NA,US,43.73,-72.45,240 +05085,"PO BOX",0,"West Newbury",,,VT,"Orange County",America/New_York,802,NA,US,44.06,-72.12,186 +05086,STANDARD,0,"West Topsham","East Orange","Waits River",VT,"Orange County",America/New_York,802,NA,US,44.11,-72.3,700 +05088,"PO BOX",0,Wilder,,,VT,"Windsor County",America/New_York,802,NA,US,43.67,-72.31,1399 +05089,STANDARD,0,Windsor,"West Windsor","Fieldsville, Jenneville, Sheddsville",VT,"Windsor County",America/New_York,802,NA,US,43.48,-72.42,3710 +05091,STANDARD,0,Woodstock,,"W Woodstock, West Woodstock, Wood Stock",VT,"Windsor County",America/New_York,802,NA,US,43.62,-72.51,2980 +05101,STANDARD,0,"Bellows Falls",,"Gageville, North Westminster, Rockingham",VT,"Windham County",America/New_York,802,NA,US,43.13,-72.45,3370 +05141,STANDARD,0,Cambridgeport,,,VT,"Windham County",America/New_York,802,NA,US,43.15,-72.56,154 +05142,STANDARD,0,Cavendish,,,VT,"Windsor County",America/New_York,802,NA,US,43.38,-72.62,630 +05143,STANDARD,0,Chester,"Andover, Athens, Baltimore","Bartonsville, Brockways Mills, Middletown, North Windham, Peaseville, Reedville, Simonsville",VT,"Windsor County",America/New_York,802,NA,US,43.26,-72.59,3980 +05144,"PO BOX",1,"Chester Depot",Chester,"Gassetts, Spoonerville",VT,"Windsor County",America/New_York,802,NA,US,43.28,-72.63,0 +05146,STANDARD,0,Grafton,,,VT,"Windham County",America/New_York,802,NA,US,43.16,-72.61,520 +05148,STANDARD,0,Londonderry,Landgrove,"Bromley Mtn",VT,"Windham County",America/New_York,802,NA,US,43.23,-72.79,1210 +05149,STANDARD,0,Ludlow,,"Grahamville, Lake Rescue, Smithville, Tyson",VT,"Windsor County",America/New_York,802,NA,US,43.39,-72.69,1860 +05150,STANDARD,0,"North Springfield","N Springfield","N Springfld",VT,"Windsor County",America/New_York,802,NA,US,43.33,-72.53,860 +05151,STANDARD,0,Perkinsville,,"Greenbush, Weathersfield, Weathersfield Center",VT,"Windsor County",America/New_York,802,NA,US,43.36,-72.51,1100 +05152,STANDARD,0,Peru,,,VT,"Bennington County",America/New_York,802,NA,US,43.23,-72.89,360 +05153,STANDARD,0,Proctorsville,"South Reading",,VT,"Windsor County",America/New_York,802,NA,US,43.42,-72.64,690 +05154,STANDARD,0,"Saxtons River",,,VT,"Windham County",America/New_York,802,NA,US,43.14,-72.55,730 +05155,STANDARD,0,"South Londonderry","S Londonderry, Stratton Mnt, Stratton Mountain, Stratton Mtn",Rawsonville,VT,"Windham County",America/New_York,802,NA,US,43.09,-72.92,880 +05156,STANDARD,0,Springfield,,"Maple Dell, Orchard Lane, Pedden Acres, Weathersfield",VT,"Windsor County",America/New_York,802,NA,US,43.28,-72.47,7410 +05158,STANDARD,0,Westminster,,"West Minster",VT,"Windham County",America/New_York,802,NA,US,43.07,-72.45,1550 +05159,"PO BOX",0,"Westminster Station","Westmnstr Sta",Grout,VT,"Windham County",America/New_York,802,NA,US,43.04,-72.48,272 +05161,STANDARD,0,Weston,,"Weston Priory",VT,"Windsor County",America/New_York,802,NA,US,43.28,-72.8,560 +05201,STANDARD,0,Bennington,Woodford,"Bennington College, Old Bennington",VT,"Bennington County",America/New_York,802,NA,US,42.87,-73.18,12350 +05250,STANDARD,0,Arlington,"Sandgate, Sunderland, West Arlingtn, West Arlington","Arlington Center, Chiselville",VT,"Bennington County",America/New_York,802,NA,US,43.06,-73.15,3050 +05251,STANDARD,0,Dorset,,"S Dorset, So Dorset, South Dorset",VT,"Bennington County",America/New_York,802,NA,US,43.25,-73.09,1220 +05252,STANDARD,0,"East Arlington","E Arlington","Chiselville, Kansas, Sunderland",VT,"Bennington County",America/New_York,802,NA,US,43.06,-73.13,350 +05253,STANDARD,0,"East Dorset",,"E Dorset, Lake Emerald",VT,"Bennington County",America/New_York,802,NA,US,43.24,-72.99,540 +05254,"PO BOX",0,Manchester,,"Bromley Mountain, Manchester Village",VT,"Bennington County",America/New_York,802,NA,US,43.16,-73.07,926 +05255,STANDARD,0,"Manchester Center","Manchestr Ctr","Barnumville, Manchster Ctr",VT,"Bennington County",America/New_York,802,NA,US,43.17,-73.04,3660 +05257,STANDARD,0,"North Bennington","N Bennington","Barnumsville, No Bennington, Paper Mill Village, Sodom, Wolumsak",VT,"Bennington County",America/New_York,802,NA,US,42.92,-73.24,2170 +05260,STANDARD,0,"North Pownal",,"N Pownal, No Pownal",VT,"Bennington County",America/New_York,802,NA,US,42.81,-73.27,320 +05261,STANDARD,0,Pownal,,"Pownal Center, South Pownal",VT,"Bennington County",America/New_York,802,NA,US,42.76,-73.23,2100 +05262,STANDARD,0,Shaftsbury,,"North Shaftsbury, Shaftsbury Center, So Shaftsbury, South Shaftsbury",VT,"Bennington County",America/New_York,802,NA,US,42.98,-73.2,2180 +05301,STANDARD,0,Brattleboro,"Dummerston, Guilford, W Brattleboro, West Brattleboro","Brattleboro Center, Gilford, Green River, Guilford Center, Halifax, Harrisville",VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,12380 +05302,"PO BOX",0,Brattleboro,,,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,797 +05303,"PO BOX",0,Brattleboro,,,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,487 +05304,"PO BOX",0,Brattleboro,,,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,141 +05340,STANDARD,0,Bondville,Winhall,,VT,"Bennington County",America/New_York,802,NA,US,43.16,-72.93,730 +05341,STANDARD,0,"East Dover",Dover,,VT,"Windham County",America/New_York,802,NA,US,42.96,-72.78,400 +05342,STANDARD,0,Jacksonville,,,VT,"Windham County",America/New_York,802,NA,US,42.79,-72.82,580 +05343,STANDARD,0,Jamaica,,"East Jamaica, Pikes Falls",VT,"Windham County",America/New_York,802,NA,US,43.1,-72.8,650 +05344,"PO BOX",0,Marlboro,,"Marlboro College",VT,"Windham County",America/New_York,802,NA,US,42.86,-72.72,449 +05345,STANDARD,0,Newfane,Brookline,,VT,"Windham County",America/New_York,802,NA,US,42.98,-72.65,1470 +05346,STANDARD,0,Putney,"E Dummerston, East Dummerston, Westminster W, Westminster West","East Putney",VT,"Windham County",America/New_York,802,NA,US,42.97,-72.52,3830 +05350,STANDARD,0,Readsboro,,Heartwellville,VT,"Bennington County",America/New_York,802,NA,US,42.77,-72.94,620 +05351,STANDARD,0,"South Newfane",,,VT,"Windham County",America/New_York,802,NA,US,42.94,-72.7,341 +05352,STANDARD,0,Stamford,Readsboro,,VT,"Bennington County",America/New_York,802,NA,US,42.81,-73.08,730 +05353,STANDARD,0,Townshend,,"Harmonyville, Mary Meyer, Simpsonville",VT,"Windham County",America/New_York,802,NA,US,43.04,-72.66,940 +05354,STANDARD,0,Vernon,,,VT,"Windham County",America/New_York,802,NA,US,42.78,-72.52,1980 +05355,STANDARD,0,Wardsboro,,"South Wardsboro, Wardsborough",VT,"Windham County",America/New_York,802,NA,US,43.02,-72.8,370 +05356,STANDARD,0,"West Dover","Mount Snow","Dover, Mt Snow, W Dover",VT,"Windham County",America/New_York,802,NA,US,42.96,-72.91,1070 +05357,"PO BOX",0,"West Dummerston","W Dummerston",,VT,"Windham County",America/New_York,802,NA,US,42.92,-72.61,163 +05358,STANDARD,0,"West Halifax",,Halifax,VT,"Windham County",America/New_York,802,NA,US,42.76,-72.72,350 +05359,STANDARD,0,"West Townshend","W Townshend, Windham","South Windham",VT,"Windham County",America/New_York,802,NA,US,43.13,-72.71,490 +05360,STANDARD,0,"West Wardsboro","Stratton, W Wardsboro",,VT,"Windham County",America/New_York,802,NA,US,43,-72.95,370 +05361,STANDARD,0,Whitingham,,,VT,"Windham County",America/New_York,802,NA,US,42.78,-72.87,660 +05362,STANDARD,0,Williamsville,,,VT,"Windham County",America/New_York,802,NA,US,42.94,-72.65,260 +05363,STANDARD,0,Wilmington,"Searsburg, West Marlboro",Medburyville,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.87,1930 +05401,STANDARD,0,Burlington,,"Btv, Burl, Burlingtn, Burlngtn",VT,"Chittenden County",America/New_York,802,NA,US,44.48,-73.22,18260 +05402,"PO BOX",0,Burlington,,,VT,"Chittenden County",America/New_York,802,NA,US,44.48,-73.22,854 +05403,STANDARD,0,"South Burlington","S Burlington","Queen City, Queen City Park, S Btv, S Burl, So Burlington",VT,"Chittenden County",America/New_York,802,NA,US,44.44,-73.21,17920 +05404,STANDARD,0,Winooski,,,VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.18,6220 +05405,UNIQUE,0,Burlington,,"Univ Of Vermont, Uvm",VT,"Chittenden County",America/New_York,802,NA,US,44.47,-73.2,127 +05406,"PO BOX",0,Burlington,,,VT,"Chittenden County",America/New_York,802,NA,US,44.48,-73.22,334 +05407,"PO BOX",0,"South Burlington","S Burlington","So Burlington",VT,"Chittenden County",America/New_York,802,NA,US,44.44,-73.21,388 +05408,STANDARD,0,Burlington,,"Burl, Burlngtn, N Burlington, North Burlington",VT,"Chittenden County",America/New_York,802,NA,US,44.51,-73.25,9390 +05439,UNIQUE,0,Colchester,,"St Michaels College",VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.16,16 +05440,STANDARD,0,Alburgh,Alburg,,VT,"Grand Isle County",America/New_York,802,NA,US,44.97,-73.3,1810 +05441,STANDARD,0,Bakersfield,,,VT,"Franklin County",America/New_York,802,NA,US,44.78,-72.8,600 +05442,STANDARD,0,"Belvidere Center","Belvidere Ctr","Belvidere, Belvidere Corners",VT,"Lamoille County",America/New_York,802,NA,US,44.75,-72.68,300 +05443,STANDARD,0,Bristol,Lincoln,"Downingville, Jerusalem, Rocky Dale, South Lincoln, West Lincoln",VT,"Addison County",America/New_York,802,NA,US,44.13,-73.08,5780 +05444,STANDARD,0,Cambridge,,"Binghamville, Cambridgeboro, Cloverdale, Fletcher, Pleasant Valley",VT,"Franklin County",America/New_York,,NA,US,44.63,-72.88,1820 +05445,STANDARD,0,Charlotte,,"Cedar Beach",VT,"Chittenden County",America/New_York,802,NA,US,44.3,-73.25,3730 +05446,STANDARD,0,Colchester,,"Camp Johnson, Smc, St Michaels College",VT,"Chittenden County",America/New_York,802,NA,US,44.53,-73.15,15040 +05447,STANDARD,0,"East Berkshire","E Berkshire",Berkshire,VT,"Franklin County",America/New_York,802,NA,US,44.93,-72.7,180 +05448,STANDARD,0,"East Fairfield","E Fairfield",,VT,"Franklin County",America/New_York,802,NA,US,44.8,-72.91,1100 +05449,"PO BOX",0,Colchester,,,VT,"Chittenden County",America/New_York,802,NA,US,44.53,-73.15,0 +05450,STANDARD,0,"Enosburg Falls","Enosburg Fls","Berkshire Center, Bordoville, East Enosburg, East Sheldon, Enosburg, Enosburg Center, Herrick, Hill West, S Franklin, Samsonville, So Franklin, West Berkshire, West Enosburg, Woodpecker Village",VT,"Franklin County",America/New_York,802,NA,US,44.9,-72.8,4520 +05451,"PO BOX",0,Essex,,"Essex Center",VT,"Chittenden County",America/New_York,802,NA,US,44.52,-73.05,475 +05452,STANDARD,0,"Essex Junction","Essex Jct","Brookside, Essex, Essex Ctr, Pinewood",VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.11,20510 +05453,"PO BOX",0,"Essex Junction","Essex Jct",,VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.11,509 +05454,STANDARD,0,Fairfax,,Georgia,VT,"Franklin County",America/New_York,802,NA,US,44.67,-73.02,4990 +05455,STANDARD,0,Fairfield,Sheldon,,VT,"Franklin County",America/New_York,802,NA,US,44.8,-72.95,1190 +05456,STANDARD,0,Ferrisburgh,,Ferrisburg,VT,"Addison County",America/New_York,802,NA,US,44.2,-73.25,1110 +05457,STANDARD,0,Franklin,,"E Franklin, East Franklin, Lake Carmi, Morses Line, Shawville",VT,"Franklin County",America/New_York,802,NA,US,44.98,-72.92,1410 +05458,STANDARD,0,"Grand Isle",,"Adams Landing, Pearl, Point Farm",VT,"Grand Isle County",America/New_York,802,NA,US,44.72,-73.3,1980 +05459,STANDARD,0,"Highgate Center","Highgate Ctr","Beaulieus Corner, East Highgate, Highgate, Highgate Falls, Rixford",VT,"Franklin County",America/New_York,802,NA,US,44.95,-72.99,1650 +05460,"PO BOX",0,"Highgate Springs","Highgate Sprg","Highgate Spgs",VT,"Franklin County",America/New_York,802,NA,US,44.97,-73.1,132 +05461,STANDARD,0,Hinesburg,,"Lake Iroquois, Mechanicsburg",VT,"Chittenden County",America/New_York,802,NA,US,44.33,-73.12,4700 +05462,STANDARD,0,Huntington,,"Huntingtn Ctr, Huntington Center, Huntington Lower Village",VT,"Chittenden County",America/New_York,802,NA,US,44.33,-72.98,1910 +05463,STANDARD,0,"Isle La Motte",,,VT,"Grand Isle County",America/New_York,802,NA,US,44.87,-73.33,480 +05464,STANDARD,0,Jeffersonville,Jeffersonvlle,Madonna,VT,"Lamoille County",America/New_York,802,NA,US,44.64,-72.82,2700 +05465,STANDARD,0,Jericho,"Jericho Center, Jericho Ctr","West Bolton",VT,"Chittenden County",America/New_York,802,NA,US,44.5,-72.98,5600 +05466,"PO BOX",0,Jonesville,,,VT,"Chittenden County",America/New_York,802,NA,US,44.39,-72.99,178 +05468,STANDARD,0,Milton,,"Georgia, West Milton",VT,"Chittenden County",America/New_York,802,NA,US,44.63,-73.11,13060 +05469,"PO BOX",0,Monkton,,,VT,"Addison County",America/New_York,802,NA,US,44.23,-73.15,230 +05470,"PO BOX",0,Montgomery,,,VT,"Franklin County",America/New_York,802,NA,US,44.9,-72.63,285 +05471,STANDARD,0,"Montgomery Center","Montgomry Ctr","Alpine Haven, Hectorville, Hutchins",VT,"Franklin County",America/New_York,,NA,US,44.86,-72.59,720 +05472,STANDARD,0,"New Haven",,"Barnumtown, Brookville, New Haven Jct, New Haven Junction, New Haven Mills",VT,"Addison County",America/New_York,802,NA,US,44.12,-73.15,1740 +05473,STANDARD,0,"North Ferrisburgh","N Ferrisburgh","Kimballs, Long Point, Monkton Ridge, Mount Philo, Mt Philo, No Ferrisburgh, The Hollow",VT,"Addison County",America/New_York,802,NA,US,44.24,-73.19,1300 +05474,STANDARD,0,"North Hero",,"Abnaki, Birdland, Knights Point, Lagrange, No Hero",VT,"Grand Isle County",America/New_York,802,NA,US,44.82,-73.28,940 +05476,STANDARD,0,Richford,,,VT,"Franklin County",America/New_York,802,NA,US,44.99,-72.67,2470 +05477,STANDARD,0,Richmond,"Bolton Valley",,VT,"Chittenden County",America/New_York,802,NA,US,44.4,-73,4340 +05478,STANDARD,0,"Saint Albans",,"Georgia, St Albans",VT,"Franklin County",America/New_York,802,NA,US,44.81,-73.08,13930 +05479,UNIQUE,0,"Essex Junction","Essex Jct","Eastern Reg Serv Ctr, Us Citizenship & Immigration",VT,"Franklin County",America/New_York,802,NA,US,44.81,-73.08,0 +05481,"PO BOX",0,"Saint Albans Bay","St Albans Bay",,VT,"Franklin County",America/New_York,802,NA,US,44.77,-73.21,532 +05482,STANDARD,0,Shelburne,,,VT,"Chittenden County",America/New_York,802,NA,US,44.38,-73.23,7390 +05483,STANDARD,0,Sheldon,,"Crow Hill, Fairfield Pond, Fairground, Fairgrounds, Saint Rocks, Sheldon Creek, Sheldon Junction, St Rocks, Sweek Hollow",VT,"Franklin County",America/New_York,802,NA,US,44.88,-72.95,1400 +05485,"PO BOX",0,"Sheldon Springs","Sheldon Spgs",,VT,"Franklin County",America/New_York,802,NA,US,44.9,-72.97,302 +05486,STANDARD,0,"South Hero",,"Keeler Bay, Keelers Bay, S Hero, So Hero",VT,"Grand Isle County",America/New_York,802,NA,US,44.64,-73.31,1670 +05487,STANDARD,0,Starksboro,,"Buels Gore, South Starksboro",VT,"Addison County",America/New_York,802,NA,US,44.22,-72.99,1370 +05488,STANDARD,0,Swanton,,"Fonda, Fonda Jct, Green Corner, Hog Island, Lakewood, Maquam, Popsquash, W Swanton, West Swanton",VT,"Franklin County",America/New_York,802,NA,US,44.92,-73.12,6940 +05489,STANDARD,0,Underhill,,"Underhill Flats",VT,"Chittenden County",America/New_York,802,NA,US,44.57,-72.9,3150 +05490,"PO BOX",0,"Underhill Center","Underhill Ctr",,VT,"Chittenden County",America/New_York,802,NA,US,44.52,-72.89,407 +05491,STANDARD,0,Vergennes,"Addison, Panton","Arnold Bay, Basin Harbor, Button Bay, Chimney Point, Crown Point, Mile Point, Owls Head Harbor, Potash Bay, Potash Point, Summer Point, Waltham, West Addison, West Ferrisburgh",VT,"Addison County",America/New_York,802,NA,US,44.16,-73.25,5550 +05492,STANDARD,0,Waterville,,"Belvidere Center, Belvidere Junction",VT,"Lamoille County",America/New_York,802,NA,US,44.71,-72.75,720 +05494,STANDARD,0,Westford,,Brookside,VT,"Chittenden County",America/New_York,802,NA,US,44.62,-73.02,1660 +05495,STANDARD,0,Williston,"Saint George, St George",,VT,"Chittenden County",America/New_York,802,NA,US,44.43,-73.07,10760 +05501,UNIQUE,0,Andover,,"Internal Revenue Service",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,510 +05544,UNIQUE,1,Andover,,"Irs Service Center",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,0 +05601,"PO BOX",0,Montpelier,,,VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,801 +05602,STANDARD,0,Montpelier,"Berlin, Middlesex, Middlesex Center, Middlesex Ctr","East Montpelier Center, Gould Hill, Jones Brook, Montpelier Jct, Montpelier Junction",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,10720 +05603,UNIQUE,0,Montpelier,,"Dept Motor Vehicles",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05604,UNIQUE,0,Montpelier,,"National Life Ins",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,16 +05609,UNIQUE,0,Montpelier,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05620,UNIQUE,0,Montpelier,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05633,UNIQUE,0,Montpelier,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05640,STANDARD,0,Adamant,,"Bliss Pond",VT,"Washington County",America/New_York,802,NA,US,44.35,-72.5,168 +05641,STANDARD,0,Barre,Orange,"Barre Jct, Barre Junction, Berlin, Boutswells, East Hill, Lower Websterville, Trow Hill",VT,"Washington County",America/New_York,802,NA,US,44.2,-72.5,13880 +05647,STANDARD,0,Cabot,,"East Cabot",VT,"Washington County",America/New_York,802,NA,US,44.4,-72.31,950 +05648,STANDARD,0,Calais,,,VT,"Washington County",America/New_York,802,NA,US,44.38,-72.49,460 +05649,STANDARD,0,"East Barre",,,VT,"Orange County",America/New_York,802,NA,US,44.17,-72.35,940 +05650,STANDARD,0,"East Calais",,"North Calais, South Woodbury",VT,"Washington County",America/New_York,802,NA,US,44.35,-72.44,890 +05651,STANDARD,0,"East Montpelier","E Montpelier",,VT,"Washington County",America/New_York,802,NA,US,44.28,-72.49,1560 +05652,STANDARD,0,Eden,,,VT,"Lamoille County",America/New_York,802,NA,US,44.7,-72.55,780 +05653,STANDARD,0,"Eden Mills",Eden,,VT,"Lamoille County",America/New_York,802,NA,US,44.69,-72.48,380 +05654,STANDARD,0,Graniteville,,,VT,"Washington County",America/New_York,802,NA,US,44.15,-72.47,1100 +05655,STANDARD,0,"Hyde Park",,,VT,"Lamoille County",America/New_York,802,NA,US,44.59,-72.61,2640 +05656,STANDARD,0,Johnson,,"East Johnson",VT,"Lamoille County",America/New_York,802,NA,US,44.63,-72.67,2660 +05657,"PO BOX",0,"Lake Elmore",,"Lk Elmore",VT,"Lamoille County",America/New_York,802,NA,US,44.54,-72.53,286 +05658,STANDARD,0,Marshfield,,"Lower Cabot",VT,"Washington County",America/New_York,802,NA,US,44.35,-72.35,1370 +05660,STANDARD,0,Moretown,"South Duxbury","N Fayston, No Fayston, North Fayston",VT,"Washington County",America/New_York,802,NA,US,44.25,-72.75,1740 +05661,STANDARD,0,Morrisville,"Elmore, Morristown","Cadys Falls, Cleveland Corner, Garfield, Lake Lamoille, Morrisvl, Morrisvle, Mud City",VT,"Lamoille County",America/New_York,802,NA,US,44.55,-72.59,5160 +05662,"PO BOX",0,Moscow,,,VT,"Lamoille County",America/New_York,802,NA,US,44.44,-72.71,59 +05663,STANDARD,0,Northfield,"Riverton, West Berlin","Norwich University",VT,"Washington County",America/New_York,802,NA,US,44.15,-72.65,3910 +05664,"PO BOX",0,"Northfield Falls","Northfield Fl, Northfld Fls",,VT,"Washington County",America/New_York,802,NA,US,44.17,-72.65,656 +05665,"PO BOX",0,"North Hyde Park","N Hyde Park",,VT,"Lamoille County",America/New_York,802,NA,US,44.66,-72.57,153 +05666,STANDARD,0,"North Montpelier","N Montpelier","No Montpelier",VT,"Washington County",America/New_York,802,NA,US,44.25,-72.48,148 +05667,STANDARD,0,Plainfield,,Pekin,VT,"Washington County",America/New_York,802,NA,US,44.28,-72.43,1950 +05669,STANDARD,0,Roxbury,"W Braintree, West Braintree","E Granville, East Granville, Roxbury Flat",VT,"Washington County",America/New_York,802,NA,US,44.1,-72.73,460 +05670,"PO BOX",0,"South Barre",,,VT,"Washington County",America/New_York,802,NA,US,44.16,-72.5,719 +05671,UNIQUE,0,Waterbury,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.33,-72.75,0 +05672,STANDARD,0,Stowe,,,VT,"Lamoille County",America/New_York,802,NA,US,44.46,-72.68,5030 +05673,STANDARD,0,Waitsfield,,"Fayston, Irasville, Mad River Glen, Waitsfield Common",VT,"Washington County",America/New_York,802,NA,US,44.18,-72.82,2590 +05674,STANDARD,0,Warren,,"East Warren",VT,"Washington County",America/New_York,802,NA,US,44.12,-72.85,1370 +05675,STANDARD,0,Washington,,"Sky Acres, South Washington, Washgtin, Washing, Washingtn",VT,"Orange County",America/New_York,802,NA,US,44.1,-72.43,890 +05676,STANDARD,0,Waterbury,,"Bolton, Colbyville, Duxbury, North Duxbury",VT,"Washington County",America/New_York,802,NA,US,44.33,-72.75,4770 +05677,STANDARD,0,"Waterbury Center","Waterbury Ctr",,VT,"Washington County",America/New_York,802,NA,US,44.38,-72.7,2230 +05678,"PO BOX",0,Websterville,,,VT,"Washington County",America/New_York,802,NA,US,44.16,-72.48,280 +05679,STANDARD,0,Williamstown,,,VT,"Orange County",America/New_York,802,NA,US,44.12,-72.53,2910 +05680,STANDARD,0,Wolcott,,"Branch, East Elmore, North Wolcott, Pottersville",VT,"Lamoille County",America/New_York,802,NA,US,44.55,-72.47,1880 +05681,STANDARD,0,Woodbury,,"Lake Valley",VT,"Washington County",America/New_York,802,NA,US,44.44,-72.4,320 +05682,STANDARD,0,Worcester,"N Middlesex, North Middlesex",,VT,"Washington County",America/New_York,802,NA,US,44.37,-72.55,1170 +05701,STANDARD,0,Rutland,"Mendon, S Chittenden, South Chittenden","Clementwood, East Pittsford, Glen, Heartwell, Mill Village, Rutland Town",VT,"Rutland County",America/New_York,802,NA,US,43.6,-72.97,16690 +05702,"PO BOX",0,Rutland,,,VT,"Rutland County",America/New_York,802,NA,US,43.6,-72.97,945 +05730,STANDARD,0,Belmont,,,VT,"Rutland County",America/New_York,802,NA,US,43.42,-72.81,370 +05731,"PO BOX",0,Benson,,,VT,"Rutland County",America/New_York,802,NA,US,43.72,-73.32,157 +05732,STANDARD,0,Bomoseen,,"Crystal Beach, Neshobe Beach",VT,"Rutland County",America/New_York,802,NA,US,43.63,-73.2,890 +05733,STANDARD,0,Brandon,"Goshen, Leicester, Sudbury",,VT,"Rutland County",America/New_York,802,NA,US,43.8,-73.08,5170 +05734,STANDARD,0,Bridport,,,VT,"Addison County",America/New_York,802,NA,US,43.98,-73.32,1100 +05735,STANDARD,0,Castleton,,"Castleton State College, East Hubbardton, Hubbardton",VT,"Rutland County",America/New_York,802,NA,US,43.62,-73.18,2510 +05736,STANDARD,0,"Center Rutland","Ctr Rutland",,VT,"Rutland County",America/New_York,802,NA,US,43.61,-73.01,450 +05737,STANDARD,0,Chittenden,,,VT,"Rutland County",America/New_York,802,NA,US,43.72,-72.95,630 +05738,STANDARD,0,Cuttingsville,Shrewsbury,"North Shrewsbury, Russellville",VT,"Rutland County",America/New_York,802,NA,US,43.53,-72.86,980 +05739,STANDARD,0,Danby,"Mount Tabor","Chipman Lake, Danby Corners, Scottsville, South End",VT,"Rutland County",America/New_York,802,NA,US,43.35,-73,1140 +05740,"PO BOX",0,"East Middlebury","E Middlebury",,VT,"Addison County",America/New_York,802,NA,US,43.97,-73.11,991 +05741,"PO BOX",0,"East Poultney",Poultney,,VT,"Rutland County",America/New_York,802,NA,US,43.54,-73.13,29 +05742,STANDARD,0,"East Wallingford","E Wallingford",Bowlsville,VT,"Rutland County",America/New_York,802,NA,US,43.43,-72.87,440 +05743,STANDARD,0,"Fair Haven","Benson, West Haven","Benson Landing, Fairhaven, West Castleton",VT,"Rutland County",America/New_York,802,NA,US,43.59,-73.27,3630 +05744,STANDARD,0,Florence,,,VT,"Rutland County",America/New_York,802,NA,US,43.7,-73.08,470 +05745,"PO BOX",0,"Forest Dale",,Forestdale,VT,"Rutland County",America/New_York,802,NA,US,43.82,-73.05,284 +05746,"PO BOX",0,Gaysville,,,VT,"Windsor County",America/New_York,802,NA,US,43.73,-72.74,159 +05747,STANDARD,0,Granville,,"Lower Granville",VT,"Addison County",America/New_York,802,NA,US,43.98,-72.85,200 +05748,STANDARD,0,Hancock,,,VT,"Addison County",America/New_York,802,NA,US,43.93,-72.83,290 +05750,"PO BOX",0,Hydeville,,,VT,"Rutland County",America/New_York,802,NA,US,43.6,-73.21,284 +05751,STANDARD,0,Killington,,,VT,"Rutland County",America/New_York,802,NA,US,43.67,-72.77,1180 +05753,STANDARD,0,Middlebury,"Cornwall, Weybridge","Weybridge Hill",VT,"Addison County",America/New_York,802,NA,US,44,-73.15,7460 +05757,STANDARD,0,"Middletown Springs","Middletwn Spg",,VT,"Rutland County",America/New_York,802,NA,US,43.48,-73.12,840 +05758,STANDARD,0,"Mount Holly",,"Healdville, Hortonville, Lake Hinevah, Summit",VT,"Rutland County",America/New_York,802,NA,US,43.45,-72.76,690 +05759,STANDARD,0,"North Clarendon","N Clarendon",Clarendon,VT,"Rutland County",America/New_York,802,NA,US,43.53,-72.96,1750 +05760,STANDARD,0,Orwell,,"Chipmans Point, Lake Hortonia, North Orwell",VT,"Addison County",America/New_York,802,NA,US,43.8,-73.3,1050 +05761,STANDARD,0,Pawlet,,"Brimstone Corners, East Rupert, N Pawlet, North Pawlet, North Rupert, Spankerton",VT,"Rutland County",America/New_York,802,NA,US,43.35,-73.18,1000 +05762,STANDARD,0,Pittsfield,,,VT,"Rutland County",America/New_York,802,NA,US,43.78,-72.82,430 +05763,STANDARD,0,Pittsford,"N Chittenden, North Chittenden","Fredetteville, Pittsford Mills",VT,"Rutland County",America/New_York,802,NA,US,43.7,-73.03,2480 +05764,STANDARD,0,Poultney,,"Blissville, Lake St Catherine, Rareville, South Poultney",VT,"Rutland County",America/New_York,802,NA,US,43.51,-73.23,2610 +05765,STANDARD,0,Proctor,,"True Blue",VT,"Rutland County",America/New_York,802,NA,US,43.65,-73.03,1580 +05766,STANDARD,0,Ripton,,,VT,"Addison County",America/New_York,802,NA,US,43.98,-73,410 +05767,STANDARD,0,Rochester,,,VT,"Windsor County",America/New_York,802,NA,US,43.88,-72.82,950 +05768,"PO BOX",0,Rupert,,,VT,"Bennington County",America/New_York,802,NA,US,43.26,-73.22,124 +05769,STANDARD,0,Salisbury,,"Lake Dunmore, West Salisbury",VT,"Addison County",America/New_York,802,NA,US,43.9,-73.1,1090 +05770,STANDARD,0,Shoreham,,,VT,"Addison County",America/New_York,802,NA,US,43.9,-73.32,990 +05772,STANDARD,0,Stockbridge,,,VT,"Windsor County",America/New_York,802,NA,US,43.78,-72.77,450 +05773,STANDARD,0,Wallingford,Tinmouth,"S Wallingford, South Wallingford",VT,"Rutland County",America/New_York,802,NA,US,43.48,-72.97,1880 +05774,STANDARD,0,Wells,,,VT,"Rutland County",America/New_York,802,NA,US,43.42,-73.2,1050 +05775,STANDARD,0,"West Pawlet",,,VT,"Rutland County",America/New_York,802,NA,US,43.36,-73.22,530 +05776,STANDARD,0,"West Rupert",,,VT,"Bennington County",America/New_York,802,NA,US,43.26,-73.19,230 +05777,STANDARD,0,"West Rutland","Clarendn Spgs, Clarendon Springs","Chippenhook, Ira",VT,"Rutland County",America/New_York,802,NA,US,43.59,-73.04,3020 +05778,STANDARD,0,Whiting,"West Cornwall",,VT,"Addison County",America/New_York,802,NA,US,43.87,-73.21,640 +05819,STANDARD,0,"Saint Johnsbury","St Johnsbury, Waterford","Johnsbury, West Waterford",VT,"Caledonia County",America/New_York,802,NA,US,44.41,-71.97,7020 +05820,STANDARD,0,Albany,,,VT,"Orleans County",America/New_York,802,NA,US,44.73,-72.38,360 +05821,STANDARD,0,Barnet,,"Barnet Center, Inwood, South Peacham, West Barnet",VT,"Caledonia County",America/New_York,802,NA,US,44.3,-72.05,1010 +05822,STANDARD,0,Barton,,Westmore,VT,"Orleans County",America/New_York,802,NA,US,44.74,-72.17,1740 +05823,"PO BOX",0,"Beebe Plain",,,VT,"Orleans County",America/New_York,802,NA,US,45,-72.14,142 +05824,STANDARD,0,Concord,,"Concord Corner, Kirby, Ralston Corner",VT,"Essex County",America/New_York,802,NA,US,44.43,-71.88,1000 +05825,"PO BOX",0,Coventry,,,VT,"Orleans County",America/New_York,802,NA,US,44.86,-72.25,219 +05826,STANDARD,0,Craftsbury,,"East Craftsbury",VT,"Orleans County",America/New_York,802,NA,US,44.63,-72.37,770 +05827,STANDARD,0,"Craftsbury Common","Craftsbry Cmn, Craftsbury Cm","Mill Village",VT,"Orleans County",America/New_York,802,NA,US,44.68,-72.36,480 +05828,STANDARD,0,Danville,,"Danville Center",VT,"Caledonia County",America/New_York,802,NA,US,44.42,-72.13,1840 +05829,STANDARD,0,Derby,,,VT,"Orleans County",America/New_York,802,NA,US,44.92,-72.12,2190 +05830,STANDARD,0,"Derby Line",,Holland,VT,"Orleans County",America/New_York,802,NA,US,45,-72.1,1300 +05832,STANDARD,0,"East Burke",,"Burke Mountain, E Burke",VT,"Caledonia County",America/New_York,802,NA,US,44.6,-71.92,900 +05833,STANDARD,0,"East Charleston","E Charleston",,VT,"Orleans County",America/New_York,802,NA,US,44.83,-72,190 +05836,STANDARD,0,"East Hardwick",,,VT,"Caledonia County",America/New_York,802,NA,US,44.52,-72.3,950 +05837,STANDARD,0,"East Haven",,,VT,"Essex County",America/New_York,,NA,US,44.66,-71.81,300 +05838,"PO BOX",0,"East Saint Johnsbury","E St Johnsbry",,VT,"Caledonia County",America/New_York,802,NA,US,44.44,-71.95,102 +05839,STANDARD,0,Glover,Barton,,VT,"Orleans County",America/New_York,802,NA,US,44.7,-72.18,690 +05840,"PO BOX",0,Granby,,,VT,"Essex County",America/New_York,,NA,US,44.57,-71.77,85 +05841,STANDARD,0,Greensboro,,Greensborough,VT,"Orleans County",America/New_York,802,NA,US,44.58,-72.28,280 +05842,STANDARD,0,"Greensboro Bend","Greensbro Bnd, Grnsboro Bend",Stannard,VT,"Orleans County",America/New_York,,NA,US,44.54,-72.21,530 +05843,STANDARD,0,Hardwick,,"Mackville, South Walden",VT,"Caledonia County",America/New_York,802,NA,US,44.5,-72.37,2350 +05845,STANDARD,0,Irasburg,,"Albany Center, East Albany",VT,"Orleans County",America/New_York,802,NA,US,44.81,-72.28,1100 +05846,STANDARD,0,"Island Pond",Ferdinand,Brighton,VT,"Essex County",America/New_York,,NA,US,44.81,-71.88,1020 +05847,STANDARD,0,Lowell,,,VT,"Orleans County",America/New_York,802,NA,US,44.8,-72.45,740 +05848,"PO BOX",0,"Lower Waterford","Lwr Waterford",,VT,"Caledonia County",America/New_York,802,NA,US,44.35,-71.92,114 +05849,"PO BOX",0,Lyndon,,"Lyndon Corners",VT,"Caledonia County",America/New_York,802,NA,US,44.5,-71.97,364 +05850,STANDARD,0,"Lyndon Center",,,VT,"Caledonia County",America/New_York,802,NA,US,44.54,-72.01,450 +05851,STANDARD,0,Lyndonville,,"East Lyndon, Red Village, South Wheelock, Wheelock",VT,"Caledonia County",America/New_York,802,NA,US,44.53,-72,4740 +05853,STANDARD,0,Morgan,"Morgan Ctr",,VT,"Orleans County",America/New_York,802,NA,US,44.89,-71.96,450 +05855,STANDARD,0,Newport,,"Eagle Point, Indian Point, Lake Park, Newport City, North Derby, The Bluffs, West Derby",VT,"Orleans County",America/New_York,802,NA,US,44.93,-72.2,5870 +05857,STANDARD,0,"Newport Center","Newport Ctr",,VT,"Orleans County",America/New_York,802,NA,US,44.95,-72.3,1240 +05858,STANDARD,0,"North Concord",Victory,"Gallup Mills, Granby Valley, Miles Pond",VT,"Essex County",America/New_York,802,NA,US,44.56,-71.77,230 +05859,STANDARD,0,"North Troy","Jay, Jay Peak",,VT,"Orleans County",America/New_York,802,NA,US,44.99,-72.4,1640 +05860,STANDARD,0,Orleans,Brownington,"Evansville, Westmore",VT,"Orleans County",America/New_York,802,NA,US,44.81,-72.2,2260 +05861,"PO BOX",0,Passumpsic,,"Morses Mills",VT,"Caledonia County",America/New_York,802,NA,US,44.38,-72.03,215 +05862,STANDARD,0,Peacham,,"East Peacham",VT,"Caledonia County",America/New_York,802,NA,US,44.33,-72.17,300 +05863,"PO BOX",0,"Saint Johnsbury Center","St Jhnsbry Ct",,VT,"Caledonia County",America/New_York,802,NA,US,44.47,-72,300 +05866,STANDARD,0,Sheffield,,"Sheffield Square",VT,"Caledonia County",America/New_York,802,NA,US,44.6,-72.12,550 +05867,STANDARD,0,Sutton,,"East Sutton Ridge",VT,"Caledonia County",America/New_York,802,NA,US,44.66,-72.03,620 +05868,STANDARD,0,Troy,,,VT,"Orleans County",America/New_York,802,NA,US,44.9,-72.38,310 +05871,STANDARD,0,"West Burke",,"Burke, Newark, Newark Hollow",VT,"Caledonia County",America/New_York,802,NA,US,44.64,-71.98,1330 +05872,STANDARD,0,"West Charleston","W Charleston",Charleston,VT,"Orleans County",America/New_York,802,NA,US,44.86,-72.05,640 +05873,STANDARD,0,"West Danville",,"Joes Pond, Walden",VT,"Caledonia County",America/New_York,802,NA,US,44.46,-72.22,650 +05874,STANDARD,0,Westfield,,,VT,"Orleans County",America/New_York,802,NA,US,44.88,-72.42,540 +05875,STANDARD,0,Barton,"West Glover",,VT,"Orleans County",America/New_York,802,NA,US,44.69,-72.26,450 +05901,"PO BOX",0,Averill,Canaan,,VT,"Essex County",America/New_York,,NA,US,44.94,-71.66,0 +05902,STANDARD,0,"Beecher Falls",,,VT,"Essex County",America/New_York,802,NA,US,45.01,-71.49,226 +05903,STANDARD,0,Canaan,Lemington,,VT,"Essex County",America/New_York,802,NA,US,45,-71.53,720 +05904,STANDARD,0,Gilman,,,VT,"Essex County",America/New_York,802,NA,US,44.42,-71.71,190 +05905,STANDARD,0,Guildhall,"Bloomfield, Brunswick, Maidstone","Ferdinand, Lemington",VT,"Essex County",America/New_York,802,NA,US,44.7,-71.68,600 +05906,STANDARD,0,Lunenburg,"East Concord","South Lunenburg",VT,"Essex County",America/New_York,802,NA,US,44.47,-71.68,990 +05907,STANDARD,0,Norton,,,VT,"Essex County",America/New_York,802,NA,US,45,-71.8,178 +06001,STANDARD,0,Avon,,,CT,"Hartford County",America/New_York,860,NA,US,41.8,-72.83,18690 +06002,STANDARD,0,Bloomfield,,,CT,"Hartford County",America/New_York,860,NA,US,41.81,-72.73,19330 +06006,UNIQUE,0,Windsor,,"Northeast Area",CT,"Hartford County",America/New_York,860,NA,US,41.85,-72.65,0 +06010,STANDARD,0,Bristol,,Forestville,CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.94,52790 +06011,"PO BOX",0,Bristol,,,CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.94,861 +06013,STANDARD,0,Burlington,Unionville,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.96,9200 +06016,STANDARD,0,"Broad Brook","Melrose, Windsorville",,CT,"Hartford County",America/New_York,860,NA,US,41.9,-72.54,5680 +06018,STANDARD,0,Canaan,,"No Canaan, North Canaan",CT,"Litchfield County",America/New_York,860,NA,US,42.03,-73.33,2290 +06019,STANDARD,0,Canton,Collinsville,,CT,"Hartford County",America/New_York,860,NA,US,41.86,-72.9,9210 +06020,"PO BOX",0,"Canton Center",,"Cherry Brook",CT,"Hartford County",America/New_York,860,NA,US,41.83,-72.93,183 +06021,STANDARD,0,Colebrook,,Colbrook,CT,"Litchfield County",America/New_York,,NA,US,42.02,-73.1,1180 +06022,"PO BOX",0,Collinsville,,,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.93,162 +06023,STANDARD,0,"East Berlin",,,CT,"Hartford County",America/New_York,860,NA,US,41.61,-72.72,1230 +06024,STANDARD,0,"East Canaan",,,CT,"Litchfield County",America/New_York,,NA,US,42,-73.28,500 +06025,"PO BOX",0,"East Glastonbury","E Glastonbury","E Glstnbry",CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.54,123 +06026,STANDARD,0,"East Granby",,,CT,"Hartford County",America/New_York,860,NA,US,41.93,-72.71,4970 +06027,STANDARD,0,"East Hartland",,,CT,"Hartford County",America/New_York,860,NA,US,42,-72.94,1340 +06028,"PO BOX",0,"East Windsor Hill","E Windsor Hl",,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.67,65 +06029,STANDARD,0,Ellington,,,CT,"Tolland County",America/New_York,860,NA,US,41.9,-72.46,15510 +06030,UNIQUE,0,Farmington,,"University Of Ct Health Ctr",CT,"Hartford County",America/New_York,860,NA,US,41.71,-72.83,0 +06031,STANDARD,0,"Falls Village",,"South Canaan",CT,"Litchfield County",America/New_York,860,NA,US,41.95,-73.36,960 +06032,STANDARD,0,Farmington,,"Talcott Village, The Exchange At Talcott Vill, West Farms Mall",CT,"Hartford County",America/New_York,860,NA,US,41.71,-72.83,17520 +06033,STANDARD,0,Glastonbury,,,CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.6,28620 +06034,"PO BOX",0,Farmington,,,CT,"Hartford County",America/New_York,860,NA,US,41.71,-72.83,291 +06035,STANDARD,0,Granby,,,CT,"Hartford County",America/New_York,860,NA,US,41.95,-72.78,7130 +06037,STANDARD,0,Berlin,Kensington,Kenington,CT,"Hartford County",America/New_York,860,NA,US,41.62,-72.77,18140 +06039,STANDARD,0,Lakeville,,"Hotchkiss School",CT,"Litchfield County",America/New_York,860,NA,US,41.94,-73.43,1890 +06040,STANDARD,0,Manchester,,,CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.51,31400 +06041,UNIQUE,0,Manchester,,"Jc Penney Co",CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.51,29 +06042,STANDARD,0,Manchester,,,CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.53,21640 +06043,STANDARD,0,Bolton,,,CT,"Tolland County",America/New_York,860,NA,US,41.76,-72.43,4720 +06045,"PO BOX",0,Manchester,,,CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.51,676 +06050,"PO BOX",0,"New Britain",,,CT,"Hartford County",America/New_York,860,NA,US,41.67,-72.78,1273 +06051,STANDARD,0,"New Britain",,"New Brit",CT,"Hartford County",America/New_York,860,NA,US,41.67,-72.78,24870 +06052,STANDARD,0,"New Britain",,,CT,"Hartford County",America/New_York,860,NA,US,41.66,-72.8,6740 +06053,STANDARD,0,"New Britain",,,CT,"Hartford County",America/New_York,860,NA,US,41.69,-72.79,27750 +06057,STANDARD,0,"New Hartford",,"Bakersville, Nepaug",CT,"Litchfield County",America/New_York,,NA,US,41.87,-72.97,6320 +06058,STANDARD,0,Norfolk,,,CT,"Litchfield County",America/New_York,860,NA,US,41.99,-73.19,1430 +06059,"PO BOX",0,"North Canton",,,CT,"Litchfield County",America/New_York,860,NA,US,41.96,-72.94,138 +06060,STANDARD,0,"North Granby",,,CT,"Hartford County",America/New_York,860,NA,US,42.01,-72.84,2540 +06061,"PO BOX",0,"Pine Meadow",,,CT,"Litchfield County",America/New_York,,NA,US,41.88,-72.97,290 +06062,STANDARD,0,Plainville,,,CT,"Hartford County",America/New_York,860,NA,US,41.67,-72.86,15900 +06063,STANDARD,0,Barkhamsted,"Pleasant Valley, Pleasant Vly, Winsted",,CT,"Litchfield County",America/New_York,860,NA,US,41.93,-72.97,3170 +06064,"PO BOX",0,Poquonock,,,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.67,201 +06065,STANDARD,0,Riverton,,,CT,"Hartford County",America/New_York,,NA,US,41.95,-73.02,670 +06066,STANDARD,0,"Vernon Rockville","Vernon, Vernon Rockvl","Rockville, Talcottville, Turnpike",CT,"Tolland County",America/New_York,860,NA,US,41.84,-72.45,26130 +06067,STANDARD,0,"Rocky Hill",,,CT,"Hartford County",America/New_York,860,NA,US,41.66,-72.63,19330 +06068,STANDARD,0,Salisbury,,,CT,"Litchfield County",America/New_York,,NA,US,42.01,-73.42,1150 +06069,STANDARD,0,Sharon,,"Sharon Valley, West Woods",CT,"Litchfield County",America/New_York,860,NA,US,41.87,-73.47,1750 +06070,STANDARD,0,Simsbury,,Simbury,CT,"Hartford County",America/New_York,860,NA,US,41.88,-72.81,15100 +06071,STANDARD,0,Somers,,"Connecticut State Prison",CT,"Tolland County",America/New_York,860,NA,US,41.98,-72.45,8710 +06072,"PO BOX",0,Somersville,,,CT,"Tolland County",America/New_York,860,NA,US,41.99,-72.45,371 +06073,STANDARD,0,"South Glastonbury","S Glastonbury",,CT,"Hartford County",America/New_York,860,NA,US,41.65,-72.56,5730 +06074,STANDARD,0,"South Windsor",,"Bissell, Wapping",CT,"Hartford County",America/New_York,860,NA,US,41.81,-72.61,25910 +06075,"PO BOX",0,Stafford,,,CT,"Tolland County",America/New_York,860,NA,US,41.98,-72.28,183 +06076,STANDARD,0,"Stafford Springs","Stafford Spgs, Union","Stafford Sp, West Stafford",CT,"Tolland County",America/New_York,860,NA,US,41.95,-72.3,10610 +06077,"PO BOX",0,Staffordville,,,CT,"Tolland County",America/New_York,860,NA,US,41.98,-72.31,175 +06078,STANDARD,0,Suffield,,,CT,"Hartford County",America/New_York,860,NA,US,41.98,-72.65,9700 +06079,"PO BOX",0,Taconic,,"Twin Lakes",CT,"Litchfield County",America/New_York,860,NA,US,42.03,-73.4,111 +06080,UNIQUE,0,Suffield,,"Mcdougal Correctional Fclty",CT,"Hartford County",America/New_York,860,NA,US,41.98,-72.65,10 +06081,STANDARD,0,Tariffville,,,CT,"Hartford County",America/New_York,860,NA,US,41.91,-72.77,1240 +06082,STANDARD,0,Enfield,,"Hazardville, North Thompsonville, Scitico, Thompsonville",CT,"Hartford County",America/New_York,860,NA,US,41.96,-72.56,35820 +06083,"PO BOX",0,Enfield,,,CT,"Hartford County",America/New_York,860,NA,US,41.96,-72.56,586 +06084,STANDARD,0,Tolland,,,CT,"Tolland County",America/New_York,860,NA,US,41.88,-72.36,14100 +06085,STANDARD,0,Unionville,,"Lake Garda",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.88,6900 +06087,UNIQUE,1,Unionville,,"Accr A Data",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.88,0 +06088,STANDARD,0,"East Windsor",,"Scantic, Warehouse Point",CT,"Hartford County",America/New_York,860,NA,US,41.91,-72.59,4320 +06089,STANDARD,0,Weatogue,,,CT,"Hartford County",America/New_York,860,NA,US,41.84,-72.82,3310 +06090,STANDARD,0,"West Granby",,,CT,"Hartford County",America/New_York,860,NA,US,41.95,-72.86,1120 +06091,STANDARD,0,"West Hartland",,,CT,"Hartford County",America/New_York,860,NA,US,42,-72.97,178 +06092,STANDARD,0,"West Simsbury",,,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.84,4330 +06093,STANDARD,0,"West Suffield",,"W Suffield",CT,"Hartford County",America/New_York,860,NA,US,42,-72.72,3370 +06094,"PO BOX",0,"Winchester Center","Winchestr Ctr",Winchester,CT,"Litchfield County",America/New_York,,NA,US,41.92,-73.1,260 +06095,STANDARD,0,Windsor,,Wilson,CT,"Hartford County",America/New_York,860,NA,US,41.85,-72.65,27630 +06096,STANDARD,0,"Windsor Locks",,"Bradley International Airpor",CT,"Hartford County",America/New_York,860,NA,US,41.92,-72.65,11600 +06098,STANDARD,0,Winsted,"Winchester Center, Winchestr Ctr",Winchester,CT,"Litchfield County",America/New_York,860,NA,US,41.92,-73.06,8650 +06101,STANDARD,0,Hartford,,"Htd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06102,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06103,STANDARD,0,Hartford,,Central,CT,"Hartford County",America/New_York,860,NA,US,41.77,-72.67,1780 +06104,"PO BOX",0,Hartford,,"Main Office",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06105,STANDARD,0,Hartford,"West Hartford","Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.77,-72.71,13180 +06106,STANDARD,0,Hartford,,Htfd,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,28370 +06107,STANDARD,0,"West Hartford","Hartford, West Hartfrd","W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,18480 +06108,STANDARD,0,"East Hartford",Hartford,"E Hartford, East Htfd, Forbes Village, Hartfrd, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.62,21010 +06109,STANDARD,0,Wethersfield,Hartford,"Hfd, Htfd, Weathersfield, Weth, Wethersfld",CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.67,25700 +06110,STANDARD,0,"West Hartford","Hartford, West Hartfrd","Corbins Corner, Elmwood, W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.73,-72.73,11650 +06111,STANDARD,0,Newington,Hartford,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.73,28480 +06112,STANDARD,0,Hartford,,"Blue Hills, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.7,16990 +06114,STANDARD,0,Hartford,,"Barry Square, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.74,-72.67,21600 +06115,"PO BOX",0,Hartford,,"Hfd, Htfd, Main Office",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,35 +06117,STANDARD,0,"West Hartford","Hartford, West Hartfrd","W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.76,14360 +06118,STANDARD,0,"East Hartford",Hartford,"E Hartford, E Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.61,24120 +06119,STANDARD,0,"West Hartford","Hartford, West Hartfrd","W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.73,12470 +06120,STANDARD,0,Hartford,,"Unity Plaza",CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.66,9030 +06123,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,268 +06126,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,931 +06127,"PO BOX",0,"West Hartford","Hartford, West Hartfrd","W Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,257 +06128,"PO BOX",0,"East Hartford",Hartford,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.61,266 +06129,"PO BOX",0,Wethersfield,Hartford,"Weathersfield, Wethersfld",CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.67,201 +06131,"PO BOX",0,Newington,Hartford,,CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.73,278 +06132,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,414 +06133,"PO BOX",0,"West Hartford","Hartford, West Hartfrd","Elmwood, W Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,396 +06134,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,254 +06137,"PO BOX",0,"West Hartford","Bishops Cor, Bishops Corner, Hartford, West Hartfrd","W Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,120 +06138,"PO BOX",0,"East Hartford","Hartford, Silver Lane","E Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.61,342 +06140,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,78 +06141,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,153 +06142,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,45 +06143,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,159 +06144,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,149 +06145,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,18 +06146,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,99 +06147,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,224 +06150,UNIQUE,0,Hartford,,"Bank Of America, Hartford Natl Bank, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06151,UNIQUE,0,Hartford,,"Bank Of America, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06152,STANDARD,0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06153,UNIQUE,0,Hartford,,"Allstate, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06154,UNIQUE,0,Hartford,,"C T Mutual Insurance Co, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06155,UNIQUE,0,Hartford,,"Hartford Insurance Group, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06156,UNIQUE,0,Hartford,,"Aetna Life, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06160,UNIQUE,0,Hartford,,"Aetna Insurance, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.77,-72.69,0 +06161,UNIQUE,0,Hartford,Wethersfield,"Ct Dept Of Motor Vehicles",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06167,UNIQUE,0,Hartford,,"A A R P Pharmacy, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06176,UNIQUE,0,Hartford,,"Hfd, Htfd, Irs",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06180,UNIQUE,0,Hartford,,"Bank Of America, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06183,UNIQUE,0,Hartford,,"Hfd, Htfd, Travelers Ins",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06199,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06226,STANDARD,0,Willimantic,,"Chestnut Hill, Conantville, Perkins Corner",CT,"Windham County",America/New_York,860,NA,US,41.71,-72.21,12970 +06230,"PO BOX",0,Abington,,,CT,"Windham County",America/New_York,860,NA,US,41.85,-72.01,113 +06231,STANDARD,0,Amston,,,CT,"Tolland County",America/New_York,860,NA,US,41.62,-72.37,3770 +06232,STANDARD,0,Andover,,,CT,"Tolland County",America/New_York,860,NA,US,41.73,-72.36,3000 +06233,"PO BOX",0,Ballouville,Killingly,,CT,"Windham County",America/New_York,860,NA,US,41.87,-71.86,214 +06234,STANDARD,0,Brooklyn,,Bkln,CT,"Windham County",America/New_York,860,NA,US,41.78,-71.95,7140 +06235,STANDARD,0,Chaplin,"Mansfield Center, Mansfield Ctr, North Windham",,CT,"Windham County",America/New_York,860,NA,US,41.8,-72.11,1980 +06237,STANDARD,0,Columbia,,,CT,"Tolland County",America/New_York,860,NA,US,41.7,-72.3,4970 +06238,STANDARD,0,Coventry,,,CT,"Tolland County",America/New_York,860,NA,US,41.78,-72.3,11420 +06239,STANDARD,0,Danielson,Killingly,"East Brooklyn, South Killingly",CT,"Windham County",America/New_York,860,NA,US,41.8,-71.88,9170 +06241,STANDARD,0,Dayville,Killingly,"Killingly Center",CT,"Windham County",America/New_York,860,NA,US,41.85,-71.84,5610 +06242,STANDARD,0,Eastford,,,CT,"Windham County",America/New_York,860,NA,US,41.9,-72.08,1280 +06243,STANDARD,0,"East Killingly","E Killingly, Killingly",,CT,"Windham County",America/New_York,860,NA,US,41.84,-71.81,240 +06244,"PO BOX",0,"East Woodstock","E Woodstock",,CT,"Windham County",America/New_York,860,NA,US,41.98,-71.97,271 +06245,"PO BOX",0,Fabyan,,,CT,"Windham County",America/New_York,860,NA,US,42.01,-71.94,0 +06246,"PO BOX",0,"Grosvenor Dale","Grosvenor Dl",,CT,"Windham County",America/New_York,860,NA,US,41.96,-71.89,220 +06247,STANDARD,0,Hampton,Scotland,,CT,"Windham County",America/New_York,860,NA,US,41.78,-72.05,2130 +06248,STANDARD,0,Hebron,,,CT,"Tolland County",America/New_York,860,NA,US,41.65,-72.36,5280 +06249,STANDARD,0,Lebanon,,Exeter,CT,"New London County",America/New_York,860,NA,US,41.66,-72.24,6640 +06250,STANDARD,0,"Mansfield Center","Mansfield Ctr","Mansfield, Mansfield Hollow, West Ashford",CT,"Tolland County",America/New_York,860,NA,US,41.77,-72.19,4400 +06251,"PO BOX",0,"Mansfield Depot","Mansfield Dpt",Merrow,CT,"Tolland County",America/New_York,860,NA,US,41.77,-72.2,74 +06254,STANDARD,0,"North Franklin","N Franklin","Franklin, Franklin Hill",CT,"New London County",America/New_York,860,NA,US,41.61,-72.14,1740 +06255,STANDARD,0,"North Grosvenordale","N Grosvenordl","North Grosvendale",CT,"Windham County",America/New_York,860,NA,US,41.98,-71.9,3930 +06256,STANDARD,0,"North Windham",,"South Chaplin",CT,"Windham County",America/New_York,860,NA,US,41.73,-72.16,1870 +06258,"PO BOX",0,Pomfret,,,CT,"Windham County",America/New_York,860,NA,US,41.9,-71.96,503 +06259,STANDARD,0,"Pomfret Center","Pomfret Ctr","Elliot, Pomfret Landing, Ponfret Center",CT,"Windham County",America/New_York,860,NA,US,41.86,-71.99,3530 +06260,STANDARD,0,Putnam,,"East Putnam, Laurel Hill, Putman, Putnam Heights, Putnm, Rhodesville, Sawyer District",CT,"Windham County",America/New_York,860,NA,US,41.91,-71.9,7800 +06262,STANDARD,0,Quinebaug,,,CT,"Windham County",America/New_York,860,NA,US,42.02,-71.95,500 +06263,"PO BOX",0,Rogers,Killingly,,CT,"Windham County",America/New_York,860,NA,US,41.84,-71.9,451 +06264,STANDARD,0,Scotland,,,CT,"Windham County",America/New_York,860,NA,US,41.69,-72.1,550 +06265,STANDARD,0,"South Willington","S Willington",,CT,"Tolland County",America/New_York,860,NA,US,41.89,-72.26,0 +06266,STANDARD,0,"South Windham",,,CT,"Windham County",America/New_York,860,NA,US,41.67,-72.17,510 +06267,"PO BOX",0,"South Woodstock","S Woodstock",,CT,"Windham County",America/New_York,860,NA,US,41.92,-71.95,258 +06268,STANDARD,0,"Storrs Mansfield","Storrs, Storrs Manfld","Gurleyville, Mansfield",CT,"Tolland County",America/New_York,860,NA,US,41.8,-72.25,5490 +06269,UNIQUE,0,"Storrs Mansfield","Storrs, Storrs Manfld","University Of Ct",CT,"Tolland County",America/New_York,860,NA,US,41.8,-72.29,337 +06277,STANDARD,0,Thompson,,"East Thompson, Mechanicsville",CT,"Windham County",America/New_York,860,NA,US,41.95,-71.86,3620 +06278,STANDARD,0,Ashford,Warrenville,,CT,"Windham County",America/New_York,860,NA,US,41.9,-72.17,3960 +06279,STANDARD,0,Willington,,"East Willington, W Willington",CT,"Tolland County",America/New_York,860,NA,US,41.86,-72.27,4660 +06280,STANDARD,0,Windham,,,CT,"Windham County",America/New_York,860,NA,US,41.7,-72.16,2730 +06281,STANDARD,0,Woodstock,,,CT,"Windham County",America/New_York,860,NA,US,41.95,-71.98,6270 +06282,STANDARD,0,"Woodstock Valley","Woodstock Vly",,CT,"Windham County",America/New_York,860,NA,US,41.94,-72.08,1100 +06320,STANDARD,0,"New London",,"Ft Trumbull, United States Coast Guard, Us Coast Guard Acad",CT,"New London County",America/New_York,860,NA,US,41.35,-72.1,20430 +06330,STANDARD,0,Baltic,,Sprague,CT,"New London County",America/New_York,860,NA,US,41.64,-72.07,2600 +06331,STANDARD,0,Canterbury,,"South Canterbury",CT,"Windham County",America/New_York,860,NA,US,41.7,-72,4790 +06332,"PO BOX",0,"Central Village","Central Vlg",,CT,"Windham County",America/New_York,860,NA,US,41.73,-71.9,943 +06333,STANDARD,0,"East Lyme",,,CT,"New London County",America/New_York,860,NA,US,41.38,-72.24,7060 +06334,STANDARD,0,Bozrah,,Fitchville,CT,"New London County",America/New_York,860,NA,US,41.54,-72.17,2200 +06335,STANDARD,0,"Gales Ferry",,,CT,"New London County",America/New_York,860,NA,US,41.43,-72.06,6470 +06336,STANDARD,0,Gilman,,,CT,"New London County",America/New_York,860,NA,US,41.58,-72.2,96 +06338,"PO BOX",0,Mashantucket,Ledyard,,CT,"New London County",America/New_York,860,NA,US,41.35,-72.09,200 +06339,STANDARD,0,Ledyard,"Gales Ferry",,CT,"New London County",America/New_York,860,NA,US,41.44,-71.99,7890 +06340,STANDARD,0,Groton,,"Borough, Center Groton, Groton Long Point, Jupiter Point, Noank, Poquonock Bridge",CT,"New London County",America/New_York,860,NA,US,41.32,-72.07,23870 +06349,"PO BOX",0,Groton,,"Naval Submarine Base, Navsub Base, Sub Base New London, Submarine Base",CT,"New London County",America/New_York,860,NA,US,41.32,-72.07,423 +06350,"PO BOX",0,Hanover,,,CT,"New London County",America/New_York,860,NA,US,41.65,-72.07,283 +06351,STANDARD,0,"Jewett City","Griswold, Lisbon","Hopeville, Preston",CT,"New London County",America/New_York,860,NA,US,41.6,-71.98,14230 +06353,STANDARD,0,Montville,,,CT,"New London County",America/New_York,860,NA,US,41.46,-72.15,290 +06354,STANDARD,0,Moosup,,,CT,"Windham County",America/New_York,860,NA,US,41.71,-71.87,4760 +06355,STANDARD,0,Mystic,,"Masons Island",CT,"New London County",America/New_York,860,NA,US,41.35,-71.97,11610 +06357,STANDARD,0,Niantic,,,CT,"New London County",America/New_York,860,NA,US,41.32,-72.22,9730 +06359,STANDARD,0,"North Stonington","N Stonington",,CT,"New London County",America/New_York,860,NA,US,41.44,-71.89,4870 +06360,STANDARD,0,Norwich,,"Norwichtown, Occum, Poquetanuck",CT,"New London County",America/New_York,860,NA,US,41.55,-72.08,30860 +06365,STANDARD,0,Preston,Norwich,,CT,"New London County",America/New_York,860,NA,US,41.55,-71.99,4420 +06370,STANDARD,0,Oakdale,,Chesterfield,CT,"New London County",America/New_York,860,NA,US,41.46,-72.18,6740 +06371,STANDARD,0,"Old Lyme",Lyme,"North Lyme",CT,"New London County",America/New_York,860,NA,US,41.31,-72.34,8920 +06372,"PO BOX",0,"Old Mystic",,,CT,"New London County",America/New_York,860,NA,US,41.36,-71.98,338 +06373,"PO BOX",0,Oneco,,,CT,"Windham County",America/New_York,860,NA,US,41.69,-71.81,574 +06374,STANDARD,0,Plainfield,,,CT,"Windham County",America/New_York,860,NA,US,41.67,-71.92,6830 +06375,STANDARD,0,"Quaker Hill",,,CT,"New London County",America/New_York,860,NA,US,41.4,-72.12,3530 +06376,"PO BOX",0,"South Lyme",,"Point O Woods",CT,"New London County",America/New_York,860,NA,US,41.29,-72.25,182 +06377,STANDARD,0,Sterling,,"North Sterling",CT,"Windham County",America/New_York,860,NA,US,41.7,-71.83,2470 +06378,STANDARD,0,Stonington,,"Lords Point, Shawondassee",CT,"New London County",America/New_York,860,NA,US,41.33,-71.9,4820 +06379,STANDARD,0,Pawcatuck,,,CT,"New London County",America/New_York,860,NA,US,41.37,-71.85,8000 +06380,STANDARD,0,Taftville,,,CT,"New London County",America/New_York,860,NA,US,41.56,-72.05,2280 +06382,STANDARD,0,Uncasville,,,CT,"New London County",America/New_York,860,NA,US,41.45,-72.12,9100 +06383,"PO BOX",0,Versailles,,,CT,"New London County",America/New_York,860,NA,US,41.58,-71.94,195 +06384,STANDARD,0,Voluntown,Glasgo,,CT,"New London County",America/New_York,860,NA,US,41.59,-71.85,2450 +06385,STANDARD,0,Waterford,,"Jordan Village, Millstone",CT,"New London County",America/New_York,860,NA,US,41.34,-72.14,14630 +06386,UNIQUE,1,Waterford,,"Bureau Business Practice, Bureau Of Business Pr",CT,"New London County",America/New_York,860,NA,US,41.33,-72.13,0 +06387,"PO BOX",0,Wauregan,,"West Wauregan",CT,"Windham County",America/New_York,860,NA,US,41.74,-71.91,714 +06388,"PO BOX",0,"West Mystic",Mystic,,CT,"New London County",America/New_York,860,NA,US,41.35,-71.98,125 +06389,STANDARD,0,Yantic,,,CT,"New London County",America/New_York,860,NA,US,41.56,-72.13,210 +06390,"PO BOX",0,"Fishers Island","Fishers Isle",,NY,"Suffolk County",America/New_York,631,NA,US,41.27,-71.99,286 +06401,STANDARD,0,Ansonia,,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.34,-73.06,16380 +06403,STANDARD,0,"Beacon Falls",,,CT,"New Haven County",America/New_York,203,NA,US,41.44,-73.04,5590 +06404,"PO BOX",0,Botsford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.39,-73.31,151 +06405,STANDARD,0,Branford,,,CT,"New Haven County",America/New_York,203,NA,US,41.28,-72.81,25270 +06408,UNIQUE,0,Cheshire,,"Macys By Mail",CT,"New Haven County",America/New_York,203,NA,US,41.5,-72.9,0 +06409,STANDARD,0,Centerbrook,,,CT,"Middlesex County",America/New_York,860,NA,US,41.35,-72.42,620 +06410,STANDARD,0,Cheshire,,,CT,"New Haven County",America/New_York,203,NA,US,41.5,-72.9,26110 +06411,UNIQUE,0,Cheshire,,"Bloomingdales By Mail Ltd",CT,"New Haven County",America/New_York,203,NA,US,41.5,-72.9,0 +06412,STANDARD,0,Chester,,,CT,"Middlesex County",America/New_York,860,NA,US,41.4,-72.45,3370 +06413,STANDARD,0,Clinton,,,CT,"Middlesex County",America/New_York,860,NA,US,41.27,-72.53,12010 +06414,"PO BOX",0,Cobalt,,,CT,"Middlesex County",America/New_York,860,NA,US,41.57,-72.55,406 +06415,STANDARD,0,Colchester,,,CT,"New London County",America/New_York,860,NA,US,41.57,-72.33,15450 +06416,STANDARD,0,Cromwell,,,CT,"Middlesex County",America/New_York,860,NA,US,41.6,-72.63,13330 +06417,STANDARD,0,"Deep River",,,CT,"Middlesex County",America/New_York,860,NA,US,41.39,-72.43,4010 +06418,STANDARD,0,Derby,,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.32,-73.08,10750 +06419,STANDARD,0,Killingworth,"Deep River",,CT,"Middlesex County",America/New_York,860,NA,US,41.35,-72.56,6150 +06420,STANDARD,0,Salem,Colchester,,CT,"New London County",America/New_York,860,NA,US,41.48,-72.27,4090 +06422,STANDARD,0,Durham,,,CT,"Middlesex County",America/New_York,860,NA,US,41.47,-72.68,7070 +06423,STANDARD,0,"East Haddam",,,CT,"Middlesex County",America/New_York,860,NA,US,41.45,-72.46,4560 +06424,STANDARD,0,"East Hampton","Haddam Neck",,CT,"Middlesex County",America/New_York,860,NA,US,41.57,-72.49,11710 +06426,STANDARD,0,Essex,,,CT,"Middlesex County",America/New_York,860,NA,US,41.35,-72.39,3100 +06437,STANDARD,0,Guilford,,,CT,"New Haven County",America/New_York,203,NA,US,41.28,-72.67,21010 +06438,STANDARD,0,Haddam,,,CT,"Middlesex County",America/New_York,860,NA,US,41.45,-72.5,2450 +06439,"PO BOX",0,Hadlyme,,,CT,"New London County",America/New_York,860,NA,US,41.4,-72.34,344 +06440,"PO BOX",0,Hawleyville,,,CT,"Fairfield County",America/New_York,203,NA,US,41.43,-73.35,97 +06441,STANDARD,0,Higganum,,,CT,"Middlesex County",America/New_York,860,NA,US,41.49,-72.55,5300 +06442,STANDARD,0,Ivoryton,,,CT,"Middlesex County",America/New_York,860,NA,US,41.34,-72.43,2540 +06443,STANDARD,0,Madison,,,CT,"New Haven County",America/New_York,203,NA,US,41.27,-72.59,17210 +06444,"PO BOX",0,Marion,,,CT,"Hartford County",America/New_York,860,NA,US,41.56,-72.92,759 +06447,STANDARD,0,Marlborough,,Marlboro,CT,"Hartford County",America/New_York,860,NA,US,41.63,-72.45,5960 +06450,STANDARD,0,Meriden,,,CT,"New Haven County",America/New_York,203,NA,US,41.53,-72.79,31140 +06451,STANDARD,0,Meriden,,,CT,"New Haven County",America/New_York,203,NA,US,41.54,-72.82,21540 +06454,UNIQUE,1,Meriden,"Travlers Insurance",,CT,"New Haven County",America/New_York,203,NA,US,41.54,-72.8,0 +06455,STANDARD,0,Middlefield,,,CT,"Middlesex County",America/New_York,860,NA,US,41.5,-72.71,2980 +06456,"PO BOX",0,"Middle Haddam",,,CT,"Middlesex County",America/New_York,860,NA,US,41.52,-72.55,437 +06457,STANDARD,0,Middletown,,,CT,"Middlesex County",America/New_York,860,NA,US,41.54,-72.65,37480 +06459,UNIQUE,0,Middletown,,Wesleyan,CT,"Middlesex County",America/New_York,860,NA,US,41.54,-72.65,195 +06460,STANDARD,0,Milford,,,CT,"New Haven County",America/New_York,203,NA,US,41.22,-73.06,34070 +06461,STANDARD,0,Milford,,,CT,"New Haven County",America/New_York,203,NA,US,41.23,-73.08,13870 +06467,"PO BOX",0,Milldale,,,CT,"Hartford County",America/New_York,860,NA,US,41.57,-72.9,477 +06468,STANDARD,0,Monroe,,"Stepney, Upper Stepney",CT,"Fairfield County",America/New_York,203,NA,US,41.36,-73.2,18560 +06469,STANDARD,0,Moodus,,,CT,"Middlesex County",America/New_York,860,NA,US,41.5,-72.45,2950 +06470,STANDARD,0,Newtown,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.41,-73.31,15340 +06471,STANDARD,0,"North Branford","N Branford",,CT,"New Haven County",America/New_York,203,NA,US,41.33,-72.77,6830 +06472,STANDARD,0,Northford,,,CT,"New Haven County",America/New_York,203,NA,US,41.38,-72.77,6190 +06473,STANDARD,0,"North Haven",,"No Haven",CT,"New Haven County",America/New_York,203,NA,US,41.38,-72.85,23130 +06474,"PO BOX",0,"North Westchester","N Westchester",,CT,"New London County",America/New_York,860,NA,US,41.56,-72.34,0 +06475,STANDARD,0,"Old Saybrook",,Fenwick,CT,"Middlesex County",America/New_York,860,NA,US,41.29,-72.36,9750 +06477,STANDARD,0,Orange,,,CT,"New Haven County",America/New_York,203,NA,US,41.27,-73.02,13950 +06478,STANDARD,0,Oxford,Seymour,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.42,-73.11,12260 +06479,STANDARD,0,Plantsville,,,CT,"Hartford County",America/New_York,860,NA,US,41.57,-72.91,9100 +06480,STANDARD,0,Portland,,,CT,"Middlesex County",America/New_York,860,NA,US,41.58,-72.62,8650 +06481,STANDARD,0,Rockfall,,,CT,"Middlesex County",America/New_York,860,NA,US,41.53,-72.69,1080 +06482,STANDARD,0,"Sandy Hook",,,CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.24,10330 +06483,STANDARD,0,Seymour,,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.4,-73.06,15180 +06484,STANDARD,0,Shelton,Huntington,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.3,-73.13,38080 +06487,"PO BOX",0,"South Britain",,,CT,"New Haven County",America/New_York,203,NA,US,41.47,-73.23,59 +06488,STANDARD,0,Southbury,,,CT,"New Haven County",America/New_York,203,NA,US,41.48,-73.22,18010 +06489,STANDARD,0,Southington,,,CT,"Hartford County",America/New_York,860,NA,US,41.6,-72.88,30650 +06491,"PO BOX",0,Stevenson,,,CT,"Fairfield County",America/New_York,203,NA,US,41.33,-73.23,88 +06492,STANDARD,0,Wallingford,Yalesville,,CT,"New Haven County",America/New_York,203,NA,US,41.44,-72.81,40750 +06493,UNIQUE,0,Wallingford,,"Ct Gen Med Claims Office, Publishers Clearing House",CT,"New Haven County",America/New_York,203,NA,US,41.44,-72.81,0 +06494,UNIQUE,0,Wallingford,,"Fosdick Corp",CT,"New Haven County",America/New_York,203,NA,US,41.44,-72.81,0 +06495,UNIQUE,0,Wallingford,,"International Masters Pub",CT,"New Haven County",America/New_York,203,NA,US,41.46,-72.8,0 +06497,STANDARD,1,Stratford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.19,-73.12,71 +06498,STANDARD,0,Westbrook,,,CT,"Middlesex County",America/New_York,860,NA,US,41.28,-72.45,5950 +06501,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,65 +06502,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,123 +06503,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,68 +06504,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,69 +06505,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,61 +06506,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,26 +06507,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06508,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06509,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,23 +06510,STANDARD,0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,"203,475",NA,US,41.31,-72.93,2040 +06511,STANDARD,0,"New Haven",Hamden,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.31,-72.92,33990 +06512,STANDARD,0,"East Haven","New Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.29,-72.86,25330 +06513,STANDARD,0,"New Haven","East Haven","E Haven, Fair Haven, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.32,-72.87,30630 +06514,STANDARD,0,Hamden,"New Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.38,-72.94,22620 +06515,STANDARD,0,"New Haven",,"N Haven, Westville",CT,"New Haven County",America/New_York,203,NA,US,41.33,-72.97,13000 +06516,STANDARD,0,"West Haven","W Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.27,-72.96,45210 +06517,STANDARD,0,Hamden,"New Haven, Whitneyville",,CT,"New Haven County",America/New_York,203,NA,US,41.35,-72.91,13280 +06518,STANDARD,0,Hamden,"New Haven","Centerville Mount Carmel, Mount Carmel, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.43,-72.91,12540 +06519,STANDARD,0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,"203,475",NA,US,41.29,-72.93,11730 +06520,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,552 +06521,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06524,STANDARD,0,Bethany,"New Haven",,CT,"New Haven County",America/New_York,203,NA,US,41.42,-72.99,5190 +06525,STANDARD,0,Woodbridge,"New Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.36,-73,8800 +06530,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,101 +06531,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,99 +06532,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,136 +06533,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,64 +06534,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,23 +06535,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06536,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,20 +06537,UNIQUE,0,"New Haven",,"Advertising Distr Co, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06538,UNIQUE,0,"New Haven",,"Advertising Distr Co, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06540,UNIQUE,0,"New Haven",,"Conn Bank & Trust Co",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06601,"PO BOX",0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,861 +06602,"PO BOX",0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06604,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.18,-73.19,20760 +06605,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.16,-73.22,18640 +06606,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.21,-73.21,39170 +06607,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.17,-73.17,6490 +06608,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.19,-73.18,11050 +06610,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.21,-73.16,19240 +06611,STANDARD,0,Trumbull,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.25,-73.2,35550 +06612,STANDARD,0,Easton,,,CT,"Fairfield County",America/New_York,203,NA,US,41.24,-73.31,7210 +06614,STANDARD,0,Stratford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.2,-73.13,31250 +06615,STANDARD,0,Stratford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.17,-73.13,16850 +06650,STANDARD,1,Bridgeport,,"Stratmar Fulfillment Corp",CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06673,UNIQUE,0,Bridgeport,,"Promotion Marketing Ser Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06699,UNIQUE,0,Bridgeport,,"Controlled Distribution",CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06701,STANDARD,0,Waterbury,,"Us Postal Service, Wtby",CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,31 +06702,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,"203,475",NA,US,41.56,-73.05,1850 +06703,"PO BOX",0,Waterbury,,,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,135 +06704,STANDARD,0,Waterbury,,"Plaza, Wtby",CT,"New Haven County",America/New_York,203,NA,US,41.59,-73.04,21590 +06705,STANDARD,0,Waterbury,Wolcott,"East End, Wtby",CT,"New Haven County",America/New_York,203,NA,US,41.55,-72.99,22420 +06706,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,11640 +06708,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,"203,475",NA,US,41.55,-73.07,24840 +06710,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,"475,203",NA,US,41.57,-73.05,8480 +06712,STANDARD,0,Prospect,Waterbury,,CT,"New Haven County",America/New_York,203,NA,US,41.49,-72.97,9130 +06716,STANDARD,0,Wolcott,Waterbury,,CT,"New Haven County",America/New_York,203,NA,US,41.61,-72.98,15020 +06720,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,320 +06721,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,278 +06722,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,182 +06723,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,113 +06724,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,228 +06725,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,0 +06726,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,0 +06749,UNIQUE,0,Waterbury,,"Uniroyal Inc",CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,0 +06750,STANDARD,0,Bantam,,,CT,"Litchfield County",America/New_York,860,NA,US,41.72,-73.24,1160 +06751,STANDARD,0,Bethlehem,,,CT,"Litchfield County",America/New_York,,NA,US,41.63,-73.21,3140 +06752,STANDARD,0,Bridgewater,,,CT,"Litchfield County",America/New_York,,NA,US,41.52,-73.36,1490 +06753,"PO BOX",0,Cornwall,,,CT,"Litchfield County",America/New_York,,NA,US,41.84,-73.33,168 +06754,STANDARD,0,"Cornwall Bridge","Cornwall Brg, Warren",,CT,"Litchfield County",America/New_York,,NA,US,41.81,-73.37,1360 +06755,STANDARD,0,Gaylordsville,,,CT,"Litchfield County",America/New_York,,NA,US,41.64,-73.48,1010 +06756,STANDARD,0,Goshen,,,CT,"Litchfield County",America/New_York,860,NA,US,41.85,-73.23,2610 +06757,STANDARD,0,Kent,,,CT,"Litchfield County",America/New_York,860,NA,US,41.72,-73.47,1890 +06758,STANDARD,0,Lakeside,,,CT,"Litchfield County",America/New_York,,NA,US,41.68,-73.23,180 +06759,STANDARD,0,Litchfield,,,CT,"Litchfield County",America/New_York,860,NA,US,41.74,-73.19,5080 +06762,STANDARD,0,Middlebury,,,CT,"New Haven County",America/New_York,203,NA,US,41.52,-73.12,7480 +06763,STANDARD,0,Morris,,,CT,"Litchfield County",America/New_York,,NA,US,41.68,-73.17,1830 +06770,STANDARD,0,Naugatuck,,"Union City",CT,"New Haven County",America/New_York,"203,475",NA,US,41.48,-73.05,27740 +06776,STANDARD,0,"New Milford",,Northville,CT,"Litchfield County",America/New_York,860,NA,US,41.58,-73.4,24510 +06777,STANDARD,0,"New Preston Marble Dale","New Preston, Warren, Washington Depot, Washington Dt","Marble Dale, New Preston Marbledale, New Preston-Marble Dale, Washington",CT,"Litchfield County",America/New_York,860,NA,US,41.69,-73.34,1370 +06778,STANDARD,0,Northfield,Thomaston,,CT,"Litchfield County",America/New_York,860,NA,US,41.71,-73.11,1200 +06779,STANDARD,0,Oakville,Watertown,,CT,"Litchfield County",America/New_York,860,NA,US,41.59,-73.08,7240 +06781,"PO BOX",0,Pequabuck,,,CT,"Litchfield County",America/New_York,,NA,US,41.67,-73,150 +06782,STANDARD,0,Plymouth,,,CT,"Litchfield County",America/New_York,,NA,US,41.65,-73.04,2140 +06783,STANDARD,0,Roxbury,,,CT,"Litchfield County",America/New_York,,NA,US,41.55,-73.3,1830 +06784,STANDARD,0,Sherman,,,CT,"Fairfield County",America/New_York,203,NA,US,41.58,-73.5,3300 +06785,STANDARD,0,"South Kent",,,CT,"Litchfield County",America/New_York,,NA,US,41.69,-73.46,630 +06786,STANDARD,0,Terryville,,,CT,"Litchfield County",America/New_York,,NA,US,41.67,-73,8480 +06787,STANDARD,0,Thomaston,,,CT,"Litchfield County",America/New_York,860,NA,US,41.67,-73.07,6930 +06790,STANDARD,0,Torrington,,,CT,"Litchfield County",America/New_York,860,NA,US,41.83,-73.12,29980 +06791,STANDARD,0,Harwinton,Torrington,,CT,"Litchfield County",America/New_York,860,NA,US,41.75,-73.05,5280 +06792,UNIQUE,0,Torrington,Harwinton,"Mbi Inc",CT,"Litchfield County",America/New_York,,NA,US,41.77,-73.06,0 +06793,STANDARD,0,Washington,"Washington Depot, Washington Dt","Washington Green",CT,"Litchfield County",America/New_York,860,NA,US,41.63,-73.28,880 +06794,STANDARD,0,"Washington Depot","Washington Dt",Washington,CT,"Litchfield County",America/New_York,860,NA,US,41.65,-73.32,990 +06795,STANDARD,0,Watertown,,Oakville,CT,"Litchfield County",America/New_York,860,NA,US,41.61,-73.12,13090 +06796,STANDARD,0,"West Cornwall",,,CT,"Litchfield County",America/New_York,860,NA,US,41.87,-73.33,780 +06798,STANDARD,0,Woodbury,,,CT,"Litchfield County",America/New_York,203,NA,US,41.56,-73.2,8840 +06801,STANDARD,0,Bethel,,,CT,"Fairfield County",America/New_York,203,NA,US,41.37,-73.41,18510 +06804,STANDARD,0,Brookfield,"Brookfld Ctr","Brookfield Center",CT,"Fairfield County",America/New_York,203,NA,US,41.46,-73.39,16840 +06807,STANDARD,0,"Cos Cob",,,CT,"Fairfield County",America/New_York,203,NA,US,41.06,-73.59,7050 +06810,STANDARD,0,Danbury,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.4,-73.47,44870 +06811,STANDARD,0,Danbury,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.42,-73.48,26930 +06812,STANDARD,0,"New Fairfield",,,CT,"Fairfield County",America/New_York,203,NA,US,41.48,-73.48,13130 +06813,"PO BOX",0,Danbury,,,CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,1183 +06814,UNIQUE,1,Danbury,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,0 +06816,UNIQUE,1,Danbury,,"Grolier Entrprz Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,0 +06817,UNIQUE,1,Danbury,,"Union Carbide Corp",CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,0 +06820,STANDARD,0,Darien,,"Noroton, Noroton Heights, Tokeneke",CT,"Fairfield County",America/New_York,203,NA,US,41.05,-73.47,21290 +06824,STANDARD,0,Fairfield,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.13,-73.28,30410 +06825,STANDARD,0,Fairfield,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.2,-73.24,19370 +06828,STANDARD,0,Fairfield,,"General Electric",CT,"Fairfield County",America/New_York,203,NA,US,41.13,-73.28,0 +06829,"PO BOX",0,Georgetown,,,CT,"Fairfield County",America/New_York,203,NA,US,41.24,-73.43,284 +06830,STANDARD,0,Greenwich,,"Belle Haven",CT,"Fairfield County",America/New_York,203,NA,US,41.06,-73.63,21340 +06831,STANDARD,0,Greenwich,,Glenville,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.66,13360 +06832,UNIQUE,1,Greenwich,Brm,,CT,"Fairfield County",America/New_York,203,NA,US,41.02,-73.62,0 +06836,"PO BOX",0,Greenwich,,,CT,"Fairfield County",America/New_York,203,NA,US,41.06,-73.63,288 +06838,"PO BOX",0,"Greens Farms",,,CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.31,191 +06840,STANDARD,0,"New Canaan",,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.49,19340 +06842,UNIQUE,1,"New Canaan",,"V I P Serv Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.49,0 +06850,STANDARD,0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.13,-73.45,18580 +06851,STANDARD,0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.4,25470 +06852,"PO BOX",0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,469 +06853,STANDARD,0,Norwalk,,Rowayton,CT,"Fairfield County",America/New_York,203,NA,US,41.07,-73.44,3530 +06854,STANDARD,0,Norwalk,,"South Norwalk",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,25510 +06855,STANDARD,0,Norwalk,,"East Norwalk",CT,"Fairfield County",America/New_York,203,NA,US,41.08,-73.4,7210 +06856,"PO BOX",0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.11,-73.42,420 +06857,UNIQUE,0,Norwalk,,"Mbi Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06858,UNIQUE,0,Norwalk,,"Setan Industries",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06859,UNIQUE,1,Norwalk,,"Perkin Elmer Corp",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06860,UNIQUE,0,Norwalk,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06870,STANDARD,0,"Old Greenwich",,,CT,"Fairfield County",America/New_York,203,NA,US,41.03,-73.56,7230 +06875,"PO BOX",0,"Redding Center","Redding Ctr",,CT,"Fairfield County",America/New_York,203,NA,US,41.3,-73.38,107 +06876,"PO BOX",0,"Redding Ridge",,,CT,"Fairfield County",America/New_York,203,NA,US,41.3,-73.38,171 +06877,STANDARD,0,Ridgefield,,,CT,"Fairfield County",America/New_York,203,NA,US,41.27,-73.49,24340 +06878,STANDARD,0,Riverside,,,CT,"Fairfield County",America/New_York,203,NA,US,41.03,-73.58,8040 +06879,UNIQUE,0,Ridgefield,,"Promotion Systems Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.27,-73.49,0 +06880,STANDARD,0,Westport,,Saugatuck,CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,26050 +06881,"PO BOX",0,Westport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,222 +06883,STANDARD,0,Weston,,,CT,"Fairfield County",America/New_York,203,NA,US,41.22,-73.37,9950 +06888,UNIQUE,0,Westport,,"Promotional Dev Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,0 +06889,UNIQUE,0,Westport,,"Websters Unified",CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,0 +06890,STANDARD,0,Southport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.28,4360 +06896,STANDARD,0,Redding,"West Redding",,CT,"Fairfield County",America/New_York,203,NA,US,41.3,-73.38,8210 +06897,STANDARD,0,Wilton,,,CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.42,18040 +06901,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,"475,203",NA,US,41.05,-73.54,7270 +06902,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.06,-73.54,59640 +06903,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.57,13830 +06904,"PO BOX",0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,890 +06905,STANDARD,0,Stamford,Ridgeway,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,20230 +06906,STANDARD,0,Stamford,,Glenbrook,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.07,-73.52,8960 +06907,STANDARD,0,Stamford,,Springdale,CT,"Fairfield County",America/New_York,203,NA,US,41.1,-73.52,8940 +06910,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06911,"PO BOX",0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,398 +06912,"PO BOX",0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06913,UNIQUE,0,Stamford,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06914,UNIQUE,0,Stamford,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06920,UNIQUE,1,Stamford,,"Conn National Bank",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06921,UNIQUE,1,Stamford,,"Champion International",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06922,UNIQUE,1,Stamford,,"Clairol Co",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06925,UNIQUE,1,Stamford,,"Conn Bank & Trust",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06926,UNIQUE,0,Stamford,,"Pitney Bowes Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06927,UNIQUE,0,Stamford,,Gecc,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06928,UNIQUE,1,Stamford,,"International Masters Pub",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +07001,STANDARD,0,Avenel,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.58,-74.27,13750 +07002,STANDARD,0,Bayonne,,"Bergen Point, Pamrapo",NJ,"Hudson County",America/New_York,"201,551",NA,US,40.66,-74.11,60150 +07003,STANDARD,0,Bloomfield,,"Brookdale, Grove, North Center",NJ,"Essex County",America/New_York,"862,973",NA,US,40.81,-74.18,46850 +07004,STANDARD,0,Fairfield,,,NJ,"Essex County",America/New_York,862,NA,US,40.88,-74.3,7900 +07005,STANDARD,0,Boonton,"Boonton Township, Boonton Twp","Lake Intervale, Lk Intervale, Lyonsville, Meriden, Powerville, Rockaway Valley, Taylortown",NJ,"Morris County",America/New_York,"862,973",NA,US,40.9,-74.4,15070 +07006,STANDARD,0,Caldwell,"N Caldwell, North Caldwell, W Caldwell, West Caldwell",,NJ,"Essex County",America/New_York,"201,862,973",NA,US,40.85,-74.28,24720 +07007,"PO BOX",0,Caldwell,"West Caldwell",,NJ,"Essex County",America/New_York,862,NA,US,40.83,-74.27,134 +07008,STANDARD,0,Carteret,,"West Carteret",NJ,"Middlesex County",America/New_York,732,NA,US,40.58,-74.22,23040 +07009,STANDARD,0,"Cedar Grove",,Overbrook,NJ,"Essex County",America/New_York,973,NA,US,40.85,-74.22,12030 +07010,STANDARD,0,"Cliffside Park","Cliffside Pk","Cliff Park",NJ,"Bergen County",America/New_York,"201,551",NA,US,40.82,-73.99,21420 +07011,STANDARD,0,Clifton,,"Main Avenue Station",NJ,"Passaic County",America/New_York,862,NA,US,40.88,-74.14,38600 +07012,STANDARD,0,Clifton,,Allwood,NJ,"Passaic County",America/New_York,862,NA,US,40.85,-74.16,12590 +07013,STANDARD,0,Clifton,,,NJ,"Passaic County",America/New_York,862,NA,US,40.86,-74.15,26680 +07014,STANDARD,0,Clifton,,Delawanna,NJ,"Passaic County",America/New_York,862,NA,US,40.83,-74.14,5370 +07015,"PO BOX",0,Clifton,,,NJ,"Passaic County",America/New_York,862,NA,US,40.86,-74.15,914 +07016,STANDARD,0,Cranford,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.3,22870 +07017,STANDARD,0,"East Orange",,"Ampere, Doddtown",NJ,"Essex County",America/New_York,862,NA,US,40.77,-74.21,30610 +07018,STANDARD,0,"East Orange",,"Va Hospital",NJ,"Essex County",America/New_York,862,NA,US,40.76,-74.21,24050 +07019,"PO BOX",0,"East Orange",,,NJ,"Essex County",America/New_York,862,NA,US,40.76,-74.21,1398 +07020,STANDARD,0,Edgewater,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.82,-73.97,11850 +07021,STANDARD,0,"Essex Fells",,,NJ,"Essex County",America/New_York,862,NA,US,40.82,-74.28,2250 +07022,STANDARD,0,Fairview,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.81,-74,11300 +07023,STANDARD,0,Fanwood,,,NJ,"Union County",America/New_York,908,NA,US,40.64,-74.38,7770 +07024,STANDARD,0,"Fort Lee",,"Palisade, West Fort Lee",NJ,"Bergen County",America/New_York,,NA,US,40.85,-73.97,34240 +07026,STANDARD,0,Garfield,,"Outwater, Ritz",NJ,"Bergen County",America/New_York,,NA,US,40.87,-74.1,28750 +07027,STANDARD,0,Garwood,,,NJ,"Union County",America/New_York,,NA,US,40.65,-74.32,4060 +07028,STANDARD,0,"Glen Ridge",,,NJ,"Essex County",America/New_York,862,NA,US,40.8,-74.2,7970 +07029,STANDARD,0,Harrison,"East Newark",,NJ,"Hudson County",America/New_York,"201,862",NA,US,40.74,-74.15,17070 +07030,STANDARD,0,Hoboken,,"Castle Point, Uptown, Washington Street",NJ,"Hudson County",America/New_York,862,NA,US,40.75,-74.03,44510 +07031,STANDARD,0,"North Arlington","N Arlington",,NJ,"Bergen County",America/New_York,,NA,US,40.79,-74.12,15160 +07032,STANDARD,0,Kearny,,"Arlington, South Kearny, West Arlington",NJ,"Hudson County",America/New_York,"201,551",NA,US,40.75,-74.11,34930 +07033,STANDARD,0,Kenilworth,,,NJ,"Union County",America/New_York,908,NA,US,40.67,-74.28,7960 +07034,STANDARD,0,"Lake Hiawatha",,"Lk Hiawatha",NJ,"Morris County",America/New_York,,NA,US,40.88,-74.38,9310 +07035,STANDARD,0,"Lincoln Park",,,NJ,"Morris County",America/New_York,,NA,US,40.92,-74.3,9790 +07036,STANDARD,0,Linden,"Winfield Park","Tremley, Tremley Point",NJ,"Union County",America/New_York,908,NA,US,40.62,-74.23,40530 +07039,STANDARD,0,Livingston,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.78,-74.32,30890 +07040,STANDARD,0,Maplewood,,Maplecrest,NJ,"Essex County",America/New_York,862,NA,US,40.73,-74.27,24740 +07041,STANDARD,0,Millburn,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.72,-74.3,7280 +07042,STANDARD,0,Montclair,,,NJ,"Essex County",America/New_York,862,NA,US,40.82,-74.21,24350 +07043,STANDARD,0,Montclair,"Upper Montclair, Upr Montclair",,NJ,"Essex County",America/New_York,862,NA,US,40.84,-74.2,12300 +07044,STANDARD,0,Verona,,,NJ,"Essex County",America/New_York,973,NA,US,40.83,-74.24,13870 +07045,STANDARD,0,Montville,,"Lower Montville, Montville Township",NJ,"Morris County",America/New_York,,NA,US,40.9,-74.36,10310 +07046,STANDARD,0,"Mountain Lakes","Mountain Lks",,NJ,"Morris County",America/New_York,,NA,US,40.89,-74.44,4430 +07047,STANDARD,0,"North Bergen",,"Tyler Park, Woodcliff",NJ,"Hudson County",America/New_York,,NA,US,40.79,-74.02,51500 +07050,STANDARD,0,Orange,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.76,-74.23,26250 +07051,"PO BOX",0,Orange,,,NJ,"Essex County",America/New_York,862,NA,US,40.76,-74.23,860 +07052,STANDARD,0,"West Orange",,"Town Center",NJ,"Essex County",America/New_York,862,NA,US,40.79,-74.26,44260 +07054,STANDARD,0,Parsippany,,"Parsippany Troy Hills, Troy Hills",NJ,"Morris County",America/New_York,862,NA,US,40.85,-74.4,28580 +07055,STANDARD,0,Passaic,,"Dundee, Passaic Park",NJ,"Passaic County",America/New_York,"201,862,973",NA,US,40.85,-74.12,63890 +07057,STANDARD,0,Wallington,,,NJ,"Bergen County",America/New_York,,NA,US,40.85,-74.1,10690 +07058,STANDARD,0,"Pine Brook",,Pinebrook,NJ,"Morris County",America/New_York,,NA,US,40.86,-74.34,5460 +07059,STANDARD,0,Warren,,,NJ,"Somerset County",America/New_York,,NA,US,40.63,-74.51,16280 +07060,STANDARD,0,Plainfield,"N Plainfield, North Plainfield",Muhlenberg,NJ,"Union County",America/New_York,908,NA,US,40.62,-74.42,38900 +07061,"PO BOX",0,Plainfield,,,NJ,"Union County",America/New_York,908,NA,US,40.63,-74.4,1382 +07062,STANDARD,0,Plainfield,"N Plainfield, North Plainfield",,NJ,"Union County",America/New_York,908,NA,US,40.63,-74.4,12470 +07063,STANDARD,0,Plainfield,"N Plainfield, North Plainfield",,NJ,"Union County",America/New_York,"732,908",NA,US,40.61,-74.44,12590 +07064,STANDARD,0,"Port Reading",,,NJ,"Middlesex County",America/New_York,,NA,US,40.57,-74.25,3610 +07065,STANDARD,0,Rahway,,,NJ,"Union County",America/New_York,"908,732,848",NA,US,40.6,-74.28,26500 +07066,STANDARD,0,Clark,,,NJ,"Union County",America/New_York,"732,848,908",NA,US,40.62,-74.31,15020 +07067,STANDARD,0,Colonia,,,NJ,"Middlesex County",America/New_York,,NA,US,40.59,-74.31,18320 +07068,STANDARD,0,Roseland,,,NJ,"Essex County",America/New_York,862,NA,US,40.82,-74.3,6230 +07069,STANDARD,0,Watchung,Plainfield,,NJ,"Somerset County",America/New_York,908,NA,US,40.64,-74.44,6090 +07070,STANDARD,0,Rutherford,,,NJ,"Bergen County",America/New_York,201,NA,US,40.81,-74.1,17230 +07071,STANDARD,0,Lyndhurst,,,NJ,"Bergen County",America/New_York,,NA,US,40.8,-74.11,20170 +07072,STANDARD,0,Carlstadt,,,NJ,"Bergen County",America/New_York,,NA,US,40.82,-74.06,5740 +07073,STANDARD,0,"East Rutherford","E Rutherford",,NJ,"Bergen County",America/New_York,,NA,US,40.81,-74.08,8820 +07074,STANDARD,0,Moonachie,,,NJ,"Bergen County",America/New_York,,NA,US,40.84,-74.05,2870 +07075,STANDARD,0,"Wood Ridge",,,NJ,"Bergen County",America/New_York,,NA,US,40.85,-74.08,9560 +07076,STANDARD,0,"Scotch Plains",,,NJ,"Union County",America/New_York,,NA,US,40.63,-74.37,24100 +07077,STANDARD,0,Sewaren,,,NJ,"Middlesex County",America/New_York,,NA,US,40.55,-74.26,2500 +07078,STANDARD,0,"Short Hills",,,NJ,"Essex County",America/New_York,862,NA,US,40.74,-74.33,13780 +07079,STANDARD,0,"South Orange",,,NJ,"Essex County",America/New_York,862,NA,US,40.74,-74.26,15140 +07080,STANDARD,0,"South Plainfield","S Plainfield",,NJ,"Middlesex County",America/New_York,,NA,US,40.57,-74.41,23140 +07081,STANDARD,0,Springfield,,,NJ,"Union County",America/New_York,,NA,US,40.69,-74.32,16200 +07082,STANDARD,0,Towaco,,,NJ,"Morris County",America/New_York,,NA,US,40.93,-74.34,5690 +07083,STANDARD,0,Union,,"Chestnut, Townley, Union Center",NJ,"Union County",America/New_York,908,NA,US,40.69,-74.26,51410 +07086,STANDARD,0,Weehawken,,,NJ,"Hudson County",America/New_York,"201,551,908,973,732,862",NA,US,40.77,-74.02,13250 +07087,STANDARD,0,"Union City",,"Bergenline, Summit Avenue",NJ,"Hudson County",America/New_York,"862,201,551,908,973",NA,US,40.77,-74.03,56080 +07088,STANDARD,0,Vauxhall,,,NJ,"Union County",America/New_York,908,NA,US,40.72,-74.29,3080 +07090,STANDARD,0,Westfield,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.34,30400 +07091,"PO BOX",0,Westfield,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.34,179 +07092,STANDARD,0,Mountainside,,,NJ,"Union County",America/New_York,,NA,US,40.68,-74.36,6840 +07093,STANDARD,0,"West New York",Guttenberg,"Monitor, Taurus",NJ,"Hudson County",America/New_York,,NA,US,40.79,-74.01,51180 +07094,STANDARD,0,Secaucus,,,NJ,"Hudson County",America/New_York,"201,908,973",NA,US,40.78,-74.06,18880 +07095,STANDARD,0,Woodbridge,,,NJ,"Middlesex County",America/New_York,"732,848",NA,US,40.55,-74.28,19080 +07096,"PO BOX",0,Secaucus,,"Meadows, Plaza",NJ,"Hudson County",America/New_York,201,NA,US,40.78,-74.06,210 +07097,UNIQUE,0,"Jersey City",,"Nj International And Bmc",NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,16 +07099,UNIQUE,0,Kearny,,Usps,NJ,"Hudson County",America/New_York,201,NA,US,40.75,-74.11,0 +07101,"PO BOX",0,Newark,,,NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,2371 +07102,STANDARD,0,Newark,,"Academy, Midtown, Washington Park",NJ,"Essex County",America/New_York,"201,551,732,848,862,908,973",NA,US,40.74,-74.17,8620 +07103,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,"201,551,848,862,908,973,732",NA,US,40.74,-74.2,25220 +07104,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,973,NA,US,40.77,-74.17,42280 +07105,STANDARD,0,Newark,,Ironbound,NJ,"Essex County",America/New_York,"732,201,551,848,862,908,973",NA,US,40.72,-74.14,35170 +07106,STANDARD,0,Newark,,Vailsburg,NJ,"Essex County",America/New_York,"908,973",NA,US,40.74,-74.23,26120 +07107,STANDARD,0,Newark,,Roseville,NJ,"Essex County",America/New_York,"973,908",NA,US,40.76,-74.19,32360 +07108,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,"973,201,908",NA,US,40.72,-74.2,20820 +07109,STANDARD,0,Belleville,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.79,-74.16,34350 +07110,STANDARD,0,Nutley,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.81,-74.15,27840 +07111,STANDARD,0,Irvington,,"Township Of Irvington",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.23,48030 +07112,STANDARD,0,Newark,,Weequahic,NJ,"Essex County",America/New_York,"908,973",NA,US,40.71,-74.21,22290 +07114,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,973,NA,US,40.72,-74.17,7610 +07175,UNIQUE,0,Newark,,Usps,NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07182,UNIQUE,1,Newark,"Shared Firm Zip",,NJ,"Essex County",America/New_York,862,NA,US,40.73,-74.17,0 +07184,UNIQUE,0,Newark,,"Cenlar Bank",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07188,UNIQUE,0,Newark,,"Jp Morgan Chase",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07189,UNIQUE,0,Newark,,"Bank Of America",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07191,UNIQUE,0,Newark,,"Wachovia Bank",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07192,UNIQUE,0,Newark,,"Wachovia Bank",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07193,UNIQUE,0,Newark,,"Jp Morgan Chase",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07194,UNIQUE,1,Newark,,"Midlantic National Bank",NJ,"Essex County",America/New_York,862,NA,US,40.73,-74.17,0 +07195,UNIQUE,0,Newark,,"Bank Of New York",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07198,UNIQUE,0,Newark,,"Bank Of New York",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07199,UNIQUE,0,Newark,,"Merrill Lynch Inc",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07201,STANDARD,0,Elizabeth,,"Betsytown, Peterstown, Union Square",NJ,"Union County",America/New_York,"908,973",NA,US,40.69,-74.17,25330 +07202,STANDARD,0,Elizabeth,,"Bayway, Elmora, Parkandbush",NJ,"Union County",America/New_York,908,NA,US,40.65,-74.22,36280 +07203,STANDARD,0,Roselle,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.26,20280 +07204,STANDARD,0,"Roselle Park",,,NJ,"Union County",America/New_York,,NA,US,40.67,-74.27,12700 +07205,STANDARD,0,Hillside,"Ind Hillside, Industrial Hillside",,NJ,"Union County",America/New_York,,NA,US,40.69,-74.23,20920 +07206,STANDARD,0,Elizabethport,Elizabeth,,NJ,"Union County",America/New_York,908,NA,US,40.66,-74.19,26550 +07207,"PO BOX",0,Elizabeth,,,NJ,"Union County",America/New_York,908,NA,US,40.66,-74.19,2702 +07208,STANDARD,0,Elizabeth,,"North Elizabeth",NJ,"Union County",America/New_York,908,NA,US,40.67,-74.23,28820 +07302,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,"201,551,862,973,908",NA,US,40.72,-74.05,44720 +07303,"PO BOX",0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,2121 +07304,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,39700 +07305,STANDARD,0,"Jersey City",,"Ellis Island, Greenville",NJ,"Hudson County",America/New_York,201,NA,US,40.7,-74.08,56120 +07306,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.73,-74.07,47530 +07307,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.75,-74.06,37730 +07308,"PO BOX",0,"Jersey City",,"Five Corners",NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,142 +07309,STANDARD,1,"Jersey City",,"General Lafayette",NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.03,113 +07310,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,"908,201,551,862,973",NA,US,40.73,-74.04,12330 +07311,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,"201,908,551,862,973",NA,US,40.72,-74.03,1220 +07395,UNIQUE,0,"Jersey City",,Usps,NJ,"Hudson County",America/New_York,201,NA,US,40.72,-74.08,0 +07399,UNIQUE,0,"Jersey City",,Pershing,NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,0 +07401,STANDARD,0,Allendale,,,NJ,"Bergen County",America/New_York,,NA,US,41.03,-74.13,6650 +07403,STANDARD,0,Bloomingdale,,,NJ,"Passaic County",America/New_York,862,NA,US,41.02,-74.33,6920 +07405,STANDARD,0,Butler,Kinnelon,"Fayson Lake, Fayson Lakes, High Crest, Lindy Lake",NJ,"Morris County",America/New_York,"862,973",NA,US,40.99,-74.34,17260 +07407,STANDARD,0,"Elmwood Park",,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.9,-74.11,19630 +07410,STANDARD,0,"Fair Lawn",,"Fairlawn, Radburn",NJ,"Bergen County",America/New_York,"201,551",NA,US,40.93,-74.11,33020 +07416,STANDARD,0,Franklin,,"Beaver Lake",NJ,"Sussex County",America/New_York,"862,973",NA,US,41.11,-74.58,5010 +07417,STANDARD,0,"Franklin Lakes","Franklin Lks",,NJ,"Bergen County",America/New_York,,NA,US,41,-74.2,10900 +07418,STANDARD,0,Glenwood,,,NJ,"Sussex County",America/New_York,862,NA,US,41.24,-74.48,2120 +07419,STANDARD,0,Hamburg,,Hardyston,NJ,"Sussex County",America/New_York,862,NA,US,41.14,-74.57,8460 +07420,STANDARD,0,Haskell,,,NJ,"Passaic County",America/New_York,862,NA,US,41.02,-74.3,4460 +07421,STANDARD,0,Hewitt,,"Awosting, Greenwood Lake, Upper Greenwood Lake",NJ,"Passaic County",America/New_York,973,NA,US,41.16,-74.35,6470 +07422,STANDARD,0,"Highland Lakes","Highland Lks","Barry Lakes",NJ,"Sussex County",America/New_York,973,NA,US,41.17,-74.44,5980 +07423,STANDARD,0,"Ho Ho Kus",,,NJ,"Bergen County",America/New_York,,NA,US,41,-74.1,4250 +07424,STANDARD,0,"Little Falls","West Paterson, Woodland Park","Great Notch, Singac",NJ,"Passaic County",America/New_York,"862,973",NA,US,40.87,-74.21,22800 +07428,"PO BOX",0,"Mc Afee",,Mcafee,NJ,"Sussex County",America/New_York,862,NA,US,41.2,-74.55,607 +07430,STANDARD,0,Mahwah,,,NJ,"Bergen County",America/New_York,201,NA,US,41.08,-74.18,22460 +07432,STANDARD,0,"Midland Park",,"Midland Pk",NJ,"Bergen County",America/New_York,,NA,US,40.99,-74.14,6770 +07435,STANDARD,0,Newfoundland,,"Green Pond, Greenpond",NJ,"Passaic County",America/New_York,973,NA,US,41.07,-74.42,2290 +07436,STANDARD,0,Oakland,,,NJ,"Bergen County",America/New_York,201,NA,US,41.03,-74.24,12480 +07438,STANDARD,0,"Oak Ridge",,"Cozy Lake, Jefferson Township, Jefferson Twp, Lake Swannanoa",NJ,"Morris County",America/New_York,,NA,US,41.04,-74.48,10740 +07439,STANDARD,0,Ogdensburg,,,NJ,"Sussex County",America/New_York,973,NA,US,41.07,-74.59,2170 +07440,STANDARD,0,Pequannock,,"Pequannock Township",NJ,"Morris County",America/New_York,,NA,US,40.94,-74.29,4290 +07442,STANDARD,0,"Pompton Lakes",,"Pompton Falls",NJ,"Passaic County",America/New_York,"862,973",NA,US,41,-74.28,10230 +07444,STANDARD,0,"Pompton Plains","Pompton Plns",,NJ,"Morris County",America/New_York,,NA,US,40.96,-74.3,10750 +07446,STANDARD,0,Ramsey,,Darlington,NJ,"Bergen County",America/New_York,"201,551",NA,US,41.05,-74.14,14890 +07450,STANDARD,0,Ridgewood,,,NJ,"Bergen County",America/New_York,201,NA,US,40.98,-74.11,24980 +07451,"PO BOX",0,Ridgewood,,,NJ,"Bergen County",America/New_York,201,NA,US,40.98,-74.11,200 +07452,STANDARD,0,"Glen Rock",,,NJ,"Bergen County",America/New_York,201,NA,US,40.96,-74.13,12290 +07456,STANDARD,0,Ringwood,,"Cupsaw Lake, Erskine, Erskine Lakes, Skyline Lakes",NJ,"Passaic County",America/New_York,973,NA,US,41.11,-74.27,11350 +07457,STANDARD,0,Riverdale,,"Pompton Junction",NJ,"Morris County",America/New_York,,NA,US,40.99,-74.3,3940 +07458,STANDARD,0,"Saddle River","U Saddle Riv, Upper Saddle River",,NJ,"Bergen County",America/New_York,,NA,US,41.02,-74.09,11090 +07460,STANDARD,0,Stockholm,Hardyston,"Cliffwood Lake, Gerard, Lake Stockholm, Lake Tamarack, Silver Lake",NJ,"Sussex County",America/New_York,862,NA,US,41.1,-74.53,3020 +07461,STANDARD,0,Sussex,Wantage,"Beemerville, Colesville, High Point, High Point Park, Wallkill Lake, Wantage Twp",NJ,"Sussex County",America/New_York,973,NA,US,41.2,-74.6,17160 +07462,STANDARD,0,Vernon,,,NJ,"Sussex County",America/New_York,973,NA,US,41.18,-74.51,5940 +07463,STANDARD,0,Waldwick,,,NJ,"Bergen County",America/New_York,,NA,US,41.01,-74.12,9810 +07465,STANDARD,0,Wanaque,,Midvale,NJ,"Passaic County",America/New_York,862,NA,US,41.04,-74.29,6120 +07470,STANDARD,0,Wayne,,"Lionshead Lake, Mountain View, Packanack Lake, Packanack Lk, Pines Lake, Preakness",NJ,"Passaic County",America/New_York,"862,973",NA,US,40.94,-74.24,50130 +07474,"PO BOX",0,Wayne,,,NJ,"Passaic County",America/New_York,862,NA,US,40.94,-74.24,586 +07477,UNIQUE,1,Wayne,,"State Farm Insurance",NJ,"Passaic County",America/New_York,862,NA,US,40.92,-74.27,0 +07480,STANDARD,0,"West Milford",,"Gordon Lakes, Pine Cliff Lake, Shady Lake, West Milford Lakes",NJ,"Passaic County",America/New_York,"862,973",NA,US,41.1,-74.39,14240 +07481,STANDARD,0,Wyckoff,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.99,-74.16,16600 +07495,STANDARD,0,Mahwah,,,NJ,"Bergen County",America/New_York,201,NA,US,41.1,-74.16,0 +07501,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"973,862",NA,US,40.91,-74.16,30470 +07502,STANDARD,0,Paterson,Totowa,Hillcrest,NJ,"Passaic County",America/New_York,973,NA,US,40.92,-74.19,15500 +07503,STANDARD,0,Paterson,,"South Paterson",NJ,"Passaic County",America/New_York,862,NA,US,40.9,-74.15,17790 +07504,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,973,NA,US,40.91,-74.14,12480 +07505,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"862,973",NA,US,40.92,-74.17,1910 +07506,STANDARD,0,Hawthorne,,,NJ,"Passaic County",America/New_York,"862,973",NA,US,40.95,-74.15,17800 +07507,"PO BOX",0,Hawthorne,,,NJ,"Passaic County",America/New_York,862,NA,US,40.95,-74.15,202 +07508,STANDARD,0,Haledon,"North Haledon, Paterson, Prospect Park","Prospect Pk",NJ,"Passaic County",America/New_York,862,NA,US,40.96,-74.18,22310 +07509,"PO BOX",0,Paterson,,,NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,2343 +07510,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"862,973",NA,US,40.91,-74.16,0 +07511,"PO BOX",0,Totowa,Paterson,,NJ,"Passaic County",America/New_York,862,NA,US,40.9,-74.22,317 +07512,STANDARD,0,Totowa,Paterson,"Totowa Boro",NJ,"Passaic County",America/New_York,973,NA,US,40.9,-74.22,10220 +07513,STANDARD,0,Paterson,,"Peoples Park",NJ,"Passaic County",America/New_York,973,NA,US,40.91,-74.15,11510 +07514,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"973,201",NA,US,40.93,-74.14,17130 +07522,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,973,NA,US,40.92,-74.18,20090 +07524,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,862,NA,US,40.93,-74.16,12330 +07533,"PO BOX",0,Paterson,,"South Paterson",NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,168 +07538,"PO BOX",0,Haledon,Paterson,"North Haledon, Prospect Park",NJ,"Passaic County",America/New_York,862,NA,US,40.93,-74.18,349 +07543,"PO BOX",0,Paterson,,"Peoples Park",NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,462 +07544,"PO BOX",0,Paterson,,,NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,950 +07601,STANDARD,0,Hackensack,,Hack,NJ,"Bergen County",America/New_York,"201,551,862,973",NA,US,40.88,-74.04,38710 +07602,"PO BOX",0,Hackensack,,,NJ,"Bergen County",America/New_York,201,NA,US,40.88,-74.04,419 +07603,STANDARD,0,Bogota,,,NJ,"Bergen County",America/New_York,862,NA,US,40.87,-74.03,7800 +07604,STANDARD,0,"Hasbrouck Heights","Hasbrouck Hts",,NJ,"Bergen County",America/New_York,201,NA,US,40.86,-74.07,11710 +07605,STANDARD,0,Leonia,,,NJ,"Bergen County",America/New_York,201,NA,US,40.86,-73.99,8510 +07606,STANDARD,0,"South Hackensack","S Hackensack",,NJ,"Bergen County",America/New_York,862,NA,US,40.86,-74.04,2500 +07607,STANDARD,0,Maywood,,,NJ,"Bergen County",America/New_York,"201,973",NA,US,40.9,-74.06,9400 +07608,STANDARD,0,Teterboro,,,NJ,"Bergen County",America/New_York,201,NA,US,40.85,-74.06,57 +07620,"PO BOX",0,Alpine,,,NJ,"Bergen County",America/New_York,,NA,US,40.95,-73.92,1804 +07621,STANDARD,0,Bergenfield,,,NJ,"Bergen County",America/New_York,,NA,US,40.92,-73.99,26680 +07624,STANDARD,0,Closter,,,NJ,"Bergen County",America/New_York,201,NA,US,40.97,-73.96,8340 +07626,STANDARD,0,Cresskill,,,NJ,"Bergen County",America/New_York,,NA,US,40.94,-73.96,8390 +07627,STANDARD,0,Demarest,,,NJ,"Bergen County",America/New_York,,NA,US,40.95,-73.95,4780 +07628,STANDARD,0,Dumont,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.94,-73.99,16840 +07630,STANDARD,0,Emerson,,,NJ,"Bergen County",America/New_York,,NA,US,40.97,-74.02,7120 +07631,STANDARD,0,Englewood,,,NJ,"Bergen County",America/New_York,201,NA,US,40.89,-73.97,25420 +07632,STANDARD,0,"Englewood Cliffs","Englewd Clfs, Englewood",,NJ,"Bergen County",America/New_York,201,NA,US,40.88,-73.94,5440 +07640,STANDARD,0,"Harrington Park","Harrington Pk",,NJ,"Bergen County",America/New_York,,NA,US,40.98,-73.98,4670 +07641,STANDARD,0,Haworth,,,NJ,"Bergen County",America/New_York,,NA,US,40.96,-73.99,3380 +07642,STANDARD,0,Hillsdale,,,NJ,"Bergen County",America/New_York,,NA,US,41,-74.04,10160 +07643,STANDARD,0,"Little Ferry",,,NJ,"Bergen County",America/New_York,,NA,US,40.84,-74.04,9710 +07644,STANDARD,0,Lodi,,,NJ,"Bergen County",America/New_York,,NA,US,40.88,-74.08,22640 +07645,STANDARD,0,Montvale,,,NJ,"Bergen County",America/New_York,,NA,US,41.05,-74.04,8470 +07646,STANDARD,0,"New Milford",,"N Milford",NJ,"Bergen County",America/New_York,,NA,US,40.93,-74.02,15850 +07647,STANDARD,0,Northvale,Rockleigh,,NJ,"Bergen County",America/New_York,,NA,US,41,-73.95,4820 +07648,STANDARD,0,Norwood,,,NJ,"Bergen County",America/New_York,,NA,US,40.99,-73.95,5310 +07649,STANDARD,0,Oradell,,,NJ,"Bergen County",America/New_York,201,NA,US,40.95,-74.03,8160 +07650,STANDARD,0,"Palisades Park","Palisades Pk",,NJ,"Bergen County",America/New_York,,NA,US,40.84,-73.99,16130 +07652,STANDARD,0,Paramus,,,NJ,"Bergen County",America/New_York,201,NA,US,40.94,-74.07,25120 +07653,"PO BOX",0,Paramus,,,NJ,"Bergen County",America/New_York,201,NA,US,40.94,-74.07,208 +07656,STANDARD,0,"Park Ridge",,,NJ,"Bergen County",America/New_York,201,NA,US,41.03,-74.04,8610 +07657,STANDARD,0,Ridgefield,,Morsemere,NJ,"Bergen County",America/New_York,,NA,US,40.83,-74.01,10450 +07660,STANDARD,0,"Ridgefield Park","Ridgefield Pk",,NJ,"Bergen County",America/New_York,,NA,US,40.85,-74.02,12650 +07661,STANDARD,0,"River Edge",,,NJ,"Bergen County",America/New_York,,NA,US,40.92,-74.04,11820 +07662,STANDARD,0,"Rochelle Park",,,NJ,"Bergen County",America/New_York,"201,862,973",NA,US,40.91,-74.08,5420 +07663,STANDARD,0,"Saddle Brook",,,NJ,"Bergen County",America/New_York,"551,201,973",NA,US,40.9,-74.09,13750 +07666,STANDARD,0,Teaneck,,"West Englewood",NJ,"Bergen County",America/New_York,201,NA,US,40.88,-74.01,38820 +07670,STANDARD,0,Tenafly,,,NJ,"Bergen County",America/New_York,,NA,US,40.91,-73.95,14500 +07675,STANDARD,0,Westwood,"Old Tappan, River Vale, Rivervale",,NJ,"Bergen County",America/New_York,"201,551",NA,US,41,-74,26060 +07676,STANDARD,0,"Township Of Washington","Twp Washingtn, Twp Washinton, Washington Twps","Washington Tnshp, Washington Township, Washington Twnshp, Washington Twp, Washington Twsp",NJ,"Bergen County",America/New_York,,NA,US,40.98,-74.06,9160 +07677,STANDARD,0,"Woodcliff Lake","Westwood, Woodcliff Lk",,NJ,"Bergen County",America/New_York,"201,551",NA,US,41.02,-74.05,6220 +07699,UNIQUE,0,Teterboro,,"Nnj Metro P&Dc, Usps",NJ,"Bergen County",America/New_York,201,NA,US,40.85,-74.06,0 +07701,STANDARD,0,"Red Bank","Tinton Falls",Westboro,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.34,-74.06,22530 +07702,STANDARD,0,Shrewsbury,"Red Bank",,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.32,-74.05,4060 +07703,STANDARD,0,"Fort Monmouth","Red Bank",,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.32,-74.04,701 +07704,STANDARD,0,"Fair Haven","Red Bank",,NJ,"Monmouth County",America/New_York,732,NA,US,40.36,-74.03,6280 +07709,UNIQUE,1,"Red Bank",,"Jersey Central Power Light",NJ,"Monmouth County",America/New_York,732,NA,US,40.23,-74,0 +07710,"PO BOX",0,Adelphia,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.25,209 +07711,STANDARD,0,Allenhurst,"Loch Arbour, W Allenhurst, West Allenhurst",,NJ,"Monmouth County",America/New_York,,NA,US,40.24,-74.01,1270 +07712,STANDARD,0,"Asbury Park","Interlaken, Ocean, Tinton Falls","Wanamassa, Wayside",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.22,-74.01,34980 +07715,UNIQUE,0,Belmar,,"Nj Natural Gas Co",NJ,"Monmouth County",America/New_York,732,NA,US,40.17,-74.02,0 +07716,STANDARD,0,"Atlantic Highlands","Atlantic Hlds","Atlantic Hl",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.4,-74.03,7840 +07717,STANDARD,0,"Avon By The Sea","Avon By Sea",Avon,NJ,"Monmouth County",America/New_York,,NA,US,40.19,-74.01,1700 +07718,STANDARD,0,Belford,,,NJ,"Monmouth County",America/New_York,,NA,US,40.42,-74.09,5960 +07719,STANDARD,0,Belmar,"Lake Como, Wall, Wall Township","S Belmar, Shark River Manor, South Belmar, W Belmar, Wall Twp, West Belmar",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.17,-74.02,19950 +07720,STANDARD,0,"Bradley Beach",,,NJ,"Monmouth County",America/New_York,,NA,US,40.2,-74.01,3590 +07721,STANDARD,0,Cliffwood,,,NJ,"Monmouth County",America/New_York,,NA,US,40.44,-74.23,3490 +07722,STANDARD,0,"Colts Neck",,"Earle Naval Weapons Station, Phalanx, Vanderburg",NJ,"Monmouth County",America/New_York,,NA,US,40.28,-74.16,9950 +07723,STANDARD,0,Deal,"Ocean Townshp, Ocean Twp","Deal Park",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.25,-74,770 +07724,STANDARD,0,Eatontown,"Tinton Falls","Monmouth, Shrewsbury Township, Vail Homes",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.29,-74.05,21190 +07726,STANDARD,0,Englishtown,Manalapan,,NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.29,-74.36,43400 +07727,STANDARD,0,Farmingdale,"Tinton Falls, Wall Township","Wall, Wall Twp",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.19,-74.17,7170 +07728,STANDARD,0,Freehold,,"East Freehold, Georgia, Jerseyville, Millhurst",NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.25,-74.27,51550 +07730,STANDARD,0,Hazlet,,,NJ,"Monmouth County",America/New_York,,NA,US,40.42,-74.17,16160 +07731,STANDARD,0,Howell,"Wall Township","Wall Twp",NJ,"Monmouth County",America/New_York,,NA,US,40.14,-74.19,37940 +07732,STANDARD,0,Highlands,"Sandy Hook","Gateway National Recreation, Monmouth Hills",NJ,"Monmouth County",America/New_York,732,NA,US,40.4,-73.99,3790 +07733,STANDARD,0,Holmdel,,"Holmdel Village",NJ,"Monmouth County",America/New_York,732,NA,US,40.37,-74.17,16610 +07734,STANDARD,0,Keansburg,"Hazlet Township, Hazlet Twp","East Keansburg, Ideal Beach, W Keansburg, West Keansburg",NJ,"Monmouth County",America/New_York,732,NA,US,40.44,-74.13,10140 +07735,STANDARD,0,Keyport,"Union Beach","Cliffwood Bch, Cliffwood Beach",NJ,"Monmouth County",America/New_York,732,NA,US,40.43,-74.2,16810 +07737,STANDARD,0,Leonardo,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.41,-74.06,3890 +07738,STANDARD,0,Lincroft,,,NJ,"Monmouth County",America/New_York,,NA,US,40.34,-74.12,6710 +07739,STANDARD,0,"Little Silver",,"Little Silver Point",NJ,"Monmouth County",America/New_York,,NA,US,40.33,-74.03,6120 +07740,STANDARD,0,"Long Branch",Elberon,"West End",NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.29,-73.98,24630 +07746,STANDARD,0,Marlboro,,Bradevelt,NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.31,-74.25,18350 +07747,STANDARD,0,Matawan,Aberdeen,Strathmore,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.41,-74.23,29630 +07748,STANDARD,0,Middletown,"N Middletown, New Monmouth, North Middletown",,NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.39,-74.11,27140 +07750,STANDARD,0,"Monmouth Beach","Monmouth Bch",,NJ,"Monmouth County",America/New_York,,NA,US,40.33,-73.98,3090 +07751,STANDARD,0,Morganville,,,NJ,"Monmouth County",America/New_York,,NA,US,40.36,-74.25,21030 +07752,"PO BOX",0,Navesink,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.39,-74.11,294 +07753,STANDARD,0,Neptune,"Neptune City, Tinton Falls, Wall Township","Shark River Hills, Wall",NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.08,34340 +07754,"PO BOX",0,Neptune,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.08,557 +07755,STANDARD,0,Oakhurst,,"Elberon Park",NJ,"Monmouth County",America/New_York,,NA,US,40.26,-74.02,5750 +07756,STANDARD,0,"Ocean Grove",,,NJ,"Monmouth County",America/New_York,,NA,US,40.21,-74.01,2260 +07757,STANDARD,0,Oceanport,,"Monmouth Park, Sands Point",NJ,"Monmouth County",America/New_York,"732,908",NA,US,40.31,-74.02,5430 +07758,STANDARD,0,"Port Monmouth",,"Cedar Beach",NJ,"Monmouth County",America/New_York,,NA,US,40.43,-74.1,4570 +07760,STANDARD,0,Rumson,"Locust, Sea Bright",,NJ,"Monmouth County",America/New_York,,NA,US,40.36,-74,9230 +07762,STANDARD,0,"Spring Lake",,"Spring Heights, Spring Lake Heights, Wall Township, Wall Twp",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.15,-74.02,7820 +07763,"PO BOX",0,Tennent,,,NJ,"Monmouth County",America/New_York,,NA,US,40.29,-74.36,86 +07764,STANDARD,0,"West Long Branch","W Long Branch",,NJ,"Monmouth County",America/New_York,"732,908",NA,US,40.29,-74.01,6300 +07765,"PO BOX",0,Wickatunk,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.35,-74.26,54 +07799,STANDARD,0,Eatontown,,,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.29,-74.05,0 +07801,STANDARD,0,Dover,,"Victory Gardens",NJ,"Morris County",America/New_York,"862,973",NA,US,40.88,-74.55,22270 +07802,"PO BOX",0,Dover,,,NJ,"Morris County",America/New_York,862,NA,US,40.88,-74.55,1307 +07803,STANDARD,0,"Mine Hill",Dover,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.87,-74.6,3600 +07806,STANDARD,0,"Picatinny Arsenal","Dover, Picatinny Ars",,NJ,"Morris County",America/New_York,"973,862",NA,US,40.93,-74.54,0 +07820,"PO BOX",0,Allamuchy,,,NJ,"Warren County",America/New_York,908,NA,US,40.93,-74.81,299 +07821,STANDARD,0,Andover,"Byram Township, Byram Twp, Green Township, Green Twp",,NJ,"Sussex County",America/New_York,973,NA,US,40.98,-74.74,8440 +07822,STANDARD,0,Augusta,,,NJ,"Sussex County",America/New_York,862,NA,US,41.14,-74.71,1020 +07823,STANDARD,0,Belvidere,,,NJ,"Warren County",America/New_York,908,NA,US,40.82,-75.07,6380 +07825,STANDARD,0,Blairstown,"Hardwick, Johnsonburg",,NJ,"Warren County",America/New_York,908,NA,US,40.98,-74.96,8370 +07826,STANDARD,0,Branchville,Sandyston,,NJ,"Sussex County",America/New_York,"862,973",NA,US,41.14,-74.74,5420 +07827,STANDARD,0,Montague,"Branchville, Sandyston",,NJ,"Sussex County",America/New_York,"862,973",NA,US,41.29,-74.74,3470 +07828,STANDARD,0,"Budd Lake",,"Mount Olive",NJ,"Morris County",America/New_York,,NA,US,40.87,-74.73,12930 +07829,"PO BOX",0,Buttzville,,,NJ,"Warren County",America/New_York,908,NA,US,40.82,-75.04,154 +07830,STANDARD,0,Califon,"Tewksbury Township, Tewksbury Twp",,NJ,"Hunterdon County",America/New_York,908,NA,US,40.72,-74.79,6210 +07831,STANDARD,0,Changewater,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.74,-74.95,142 +07832,STANDARD,0,Columbia,,,NJ,"Warren County",America/New_York,908,NA,US,40.95,-75.06,3460 +07833,"PO BOX",0,Delaware,,,NJ,"Warren County",America/New_York,908,NA,US,40.89,-75.07,170 +07834,STANDARD,0,Denville,,,NJ,"Morris County",America/New_York,,NA,US,40.89,-74.48,17610 +07836,STANDARD,0,Flanders,"Roxbury Township, Roxbury Twp",,NJ,"Morris County",America/New_York,,NA,US,40.84,-74.7,12030 +07837,"PO BOX",0,Glasser,,,NJ,"Sussex County",America/New_York,862,NA,US,40.98,-74.63,135 +07838,STANDARD,0,"Great Meadows",,,NJ,"Warren County",America/New_York,908,NA,US,40.89,-74.91,3120 +07839,"PO BOX",0,Greendell,,,NJ,"Sussex County",America/New_York,862,NA,US,40.97,-74.81,182 +07840,STANDARD,0,Hackettstown,,"Allamuchy Twp",NJ,"Warren County",America/New_York,908,NA,US,40.85,-74.82,28370 +07842,"PO BOX",0,Hibernia,,,NJ,"Morris County",America/New_York,862,NA,US,40.94,-74.51,170 +07843,STANDARD,0,Hopatcong,,,NJ,"Sussex County",America/New_York,"862,973",NA,US,40.95,-74.65,10590 +07844,"PO BOX",0,Hope,,,NJ,"Warren County",America/New_York,908,NA,US,40.91,-74.96,669 +07845,"PO BOX",0,Ironia,,,NJ,"Morris County",America/New_York,862,NA,US,40.85,-74.57,265 +07846,"PO BOX",0,Johnsonburg,,,NJ,"Warren County",America/New_York,908,NA,US,40.97,-74.88,225 +07847,STANDARD,0,Kenvil,,,NJ,"Morris County",America/New_York,,NA,US,40.88,-74.62,1680 +07848,STANDARD,0,Lafayette,,,NJ,"Sussex County",America/New_York,862,NA,US,41.09,-74.68,3930 +07849,STANDARD,0,"Lake Hopatcong","Lk Hopatcong",,NJ,"Morris County",America/New_York,973,NA,US,40.96,-74.61,8060 +07850,STANDARD,0,Landing,,,NJ,"Morris County",America/New_York,,NA,US,40.9,-74.66,6030 +07851,STANDARD,0,Layton,Sandyston,,NJ,"Sussex County",America/New_York,973,NA,US,41.23,-74.85,360 +07852,STANDARD,0,Ledgewood,,,NJ,"Morris County",America/New_York,,NA,US,40.88,-74.66,3650 +07853,STANDARD,0,"Long Valley",,,NJ,"Morris County",America/New_York,908,NA,US,40.78,-74.76,12680 +07855,"PO BOX",0,Middleville,,,NJ,"Sussex County",America/New_York,862,NA,US,41.06,-74.89,137 +07856,STANDARD,0,"Mount Arlington","Mt Arlington",,NJ,"Morris County",America/New_York,,NA,US,40.91,-74.64,4380 +07857,STANDARD,0,Netcong,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.9,-74.7,3000 +07860,STANDARD,0,Newton,"Fredon, Fredon Township, Fredon Twp",,NJ,"Sussex County",America/New_York,"862,973",NA,US,41.05,-74.75,22170 +07863,STANDARD,0,Oxford,,,NJ,"Warren County",America/New_York,908,NA,US,40.81,-74.99,3800 +07865,STANDARD,0,"Port Murray",,,NJ,"Warren County",America/New_York,908,NA,US,40.79,-74.91,2420 +07866,STANDARD,0,Rockaway,"Rockaway Boro, Rockaway Borough",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.95,-74.49,21930 +07869,STANDARD,0,Randolph,"Chester Twp, Dover",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.84,-74.58,25150 +07870,"PO BOX",0,"Schooleys Mountain","Schooleys Mtn",,NJ,"Morris County",America/New_York,908,NA,US,40.8,-74.82,135 +07871,STANDARD,0,Sparta,,,NJ,"Sussex County",America/New_York,973,NA,US,41.04,-74.62,20170 +07874,STANDARD,0,Stanhope,,,NJ,"Sussex County",America/New_York,862,NA,US,40.91,-74.7,8260 +07875,"PO BOX",0,Stillwater,,,NJ,"Sussex County",America/New_York,862,NA,US,41.05,-74.86,301 +07876,STANDARD,0,Succasunna,,,NJ,"Morris County",America/New_York,"201,862,973",NA,US,40.85,-74.65,10220 +07877,"PO BOX",0,Swartswood,,,NJ,"Sussex County",America/New_York,862,NA,US,41.09,-74.84,271 +07878,"PO BOX",0,"Mount Tabor",,Tabor,NJ,"Morris County",America/New_York,,NA,US,40.87,-74.47,990 +07879,"PO BOX",0,Tranquility,,,NJ,"Sussex County",America/New_York,862,NA,US,40.95,-74.8,235 +07880,"PO BOX",0,Vienna,,,NJ,"Warren County",America/New_York,908,NA,US,40.87,-74.89,235 +07881,STANDARD,0,"Wallpack Center","Wallpack Ctr",,NJ,"Sussex County",America/New_York,862,NA,US,41.12,-74.91,0 +07882,STANDARD,0,Washington,,,NJ,"Warren County",America/New_York,908,NA,US,40.75,-74.98,13220 +07885,STANDARD,0,Wharton,,,NJ,"Morris County",America/New_York,,NA,US,40.89,-74.58,10820 +07890,UNIQUE,0,Branchville,,"Selected Risks Insurance Co",NJ,"Sussex County",America/New_York,862,NA,US,41.14,-74.74,0 +07901,STANDARD,0,Summit,,,NJ,"Union County",America/New_York,908,NA,US,40.71,-74.36,22700 +07902,"PO BOX",0,Summit,,,NJ,"Union County",America/New_York,908,NA,US,40.71,-74.36,360 +07920,STANDARD,0,"Basking Ridge",,,NJ,"Somerset County",America/New_York,,NA,US,40.67,-74.56,26960 +07921,STANDARD,0,Bedminster,,,NJ,"Somerset County",America/New_York,908,NA,US,40.65,-74.67,7080 +07922,STANDARD,0,"Berkeley Heights","Berkeley Hts",,NJ,"Union County",America/New_York,,NA,US,40.67,-74.42,12280 +07924,STANDARD,0,Bernardsville,,,NJ,"Somerset County",America/New_York,"908,973",NA,US,40.73,-74.59,7250 +07926,"PO BOX",0,Brookside,,,NJ,"Morris County",America/New_York,,NA,US,40.8,-74.57,1063 +07927,STANDARD,0,"Cedar Knolls",,,NJ,"Morris County",America/New_York,"908,973",NA,US,40.82,-74.45,3840 +07928,STANDARD,0,Chatham,"Chatham Twp",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.74,-74.38,19740 +07930,STANDARD,0,Chester,,,NJ,"Morris County",America/New_York,908,NA,US,40.78,-74.69,8540 +07931,STANDARD,0,"Far Hills",,,NJ,"Somerset County",America/New_York,908,NA,US,40.69,-74.62,3100 +07932,STANDARD,0,"Florham Park",,,NJ,"Morris County",America/New_York,973,NA,US,40.77,-74.39,10310 +07933,STANDARD,0,Gillette,,,NJ,"Morris County",America/New_York,,NA,US,40.7,-74.47,3130 +07934,STANDARD,0,Gladstone,,,NJ,"Somerset County",America/New_York,908,NA,US,40.72,-74.67,1500 +07935,STANDARD,0,"Green Village",,,NJ,"Morris County",America/New_York,973,NA,US,40.74,-74.45,580 +07936,STANDARD,0,"East Hanover",,,NJ,"Morris County",America/New_York,,NA,US,40.81,-74.36,11130 +07938,"PO BOX",0,"Liberty Corner","Liberty Cor",,NJ,"Somerset County",America/New_York,908,NA,US,40.68,-74.56,267 +07939,STANDARD,0,Lyons,"Basking Ridge",,NJ,"Somerset County",America/New_York,908,NA,US,40.67,-74.55,151 +07940,STANDARD,0,Madison,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.75,-74.41,14810 +07945,STANDARD,0,Mendham,"Mendham Township, Mendham Twp",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.76,-74.59,9830 +07946,STANDARD,0,Millington,,,NJ,"Morris County",America/New_York,908,NA,US,40.66,-74.51,3130 +07950,STANDARD,0,"Morris Plains","Greystone Park, Greystone Pk",,NJ,"Morris County",America/New_York,,NA,US,40.83,-74.48,19930 +07960,STANDARD,0,Morristown,,,NJ,"Morris County",America/New_York,"201,862,973",NA,US,40.79,-74.47,38520 +07961,"PO BOX",0,"Convent Station","Convent Sta, Morristown",,NJ,"Morris County",America/New_York,862,NA,US,40.78,-74.43,450 +07962,"PO BOX",0,Morristown,,,NJ,"Morris County",America/New_York,862,NA,US,40.79,-74.47,365 +07963,"PO BOX",0,Morristown,,,NJ,"Morris County",America/New_York,862,NA,US,40.79,-74.47,348 +07970,"PO BOX",0,"Mount Freedom",,,NJ,"Morris County",America/New_York,862,NA,US,40.81,-74.57,140 +07974,STANDARD,0,"New Providence","New Providnce","Murray Hill",NJ,"Union County",America/New_York,,NA,US,40.7,-74.4,12550 +07976,STANDARD,0,"New Vernon",,,NJ,"Morris County",America/New_York,,NA,US,40.73,-74.48,1130 +07977,"PO BOX",0,Peapack,,,NJ,"Somerset County",America/New_York,,NA,US,40.71,-74.67,954 +07978,"PO BOX",0,Pluckemin,,,NJ,"Somerset County",America/New_York,908,NA,US,40.66,-74.68,166 +07979,"PO BOX",0,Pottersville,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.7,-74.72,659 +07980,STANDARD,0,Stirling,,,NJ,"Morris County",America/New_York,,NA,US,40.68,-74.49,2340 +07981,STANDARD,0,Whippany,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.82,-74.41,9040 +07983,UNIQUE,1,Whippany,"Corporate Mailings",,NJ,"Morris County",America/New_York,862,NA,US,40.82,-74.41,0 +07999,STANDARD,0,Whippany,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.82,-74.41,0 +08001,"PO BOX",0,Alloway,,"Paradise Lakes",NJ,"Salem County",America/New_York,856,NA,US,39.56,-75.34,1362 +08002,STANDARD,0,"Cherry Hill",,"Cherry Hill Township, Ellisburg, Erlton",NJ,"Camden County",America/New_York,856,NA,US,39.93,-75.03,21220 +08003,STANDARD,0,"Cherry Hill",,"Cherry Hill Township, Woodcrest",NJ,"Camden County",America/New_York,856,NA,US,39.88,-74.97,29670 +08004,STANDARD,0,Atco,,"Waterford Township, West Atco",NJ,"Camden County",America/New_York,,NA,US,39.76,-74.85,10840 +08005,STANDARD,0,Barnegat,,"Barnegat Township, Warren Grove",NJ,"Ocean County",America/New_York,609,NA,US,39.75,-74.22,23290 +08006,"PO BOX",0,"Barnegat Light","Barnegat Lgt","Barnegat Light Boro",NJ,"Ocean County",America/New_York,,NA,US,39.75,-74.11,716 +08007,STANDARD,0,Barrington,,,NJ,"Camden County",America/New_York,,NA,US,39.87,-75.05,4530 +08008,STANDARD,0,"Beach Haven","Harvey Cedars, Long Bch Twp, Long Beach, Long Beach Township, Ship Bottom, Surf City","Brant Beach, Harvey Cedars Boro, High Bar Harbor, Loveladies, North Beach, Ship Bottom Boro, Surf City Boro",NJ,"Ocean County",America/New_York,609,NA,US,39.54,-74.3,6330 +08009,STANDARD,0,Berlin,"Berlin Boro","Albion, East Berlin, Tansboro",NJ,"Camden County",America/New_York,856,NA,US,39.79,-74.93,12240 +08010,STANDARD,0,Beverly,"Edgewater Park, Edgewater Prk",,NJ,"Burlington County",America/New_York,,NA,US,40.06,-74.92,9620 +08011,"PO BOX",0,Birmingham,,,NJ,"Burlington County",America/New_York,,NA,US,39.97,-74.71,120 +08012,STANDARD,0,Blackwood,Turnersville,"Blenheim, Chews Landing, Hilltop, Lakeland",NJ,"Camden County",America/New_York,856,NA,US,39.79,-75.06,34430 +08014,STANDARD,0,Bridgeport,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.8,-75.34,430 +08015,STANDARD,0,"Browns Mills",,,NJ,"Burlington County",America/New_York,609,NA,US,39.95,-74.55,17360 +08016,STANDARD,0,Burlington,"Burlington City, Burlington Township, Burlngtn City, Burlngtn Twp",,NJ,"Burlington County",America/New_York,609,NA,US,40.07,-74.85,30970 +08018,"PO BOX",0,"Cedar Brook",,,NJ,"Camden County",America/New_York,,NA,US,39.72,-74.9,307 +08019,STANDARD,0,Chatsworth,,,NJ,"Burlington County",America/New_York,,NA,US,39.78,-74.53,830 +08020,STANDARD,0,Clarksboro,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.8,-75.22,2610 +08021,STANDARD,0,Clementon,"Laurel Spgs, Laurel Springs, Lindenwold, Pine Hill, Pine Valley",,NJ,"Camden County",America/New_York,"609,856",NA,US,39.8,-74.98,40250 +08022,STANDARD,0,Columbus,,Mansfield,NJ,"Burlington County",America/New_York,,NA,US,40.06,-74.68,9000 +08023,"PO BOX",0,Deepwater,,,NJ,"Salem County",America/New_York,856,NA,US,39.69,-75.5,526 +08025,"PO BOX",0,Ewan,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.71,-75.23,192 +08026,STANDARD,0,Gibbsboro,,,NJ,"Camden County",America/New_York,856,NA,US,39.83,-74.96,2150 +08027,STANDARD,0,Gibbstown,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.82,-75.27,4470 +08028,STANDARD,0,Glassboro,,Aura,NJ,"Gloucester County",America/New_York,856,NA,US,39.7,-75.11,14910 +08029,STANDARD,0,Glendora,,,NJ,"Camden County",America/New_York,856,NA,US,39.84,-75.06,4210 +08030,STANDARD,0,"Gloucester City","Brooklawn, Gloucester Cy, Gloucstr City",Gloucester,NJ,"Camden County",America/New_York,856,NA,US,39.89,-75.11,11050 +08031,STANDARD,0,Bellmawr,,"Gloucester, Gloucstr City",NJ,"Camden County",America/New_York,856,NA,US,39.86,-75.09,10440 +08032,STANDARD,0,Grenloch,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.77,-75.05,431 +08033,STANDARD,0,Haddonfield,,"East Haddonfield, Tavistock",NJ,"Camden County",America/New_York,"609,856",NA,US,39.89,-75.03,16760 +08034,STANDARD,0,"Cherry Hill",,"Ashland, Cherry Hill Township",NJ,"Camden County",America/New_York,856,NA,US,39.9,-74.99,18140 +08035,STANDARD,0,"Haddon Heights","Haddon Hgts, Haddon Hts",,NJ,"Camden County",America/New_York,"856,609",NA,US,39.88,-75.07,7270 +08036,STANDARD,0,Hainesport,"Hainesport Township, Hainesprt Twp",,NJ,"Burlington County",America/New_York,609,NA,US,39.98,-74.82,6010 +08037,STANDARD,0,Hammonton,"Batsto, Blue Anchor, Mullica","Ancora, Braddock, Elm, Folsom, Nesco, Rosedale, Sweetwater",NJ,"Atlantic County",America/New_York,609,NA,US,39.65,-74.77,21430 +08038,"PO BOX",0,"Hancocks Bridge","Hancocks Brg",,NJ,"Salem County",America/New_York,856,NA,US,39.47,-75.45,290 +08039,"PO BOX",0,Harrisonville,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.69,-75.28,229 +08041,STANDARD,0,Jobstown,,,NJ,"Burlington County",America/New_York,,NA,US,40.03,-74.68,870 +08042,"PO BOX",0,Juliustown,,,NJ,"Burlington County",America/New_York,,NA,US,40.02,-74.66,328 +08043,STANDARD,0,Voorhees,"Kirkwd Vrhes, Kirkwood","Echelon, Kirkwd Voorhs, Voorhees Kirkwood, Voorhees Township",NJ,"Camden County",America/New_York,,NA,US,39.84,-74.95,27010 +08045,STANDARD,0,Lawnside,,,NJ,"Camden County",America/New_York,,NA,US,39.87,-75.03,2400 +08046,STANDARD,0,Willingboro,,,NJ,"Burlington County",America/New_York,,NA,US,40.02,-74.88,28410 +08048,STANDARD,0,Lumberton,"Lumberton Township, Lumberton Twp",,NJ,"Burlington County",America/New_York,,NA,US,39.96,-74.8,11860 +08049,STANDARD,0,Magnolia,,,NJ,"Camden County",America/New_York,,NA,US,39.85,-75.03,4650 +08050,STANDARD,0,Manahawkin,"Stafford Township, Stafford Twp","Beach Haven West, Cedar Bonnet Island",NJ,"Ocean County",America/New_York,,NA,US,39.69,-74.25,24130 +08051,STANDARD,0,Mantua,"West Deptford","Mantua Heights",NJ,"Gloucester County",America/New_York,856,NA,US,39.79,-75.18,9720 +08052,STANDARD,0,"Maple Shade",,,NJ,"Burlington County",America/New_York,,NA,US,39.95,-74.99,17030 +08053,STANDARD,0,Marlton,Evesham,"Evesboro, Evesham Twp, Kresson, Marlton Lakes, North Marlton, Pine Grove",NJ,"Burlington County",America/New_York,856,NA,US,39.9,-74.92,44420 +08054,STANDARD,0,"Mount Laurel",,"Masonville, Mount Laurel Township, Rancocas Woods",NJ,"Burlington County",America/New_York,,NA,US,39.94,-74.9,41670 +08055,STANDARD,0,Medford,"Medford Lakes","Medford Lakes Boro, Medford Township",NJ,"Burlington County",America/New_York,609,NA,US,39.86,-74.82,28020 +08056,STANDARD,0,Mickleton,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.78,-75.25,5160 +08057,STANDARD,0,Moorestown,,Lenola,NJ,"Burlington County",America/New_York,"609,856",NA,US,39.97,-74.94,20660 +08059,STANDARD,0,"Mount Ephraim","W Colls Hgts, West Collingswood Heights",,NJ,"Camden County",America/New_York,856,NA,US,39.88,-75.09,5130 +08060,STANDARD,0,"Mount Holly","Eastamptn Twp, Eastampton, Eastampton Township, Westampton","Mount Holly Township, Westampton Township",NJ,"Burlington County",America/New_York,609,NA,US,39.99,-74.78,23010 +08061,STANDARD,0,"Mount Royal",,,NJ,"Gloucester County",America/New_York,856,NA,US,39.8,-75.21,3420 +08062,STANDARD,0,"Mullica Hill","S Harrisn Twp, South Harrison Township","Harrison Township, S Harrison Twp",NJ,"Gloucester County",America/New_York,"609,856",NA,US,39.73,-75.22,16740 +08063,STANDARD,0,"National Park","West Deptford",,NJ,"Gloucester County",America/New_York,856,NA,US,39.86,-75.18,2730 +08064,"PO BOX",0,"New Lisbon",,,NJ,"Burlington County",America/New_York,,NA,US,39.96,-74.64,591 +08065,STANDARD,0,Palmyra,,,NJ,"Burlington County",America/New_York,,NA,US,40,-75.03,6390 +08066,STANDARD,0,Paulsboro,"West Deptford",Billingsport,NJ,"Gloucester County",America/New_York,856,NA,US,39.83,-75.24,6600 +08067,STANDARD,0,Pedricktown,,,NJ,"Salem County",America/New_York,856,NA,US,39.73,-75.4,1720 +08068,STANDARD,0,Pemberton,,,NJ,"Burlington County",America/New_York,609,NA,US,39.97,-74.68,5720 +08069,STANDARD,0,"Penns Grove","Carneys Point","Carneys Point Township",NJ,"Salem County",America/New_York,856,NA,US,39.72,-75.46,10840 +08070,STANDARD,0,Pennsville,,,NJ,"Salem County",America/New_York,856,NA,US,39.65,-75.51,10750 +08071,STANDARD,0,Pitman,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.73,-75.13,8370 +08072,"PO BOX",0,Quinton,,,NJ,"Salem County",America/New_York,856,NA,US,39.54,-75.42,497 +08073,"PO BOX",0,Rancocas,,,NJ,"Burlington County",America/New_York,,NA,US,40.01,-74.87,378 +08074,"PO BOX",0,Richwood,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.72,-75.16,410 +08075,STANDARD,0,Riverside,"Delanco, Delran","Bridgeboro, Delanco Township, Delran Township, North Delran",NJ,"Burlington County",America/New_York,856,NA,US,40.03,-74.95,26530 +08076,"PO BOX",0,Riverton,,,NJ,"Burlington County",America/New_York,856,NA,US,40.01,-75.01,0 +08077,STANDARD,0,Riverton,Cinnaminson,"Cinnaminson Township",NJ,"Burlington County",America/New_York,856,NA,US,40.01,-75.01,18560 +08078,STANDARD,0,Runnemede,,,NJ,"Camden County",America/New_York,856,NA,US,39.85,-75.07,7130 +08079,STANDARD,0,Salem,Mannington,"Mannington Township",NJ,"Salem County",America/New_York,"609,856",NA,US,39.56,-75.47,8440 +08080,STANDARD,0,Sewell,,"Barnsboro, Cross Keys, Hurffville",NJ,"Gloucester County",America/New_York,856,NA,US,39.75,-75.09,36030 +08081,STANDARD,0,Sicklerville,Erial,,NJ,"Camden County",America/New_York,,NA,US,39.73,-74.98,46450 +08083,STANDARD,0,Somerdale,"Hi Nella",,NJ,"Camden County",America/New_York,,NA,US,39.84,-75.02,8880 +08084,STANDARD,0,Stratford,,,NJ,"Camden County",America/New_York,856,NA,US,39.83,-75.02,6340 +08085,STANDARD,0,Swedesboro,"Logan Township, Logan Twp, Woolwich Township, Woolwich Twp","Auburn, Logan, Woolwich",NJ,"Gloucester County",America/New_York,856,NA,US,39.74,-75.31,20200 +08086,STANDARD,0,Thorofare,"West Deptford",,NJ,"Gloucester County",America/New_York,856,NA,US,39.85,-75.18,7520 +08087,STANDARD,0,Tuckerton,"Little Egg Harbor, Little Egg Harbor Twp, Ltl Egg Hbr, Mystic Islands, Mystic Islnds","Leh, Parkertown, Tuckerton Boro, West Tuckerton",NJ,"Ocean County",America/New_York,609,NA,US,39.59,-74.32,21880 +08088,STANDARD,0,Vincentown,"Shamong, Southampton, Tabernacle","Indian Mills, Shamong Township, Southampton Twp, Tabernacle Twp",NJ,"Burlington County",America/New_York,609,NA,US,39.8,-74.62,22440 +08089,STANDARD,0,"Waterford Works","Chesilhurst, Waterford Wks",Waterford,NJ,"Camden County",America/New_York,,NA,US,39.71,-74.81,3450 +08090,STANDARD,0,Wenonah,,"Oak Valley",NJ,"Gloucester County",America/New_York,856,NA,US,39.79,-75.14,7970 +08091,STANDARD,0,"West Berlin","Berlin Township, Berlin Twp",,NJ,"Camden County",America/New_York,,NA,US,39.81,-74.92,5210 +08092,STANDARD,0,"West Creek",,"Cedar Run, Eagleswood Township, Mayetta, Staffordville",NJ,"Ocean County",America/New_York,,NA,US,39.65,-74.28,3500 +08093,STANDARD,0,Westville,"West Deptford","Verga, Westville Grove",NJ,"Gloucester County",America/New_York,856,NA,US,39.86,-75.13,8390 +08094,STANDARD,0,Williamstown,,"Cecil, Collings Lakes",NJ,"Gloucester County",America/New_York,856,NA,US,39.68,-74.98,36590 +08095,"PO BOX",0,Winslow,,,NJ,"Camden County",America/New_York,,NA,US,39.65,-74.86,351 +08096,STANDARD,0,Woodbury,"Blackwood Ter, Blackwood Terrace, Deptford, West Deptford","Almonesson, Deptford Township, Jericho",NJ,"Gloucester County",America/New_York,"609,856",NA,US,39.83,-75.15,31610 +08097,STANDARD,0,"Woodbury Heights","Deptford, Woodbury, Woodbury Hts","Woodbury Hgts",NJ,"Gloucester County",America/New_York,"609,856",NA,US,39.81,-75.15,3020 +08098,STANDARD,0,Woodstown,"Pilesgrove, Pilesgrove Township, Pilesgrv Twp",Sharptown,NJ,"Salem County",America/New_York,856,NA,US,39.65,-75.32,8260 +08099,"PO BOX",0,Bellmawr,,,NJ,"Camden County",America/New_York,856,NA,US,39.86,-75.09,260 +08101,"PO BOX",0,Camden,,,NJ,"Camden County",America/New_York,856,NA,US,39.93,-75.1,742 +08102,STANDARD,0,Camden,,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.95,-75.12,5330 +08103,STANDARD,0,Camden,,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.94,-75.11,9040 +08104,STANDARD,0,Camden,"Haddon Township, Haddon Twp","South Camden",NJ,"Camden County",America/New_York,856,NA,US,39.93,-75.1,17450 +08105,STANDARD,0,Camden,,"East Camden",NJ,"Camden County",America/New_York,"609,856",NA,US,39.95,-75.09,23780 +08106,STANDARD,0,Audubon,,"Audubon Park",NJ,"Camden County",America/New_York,856,NA,US,39.89,-75.07,8890 +08107,STANDARD,0,Oaklyn,"Collingswood, Haddon Township, Haddon Twp, W Colls, West Collingswood, Woodlynne",,NJ,"Camden County",America/New_York,856,NA,US,39.9,-75.08,11770 +08108,STANDARD,0,Collingswood,"Haddon Township, Haddon Twp, Westmont",,NJ,"Camden County",America/New_York,856,NA,US,39.91,-75.07,16700 +08109,STANDARD,0,Merchantville,Pennsauken,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.95,-75.05,20220 +08110,STANDARD,0,Pennsauken,Delair,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.97,-75.06,17810 +08201,STANDARD,0,Absecon,,"Absecon City, Absecon Heights, Absecon Highlands, Galloway, Galloway Township, Pinehurst, Smithville",NJ,"Atlantic County",America/New_York,609,NA,US,39.42,-74.49,9690 +08202,STANDARD,0,Avalon,,,NJ,"Cape May County",America/New_York,609,NA,US,39.09,-74.73,1160 +08203,STANDARD,0,Brigantine,,"Brigantine City",NJ,"Atlantic County",America/New_York,609,NA,US,39.41,-74.36,7010 +08204,STANDARD,0,"Cape May","N Cape May, North Cape May, West Cape May","Cold Spring, Erma, Fishing Creek, Town Bank",NJ,"Cape May County",America/New_York,609,NA,US,38.94,-74.9,15080 +08205,STANDARD,0,Absecon,"Galloway, Smithville","Galloway Township",NJ,"Atlantic County",America/New_York,609,NA,US,39.48,-74.47,26160 +08210,STANDARD,0,"Cape May Court House","Cape May Ch","Burleigh, Clermont, Mayville, Swainton",NJ,"Cape May County",America/New_York,609,NA,US,39.07,-74.82,15290 +08212,"PO BOX",0,"Cape May Point","Cape May Pt",,NJ,"Cape May County",America/New_York,609,NA,US,38.93,-74.96,258 +08213,"PO BOX",0,Cologne,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.51,-74.56,381 +08214,"PO BOX",0,Dennisville,,"North Dennis",NJ,"Cape May County",America/New_York,609,NA,US,39.22,-74.85,484 +08215,STANDARD,0,"Egg Harbor City","Egg Harbor Cy, Egg Hbr City","Devonshire, Egg Harbor, Germania, Green Bank, Lower Bank, South Egg Harbor, Weekstown",NJ,"Atlantic County",America/New_York,609,NA,US,39.56,-74.59,11320 +08217,"PO BOX",0,Elwood,,,NJ,"Atlantic County",America/New_York,,NA,US,39.57,-74.72,314 +08218,"PO BOX",0,Goshen,,,NJ,"Cape May County",America/New_York,609,NA,US,39.11,-74.86,235 +08219,"PO BOX",0,"Green Creek",,,NJ,"Cape May County",America/New_York,609,NA,US,39.04,-74.91,462 +08220,"PO BOX",0,"Leeds Point",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.49,-74.43,148 +08221,STANDARD,0,Linwood,,,NJ,"Atlantic County",America/New_York,,NA,US,39.34,-74.57,6710 +08223,STANDARD,0,Marmora,,"Beesleys Point, Palermo",NJ,"Cape May County",America/New_York,609,NA,US,39.26,-74.66,4000 +08224,"PO BOX",0,"New Gretna",,,NJ,"Burlington County",America/New_York,,NA,US,39.6,-74.47,714 +08225,STANDARD,0,Northfield,,,NJ,"Atlantic County",America/New_York,,NA,US,39.37,-74.55,8030 +08226,STANDARD,0,"Ocean City",,,NJ,"Cape May County",America/New_York,609,NA,US,39.26,-74.6,9880 +08230,STANDARD,0,"Ocean View","Upper Twp","Palermo, Seaville",NJ,"Cape May County",America/New_York,609,NA,US,39.2,-74.71,5660 +08231,"PO BOX",0,Oceanville,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.48,-74.47,259 +08232,STANDARD,0,Pleasantville,"Mckee City","Bargaintown, Egg Harbor Township, Egg Harbor Twp, Egg Hbr Twp, Farmington, West Atlantic City",NJ,"Atlantic County",America/New_York,609,NA,US,39.39,-74.51,17730 +08234,STANDARD,0,"Egg Harbor Township","Egg Harbor Twp, Egg Hbr Twp","Bargaintown, Mckee City, Steelmanville",NJ,"Atlantic County",America/New_York,609,NA,US,39.41,-74.58,43460 +08240,"PO BOX",0,Pomona,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.49,-74.53,780 +08241,STANDARD,0,"Port Republic",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.53,-74.48,1140 +08242,STANDARD,0,"Rio Grande",,,NJ,"Cape May County",America/New_York,609,NA,US,39.02,-74.87,3770 +08243,STANDARD,0,"Sea Isle City","Townsend Inlt, Townsends Inlet",,NJ,"Cape May County",America/New_York,609,NA,US,39.15,-74.69,1750 +08244,STANDARD,0,"Somers Point",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.31,-74.6,9140 +08245,"PO BOX",0,"South Dennis",,,NJ,"Cape May County",America/New_York,609,NA,US,39.17,-74.82,182 +08246,"PO BOX",0,"South Seaville","S Seaville",,NJ,"Cape May County",America/New_York,609,NA,US,39.18,-74.77,305 +08247,STANDARD,0,"Stone Harbor",,,NJ,"Cape May County",America/New_York,609,NA,US,39.04,-74.76,680 +08248,"PO BOX",0,Strathmere,,,NJ,"Cape May County",America/New_York,609,NA,US,39.19,-74.66,144 +08250,"PO BOX",0,Tuckahoe,,,NJ,"Cape May County",America/New_York,609,NA,US,39.28,-74.78,536 +08251,STANDARD,0,Villas,"Del Haven","Miami Beach",NJ,"Cape May County",America/New_York,609,NA,US,39.01,-74.93,8360 +08252,"PO BOX",0,Whitesboro,,,NJ,"Cape May County",America/New_York,609,NA,US,39.04,-74.86,410 +08260,STANDARD,0,Wildwood,"N Wildwood, North Wildwood, West Wildwood, Wildwood Crest, Wildwood Crst","Anglesea, Grassy Sound, Shaw Crest, Wildwood City",NJ,"Cape May County",America/New_York,609,NA,US,38.98,-74.82,11870 +08270,STANDARD,0,Woodbine,"Corbin City, Dennis Twp","Belleplain, Eldora, Petersburg, Steelmantown",NJ,"Cape May County",America/New_York,609,NA,US,39.22,-74.8,6550 +08302,STANDARD,0,Bridgeton,"Deerfield Twp","Fairfield Twp, Stow Creek Twp, Upper Deerfield Twp",NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.42,-75.22,36460 +08310,STANDARD,0,Buena,,"Buena Vista Township",NJ,"Atlantic County",America/New_York,,NA,US,39.53,-74.9,1470 +08311,STANDARD,0,Cedarville,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.32,-75.2,1810 +08312,STANDARD,0,Clayton,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.65,-75.08,7480 +08313,"PO BOX",0,"Deerfield Street","Deerfield St",Deerfield,NJ,"Cumberland County",America/New_York,856,NA,US,39.49,-75.21,151 +08314,STANDARD,0,Delmont,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.22,-74.94,210 +08315,"PO BOX",0,"Dividing Creek","Dividing Crk",,NJ,"Cumberland County",America/New_York,856,NA,US,39.22,-75.13,295 +08316,"PO BOX",0,Dorchester,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.27,-74.95,554 +08317,STANDARD,0,Dorothy,,,NJ,"Atlantic County",America/New_York,,NA,US,39.4,-74.82,1100 +08318,STANDARD,0,Elmer,Pittsgrove,"Centerton, Daretown, Pittsgrov Twp, Pittsgrove Township",NJ,"Salem County",America/New_York,856,NA,US,39.59,-75.17,11030 +08319,STANDARD,0,"Estell Manor",,,NJ,"Atlantic County",America/New_York,,NA,US,39.37,-74.81,1180 +08320,"PO BOX",0,Fairton,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.39,-75.16,413 +08321,"PO BOX",0,Fortescue,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.22,-75.13,234 +08322,STANDARD,0,Franklinville,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.61,-75.02,9580 +08323,STANDARD,0,Greenwich,,"Greenwich Township",NJ,"Cumberland County",America/New_York,856,NA,US,39.39,-75.36,730 +08324,STANDARD,0,Heislerville,,"Thompson Beach",NJ,"Cumberland County",America/New_York,856,NA,US,39.24,-74.99,350 +08326,STANDARD,0,Landisville,,,NJ,"Atlantic County",America/New_York,,NA,US,39.52,-74.93,1480 +08327,STANDARD,0,Leesburg,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.25,-74.96,680 +08328,STANDARD,0,Malaga,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.57,-75.06,1190 +08329,"PO BOX",0,Mauricetown,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.28,-75.01,283 +08330,STANDARD,0,"Mays Landing",,"Belcoville, English Creek, Scullville, Weymouth",NJ,"Atlantic County",America/New_York,609,NA,US,39.45,-74.72,25980 +08332,STANDARD,0,Millville,,"Carmel, Laurel Lake",NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.39,-75.05,30100 +08340,STANDARD,0,Milmay,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.44,-74.86,800 +08341,STANDARD,0,Minotola,,,NJ,"Atlantic County",America/New_York,,NA,US,39.53,-74.95,1440 +08342,"PO BOX",0,Mizpah,,,NJ,"Atlantic County",America/New_York,,NA,US,39.46,-74.72,322 +08343,STANDARD,0,Monroeville,,,NJ,"Gloucester County",America/New_York,,NA,US,39.64,-75.16,4380 +08344,STANDARD,0,Newfield,,"Willow Grove",NJ,"Gloucester County",America/New_York,,NA,US,39.54,-75.01,5380 +08345,STANDARD,0,Newport,,"Gandys Beach",NJ,"Cumberland County",America/New_York,856,NA,US,39.28,-75.16,650 +08346,STANDARD,0,Newtonville,,,NJ,"Atlantic County",America/New_York,,NA,US,39.56,-74.85,620 +08347,"PO BOX",0,Norma,,,NJ,"Salem County",America/New_York,856,NA,US,39.54,-75.13,425 +08348,STANDARD,0,"Port Elizabeth","Prt Elizabeth",,NJ,"Cumberland County",America/New_York,856,NA,US,39.31,-74.97,260 +08349,STANDARD,0,"Port Norris",,Bivalve,NJ,"Cumberland County",America/New_York,856,NA,US,39.24,-75.04,1480 +08350,STANDARD,0,Richland,,,NJ,"Atlantic County",America/New_York,,NA,US,39.49,-74.88,720 +08352,"PO BOX",0,Rosenhayn,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.48,-75.13,1083 +08353,STANDARD,0,Shiloh,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.46,-75.29,490 +08360,STANDARD,0,Vineland,,"East Vineland, South Vineland",NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.5,-75.01,38090 +08361,STANDARD,0,Vineland,"S Vineland, South Vineland",,NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.46,-74.99,16410 +08362,"PO BOX",0,Vineland,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.46,-74.99,1470 +08401,STANDARD,0,"Atlantic City",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.36,-74.42,29400 +08402,STANDARD,0,"Margate City",,Margate,NJ,"Atlantic County",America/New_York,609,NA,US,39.33,-74.5,4670 +08403,STANDARD,0,Longport,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.32,-74.54,740 +08404,"PO BOX",0,"Atlantic City",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.36,-74.42,1401 +08405,UNIQUE,0,"Atlantic City",,"Nat Aviation Fac Exp Ctr",NJ,"Atlantic County",America/New_York,609,NA,US,39.36,-74.42,0 +08406,STANDARD,0,"Ventnor City",,"Ventnor, Ventnor Heights",NJ,"Atlantic County",America/New_York,609,NA,US,39.34,-74.48,7970 +08501,STANDARD,0,Allentown,,"Upper Freehold",NJ,"Monmouth County",America/New_York,609,NA,US,40.17,-74.58,6610 +08502,STANDARD,0,"Belle Mead",,Montgomery,NJ,"Somerset County",America/New_York,908,NA,US,40.46,-74.64,11580 +08504,"PO BOX",0,Blawenburg,,,NJ,"Somerset County",America/New_York,908,NA,US,40.4,-74.7,102 +08505,STANDARD,0,Bordentown,Fieldsboro,,NJ,"Burlington County",America/New_York,609,NA,US,40.14,-74.7,16950 +08510,STANDARD,0,"Millstone Township","Clarksburg, Millstone Twp",Millstone,NJ,"Monmouth County",America/New_York,732,NA,US,40.19,-74.42,4900 +08511,STANDARD,0,Cookstown,,,NJ,"Burlington County",America/New_York,,NA,US,40.04,-74.55,910 +08512,STANDARD,0,Cranbury,"East Windsor","E Windsor",NJ,"Mercer County",America/New_York,609,NA,US,40.31,-74.51,11670 +08514,STANDARD,0,"Cream Ridge",,"Creamridge, Upper Freehold Township",NJ,"Monmouth County",America/New_York,,NA,US,40.14,-74.49,4470 +08515,STANDARD,0,Chesterfield,Crosswicks,"Chesterfield Township",NJ,"Burlington County",America/New_York,,NA,US,40.15,-74.66,6150 +08518,STANDARD,0,Florence,,,NJ,"Burlington County",America/New_York,609,NA,US,40.11,-74.8,5400 +08520,STANDARD,0,Hightstown,"East Windsor","E Windsor",NJ,"Mercer County",America/New_York,609,NA,US,40.26,-74.52,27350 +08525,STANDARD,0,Hopewell,,"Hopewell Township, Hopewell Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.38,-74.76,4440 +08526,"PO BOX",0,Imlaystown,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.16,-74.49,31 +08527,STANDARD,0,Jackson,,"Jackson Township, Jackson Twp",NJ,"Ocean County",America/New_York,732,NA,US,40.1,-74.35,53140 +08528,STANDARD,0,Kingston,,,NJ,"Somerset County",America/New_York,609,NA,US,40.39,-74.62,360 +08530,STANDARD,0,Lambertville,,"West Amwell",NJ,"Hunterdon County",America/New_York,609,NA,US,40.36,-74.94,6920 +08533,STANDARD,0,"New Egypt",,"Plumsted, Plumsted Township, Plumsted Twp",NJ,"Ocean County",America/New_York,609,NA,US,40.06,-74.53,6330 +08534,STANDARD,0,Pennington,,,NJ,"Mercer County",America/New_York,609,NA,US,40.32,-74.79,12950 +08535,STANDARD,0,"Millstone Township","Millstone Twp, Perrineville",Millstone,NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.44,5210 +08536,STANDARD,0,Plainsboro,,,NJ,"Middlesex County",America/New_York,609,NA,US,40.33,-74.58,19110 +08540,STANDARD,0,Princeton,,"Princeton Township, Princeton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,42820 +08541,UNIQUE,0,Princeton,,"Educational Testing Service",NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,0 +08542,STANDARD,0,Princeton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.66,2780 +08543,"PO BOX",0,Princeton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,403 +08544,UNIQUE,0,Princeton,,"Princeton University",NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,806 +08550,STANDARD,0,"Princeton Junction","Princeton Jct, West Windsor","W Windsor, W Windsor Township, West Win Tow",NJ,"Mercer County",America/New_York,609,NA,US,40.28,-74.61,20750 +08551,STANDARD,0,Ringoes,,"East Amwell, East Amwell Township, East Amwell Twp",NJ,"Hunterdon County",America/New_York,,NA,US,40.44,-74.82,5620 +08553,STANDARD,0,"Rocky Hill",,,NJ,"Somerset County",America/New_York,,NA,US,40.4,-74.63,770 +08554,STANDARD,0,Roebling,,,NJ,"Burlington County",America/New_York,,NA,US,40.12,-74.78,3470 +08555,"PO BOX",0,Roosevelt,,,NJ,"Monmouth County",America/New_York,,NA,US,40.22,-74.47,880 +08556,STANDARD,0,Rosemont,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.42,-74.99,158 +08557,"PO BOX",0,Sergeantsville,Sergeantsvlle,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.45,-74.94,288 +08558,STANDARD,0,Skillman,,Montgomery,NJ,"Somerset County",America/New_York,,NA,US,40.41,-74.7,7630 +08559,STANDARD,0,Stockton,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.4,-74.97,4370 +08560,STANDARD,0,Titusville,Ewing,,NJ,"Mercer County",America/New_York,609,NA,US,40.31,-74.86,3370 +08561,"PO BOX",0,Windsor,,,NJ,"Mercer County",America/New_York,609,NA,US,40.25,-74.58,258 +08562,STANDARD,0,Wrightstown,,"Jacobstown, North Hanover",NJ,"Burlington County",America/New_York,,NA,US,40.06,-74.59,4600 +08601,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,76 +08602,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,113 +08603,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,78 +08604,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,125 +08605,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,84 +08606,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,90 +08607,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,993 +08608,STANDARD,0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,740 +08609,STANDARD,0,Trenton,Hamilton,,NJ,"Mercer County",America/New_York,609,NA,US,40.23,-74.74,10690 +08610,STANDARD,0,Trenton,Hamilton,"Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.19,-74.72,28530 +08611,STANDARD,0,Trenton,Hamilton,"Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.18,-74.74,19890 +08618,STANDARD,0,Trenton,Ewing,"Ewing Township, Ewing Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.25,-74.79,26950 +08619,STANDARD,0,Trenton,"Hamilton, Mercerville","Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.24,-74.7,20960 +08620,STANDARD,0,Trenton,Hamilton,"Groveville, Hamilton Township, Hamilton Twp, Yardville",NJ,"Mercer County",America/New_York,609,NA,US,40.17,-74.65,11230 +08625,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,679 +08628,STANDARD,0,Trenton,"Ewing, West Trenton","Ewing Township, Ewing Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.26,-74.83,8610 +08629,STANDARD,0,Trenton,Hamilton,"Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.73,11370 +08638,STANDARD,0,Trenton,Ewing,"Ewing Township, Ewing Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.25,-74.76,18930 +08640,STANDARD,0,"Joint Base Mdl","Fort Dix, Jb Mdl","Ft Dix",NJ,"Burlington County",America/New_York,609,NA,US,40,-74.59,2680 +08641,STANDARD,0,"Joint Base Mdl","Jb Mdl, Mc Guire AFB, Trenton","Mc Guire Air Force Base",NJ,"Burlington County",America/New_York,609,NA,US,40.02,-74.59,4200 +08644,STANDARD,1,Trenton,Hamilton,,NJ,,America/New_York,,NA,US,40.22,-74.76,0 +08645,UNIQUE,0,Trenton,,"Nj Income Tax, State Income Tax",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08646,UNIQUE,0,Trenton,,"Division Of Revenue, Nj Taxation Dept",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08647,UNIQUE,0,Trenton,,"Nj Income Tax",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08648,STANDARD,0,"Lawrence Township","Lawrence, Lawrence Twp, Lawrenceville, Trenton",,NJ,"Mercer County",America/New_York,609,NA,US,40.28,-74.72,27760 +08650,"PO BOX",0,Trenton,Hamilton,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,390 +08666,UNIQUE,0,Trenton,,"Nj Motor Vehicles",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08690,STANDARD,0,Trenton,"Hamilton, Hamilton Sq, Hamilton Square","Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.66,18740 +08691,STANDARD,0,Robbinsville,"Hamilton, Trenton","Hamilton Township, Hamilton Twp, Uppr Free Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.21,-74.59,16260 +08695,UNIQUE,0,Trenton,,"Division Of Revenue, Nj Taxation Dept",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08701,STANDARD,0,Lakewood,,,NJ,"Ocean County",America/New_York,"732,848,908",NA,US,40.09,-74.21,115570 +08720,"PO BOX",0,Allenwood,,,NJ,"Monmouth County",America/New_York,,NA,US,40.13,-74.09,1077 +08721,STANDARD,0,Bayville,,"Berkeley Township, Berkeley Twp",NJ,"Ocean County",America/New_York,,NA,US,39.91,-74.21,19730 +08722,STANDARD,0,Beachwood,,,NJ,"Ocean County",America/New_York,,NA,US,39.92,-74.2,10190 +08723,STANDARD,0,Brick,Osbornville,Bricktown,NJ,"Ocean County",America/New_York,732,NA,US,40.04,-74.11,28850 +08724,STANDARD,0,Brick,"Wall Township","Bricktown, Wall Twp",NJ,"Ocean County",America/New_York,732,NA,US,40.06,-74.11,38000 +08730,STANDARD,0,Brielle,,,NJ,"Monmouth County",America/New_York,,NA,US,40.1,-74.06,4990 +08731,STANDARD,0,"Forked River",,Lacey,NJ,"Ocean County",America/New_York,609,NA,US,39.84,-74.19,19360 +08732,"PO BOX",0,"Island Heights","Island Hgts",,NJ,"Ocean County",America/New_York,,NA,US,39.94,-74.14,1648 +08733,STANDARD,0,Lakehurst,"Jb Mdl, Joint Base Mdl, Lakehurst Nae, Lakehurst Naec","Manchester, Manchester Township, Manchester Twp",NJ,"Ocean County",America/New_York,"732,848",NA,US,40.01,-74.32,2410 +08734,STANDARD,0,"Lanoka Harbor",,"Lacey Township",NJ,"Ocean County",America/New_York,609,NA,US,39.86,-74.16,7160 +08735,STANDARD,0,Lavallette,,,NJ,"Ocean County",America/New_York,,NA,US,39.98,-74.07,2630 +08736,STANDARD,0,Manasquan,,"Wall Township, Wall Twp",NJ,"Monmouth County",America/New_York,732,NA,US,40.11,-74.03,12220 +08738,STANDARD,0,Mantoloking,,,NJ,"Ocean County",America/New_York,,NA,US,40.02,-74.06,680 +08739,"PO BOX",0,"Normandy Beach","Normandy Bch",,NJ,"Ocean County",America/New_York,,NA,US,40,-74.06,494 +08740,"PO BOX",0,"Ocean Gate",,,NJ,"Ocean County",America/New_York,,NA,US,39.93,-74.13,1904 +08741,STANDARD,0,"Pine Beach",,,NJ,"Ocean County",America/New_York,,NA,US,39.93,-74.17,2650 +08742,STANDARD,0,"Point Pleasant Beach","Bay Head, Point Pleasant Boro, Pt Pleas Bch, Pt Pleasant, Pt Pleasant Beach","Point Pleasant",NJ,"Ocean County",America/New_York,"732,848",NA,US,40.09,-74.04,23480 +08750,STANDARD,0,"Sea Girt",,"Wall Township, Wall Twp",NJ,"Monmouth County",America/New_York,,NA,US,40.12,-74.03,3280 +08751,STANDARD,0,"Seaside Heights","Seaside Hgts","Ortley Beach, Pelican Island",NJ,"Ocean County",America/New_York,,NA,US,39.94,-74.07,3050 +08752,STANDARD,0,"Seaside Park",,"S Seaside Pk, South Seaside Park",NJ,"Ocean County",America/New_York,732,NA,US,39.79,-74.09,1770 +08753,STANDARD,0,"Toms River",,"Berkeley, Dover Township, Dover Twp",NJ,"Ocean County",America/New_York,"732,848,908",NA,US,39.95,-74.18,58030 +08754,"PO BOX",0,"Toms River",,,NJ,"Ocean County",America/New_York,732,NA,US,39.95,-74.18,743 +08755,STANDARD,0,"Toms River",,,NJ,"Ocean County",America/New_York,"732,848,908",NA,US,40.01,-74.22,24690 +08756,"PO BOX",0,"Toms River",,,NJ,"Ocean County",America/New_York,732,NA,US,39.95,-74.18,93 +08757,STANDARD,0,"Toms River","Berkeley, Manchester","Berkeley Township, Berkeley Twp, S Toms River, South Toms River",NJ,"Ocean County",America/New_York,"732,848,908",NA,US,39.94,-74.25,28720 +08758,STANDARD,0,Waretown,,,NJ,"Ocean County",America/New_York,609,NA,US,39.78,-74.19,7220 +08759,STANDARD,0,"Manchester Township","Lakehurst, Manchester, Manchester Tw, Whiting",,NJ,"Ocean County",America/New_York,"732,848",NA,US,39.93,-74.39,27900 +08801,STANDARD,0,Annandale,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.62,-74.89,7160 +08802,STANDARD,0,Asbury,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.67,-75.02,4000 +08803,"PO BOX",0,Baptistown,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.49,-75,158 +08804,STANDARD,0,Bloomsbury,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.65,-75.08,2820 +08805,STANDARD,0,"Bound Brook",,"Bound Brk",NJ,"Somerset County",America/New_York,"848,732",NA,US,40.56,-74.53,11750 +08807,STANDARD,0,Bridgewater,,,NJ,"Somerset County",America/New_York,,NA,US,40.59,-74.62,38160 +08808,"PO BOX",0,Broadway,,,NJ,"Warren County",America/New_York,908,NA,US,40.73,-75.05,271 +08809,STANDARD,0,Clinton,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.63,-74.91,5310 +08810,STANDARD,0,Dayton,,"South Brunswick",NJ,"Middlesex County",America/New_York,732,NA,US,40.38,-74.51,8180 +08812,STANDARD,0,Dunellen,"Green Brook",,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.6,-74.48,13980 +08816,STANDARD,0,"East Brunswick","E Brunswick",,NJ,"Middlesex County",America/New_York,732,NA,US,40.42,-74.41,47410 +08817,STANDARD,0,Edison,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.51,-74.39,44110 +08818,"PO BOX",0,Edison,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.52,-74.36,781 +08820,STANDARD,0,Edison,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.58,-74.37,40310 +08821,"PO BOX",0,Flagtown,,,NJ,"Somerset County",America/New_York,,NA,US,40.52,-74.69,497 +08822,STANDARD,0,Flemington,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.5,-74.86,30310 +08823,STANDARD,0,"Franklin Park",,,NJ,"Somerset County",America/New_York,732,NA,US,40.44,-74.54,8600 +08824,STANDARD,0,"Kendall Park",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.42,-74.55,13280 +08825,STANDARD,0,Frenchtown,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.52,-75.05,4060 +08826,STANDARD,0,"Glen Gardner",,,NJ,"Hunterdon County",America/New_York,,NA,US,40.69,-74.94,5040 +08827,STANDARD,0,Hampton,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.7,-74.96,4220 +08828,STANDARD,0,Helmetta,,,NJ,"Middlesex County",America/New_York,,NA,US,40.38,-74.42,2240 +08829,STANDARD,0,"High Bridge",,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.66,-74.89,3440 +08830,STANDARD,0,Iselin,,,NJ,"Middlesex County",America/New_York,,NA,US,40.57,-74.31,19000 +08831,STANDARD,0,"Monroe Township","Jamesburg, Monroe, Monroe Twp",,NJ,"Middlesex County",America/New_York,732,NA,US,40.34,-74.44,53620 +08832,STANDARD,0,Keasbey,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.51,-74.31,2990 +08833,STANDARD,0,Lebanon,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.64,-74.83,8740 +08834,"PO BOX",0,"Little York",,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.6,-75.05,19 +08835,STANDARD,0,Manville,,,NJ,"Somerset County",America/New_York,,NA,US,40.54,-74.58,9680 +08836,STANDARD,0,Martinsville,,,NJ,"Somerset County",America/New_York,,NA,US,40.6,-74.56,3950 +08837,STANDARD,0,Edison,,"Menlo Park",NJ,"Middlesex County",America/New_York,"848,908,732",NA,US,40.52,-74.36,15930 +08840,STANDARD,0,Metuchen,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.54,-74.36,17080 +08844,STANDARD,0,Hillsborough,,Millstone,NJ,"Somerset County",America/New_York,848,NA,US,40.47,-74.62,41310 +08846,STANDARD,0,Middlesex,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.57,-74.5,13530 +08848,STANDARD,0,Milford,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.56,-75.09,7760 +08850,STANDARD,0,Milltown,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.45,-74.43,8090 +08852,STANDARD,0,"Monmouth Junction","Monmouth Jct",,NJ,"Middlesex County",America/New_York,"732,848",NA,US,40.38,-74.54,18560 +08853,STANDARD,0,"Neshanic Station","Branchburg, Neshanic Sta",,NJ,"Somerset County",America/New_York,908,NA,US,40.53,-74.74,5170 +08854,STANDARD,0,Piscataway,,,NJ,"Middlesex County",America/New_York,"732,908",NA,US,40.51,-74.45,49100 +08855,"PO BOX",0,Piscataway,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.51,-74.45,496 +08857,STANDARD,0,"Old Bridge",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.39,-74.33,37960 +08858,"PO BOX",0,Oldwick,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.68,-74.74,761 +08859,STANDARD,0,Parlin,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.46,-74.3,22600 +08861,STANDARD,0,"Perth Amboy",Hopelawn,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.52,-74.27,52450 +08862,"PO BOX",0,"Perth Amboy",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.52,-74.27,1833 +08863,STANDARD,0,Fords,"Perth Amboy",,NJ,"Middlesex County",America/New_York,"848,908,732",NA,US,40.54,-74.31,12120 +08865,STANDARD,0,Phillipsburg,Alpha,"Delaware Park, Harmony Township, Lopatcong",NJ,"Warren County",America/New_York,908,NA,US,40.68,-75.18,26470 +08867,STANDARD,0,Pittstown,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.57,-74.96,5020 +08868,"PO BOX",0,Quakertown,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.55,-74.94,129 +08869,STANDARD,0,Raritan,,,NJ,"Somerset County",America/New_York,,NA,US,40.57,-74.64,7440 +08870,"PO BOX",0,Readington,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.57,-74.73,74 +08871,"PO BOX",0,Sayreville,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.46,-74.32,115 +08872,STANDARD,0,Sayreville,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.44,-74.36,18880 +08873,STANDARD,0,Somerset,,"East Millstone, Franklin Twp, Middlebush, Zarepath",NJ,"Somerset County",America/New_York,"908,732",NA,US,40.49,-74.48,50710 +08875,"PO BOX",0,Somerset,"E Millstone, East Millstone",,NJ,"Somerset County",America/New_York,732,NA,US,40.49,-74.48,735 +08876,STANDARD,0,Somerville,"Branchburg, North Branch","Finderne, South Branch",NJ,"Somerset County",America/New_York,"732,908",NA,US,40.57,-74.61,21190 +08879,STANDARD,0,"South Amboy","Laurence Harbor, Laurence Hbr",Morgan,NJ,"Middlesex County",America/New_York,732,NA,US,40.47,-74.29,20260 +08880,STANDARD,0,"South Bound Brook","S Bound Brook",,NJ,"Somerset County",America/New_York,"732,848",NA,US,40.55,-74.52,4340 +08882,STANDARD,0,"South River",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.44,-74.37,14410 +08884,STANDARD,0,Spotswood,,,NJ,"Middlesex County",America/New_York,,NA,US,40.39,-74.39,7480 +08885,"PO BOX",0,Stanton,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.58,-74.81,198 +08886,STANDARD,0,Stewartsville,,,NJ,"Warren County",America/New_York,908,NA,US,40.69,-75.1,6680 +08887,STANDARD,0,"Three Bridges",,,NJ,"Hunterdon County",America/New_York,,NA,US,40.52,-74.8,930 +08888,"PO BOX",0,Whitehouse,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.62,-74.76,324 +08889,STANDARD,0,"Whitehouse Station","White Hse Sta","White House Station",NJ,"Hunterdon County",America/New_York,908,NA,US,40.6,-74.76,9670 +08890,"PO BOX",0,Zarephath,,,NJ,"Somerset County",America/New_York,732,NA,US,40.54,-74.58,32 +08899,STANDARD,0,Edison,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.52,-74.36,0 +08901,STANDARD,0,"New Brunswick",,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.48,-74.44,36520 +08902,STANDARD,0,"North Brunswick","N Brunswick, New Brunswick",,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.45,-74.48,40090 +08903,"PO BOX",0,"New Brunswick",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,1923 +08904,STANDARD,0,"Highland Park","New Brunswick",,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.5,-74.42,12580 +08905,UNIQUE,1,"New Brunswick",,Wachovia,NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,0 +08906,"PO BOX",0,"New Brunswick",Edison,"Kilmer Gmf",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,261 +08922,UNIQUE,1,"New Brunswick",,"Prudential Mutual Fund Servi",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.45,0 +08933,UNIQUE,0,"New Brunswick",,"Johnson & Johnson",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,0 +08988,UNIQUE,1,"New Brunswick",,"Merrill Lynch",NJ,"Middlesex County",America/New_York,732,NA,US,40.45,-74.48,0 +08989,UNIQUE,0,"New Brunswick",,"Merrill Lynch",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,0 +09001,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09002,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09003,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09004,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09005,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09006,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09007,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09008,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09009,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09010,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09011,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09012,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09013,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09014,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09015,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09016,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09017,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09018,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09020,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09021,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09028,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09031,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09033,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09034,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09036,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09038,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09042,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09044,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09045,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09046,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09049,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09051,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09053,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09054,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09055,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09056,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09058,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09059,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09060,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09063,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09067,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09068,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09069,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09074,MILITARY,1,Apo,,,AE,,,,NA,DE,0,0,0 +09075,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09076,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09079,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09080,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09081,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09086,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09088,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09089,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09090,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09092,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09094,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09095,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09096,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09099,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09100,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09102,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09103,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09104,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09107,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09110,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09112,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09113,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09114,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09115,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09116,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09123,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09125,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09126,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09128,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09131,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09135,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09136,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09137,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09138,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09139,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09140,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09142,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09143,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09154,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09160,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09161,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09165,MILITARY,1,Apo,,,AE,,,,NA,DE,0,0,0 +09166,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09169,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09170,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09171,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09172,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09173,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09174,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09175,MILITARY,0,Dpo,,,AE,,,,NA,DE,0,0,0 +09176,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09177,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09178,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09180,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09182,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09183,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09185,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09186,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09201,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09203,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09204,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09211,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09212,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09213,MILITARY,0,Dpo,,,AE,,,,EU,DE,0,0,0 +09214,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09216,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09225,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09226,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09227,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09229,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09237,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09240,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09241,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09242,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09244,MILITARY,1,Apo,,,AE,,,,NA,DE,0,0,0 +09245,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09250,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09252,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09261,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09262,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09263,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09264,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09265,MILITARY,0,Dpo,,,AE,,,,EU,DE,0,0,0 +09266,MILITARY,0,Fpo,,,AE,,,,EU,DE,0,0,0 +09267,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09276,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09277,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09278,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09279,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09283,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09285,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09287,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09289,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09290,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09291,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09292,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09300,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09301,MILITARY,0,Dpo,,,AE,,,,ME,IQ,0,0,0 +09302,MILITARY,0,Apo,,,AE,,,,EU,GE,0,0,0 +09303,MILITARY,1,Apo,,,AE,,,,ME,BH,0,0,0 +09304,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09305,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09306,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09307,MILITARY,0,Apo,,,AE,,,,ME,BH,0,0,0 +09308,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09309,MILITARY,0,Apo,,,AE,,,,ME,QA,0,0,0 +09310,MILITARY,0,Dpo,,,AE,,,,ME,AF,0,0,0 +09311,MILITARY,0,Dpo,,,AE,,,,ME,AF,0,0,0 +09312,MILITARY,0,Dpo,,,AE,,,,ME,IQ,0,0,0 +09313,MILITARY,0,Fpo,,,AE,,,,ME,AF,0,0,0 +09314,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09315,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09316,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09317,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09318,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09319,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09320,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09321,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09322,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09323,MILITARY,0,Apo,,,AE,,,,NA,IQ,-44.25,33.53,0 +09324,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09327,MILITARY,1,Apo,,,AE,,,,ME,KW,0,0,0 +09328,MILITARY,1,Apo,,,AE,,,,AS,OM,0,0,0 +09330,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09331,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09332,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09333,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09334,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09336,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09337,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09338,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09339,MILITARY,1,Apo,,,AE,,,,AS,TM,0,0,0 +09340,MILITARY,0,Apo,,,AE,,,,NA,XK,0,0,0 +09342,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09343,MILITARY,0,Apo,,,AE,,,,ME,IL,0,0,0 +09344,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09346,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09347,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09348,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09350,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09351,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09352,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09353,MILITARY,1,Apo,,,AE,,,,AS,KG,0,0,0 +09354,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09355,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09356,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09357,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09358,MILITARY,1,Apo,,,AE,,,,AF,SC,0,0,0 +09359,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09360,MILITARY,1,Apo,,,AE,,,,CA,CU,0,0,0 +09361,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09362,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09363,MILITARY,0,Fpo,,,AE,,,,AF,DJ,0,0,0 +09364,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09365,MILITARY,0,Apo,,,AE,,,,ME,QA,0,0,0 +09366,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09367,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09368,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09369,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09370,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09371,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09372,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09373,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09374,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09375,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09376,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09377,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09378,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09379,MILITARY,1,Fpo,,,AE,,,,ME,BH,0,0,0 +09380,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09381,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09382,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09383,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09384,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09386,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09387,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09388,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09389,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09390,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09391,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09393,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09394,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09396,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09397,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09399,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09401,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09402,MILITARY,1,Apo,,,AE,,,,NA,GB,0,0,0 +09403,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09409,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09410,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09420,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09421,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09447,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09454,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09456,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09459,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09461,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09463,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09464,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09467,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09468,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09469,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09470,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09487,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09488,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09489,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09490,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09491,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09494,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09496,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09497,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09498,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09499,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09501,MILITARY,0,Fpo,,,AE,,,,NA,GB,0,0,0 +09502,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09503,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09504,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09505,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09506,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09507,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09508,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09509,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09510,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09511,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09512,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09513,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09514,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09517,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09520,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09522,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09523,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09524,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09532,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09533,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09534,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09541,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09542,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09543,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09544,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09545,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09549,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09550,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09554,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09556,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09557,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09564,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09565,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09566,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09567,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09568,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09569,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09570,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09573,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09574,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09575,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09576,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09577,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09578,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09579,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09581,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09582,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09583,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09586,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09587,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09588,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09589,MILITARY,0,Fpo,,,AE,,,,CA,CU,0,0,0 +09590,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09591,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09592,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09593,MILITARY,0,Fpo,,,AE,,,,CA,CU,0,0,0 +09594,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09595,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09596,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09599,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09600,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09601,MILITARY,0,Dpo,,,AE,,,,EU,IT,0,0,0 +09602,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09603,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09604,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09605,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09606,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09607,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09608,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09609,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09610,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09611,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09612,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09613,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09614,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09617,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09618,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09619,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09620,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09621,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09622,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09623,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09624,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09625,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09626,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09627,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09630,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09631,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09633,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09634,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09636,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09642,MILITARY,0,Dpo,,,AE,,,,EU,ES,0,0,0 +09643,MILITARY,0,Apo,,,AE,,,,EU,ES,0,0,0 +09644,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09645,MILITARY,0,Fpo,,,AE,,,,EU,ES,0,0,0 +09647,MILITARY,0,Apo,,,AE,,,,EU,ES,0,0,0 +09648,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09649,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09701,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09702,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09703,MILITARY,0,Apo,,,AE,,,,EU,NL,0,0,0 +09704,MILITARY,0,Apo,,,AE,,,,NA,GL,0,0,0 +09705,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09706,MILITARY,0,Apo,,,AE,,,,EU,NO,0,0,0 +09707,MILITARY,0,Dpo,,,AE,,,,EU,NO,0,0,0 +09708,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09709,MILITARY,0,Dpo,,,AE,,,,EU,NL,0,0,0 +09710,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09711,MILITARY,0,Apo,,,AE,,,,EU,NL,0,0,0 +09712,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09713,MILITARY,1,Apo,,,AE,,,,EU,BE,0,0,0 +09714,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09715,MILITARY,0,Dpo,,,AE,,,,EU,NL,0,0,0 +09716,MILITARY,0,Dpo,,,AE,,,,EU,DK,0,0,0 +09717,MILITARY,0,Apo,,,AE,,,,EU,NO,0,0,0 +09718,MILITARY,0,Dpo,,,AE,,,,AF,MA,0,0,0 +09719,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09720,MILITARY,0,Apo,,,AE,,,,NA,PT,0,0,0 +09721,MILITARY,1,Dpo,,,AE,,,,EU,RU,0,0,0 +09722,MILITARY,0,Apo,,,AE,,,,EU,PL,0,0,0 +09723,MILITARY,0,Dpo,,,AE,,,,EU,FI,0,0,0 +09724,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09725,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09726,MILITARY,0,Dpo,,,AE,,,,EU,PT,0,0,0 +09727,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09728,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09729,MILITARY,0,Fpo,,,AE,,,,EU,PT,0,0,0 +09730,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09731,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09732,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09733,MILITARY,0,Fpo,,,AE,,,,NA,CA,0,0,0 +09734,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09735,MILITARY,0,Apo,,,AE,,,,NA,CA,0,0,0 +09736,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09737,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09738,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09739,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09740,MILITARY,1,Apo,,,AE,,,,EU,BE,0,0,0 +09741,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09742,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09743,MILITARY,0,Apo,,,AE,,,,EU,PL,0,0,0 +09744,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09745,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09746,MILITARY,1,Apo,,,AE,,,,EU,FR,0,0,0 +09747,MILITARY,1,Fpo,,,AE,,,,NA,GI,0,0,0 +09748,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09749,MILITARY,0,Apo,,,AE,,,,EU,RO,0,0,0 +09750,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09751,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09752,MILITARY,0,Apo,,,AE,,,,EU,NL,0,0,0 +09753,MILITARY,0,Apo,,,AE,,,,EU,BG,0,0,0 +09754,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09755,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09756,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09757,MILITARY,1,Apo,,,AE,,,,EU,BE,0,0,0 +09758,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09759,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09760,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09761,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09762,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09769,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09771,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09777,MILITARY,0,Dpo,,,AE,,,,EU,FR,0,0,0 +09780,MILITARY,0,Apo,,,AE,,,,NA,BA,0,0,0 +09789,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09790,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09798,MILITARY,1,Apo,,,AE,,,,EU,FR,0,0,0 +09800,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09801,MILITARY,0,Apo,,,AE,,,,AS,AE,0,0,0 +09802,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09803,MILITARY,0,Apo,,,AE,,,,ME,SA,0,0,0 +09804,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09805,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09806,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09807,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09808,MILITARY,0,Dpo,,,AE,,,,ME,IQ,0,0,0 +09809,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09810,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09811,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09812,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09813,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09814,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09815,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09816,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09817,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09818,MILITARY,0,Apo,,,AE,,,,AS,CY,0,0,0 +09819,MILITARY,1,Apo,,,AE,,,,EU,TR,0,0,0 +09820,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09821,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09822,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09823,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09824,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09825,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09826,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09827,MILITARY,0,Dpo,,,AE,,,,EU,TR,0,0,0 +09828,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09829,MILITARY,0,Apo,,,AE,,,,ME,IL,0,0,0 +09830,MILITARY,0,Dpo,,,AE,,,,ME,IL,0,0,0 +09831,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09832,MILITARY,0,Apo,,,AE,,,,AF,EG,0,0,0 +09833,MILITARY,0,Apo,,,AE,,,,AF,EG,0,0,0 +09834,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09835,MILITARY,1,Fpo,,,AE,,,,AF,EG,0,0,0 +09836,MILITARY,0,Dpo,,,AE,,,,NA,GB,0,0,0 +09837,MILITARY,0,Fpo,,,AE,,,,AS,AE,0,0,0 +09838,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09839,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09840,MILITARY,1,Fpo,,,AE,,,,ME,BH,0,0,0 +09841,MILITARY,0,Fpo,,,AE,,,,EU,GR,0,0,0 +09842,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09843,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09844,MILITARY,0,Dpo,,,AE,,,,EU,GR,0,0,0 +09845,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09846,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09847,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09848,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09851,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09852,MILITARY,0,Apo,,,AE,,,,ME,SA,0,0,0 +09853,MILITARY,0,Apo,,,AE,,,,AS,AE,0,0,0 +09854,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09855,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09856,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09857,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09858,MILITARY,0,Apo,,,AE,,,,ME,SA,0,0,0 +09859,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09860,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09861,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09862,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09863,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09864,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09865,MILITARY,0,Fpo,,,AE,,,,NA,GR,0,0,0 +09867,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09868,MILITARY,0,Apo,,,AE,,,,AF,EG,0,0,0 +09869,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09870,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09871,MILITARY,1,Dpo,,,AE,,,,NA,US,0,0,0 +09872,MILITARY,1,Dpo,,,AE,,,,NA,US,0,0,0 +09873,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09874,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09875,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09876,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09877,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09880,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09888,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09890,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09892,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09895,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09898,MILITARY,0,Apo,,,AE,,,,ME,QA,0,0,0 +09901,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09902,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09903,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09904,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09908,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09909,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09910,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09974,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09975,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09976,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09977,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +10001,STANDARD,0,"New York",,"Empire State, Gpo, Greeley Square, Macys Finance, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"718,917,347,646",NA,US,40.75,-74,21760 +10002,STANDARD,0,"New York",Knickerbocker,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,718,NA,US,40.71,-73.99,67080 +10003,STANDARD,0,"New York",,"Cooper, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.73,-73.99,38080 +10004,STANDARD,0,"New York","Bowling Green","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.69,-74.02,4280 +10005,STANDARD,0,"New York","Wall Street","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,718,212,646,917",NA,US,40.71,-74.01,8280 +10006,STANDARD,0,"New York",Trinity,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"917,929",NA,US,40.71,-74.01,3450 +10007,STANDARD,0,"New York",,"Church Street, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,718,917,929,646",NA,US,40.71,-74.01,6520 +10008,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,910 +10009,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Peter Stuyvesant",NY,"New York County",America/New_York,"212,646,718,917",NA,US,40.73,-73.98,45840 +10010,STANDARD,0,"New York",,"Madison Square, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917,718",NA,US,40.74,-73.98,24130 +10011,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917,929",NA,US,40.74,-74,40580 +10012,STANDARD,0,"New York",Prince,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"646,929,347,718",NA,US,40.73,-74,16860 +10013,STANDARD,0,"New York","Canal Street, Chinatown","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,718,646,929,212,917",NA,US,40.72,-74,24330 +10014,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,718,917,929,646",NA,US,40.73,-74.01,24630 +10015,STANDARD,1,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10016,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718,917,347",NA,US,40.75,-73.98,43650 +10017,STANDARD,0,"New York",,"Grand Central, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718",NA,US,40.75,-73.97,16980 +10018,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.99,9560 +10019,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,347,646,718,914",NA,US,40.77,-73.99,36390 +10020,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,2326 +10021,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,212,646,917",NA,US,40.77,-73.96,35030 +10022,STANDARD,0,"New York",,"Franklin D Roosevelt, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.97,29550 +10023,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.78,-73.98,52730 +10024,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Planetarium",NY,"New York County",America/New_York,"212,646,917",NA,US,40.8,-73.97,49250 +10025,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.8,-73.97,71720 +10026,STANDARD,0,"New York",,"Morningside, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.8,-73.95,30050 +10027,STANDARD,0,"New York",,"Manhattan, Manhattanville, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718,917",NA,US,40.81,-73.95,44180 +10028,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,917",NA,US,40.78,-73.95,38600 +10029,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.79,-73.94,59220 +10030,STANDARD,0,"New York",,"College, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.82,-73.94,22330 +10031,STANDARD,0,"New York",,"Hamilton Grange, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.83,-73.95,45020 +10032,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,917",NA,US,40.84,-73.94,45560 +10033,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Washington Bridge",NY,"New York County",America/New_York,"212,347,646,917",NA,US,40.85,-73.93,43640 +10034,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,718,646",NA,US,40.87,-73.92,32550 +10035,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Randalls Island, Triborough, Wards Is, Wards Island",NY,"New York County",America/New_York,212,NA,US,40.8,-73.93,26100 +10036,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.99,25620 +10037,STANDARD,0,"New York",,"Lincolnton, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.81,-73.94,16280 +10038,STANDARD,0,"New York","Peck Slip","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-74,18850 +10039,STANDARD,0,"New York",,"Colonial Park, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.83,-73.94,22280 +10040,STANDARD,0,"New York",,"Fort George, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,917,212",NA,US,40.86,-73.93,34910 +10041,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718,917,347",NA,US,40.71,-73.99,23 +10043,UNIQUE,0,"New York",,"Citibank, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,16 +10044,STANDARD,0,"New York","Roosevelt Isl, Roosevelt Island","New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"646,718",NA,US,40.76,-73.95,7340 +10045,STANDARD,0,"New York",,"Federal Reserve, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917",NA,US,40.71,-73.99,0 +10046,UNIQUE,1,"New York",,"Contest Mail",NY,"New York County",America/New_York,212,NA,US,40.71,-74.01,0 +10047,UNIQUE,1,"New York",,"Ny State Agency",NY,"New York County",America/New_York,212,NA,US,40.71,-74.01,0 +10048,STANDARD,1,"New York","Manhattan, World Trade Ctr, Nyc",,NY,"New York County",America/New_York,212,NA,US,40.71,-74.01,0 +10055,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,20 +10060,STANDARD,0,"New York",,"New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,212,646,718,917",NA,US,40.71,-73.99,0 +10065,STANDARD,0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.76,-73.96,24110 +10069,STANDARD,0,"New York",,,NY,"New York County",America/New_York,"917,212,347,646,718",NA,US,40.78,-73.99,5750 +10072,UNIQUE,1,"New York","Philip Morris",,NY,"New York County",America/New_York,212,NA,US,40.75,-73.99,0 +10075,STANDARD,0,"New York",,,NY,"New York County",America/New_York,347,NA,US,40.77,-73.95,21720 +10079,UNIQUE,1,"New York",,"Bureau Of Census",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10080,UNIQUE,0,"New York",,"Merrill Lynch, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10081,UNIQUE,0,"New York",,"Jp Morgan Bank, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10082,UNIQUE,1,"New York","Capitol Cities",,NY,"New York County",America/New_York,212,NA,US,40.77,-73.98,0 +10087,UNIQUE,0,"New York",,"Jp Morgan Bank, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10090,STANDARD,0,"New York",,"New York City, NY, Ny City, Nyc, S Pole, Santa Claus, So Pole, South Pole",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,0 +10094,UNIQUE,1,"New York",,"Marden Kane Inc",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10095,STANDARD,1,"New York",,,NY,"New York County",America/New_York,"212,646,718,917,929",NA,US,40.71,-73.99,0 +10096,UNIQUE,1,"New York",,"Ny Telephone",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10098,STANDARD,1,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.75,-73.99,0 +10099,STANDARD,1,"New York",,"Postal Data Center",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10101,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,488 +10102,UNIQUE,0,"New York",,"Business Reply, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10103,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,199 +10104,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,41 +10105,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,334 +10106,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,718,914,212,917",NA,US,40.71,-73.99,220 +10107,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,212,646,718,914,917",NA,US,40.71,-73.99,406 +10108,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,506 +10109,UNIQUE,0,"New York",,"Business Reply, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10110,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.75,-73.98,478 +10111,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,1191 +10112,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,563 +10113,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,358 +10114,UNIQUE,0,"New York",,"Business Reply, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10115,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.81,-73.96,22 +10116,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,1271 +10117,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,26 +10118,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"917,929",NA,US,40.71,-73.99,725 +10119,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.75,-73.99,392 +10120,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,929,NA,US,40.71,-73.99,0 +10121,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,347,646,718",NA,US,40.71,-73.99,34 +10122,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,646,NA,US,40.71,-73.99,166 +10123,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,554 +10124,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10125,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,30 +10126,UNIQUE,0,"New York",,"Business Reply, Franklin D Roosevelt",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10128,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.78,-73.95,51680 +10129,"PO BOX",0,"New York",,"New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,161 +10130,UNIQUE,0,"New York",,"Business Reply, Gracie",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10131,UNIQUE,0,"New York",,"Business Reply, Lenox Hill",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10132,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10133,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10138,UNIQUE,0,"New York",,"Business Reply, Midtown",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,68 +10149,UNIQUE,1,"New York",,"Muscular Dystrophy",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,0 +10150,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,1045 +10151,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,39 +10152,STANDARD,0,"New York",,"Manhattan, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.97,107 +10153,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.97,46 +10154,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.97,433 +10155,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,50 +10156,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,410 +10157,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10158,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,718,917",NA,US,40.71,-73.99,38 +10159,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,489 +10160,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10161,STANDARD,1,"New York",,,NY,"New York County",America/New_York,"347,646,917,929",NA,US,40.71,-73.99,0 +10162,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.77,-73.95,1490 +10163,"PO BOX",0,"New York",,"New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,2041 +10164,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10165,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.75,-73.98,597 +10166,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,295 +10167,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718",NA,US,40.75,-73.97,187 +10168,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.75,-73.98,253 +10169,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.75,-73.98,254 +10170,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.75,-73.98,334 +10171,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.97,40 +10172,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"718,212,646,917",NA,US,40.76,-73.97,388 +10173,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.75,-73.98,0 +10174,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,917",NA,US,40.75,-73.98,52 +10175,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,108 +10176,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,30 +10177,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,22 +10178,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"718,212,646,917",NA,US,40.71,-73.99,436 +10179,UNIQUE,0,"New York",,"Bear Stearns",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,35 +10184,UNIQUE,1,"New York",,"J C Penney",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10185,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,1067 +10196,UNIQUE,1,"New York",,"Ny Telephone",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10197,UNIQUE,1,"New York",,"Citicorp Services Inc",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10199,STANDARD,0,"New York",,"Gpo Official Mail, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,646,718",NA,US,40.75,-74,0 +10200,STANDARD,1,"New York",,"Manhattan, New York City, Ny, Ny City, Nyc",NY,,America/New_York,,NA,US,40.77,-73.95,0 +10203,UNIQUE,0,"New York",,"Bank Of New York Brm",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10211,UNIQUE,0,"New York",,"Business Reply, Cooper",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10212,UNIQUE,0,"New York",,"Business Reply, Manhattan",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10213,UNIQUE,0,"New York",,"Business Reply, Canal Street",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10242,"PO BOX",0,"New York",,"Bar Code Church Street",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10249,"PO BOX",0,"New York",,"Church Street Boxes, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10256,UNIQUE,0,"New York",,"Deutsche Bank, Manhattan, NY, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10257,UNIQUE,1,"New York",,"Bank Of New York",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10258,UNIQUE,0,"New York",,"European American Bank",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10259,UNIQUE,0,"New York","New York City","Hsbc Bank, Manhattan, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10260,STANDARD,0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10261,UNIQUE,0,"New York",,"Jp Morgan Bank, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10265,STANDARD,0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10268,"PO BOX",0,"New York",,Manhattan,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,259 +10269,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10270,STANDARD,0,"New York",,Manhattan,NY,"New York County",America/New_York,"212,646,917,347,718",NA,US,40.71,-73.99,0 +10271,STANDARD,0,"New York",,Manhattan,NY,"New York County",America/New_York,"929,212,917",NA,US,40.71,-74.01,55 +10272,"PO BOX",0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,302 +10273,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10274,"PO BOX",0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,418 +10275,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10276,"PO BOX",0,"New York",,"Manhattan, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,418 +10277,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10278,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917,347,718",NA,US,40.72,-74,0 +10279,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-74.01,0 +10280,STANDARD,0,"New York",,"Manhattan, Nyc",NY,"New York County",America/New_York,"347,212,646,917,929",NA,US,40.71,-74.02,7290 +10281,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"929,347,212,646,917",NA,US,40.71,-73.99,677 +10282,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917,347,929",NA,US,40.72,-74.02,5000 +10285,UNIQUE,0,"New York",,"Shearson American Express",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10286,UNIQUE,0,"New York",,"Bank Of New York, Manhattan, NY, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,412 +10292,UNIQUE,1,"New York",,"Bache Halsey Stuart Shields",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10301,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.63,-74.09,32890 +10302,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,929,718,917",NA,US,40.63,-74.14,16220 +10303,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.63,-74.17,23670 +10304,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"917,347,718",NA,US,40.61,-74.09,38770 +10305,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,212,NA,US,40.6,-74.07,37440 +10306,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.58,-74.14,51790 +10307,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,718,917,929",NA,US,40.51,-74.24,12800 +10308,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.55,-74.15,25700 +10309,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"718,347,917,929",NA,US,40.53,-74.22,30100 +10310,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"718,917,929",NA,US,40.63,-74.12,22530 +10311,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.61,-74.18,0 +10312,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,917,929,718",NA,US,40.55,-74.18,57080 +10313,"PO BOX",0,"Staten Island",,,NY,"Richmond County",America/New_York,212,NA,US,40.58,-74.14,98 +10314,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,718,917,929",NA,US,40.6,-74.17,80730 +10451,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.82,-73.93,43630 +10452,STANDARD,0,Bronx,,"Highbridge, Stadium, University Heights",NY,"Bronx County",America/New_York,"347,646,917,929,212,718",NA,US,40.84,-73.92,68800 +10453,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.85,-73.91,71210 +10454,STANDARD,0,Bronx,,"Mott Haven",NY,"Bronx County",America/New_York,718,NA,US,40.81,-73.92,30650 +10455,STANDARD,0,Bronx,,Hub,NY,"Bronx County",America/New_York,718,NA,US,40.81,-73.91,34980 +10456,STANDARD,0,Bronx,,Morrisania,NY,"Bronx County",America/New_York,"718,212,347,646,917,929",NA,US,40.83,-73.91,78020 +10457,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"718,212,347,646,917,929",NA,US,40.85,-73.9,63960 +10458,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.86,-73.89,65420 +10459,STANDARD,0,Bronx,,"Boulevard, Longwood",NY,"Bronx County",America/New_York,718,NA,US,40.83,-73.89,40760 +10460,STANDARD,0,Bronx,,"Crotona Park, West Farms",NY,"Bronx County",America/New_York,212,NA,US,40.84,-73.87,49210 +10461,STANDARD,0,Bronx,,"Morris Park, Pilgrim, Westchester",NY,"Bronx County",America/New_York,"347,718,917,929",NA,US,40.85,-73.84,44950 +10462,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"347,718,917,929",NA,US,40.84,-73.86,74340 +10463,STANDARD,0,Bronx,,"Riverdale, Spuyten Duyvil",NY,"Bronx County",America/New_York,718,NA,US,40.88,-73.91,59620 +10464,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.87,-73.8,3660 +10465,STANDARD,0,Bronx,,"Throggs Neck",NY,"Bronx County",America/New_York,"718,347,917",NA,US,40.82,-73.83,35140 +10466,STANDARD,0,Bronx,,Wakefield,NY,"Bronx County",America/New_York,"347,718,929",NA,US,40.89,-73.85,57870 +10467,STANDARD,0,Bronx,,"Allerton, Mosholu, Van Cott, Williamsbridge",NY,"Bronx County",America/New_York,"347,718",NA,US,40.87,-73.87,84810 +10468,STANDARD,0,Bronx,,Jerome,NY,"Bronx County",America/New_York,718,NA,US,40.87,-73.9,66800 +10469,STANDARD,0,Bronx,,"Baychester, Esplanade, Hillside",NY,"Bronx County",America/New_York,"347,718,929",NA,US,40.87,-73.85,58580 +10470,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"347,718,929",NA,US,40.89,-73.87,13350 +10471,STANDARD,0,Bronx,,Riverdale,NY,"Bronx County",America/New_York,212,NA,US,40.9,-73.9,17460 +10472,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.83,-73.87,57370 +10473,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"347,718,917,929",NA,US,40.82,-73.86,50780 +10474,STANDARD,0,Bronx,,Boulevard,NY,"Bronx County",America/New_York,718,NA,US,40.81,-73.88,9510 +10475,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,212,NA,US,40.88,-73.82,35460 +10499,UNIQUE,1,Bronx,,"Priority Mail Ctr",NY,"Bronx County",America/New_York,212,NA,US,40.84,-73.87,0 +10501,STANDARD,0,Amawalk,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.76,1330 +10502,STANDARD,0,Ardsley,,,NY,"Westchester County",America/New_York,914,NA,US,41.01,-73.84,6190 +10503,"PO BOX",0,"Ardsley On Hudson","Ardsley Hdsn",,NY,"Westchester County",America/New_York,914,NA,US,41.03,-73.88,195 +10504,STANDARD,0,Armonk,"North Castle",,NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.71,8470 +10505,STANDARD,0,"Baldwin Place",,,NY,"Westchester County",America/New_York,914,NA,US,41.34,-73.75,1590 +10506,STANDARD,0,Bedford,,,NY,"Westchester County",America/New_York,914,NA,US,41.19,-73.64,5670 +10507,STANDARD,0,"Bedford Hills",,,NY,"Westchester County",America/New_York,914,NA,US,41.22,-73.69,5010 +10509,STANDARD,0,Brewster,,"Sears Corners, Southeast",NY,"Putnam County",America/New_York,845,NA,US,41.39,-73.61,18270 +10510,STANDARD,0,"Briarcliff Manor","Briarcliff, Scarborough","Briarcliff Mnr",NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.84,9610 +10511,STANDARD,0,Buchanan,,,NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.94,2230 +10512,STANDARD,0,Carmel,"Kent Cliffs, Kent Lakes","Lake Carmel",NY,"Putnam County",America/New_York,845,NA,US,41.41,-73.68,23270 +10514,STANDARD,0,Chappaqua,,,NY,"Westchester County",America/New_York,914,NA,US,41.17,-73.77,12110 +10516,STANDARD,0,"Cold Spring",Nelsonville,"North Highland, Philipstown",NY,"Putnam County",America/New_York,845,NA,US,41.41,-73.95,5040 +10517,"PO BOX",0,Crompond,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.86,928 +10518,STANDARD,0,"Cross River",,,NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.59,1370 +10519,"PO BOX",0,"Croton Falls",,,NY,"Westchester County",America/New_York,914,NA,US,41.35,-73.65,628 +10520,STANDARD,0,"Croton On Hudson","Croton Hdsn","Croton, Croton Hudson",NY,"Westchester County",America/New_York,914,NA,US,41.22,-73.89,12040 +10521,"PO BOX",0,"Croton On Hudson","Croton Hdsn, Crugers",,NY,"Westchester County",America/New_York,914,NA,US,41.22,-73.89,92 +10522,STANDARD,0,"Dobbs Ferry",,,NY,"Westchester County",America/New_York,914,NA,US,41.01,-73.86,10350 +10523,STANDARD,0,Elmsford,,,NY,"Westchester County",America/New_York,914,NA,US,41.06,-73.82,8940 +10524,STANDARD,0,Garrison,,Manitou,NY,"Putnam County",America/New_York,845,NA,US,41.37,-73.92,3980 +10526,STANDARD,0,"Goldens Bridge","Goldens Brg",,NY,"Westchester County",America/New_York,"845,914",NA,US,41.29,-73.67,1860 +10527,STANDARD,0,"Granite Springs","Granite Spgs",,NY,"Westchester County",America/New_York,914,NA,US,41.32,-73.77,960 +10528,STANDARD,0,Harrison,,,NY,"Westchester County",America/New_York,914,NA,US,40.97,-73.73,11260 +10530,STANDARD,0,Hartsdale,Scarsdale,,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.8,12150 +10532,STANDARD,0,Hawthorne,,,NY,"Westchester County",America/New_York,914,NA,US,41.1,-73.79,4960 +10533,STANDARD,0,Irvington,,"East Irvington, Irvington On Hudson",NY,"Westchester County",America/New_York,914,NA,US,41.03,-73.86,7540 +10535,STANDARD,0,"Jefferson Valley","Jefferson Vly",,NY,"Westchester County",America/New_York,"845,914",NA,US,41.34,-73.79,690 +10536,STANDARD,0,Katonah,,"Lake Katonah",NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.68,10320 +10537,STANDARD,0,"Lake Peekskill","Lk Peekskill",,NY,"Putnam County",America/New_York,914,NA,US,41.34,-73.88,2180 +10538,STANDARD,0,Larchmont,,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.75,17350 +10540,"PO BOX",0,Lincolndale,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.71,703 +10541,STANDARD,0,Mahopac,"Lake Lincolnd, Lake Lincolndale","Lake Mahopac, Lake Secor",NY,"Putnam County",America/New_York,"845,914",NA,US,41.36,-73.74,24500 +10542,"PO BOX",0,"Mahopac Falls",,,NY,"Putnam County",America/New_York,845,NA,US,41.36,-73.73,561 +10543,STANDARD,0,Mamaroneck,,,NY,"Westchester County",America/New_York,914,NA,US,40.95,-73.74,19020 +10545,"PO BOX",0,Maryknoll,,,NY,"Westchester County",America/New_York,914,NA,US,41.18,-73.84,282 +10546,STANDARD,0,Millwood,,,NY,"Westchester County",America/New_York,914,NA,US,41.2,-73.8,1430 +10547,STANDARD,0,"Mohegan Lake",,"Lake Mohegan",NY,"Westchester County",America/New_York,"845,914",NA,US,41.31,-73.84,6830 +10548,STANDARD,0,Montrose,,,NY,"Westchester County",America/New_York,914,NA,US,41.24,-73.94,3010 +10549,STANDARD,0,"Mount Kisco","Bedford Corners, Bedford Cors",,NY,"Westchester County",America/New_York,914,NA,US,41.2,-73.73,15620 +10550,STANDARD,0,"Mount Vernon",,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.91,-73.84,33960 +10551,"PO BOX",0,"Mount Vernon",,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.91,-73.82,774 +10552,STANDARD,0,"Mount Vernon",Fleetwood,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.83,18440 +10553,STANDARD,0,"Mount Vernon",,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.91,-73.82,10010 +10557,UNIQUE,1,"Mount Vernon",,"Lincoln 1st Nat Bk Nbw",NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.82,0 +10558,UNIQUE,1,"Mount Vernon",,"Bank Of New York",NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.82,0 +10560,STANDARD,0,"North Salem",,,NY,"Westchester County",America/New_York,"914,845",NA,US,41.33,-73.59,4190 +10562,STANDARD,0,Ossining,,"Crotonville, Kitchawan",NY,"Westchester County",America/New_York,914,NA,US,41.15,-73.87,29100 +10566,STANDARD,0,Peekskill,,,NY,"Westchester County",America/New_York,"845,914",NA,US,41.28,-73.92,21850 +10567,STANDARD,0,"Cortlandt Manor","Cortlandt Mnr",,NY,"Westchester County",America/New_York,"845,914",NA,US,41.3,-73.89,19060 +10570,STANDARD,0,Pleasantville,,,NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.78,12210 +10571,UNIQUE,1,Pleasantville,,"Readers Digest",NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.79,0 +10572,UNIQUE,1,Pleasantville,,"Readers Digest",NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.79,0 +10573,STANDARD,0,"Port Chester","Rye Brook",Portchester,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.68,35440 +10576,STANDARD,0,"Pound Ridge",,"Scotts Corners",NY,"Westchester County",America/New_York,914,NA,US,41.21,-73.57,4830 +10577,STANDARD,0,Purchase,,,NY,"Westchester County",America/New_York,914,NA,US,41.03,-73.71,2740 +10578,STANDARD,0,Purdys,,"Purdy Station",NY,"Westchester County",America/New_York,"845,914",NA,US,41.32,-73.68,830 +10579,STANDARD,0,"Putnam Valley",,"Adams Corners, Crofts Corners, Oscawana Lake, Tompkins Corners",NY,"Putnam County",America/New_York,"845,914",NA,US,41.34,-73.87,8390 +10580,STANDARD,0,Rye,,,NY,"Westchester County",America/New_York,914,NA,US,40.98,-73.69,17250 +10583,STANDARD,0,Scarsdale,Heathcote,"Edgemont, Scarsdale Park",NY,"Westchester County",America/New_York,914,NA,US,40.98,-73.77,39870 +10587,"PO BOX",0,Shenorock,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.71,770 +10588,STANDARD,0,"Shrub Oak",,,NY,"Westchester County",America/New_York,"845,914",NA,US,41.34,-73.82,2540 +10589,STANDARD,0,Somers,,"Somers Town",NY,"Westchester County",America/New_York,"845,914",NA,US,41.33,-73.69,7990 +10590,STANDARD,0,"South Salem",,"Lake Kitchawan, Lewisboro",NY,"Westchester County",America/New_York,914,NA,US,41.25,-73.54,6340 +10591,STANDARD,0,Tarrytown,"N Tarrytown, North Tarrytown, Sleepy Hollow","Philipse Manor, Pocantico Hills, Sleepy Hollow Manor",NY,"Westchester County",America/New_York,914,NA,US,41.06,-73.86,21610 +10594,STANDARD,0,Thornwood,,,NY,"Westchester County",America/New_York,914,NA,US,41.11,-73.77,4950 +10595,STANDARD,0,Valhalla,,"East View",NY,"Westchester County",America/New_York,914,NA,US,41.07,-73.77,6340 +10596,"PO BOX",0,Verplanck,,,NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.96,1704 +10597,STANDARD,0,Waccabuc,,,NY,"Westchester County",America/New_York,914,NA,US,41.29,-73.6,960 +10598,STANDARD,0,"Yorktown Heights","Yorktown Hts","Yorktown, Yorktown Hgts",NY,"Westchester County",America/New_York,914,NA,US,41.27,-73.78,28720 +10601,STANDARD,0,"White Plains",,,NY,"Westchester County",America/New_York,"347,845,914,929",NA,US,41.03,-73.77,9860 +10602,"PO BOX",0,"White Plains",,,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.75,904 +10603,STANDARD,0,"White Plains","N White Plains, N White Plns","North White Plains",NY,"Westchester County",America/New_York,"347,914,929",NA,US,41.05,-73.78,17180 +10604,STANDARD,0,"West Harrison","W Harrison, White Plains","East White Plains, Westchester County Airport",NY,"Westchester County",America/New_York,"845,914",NA,US,41.05,-73.74,10730 +10605,STANDARD,0,"White Plains",,Gedney,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.75,18680 +10606,STANDARD,0,"White Plains",,,NY,"Westchester County",America/New_York,"347,845,914,929",NA,US,41.02,-73.78,15410 +10607,STANDARD,0,"White Plains",,Greenburgh,NY,"Westchester County",America/New_York,914,NA,US,41.04,-73.81,7380 +10610,"PO BOX",0,"White Plains",,,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.75,0 +10701,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,"347,914",NA,US,40.94,-73.86,54750 +10702,"PO BOX",0,Yonkers,,,NY,"Westchester County",America/New_York,914,NA,US,40.94,-73.86,642 +10703,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,"347,914",NA,US,40.96,-73.88,19710 +10704,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.86,30140 +10705,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.89,35140 +10706,STANDARD,0,"Hastings On Hudson","Hastings Hdsn, Yonkers","Hastings Hudson",NY,"Westchester County",America/New_York,914,NA,US,40.98,-73.87,8900 +10707,STANDARD,0,Tuckahoe,"Eastchester, Yonkers",,NY,"Westchester County",America/New_York,914,NA,US,40.96,-73.82,9550 +10708,STANDARD,0,Bronxville,Yonkers,,NY,"Westchester County",America/New_York,914,NA,US,40.94,-73.83,20120 +10709,STANDARD,0,Eastchester,Yonkers,,NY,"Westchester County",America/New_York,914,NA,US,40.95,-73.8,9430 +10710,STANDARD,0,Yonkers,,Centuck,NY,"Westchester County",America/New_York,"347,914",NA,US,40.97,-73.85,24910 +10801,STANDARD,0,"New Rochelle",,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.77,35200 +10802,"PO BOX",0,"New Rochelle",,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.77,729 +10803,STANDARD,0,Pelham,,"Pelham Manor",NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.81,12990 +10804,STANDARD,0,"New Rochelle",Wykagyl,,NY,"Westchester County",America/New_York,914,NA,US,40.94,-73.78,14440 +10805,STANDARD,0,"New Rochelle",,,NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.78,15730 +10901,STANDARD,0,Suffern,"Airmont, Montebello",,NY,"Rockland County",America/New_York,845,NA,US,41.11,-74.14,22260 +10910,"PO BOX",0,Arden,,,NY,"Orange County",America/New_York,845,NA,US,41.28,-74.14,28 +10911,STANDARD,0,"Bear Mountain",,,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.01,28 +10912,"PO BOX",0,Bellvale,,,NY,"Orange County",America/New_York,845,NA,US,41.25,-74.34,241 +10913,STANDARD,0,Blauvelt,,,NY,"Rockland County",America/New_York,845,NA,US,41.07,-73.95,5050 +10914,"PO BOX",0,"Blooming Grove","Blooming Grv, S Bloomng Grv",,NY,"Orange County",America/New_York,845,NA,US,41.42,-74.2,743 +10915,"PO BOX",0,Bullville,,,NY,"Orange County",America/New_York,845,NA,US,41.55,-74.36,478 +10916,STANDARD,0,"Campbell Hall",,,NY,"Orange County",America/New_York,845,NA,US,41.44,-74.25,4390 +10917,STANDARD,0,"Central Valley","Central Vly",,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.12,2070 +10918,STANDARD,0,Chester,"Mediacom Park",,NY,"Orange County",America/New_York,845,NA,US,41.35,-74.27,11040 +10919,STANDARD,0,Circleville,,,NY,"Orange County",America/New_York,845,NA,US,41.52,-74.38,1140 +10920,STANDARD,0,Congers,,,NY,"Rockland County",America/New_York,845,NA,US,41.14,-73.94,8720 +10921,STANDARD,0,Florida,,,NY,"Orange County",America/New_York,845,NA,US,41.33,-74.35,4110 +10922,"PO BOX",0,"Fort Montgomery","Ft Montgomery",,NY,"Orange County",America/New_York,845,NA,US,41.33,-74,1521 +10923,STANDARD,0,Garnerville,,,NY,"Rockland County",America/New_York,845,NA,US,41.2,-74,8980 +10924,STANDARD,0,Goshen,,,NY,"Orange County",America/New_York,845,NA,US,41.4,-74.32,12150 +10925,STANDARD,0,"Greenwood Lake","Greenwood Lk",,NY,"Orange County",America/New_York,845,NA,US,41.22,-74.28,4190 +10926,STANDARD,0,Harriman,,,NY,"Orange County",America/New_York,845,NA,US,41.3,-74.14,3530 +10927,STANDARD,0,Haverstraw,,,NY,"Rockland County",America/New_York,845,NA,US,41.18,-73.95,11220 +10928,STANDARD,0,"Highland Falls","Highland Fls",,NY,"Orange County",America/New_York,845,NA,US,41.35,-74,3840 +10930,STANDARD,0,"Highland Mills","Highland Mls",,NY,"Orange County",America/New_York,845,NA,US,41.35,-74.12,8750 +10931,STANDARD,0,Hillburn,,,NY,"Rockland County",America/New_York,845,NA,US,41.12,-74.17,900 +10932,"PO BOX",0,Howells,,,NY,"Orange County",America/New_York,845,NA,US,41.48,-74.46,508 +10933,"PO BOX",0,Johnson,,,NY,"Orange County",America/New_York,845,NA,US,41.37,-74.51,620 +10940,STANDARD,0,Middletown,Scotchtown,,NY,"Orange County",America/New_York,"845,914",NA,US,41.44,-74.42,46130 +10941,STANDARD,0,Middletown,Scotchtown,,NY,"Orange County",America/New_York,"845,914",NA,US,41.49,-74.34,13420 +10943,UNIQUE,1,Middletown,,"Blue Cross/blue Shield",NY,"Orange County",America/New_York,845,NA,US,41.44,-74.42,0 +10949,"PO BOX",0,Monroe,,,NY,"Orange County",America/New_York,845,NA,US,41.33,-74.19,667 +10950,STANDARD,0,Monroe,"Kiryas Joel, Palm Tree, Twn Palm Tree","S Bloomng Grv",NY,"Orange County",America/New_York,845,NA,US,41.32,-74.18,53810 +10952,STANDARD,0,Monsey,"Airmont, Kaser","Chestnut Ridge, Wesley Hills",NY,"Rockland County",America/New_York,845,NA,US,41.11,-74.08,45170 +10953,"PO BOX",0,Mountainville,,,NY,"Orange County",America/New_York,845,NA,US,41.4,-74.08,480 +10954,STANDARD,0,Nanuet,Bardonia,,NY,"Rockland County",America/New_York,"845,914",NA,US,41.09,-74.01,22880 +10956,STANDARD,0,"New City",,Clarkstown,NY,"Rockland County",America/New_York,845,NA,US,41.15,-73.99,31910 +10958,STANDARD,0,"New Hampton",,,NY,"Orange County",America/New_York,"845,914",NA,US,41.34,-74.45,3200 +10959,"PO BOX",0,"New Milford",,,NY,"Orange County",America/New_York,845,NA,US,41.26,-74.36,102 +10960,STANDARD,0,Nyack,"Grandview On Hudson, Grnd Vw Hudsn","Central Nyack, Grandview, South Nyack, Upper Grandview, Upper Nyack",NY,"Rockland County",America/New_York,"845,914",NA,US,41.09,-73.92,13110 +10962,STANDARD,0,Orangeburg,,,NY,"Rockland County",America/New_York,845,NA,US,41.05,-73.94,5020 +10963,STANDARD,0,Otisville,,,NY,"Orange County",America/New_York,845,NA,US,41.47,-74.53,2430 +10964,STANDARD,0,Palisades,,,NY,"Rockland County",America/New_York,845,NA,US,41.02,-73.91,1370 +10965,STANDARD,0,"Pearl River",,"Chestnut Ridge",NY,"Rockland County",America/New_York,"845,914",NA,US,41.06,-74,14840 +10968,STANDARD,0,Piermont,,,NY,"Rockland County",America/New_York,"845,914",NA,US,41.04,-73.92,2010 +10969,STANDARD,0,"Pine Island",,,NY,"Orange County",America/New_York,845,NA,US,41.29,-74.49,1190 +10970,STANDARD,0,Pomona,,"Mount Ivy",NY,"Rockland County",America/New_York,845,NA,US,41.18,-74.05,10420 +10973,STANDARD,0,"Slate Hill",,,NY,"Orange County",America/New_York,845,NA,US,41.37,-74.49,2210 +10974,STANDARD,0,Sloatsburg,,,NY,"Rockland County",America/New_York,845,NA,US,41.16,-74.19,2960 +10975,STANDARD,0,Southfields,,,NY,"Orange County",America/New_York,845,NA,US,41.25,-74.17,280 +10976,STANDARD,0,Sparkill,,,NY,"Rockland County",America/New_York,845,NA,US,41.02,-73.93,1420 +10977,STANDARD,0,"Spring Valley","Chestnut Rdg, Chestnut Ridge, New Square","Kaser, New Hempstead, Wesley Hills",NY,"Rockland County",America/New_York,"845,914",NA,US,41.12,-74.05,63780 +10979,"PO BOX",0,"Sterling Forest","Sterling Frst",,NY,"Orange County",America/New_York,845,NA,US,41.18,-74.31,224 +10980,STANDARD,0,"Stony Point",,"Grassy Point",NY,"Rockland County",America/New_York,845,NA,US,41.22,-73.99,13090 +10981,"PO BOX",0,"Sugar Loaf",,,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.27,866 +10982,"PO BOX",0,Tallman,,,NY,"Rockland County",America/New_York,845,NA,US,41.11,-74.1,378 +10983,STANDARD,0,Tappan,,,NY,"Rockland County",America/New_York,845,NA,US,41.02,-73.95,5930 +10984,STANDARD,0,Thiells,,,NY,"Rockland County",America/New_York,845,NA,US,41.2,-74.01,2570 +10985,STANDARD,0,"Thompson Ridge","Thompson Rdg",,NY,"Orange County",America/New_York,845,NA,US,41.58,-74.37,290 +10986,STANDARD,0,"Tomkins Cove",,,NY,"Rockland County",America/New_York,845,NA,US,41.27,-73.98,1780 +10987,STANDARD,0,"Tuxedo Park",,Tuxedo,NY,"Orange County",America/New_York,845,NA,US,41.2,-74.2,3450 +10988,"PO BOX",0,Unionville,,,NY,"Orange County",America/New_York,845,NA,US,41.3,-74.56,701 +10989,STANDARD,0,"Valley Cottage","Vly Cottage",,NY,"Rockland County",America/New_York,845,NA,US,41.11,-73.94,8850 +10990,STANDARD,0,Warwick,,,NY,"Orange County",America/New_York,845,NA,US,41.25,-74.35,18630 +10992,STANDARD,0,Washingtonville,Washingtonvle,,NY,"Orange County",America/New_York,845,NA,US,41.42,-74.15,9010 +10993,STANDARD,0,"West Haverstraw","W Haverstraw",,NY,"Rockland County",America/New_York,845,NA,US,41.21,-73.97,4630 +10994,STANDARD,0,"West Nyack",,,NY,"Rockland County",America/New_York,845,NA,US,41.09,-73.96,7480 +10996,STANDARD,0,"West Point",,"United States Military Acade, West Point Military Reservat",NY,"Orange County",America/New_York,845,NA,US,41.39,-73.97,3080 +10997,"PO BOX",0,"West Point",,"U S C C",NY,"Orange County",America/New_York,845,NA,US,41.36,-74.02,1801 +10998,STANDARD,0,Westtown,,,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.54,3370 +11001,STANDARD,0,"Floral Park","Bellerose Village, Bellerose Vlg, S Floral Park, South Floral Park","Bellerose Terrace, Bellrose Village, So Floral Park",NY,"Nassau County",America/New_York,"516,718",NA,US,40.72,-73.7,27030 +11002,"PO BOX",0,"Floral Park",,,NY,"Queens County",America/New_York,212,NA,US,40.72,-73.7,253 +11003,STANDARD,0,Elmont,"Alden Manor, Floral Park","Argo Village, Locustwood",NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.7,43370 +11004,STANDARD,0,"Glen Oaks","Floral Park",,NY,"Queens County",America/New_York,"516,718",NA,US,40.74,-73.71,12320 +11005,STANDARD,0,"Floral Park",,,NY,"Queens County",America/New_York,212,NA,US,40.76,-73.71,1910 +11010,STANDARD,0,"Franklin Square","Franklin Sq",,NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.67,23730 +11020,STANDARD,0,"Great Neck","Lake Success","Great Nk, University Gardens",NY,"Nassau County",America/New_York,516,NA,US,40.77,-73.71,6260 +11021,STANDARD,0,"Great Neck","Great Nck Plz, Great Neck Plaza","Allenwood, Great Neck Estates, Kensington, Russell Gardens, Saddle Rock Estates, Thomaston",NY,"Nassau County",America/New_York,516,NA,US,40.78,-73.73,17380 +11022,"PO BOX",0,"Great Neck",,"Lake Gardens",NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,603 +11023,STANDARD,0,"Great Neck",,"Harbor Hills, Saddle Rock",NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,9160 +11024,STANDARD,0,"Great Neck","Kings Point",Kenilworth,NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.74,6800 +11025,UNIQUE,1,"Great Neck",,"American Express",NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.72,0 +11026,"PO BOX",0,"Great Neck",,,NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,0 +11027,"PO BOX",0,"Great Neck",,,NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,0 +11030,STANDARD,0,Manhasset,Plandome,,NY,"Nassau County",America/New_York,516,NA,US,40.79,-73.69,18000 +11040,STANDARD,0,"New Hyde Park","Garden City Park, Garden Cty Pk, Hillside Manor, Hillside Mnr, Manhasset Hills, Manhasset Hl, N New Hyde Pk, North Hills, North New Hyde Park","Gdn City Park, Herricks, Lake Success, Lakeville Estates, N H P, No New Hyde Park",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,43140 +11041,UNIQUE,1,"New Hyde Park",,Visa,NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11042,STANDARD,0,"New Hyde Park","N New Hyde Pk, North New Hyde Park","Lake Success",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.7,380 +11043,UNIQUE,1,"New Hyde Park",,"Independent Elect Of Amer",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11044,UNIQUE,1,"New Hyde Park","Eastern States Bkcard Assoc",,NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11050,STANDARD,0,"Port Washington","Prt Washingtn, Sands Point","Baxter Estates, Harbor Acres, Manorhaven, Port Wash, Pr Wash, Pr Wshngtn, Pt Wash, The Terrace",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,29730 +11051,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing Hse Brm",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11052,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11053,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11054,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11055,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11096,STANDARD,0,Inwood,"Far Rockaway",,NY,"Nassau County",America/New_York,"516,718,347,929",NA,US,40.62,-73.75,7890 +11099,UNIQUE,1,"New Hyde Park",,"Eastern States Bkcard Assoc",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11101,STANDARD,0,"Long Island City","Astoria, Long Is City",Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.74,-73.93,35370 +11102,STANDARD,0,Astoria,"Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,718,NA,US,40.77,-73.93,30930 +11103,STANDARD,0,Astoria,"Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,718,NA,US,40.76,-73.91,32260 +11104,STANDARD,0,Sunnyside,"Astoria, Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,212,NA,US,40.74,-73.92,25070 +11105,STANDARD,0,Astoria,"Long Is City, Long Island City",,NY,"Queens County",America/New_York,212,NA,US,40.78,-73.91,31790 +11106,STANDARD,0,Astoria,"Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,718,NA,US,40.76,-73.93,34880 +11109,STANDARD,0,"Long Island City","Long Is City",Queens,NY,"Queens County",America/New_York,"718,347",NA,US,40.75,-73.96,5450 +11120,UNIQUE,0,"Long Island City","Long Is City","Citicorp, Queens",NY,"Queens County",America/New_York,212,NA,US,40.74,-73.93,0 +11201,STANDARD,0,Brooklyn,"Brooklyn Heights, Brooklyn Hgts",,NY,"Kings County",America/New_York,"347,718,929",NA,US,40.69,-73.99,54360 +11202,"PO BOX",0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,1925 +11203,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.94,63680 +11204,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-73.98,76550 +11205,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.69,-73.97,38920 +11206,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917",NA,US,40.7,-73.94,70650 +11207,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.67,-73.89,77180 +11208,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.67,-73.87,84010 +11209,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-74.03,61350 +11210,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"718,917,929,347",NA,US,40.63,-73.95,55870 +11211,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917",NA,US,40.71,-73.95,53930 +11212,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-73.91,69670 +11213,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929",NA,US,40.67,-73.94,52620 +11214,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.6,-74,81660 +11215,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-73.99,57850 +11216,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929",NA,US,40.68,-73.95,42870 +11217,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"646,718",NA,US,40.68,-73.98,32470 +11218,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.98,70170 +11219,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.63,-74,91910 +11220,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-74.02,106310 +11221,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.69,-73.93,63390 +11222,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917",NA,US,40.73,-73.95,33470 +11223,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.6,-73.97,67770 +11224,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.58,-73.99,35580 +11225,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-73.95,49630 +11226,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.65,-73.96,87070 +11228,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-74.01,39260 +11229,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929",NA,US,40.6,-73.94,72920 +11230,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-73.97,78250 +11231,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.68,-74.01,30750 +11232,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-74.01,23980 +11233,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.68,-73.92,54110 +11234,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,917,929,718",NA,US,40.61,-73.91,78970 +11235,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.58,-73.95,72910 +11236,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.9,82740 +11237,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718",NA,US,40.7,-73.92,37930 +11238,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929,646",NA,US,40.68,-73.96,47990 +11239,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.65,-73.88,12690 +11240,STANDARD,1,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.69,-73.98,0 +11241,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,929",NA,US,40.64,-73.94,0 +11242,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"929,347,718",NA,US,40.64,-73.94,43 +11243,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,646,NA,US,40.64,-73.94,128 +11244,UNIQUE,1,Brooklyn,,"Con Edison",NY,"Kings County",America/New_York,212,NA,US,40.68,-73.99,19 +11245,UNIQUE,0,Brooklyn,,"Chase Manhattan Bank",NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,0 +11247,"PO BOX",0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,660 +11248,UNIQUE,1,Brooklyn,,"Workers Compensation",NY,"Kings County",America/New_York,212,NA,US,40.69,-73.99,0 +11249,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718",NA,US,40.64,-73.94,0 +11251,UNIQUE,0,Brooklyn,,"Brooklyn Navy Yard",NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,0 +11252,STANDARD,0,Brooklyn,"Fort Hamilton",,NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,26 +11254,UNIQUE,1,Brooklyn,,"Ny Telephone",NY,"Kings County",America/New_York,212,NA,US,40.69,-73.99,0 +11255,UNIQUE,1,Brooklyn,,"Ny Telephone",NY,"Kings County",America/New_York,212,NA,US,40.69,-73.98,51 +11256,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.94,0 +11351,STANDARD,0,Flushing,,Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.78,-73.83,0 +11352,"PO BOX",0,Flushing,,Queens,NY,"Queens County",America/New_York,212,NA,US,40.77,-73.84,1022 +11354,STANDARD,0,Flushing,,"Linden Hill, Queens",NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.77,-73.84,54580 +11355,STANDARD,0,Flushing,,Queens,NY,"Queens County",America/New_York,"917,929,347,718",NA,US,40.75,-73.82,91180 +11356,STANDARD,0,"College Point",Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.78,-73.84,24150 +11357,STANDARD,0,Whitestone,"Beechhurst, Flushing, Malba",Queens,NY,"Queens County",America/New_York,347,NA,US,40.79,-73.81,37510 +11358,STANDARD,0,Flushing,Auburndale,"Queens, Sta A",NY,"Queens County",America/New_York,212,NA,US,40.76,-73.8,35870 +11359,STANDARD,0,Bayside,Flushing,Queens,NY,"Queens County",America/New_York,347,NA,US,40.79,-73.78,0 +11360,STANDARD,0,Bayside,Flushing,"Bay Terrace, Queens",NY,"Queens County",America/New_York,"347,718",NA,US,40.78,-73.78,17510 +11361,STANDARD,0,Bayside,Flushing,Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.76,-73.77,25790 +11362,STANDARD,0,"Little Neck","Douglaston, Flushing","Horace Harding, Queens",NY,"Queens County",America/New_York,212,NA,US,40.76,-73.74,16480 +11363,STANDARD,0,"Little Neck","Douglaston, Flushing",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.77,-73.75,6370 +11364,STANDARD,0,"Oakland Gardens","Bayside, Bayside Hills, Flushing, Hollis Hills, Oakland Gdns",Queens,NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.75,-73.76,34260 +11365,STANDARD,0,"Fresh Meadows",Flushing,"Pomonok, Queens",NY,"Queens County",America/New_York,718,NA,US,40.74,-73.79,41530 +11366,STANDARD,0,"Fresh Meadows",Flushing,"Queens, Utopia",NY,"Queens County",America/New_York,718,NA,US,40.73,-73.79,13270 +11367,STANDARD,0,Flushing,"Kew Garden Hl, Kew Gardens Hills",Queens,NY,"Queens County",America/New_York,718,NA,US,40.73,-73.83,38310 +11368,STANDARD,0,Corona,Flushing,Queens,NY,"Queens County",America/New_York,718,NA,US,40.74,-73.85,96980 +11369,STANDARD,0,"East Elmhurst",Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.76,-73.88,34110 +11370,STANDARD,0,"East Elmhurst",Flushing,"Queens, Trainsmeadow",NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.77,-73.89,25290 +11371,STANDARD,0,Flushing,"East Elmhurst, La Guardia Airport, La Gurda Arpt",Queens,NY,"Queens County",America/New_York,212,NA,US,40.77,-73.87,97 +11372,STANDARD,0,"Jackson Heights","Flushing, Jackson Hts",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.75,-73.88,63280 +11373,STANDARD,0,Elmhurst,Flushing,Queens,NY,"Queens County",America/New_York,"347,917,929,718",NA,US,40.74,-73.88,95100 +11374,STANDARD,0,"Rego Park",Flushing,"Queens, Rego Pk",NY,"Queens County",America/New_York,"347,718",NA,US,40.72,-73.86,41150 +11375,STANDARD,0,"Forest Hills",Flushing,"Forest Hls, Parkside, Queens",NY,"Queens County",America/New_York,"347,718",NA,US,40.72,-73.84,63280 +11377,STANDARD,0,Woodside,Flushing,Queens,NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.74,-73.9,81800 +11378,STANDARD,0,Maspeth,Flushing,Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.72,-73.9,33410 +11379,STANDARD,0,"Middle Village","Flushing, Middle Vlg","Elmhurst, Queens",NY,"Queens County",America/New_York,212,NA,US,40.71,-73.88,33030 +11380,"PO BOX",0,Elmhurst,Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.72,-73.87,139 +11381,UNIQUE,0,Flushing,,"Metropolitan Museum Of Art, Queens",NY,"Queens County",America/New_York,212,NA,US,40.77,-73.84,0 +11385,STANDARD,0,Ridgewood,"Flushing, Glendale","Fresh Pond, Queens",NY,"Queens County",America/New_York,"347,718",NA,US,40.7,-73.89,87510 +11386,"PO BOX",0,Ridgewood,Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.7,-73.89,679 +11390,UNIQUE,1,Flushing,,"Contest And Large Vol",NY,"Queens County",America/New_York,212,NA,US,40.77,-73.84,0 +11405,UNIQUE,0,Jamaica,,"Motor Vehicle Bureau, Queens",NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,0 +11411,STANDARD,0,"Cambria Heights","Cambria Hts, Jamaica",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.69,-73.73,17600 +11412,STANDARD,0,"Saint Albans",Jamaica,"St Albans",NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.69,-73.75,33190 +11413,STANDARD,0,"Springfield Gardens","Jamaica, Laurelton, Rosedale, Saint Albans, Sprngfld Gdns",Queens,NY,"Queens County",America/New_York,"516,718",NA,US,40.66,-73.75,36310 +11414,STANDARD,0,"Howard Beach",Jamaica,Queens,NY,"Queens County",America/New_York,212,NA,US,40.66,-73.84,23690 +11415,STANDARD,0,"Kew Gardens",Jamaica,Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.71,-73.83,16890 +11416,STANDARD,0,"Ozone Park",Jamaica,Queens,NY,"Queens County",America/New_York,718,NA,US,40.68,-73.85,25240 +11417,STANDARD,0,"Ozone Park",Jamaica,Queens,NY,"Queens County",America/New_York,212,NA,US,40.68,-73.84,28910 +11418,STANDARD,0,"Richmond Hill","Jamaica, Kew Gardens",Queens,NY,"Queens County",America/New_York,"347,917,929,718",NA,US,40.7,-73.84,33980 +11419,STANDARD,0,"South Richmond Hill","Jamaica, S Richmond Hl","Queens, S Richmond Hill",NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.69,-73.82,43820 +11420,STANDARD,0,"South Ozone Park","Jamaica, S Ozone Park",Queens,NY,"Queens County",America/New_York,718,NA,US,40.67,-73.81,43400 +11421,STANDARD,0,Woodhaven,Jamaica,Queens,NY,"Queens County",America/New_York,212,NA,US,40.69,-73.85,39100 +11422,STANDARD,0,Rosedale,Jamaica,Queens,NY,"Queens County",America/New_York,"516,718",NA,US,40.66,-73.73,27690 +11423,STANDARD,0,Hollis,Jamaica,Queens,NY,"Queens County",America/New_York,718,NA,US,40.71,-73.76,28320 +11424,"PO BOX",0,Jamaica,"Kew Gardens","Borough Hall, Queens",NY,"Queens County",America/New_York,212,NA,US,40.71,-73.83,32 +11425,UNIQUE,0,Jamaica,,"Queens, Vet Admin Ext Care Ctr",NY,"Kings County",America/New_York,212,NA,US,40.61,-74.02,25 +11426,STANDARD,0,Bellerose,Jamaica,Queens,NY,"Queens County",America/New_York,"718,516",NA,US,40.74,-73.72,17570 +11427,STANDARD,0,"Queens Village","Bellerose Manor, Bellrs Manor, Jamaica, Queens Vlg","Hollis Hills, Queens",NY,"Queens County",America/New_York,212,NA,US,40.73,-73.75,22010 +11428,STANDARD,0,"Queens Village","Bellerose Manor, Bellrs Manor, Jamaica, Queens Vlg",Queens,NY,"Queens County",America/New_York,718,NA,US,40.72,-73.74,18650 +11429,STANDARD,0,"Queens Village","Jamaica, Queens Vlg",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.71,-73.74,22770 +11430,STANDARD,0,Jamaica,"Jf Kennedy Ap, Jfk Airport, John F Kennedy Airport",Queens,NY,"Queens County",America/New_York,718,NA,US,40.65,-73.79,230 +11431,"PO BOX",0,Jamaica,,Queens,NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,1337 +11432,STANDARD,0,Jamaica,,"Jamaica Est, Queens",NY,"Queens County",America/New_York,"718,347",NA,US,40.72,-73.79,56400 +11433,STANDARD,0,Jamaica,"Addisleigh Park, Addisleigh Pk",Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.7,-73.79,31560 +11434,STANDARD,0,Jamaica,"Addisleigh Park, Addisleigh Pk, Rochdale Village, Rochdale Vlg","Queens, Rochdale",NY,"Queens County",America/New_York,"516,718",NA,US,40.68,-73.78,56160 +11435,STANDARD,0,Jamaica,Briarwood,Queens,NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.7,-73.81,50000 +11436,STANDARD,0,Jamaica,"S Ozone Park, South Ozone Park","Queens, S Ozone Pk",NY,"Queens County",America/New_York,718,NA,US,40.68,-73.8,17700 +11437,UNIQUE,0,Jamaica,,Aramex,NY,,,,NA,US,0,0,0 +11439,UNIQUE,0,Jamaica,,"Queens, Saint John University",NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,56 +11451,UNIQUE,0,Jamaica,,"Queens, York College",NY,"Queens County",America/New_York,212,NA,US,40.7,-73.8,0 +11499,UNIQUE,0,Jamaica,,"Amf/Jfk Incoming Express Mai",NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,0 +11501,STANDARD,0,Mineola,,,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.64,19580 +11507,STANDARD,0,Albertson,,,NY,"Nassau County",America/New_York,"516,718",NA,US,40.77,-73.64,7620 +11509,STANDARD,0,"Atlantic Beach","Atlantic Bch",,NY,"Nassau County",America/New_York,516,NA,US,40.59,-73.73,2150 +11510,STANDARD,0,Baldwin,"N Baldwin, North Baldwin","Baldwin Harbor",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.61,33070 +11514,STANDARD,0,"Carle Place",,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.75,-73.61,4630 +11516,STANDARD,0,Cedarhurst,,,NY,"Nassau County",America/New_York,516,NA,US,40.63,-73.73,7930 +11518,STANDARD,0,"East Rockaway",,"E Rockaway",NY,"Nassau County",America/New_York,516,NA,US,40.64,-73.66,10360 +11520,STANDARD,0,Freeport,,,NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.58,42690 +11530,STANDARD,0,"Garden City","Garden City S, Garden City South, Stewart Manor, Village Of Garden City, Vlg Gdn City","Mitchell Field, Roosevelt Field",NY,"Nassau County",America/New_York,"631,718,516",NA,US,40.72,-73.64,28910 +11531,"PO BOX",0,"Garden City",,"Roosevelt Field",NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.64,176 +11535,UNIQUE,1,"Garden City",,Abmps,NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.64,0 +11536,UNIQUE,1,"Garden City","Select And Save",,NY,"Nassau County",America/New_York,516,NA,US,40.67,-73.7,0 +11542,STANDARD,0,"Glen Cove",,,NY,"Nassau County",America/New_York,516,NA,US,40.86,-73.63,24110 +11545,STANDARD,0,"Glen Head",,"Brookville, Muttontown, Old Brookville, Roslyn Harbor, Upper Brookville",NY,"Nassau County",America/New_York,516,NA,US,40.84,-73.61,11480 +11547,"PO BOX",0,"Glenwood Landing","Glenwood Lndg",,NY,"Nassau County",America/New_York,516,NA,US,40.83,-73.64,1045 +11548,STANDARD,0,Greenvale,,"Brookville, E Hills, East Hills, Old Brookville, Roslyn Harbor",NY,"Nassau County",America/New_York,516,NA,US,40.81,-73.63,1300 +11549,UNIQUE,0,Hempstead,,"Hofstra Univ",NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.6,32 +11550,STANDARD,0,Hempstead,"S Hempstead, South Hempstead",,NY,"Nassau County",America/New_York,"516,718",NA,US,40.7,-73.61,52130 +11551,"PO BOX",0,Hempstead,,,NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.61,1239 +11552,STANDARD,0,"West Hempstead","W Hempstead",Lakeview,NY,"Nassau County",America/New_York,516,NA,US,40.69,-73.65,25470 +11553,STANDARD,0,Uniondale,,"Mitchell Field",NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.59,25930 +11554,STANDARD,0,"East Meadow",,"E Meadow",NY,"Nassau County",America/New_York,516,NA,US,40.71,-73.55,36940 +11555,UNIQUE,0,Uniondale,,Citibank,NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.59,0 +11556,STANDARD,0,Uniondale,,,NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.58,14 +11557,STANDARD,0,Hewlett,,"Hewlett Bay, Hewlett Bay Park, Hewlett Harbor",NY,"Nassau County",America/New_York,516,NA,US,40.64,-73.69,8050 +11558,STANDARD,0,"Island Park",,"Barnum Island, Harbor Island, Harbor Isle",NY,"Nassau County",America/New_York,516,NA,US,40.6,-73.64,7670 +11559,STANDARD,0,Lawrence,,"Meadowmere Park",NY,"Nassau County",America/New_York,"516,718",NA,US,40.6,-73.71,8250 +11560,STANDARD,0,"Locust Valley",,"Lattingtown, Matinecock",NY,"Nassau County",America/New_York,516,NA,US,40.88,-73.58,6200 +11561,STANDARD,0,"Long Beach","E Atlantc Bch, E Atlantic Beach, East Atlantic Beach, Lido Beach",,NY,"Nassau County",America/New_York,516,NA,US,40.59,-73.65,31210 +11563,STANDARD,0,Lynbrook,,,NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.67,21660 +11565,STANDARD,0,Malverne,,,NY,"Nassau County",America/New_York,516,NA,US,40.67,-73.67,8910 +11566,STANDARD,0,Merrick,"N Merrick, North Merrick",,NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.55,35600 +11568,STANDARD,0,"Old Westbury",Westbury,,NY,"Nassau County",America/New_York,"516,631,718",NA,US,40.78,-73.59,3130 +11569,"PO BOX",0,"Point Lookout",,"Pt Lookout",NY,"Nassau County",America/New_York,516,NA,US,40.59,-73.58,1554 +11570,STANDARD,0,"Rockville Centre","Rockville Ctr","Lakeview, Rockville Center, Rvc",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.63,27210 +11571,"PO BOX",0,"Rockville Centre","Rockville Ctr","Rockville Center, Rvc",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.63,266 +11572,STANDARD,0,Oceanside,"Rockville Centre, Rockville Ctr","Rockville Center, Rvc",NY,"Nassau County",America/New_York,516,NA,US,40.63,-73.63,30450 +11575,STANDARD,0,Roosevelt,,,NY,"Nassau County",America/New_York,516,NA,US,40.68,-73.58,16810 +11576,STANDARD,0,Roslyn,,"E Hills, East Hills, Roslyn Estates, Roslyn Harbor",NY,"Nassau County",America/New_York,"516,718",NA,US,40.8,-73.65,12500 +11577,STANDARD,0,"Roslyn Heights","Roslyn Hts","E Hills, East Hills",NY,"Nassau County",America/New_York,"516,718",NA,US,40.78,-73.64,12240 +11579,STANDARD,0,"Sea Cliff",,,NY,"Nassau County",America/New_York,516,NA,US,40.84,-73.64,4860 +11580,STANDARD,0,"Valley Stream",,"N Valley Stream, North Valley Stream",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.7,41820 +11581,STANDARD,0,"Valley Stream",,"N Woodmere, North Woodmere",NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.72,22190 +11582,"PO BOX",0,"Valley Stream",,,NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.7,483 +11590,STANDARD,0,Westbury,,"New Cassel",NY,"Nassau County",America/New_York,"516,631,718",NA,US,40.75,-73.58,47480 +11592,UNIQUE,1,"Rockville Center","Rvc, National Profit, Rockville Ctr, Rockville Centre",,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.57,0 +11594,UNIQUE,1,Westbury,"115 Firms",,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.58,0 +11595,UNIQUE,1,Westbury,Cheeselovers,,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.58,0 +11596,STANDARD,0,"Williston Park","E Williston, East Williston, Williston Pk",,NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.64,10750 +11597,UNIQUE,1,Westbury,"115 Crm Firms",,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.58,0 +11598,STANDARD,0,Woodmere,,"Hewlett Neck, Woodsburgh",NY,"Nassau County",America/New_York,516,NA,US,40.63,-73.72,14050 +11599,STANDARD,0,"Garden City",,,NY,"Nassau County",America/New_York,"516,631,718",NA,US,40.72,-73.64,0 +11690,"PO BOX",0,"Far Rockaway","Edgemere, Wave Crest",Queens,NY,"Queens County",America/New_York,212,NA,US,40.59,-73.81,656 +11691,STANDARD,0,"Far Rockaway",,Queens,NY,"Queens County",America/New_York,"347,516,718,929",NA,US,40.6,-73.76,47660 +11692,STANDARD,0,Arverne,"Far Rockaway",Queens,NY,"Queens County",America/New_York,"347,929,718",NA,US,40.59,-73.79,16850 +11693,STANDARD,0,"Far Rockaway","Broad Channel, Rockaway Bch, Rockaway Beach",Queens,NY,"Queens County",America/New_York,718,NA,US,40.59,-73.81,10310 +11694,STANDARD,0,"Rockaway Park","Belle Harbor, Far Rockaway, Neponsit",Queens,NY,"Queens County",America/New_York,718,NA,US,40.58,-73.84,15680 +11695,"PO BOX",0,"Far Rockaway","Fort Tilden",Queens,NY,"Queens County",America/New_York,212,NA,US,40.59,-73.81,30 +11697,STANDARD,0,"Breezy Point","Far Rockaway, Rockaway Point, Rockaway Pt",Queens,NY,"Queens County",America/New_York,212,NA,US,40.56,-73.91,4120 +11701,STANDARD,0,Amityville,"Amity Harbor","N Amityville, North Amityville",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.66,-73.41,25330 +11702,STANDARD,0,Babylon,"Captree Is, Captree Island, Gilgo Beach, Oak Beach, Oak Island, W Gilgo Beach, West Gilgo Beach",,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.69,-73.32,13920 +11703,STANDARD,0,"North Babylon",Babylon,"N Babylon",NY,"Suffolk County",America/New_York,"631,516",NA,US,40.73,-73.32,16550 +11704,STANDARD,0,"West Babylon",Babylon,"W Babylon",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.71,-73.35,37160 +11705,STANDARD,0,Bayport,,"Bay Port",NY,"Suffolk County",America/New_York,631,NA,US,40.74,-73.05,7840 +11706,STANDARD,0,"Bay Shore","Fair Harbor, Kismet, Point O Woods, Saltaire","Bayshore, N Bay Shore, North Bay Shore, W Bay Shore, West Bay Shore",NY,"Suffolk County",America/New_York,631,NA,US,40.72,-73.25,61150 +11707,"PO BOX",0,"West Babylon",Babylon,"W Babylon",NY,"Suffolk County",America/New_York,631,NA,US,40.71,-73.35,134 +11708,STANDARD,1,Amityville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.68,-73.41,0 +11709,STANDARD,0,Bayville,,,NY,"Nassau County",America/New_York,516,NA,US,40.9,-73.56,6310 +11710,STANDARD,0,Bellmore,"N Bellmore, North Bellmore",,NY,"Nassau County",America/New_York,"516,631",NA,US,40.65,-73.52,34320 +11713,STANDARD,0,Bellport,,"N Bellport, North Bellport",NY,"Suffolk County",America/New_York,631,NA,US,40.75,-72.94,9980 +11714,STANDARD,0,Bethpage,,,NY,"Nassau County",America/New_York,516,NA,US,40.74,-73.48,22770 +11715,STANDARD,0,"Blue Point",,,NY,"Suffolk County",America/New_York,631,NA,US,40.75,-73.03,4310 +11716,STANDARD,0,Bohemia,,,NY,"Suffolk County",America/New_York,631,NA,US,40.77,-73.12,9940 +11717,STANDARD,0,Brentwood,"Edgewood, W Brentwood, West Brentwood","Pine Air",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.78,-73.24,61220 +11718,STANDARD,0,Brightwaters,,,NY,"Suffolk County",America/New_York,631,NA,US,40.71,-73.26,3250 +11719,STANDARD,0,Brookhaven,,"S Haven",NY,"Suffolk County",America/New_York,631,NA,US,40.78,-72.91,2790 +11720,STANDARD,0,Centereach,"S Setauket, South Setauket",,NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73.08,27330 +11721,STANDARD,0,Centerport,,"Center Port",NY,"Suffolk County",America/New_York,631,NA,US,40.9,-73.37,6310 +11722,STANDARD,0,"Central Islip",,"S Hauppauge, South Hauppauge",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.78,-73.19,36010 +11724,STANDARD,0,"Cold Spring Harbor","Cold Spg Hbr",,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.86,-73.44,3280 +11725,STANDARD,0,Commack,,,NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.28,28380 +11726,STANDARD,0,Copiague,,Marconiville,NY,"Suffolk County",America/New_York,631,NA,US,40.67,-73.39,19920 +11727,STANDARD,0,Coram,,,NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73,26490 +11729,STANDARD,0,"Deer Park",,Deerpark,NY,"Suffolk County",America/New_York,631,NA,US,40.76,-73.32,27510 +11730,STANDARD,0,"East Islip",,"E Islip",NY,"Suffolk County",America/New_York,631,NA,US,40.72,-73.18,13900 +11731,STANDARD,0,"East Northport","E Northport, Elwood",,NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73.32,29560 +11732,STANDARD,0,"East Norwich",,"E Norwich, Muttontown, Upper Brookville",NY,"Nassau County",America/New_York,516,NA,US,40.84,-73.54,3440 +11733,STANDARD,0,"East Setauket",Setauket,"E Setauket, Old Field, Poquott, Strongs Neck",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.93,-73.1,16700 +11735,STANDARD,0,Farmingdale,"S Farmingdale, South Farmingdale","E Farmingdale, East Farmingdale",NY,"Nassau County",America/New_York,"516,631",NA,US,40.73,-73.44,31300 +11736,UNIQUE,1,Farmingdale,,"Creative Mailing Service",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.44,20 +11737,STANDARD,0,Farmingdale,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.73,-73.44,0 +11738,STANDARD,0,Farmingville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.04,16090 +11739,"PO BOX",0,"Great River",,,NY,"Suffolk County",America/New_York,631,NA,US,40.73,-73.16,1506 +11740,STANDARD,0,Greenlawn,,,NY,"Suffolk County",America/New_York,631,NA,US,40.86,-73.36,9210 +11741,STANDARD,0,Holbrook,,,NY,"Suffolk County",America/New_York,631,NA,US,40.79,-73.07,26380 +11742,STANDARD,0,Holtsville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.81,-73.04,12440 +11743,STANDARD,0,Huntington,"Halesite, Lloyd Harbor","Bay Hills, Baycrest, Beech Croft, Cold Spring Hills, Harbor Heights, Huntington Bay, Knollwood Beach, Lloyd Neck, W Hills, West Hills, Wincoma",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.87,-73.4,40610 +11746,STANDARD,0,"Huntington Station","Dix Hills, Huntingtn Sta, S Huntington, South Huntington","So Huntington",NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.4,65010 +11747,STANDARD,0,Melville,"Huntingtn Sta, Huntington Station","Dix Hills",NY,"Suffolk County",America/New_York,631,NA,US,40.78,-73.41,20630 +11749,STANDARD,0,Islandia,"Central Islip, Hauppauge, Ronkonkoma",,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.8,-73.17,3160 +11750,UNIQUE,1,"Huntington Station","Huntingtn Sta, Melville",Abmps,NY,"Suffolk County",America/New_York,631,NA,US,40.83,-73.37,0 +11751,STANDARD,0,Islip,,"Bayberry Point, Islip Manor",NY,"Suffolk County",America/New_York,631,NA,US,40.73,-73.21,13950 +11752,STANDARD,0,"Islip Terrace",,,NY,"Suffolk County",America/New_York,631,NA,US,40.76,-73.17,9650 +11753,STANDARD,0,Jericho,,Muttontown,NY,"Nassau County",America/New_York,516,NA,US,40.78,-73.54,13190 +11754,STANDARD,0,"Kings Park",,"San Remo",NY,"Suffolk County",America/New_York,631,NA,US,40.89,-73.24,17770 +11755,STANDARD,0,"Lake Grove",,"Lk Grove",NY,"Suffolk County",America/New_York,631,NA,US,40.85,-73.11,11410 +11756,STANDARD,0,Levittown,,"Island Trees, Plainedge",NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.51,42360 +11757,STANDARD,0,Lindenhurst,,"Heer Park, N Lindenhurst, North Lindenhurst",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.68,-73.37,42300 +11758,STANDARD,0,Massapequa,"N Massapequa, North Massapequa","E Massapequa, East Massapequa",NY,"Nassau County",America/New_York,"631,516",NA,US,40.66,-73.47,53360 +11760,"PO BOX",0,Melville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.82,-73.21,0 +11762,STANDARD,0,"Massapequa Park","Massapequa Pk","Bar Harbor",NY,"Nassau County",America/New_York,"516,631",NA,US,40.68,-73.45,22430 +11763,STANDARD,0,Medford,,"Gordon Heights",NY,"Suffolk County",America/New_York,631,NA,US,40.82,-72.98,26960 +11764,STANDARD,0,"Miller Place",,,NY,"Suffolk County",America/New_York,631,NA,US,40.93,-72.98,12540 +11765,STANDARD,0,"Mill Neck",,,NY,"Nassau County",America/New_York,516,NA,US,40.88,-73.55,580 +11766,STANDARD,0,"Mount Sinai",,"Mt Sinai",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.93,-73.01,12050 +11767,STANDARD,0,Nesconset,,,NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.15,14100 +11768,STANDARD,0,Northport,"Fort Salonga","Asharoken, Crab Meadow, Eatons Neck, Sunken Meadow",NY,"Suffolk County",America/New_York,631,NA,US,40.9,-73.34,20780 +11769,STANDARD,0,Oakdale,,,NY,"Suffolk County",America/New_York,631,NA,US,40.73,-73.13,8700 +11770,"PO BOX",0,"Ocean Beach",,"Corneil Estates, Fire Island, Ocean Bay Park, Seaview",NY,"Suffolk County",America/New_York,631,NA,US,40.65,-73.16,355 +11771,STANDARD,0,"Oyster Bay",,"Centre Island, Cove Neck, Laurel Hollow, Muttontown, Oyster Bay Cove, Upper Brookville",NY,"Nassau County",America/New_York,516,NA,US,40.86,-73.53,9250 +11772,STANDARD,0,Patchogue,"Blue Point, Davis Park, E Patchogue, East Patchogue","Canaan Lake, N Patchogue, North Patchogue",NY,"Suffolk County",America/New_York,631,NA,US,40.76,-73.01,39620 +11773,UNIQUE,0,Melville,,"Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.81,-73.5,0 +11774,UNIQUE,1,Farmingdale,Fulfillment,,NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.44,0 +11775,UNIQUE,0,Melville,,"Don Jagoda Assc Inc",NY,"Suffolk County",America/New_York,631,NA,US,40.78,-73.41,0 +11776,STANDARD,0,"Port Jefferson Station","Port Jeff Sta","P J S, Pjs, Prt Jeff Sta, Prt Jefferson Station, Terryville",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.92,-73.06,22630 +11777,STANDARD,0,"Port Jefferson","Port Jeff Sta, Port Jefferson Station, Prt Jefferson","Belle Terre, P J S, Pjs, Pt Jefferson Station",NY,"Suffolk County",America/New_York,"631,516",NA,US,40.94,-73.05,8520 +11778,STANDARD,0,"Rocky Point",,,NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.92,11890 +11779,STANDARD,0,Ronkonkoma,"Lake Ronkonkoma, Lk Ronkonkoma","Lake Ronkonkoma Heights",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.8,-73.12,36100 +11780,STANDARD,0,"Saint James",,"Box Hill, Deer Wells, Flowerfield, Head Of The Harbor, Nissequogue, St James",NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73.15,14780 +11782,STANDARD,0,Sayville,"Cherry Grove, Fire Is Pines, Fire Island Pines",,NY,"Suffolk County",America/New_York,"631,516",NA,US,40.74,-73.08,14940 +11783,STANDARD,0,Seaford,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.66,-73.49,21120 +11784,STANDARD,0,Selden,,"Old Westfield",NY,"Suffolk County",America/New_York,631,NA,US,40.86,-73.04,23350 +11786,STANDARD,0,Shoreham,,,NY,"Suffolk County",America/New_York,631,NA,US,40.95,-72.9,6280 +11787,STANDARD,0,Smithtown,,"Village Of The Branch",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.85,-73.21,33680 +11788,STANDARD,0,Hauppauge,Smithtown,,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.82,-73.21,16250 +11789,STANDARD,0,"Sound Beach",,"Scotts Beach",NY,"Suffolk County",America/New_York,631,NA,US,40.96,-72.97,7010 +11790,STANDARD,0,"Stony Brook",,"Head Of The Harbor, Stonybrook",NY,"Suffolk County",America/New_York,631,NA,US,40.9,-73.12,12810 +11791,STANDARD,0,Syosset,,"Laurel Hollow, Muttontown, Oyster Bay Cove",NY,"Nassau County",America/New_York,516,NA,US,40.81,-73.5,25630 +11792,STANDARD,0,"Wading River",,"Wildwood, Willwood",NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.81,8310 +11793,STANDARD,0,Wantagh,,"Briar Park, N Wantagh",NY,"Nassau County",America/New_York,"516,631",NA,US,40.66,-73.51,31970 +11794,UNIQUE,0,"Stony Brook",,"Stonybrook, Suny Stony Brook",NY,"Suffolk County",America/New_York,631,NA,US,40.91,-73.12,97 +11795,STANDARD,0,"West Islip",,"W Islip",NY,"Suffolk County",America/New_York,631,NA,US,40.7,-73.29,24590 +11796,STANDARD,0,"West Sayville",,"W Sayville",NY,"Suffolk County",America/New_York,631,NA,US,40.72,-73.1,3580 +11797,STANDARD,0,Woodbury,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.81,-73.47,9230 +11798,STANDARD,0,Wyandanch,"Wheatley Heights, Wheatley Hts",,NY,"Suffolk County",America/New_York,631,NA,US,40.74,-73.37,16500 +11801,STANDARD,0,Hicksville,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.76,-73.52,41240 +11802,"PO BOX",0,Hicksville,,,NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,539 +11803,STANDARD,0,Plainview,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.78,-73.47,29330 +11804,STANDARD,0,"Old Bethpage",,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.75,-73.45,5020 +11815,UNIQUE,0,Hicksville,,"L I Power Authority",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11819,UNIQUE,1,Hicksville,,"Chase Bank",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11853,UNIQUE,0,Jericho,,"Uhc Berdon",NY,"Nassau County",America/New_York,516,NA,US,40.78,-73.54,0 +11854,UNIQUE,1,Hicksville,,"Hicksville Firms",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11855,UNIQUE,1,Hicksville,,"Hicksville Crm Firms",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11901,STANDARD,0,Riverhead,Flanders,Northampton,NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.67,23620 +11930,"PO BOX",0,Amagansett,,"Beach Hampton, Promised Land",NY,"Suffolk County",America/New_York,631,NA,US,40.99,-72.1,2505 +11931,"PO BOX",0,Aquebogue,,,NY,"Suffolk County",America/New_York,631,NA,US,40.93,-72.61,2469 +11932,"PO BOX",0,Bridgehampton,,"Bridge Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.29,1730 +11933,STANDARD,0,Calverton,"Baiting Hollow, Baiting Holw",,NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.76,6200 +11934,STANDARD,0,"Center Moriches","Ctr Moriches",,NY,"Suffolk County",America/New_York,631,NA,US,40.79,-72.79,7980 +11935,STANDARD,0,Cutchogue,,"Nassau Point",NY,"Suffolk County",America/New_York,631,NA,US,41.01,-72.48,3180 +11937,STANDARD,0,"East Hampton",,"E Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.95,-72.19,15100 +11939,STANDARD,0,"East Marion",,"E Marion",NY,"Suffolk County",America/New_York,631,NA,US,41.12,-72.34,880 +11940,STANDARD,0,"East Moriches",,"E Moriches",NY,"Suffolk County",America/New_York,631,NA,US,40.81,-72.76,5140 +11941,STANDARD,0,Eastport,,,NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.73,2530 +11942,STANDARD,0,"East Quogue",,"E Quogue",NY,"Suffolk County",America/New_York,631,NA,US,40.85,-72.57,4710 +11944,STANDARD,0,Greenport,,,NY,"Suffolk County",America/New_York,631,NA,US,41.1,-72.36,3830 +11946,STANDARD,0,"Hampton Bays",,,NY,"Suffolk County",America/New_York,631,NA,US,40.86,-72.52,13410 +11947,"PO BOX",0,Jamesport,,,NY,"Suffolk County",America/New_York,631,NA,US,40.95,-72.57,1482 +11948,STANDARD,0,Laurel,,,NY,"Suffolk County",America/New_York,631,NA,US,40.97,-72.55,1130 +11949,STANDARD,0,Manorville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.85,-72.79,13860 +11950,STANDARD,0,Mastic,,"Manor Park, Rivers Edge",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.8,-72.84,15000 +11951,STANDARD,0,"Mastic Beach",,"Old Mastic, Village Of Mastic Beach",NY,"Suffolk County",America/New_York,631,NA,US,40.76,-72.84,12110 +11952,STANDARD,0,Mattituck,,,NY,"Suffolk County",America/New_York,631,NA,US,41,-72.53,4500 +11953,STANDARD,0,"Middle Island",,,NY,"Suffolk County",America/New_York,631,NA,US,40.88,-72.94,11820 +11954,STANDARD,0,Montauk,,"Hither Plains",NY,"Suffolk County",America/New_York,631,NA,US,41.04,-71.94,4190 +11955,STANDARD,0,Moriches,,,NY,"Suffolk County",America/New_York,631,NA,US,40.8,-72.82,2890 +11956,"PO BOX",0,"New Suffolk",,,NY,"Suffolk County",America/New_York,631,NA,US,40.99,-72.48,360 +11957,STANDARD,0,Orient,,"Orient Point",NY,"Suffolk County",America/New_York,631,NA,US,41.14,-72.3,700 +11958,STANDARD,0,Peconic,,,NY,"Suffolk County",America/New_York,631,NA,US,41.03,-72.46,740 +11959,"PO BOX",0,Quogue,,,NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.6,1395 +11960,"PO BOX",0,Remsenburg,,,NY,"Suffolk County",America/New_York,631,NA,US,40.81,-72.71,1461 +11961,STANDARD,0,Ridge,,"Lake Panamoka, Panamoka",NY,"Suffolk County",America/New_York,631,NA,US,40.91,-72.88,12210 +11962,"PO BOX",0,Sagaponack,,,NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.27,621 +11963,STANDARD,0,"Sag Harbor",,"Bay Point, N Haven, North Haven, Pine Neck",NY,"Suffolk County",America/New_York,631,NA,US,40.99,-72.29,6610 +11964,"PO BOX",0,"Shelter Island","Shelter Is",,NY,"Suffolk County",America/New_York,631,NA,US,41.06,-72.32,1729 +11965,"PO BOX",0,"Shelter Island Heights","Shelter Is Ht",,NY,"Suffolk County",America/New_York,631,NA,US,41.1,-72.29,875 +11967,STANDARD,0,Shirley,"E Yaphank, East Yaphank, Smith Point","Smiths Point",NY,"Suffolk County",America/New_York,631,NA,US,40.79,-72.87,24410 +11968,STANDARD,0,Southampton,,"S Hampton, South Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.88,-72.39,9100 +11969,"PO BOX",0,Southampton,,"S Hampton, South Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.88,-72.39,2417 +11970,"PO BOX",0,"South Jamesport","S Jamesport",,NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.58,405 +11971,STANDARD,0,Southold,,,NY,"Suffolk County",America/New_York,631,NA,US,41.05,-72.42,5170 +11972,"PO BOX",0,Speonk,,,NY,"Suffolk County",America/New_York,631,NA,US,40.85,-72.7,926 +11973,"PO BOX",0,Upton,,,NY,"Suffolk County",America/New_York,631,NA,US,40.86,-72.87,438 +11975,"PO BOX",0,Wainscott,,,NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.24,1196 +11976,STANDARD,0,"Water Mill",,"Watermill, Wtr Mill",NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.34,1830 +11977,STANDARD,0,Westhampton,,"W Hampton, West Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.68,2390 +11978,STANDARD,0,"Westhampton Beach","W Hampton Bch","Quioque, W Hampton Beach, West Hampton Beach, West Hampton Dunes, Westhampton Dunes",NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.65,3450 +11980,STANDARD,0,Yaphank,,"Carver Park",NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.92,4460 +12007,STANDARD,0,Alcove,,,NY,"Albany County",America/New_York,518,NA,US,42.46,-73.93,160 +12008,STANDARD,0,Alplaus,,,NY,"Schenectady County",America/New_York,518,NA,US,42.85,-73.91,460 +12009,STANDARD,0,Altamont,,"Thompsons Lake",NY,"Albany County",America/New_York,518,NA,US,42.7,-74.03,7240 +12010,STANDARD,0,Amsterdam,"West Charlton","Perth, West Glenville",NY,"Montgomery County",America/New_York,518,NA,US,42.94,-74.19,24440 +12015,STANDARD,0,Athens,,,NY,"Greene County",America/New_York,518,NA,US,42.26,-73.81,2900 +12016,STANDARD,0,Auriesville,Fultonville,,NY,"Montgomery County",America/New_York,518,NA,US,42.87,-74.35,0 +12017,STANDARD,0,Austerlitz,,,NY,"Columbia County",America/New_York,518,NA,US,42.32,-73.47,330 +12018,STANDARD,0,"Averill Park",,"Alps, Burden Lake, Dunham Hollow, East Poestenkill, Glass Lake",NY,"Rensselaer County",America/New_York,518,NA,US,42.63,-73.55,7310 +12019,STANDARD,0,"Ballston Lake","Burnt Hills, Charlton",Malta,NY,"Saratoga County",America/New_York,,NA,US,42.92,-73.84,15390 +12020,STANDARD,0,"Ballston Spa",Malta,"Ballston Center, East Line, Factory Village, Harmony Corners, Malta Ridge, Maltaville, Milton Center, Pioneer, Riley Cove, West Milton",NY,"Saratoga County",America/New_York,518,NA,US,43,-73.85,30460 +12022,STANDARD,0,Berlin,,"Center Berlin",NY,"Rensselaer County",America/New_York,518,NA,US,42.66,-73.33,760 +12023,STANDARD,0,Berne,,"South Berne, West Berne",NY,"Albany County",America/New_York,518,NA,US,42.62,-74.13,1860 +12024,STANDARD,0,Brainard,,,NY,"Columbia County",America/New_York,518,NA,US,42.48,-73.54,153 +12025,STANDARD,0,Broadalbin,,"Fish House, Galway Lake, Honeywell Corners, North Broadalbin, Stevers Mills, Union Mills, Vail Mills",NY,"Fulton County",America/New_York,518,NA,US,43.05,-74.19,5010 +12027,STANDARD,0,"Burnt Hills",,,NY,"Saratoga County",America/New_York,518,NA,US,42.91,-73.9,4040 +12028,STANDARD,0,Buskirk,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.96,-73.45,1050 +12029,STANDARD,0,Canaan,,,NY,"Columbia County",America/New_York,518,NA,US,42.41,-73.41,900 +12031,STANDARD,0,Carlisle,,,NY,"Schoharie County",America/New_York,518,NA,US,42.77,-74.45,220 +12032,STANDARD,0,"Caroga Lake",,"Caroga, Pine Lake, Wheelerville",NY,"Fulton County",America/New_York,518,NA,US,43.12,-74.53,850 +12033,STANDARD,0,"Castleton On Hudson","Brookview, Castleton, S Schodack, South Schodack",,NY,"Rensselaer County",America/New_York,518,NA,US,42.53,-73.7,7460 +12035,STANDARD,0,"Central Bridge","Central Brg",,NY,"Schoharie County",America/New_York,518,NA,US,42.73,-74.36,700 +12036,STANDARD,0,Charlotteville,Charlottevle,,NY,"Schoharie County",America/New_York,518,NA,US,42.54,-74.67,244 +12037,STANDARD,0,Chatham,,,NY,"Columbia County",America/New_York,518,NA,US,42.36,-73.59,3120 +12040,"PO BOX",0,"Cherry Plain",,Cherryplain,NY,"Rensselaer County",America/New_York,518,NA,US,42.64,-73.35,229 +12041,STANDARD,0,Clarksville,,,NY,"Albany County",America/New_York,518,NA,US,42.58,-73.95,480 +12042,STANDARD,0,Climax,,,NY,"Greene County",America/New_York,518,NA,US,42.42,-73.94,380 +12043,STANDARD,0,Cobleskill,Lawyersville,"Dorloo, Hyndsville, Janesville, Mineral Springs, Seward",NY,"Schoharie County",America/New_York,518,NA,US,42.67,-74.48,5730 +12045,"PO BOX",0,Coeymans,,,NY,"Albany County",America/New_York,518,NA,US,42.48,-73.8,583 +12046,STANDARD,0,"Coeymans Hollow","Coeymans Holw",,NY,"Albany County",America/New_York,518,NA,US,42.48,-73.92,610 +12047,STANDARD,0,Cohoes,,"Boght Corners, Dunsbach Ferry",NY,"Albany County",America/New_York,518,NA,US,42.77,-73.7,18620 +12050,"PO BOX",0,Columbiaville,,,NY,"Columbia County",America/New_York,518,NA,US,42.32,-73.76,406 +12051,STANDARD,0,Coxsackie,,,NY,"Greene County",America/New_York,518,NA,US,42.35,-73.8,3180 +12052,STANDARD,0,Cropseyville,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.76,-73.47,1390 +12053,STANDARD,0,Delanson,,"Braman Corners",NY,"Schenectady County",America/New_York,518,NA,US,42.74,-74.18,4150 +12054,STANDARD,0,Delmar,,"Bethlehem, Elsmere",NY,"Albany County",America/New_York,518,NA,US,42.62,-73.83,16690 +12055,STANDARD,0,Dormansville,,,NY,"Albany County",America/New_York,518,NA,US,42.43,-74.19,0 +12056,STANDARD,0,Duanesburg,,Princetown,NY,"Schenectady County",America/New_York,518,NA,US,42.76,-74.13,2180 +12057,STANDARD,0,"Eagle Bridge","White Creek",,NY,"Washington County",America/New_York,,NA,US,42.94,-73.39,1450 +12058,STANDARD,0,Earlton,,,NY,"Greene County",America/New_York,518,NA,US,42.35,-73.9,1230 +12059,STANDARD,0,"East Berne",,,NY,"Albany County",America/New_York,518,NA,US,42.61,-74.05,1400 +12060,STANDARD,0,"East Chatham",,"Red Rock",NY,"Columbia County",America/New_York,518,NA,US,42.42,-73.48,1170 +12061,STANDARD,0,"East Greenbush","E Greenbush",,NY,"Rensselaer County",America/New_York,518,NA,US,42.59,-73.7,9000 +12062,STANDARD,0,"East Nassau",,"Hoag Corners",NY,"Rensselaer County",America/New_York,518,NA,US,42.53,-73.5,1510 +12063,STANDARD,0,"East Schodack",,,NY,"Rensselaer County",America/New_York,518,NA,US,42.57,-73.64,530 +12064,STANDARD,0,"East Worcester","E Worcester",,NY,"Otsego County",America/New_York,607,NA,US,42.61,-74.67,390 +12065,STANDARD,0,"Clifton Park",Halfmoon,"Clifton Park Center, Elnora, Jonesville",NY,"Saratoga County",America/New_York,518,NA,US,42.85,-73.8,41640 +12066,STANDARD,0,Esperance,,Burtonsville,NY,"Schoharie County",America/New_York,518,NA,US,42.76,-74.25,1820 +12067,STANDARD,0,"Feura Bush",,,NY,"Albany County",America/New_York,518,NA,US,42.57,-73.88,1380 +12068,STANDARD,0,Fonda,,Sammonsville,NY,"Montgomery County",America/New_York,518,NA,US,42.96,-74.4,2540 +12069,"PO BOX",0,"Fort Hunter",,,NY,"Montgomery County",America/New_York,518,NA,US,42.95,-74.28,280 +12070,STANDARD,0,"Fort Johnson",,,NY,"Montgomery County",America/New_York,518,NA,US,42.99,-74.26,1240 +12071,STANDARD,0,Fultonham,,,NY,"Schoharie County",America/New_York,,NA,US,42.55,-74.42,240 +12072,STANDARD,0,Fultonville,,,NY,"Montgomery County",America/New_York,518,NA,US,42.94,-74.37,2310 +12073,"PO BOX",0,Gallupville,,,NY,"Schoharie County",America/New_York,518,NA,US,42.66,-74.21,156 +12074,STANDARD,0,Galway,,"Hagedorns Mills, Mosherville",NY,"Saratoga County",America/New_York,518,NA,US,43.01,-74.03,2880 +12075,STANDARD,0,Ghent,,,NY,"Columbia County",America/New_York,518,NA,US,42.3,-73.64,2820 +12076,STANDARD,0,Gilboa,,,NY,"Schoharie County",America/New_York,,NA,US,42.39,-74.39,1020 +12077,STANDARD,0,Glenmont,,"Bethlehem Center",NY,"Albany County",America/New_York,518,NA,US,42.59,-73.78,6280 +12078,STANDARD,0,Gloversville,,"Bleecker, Meco, Riceville, West Bush",NY,"Fulton County",America/New_York,518,NA,US,43.05,-74.34,17960 +12082,"PO BOX",0,Grafton,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.76,-73.43,392 +12083,STANDARD,0,Greenville,"Norton Hill, S Westerlo, South Westerlo",,NY,"Greene County",America/New_York,518,NA,US,42.41,-74.02,3400 +12084,STANDARD,0,Guilderland,,,NY,"Albany County",America/New_York,518,NA,US,42.69,-73.89,4240 +12085,STANDARD,0,"Guilderland Center","Guildrlnd Ctr",,NY,"Albany County",America/New_York,518,NA,US,42.7,-73.96,280 +12086,STANDARD,0,Hagaman,,,NY,"Montgomery County",America/New_York,,NA,US,42.97,-74.15,1590 +12087,STANDARD,0,Hannacroix,,,NY,"Greene County",America/New_York,518,NA,US,42.42,-73.88,1160 +12089,"PO BOX",0,Hoosick,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.87,-73.31,284 +12090,STANDARD,0,"Hoosick Falls",,"Boyntonville, Walloomsac",NY,"Rensselaer County",America/New_York,518,NA,US,42.9,-73.35,5040 +12092,STANDARD,0,"Howes Cave",,"Barnerville, Bramanville",NY,"Schoharie County",America/New_York,518,NA,US,42.7,-74.37,990 +12093,STANDARD,0,Jefferson,,"East Jefferson, North Harpersfield",NY,"Schoharie County",America/New_York,,NA,US,42.48,-74.61,1210 +12094,STANDARD,0,Johnsonville,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.88,-73.49,2190 +12095,STANDARD,0,Johnstown,,"Garoga, Northbush, Rockwood",NY,"Fulton County",America/New_York,518,NA,US,43,-74.37,9960 +12106,STANDARD,0,Kinderhook,,,NY,"Columbia County",America/New_York,518,NA,US,42.39,-73.7,2310 +12107,"PO BOX",0,Knox,,,NY,"Albany County",America/New_York,518,NA,US,42.67,-74.11,200 +12108,STANDARD,0,"Lake Pleasant",,"Higgins Bay",NY,"Hamilton County",America/New_York,518,NA,US,43.55,-74.43,380 +12110,STANDARD,0,Latham,Newtonville,Verdoy,NY,"Albany County",America/New_York,518,NA,US,42.74,-73.74,18660 +12115,STANDARD,0,"Malden Bridge",,"Malden Brg",NY,"Columbia County",America/New_York,518,NA,US,42.48,-73.58,153 +12116,STANDARD,0,Maryland,,"Chaseville, Cooperstown Junction",NY,"Otsego County",America/New_York,,NA,US,42.53,-74.88,1460 +12117,STANDARD,0,Mayfield,,,NY,"Fulton County",America/New_York,518,NA,US,43.1,-74.26,2740 +12118,STANDARD,0,Mechanicville,,Malta,NY,"Saratoga County",America/New_York,518,NA,US,42.9,-73.69,15180 +12120,STANDARD,0,Medusa,,,NY,"Albany County",America/New_York,518,NA,US,42.45,-74.14,520 +12121,STANDARD,0,Melrose,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.85,-73.6,1720 +12122,STANDARD,0,Middleburgh,,"Breakabeen, Huntersland, Livingstonville, Middleburg",NY,"Schoharie County",America/New_York,518,NA,US,42.59,-74.32,3360 +12123,STANDARD,0,Nassau,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.51,-73.61,4790 +12124,"PO BOX",0,"New Baltimore",,,NY,"Greene County",America/New_York,518,NA,US,42.45,-73.79,532 +12125,STANDARD,0,"New Lebanon","Lebanon Spg, Lebanon Springs","New Lebanon Center",NY,"Columbia County",America/New_York,518,NA,US,42.46,-73.39,1290 +12128,"PO BOX",0,Newtonville,Latham,,NY,"Albany County",America/New_York,518,NA,US,42.7,-73.76,246 +12130,STANDARD,0,Niverville,,,NY,"Columbia County",America/New_York,518,NA,US,42.44,-73.66,860 +12131,STANDARD,0,"North Blenheim","N Blenheim",,NY,"Schoharie County",America/New_York,518,NA,US,42.46,-74.46,170 +12132,"PO BOX",0,"North Chatham",,,NY,"Columbia County",America/New_York,518,NA,US,42.47,-73.63,411 +12133,"PO BOX",0,"North Hoosick",,"Hoosick Junction",NY,"Rensselaer County",America/New_York,518,NA,US,42.88,-73.34,134 +12134,STANDARD,0,Northville,,Edinburg,NY,"Fulton County",America/New_York,518,NA,US,43.22,-74.17,3240 +12136,STANDARD,0,"Old Chatham",,,NY,"Columbia County",America/New_York,518,NA,US,42.42,-73.56,720 +12137,STANDARD,0,Pattersonville,Pattersonvle,Mariaville,NY,"Schenectady County",America/New_York,518,NA,US,42.84,-74.13,1570 +12138,STANDARD,0,Petersburg,"Petersburgh, Taconic Lake","North Petersburg",NY,"Rensselaer County",America/New_York,518,NA,US,42.72,-73.36,2540 +12139,STANDARD,0,Piseco,,Arietta,NY,"Hamilton County",America/New_York,518,NA,US,43.42,-74.53,190 +12140,STANDARD,0,Poestenkill,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.69,-73.56,1630 +12141,"PO BOX",0,"Quaker Street",,,NY,"Schenectady County",America/New_York,518,NA,US,42.77,-74.16,64 +12143,STANDARD,0,Ravena,,,NY,"Albany County",America/New_York,518,NA,US,42.47,-73.81,4470 +12144,STANDARD,0,Rensselaer,,Defreestville,NY,"Rensselaer County",America/New_York,518,NA,US,42.64,-73.73,18430 +12147,STANDARD,0,Rensselaerville,Rensselaervle,,NY,"Albany County",America/New_York,518,NA,US,42.51,-74.15,490 +12148,STANDARD,0,Rexford,,"Vischer Ferry",NY,"Saratoga County",America/New_York,518,NA,US,42.84,-73.85,4790 +12149,STANDARD,0,Richmondville,,"West Richmondville",NY,"Schoharie County",America/New_York,518,NA,US,42.63,-74.56,1890 +12150,STANDARD,0,"Rotterdam Junction","Rotterdam Jct",,NY,"Schenectady County",America/New_York,518,NA,US,42.88,-74.05,780 +12151,STANDARD,0,"Round Lake",,"Malta, Ushers",NY,"Saratoga County",America/New_York,518,NA,US,42.93,-73.79,840 +12153,STANDARD,0,"Sand Lake",,Taborton,NY,"Rensselaer County",America/New_York,518,NA,US,42.63,-73.49,850 +12154,STANDARD,0,Schaghticoke,,Easton,NY,"Rensselaer County",America/New_York,,NA,US,42.89,-73.58,2600 +12155,STANDARD,0,Schenevus,,"Elk Creek, Fergusonville, Simpsonville, Westville",NY,"Otsego County",America/New_York,607,NA,US,42.54,-74.82,1410 +12156,STANDARD,0,"Schodack Landing","Schodack Lndg",,NY,"Rensselaer County",America/New_York,518,NA,US,42.47,-73.74,810 +12157,STANDARD,0,Schoharie,,,NY,"Schoharie County",America/New_York,518,NA,US,42.66,-74.31,3490 +12158,STANDARD,0,Selkirk,,"Beckers Corners",NY,"Albany County",America/New_York,518,NA,US,42.53,-73.8,5990 +12159,STANDARD,0,Slingerlands,,,NY,"Albany County",America/New_York,518,NA,US,42.64,-73.88,8240 +12160,STANDARD,0,Sloansville,,,NY,"Schoharie County",America/New_York,518,NA,US,42.76,-74.37,790 +12161,"PO BOX",0,"South Bethlehem","S Bethlehem",,NY,"Albany County",America/New_York,518,NA,US,42.53,-73.85,303 +12164,STANDARD,0,Speculator,,,NY,"Hamilton County",America/New_York,518,NA,US,43.58,-74.38,460 +12165,STANDARD,0,Spencertown,,,NY,"Columbia County",America/New_York,518,NA,US,42.31,-73.51,370 +12166,STANDARD,0,Sprakers,,"Charleston Four Corners, Lykers, Root, Rural Grove",NY,"Montgomery County",America/New_York,,NA,US,42.83,-74.45,1270 +12167,STANDARD,0,Stamford,,,NY,"Delaware County",America/New_York,607,NA,US,42.4,-74.61,1890 +12168,STANDARD,0,Stephentown,,"Stephentown Center",NY,"Rensselaer County",America/New_York,518,NA,US,42.56,-73.38,1510 +12169,STANDARD,0,Stephentown,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.59,-73.45,350 +12170,STANDARD,0,Stillwater,,"Bemis Heights",NY,"Saratoga County",America/New_York,518,NA,US,42.95,-73.64,4630 +12172,"PO BOX",0,Stottville,,,NY,"Columbia County",America/New_York,518,NA,US,42.29,-73.74,676 +12173,STANDARD,0,Stuyvesant,,"Newton Hook",NY,"Columbia County",America/New_York,518,NA,US,42.38,-73.76,1440 +12174,"PO BOX",0,"Stuyvesant Falls","Stuyvesant Fl",,NY,"Columbia County",America/New_York,518,NA,US,42.35,-73.73,418 +12175,STANDARD,0,Summit,,,NY,"Schoharie County",America/New_York,518,NA,US,42.58,-74.58,670 +12176,STANDARD,0,Surprise,,,NY,"Greene County",America/New_York,518,NA,US,42.38,-73.98,250 +12177,"PO BOX",0,"Tribes Hill",,,NY,"Montgomery County",America/New_York,518,NA,US,42.95,-74.29,820 +12180,STANDARD,0,Troy,,"Albia, Brunswick, Center Brunswick, Eagle Mills, Raymertown, Snyders Corners, Snyders Lake, Speigletown, Sycaway",NY,"Rensselaer County",America/New_York,518,NA,US,42.73,-73.67,39840 +12181,"PO BOX",0,Troy,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.73,-73.67,655 +12182,STANDARD,0,Troy,,"Lansingburg, Pleasantdale, Speigletown",NY,"Rensselaer County",America/New_York,518,NA,US,42.8,-73.63,12150 +12183,STANDARD,0,Troy,"Green Island",,NY,"Albany County",America/New_York,518,NA,US,42.75,-73.69,2150 +12184,STANDARD,0,Valatie,,"Chatham Center",NY,"Columbia County",America/New_York,518,NA,US,42.41,-73.67,6180 +12185,STANDARD,0,"Valley Falls",,"West Valley Falls",NY,"Rensselaer County",America/New_York,518,NA,US,42.9,-73.56,1810 +12186,STANDARD,0,Voorheesville,,Reidsville,NY,"Albany County",America/New_York,518,NA,US,42.64,-73.93,6360 +12187,STANDARD,0,Warnerville,,Patria,NY,"Schoharie County",America/New_York,,NA,US,42.61,-74.47,640 +12188,STANDARD,0,Waterford,,,NY,"Saratoga County",America/New_York,518,NA,US,42.82,-73.7,10310 +12189,STANDARD,0,Watervliet,,"Mannville, Maplewood",NY,"Albany County",America/New_York,518,NA,US,42.72,-73.7,15800 +12190,STANDARD,0,Wells,,Gilmantown,NY,"Hamilton County",America/New_York,518,NA,US,43.39,-74.29,600 +12192,STANDARD,0,"West Coxsackie","W Coxsackie",,NY,"Greene County",America/New_York,518,NA,US,42.4,-73.81,1270 +12193,STANDARD,0,Westerlo,,,NY,"Albany County",America/New_York,518,NA,US,42.51,-74.04,1870 +12194,STANDARD,0,"West Fulton",,"W Fulton",NY,"Schoharie County",America/New_York,,NA,US,42.53,-74.45,200 +12195,"PO BOX",0,"West Lebanon",,"W Lebanon",NY,"Columbia County",America/New_York,518,NA,US,42.48,-73.48,255 +12196,STANDARD,0,"West Sand Lake","W Sand Lake",,NY,"Rensselaer County",America/New_York,518,NA,US,42.63,-73.6,2990 +12197,STANDARD,0,Worcester,,"Decatur, South Worcester",NY,"Otsego County",America/New_York,607,NA,US,42.59,-74.75,1810 +12198,STANDARD,0,Wynantskill,,"North Greenbush",NY,"Rensselaer County",America/New_York,518,NA,US,42.68,-73.63,7370 +12201,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,778 +12202,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.63,-73.76,7430 +12203,STANDARD,0,Albany,"Stuyvesant Plaza, Stuyvsnt Plz","Mckownville, Pine, Westmere",NY,"Albany County",America/New_York,518,NA,US,42.68,-73.85,20990 +12204,STANDARD,0,Albany,Menands,,NY,"Albany County",America/New_York,518,NA,US,42.69,-73.73,6640 +12205,STANDARD,0,Albany,"Colonie, Roessleville",,NY,"Albany County",America/New_York,518,NA,US,42.72,-73.83,24990 +12206,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.67,-73.78,12490 +12207,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.75,1290 +12208,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,15910 +12209,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.64,-73.79,8910 +12210,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.76,7130 +12211,STANDARD,0,Albany,"Loudonville, Siena",,NY,"Albany County",America/New_York,518,NA,US,42.7,-73.76,10950 +12212,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,538 +12214,UNIQUE,0,Albany,,"Albany Brm",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12220,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,225 +12222,UNIQUE,0,Albany,,"S U N Y",NY,"Albany County",America/New_York,518,NA,US,42.69,-73.82,163 +12223,STANDARD,0,Albany,,"Empire State Plaza",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12224,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,48 +12225,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12226,STANDARD,0,Albany,,"Ny State Campus",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12227,UNIQUE,0,Albany,,"Nys Dept Of Tax & Finance",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12228,UNIQUE,0,Albany,,"Ny Dept Of Motor Vehicles",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12229,UNIQUE,0,Albany,,"Mental Hygiene Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12230,UNIQUE,0,Albany,,"Ny Educ Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12231,UNIQUE,0,Albany,,"Ny Secretary Of State",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12232,UNIQUE,0,Albany,,"Ny Dept Trans",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12233,UNIQUE,0,Albany,,"Ny Conservation Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12234,UNIQUE,0,Albany,,"State Office Bldg",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12235,UNIQUE,0,Albany,,"Ny Agr And Mkts",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12236,UNIQUE,0,Albany,,"Audit And Control Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,51 +12237,UNIQUE,0,Albany,,"Ny Health Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12238,UNIQUE,0,Albany,,"Ny Park And Rec Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12239,UNIQUE,0,Albany,,"Ny Civil Serv Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12240,UNIQUE,0,Albany,,"Ny Labor Div Empl",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12241,UNIQUE,0,Albany,,"Ny Workman Comp",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12242,UNIQUE,0,Albany,,"Ny Standards And Purc",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12243,UNIQUE,0,Albany,,"Ny Soc Serv Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12244,UNIQUE,0,Albany,,"Ny Empl Retirement",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12245,UNIQUE,0,Albany,,"Ny Dept Commerce",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12246,UNIQUE,0,Albany,,"S U N Y 99 WASH",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12247,UNIQUE,0,Albany,,"New York State Gov",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12248,UNIQUE,0,Albany,,"Ny Assembly",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12249,UNIQUE,0,Albany,,"Ny Labor Unemp Ins",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12250,UNIQUE,0,Albany,,"Ny Tele Co",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12252,UNIQUE,1,Albany,,"N Y State Lottery",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12255,UNIQUE,0,Albany,,"Ny Hghr Educ Serv Corp",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12256,UNIQUE,1,Albany,,"N Y Lottery",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12257,UNIQUE,0,Albany,,"Ny State Dept Financial Svc",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12260,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12261,UNIQUE,0,Albany,,"Nys Tax Processing Ctr",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12288,UNIQUE,0,Albany,,"Us Postal Service",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12301,"PO BOX",0,Schenectady,,,NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,901 +12302,STANDARD,0,Schenectady,"Glenville, Scotia","East Glenville, Schdy, Stoodley Corners",NY,"Schenectady County",America/New_York,518,NA,US,42.88,-73.98,25730 +12303,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.75,-73.93,27870 +12304,STANDARD,0,Schenectady,,"Brandywine, Schdy",NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,18110 +12305,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.81,-73.95,2930 +12306,STANDARD,0,Schenectady,Rotterdam,"Bellevue, Lower Rotterdam, Schdy",NY,"Schenectady County",America/New_York,518,NA,US,42.81,-74.04,24280 +12307,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.93,5790 +12308,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.82,-73.92,11120 +12309,STANDARD,0,Schenectady,Niskayuna,"Schdy, Upper Union",NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.86,29480 +12325,"PO BOX",0,Schenectady,Glenville,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,79 +12345,UNIQUE,0,Schenectady,,"General Electric, Schdy",NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,48 +12401,STANDARD,0,Kingston,"Eddyville, Saint Remy","St Remy",NY,"Ulster County",America/New_York,"845,914",NA,US,41.93,-73.99,28110 +12402,"PO BOX",0,Kingston,,,NY,"Ulster County",America/New_York,845,NA,US,41.93,-73.99,1840 +12404,STANDARD,0,Accord,,"Leibhardt, Lyonsville, Mettacahonts, Whitfield",NY,"Ulster County",America/New_York,845,NA,US,41.8,-74.23,2950 +12405,STANDARD,0,Acra,,"South Durham",NY,"Greene County",America/New_York,518,NA,US,42.33,-74.09,560 +12406,STANDARD,0,Arkville,,,NY,"Delaware County",America/New_York,,NA,US,42.14,-74.62,510 +12407,STANDARD,0,Ashland,,,NY,"Greene County",America/New_York,518,NA,US,42.32,-74.36,240 +12409,STANDARD,0,Bearsville,Shady,,NY,"Ulster County",America/New_York,845,NA,US,42.04,-74.18,790 +12410,STANDARD,0,"Big Indian",Oliverea,,NY,"Ulster County",America/New_York,845,NA,US,42.07,-74.44,260 +12411,STANDARD,0,Bloomington,,,NY,"Ulster County",America/New_York,845,NA,US,41.88,-74.04,460 +12412,STANDARD,0,Boiceville,,,NY,"Ulster County",America/New_York,845,NA,US,41.99,-74.26,540 +12413,STANDARD,0,Cairo,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-74,2530 +12414,STANDARD,0,Catskill,Cementon,,NY,"Greene County",America/New_York,518,NA,US,42.21,-73.86,8120 +12416,STANDARD,0,Chichester,,,NY,"Ulster County",America/New_York,845,NA,US,42.1,-74.28,180 +12417,"PO BOX",0,Connelly,,,NY,"Ulster County",America/New_York,845,NA,US,41.91,-73.99,516 +12418,STANDARD,0,Cornwallville,,,NY,"Greene County",America/New_York,518,NA,US,42.36,-74.17,450 +12419,STANDARD,0,Cottekill,,,NY,"Ulster County",America/New_York,845,NA,US,41.86,-74.1,610 +12420,"PO BOX",0,Cragsmoor,,,NY,"Ulster County",America/New_York,845,NA,US,41.67,-74.37,312 +12421,STANDARD,0,Denver,,,NY,"Delaware County",America/New_York,,NA,US,42.25,-74.55,270 +12422,STANDARD,0,Durham,,"West Durham",NY,"Greene County",America/New_York,518,NA,US,42.4,-74.19,240 +12423,STANDARD,0,"East Durham",,,NY,"Greene County",America/New_York,518,NA,US,42.38,-74.11,850 +12424,STANDARD,0,"East Jewett",Tannersville,,NY,"Greene County",America/New_York,518,NA,US,42.25,-74.12,170 +12427,STANDARD,0,"Elka Park",,,NY,"Greene County",America/New_York,518,NA,US,42.14,-74.1,430 +12428,STANDARD,0,Ellenville,,,NY,"Ulster County",America/New_York,845,NA,US,41.7,-74.36,5070 +12429,"PO BOX",0,Esopus,,,NY,"Ulster County",America/New_York,845,NA,US,41.83,-73.99,375 +12430,STANDARD,0,Fleischmanns,"Halcott Center, Halcott Ctr",,NY,"Delaware County",America/New_York,845,NA,US,42.2,-74.5,760 +12431,STANDARD,0,Freehold,,,NY,"Greene County",America/New_York,518,NA,US,42.38,-74.06,1300 +12432,"PO BOX",0,Glasco,,,NY,"Ulster County",America/New_York,845,NA,US,42.04,-73.95,682 +12433,STANDARD,0,Glenford,,,NY,"Ulster County",America/New_York,845,NA,US,42,-74.15,340 +12434,STANDARD,0,"Grand Gorge",,,NY,"Delaware County",America/New_York,"518,607",NA,US,42.35,-74.5,570 +12435,STANDARD,0,"Greenfield Park","Greenfld Park",,NY,"Ulster County",America/New_York,845,NA,US,41.72,-74.52,290 +12436,"PO BOX",0,"Haines Falls",,,NY,"Greene County",America/New_York,518,NA,US,42.2,-74.09,373 +12438,"PO BOX",0,Halcottsville,,,NY,"Delaware County",America/New_York,845,NA,US,42.2,-74.6,213 +12439,STANDARD,0,Hensonville,"East Windham",,NY,"Greene County",America/New_York,518,NA,US,42.28,-74.21,350 +12440,STANDARD,0,"High Falls",,,NY,"Ulster County",America/New_York,845,NA,US,41.8,-74.13,1590 +12441,"PO BOX",0,Highmount,,,NY,"Ulster County",America/New_York,845,NA,US,42.13,-74.51,117 +12442,STANDARD,0,Hunter,,,NY,"Greene County",America/New_York,518,NA,US,42.21,-74.21,730 +12443,STANDARD,0,Hurley,,,NY,"Ulster County",America/New_York,845,NA,US,41.91,-74.05,3640 +12444,STANDARD,0,Jewett,,,NY,"Greene County",America/New_York,518,NA,US,42.27,-74.28,240 +12446,STANDARD,0,Kerhonkson,,Cherrytown,NY,"Ulster County",America/New_York,845,NA,US,41.77,-74.29,4170 +12448,STANDARD,0,"Lake Hill",,,NY,"Ulster County",America/New_York,845,NA,US,42.07,-74.2,190 +12449,STANDARD,0,"Lake Katrine",,,NY,"Ulster County",America/New_York,845,NA,US,41.98,-73.99,2790 +12450,STANDARD,0,Lanesville,,,NY,"Greene County",America/New_York,518,NA,US,42.13,-74.24,179 +12451,STANDARD,0,Leeds,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-73.95,1440 +12452,"PO BOX",0,Lexington,,,NY,"Greene County",America/New_York,518,NA,US,42.25,-74.36,203 +12453,"PO BOX",0,"Malden On Hudson","Malden Hudson","Malden, Mldn On Hdsn",NY,"Ulster County",America/New_York,845,NA,US,42.09,-73.94,384 +12454,STANDARD,0,Maplecrest,,,NY,"Greene County",America/New_York,518,NA,US,42.29,-74.15,200 +12455,STANDARD,0,Margaretville,,,NY,"Delaware County",America/New_York,845,NA,US,42.14,-74.65,1280 +12456,STANDARD,0,"Mount Marion",,"Mount Merion Park",NY,"Ulster County",America/New_York,845,NA,US,42.03,-74,700 +12457,STANDARD,0,"Mount Tremper",,,NY,"Ulster County",America/New_York,845,NA,US,42.04,-74.23,510 +12458,STANDARD,0,Napanoch,,,NY,"Ulster County",America/New_York,845,NA,US,41.75,-74.37,1930 +12459,"PO BOX",0,"New Kingston",,,NY,"Delaware County",America/New_York,845,NA,US,42.21,-74.68,204 +12460,STANDARD,0,"Oak Hill",,,NY,"Greene County",America/New_York,518,NA,US,42.42,-74.15,240 +12461,STANDARD,0,Olivebridge,Krumville,"Olive, Samsonville",NY,"Ulster County",America/New_York,845,NA,US,41.89,-74.24,1370 +12463,STANDARD,0,Palenville,,,NY,"Greene County",America/New_York,518,NA,US,42.17,-74.01,1300 +12464,STANDARD,0,Phoenicia,,,NY,"Ulster County",America/New_York,845,NA,US,42.08,-74.31,690 +12465,STANDARD,0,"Pine Hill",,,NY,"Ulster County",America/New_York,845,NA,US,42.16,-74.46,190 +12466,STANDARD,0,"Port Ewen",,,NY,"Ulster County",America/New_York,845,NA,US,41.9,-73.98,2510 +12468,STANDARD,0,Prattsville,,"Red Falls",NY,"Greene County",America/New_York,518,NA,US,42.31,-74.43,880 +12469,STANDARD,0,"Preston Hollow","Preston Holw","Preston Hlow",NY,"Albany County",America/New_York,,NA,US,42.44,-74.2,580 +12470,STANDARD,0,Purling,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-74.1,430 +12471,"PO BOX",0,Rifton,,,NY,"Ulster County",America/New_York,845,NA,US,41.84,-74.04,354 +12472,STANDARD,0,Rosendale,,,NY,"Ulster County",America/New_York,845,NA,US,41.85,-74.08,1330 +12473,STANDARD,0,"Round Top",,,NY,"Greene County",America/New_York,518,NA,US,42.27,-74.06,810 +12474,STANDARD,0,Roxbury,,"Hubbell Cors",NY,"Delaware County",America/New_York,607,NA,US,42.28,-74.56,920 +12475,"PO BOX",0,Ruby,,,NY,"Ulster County",America/New_York,845,NA,US,42.02,-74.02,378 +12477,STANDARD,0,Saugerties,,"West Saugerties",NY,"Ulster County",America/New_York,845,NA,US,42.07,-73.94,15460 +12480,STANDARD,0,Shandaken,,,NY,"Ulster County",America/New_York,845,NA,US,42.12,-74.39,420 +12481,STANDARD,0,Shokan,,,NY,"Ulster County",America/New_York,845,NA,US,41.97,-74.2,1150 +12482,STANDARD,0,"South Cairo",,,NY,"Greene County",America/New_York,518,NA,US,42.27,-73.96,540 +12483,"PO BOX",0,"Spring Glen",,,NY,"Ulster County",America/New_York,845,NA,US,41.66,-74.42,405 +12484,STANDARD,0,"Stone Ridge",,"The Vly",NY,"Ulster County",America/New_York,845,NA,US,41.86,-74.17,2550 +12485,STANDARD,0,Tannersville,,,NY,"Greene County",America/New_York,518,NA,US,42.19,-74.13,880 +12486,STANDARD,0,Tillson,,,NY,"Ulster County",America/New_York,845,NA,US,41.83,-74.06,1330 +12487,STANDARD,0,"Ulster Park",,,NY,"Ulster County",America/New_York,845,NA,US,41.86,-73.99,2670 +12489,"PO BOX",0,Wawarsing,,,NY,"Ulster County",America/New_York,845,NA,US,41.75,-74.36,581 +12490,"PO BOX",0,"West Camp",,,NY,"Ulster County",America/New_York,845,NA,US,42.12,-73.93,279 +12491,STANDARD,0,"West Hurley",,"W Hurley",NY,"Ulster County",America/New_York,845,NA,US,41.97,-74.14,1690 +12492,STANDARD,0,"West Kill",,,NY,"Greene County",America/New_York,518,NA,US,42.18,-74.34,150 +12493,"PO BOX",0,"West Park",,,NY,"Ulster County",America/New_York,845,NA,US,41.78,-73.96,391 +12494,STANDARD,0,"West Shokan",,"W Shokan",NY,"Ulster County",America/New_York,845,NA,US,41.96,-74.28,530 +12495,STANDARD,0,Willow,,,NY,"Ulster County",America/New_York,845,NA,US,42.08,-74.24,230 +12496,STANDARD,0,Windham,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-74.25,1210 +12498,STANDARD,0,Woodstock,,,NY,"Ulster County",America/New_York,845,NA,US,42.03,-74.11,3720 +12501,STANDARD,0,Amenia,,,NY,"Dutchess County",America/New_York,845,NA,US,41.84,-73.55,1680 +12502,STANDARD,0,Ancram,,,NY,"Columbia County",America/New_York,518,NA,US,42.05,-73.63,840 +12503,STANDARD,0,Ancramdale,,,NY,"Columbia County",America/New_York,518,NA,US,42.03,-73.57,510 +12504,"PO BOX",0,"Annandale On Hudson","Annandale, Red Hook",,NY,"Dutchess County",America/New_York,,NA,US,42.03,-73.91,150 +12506,"PO BOX",0,Bangall,,,NY,"Dutchess County",America/New_York,,NA,US,41.87,-73.69,91 +12507,STANDARD,0,Barrytown,"Red Hook",,NY,"Dutchess County",America/New_York,845,NA,US,42.01,-73.92,160 +12508,STANDARD,0,Beacon,,,NY,"Dutchess County",America/New_York,845,NA,US,41.5,-73.96,15140 +12510,"PO BOX",0,Billings,,,NY,"Dutchess County",America/New_York,845,NA,US,41.67,-73.8,104 +12511,"PO BOX",0,"Castle Point",,,NY,"Dutchess County",America/New_York,845,NA,US,41.53,-73.89,150 +12512,"PO BOX",0,Chelsea,,,NY,"Dutchess County",America/New_York,845,NA,US,41.55,-73.97,206 +12513,STANDARD,0,Claverack,,,NY,"Columbia County",America/New_York,518,NA,US,42.22,-73.72,940 +12514,STANDARD,0,"Clinton Corners","Clinton Cors","Clinton Crn",NY,"Dutchess County",America/New_York,845,NA,US,41.87,-73.76,2490 +12515,STANDARD,0,Clintondale,,,NY,"Ulster County",America/New_York,845,NA,US,41.68,-74.06,1460 +12516,STANDARD,0,Copake,,,NY,"Columbia County",America/New_York,518,NA,US,42.1,-73.55,1310 +12517,STANDARD,0,"Copake Falls",,,NY,"Columbia County",America/New_York,518,NA,US,42.14,-73.5,340 +12518,STANDARD,0,Cornwall,,,NY,"Orange County",America/New_York,845,NA,US,41.41,-74.04,5650 +12520,STANDARD,0,"Cornwall On Hudson","Cornwall Hdsn","Cornwall Hud, Cornwall Hudson, Cornwall On The Hudson",NY,"Orange County",America/New_York,845,NA,US,41.43,-74.01,3190 +12521,STANDARD,0,Craryville,Taghkanic,,NY,"Columbia County",America/New_York,518,NA,US,42.16,-73.65,1280 +12522,STANDARD,0,"Dover Plains",,,NY,"Dutchess County",America/New_York,845,NA,US,41.74,-73.58,4040 +12523,STANDARD,0,Elizaville,Taghkanic,,NY,"Columbia County",America/New_York,845,NA,US,42.09,-73.76,1600 +12524,STANDARD,0,Fishkill,,,NY,"Dutchess County",America/New_York,845,NA,US,41.53,-73.89,14130 +12525,STANDARD,0,Gardiner,,,NY,"Ulster County",America/New_York,845,NA,US,41.68,-74.18,3080 +12526,STANDARD,0,Germantown,,"Cheviot, Clermont, Linlithgo",NY,"Columbia County",America/New_York,518,NA,US,42.11,-73.85,3170 +12527,"PO BOX",0,Glenham,,,NY,"Dutchess County",America/New_York,845,NA,US,41.52,-73.94,744 +12528,STANDARD,0,Highland,,,NY,"Ulster County",America/New_York,845,NA,US,41.71,-73.96,12460 +12529,STANDARD,0,Hillsdale,,,NY,"Columbia County",America/New_York,518,NA,US,42.2,-73.54,2020 +12530,"PO BOX",0,Hollowville,,,NY,"Columbia County",America/New_York,518,NA,US,42.21,-73.69,144 +12531,STANDARD,0,Holmes,,"Homes, Whaley Lake",NY,"Dutchess County",America/New_York,845,NA,US,41.53,-73.66,3040 +12533,STANDARD,0,"Hopewell Junction","East Fishkill, Hopewell, Hopewell Jct, Wiccopee",,NY,"Dutchess County",America/New_York,845,NA,US,41.58,-73.8,25590 +12534,STANDARD,0,Hudson,,,NY,"Columbia County",America/New_York,518,NA,US,42.25,-73.78,12950 +12537,"PO BOX",0,Hughsonville,,,NY,"Dutchess County",America/New_York,845,NA,US,41.59,-73.89,304 +12538,STANDARD,0,"Hyde Park",,,NY,"Dutchess County",America/New_York,845,NA,US,41.78,-73.93,11770 +12540,STANDARD,0,Lagrangeville,,"La Grange",NY,"Dutchess County",America/New_York,845,NA,US,41.67,-73.73,7340 +12541,"PO BOX",0,Livingston,,,NY,"Columbia County",America/New_York,518,NA,US,42.13,-73.76,267 +12542,STANDARD,0,Marlboro,,Marlborough,NY,"Ulster County",America/New_York,845,NA,US,41.6,-73.97,5490 +12543,STANDARD,0,Maybrook,,,NY,"Orange County",America/New_York,845,NA,US,41.48,-74.21,2950 +12544,"PO BOX",0,Mellenville,,,NY,"Columbia County",America/New_York,518,NA,US,42.26,-73.68,163 +12545,STANDARD,0,Millbrook,,,NY,"Dutchess County",America/New_York,845,NA,US,41.78,-73.69,3770 +12546,STANDARD,0,Millerton,,,NY,"Dutchess County",America/New_York,518,NA,US,41.95,-73.51,2370 +12547,STANDARD,0,Milton,,,NY,"Ulster County",America/New_York,845,NA,US,41.65,-73.96,2690 +12548,STANDARD,0,Modena,,,NY,"Ulster County",America/New_York,845,NA,US,41.66,-74.1,1410 +12549,STANDARD,0,Montgomery,,,NY,"Orange County",America/New_York,845,NA,US,41.52,-74.23,9920 +12550,STANDARD,0,Newburgh,,"Balmville, Town Branch",NY,"Orange County",America/New_York,"845,914",NA,US,41.5,-74.02,48130 +12551,"PO BOX",0,Newburgh,,,NY,"Orange County",America/New_York,845,NA,US,41.5,-74.02,1048 +12552,"PO BOX",0,Newburgh,,,NY,"Orange County",America/New_York,845,NA,US,41.5,-74.02,188 +12553,STANDARD,0,"New Windsor",Newburgh,,NY,"Orange County",America/New_York,"914,845",NA,US,41.47,-74.02,24340 +12555,"PO BOX",0,Newburgh,"Mid Hudson",,NY,"Orange County",America/New_York,845,NA,US,41.53,-74.04,0 +12561,STANDARD,0,"New Paltz",,,NY,"Ulster County",America/New_York,845,NA,US,41.74,-74.08,12350 +12563,STANDARD,0,Patterson,,,NY,"Putnam County",America/New_York,845,NA,US,41.5,-73.58,6680 +12564,STANDARD,0,Pawling,,,NY,"Dutchess County",America/New_York,845,NA,US,41.56,-73.59,6570 +12565,STANDARD,0,Philmont,,,NY,"Columbia County",America/New_York,518,NA,US,42.24,-73.64,1340 +12566,STANDARD,0,"Pine Bush",,,NY,"Ulster County",America/New_York,845,NA,US,41.6,-74.29,9780 +12567,STANDARD,0,"Pine Plains",,"Gallatin, Mount Ross, Shekomeko",NY,"Dutchess County",America/New_York,518,NA,US,41.97,-73.65,2210 +12568,"PO BOX",0,Plattekill,,,NY,"Ulster County",America/New_York,845,NA,US,41.62,-74.08,1176 +12569,STANDARD,0,"Pleasant Valley","Pleasant Vly",,NY,"Dutchess County",America/New_York,845,NA,US,41.74,-73.82,9260 +12570,STANDARD,0,Poughquag,,,NY,"Dutchess County",America/New_York,845,NA,US,41.63,-73.66,6820 +12571,STANDARD,0,"Red Hook",Milan,,NY,"Dutchess County",America/New_York,845,NA,US,41.99,-73.87,8530 +12572,STANDARD,0,Rhinebeck,,,NY,"Dutchess County",America/New_York,845,NA,US,41.92,-73.9,7760 +12574,"PO BOX",0,Rhinecliff,,,NY,"Dutchess County",America/New_York,,NA,US,41.92,-73.95,313 +12575,STANDARD,0,"Rock Tavern",,,NY,"Orange County",America/New_York,845,NA,US,41.47,-74.16,2350 +12577,STANDARD,0,"Salisbury Mills","Salisbury Mls",,NY,"Orange County",America/New_York,845,NA,US,41.44,-74.12,2100 +12578,STANDARD,0,"Salt Point",,,NY,"Dutchess County",America/New_York,845,NA,US,41.8,-73.8,2070 +12580,STANDARD,0,Staatsburg,,Staatsburgh,NY,"Dutchess County",America/New_York,845,NA,US,41.84,-73.92,3360 +12581,STANDARD,0,Stanfordville,,,NY,"Dutchess County",America/New_York,845,NA,US,41.86,-73.71,1820 +12582,STANDARD,0,Stormville,,,NY,"Dutchess County",America/New_York,,NA,US,41.54,-73.73,4430 +12583,STANDARD,0,Tivoli,,Nevis,NY,"Dutchess County",America/New_York,845,NA,US,42.05,-73.91,1870 +12584,"PO BOX",0,"Vails Gate",,,NY,"Orange County",America/New_York,845,NA,US,41.45,-74.05,554 +12585,STANDARD,0,Verbank,,,NY,"Dutchess County",America/New_York,845,NA,US,41.73,-73.69,810 +12586,STANDARD,0,Walden,,,NY,"Orange County",America/New_York,845,NA,US,41.55,-74.18,11880 +12588,"PO BOX",0,"Walker Valley",,,NY,"Ulster County",America/New_York,845,NA,US,41.62,-74.37,506 +12589,STANDARD,0,Wallkill,,,NY,"Ulster County",America/New_York,845,NA,US,41.6,-74.16,12770 +12590,STANDARD,0,"Wappingers Falls","New Hamburg, Wappingers Fl, West Fishkill",Wappinger,NY,"Dutchess County",America/New_York,845,NA,US,41.59,-73.91,34020 +12592,STANDARD,0,Wassaic,,,NY,"Dutchess County",America/New_York,845,NA,US,41.78,-73.54,950 +12593,STANDARD,1,"West Copake",Copake,,NY,"Columbia County",America/New_York,518,NA,US,42.09,-73.58,0 +12594,STANDARD,0,Wingdale,,,NY,"Dutchess County",America/New_York,845,NA,US,41.64,-73.56,3740 +12601,STANDARD,0,Poughkeepsie,,,NY,"Dutchess County",America/New_York,"845,914",NA,US,41.69,-73.92,32450 +12602,"PO BOX",0,Poughkeepsie,,,NY,"Dutchess County",America/New_York,845,NA,US,41.69,-73.92,1018 +12603,STANDARD,0,Poughkeepsie,Arlington,,NY,"Dutchess County",America/New_York,"914,845",NA,US,41.68,-73.86,39280 +12604,UNIQUE,0,Poughkeepsie,,"Vassar College",NY,"Dutchess County",America/New_York,845,NA,US,41.69,-73.89,265 +12701,STANDARD,0,Monticello,,,NY,"Sullivan County",America/New_York,"845,914",NA,US,41.65,-74.68,8970 +12719,STANDARD,0,Barryville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.5,-74.9,770 +12720,STANDARD,0,Bethel,,,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.87,180 +12721,STANDARD,0,Bloomingburg,,,NY,"Sullivan County",America/New_York,845,NA,US,41.55,-74.44,6310 +12722,"PO BOX",0,Burlingham,,,NY,"Sullivan County",America/New_York,845,NA,US,41.59,-74.38,408 +12723,STANDARD,0,Callicoon,,,NY,"Sullivan County",America/New_York,845,NA,US,41.76,-75.05,1230 +12724,"PO BOX",0,"Callicoon Center","Callicoon Ctr",,NY,"Sullivan County",America/New_York,845,NA,US,41.84,-74.96,305 +12725,STANDARD,0,Claryville,,,NY,"Ulster County",America/New_York,,NA,US,41.98,-74.57,230 +12726,STANDARD,0,Cochecton,,,NY,"Sullivan County",America/New_York,,NA,US,41.7,-75.06,840 +12727,STANDARD,0,Cochecton,,,NY,"Sullivan County",America/New_York,845,NA,US,41.65,-74.98,89 +12729,STANDARD,0,Cuddebackville,"Cuddebackvlle, Godeffroy",,NY,"Orange County",America/New_York,845,NA,US,41.47,-74.63,1430 +12732,STANDARD,0,Eldred,,,NY,"Sullivan County",America/New_York,,NA,US,41.52,-74.88,650 +12733,STANDARD,0,Fallsburg,,,NY,"Sullivan County",America/New_York,845,NA,US,41.73,-74.6,1110 +12734,STANDARD,0,Ferndale,,,NY,"Sullivan County",America/New_York,,NA,US,41.77,-74.73,970 +12736,STANDARD,0,"Fremont Center","Fremont Ctr",Fremont,NY,"Sullivan County",America/New_York,607,NA,US,41.84,-75.04,98 +12737,STANDARD,0,"Glen Spey",,,NY,"Sullivan County",America/New_York,,NA,US,41.47,-74.81,1560 +12738,STANDARD,0,"Glen Wild",,,NY,"Sullivan County",America/New_York,845,NA,US,41.65,-74.58,190 +12740,STANDARD,0,Grahamsville,Sundown,,NY,"Sullivan County",America/New_York,845,NA,US,41.84,-74.54,1670 +12741,STANDARD,0,Hankins,,,NY,"Sullivan County",America/New_York,607,NA,US,41.84,-75.08,220 +12742,STANDARD,0,Harris,,,NY,"Sullivan County",America/New_York,845,NA,US,41.72,-74.72,250 +12743,STANDARD,0,"Highland Lake",,,NY,"Sullivan County",America/New_York,,NA,US,41.52,-74.85,260 +12745,STANDARD,0,Hortonville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.78,-75.02,180 +12746,STANDARD,0,Huguenot,,,NY,"Orange County",America/New_York,845,NA,US,41.41,-74.63,1000 +12747,STANDARD,0,Hurleyville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.73,-74.67,1330 +12748,STANDARD,0,Jeffersonville,Jeffersonvlle,,NY,"Sullivan County",America/New_York,845,NA,US,41.78,-74.93,1590 +12749,"PO BOX",0,"Kauneonga Lake","Kauneonga Lk",,NY,"Sullivan County",America/New_York,845,NA,US,41.7,-74.84,359 +12750,STANDARD,0,"Kenoza Lake",,,NY,"Sullivan County",America/New_York,845,NA,US,41.73,-74.95,214 +12751,STANDARD,0,"Kiamesha Lake",,,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.66,1240 +12752,STANDARD,0,"Lake Huntington","Lk Huntington",,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.99,240 +12754,STANDARD,0,Liberty,,,NY,"Sullivan County",America/New_York,845,NA,US,41.8,-74.74,5530 +12758,STANDARD,0,"Livingston Manor","Lew Beach, Livingstn Mnr",,NY,"Sullivan County",America/New_York,"607,845",NA,US,41.89,-74.82,3120 +12759,STANDARD,0,"Loch Sheldrake","Loch Sheldrke",,NY,"Sullivan County",America/New_York,845,NA,US,41.77,-74.65,1320 +12760,STANDARD,0,"Long Eddy",,,NY,"Delaware County",America/New_York,,NA,US,41.85,-75.13,370 +12762,STANDARD,0,"Mongaup Valley","Mongaup Vly",,NY,"Sullivan County",America/New_York,,NA,US,41.66,-74.79,430 +12763,STANDARD,0,"Mountain Dale",,Mountaindale,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.53,710 +12764,STANDARD,0,Narrowsburg,,,NY,"Sullivan County",America/New_York,845,NA,US,41.6,-75.06,1330 +12765,STANDARD,0,Neversink,,,NY,"Sullivan County",America/New_York,845,NA,US,41.84,-74.61,830 +12766,STANDARD,0,"North Branch",,,NY,"Sullivan County",America/New_York,,NA,US,41.8,-74.99,280 +12767,"PO BOX",0,Obernburg,,,NY,"Sullivan County",America/New_York,607,NA,US,41.84,-75,107 +12768,STANDARD,0,Parksville,,,NY,"Sullivan County",America/New_York,,NA,US,41.85,-74.76,760 +12769,"PO BOX",0,Phillipsport,,,NY,"Sullivan County",America/New_York,845,NA,US,41.66,-74.47,214 +12770,STANDARD,0,"Pond Eddy",,,NY,"Sullivan County",America/New_York,,NA,US,41.44,-74.82,190 +12771,STANDARD,0,"Port Jervis",,"Pt Jervis",NY,"Orange County",America/New_York,845,NA,US,41.37,-74.69,11750 +12775,STANDARD,0,"Rock Hill",,,NY,"Sullivan County",America/New_York,845,NA,US,41.62,-74.59,2350 +12776,STANDARD,0,Roscoe,,,NY,"Sullivan County",America/New_York,607,NA,US,41.93,-74.91,1440 +12777,STANDARD,0,Forestburgh,Monticello,Forestburg,NY,"Sullivan County",America/New_York,"845,914",NA,US,41.54,-74.69,620 +12778,"PO BOX",0,Smallwood,,,NY,"Sullivan County",America/New_York,845,NA,US,41.66,-74.81,632 +12779,STANDARD,0,"South Fallsburg","S Fallsburg",,NY,"Sullivan County",America/New_York,845,NA,US,41.71,-74.63,2090 +12780,STANDARD,0,"Sparrow Bush",Sparrowbush,,NY,"Orange County",America/New_York,845,NA,US,41.44,-74.72,2150 +12781,"PO BOX",0,Summitville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.62,-74.47,280 +12783,STANDARD,0,"Swan Lake",,,NY,"Sullivan County",America/New_York,,NA,US,41.75,-74.77,1050 +12784,"PO BOX",0,Thompsonville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.67,-74.64,163 +12785,"PO BOX",0,Westbrookville,"Port Jervis, Westbrookvlle",,NY,"Sullivan County",America/New_York,845,NA,US,41.5,-74.55,1054 +12786,STANDARD,0,"White Lake",,,NY,"Sullivan County",America/New_York,845,NA,US,41.64,-74.86,480 +12787,STANDARD,0,"White Sulphur Springs","Wht Sphr Spgs",,NY,"Sullivan County",America/New_York,,NA,US,41.79,-74.82,380 +12788,STANDARD,0,Woodbourne,,,NY,"Sullivan County",America/New_York,845,NA,US,41.75,-74.59,1720 +12789,STANDARD,0,Woodridge,,,NY,"Sullivan County",America/New_York,,NA,US,41.71,-74.57,1550 +12790,STANDARD,0,Wurtsboro,,,NY,"Sullivan County",America/New_York,845,NA,US,41.57,-74.48,3900 +12791,STANDARD,0,Youngsville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.82,-74.89,550 +12792,STANDARD,0,Yulan,,,NY,"Sullivan County",America/New_York,,NA,US,41.51,-74.96,310 +12801,STANDARD,0,"Glens Falls",Queensbury,"West Glens Falls",NY,"Warren County",America/New_York,518,NA,US,43.31,-73.64,12510 +12803,STANDARD,0,"South Glens Falls","Glens Falls, S Glens Falls",,NY,"Saratoga County",America/New_York,518,NA,US,43.29,-73.63,7850 +12804,STANDARD,0,Queensbury,"Glens Falls",,NY,"Warren County",America/New_York,518,NA,US,43.34,-73.67,24470 +12808,STANDARD,0,Adirondack,,,NY,"Warren County",America/New_York,518,NA,US,43.72,-73.77,280 +12809,STANDARD,0,Argyle,,"North Argyle, South Argyle",NY,"Washington County",America/New_York,518,NA,US,43.23,-73.49,2950 +12810,STANDARD,0,Athol,,,NY,"Warren County",America/New_York,518,NA,US,43.48,-73.89,540 +12811,"PO BOX",0,"Bakers Mills",,,NY,"Warren County",America/New_York,518,NA,US,43.61,-74.03,215 +12812,STANDARD,0,"Blue Mountain Lake","Blue Mtn Lake",,NY,"Hamilton County",America/New_York,518,NA,US,43.87,-74.44,170 +12814,STANDARD,0,"Bolton Landing","Bolton Lndg",,NY,"Warren County",America/New_York,518,NA,US,43.62,-73.64,1350 +12815,STANDARD,0,"Brant Lake",,Horicon,NY,"Warren County",America/New_York,518,NA,US,43.71,-73.69,860 +12816,STANDARD,0,Cambridge,,"Center Cambridge, Coila",NY,"Washington County",America/New_York,518,NA,US,43.02,-73.38,3800 +12817,STANDARD,0,Chestertown,,,NY,"Warren County",America/New_York,518,NA,US,43.63,-73.8,2020 +12819,STANDARD,0,Clemons,,,NY,"Washington County",America/New_York,518,NA,US,43.59,-73.47,290 +12820,"PO BOX",0,Cleverdale,,Rockhurst,NY,"Warren County",America/New_York,518,NA,US,43.31,-73.64,223 +12821,STANDARD,0,Comstock,,,NY,"Washington County",America/New_York,518,NA,US,43.45,-73.37,250 +12822,STANDARD,0,Corinth,,Palmer,NY,"Saratoga County",America/New_York,518,NA,US,43.24,-73.83,5350 +12823,STANDARD,0,Cossayuna,,"Cossayuna Lake",NY,"Washington County",America/New_York,518,NA,US,43.17,-73.4,290 +12824,STANDARD,0,"Diamond Point",,"Trout Lake",NY,"Warren County",America/New_York,518,NA,US,43.51,-73.69,690 +12827,STANDARD,0,"Fort Ann",,"South Bay Village, West Fort Ann",NY,"Washington County",America/New_York,518,NA,US,43.41,-73.49,3460 +12828,STANDARD,0,"Fort Edward",,"Fort Miller, Moreau",NY,"Washington County",America/New_York,,NA,US,43.26,-73.58,8290 +12831,STANDARD,0,Gansevoort,Wilton,"Fortsville, Gurn Spring, Kings Station",NY,"Saratoga County",America/New_York,518,NA,US,43.19,-73.64,16520 +12832,STANDARD,0,Granville,,"Hebron, North Hebron, Slateville, South Granville, Truthville",NY,"Washington County",America/New_York,518,NA,US,43.4,-73.26,5210 +12833,STANDARD,0,"Greenfield Center","Greenfld Ctr",Greenfield,NY,"Saratoga County",America/New_York,518,NA,US,43.13,-73.85,4270 +12834,STANDARD,0,Greenwich,Thomson,"Bald Mountain, Battenville, Clarks Mills",NY,"Washington County",America/New_York,518,NA,US,43.08,-73.49,5770 +12835,STANDARD,0,Hadley,,"Conklingville, Day",NY,"Saratoga County",America/New_York,518,NA,US,43.33,-74.01,2230 +12836,STANDARD,0,Hague,,Graphite,NY,"Warren County",America/New_York,518,NA,US,43.71,-73.61,480 +12837,STANDARD,0,Hampton,,,NY,"Washington County",America/New_York,518,NA,US,43.46,-73.27,610 +12838,STANDARD,0,Hartford,,,NY,"Washington County",America/New_York,518,NA,US,43.33,-73.4,560 +12839,STANDARD,0,"Hudson Falls",,"Kingsbury, Sandy Hill",NY,"Washington County",America/New_York,518,NA,US,43.3,-73.58,11230 +12841,"PO BOX",0,"Huletts Landing","Huletts Lndg",,NY,"Washington County",America/New_York,518,NA,US,43.61,-73.53,77 +12842,STANDARD,0,"Indian Lake",,,NY,"Hamilton County",America/New_York,518,NA,US,43.78,-74.26,930 +12843,STANDARD,0,Johnsburg,,"Garnet Lake",NY,"Warren County",America/New_York,518,NA,US,43.57,-73.97,490 +12844,STANDARD,0,"Kattskill Bay","Pilot Knob",,NY,"Washington County",America/New_York,518,NA,US,43.49,-73.62,230 +12845,STANDARD,0,"Lake George",,"Assembly Point",NY,"Warren County",America/New_York,518,NA,US,43.42,-73.71,4340 +12846,STANDARD,0,"Lake Luzerne",,Luzerne,NY,"Warren County",America/New_York,518,NA,US,43.32,-73.8,2740 +12847,STANDARD,0,"Long Lake",,"Brandreth, Sabattis",NY,"Hamilton County",America/New_York,518,NA,US,43.97,-74.42,580 +12848,"PO BOX",0,"Middle Falls",,,NY,"Washington County",America/New_York,518,NA,US,43.1,-73.52,91 +12849,STANDARD,0,"Middle Granville","Mdl Granville",,NY,"Washington County",America/New_York,518,NA,US,43.45,-73.3,500 +12850,STANDARD,0,"Middle Grove",,"Barkersville, Lake Desolation, Providence",NY,"Saratoga County",America/New_York,518,NA,US,43.11,-74.02,2600 +12851,STANDARD,0,Minerva,,,NY,"Essex County",America/New_York,518,NA,US,43.78,-73.97,230 +12852,STANDARD,0,Newcomb,,,NY,"Essex County",America/New_York,518,NA,US,43.94,-74.16,370 +12853,STANDARD,0,"North Creek",,"Holcombville, Igerna",NY,"Warren County",America/New_York,518,NA,US,43.69,-73.98,1140 +12854,STANDARD,0,"North Granville","N Granville",,NY,"Washington County",America/New_York,518,NA,US,43.5,-73.33,350 +12855,STANDARD,0,"North Hudson",,,NY,"Essex County",America/New_York,518,NA,US,43.98,-73.7,210 +12856,"PO BOX",0,"North River",,,NY,"Warren County",America/New_York,518,NA,US,43.67,-74.14,242 +12857,STANDARD,0,Olmstedville,,,NY,"Essex County",America/New_York,518,NA,US,43.82,-73.89,470 +12858,STANDARD,0,Paradox,Ticonderoga,"Paradox Lake",NY,"Essex County",America/New_York,518,NA,US,43.91,-73.68,51 +12859,STANDARD,0,"Porter Corners","Porter Cors",,NY,"Saratoga County",America/New_York,518,NA,US,43.14,-73.88,1890 +12860,STANDARD,0,Pottersville,,,NY,"Warren County",America/New_York,518,NA,US,43.76,-73.84,630 +12861,STANDARD,0,"Putnam Station","Putnam Sta",,NY,"Washington County",America/New_York,518,NA,US,43.75,-73.41,510 +12862,"PO BOX",0,Riparius,,,NY,"Warren County",America/New_York,518,NA,US,43.69,-73.91,66 +12863,STANDARD,0,"Rock City Falls","Rock City Fls",,NY,"Saratoga County",America/New_York,518,NA,US,43.06,-73.92,720 +12864,STANDARD,0,Sabael,,,NY,"Hamilton County",America/New_York,518,NA,US,43.73,-74.31,63 +12865,STANDARD,0,Salem,"E Greenwich, East Greenwich","Belcher, East Hebron, West Hebron",NY,"Washington County",America/New_York,518,NA,US,43.17,-73.32,3010 +12866,STANDARD,0,"Saratoga Springs","Saratoga Spgs",,NY,"Saratoga County",America/New_York,518,NA,US,43.06,-73.77,33740 +12870,STANDARD,0,"Schroon Lake",,"Blue Ridge",NY,"Essex County",America/New_York,518,NA,US,43.83,-73.73,1530 +12871,STANDARD,0,Schuylerville,,"Bacon Hill, Grangerville, Quaker Springs",NY,"Saratoga County",America/New_York,518,NA,US,43.1,-73.58,3590 +12872,"PO BOX",0,Severance,,,NY,"Essex County",America/New_York,518,NA,US,43.87,-73.73,70 +12873,STANDARD,0,Shushan,,Eagleville,NY,"Washington County",America/New_York,518,NA,US,43.12,-73.3,640 +12874,STANDARD,0,"Silver Bay",,"Sabbath Day Point",NY,"Warren County",America/New_York,518,NA,US,43.7,-73.51,116 +12878,STANDARD,0,"Stony Creek",,,NY,"Warren County",America/New_York,518,NA,US,43.42,-74.03,530 +12879,STANDARD,0,Newcomb,Tahawus,,NY,"Essex County",America/New_York,518,NA,US,43.97,-74.17,0 +12883,STANDARD,0,Ticonderoga,,"Chilson, Eagle Lake, Streetroad",NY,"Essex County",America/New_York,518,NA,US,43.84,-73.42,3990 +12884,"PO BOX",0,"Victory Mills",,,NY,"Saratoga County",America/New_York,518,NA,US,43.09,-73.59,506 +12885,STANDARD,0,Warrensburg,Thurman,"Riverbank, The Glen",NY,"Warren County",America/New_York,518,NA,US,43.5,-73.77,3760 +12886,STANDARD,0,Wevertown,,,NY,"Warren County",America/New_York,518,NA,US,43.64,-73.92,190 +12887,STANDARD,0,Whitehall,,"Dresden Station, Low Hampton",NY,"Washington County",America/New_York,518,NA,US,43.56,-73.41,4080 +12901,STANDARD,0,Plattsburgh,,"Beekmantown, South Plattsburgh",NY,"Clinton County",America/New_York,518,NA,US,44.7,-73.47,24230 +12903,STANDARD,0,Plattsburgh,,,NY,"Clinton County",America/New_York,518,NA,US,44.69,-73.45,1420 +12910,STANDARD,0,Altona,,"Alder Bend, Irona, Purdys Mills",NY,"Clinton County",America/New_York,518,NA,US,44.89,-73.65,1420 +12911,STANDARD,0,Keeseville,"Au Sable Chasm, Ausable Chasm",,NY,"Clinton County",America/New_York,518,NA,US,44.52,-73.46,28 +12912,STANDARD,0,"Au Sable Forks","Au Sable Frks",Hawkeye,NY,"Clinton County",America/New_York,518,NA,US,44.47,-73.78,1790 +12913,STANDARD,0,Bloomingdale,,,NY,"Essex County",America/New_York,518,NA,US,44.43,-74,940 +12914,STANDARD,0,Bombay,,,NY,"Franklin County",America/New_York,518,NA,US,44.93,-74.59,690 +12915,"PO BOX",0,Brainardsville,Brainardsvle,,NY,"Franklin County",America/New_York,518,NA,US,44.86,-74.02,133 +12916,STANDARD,0,Brushton,,"Alburgh, Cooks Corners, Irish Corners",NY,"Franklin County",America/New_York,518,NA,US,44.83,-74.51,1850 +12917,STANDARD,0,Burke,,,NY,"Franklin County",America/New_York,518,NA,US,44.9,-74.17,1310 +12918,STANDARD,0,Cadyville,,,NY,"Clinton County",America/New_York,518,NA,US,44.66,-73.68,2160 +12919,STANDARD,0,Champlain,,"Coopersville, Perrys Mills",NY,"Clinton County",America/New_York,518,NA,US,44.98,-73.44,2970 +12920,STANDARD,0,Chateaugay,,,NY,"Franklin County",America/New_York,518,NA,US,44.92,-74.08,1990 +12921,STANDARD,0,Chazy,,"Chazy Landing",NY,"Clinton County",America/New_York,518,NA,US,44.88,-73.43,2260 +12922,STANDARD,0,Childwold,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.28,-74.67,62 +12923,STANDARD,0,Churubusco,,,NY,"Clinton County",America/New_York,518,NA,US,44.95,-73.92,430 +12924,STANDARD,0,Keeseville,Clintonville,,NY,"Clinton County",America/New_York,518,NA,US,44.48,-73.58,123 +12926,STANDARD,0,Constable,,"Trout River, Westville Center",NY,"Franklin County",America/New_York,518,NA,US,44.93,-74.28,1740 +12927,"PO BOX",0,"Cranberry Lake","Cranberry Lk",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.22,-74.83,199 +12928,STANDARD,0,"Crown Point",,"Factoryville, Ironville",NY,"Essex County",America/New_York,518,NA,US,43.95,-73.53,1740 +12929,"PO BOX",0,Dannemora,,,NY,"Clinton County",America/New_York,518,NA,US,44.72,-73.71,1340 +12930,STANDARD,0,"Dickinson Center","Dickinson Ctr","East Dickinson",NY,"Franklin County",America/New_York,518,NA,US,44.71,-74.53,560 +12932,STANDARD,0,Elizabethtown,,,NY,"Essex County",America/New_York,518,NA,US,44.22,-73.6,1070 +12933,"PO BOX",0,Ellenburg,,,NY,"Clinton County",America/New_York,518,NA,US,44.89,-73.85,93 +12934,STANDARD,0,"Ellenburg Center","Ellenburg Ctr",,NY,"Clinton County",America/New_York,518,NA,US,44.82,-73.85,840 +12935,STANDARD,0,"Ellenburg Depot","Ellenburg Dep",,NY,"Clinton County",America/New_York,518,NA,US,44.9,-73.8,1300 +12936,STANDARD,0,Essex,Whallonsburg,,NY,"Essex County",America/New_York,518,NA,US,44.27,-73.39,540 +12937,STANDARD,0,"Fort Covington","Ft Covington",,NY,"Franklin County",America/New_York,518,NA,US,44.98,-74.47,1180 +12939,"PO BOX",0,Gabriels,,,NY,"Franklin County",America/New_York,518,NA,US,44.43,-74.16,236 +12941,STANDARD,0,Jay,,,NY,"Essex County",America/New_York,518,NA,US,44.35,-73.71,1150 +12942,STANDARD,0,Keene,,,NY,"Essex County",America/New_York,518,NA,US,44.25,-73.78,530 +12943,STANDARD,0,"Keene Valley","Saint Huberts",,NY,"Essex County",America/New_York,518,NA,US,44.2,-73.78,350 +12944,STANDARD,0,Keeseville,,,NY,"Essex County",America/New_York,518,NA,US,44.5,-73.48,3340 +12945,STANDARD,0,"Lake Clear","Upper Saint Regis, Upper St Reg",,NY,"Franklin County",America/New_York,518,NA,US,44.36,-74.25,560 +12946,STANDARD,0,"Lake Placid",,,NY,"Essex County",America/New_York,518,NA,US,44.28,-73.98,4420 +12949,STANDARD,0,Lawrenceville,,,NY,"St Lawrence County",America/New_York,315,NA,US,44.77,-74.65,28 +12950,STANDARD,0,Lewis,,,NY,"Essex County",America/New_York,518,NA,US,44.27,-73.57,700 +12952,STANDARD,0,"Lyon Mountain",,Standish,NY,"Clinton County",America/New_York,518,NA,US,44.72,-73.92,430 +12953,STANDARD,0,Malone,,Duane,NY,"Franklin County",America/New_York,518,NA,US,44.84,-74.29,8810 +12955,STANDARD,0,"Lyon Mountain",Merrill,,NY,"Clinton County",America/New_York,518,NA,US,44.81,-73.97,270 +12956,STANDARD,0,Mineville,,"Grover Hills",NY,"Essex County",America/New_York,518,NA,US,44.08,-73.52,940 +12957,STANDARD,0,Moira,,"South Bombay",NY,"Franklin County",America/New_York,518,NA,US,44.86,-74.57,1320 +12958,STANDARD,0,Mooers,,,NY,"Clinton County",America/New_York,518,NA,US,44.96,-73.58,1630 +12959,STANDARD,0,"Mooers Forks",,,NY,"Clinton County",America/New_York,518,NA,US,44.96,-73.69,1150 +12960,STANDARD,0,Moriah,,"Moriah Corners",NY,"Essex County",America/New_York,518,NA,US,44.05,-73.5,950 +12961,STANDARD,0,"Moriah Center",,,NY,"Essex County",America/New_York,518,NA,US,44.06,-73.52,170 +12962,STANDARD,0,Morrisonville,,"West Plattsburgh",NY,"Clinton County",America/New_York,518,NA,US,44.69,-73.55,5070 +12964,STANDARD,0,"New Russia",,,NY,"Essex County",America/New_York,518,NA,US,44.14,-73.6,120 +12965,STANDARD,0,Nicholville,"Fort Jackson, Hopkinton",,NY,"St. Lawrence County",America/New_York,"518,315",NA,US,44.71,-74.65,490 +12966,STANDARD,0,"North Bangor","Bangor, West Bangor",,NY,"Franklin County",America/New_York,518,NA,US,44.79,-74.41,2460 +12967,STANDARD,0,"North Lawrence","N Lawrence",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.76,-74.65,980 +12969,STANDARD,0,"Owls Head",,"Mountain View",NY,"Franklin County",America/New_York,518,NA,US,44.71,-74.08,310 +12970,STANDARD,0,"Paul Smiths",,,NY,"Franklin County",America/New_York,518,NA,US,44.43,-74.25,250 +12972,STANDARD,0,Peru,,Harkness,NY,"Clinton County",America/New_York,518,NA,US,44.58,-73.53,5810 +12973,"PO BOX",0,Piercefield,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.23,-74.57,175 +12974,STANDARD,0,"Port Henry",,,NY,"Essex County",America/New_York,518,NA,US,44.04,-73.46,1180 +12975,"PO BOX",0,"Port Kent",,,NY,"Essex County",America/New_York,518,NA,US,44.53,-73.42,265 +12976,"PO BOX",0,"Rainbow Lake",,,NY,"Franklin County",America/New_York,518,NA,US,44.47,-74.17,209 +12977,"PO BOX",0,"Ray Brook",,,NY,"Essex County",America/New_York,518,NA,US,44.28,-74.07,280 +12978,STANDARD,0,Redford,,,NY,"Clinton County",America/New_York,518,NA,US,44.62,-73.81,340 +12979,STANDARD,0,"Rouses Point",,,NY,"Clinton County",America/New_York,518,NA,US,44.99,-73.37,2100 +12980,STANDARD,0,"Saint Regis Falls","St Regis Fls","Santa Clara",NY,"Franklin County",America/New_York,518,NA,US,44.49,-74.53,1040 +12981,STANDARD,0,Saranac,,,NY,"Clinton County",America/New_York,518,NA,US,44.67,-73.82,1980 +12983,STANDARD,0,"Saranac Lake",,"Harrietstown, Lake Colby",NY,"Franklin County",America/New_York,518,NA,US,44.32,-74.13,5900 +12985,STANDARD,0,"Schuyler Falls","Schuyler Fls","Peasleeville, Swastika",NY,"Clinton County",America/New_York,518,NA,US,44.55,-73.75,850 +12986,STANDARD,0,"Tupper Lake",Massawepie,Conifer,NY,"Franklin County",America/New_York,518,NA,US,44.23,-74.46,4540 +12987,STANDARD,0,"Upper Jay",,,NY,"Essex County",America/New_York,518,NA,US,44.33,-73.78,220 +12989,STANDARD,0,Vermontville,"Loon Lake, Onchiota",,NY,"Franklin County",America/New_York,518,NA,US,44.52,-74.09,780 +12992,STANDARD,0,"West Chazy",,"Ingraham, Sciota",NY,"Clinton County",America/New_York,518,NA,US,44.79,-73.52,4470 +12993,STANDARD,0,Westport,Wadhams,,NY,"Essex County",America/New_York,518,NA,US,44.17,-73.43,1340 +12995,"PO BOX",0,Whippleville,,,NY,"Franklin County",America/New_York,518,NA,US,44.73,-74.26,111 +12996,STANDARD,0,Willsboro,,"Reber, Willsboro Point",NY,"Essex County",America/New_York,518,NA,US,44.37,-73.4,1620 +12997,STANDARD,0,Wilmington,"Whiteface Mountain, Whiteface Mtn",,NY,"Essex County",America/New_York,518,NA,US,44.38,-73.82,1010 +12998,STANDARD,0,Witherbee,,,NY,"Essex County",America/New_York,518,NA,US,44.08,-73.58,430 +13020,"PO BOX",0,"Apulia Station","Apulia Sta",,NY,"Onondaga County",America/New_York,315,NA,US,42.82,-76.07,202 +13021,STANDARD,0,Auburn,"Owasco, Sennett","Aurelius, Fleming, Fosterville, Throop",NY,"Cayuga County",America/New_York,315,NA,US,42.93,-76.56,31630 +13022,"PO BOX",0,Auburn,,,NY,"Cayuga County",America/New_York,315,NA,US,42.93,-76.56,17 +13024,UNIQUE,0,Auburn,,"Auburn State Prison",NY,"Cayuga County",America/New_York,315,NA,US,42.93,-76.57,0 +13026,STANDARD,0,Aurora,,Ledyard,NY,"Cayuga County",America/New_York,315,NA,US,42.75,-76.7,1050 +13027,STANDARD,0,Baldwinsville,Lysander,"Belgium, Radison, Radisson, Van Buren",NY,"Onondaga County",America/New_York,315,NA,US,43.15,-76.33,31820 +13028,STANDARD,0,"Bernhards Bay",,,NY,"Oswego County",America/New_York,315,NA,US,43.29,-75.93,1050 +13029,STANDARD,0,Brewerton,,,NY,"Onondaga County",America/New_York,315,NA,US,43.23,-76.14,6630 +13030,STANDARD,0,Bridgeport,,,NY,"Madison County",America/New_York,315,NA,US,43.15,-75.96,3520 +13031,STANDARD,0,Camillus,,"Howlett Hill, Split Rock",NY,"Onondaga County",America/New_York,315,NA,US,43.03,-76.3,15460 +13032,STANDARD,0,Canastota,Perryville,"South Bay, Whitelaw",NY,"Madison County",America/New_York,315,NA,US,43.08,-75.75,10750 +13033,STANDARD,0,Cato,,,NY,"Cayuga County",America/New_York,315,NA,US,43.16,-76.57,3440 +13034,STANDARD,0,Cayuga,,,NY,"Cayuga County",America/New_York,315,NA,US,42.91,-76.72,1610 +13035,STANDARD,0,Cazenovia,,"Caz, Fenner, Nelson",NY,"Madison County",America/New_York,315,NA,US,42.92,-75.85,7300 +13036,STANDARD,0,"Central Square","Central Sq",,NY,"Oswego County",America/New_York,315,NA,US,43.28,-76.14,7710 +13037,STANDARD,0,Chittenango,,"Chitt, Chtg, Lakeport, North Chittenango, Sullivan",NY,"Madison County",America/New_York,315,NA,US,43.04,-75.87,8410 +13039,STANDARD,0,Cicero,Clay,,NY,"Onondaga County",America/New_York,315,NA,US,43.17,-76.11,16860 +13040,STANDARD,0,Cincinnatus,"East Freetown","E Freetown, E Freetwn, Taylor",NY,"Cortland County",America/New_York,607,NA,US,42.54,-75.89,2290 +13041,STANDARD,0,Clay,,,NY,"Onondaga County",America/New_York,315,NA,US,43.18,-76.17,11400 +13042,STANDARD,0,Cleveland,,,NY,"Oswego County",America/New_York,315,NA,US,43.26,-75.85,1900 +13043,"PO BOX",0,Clockville,,Lincoln,NY,"Madison County",America/New_York,315,NA,US,43.04,-75.74,83 +13044,STANDARD,0,Constantia,,Gayville,NY,"Oswego County",America/New_York,315,NA,US,43.25,-76,2270 +13045,STANDARD,0,Cortland,,"Cortlandville, Munsons Corners, Virgil",NY,"Cortland County",America/New_York,607,NA,US,42.6,-76.18,19840 +13051,"PO BOX",0,"Delphi Falls",,,NY,"Onondaga County",America/New_York,315,NA,US,42.88,-75.91,142 +13052,STANDARD,0,"De Ruyter",,"Deruyter, Lincklaen",NY,"Madison County",America/New_York,315,NA,US,42.75,-75.86,1570 +13053,STANDARD,0,Dryden,,,NY,"Tompkins County",America/New_York,607,NA,US,42.49,-76.29,3740 +13054,STANDARD,0,Durhamville,,"Higginsville, Stacy Basin",NY,"Oneida County",America/New_York,315,NA,US,43.12,-75.67,1330 +13056,"PO BOX",0,"East Homer",,,NY,"Cortland County",America/New_York,607,NA,US,42.66,-76.1,0 +13057,STANDARD,0,"East Syracuse",,"E Syracuse",NY,"Onondaga County",America/New_York,315,NA,US,43.06,-76.07,13340 +13060,STANDARD,0,Elbridge,,"Hart Lot",NY,"Onondaga County",America/New_York,315,NA,US,43.03,-76.44,2450 +13061,STANDARD,0,Erieville,,,NY,"Madison County",America/New_York,315,NA,US,42.85,-75.75,860 +13062,"PO BOX",0,Etna,,,NY,"Tompkins County",America/New_York,607,NA,US,42.48,-76.38,236 +13063,STANDARD,0,Fabius,,,NY,"Onondaga County",America/New_York,315,NA,US,42.83,-75.98,1750 +13064,"PO BOX",0,"Fair Haven",,,NY,"Cayuga County",America/New_York,315,NA,US,43.33,-76.71,462 +13065,"PO BOX",0,Fayette,,,NY,"Seneca County",America/New_York,,NA,US,42.81,-76.8,179 +13066,STANDARD,0,Fayetteville,,,NY,"Onondaga County",America/New_York,315,NA,US,43.02,-76,12200 +13068,STANDARD,0,Freeville,,,NY,"Tompkins County",America/New_York,607,NA,US,42.51,-76.34,4560 +13069,STANDARD,0,Fulton,,"Bowens Corners, Granby, Granby Center, Palermo, Volney",NY,"Oswego County",America/New_York,315,NA,US,43.31,-76.41,20300 +13071,STANDARD,0,Genoa,,,NY,"Cayuga County",America/New_York,315,NA,US,42.66,-76.53,840 +13072,STANDARD,0,Georgetown,,"Geotown, Otselic",NY,"Madison County",America/New_York,315,NA,US,42.76,-75.76,620 +13073,STANDARD,0,Groton,,"Groton City, W Groton, West Groton",NY,"Tompkins County",America/New_York,607,NA,US,42.58,-76.36,5550 +13074,STANDARD,0,Hannibal,,"Fairdale, Hannibal Center, South Hannibal",NY,"Oswego County",America/New_York,315,NA,US,43.31,-76.57,3600 +13076,STANDARD,0,Hastings,,,NY,"Oswego County",America/New_York,315,NA,US,43.35,-76.15,2100 +13077,STANDARD,0,Homer,,Scott,NY,"Cortland County",America/New_York,607,NA,US,42.63,-76.18,6030 +13078,STANDARD,0,Jamesville,,"Sentinel Heights",NY,"Onondaga County",America/New_York,315,NA,US,42.99,-76.07,9080 +13080,STANDARD,0,Jordan,,"Cross Lake",NY,"Onondaga County",America/New_York,315,NA,US,43.06,-76.47,3010 +13081,STANDARD,0,"King Ferry",,"Atwater, Goodyears Corners, Kings Ferry",NY,"Cayuga County",America/New_York,315,NA,US,42.66,-76.61,890 +13082,STANDARD,0,Kirkville,,,NY,"Madison County",America/New_York,,NA,US,43.07,-75.95,4070 +13083,STANDARD,0,Lacona,,"Boylston, Smartville",NY,"Oswego County",America/New_York,315,NA,US,43.64,-76.06,1570 +13084,STANDARD,0,"La Fayette",,"Berwyn, Cardiff, Lafayette",NY,"Onondaga County",America/New_York,315,NA,US,42.88,-76.1,4060 +13087,"PO BOX",0,"Little York",,,NY,"Cortland County",America/New_York,607,NA,US,42.71,-76.15,266 +13088,STANDARD,0,Liverpool,,"Galeville, Jewell Manor, Salina",NY,"Onondaga County",America/New_York,315,NA,US,43.11,-76.19,19880 +13089,"PO BOX",0,Liverpool,,,NY,"Onondaga County",America/New_York,315,NA,US,43.1,-76.21,251 +13090,STANDARD,0,Liverpool,Bayberry,"Dominion Park",NY,"Onondaga County",America/New_York,315,NA,US,43.15,-76.21,28240 +13092,STANDARD,0,Locke,,"East Genoa, Summerhill",NY,"Cayuga County",America/New_York,315,NA,US,42.66,-76.43,2280 +13093,"PO BOX",0,Lycoming,,,NY,"Oswego County",America/New_York,315,NA,US,43.49,-76.39,163 +13101,STANDARD,0,"Mc Graw",,Mcgraw,NY,"Cortland County",America/New_York,607,NA,US,42.59,-76.09,2270 +13102,"PO BOX",0,"Mc Lean",,Mclean,NY,"Tompkins County",America/New_York,607,NA,US,42.55,-76.29,375 +13103,STANDARD,0,Mallory,,,NY,"Oswego County",America/New_York,315,NA,US,43.33,-76.11,300 +13104,STANDARD,0,Manlius,,,NY,"Onondaga County",America/New_York,315,NA,US,43,-75.97,15690 +13107,"PO BOX",0,"Maple View",,,NY,"Oswego County",America/New_York,315,NA,US,43.45,-76.15,50 +13108,STANDARD,0,Marcellus,,"Marcellus Falls, Martisco, Navarino",NY,"Onondaga County",America/New_York,315,NA,US,42.98,-76.34,5770 +13110,STANDARD,0,Marietta,,"Amber, Otisco Valley",NY,"Onondaga County",America/New_York,315,NA,US,42.9,-76.32,2050 +13111,STANDARD,0,Martville,,,NY,"Cayuga County",America/New_York,315,NA,US,43.28,-76.62,1380 +13112,STANDARD,0,Memphis,,,NY,"Onondaga County",America/New_York,315,NA,US,43.08,-76.37,1700 +13113,"PO BOX",0,Meridian,,,NY,"Cayuga County",America/New_York,315,NA,US,43.16,-76.54,284 +13114,STANDARD,0,Mexico,,,NY,"Oswego County",America/New_York,315,NA,US,43.46,-76.23,5790 +13115,"PO BOX",0,Minetto,,,NY,"Oswego County",America/New_York,315,NA,US,43.4,-76.48,399 +13116,STANDARD,0,Minoa,,,NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76,3340 +13117,"PO BOX",0,Montezuma,,,NY,"Cayuga County",America/New_York,315,NA,US,43.01,-76.7,238 +13118,STANDARD,0,Moravia,,"Montville, Sempronius",NY,"Cayuga County",America/New_York,315,NA,US,42.71,-76.42,4490 +13119,"PO BOX",0,Mottville,,,NY,"Onondaga County",America/New_York,315,NA,US,42.97,-76.44,132 +13120,STANDARD,0,Nedrow,,"Indian Village, Onondaga Nation, Rockwell Springs, S Onon, South Onondaga",NY,"Onondaga County",America/New_York,315,NA,US,42.97,-76.14,2090 +13121,"PO BOX",0,"New Haven",,,NY,"Oswego County",America/New_York,315,NA,US,43.46,-76.31,232 +13122,STANDARD,0,"New Woodstock",,"New Wdstock, Sheds",NY,"Madison County",America/New_York,315,NA,US,42.84,-75.85,1000 +13123,"PO BOX",0,"North Bay",,,NY,"Oneida County",America/New_York,315,NA,US,43.23,-75.77,542 +13124,STANDARD,0,"North Pitcher",,,NY,"Chenango County",America/New_York,,NA,US,42.66,-75.82,122 +13126,STANDARD,0,Oswego,,"Bundyville, Demster, Fruit Valley, Furniss, Furniss Sta, North Hannibal, Oswego Center, Scriba, Scriba Center, Seneca Hill, Southwest Oswego",NY,"Oswego County",America/New_York,315,NA,US,43.45,-76.5,25760 +13131,STANDARD,0,Parish,,Colosse,NY,"Oswego County",America/New_York,315,NA,US,43.4,-76.12,3310 +13132,STANDARD,0,Pennellville,,,NY,"Oswego County",America/New_York,315,NA,US,43.26,-76.24,3490 +13134,"PO BOX",0,Peterboro,,Smithfield,NY,"Madison County",America/New_York,315,NA,US,42.97,-75.68,170 +13135,STANDARD,0,Phoenix,,"Hinmansville, Schroeppel",NY,"Oswego County",America/New_York,315,NA,US,43.23,-76.29,5810 +13136,STANDARD,0,Pitcher,,,NY,"Chenango County",America/New_York,,NA,US,42.58,-75.86,390 +13137,"PO BOX",0,Plainville,,,NY,"Onondaga County",America/New_York,315,NA,US,43.15,-76.44,155 +13138,"PO BOX",0,Pompey,,,NY,"Onondaga County",America/New_York,315,NA,US,42.9,-76.01,465 +13139,"PO BOX",0,"Poplar Ridge",,,NY,"Cayuga County",America/New_York,315,NA,US,42.73,-76.61,80 +13140,STANDARD,0,"Port Byron",,Conquest,NY,"Cayuga County",America/New_York,315,NA,US,43.03,-76.62,3620 +13141,STANDARD,0,Preble,,,NY,"Cortland County",America/New_York,,NA,US,42.73,-76.14,610 +13142,STANDARD,0,Pulaski,,"Fernwood, Port Ontario",NY,"Oswego County",America/New_York,315,NA,US,43.56,-76.12,5310 +13143,STANDARD,0,"Red Creek",,,NY,"Wayne County",America/New_York,315,NA,US,43.24,-76.72,2310 +13144,STANDARD,0,Richland,,,NY,"Oswego County",America/New_York,315,NA,US,43.57,-75.97,1060 +13145,STANDARD,0,"Sandy Creek",,,NY,"Oswego County",America/New_York,315,NA,US,43.65,-76.12,1560 +13146,STANDARD,0,Savannah,,,NY,"Wayne County",America/New_York,315,NA,US,43.09,-76.75,1820 +13147,STANDARD,0,"Scipio Center","Venice Center","Merrifield, Scipio, Scipioville, Venice",NY,"Cayuga County",America/New_York,315,NA,US,42.78,-76.55,890 +13148,STANDARD,0,"Seneca Falls",,"Canoga, Tyre",NY,"Seneca County",America/New_York,315,NA,US,42.91,-76.79,8970 +13152,STANDARD,0,Skaneateles,,"Mandana, Niles, Skan",NY,"Onondaga County",America/New_York,315,NA,US,42.89,-76.37,7600 +13153,"PO BOX",0,"Skaneateles Falls","Skan Falls","Skan Fa",NY,"Onondaga County",America/New_York,315,NA,US,43,-76.45,406 +13154,"PO BOX",0,"South Butler",,,NY,"Wayne County",America/New_York,315,NA,US,43.23,-76.81,161 +13155,STANDARD,0,"South Otselic",,,NY,"Chenango County",America/New_York,315,NA,US,42.65,-75.78,510 +13156,STANDARD,0,Sterling,,,NY,"Cayuga County",America/New_York,315,NA,US,43.32,-76.64,1630 +13157,"PO BOX",0,"Sylvan Beach",,,NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.72,847 +13158,STANDARD,0,Truxton,"Cuyler, East Homer",,NY,"Cortland County",America/New_York,607,NA,US,42.71,-76.02,1170 +13159,STANDARD,0,Tully,,"Otisco, Vesper",NY,"Onondaga County",America/New_York,315,NA,US,42.79,-76.1,4750 +13160,STANDARD,0,"Union Springs",,"Allens Point, Farleys Point, Springport",NY,"Cayuga County",America/New_York,315,NA,US,42.84,-76.69,1820 +13162,"PO BOX",0,"Verona Beach",,,NY,"Oneida County",America/New_York,315,NA,US,43.19,-75.72,331 +13163,"PO BOX",0,Wampsville,,,NY,"Madison County",America/New_York,315,NA,US,43.08,-75.71,506 +13164,STANDARD,0,Warners,,,NY,"Onondaga County",America/New_York,315,NA,US,43.08,-76.32,2640 +13165,STANDARD,0,Waterloo,,Junius,NY,"Seneca County",America/New_York,315,NA,US,42.9,-76.86,9140 +13166,STANDARD,0,Weedsport,,Brutus,NY,"Cayuga County",America/New_York,315,NA,US,43.04,-76.56,4700 +13167,STANDARD,0,"West Monroe",,,NY,"Oswego County",America/New_York,315,NA,US,43.29,-76.07,3050 +13201,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,390 +13202,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.15,3630 +13203,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.06,-76.13,11430 +13204,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.05,-76.18,14010 +13205,STANDARD,0,Syracuse,,"Colvin, Colvin Elmwood, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.01,-76.14,12830 +13206,STANDARD,0,Syracuse,,"Eastwood, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76.11,13810 +13207,STANDARD,0,Syracuse,,"Colvin Elmwood, Elmwood, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.01,-76.16,10790 +13208,STANDARD,0,Syracuse,,"Lyncourt, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.08,-76.15,18080 +13209,STANDARD,0,Syracuse,Solvay,"Geddes, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76.22,11610 +13210,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,9880 +13211,STANDARD,0,Syracuse,Mattydale,"Mdale, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.1,-76.12,5710 +13212,STANDARD,0,Syracuse,"N Syracuse, North Syracuse",Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.13,-76.13,17870 +13214,STANDARD,0,Syracuse,"De Witt","Dewitt, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.08,6710 +13215,STANDARD,0,Syracuse,,"Onon Hill, Syr",NY,"Onondaga County",America/New_York,315,NA,US,42.98,-76.22,13580 +13217,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,306 +13218,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,276 +13219,STANDARD,0,Syracuse,,"Syr, Taunton, Westvale",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.22,14400 +13220,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,626 +13221,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,16 +13224,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.1,7320 +13225,UNIQUE,0,Syracuse,,"Syracuse Amf",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13235,"PO BOX",0,Syracuse,,University,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.13,90 +13244,UNIQUE,0,Syracuse,,"Syracuse University",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,39 +13250,UNIQUE,0,Syracuse,,"Caller Firms Brm",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13251,UNIQUE,0,Syracuse,,Firms,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13252,UNIQUE,0,Syracuse,,"National Grid",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13261,"PO BOX",0,Syracuse,,,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,21 +13290,"PO BOX",0,Syracuse,,,NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76.17,136 +13301,STANDARD,0,"Alder Creek",,,NY,"Oneida County",America/New_York,315,NA,US,43.42,-75.22,159 +13302,STANDARD,0,Altmar,,"Howardville, Kasoag, Pine Meadows, Ricard, South Albion",NY,"Oswego County",America/New_York,315,NA,US,43.51,-76,1260 +13303,STANDARD,0,Ava,,"West Branch",NY,"Oneida County",America/New_York,315,NA,US,43.41,-75.47,1040 +13304,STANDARD,0,Barneveld,,"South Trenton",NY,"Oneida County",America/New_York,315,NA,US,43.27,-75.18,1630 +13305,"PO BOX",0,"Beaver Falls","Beaver Fls",,NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.42,466 +13308,STANDARD,0,Blossvale,,Vienna,NY,"Oneida County",America/New_York,315,NA,US,43.27,-75.64,2890 +13309,STANDARD,0,Boonville,,"Hawkinsville, Mohawk Hill, Talcottville",NY,"Oneida County",America/New_York,315,NA,US,43.48,-75.33,4870 +13310,STANDARD,0,Bouckville,,"Pine Woods",NY,"Madison County",America/New_York,315,NA,US,42.88,-75.55,560 +13312,"PO BOX",0,Brantingham,Glenfield,,NY,"Lewis County",America/New_York,315,NA,US,43.7,-75.29,347 +13313,"PO BOX",0,Bridgewater,,,NY,"Oneida County",America/New_York,315,NA,US,42.88,-75.27,669 +13314,STANDARD,0,Brookfield,,,NY,"Madison County",America/New_York,315,NA,US,42.81,-75.31,360 +13315,STANDARD,0,"Burlington Flats","Burlngtn Flt","Burlington, Exeter",NY,"Otsego County",America/New_York,,NA,US,42.74,-75.18,1170 +13316,STANDARD,0,Camden,,"Empeyville, Florence, Hillsboro, Osceola",NY,"Oneida County",America/New_York,315,NA,US,43.33,-75.74,5560 +13317,STANDARD,0,Canajoharie,Ames,"Browns Hollow, Buel, Flat Creek, Mapletown, Marshville, Sprout Brook, Van Deusenville",NY,"Montgomery County",America/New_York,518,NA,US,42.9,-74.57,3240 +13318,STANDARD,0,Cassville,,"North Bridgewater",NY,"Oneida County",America/New_York,315,NA,US,42.94,-75.25,1150 +13319,STANDARD,0,Chadwicks,,Willowvale,NY,"Oneida County",America/New_York,315,NA,US,43.02,-75.27,760 +13320,STANDARD,0,"Cherry Valley",,,NY,"Otsego County",America/New_York,607,NA,US,42.79,-74.75,1680 +13321,"PO BOX",0,"Clark Mills",,,NY,"Oneida County",America/New_York,315,NA,US,43.09,-75.37,1080 +13322,STANDARD,0,Clayville,,,NY,"Oneida County",America/New_York,315,NA,US,42.97,-75.25,1030 +13323,STANDARD,0,Clinton,,"Kirkland, Lairdsville",NY,"Oneida County",America/New_York,315,NA,US,43.04,-75.37,8510 +13324,STANDARD,0,"Cold Brook",Ohio,"Grant, Gray, Morehouse, Morehouseville, Noblesboro",NY,"Herkimer County",America/New_York,315,NA,US,43.24,-75.03,1690 +13325,STANDARD,0,Constableville,Constablevle,"Fish Creek, West Turin",NY,"Lewis County",America/New_York,315,NA,US,43.56,-75.42,810 +13326,STANDARD,0,Cooperstown,"Hartwick Seminary, Hrtwk Seminry",,NY,"Otsego County",America/New_York,607,NA,US,42.7,-74.92,4290 +13327,STANDARD,0,Croghan,,"Belfort, Indian River, Kirschnerville",NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.39,1980 +13328,STANDARD,0,Deansboro,,,NY,"Oneida County",America/New_York,315,NA,US,42.99,-75.42,970 +13329,STANDARD,0,Dolgeville,,"Manheim, Oppenheim",NY,"Herkimer County",America/New_York,315,NA,US,43.1,-74.77,3070 +13331,STANDARD,0,"Eagle Bay",,"Big Moose",NY,"Herkimer County",America/New_York,315,NA,US,43.87,-74.88,210 +13332,STANDARD,0,Earlville,"Lebanon, Poolville","Lebanon Center, South Hamilton, South Lebanon",NY,"Madison County",America/New_York,315,NA,US,42.74,-75.54,2230 +13333,STANDARD,0,"East Springfield","E Springfield",,NY,"Otsego County",America/New_York,607,NA,US,42.84,-74.82,90 +13334,STANDARD,0,Eaton,,"Georgtown Station, Pierceville",NY,"Madison County",America/New_York,315,NA,US,42.84,-75.61,1090 +13335,STANDARD,0,Edmeston,,,NY,"Otsego County",America/New_York,,NA,US,42.69,-75.24,1370 +13337,STANDARD,0,"Fly Creek",,"Cattown, Oaksville, Otsego",NY,"Otsego County",America/New_York,,NA,US,42.71,-74.98,670 +13338,STANDARD,0,Forestport,,"Atwell, Forestport Station, Honnedaga Lake, Kayuta Lake, Mckeever, Otter Lake",NY,"Oneida County",America/New_York,315,NA,US,43.44,-75.2,1040 +13339,STANDARD,0,"Fort Plain",,"Ephratah, Ft Plain, Hallsville, Hessville, Minden, Mindenville, Sand Hill, Starkville, Stone Arabia",NY,"Montgomery County",America/New_York,518,NA,US,42.93,-74.62,5190 +13340,STANDARD,0,Frankfort,Schuyler,"Frankfort Center, North Ilion",NY,"Herkimer County",America/New_York,315,NA,US,43.03,-75.07,6810 +13341,"PO BOX",0,"Franklin Springs","Franklin Spgs",,NY,"Oneida County",America/New_York,315,NA,US,43.04,-75.4,150 +13342,STANDARD,0,Garrattsville,,,NY,"Otsego County",America/New_York,607,NA,US,42.65,-75.2,251 +13343,STANDARD,0,Glenfield,,"Chase Lake, Otter Creek, Pine Grove",NY,"Lewis County",America/New_York,315,NA,US,43.75,-75.31,1450 +13345,STANDARD,0,Greig,,,NY,"Lewis County",America/New_York,315,NA,US,43.69,-75.32,177 +13346,STANDARD,0,Hamilton,,"Colgate, Randallsville",NY,"Madison County",America/New_York,315,NA,US,42.82,-75.54,3250 +13348,STANDARD,0,Hartwick,,"Patent, Snowden",NY,"Otsego County",America/New_York,607,NA,US,42.65,-75.04,1140 +13350,STANDARD,0,Herkimer,,"East Herkimer",NY,"Herkimer County",America/New_York,315,NA,US,43.02,-74.99,7020 +13352,"PO BOX",0,Hinckley,,,NY,"Oneida County",America/New_York,315,NA,US,43.31,-75.12,260 +13353,"PO BOX",0,Hoffmeister,,,NY,"Hamilton County",America/New_York,,NA,US,43.4,-74.72,59 +13354,STANDARD,0,"Holland Patent","Holland Patnt","East Floyd, Steuben, Steuben Valley",NY,"Oneida County",America/New_York,315,NA,US,43.24,-75.25,3110 +13355,STANDARD,0,Hubbardsville,,,NY,"Madison County",America/New_York,315,NA,US,42.81,-75.46,710 +13357,STANDARD,0,Ilion,,"Cedarville, Columbia, Columbia Center, North Columbia, South Ilion, Spinnerville",NY,"Herkimer County",America/New_York,315,NA,US,43.01,-75.04,8580 +13360,STANDARD,0,Inlet,,,NY,"Hamilton County",America/New_York,315,NA,US,43.72,-74.73,360 +13361,STANDARD,0,Jordanville,,,NY,"Herkimer County",America/New_York,315,NA,US,42.91,-74.95,630 +13362,"PO BOX",0,Knoxboro,,,NY,"Oneida County",America/New_York,315,NA,US,42.98,-75.52,150 +13363,STANDARD,0,"Lee Center",,"Stokes, West Lee",NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.51,2050 +13364,"PO BOX",0,Leonardsville,,,NY,"Madison County",America/New_York,315,NA,US,42.8,-75.26,327 +13365,STANDARD,0,"Little Falls",,Salisbury,NY,"Herkimer County",America/New_York,315,NA,US,43.04,-74.85,6980 +13367,STANDARD,0,Lowville,"Beaver River","Dadville, Harrisburg, Montague, New Breman, Watson, West Lowville",NY,"Lewis County",America/New_York,315,NA,US,43.78,-75.48,7160 +13368,STANDARD,0,"Lyons Falls",,"Goulds Mill, Lyonsdale",NY,"Lewis County",America/New_York,315,NA,US,43.61,-75.36,1000 +13401,"PO BOX",0,"Mc Connellsville","Mc Conelsvile",,NY,"Oneida County",America/New_York,315,NA,US,43.27,-75.69,159 +13402,STANDARD,0,Madison,,,NY,"Madison County",America/New_York,315,NA,US,42.89,-75.51,1260 +13403,STANDARD,0,Marcy,,,NY,"Oneida County",America/New_York,315,NA,US,43.17,-75.29,4360 +13404,"PO BOX",0,Martinsburg,,,NY,"Lewis County",America/New_York,315,NA,US,43.74,-75.47,161 +13406,STANDARD,0,Middleville,,Fairfield,NY,"Herkimer County",America/New_York,315,NA,US,43.13,-74.92,480 +13407,STANDARD,0,Mohawk,,"Dennison Corners, Fort Herkimer, German Flatts, Paines Hollow",NY,"Herkimer County",America/New_York,315,NA,US,43,-75,4210 +13408,STANDARD,0,Morrisville,,"Morrisville Station",NY,"Madison County",America/New_York,315,NA,US,42.89,-75.64,2050 +13409,STANDARD,0,Munnsville,"Pratts Hollow","Stockbridge, Valley Mills",NY,"Madison County",America/New_York,315,NA,US,42.97,-75.58,2050 +13410,"PO BOX",0,Nelliston,,,NY,"Montgomery County",America/New_York,518,NA,US,42.93,-74.61,462 +13411,STANDARD,0,"New Berlin","S Edmeston, South Edmeston","Columbus, Hoboken, Pittsfield",NY,"Chenango County",America/New_York,607,NA,US,42.62,-75.33,2710 +13413,STANDARD,0,"New Hartford",,"New Hartfd",NY,"Oneida County",America/New_York,315,NA,US,43.07,-75.28,14160 +13415,STANDARD,0,"New Lisbon",,Stetsonville,NY,"Otsego County",America/New_York,607,NA,US,42.6,-75.2,56 +13416,STANDARD,0,Newport,,,NY,"Herkimer County",America/New_York,315,NA,US,43.18,-75.01,1990 +13417,STANDARD,0,"New York Mills","New York Mls","Ny Mills",NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.29,2730 +13418,STANDARD,0,"North Brookfield","N Brookfield",,NY,"Madison County",America/New_York,315,NA,US,42.85,-75.38,181 +13420,STANDARD,0,"Old Forge",,,NY,"Herkimer County",America/New_York,315,NA,US,43.71,-74.97,1380 +13421,STANDARD,0,Oneida,,"Kenwood, Merrillsville, Oneida Castle, Scribner Corners",NY,"Madison County",America/New_York,315,NA,US,43.08,-75.65,11040 +13424,STANDARD,0,Oriskany,,,NY,"Oneida County",America/New_York,315,NA,US,43.15,-75.33,1980 +13425,STANDARD,0,"Oriskany Falls","Oriskany Fls",Augusta,NY,"Oneida County",America/New_York,315,NA,US,42.93,-75.46,1620 +13426,"PO BOX",0,Orwell,,,NY,"Oswego County",America/New_York,315,NA,US,43.56,-75.95,227 +13428,STANDARD,0,"Palatine Bridge","Palatine Brg",,NY,"Montgomery County",America/New_York,518,NA,US,42.92,-74.55,1240 +13431,STANDARD,0,Poland,,"Gravesville, Russia",NY,"Herkimer County",America/New_York,315,NA,US,43.22,-75.06,1710 +13433,STANDARD,0,"Port Leyden",,"Collinsville, Fowlersville, Leyden, Moose River",NY,"Lewis County",America/New_York,315,NA,US,43.58,-75.34,1410 +13435,"PO BOX",0,Prospect,,,NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.15,380 +13436,STANDARD,0,"Raquette Lake",,Brightside,NY,"Hamilton County",America/New_York,315,NA,US,43.81,-74.65,132 +13437,STANDARD,0,Redfield,,,NY,"Oswego County",America/New_York,315,NA,US,43.59,-75.81,340 +13438,STANDARD,0,Remsen,,"North Wilmurt",NY,"Oneida County",America/New_York,315,NA,US,43.32,-75.18,3040 +13439,STANDARD,0,"Richfield Springs","Richfld Spgs","Cullen, Richfield, South Columbia, Warren",NY,"Otsego County",America/New_York,315,NA,US,42.85,-74.98,3100 +13440,STANDARD,0,Rome,,"Bartlett, Camroden, Coonrod, Floyd, Fort Stanwix National Monume, Greenway, Lake Delta, Lee, Ridge Mills, Seifert Corners, Spencer Settlement, Stanwix, Stanwix Heights",NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.47,32860 +13441,STANDARD,0,Rome,,,NY,"Oneida County",America/New_York,315,NA,US,43.23,-75.41,0 +13442,"PO BOX",0,Rome,,,NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.47,980 +13449,UNIQUE,0,Rome,,"Brm Customer",NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.47,0 +13450,STANDARD,0,Roseboom,,,NY,"Otsego County",America/New_York,607,NA,US,42.7,-74.81,200 +13452,STANDARD,0,"Saint Johnsville","St Johnsville","Crum Creek, Johnsville, Kringsbush, Lassellsville, Scotchbush",NY,"Montgomery County",America/New_York,518,NA,US,43,-74.67,3690 +13454,STANDARD,0,"Salisbury Center","Salisbury Ctr",,NY,"Herkimer County",America/New_York,315,NA,US,43.22,-74.76,680 +13455,"PO BOX",0,Sangerfield,,,NY,"Oneida County",America/New_York,315,NA,US,42.91,-75.37,109 +13456,STANDARD,0,Sauquoit,Paris,,NY,"Oneida County",America/New_York,315,NA,US,43,-75.26,3770 +13457,"PO BOX",0,"Schuyler Lake",,,NY,"Otsego County",America/New_York,,NA,US,42.78,-75.02,239 +13459,STANDARD,0,"Sharon Springs","Sharon Spgs",,NY,"Schoharie County",America/New_York,518,NA,US,42.79,-74.61,1680 +13460,STANDARD,0,Sherburne,,,NY,"Chenango County",America/New_York,607,NA,US,42.67,-75.49,3790 +13461,STANDARD,0,Sherrill,,,NY,"Oneida County",America/New_York,315,NA,US,43.07,-75.59,2900 +13464,STANDARD,0,Smyrna,,"Bonney, Upperville",NY,"Chenango County",America/New_York,607,NA,US,42.68,-75.56,970 +13465,STANDARD,0,Solsville,,,NY,"Madison County",America/New_York,315,NA,US,42.91,-75.51,0 +13468,STANDARD,0,"Springfield Center","Springfld Ctr","Springfld Center",NY,"Otsego County",America/New_York,607,NA,US,42.82,-74.87,430 +13469,STANDARD,0,Stittville,,,NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.3,710 +13470,STANDARD,0,Stratford,,,NY,"Fulton County",America/New_York,,NA,US,43.18,-74.68,500 +13471,STANDARD,0,Taberg,,"Annsville, Point Rock",NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.61,2580 +13472,"PO BOX",0,Thendara,,,NY,"Herkimer County",America/New_York,315,NA,US,43.7,-75.07,177 +13473,STANDARD,0,Turin,,Houseville,NY,"Lewis County",America/New_York,315,NA,US,43.62,-75.4,650 +13475,STANDARD,0,"Van Hornesville","Van Hornesvle",,NY,"Herkimer County",America/New_York,315,NA,US,42.89,-74.83,164 +13476,STANDARD,0,Vernon,,,NY,"Oneida County",America/New_York,315,NA,US,43.07,-75.53,2930 +13477,STANDARD,0,"Vernon Center",,,NY,"Oneida County",America/New_York,315,NA,US,43.05,-75.5,1150 +13478,STANDARD,0,Verona,,,NY,"Oneida County",America/New_York,315,NA,US,43.13,-75.57,2790 +13479,"PO BOX",0,"Washington Mills","Washingtn Mls",,NY,"Oneida County",America/New_York,315,NA,US,43.05,-75.27,142 +13480,STANDARD,0,Waterville,,"Conger Corners, Daytonville, Stockwell",NY,"Oneida County",America/New_York,315,NA,US,42.93,-75.38,2880 +13482,STANDARD,0,"West Burlington","W Burlington",,NY,"Otsego County",America/New_York,607,NA,US,42.69,-75.19,56 +13483,STANDARD,0,Westdale,,,NY,"Oneida County",America/New_York,315,NA,US,43.4,-75.83,270 +13484,"PO BOX",0,"West Eaton",,,NY,"Madison County",America/New_York,315,NA,US,42.87,-75.66,221 +13485,STANDARD,0,"West Edmeston",,"South Brookfield",NY,"Madison County",America/New_York,"315,607",NA,US,42.78,-75.31,1010 +13486,STANDARD,0,Westernville,,"Big Brook, Frenchville",NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.38,720 +13488,STANDARD,0,Westford,,"Maple Valley",NY,"Otsego County",America/New_York,,NA,US,42.69,-74.75,220 +13489,STANDARD,0,"West Leyden",,,NY,"Lewis County",America/New_York,315,NA,US,43.46,-75.52,580 +13490,STANDARD,0,Westmoreland,,Hecla,NY,"Oneida County",America/New_York,315,NA,US,43.11,-75.4,1200 +13491,STANDARD,0,"West Winfield","West Exeter","East Winfield, Millers Mills, North Winfield, Plainfield, Plainfield Center, Unadilla Forks, Winfield",NY,"Herkimer County",America/New_York,315,NA,US,42.88,-75.19,3220 +13492,STANDARD,0,Whitesboro,,"Walesville, Whitestown",NY,"Oneida County",America/New_York,315,NA,US,43.12,-75.29,10530 +13493,STANDARD,0,Williamstown,,Williamstn,NY,"Oswego County",America/New_York,315,NA,US,43.42,-75.88,1680 +13494,STANDARD,0,Woodgate,,,NY,"Oneida County",America/New_York,315,NA,US,43.52,-75.15,260 +13495,STANDARD,0,Yorkville,,,NY,"Oneida County",America/New_York,315,NA,US,43.11,-75.27,1810 +13501,STANDARD,0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,30390 +13502,STANDARD,0,Utica,Deerfield,Schuyler,NY,"Oneida County",America/New_York,315,NA,US,43.14,-75.15,25510 +13503,"PO BOX",0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,645 +13504,"PO BOX",0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,234 +13505,"PO BOX",0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,301 +13599,UNIQUE,0,Utica,,"Brm Customer",NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,0 +13601,STANDARD,0,Watertown,"Glen Park",Wtown,NY,"Jefferson County",America/New_York,315,NA,US,43.97,-75.91,29750 +13602,STANDARD,0,"Fort Drum",Watertown,Wtown,NY,"Jefferson County",America/New_York,315,NA,US,44.07,-75.78,4150 +13603,STANDARD,0,Watertown,"Fort Drum",,NY,"Jefferson County",America/New_York,315,NA,US,44.04,-75.79,10450 +13605,STANDARD,0,Adams,Smithville,,NY,"Jefferson County",America/New_York,315,NA,US,43.8,-76.02,3870 +13606,STANDARD,0,"Adams Center",,,NY,"Jefferson County",America/New_York,315,NA,US,43.85,-75.99,2380 +13607,STANDARD,0,"Alexandria Bay","Alex Bay, Point Vivian","Alexandra Bay, Alexandria, Collins Landing, Edgewood Park, St Lawrence Park, Westminster Park",NY,"Jefferson County",America/New_York,315,NA,US,44.33,-75.91,1580 +13608,STANDARD,0,Antwerp,,Wegatchie,NY,"Jefferson County",America/New_York,315,NA,US,44.25,-75.62,1240 +13611,"PO BOX",0,Belleville,,,NY,"Jefferson County",America/New_York,315,NA,US,43.78,-76.11,363 +13612,STANDARD,0,"Black River",,,NY,"Jefferson County",America/New_York,315,NA,US,44,-75.79,2330 +13613,STANDARD,0,"Brasher Falls",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.8,-74.79,2140 +13614,STANDARD,0,"Brier Hill",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.54,-75.68,240 +13615,"PO BOX",0,Brownville,,"Paddy Hill",NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.99,1307 +13616,STANDARD,0,Calcium,,,NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.84,1430 +13617,STANDARD,0,Canton,,"Bucks Bridge, Crary Mills, Eddy, Langdon Corners, Morley, North Russell, Pierrepont, West Pierrepont",NY,"St. Lawrence County",America/New_York,315,NA,US,44.59,-75.17,6980 +13618,STANDARD,0,"Cape Vincent",,,NY,"Jefferson County",America/New_York,315,NA,US,44.12,-76.33,1610 +13619,STANDARD,0,Carthage,,"Champion, Champion Huddle, Herrings, W Carthage, West Carthage, Wilna",NY,"Jefferson County",America/New_York,315,NA,US,43.98,-75.6,8290 +13620,STANDARD,0,Castorland,,,NY,"Lewis County",America/New_York,315,NA,US,43.88,-75.51,1890 +13621,STANDARD,0,"Chase Mills",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.86,-75.07,550 +13622,STANDARD,0,Chaumont,,,NY,"Jefferson County",America/New_York,315,NA,US,44.06,-76.13,1980 +13623,"PO BOX",0,"Chippewa Bay",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.45,-75.75,45 +13624,STANDARD,0,Clayton,"Frontenac, Grenell, Murray Isle",Grindstone,NY,"Jefferson County",America/New_York,315,NA,US,44.23,-76.08,3790 +13625,STANDARD,0,Colton,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.54,-74.93,1700 +13626,STANDARD,0,Copenhagen,"Barnes Corners, Barnes Cors, South Rutland","S Rutland",NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.67,1780 +13627,"PO BOX",0,"Deer River",,,NY,"Lewis County",America/New_York,315,NA,US,43.94,-75.59,102 +13628,"PO BOX",0,Deferiet,,,NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.68,341 +13630,STANDARD,0,"De Kalb Junction","De Kalb Jct",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.48,-75.3,1040 +13631,"PO BOX",0,Denmark,,,NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.58,23 +13632,"PO BOX",0,Depauville,,,NY,"Jefferson County",America/New_York,315,NA,US,44.13,-76.01,371 +13633,STANDARD,0,"De Peyster",,Depeyster,NY,"St. Lawrence County",America/New_York,315,NA,US,44.5,-75.46,233 +13634,STANDARD,0,Dexter,,"Adams Cove, Guffin Bay, Muskalounge, Perch River, Pillar Point, Sherwin Bay",NY,"Jefferson County",America/New_York,315,NA,US,44,-76.04,3490 +13635,STANDARD,0,Edwards,,"S Edwards, South Edwards",NY,"St. Lawrence County",America/New_York,315,NA,US,44.32,-75.25,870 +13636,STANDARD,0,Ellisburg,,,NY,"Jefferson County",America/New_York,315,NA,US,43.74,-76.12,250 +13637,STANDARD,0,"Evans Mills",,"Le Ray, Pamelia, Pamelia Four Corners",NY,"Jefferson County",America/New_York,315,NA,US,44.08,-75.8,4040 +13638,STANDARD,0,"Felts Mills",,Rutland,NY,"Jefferson County",America/New_York,315,NA,US,44.02,-75.74,390 +13639,STANDARD,0,Fine,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.25,-75.13,228 +13640,STANDARD,0,"Wellesley Island","Fineview, Wellesley Is",,NY,"Jefferson County",America/New_York,315,NA,US,44.3,-76.03,440 +13641,"PO BOX",0,"Fishers Landing","Fishers Lndg",,NY,"Jefferson County",America/New_York,315,NA,US,44.27,-76,128 +13642,STANDARD,0,Gouverneur,Balmat,"Brasie Corners, Elmdale, Emeryville, Fowler, Fullerville, Macomb, Natural Dam, Pierces Corner, Somerville",NY,"St. Lawrence County",America/New_York,315,NA,US,44.33,-75.46,6770 +13643,"PO BOX",0,"Great Bend",,"Gt Bend",NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.72,372 +13645,"PO BOX",0,Hailesboro,,,NY,"St Lawrence County",America/New_York,315,NA,US,44.28,-75.42,239 +13646,STANDARD,0,Hammond,,"Edwardsville, Rossie, Ruby Corner",NY,"St. Lawrence County",America/New_York,315,NA,US,44.44,-75.69,1630 +13647,"PO BOX",0,"Hannawa Falls",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.61,-74.98,564 +13648,STANDARD,0,Harrisville,,"Diana, East Pitcairn, Geers Corners, Lake Bonaparte, Pitcairn",NY,"Lewis County",America/New_York,315,NA,US,44.15,-75.32,1820 +13649,"PO BOX",0,Helena,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.92,-74.72,153 +13650,STANDARD,0,Henderson,Woodville,"Jefferson Park, Rural Hill",NY,"Jefferson County",America/New_York,315,NA,US,43.8,-76.19,1130 +13651,"PO BOX",0,"Henderson Harbor","Henderson Hbr",,NY,"Jefferson County",America/New_York,315,NA,US,43.87,-76.18,201 +13652,STANDARD,0,Hermon,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.46,-75.23,1580 +13654,STANDARD,0,Heuvelton,,"Pope Mills",NY,"St. Lawrence County",America/New_York,315,NA,US,44.61,-75.4,1630 +13655,STANDARD,0,Hogansburg,Akwesasne,,NY,"St. Lawrence County",America/New_York,518,NA,US,44.97,-74.63,3850 +13656,STANDARD,0,"La Fargeville",,"Lafargeville, Omar, Stone Mills",NY,"Jefferson County",America/New_York,315,NA,US,44.18,-75.95,2300 +13657,"PO BOX",0,Limerick,,,NY,"Jefferson County",America/New_York,315,NA,US,44.03,-76.01,0 +13658,STANDARD,0,Lisbon,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.72,-75.26,2100 +13659,STANDARD,0,Lorraine,,"Diamond, Worth",NY,"Jefferson County",America/New_York,315,NA,US,43.74,-75.85,450 +13660,STANDARD,0,Madrid,,"Madrid Springs",NY,"St. Lawrence County",America/New_York,315,NA,US,44.75,-75.15,1720 +13661,STANDARD,0,Mannsville,,,NY,"Jefferson County",America/New_York,315,NA,US,43.71,-76.06,1360 +13662,STANDARD,0,Massena,,"Massena Center, Massena Springs",NY,"St. Lawrence County",America/New_York,315,NA,US,44.92,-74.89,12960 +13664,STANDARD,0,Morristown,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.58,-75.64,420 +13665,STANDARD,0,"Natural Bridge","Natural Brg",,NY,"Jefferson County",America/New_York,315,NA,US,44.05,-75.43,710 +13666,"PO BOX",0,"Newton Falls",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.21,-74.97,255 +13667,STANDARD,0,Norfolk,,Grantville,NY,"St. Lawrence County",America/New_York,315,NA,US,44.8,-74.98,2630 +13668,STANDARD,0,Norwood,,"Hewittville, Knapps Station, North Stockholm, Yaleville",NY,"St. Lawrence County",America/New_York,315,NA,US,44.74,-74.99,2710 +13669,STANDARD,0,Ogdensburg,,"Ogd, Red Mills",NY,"St. Lawrence County",America/New_York,315,NA,US,44.7,-75.47,11730 +13670,STANDARD,0,Oswegatchie,,"Lower Oswegatchie",NY,"St. Lawrence County",America/New_York,315,NA,US,44.18,-75.07,260 +13671,"PO BOX",0,Antwerp,,,NY,"Jefferson County",America/New_York,315,NA,US,44.28,-75.62,22 +13672,STANDARD,0,Parishville,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.47,-74.66,550 +13673,STANDARD,0,Philadelphia,,Phila,NY,"Jefferson County",America/New_York,315,NA,US,44.15,-75.7,1950 +13674,"PO BOX",0,"Pierrepont Manor","Pierrepnt Mnr",,NY,"Jefferson County",America/New_York,315,NA,US,43.74,-76.05,252 +13675,STANDARD,0,Plessis,,,NY,"Jefferson County",America/New_York,315,NA,US,44.28,-75.85,214 +13676,STANDARD,0,Potsdam,,"Eben, Parishville Center, Sandfordville, Sissonville, Slab City, West Parishville, West Potsdam",NY,"St. Lawrence County",America/New_York,315,NA,US,44.66,-74.98,8890 +13677,"PO BOX",0,Pyrites,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.51,-75.18,112 +13678,"PO BOX",0,Raymondville,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.81,-74.99,300 +13679,STANDARD,0,Redwood,,,NY,"Jefferson County",America/New_York,315,NA,US,44.32,-75.77,1540 +13680,STANDARD,0,"Rensselaer Falls","Rensslaer Fls",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.59,-75.32,960 +13681,STANDARD,0,Richville,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.41,-75.39,730 +13682,STANDARD,0,Rodman,,"E Rodman",NY,"Jefferson County",America/New_York,315,NA,US,43.84,-75.9,840 +13683,"PO BOX",0,Rooseveltown,,,NY,"St Lawrence County",America/New_York,315,NA,US,44.96,-74.73,462 +13684,STANDARD,0,Russell,Degrasse,"Clare, Hatchs Corner, South Russell",NY,"St. Lawrence County",America/New_York,315,NA,US,44.36,-75.04,980 +13685,STANDARD,0,"Sackets Harbor","Sackets Hbr","Boultons Beach, Hounsfield",NY,"Jefferson County",America/New_York,315,NA,US,43.94,-76.12,2100 +13687,STANDARD,0,"South Colton",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.5,-74.88,440 +13690,STANDARD,0,"Star Lake",,"Benson Mines",NY,"St. Lawrence County",America/New_York,315,NA,US,44.16,-75.03,630 +13691,STANDARD,0,Theresa,,,NY,"Jefferson County",America/New_York,315,NA,US,44.21,-75.79,2600 +13692,"PO BOX",0,"Thousand Island Park","Thous Is Pk, Thousnd Is Pk",,NY,"Jefferson County",America/New_York,315,NA,US,44.29,-76.03,68 +13693,STANDARD,0,"Three Mile Bay","Three Mle Bay",,NY,"Jefferson County",America/New_York,315,NA,US,43.99,-76.25,480 +13694,STANDARD,0,Waddington,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.85,-75.19,1340 +13695,"PO BOX",0,Wanakena,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.13,-74.92,73 +13696,STANDARD,0,"West Stockholm","W Stockholm",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.69,-74.89,200 +13697,STANDARD,0,Winthrop,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.74,-74.8,1940 +13699,UNIQUE,0,Potsdam,,"Clarkson University",NY,"St Lawrence County",America/New_York,315,NA,US,44.66,-74.98,58 +13730,STANDARD,0,Afton,,"Afton Lake, Nineveh Junction, North Afton",NY,"Chenango County",America/New_York,607,NA,US,42.22,-75.52,2290 +13731,STANDARD,0,Andes,,,NY,"Delaware County",America/New_York,845,NA,US,42.18,-74.78,740 +13732,STANDARD,0,Apalachin,,"South Apalachin",NY,"Tioga County",America/New_York,607,NA,US,42.07,-76.16,7230 +13733,STANDARD,0,Bainbridge,,"Bennettsville, Coventryville, New Berlin Junction, West Bainbridge",NY,"Chenango County",America/New_York,607,NA,US,42.29,-75.48,4180 +13734,STANDARD,0,Barton,,,NY,"Tioga County",America/New_York,607,NA,US,42.07,-76.41,1900 +13736,STANDARD,0,Berkshire,,"East Berkshire, Jenksville, Ketchumville, Speedsville",NY,"Tioga County",America/New_York,607,NA,US,42.3,-76.18,2160 +13737,"PO BOX",0,"Bible School Park","Bible Sch Pk",,NY,"Broome County",America/New_York,607,NA,US,42.1,-75.97,51 +13738,"PO BOX",0,"Blodgett Mills","Blodgett Mls",,NY,"Cortland County",America/New_York,607,NA,US,42.56,-76.12,135 +13739,STANDARD,0,Bloomville,,"Doonan Corners, Kortright, Kortright Center",NY,"Delaware County",America/New_York,,NA,US,42.33,-74.8,740 +13740,STANDARD,0,"Bovina Center",,,NY,"Delaware County",America/New_York,,NA,US,42.26,-74.78,410 +13743,STANDARD,0,Candor,,"Hubbardtown, West Candor",NY,"Tioga County",America/New_York,607,NA,US,42.23,-76.34,3230 +13744,STANDARD,0,"Castle Creek",,,NY,"Broome County",America/New_York,607,NA,US,42.22,-75.91,1000 +13745,"PO BOX",0,"Chenango Bridge","Chenango Brg",,NY,"Broome County",America/New_York,607,NA,US,42.16,-75.86,347 +13746,STANDARD,0,"Chenango Forks","Chenango Fks","North Fenton, Quinneville",NY,"Broome County",America/New_York,,NA,US,42.23,-75.84,2250 +13747,"PO BOX",0,Colliersville,,,NY,"Otsego County",America/New_York,607,NA,US,42.49,-74.98,128 +13748,STANDARD,0,Conklin,,,NY,"Broome County",America/New_York,607,NA,US,42.03,-75.8,3240 +13749,"PO BOX",0,Corbettsville,,,NY,"Broome County",America/New_York,607,NA,US,42.01,-75.79,100 +13750,STANDARD,0,Davenport,,"North Kortright, Sturges Corner",NY,"Delaware County",America/New_York,607,NA,US,42.47,-74.84,910 +13751,STANDARD,0,"Davenport Center","Davenport Ctr",,NY,"Delaware County",America/New_York,607,NA,US,42.45,-74.9,190 +13752,STANDARD,0,Delancey,,Cabinhill,NY,"Delaware County",America/New_York,,NA,US,42.2,-74.97,570 +13753,STANDARD,0,Delhi,Meredith,"Fraser, Lake Delaware, West Delhi",NY,"Delaware County",America/New_York,607,NA,US,42.27,-74.91,3400 +13754,STANDARD,0,Deposit,,"Barbourville, China, Hambletville, Mcclure, North Sanford, Oquaga Lake, Sanford, Stilesville, Tompkins",NY,"Broome County",America/New_York,607,NA,US,42.06,-75.42,2480 +13755,STANDARD,0,Downsville,Shinhopple,"Corbett, Gregorytown",NY,"Delaware County",America/New_York,607,NA,US,42.08,-74.99,1010 +13756,STANDARD,0,"East Branch",,"Burnwood, Harvard, Peakville",NY,"Delaware County",America/New_York,,NA,US,41.98,-75.11,350 +13757,STANDARD,0,"East Meredith",,"Shackport, West Meredith",NY,"Delaware County",America/New_York,,NA,US,42.41,-74.88,870 +13758,"PO BOX",0,"East Pharsalia","E Pharsalia",,NY,"Chenango County",America/New_York,607,NA,US,42.59,-75.73,106 +13760,STANDARD,0,Endicott,Endwell,"Campville, Crestview Heights, Union Center, West Corners, West Endicott",NY,"Broome County",America/New_York,607,NA,US,42.13,-76.08,37590 +13761,"PO BOX",0,Endicott,,,NY,"Broome County",America/New_York,607,NA,US,42.09,-76.05,295 +13762,"PO BOX",0,Endwell,,,NY,"Broome County",America/New_York,607,NA,US,42.11,-76.02,113 +13763,"PO BOX",0,Endicott,,,NY,"Broome County",America/New_York,607,NA,US,42.09,-76.05,97 +13774,"PO BOX",0,"Fishs Eddy",,,NY,"Delaware County",America/New_York,607,NA,US,41.96,-75.15,204 +13775,STANDARD,0,Franklin,,"Bartlett Hollow, East Sidney, Leonta",NY,"Delaware County",America/New_York,607,NA,US,42.34,-75.16,1350 +13776,STANDARD,0,Gilbertsville,,Butternuts,NY,"Otsego County",America/New_York,607,NA,US,42.47,-75.32,500 +13777,STANDARD,0,"Glen Aubrey",,,NY,"Broome County",America/New_York,607,NA,US,42.25,-76,740 +13778,STANDARD,0,Greene,,"Coventry, Genegantslet, Lower Genegantslet Corner, Smithville, Smithville Center, Triangle",NY,"Chenango County",America/New_York,607,NA,US,42.32,-75.77,4870 +13780,STANDARD,0,Guilford,,"Guilford Center",NY,"Chenango County",America/New_York,607,NA,US,42.4,-75.49,940 +13782,STANDARD,0,Hamden,,,NY,"Delaware County",America/New_York,,NA,US,42.19,-74.99,490 +13783,STANDARD,0,Hancock,Cadosia,"Apex, French Woods, Hales Eddy, Kelsey, Lordville",NY,"Delaware County",America/New_York,607,NA,US,41.95,-75.27,1770 +13784,"PO BOX",0,Harford,,,NY,"Cortland County",America/New_York,607,NA,US,42.43,-76.22,264 +13786,STANDARD,0,Harpersfield,,"West Harpersfield",NY,"Delaware County",America/New_York,,NA,US,42.43,-74.68,300 +13787,STANDARD,0,Harpursville,,"Belden, Centre Village, Colesville, South Nineveh",NY,"Broome County",America/New_York,607,NA,US,42.17,-75.62,2950 +13788,STANDARD,0,Hobart,,,NY,"Delaware County",America/New_York,607,NA,US,42.37,-74.66,750 +13790,STANDARD,0,"Johnson City",,"East Maine, Westover",NY,"Broome County",America/New_York,607,NA,US,42.11,-75.96,14410 +13794,"PO BOX",0,Killawog,,,NY,"Broome County",America/New_York,607,NA,US,42.4,-76.02,105 +13795,STANDARD,0,Kirkwood,,"Fivemile Point, Langdon",NY,"Broome County",America/New_York,607,NA,US,42.03,-75.79,3250 +13796,STANDARD,0,Laurens,,"West Laurens",NY,"Otsego County",America/New_York,,NA,US,42.56,-75.13,1020 +13797,STANDARD,0,Lisle,,Centerlisle,NY,"Broome County",America/New_York,607,NA,US,42.35,-76,1820 +13801,STANDARD,0,"Mc Donough",,Mcdonough,NY,"Chenango County",America/New_York,607,NA,US,42.49,-75.76,1010 +13802,STANDARD,0,Maine,,,NY,"Broome County",America/New_York,607,NA,US,42.24,-76.04,750 +13803,STANDARD,0,Marathon,,"Freetown, Freetown Corners, Galatia, Hunts Corners, Lapeer, Messengerville, Texas Valley",NY,"Cortland County",America/New_York,607,NA,US,42.44,-76.03,3760 +13804,STANDARD,0,Masonville,,Whitman,NY,"Delaware County",America/New_York,607,NA,US,42.24,-75.37,350 +13806,STANDARD,0,Meridale,,,NY,"Delaware County",America/New_York,,NA,US,42.36,-74.95,170 +13807,STANDARD,0,Milford,,,NY,"Otsego County",America/New_York,607,NA,US,42.59,-74.94,1050 +13808,STANDARD,0,Morris,,"Elm Grove, Filer Corners, Maple Grove",NY,"Otsego County",America/New_York,607,NA,US,42.54,-75.24,1440 +13809,STANDARD,0,"Mount Upton",,Rockdale,NY,"Chenango County",America/New_York,607,NA,US,42.42,-75.38,1320 +13810,STANDARD,0,"Mount Vision",,Welcome,NY,"Otsego County",America/New_York,607,NA,US,42.57,-75.05,940 +13811,STANDARD,0,"Newark Valley",,"Tiona, Weltonville, West Newark",NY,"Tioga County",America/New_York,607,NA,US,42.22,-76.18,3770 +13812,STANDARD,0,Nichols,,"East Nichols, Hoopers Valley, Lounsberry",NY,"Tioga County",America/New_York,607,NA,US,42.03,-76.35,1940 +13813,STANDARD,0,Nineveh,,"Doraville, Vallonia Springs",NY,"Broome County",America/New_York,607,NA,US,42.19,-75.6,740 +13814,"PO BOX",0,"North Norwich",,,NY,"Chenango County",America/New_York,,NA,US,42.61,-75.53,321 +13815,STANDARD,0,Norwich,,"Chenango Lake, Kings Settlement, Springvale, Woods Corners",NY,"Chenango County",America/New_York,607,NA,US,42.53,-75.52,10770 +13820,STANDARD,0,Oneonta,,"Emmons, Milford Center, North Franklin, West End",NY,"Otsego County",America/New_York,607,NA,US,42.45,-75.06,13320 +13825,STANDARD,0,Otego,,Otsdawa,NY,"Otsego County",America/New_York,607,NA,US,42.39,-75.17,2750 +13826,STANDARD,0,Ouaquaga,Harpursville,,NY,"Broome County",America/New_York,607,NA,US,42.1,-75.64,116 +13827,STANDARD,0,Owego,,"Catatonk, Flemingville, Foster, Gaskill, Hullsville, South Owego, Straits Corners, Waits",NY,"Tioga County",America/New_York,607,NA,US,42.1,-76.26,9790 +13830,STANDARD,0,Oxford,Brisben,"East Mcdonough, Preston, South Oxford, Tyner",NY,"Chenango County",America/New_York,607,NA,US,42.44,-75.59,3820 +13832,STANDARD,0,Plymouth,,"Beaver Meadow",NY,"Chenango County",America/New_York,607,NA,US,42.66,-75.67,530 +13833,STANDARD,0,"Port Crane","Sanitaria Spg, Sanitaria Springs",Fenton,NY,"Broome County",America/New_York,,NA,US,42.16,-75.83,3570 +13834,STANDARD,0,Portlandville,,,NY,"Otsego County",America/New_York,607,NA,US,42.53,-74.97,152 +13835,STANDARD,0,Richford,"Harford Mills",,NY,"Tioga County",America/New_York,607,NA,US,42.35,-76.2,1190 +13837,"PO BOX",1,Shinhopple,,,NY,"Delaware County",America/New_York,,NA,US,42.03,-75.06,0 +13838,STANDARD,0,Sidney,,,NY,"Delaware County",America/New_York,607,NA,US,42.31,-75.39,3460 +13839,STANDARD,0,"Sidney Center",,"East Masonville, Franklin Depot, Ivanhoe, Merrickville",NY,"Delaware County",America/New_York,607,NA,US,42.29,-75.25,1130 +13840,"PO BOX",0,Smithboro,,,NY,"Tioga County",America/New_York,607,NA,US,42.03,-76.4,110 +13841,STANDARD,0,"Smithville Flats","Smithvle Flts",,NY,"Chenango County",America/New_York,607,NA,US,42.41,-75.84,430 +13842,STANDARD,0,"South Kortright","S Kortright",,NY,"Delaware County",America/New_York,,NA,US,42.37,-74.72,350 +13843,STANDARD,0,"South New Berlin","S New Berlin","Ambierville, Holmesville, Lathams Corners, Rockwells Mills, Whites Store",NY,"Chenango County",America/New_York,607,NA,US,42.53,-75.35,1430 +13844,STANDARD,0,"South Plymouth","So Plymouth","Kirk, North Pharsalia",NY,"Chenango County",America/New_York,607,NA,US,42.61,-75.67,620 +13845,"PO BOX",0,"Tioga Center",,Tioga,NY,"Tioga County",America/New_York,607,NA,US,42.05,-76.35,325 +13846,STANDARD,0,Treadwell,Franklin,,NY,"Delaware County",America/New_York,607,NA,US,42.34,-75.05,290 +13847,"PO BOX",0,"Trout Creek",,,NY,"Delaware County",America/New_York,607,NA,US,42.18,-75.29,184 +13848,"PO BOX",0,Tunnel,,,NY,"Broome County",America/New_York,607,NA,US,42.21,-75.72,51 +13849,STANDARD,0,Unadilla,,Youngs,NY,"Otsego County",America/New_York,607,NA,US,42.32,-75.31,3680 +13850,STANDARD,0,Vestal,,"Ross Corners, South Vestal, Tracy Creek, Twin Orchards, Vestal Center, Vestal Gardens, Willow Point",NY,"Broome County",America/New_York,607,NA,US,42.08,-76.05,18550 +13851,"PO BOX",0,Vestal,,,NY,"Broome County",America/New_York,607,NA,US,42.08,-76.05,223 +13856,STANDARD,0,Walton,,"Cleaver, Colchester, Hawleys, Northfield, Pineville, Readburn",NY,"Delaware County",America/New_York,607,NA,US,42.16,-75.13,4860 +13859,STANDARD,0,"Wells Bridge",,,NY,"Otsego County",America/New_York,,NA,US,42.37,-75.25,194 +13860,"PO BOX",0,"West Davenport","W Davenport",,NY,"Delaware County",America/New_York,607,NA,US,42.45,-74.94,141 +13861,STANDARD,0,"West Oneonta",,,NY,"Otsego County",America/New_York,,NA,US,42.51,-75.15,570 +13862,STANDARD,0,"Whitney Point",,"Clough Corners, Itaska, Upper Lisle",NY,"Broome County",America/New_York,607,NA,US,42.33,-75.96,3620 +13863,STANDARD,0,Willet,,,NY,"Cortland County",America/New_York,607,NA,US,42.46,-75.91,390 +13864,STANDARD,0,Willseyville,,"Gridleyville, South Danby",NY,"Tioga County",America/New_York,,NA,US,42.29,-76.37,950 +13865,STANDARD,0,Windsor,"W Windsor, West Windsor",,NY,"Broome County",America/New_York,607,NA,US,42.07,-75.64,5210 +13901,STANDARD,0,Binghamton,,"Glen Castle, Kattelville, Nimmonsburg, Port Dickinson",NY,"Broome County",America/New_York,607,NA,US,42.1,-75.91,15160 +13902,"PO BOX",0,Binghamton,,,NY,"Broome County",America/New_York,607,NA,US,42.09,-75.97,779 +13903,STANDARD,0,Binghamton,,"Conklin Forks, East Vestal, Hawleyton, Park Terrace",NY,"Broome County",America/New_York,607,NA,US,42.04,-75.89,14770 +13904,STANDARD,0,Binghamton,,"Hospital, West Colesville",NY,"Broome County",America/New_York,607,NA,US,42.13,-75.82,7140 +13905,STANDARD,0,Binghamton,,"Broadacres, Choconut Center, Dickinson, Hinmans Corners, West Chenango, Westview",NY,"Broome County",America/New_York,607,NA,US,42.17,-75.94,17830 +14001,STANDARD,0,Akron,,Newstead,NY,"Erie County",America/New_York,"585,716",NA,US,43.01,-78.49,8510 +14004,STANDARD,0,Alden,,Townline,NY,"Erie County",America/New_York,"585,716",NA,US,42.89,-78.49,9810 +14005,STANDARD,0,Alexander,,,NY,"Genesee County",America/New_York,585,NA,US,42.9,-78.26,1760 +14006,STANDARD,0,Angola,,,NY,"Erie County",America/New_York,716,NA,US,42.63,-79.02,8070 +14008,STANDARD,0,Appleton,,,NY,"Niagara County",America/New_York,716,NA,US,43.31,-78.63,1320 +14009,STANDARD,0,Arcade,,,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.53,-78.43,4780 +14010,"PO BOX",0,"Athol Springs",,,NY,"Erie County",America/New_York,,NA,US,42.73,-78.84,54 +14011,STANDARD,0,Attica,,Cowlesville,NY,"Wyoming County",America/New_York,585,NA,US,42.86,-78.28,5180 +14012,STANDARD,0,Barker,,,NY,"Niagara County",America/New_York,716,NA,US,43.32,-78.55,2110 +14013,STANDARD,0,Basom,Alabama,,NY,"Genesee County",America/New_York,585,NA,US,43.08,-78.39,1340 +14020,STANDARD,0,Batavia,,Bushville,NY,"Genesee County",America/New_York,585,NA,US,42.99,-78.18,17660 +14021,"PO BOX",0,Batavia,,,NY,"Genesee County",America/New_York,585,NA,US,42.99,-78.18,382 +14024,STANDARD,0,Bliss,,,NY,"Wyoming County",America/New_York,585,NA,US,42.58,-78.24,1400 +14025,STANDARD,0,Boston,,,NY,"Erie County",America/New_York,716,NA,US,42.61,-78.72,2860 +14026,STANDARD,0,Bowmansville,,,NY,"Erie County",America/New_York,,NA,US,42.94,-78.69,790 +14027,"PO BOX",0,Brant,,,NY,"Erie County",America/New_York,,NA,US,42.58,-79.02,310 +14028,STANDARD,0,Burt,,,NY,"Niagara County",America/New_York,716,NA,US,43.31,-78.71,1370 +14029,"PO BOX",0,Centerville,,,NY,"Allegany County",America/New_York,,NA,US,42.47,-78.25,82 +14030,STANDARD,0,Chaffee,,,NY,"Erie County",America/New_York,"585,716",NA,US,42.56,-78.5,1320 +14031,STANDARD,0,Clarence,,,NY,"Erie County",America/New_York,716,NA,US,42.98,-78.6,9570 +14032,STANDARD,0,"Clarence Center","Clarence Ctr",,NY,"Erie County",America/New_York,716,NA,US,43,-78.63,9090 +14033,STANDARD,0,Colden,,,NY,"Erie County",America/New_York,,NA,US,42.65,-78.68,2150 +14034,STANDARD,0,Collins,,Helmuth,NY,"Erie County",America/New_York,,NA,US,42.49,-78.86,1560 +14035,"PO BOX",0,"Collins Center","Collins Ctr",,NY,"Erie County",America/New_York,716,NA,US,42.49,-78.85,121 +14036,STANDARD,0,Corfu,,Pembroke,NY,"Genesee County",America/New_York,585,NA,US,42.96,-78.4,4360 +14037,STANDARD,0,Cowlesville,,,NY,"Wyoming County",America/New_York,585,NA,US,42.8,-78.44,1070 +14038,"PO BOX",0,Crittenden,,,NY,"Erie County",America/New_York,,NA,US,43.02,-78.51,114 +14039,STANDARD,0,Dale,,,NY,"Wyoming County",America/New_York,585,NA,US,42.82,-78.17,130 +14040,STANDARD,0,"Darien Center",,,NY,"Genesee County",America/New_York,585,NA,US,42.89,-78.39,2010 +14041,STANDARD,0,Dayton,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.42,-78.98,200 +14042,STANDARD,0,Delevan,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.49,-78.47,3310 +14043,STANDARD,0,Depew,,,NY,"Erie County",America/New_York,716,NA,US,42.91,-78.7,21390 +14047,STANDARD,0,Derby,,,NY,"Erie County",America/New_York,716,NA,US,42.68,-78.99,5580 +14048,STANDARD,0,Dunkirk,"Van Buren Bay","Chadwick Bay",NY,"Chautauqua County",America/New_York,716,NA,US,42.47,-79.33,11510 +14051,STANDARD,0,"East Amherst",Swormville,"E Amherst",NY,"Erie County",America/New_York,716,NA,US,43.04,-78.7,20310 +14052,STANDARD,0,"East Aurora",,,NY,"Erie County",America/New_York,"585,716",NA,US,42.76,-78.61,16610 +14054,STANDARD,0,"East Bethany",,"E Bethany",NY,"Genesee County",America/New_York,585,NA,US,42.91,-78.13,1250 +14055,STANDARD,0,"East Concord",Concord,"E Concord",NY,"Erie County",America/New_York,716,NA,US,42.55,-78.6,1310 +14056,"PO BOX",0,"East Pembroke",,"E Pembroke",NY,"Genesee County",America/New_York,585,NA,US,43,-78.31,426 +14057,STANDARD,0,Eden,,,NY,"Erie County",America/New_York,716,NA,US,42.65,-78.9,7570 +14058,STANDARD,0,Elba,,,NY,"Genesee County",America/New_York,585,NA,US,43.07,-78.18,1880 +14059,STANDARD,0,Elma,,,NY,"Erie County",America/New_York,,NA,US,42.83,-78.63,9000 +14060,STANDARD,0,"Farmersville Station","Farmersvl Sta",Farmersville,NY,"Cattaraugus County",America/New_York,,NA,US,42.44,-78.29,370 +14061,"PO BOX",0,Farnham,,,NY,"Erie County",America/New_York,,NA,US,42.59,-79.07,320 +14062,STANDARD,0,Forestville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.46,-79.17,2820 +14063,STANDARD,0,Fredonia,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.44,-79.33,9070 +14065,STANDARD,0,Freedom,Sandusky,,NY,"Cattaraugus County",America/New_York,585,NA,US,42.48,-78.32,1520 +14066,STANDARD,0,Gainesville,,,NY,"Wyoming County",America/New_York,585,NA,US,42.64,-78.13,930 +14067,STANDARD,0,Gasport,,,NY,"Niagara County",America/New_York,716,NA,US,43.19,-78.57,4440 +14068,STANDARD,0,Getzville,Amherst,,NY,"Erie County",America/New_York,716,NA,US,43.02,-78.75,6720 +14069,STANDARD,0,Glenwood,,,NY,"Erie County",America/New_York,,NA,US,42.6,-78.63,770 +14070,STANDARD,0,Gowanda,,,NY,"Erie County",America/New_York,716,NA,US,42.46,-78.93,4020 +14072,STANDARD,0,"Grand Island",,,NY,"Erie County",America/New_York,716,NA,US,43.01,-78.96,20490 +14075,STANDARD,0,Hamburg,,,NY,"Erie County",America/New_York,716,NA,US,42.72,-78.83,39880 +14080,STANDARD,0,Holland,,,NY,"Erie County",America/New_York,716,NA,US,42.63,-78.54,3830 +14081,STANDARD,0,Irving,,,NY,"Chautauqua County",America/New_York,,NA,US,42.56,-79.04,2280 +14082,STANDARD,0,"Java Center",,,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.66,-78.39,450 +14083,STANDARD,0,"Java Village",,,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.67,-78.44,157 +14085,STANDARD,0,"Lake View",,Lakeview,NY,"Erie County",America/New_York,716,NA,US,42.71,-78.93,7860 +14086,STANDARD,0,Lancaster,,,NY,"Erie County",America/New_York,716,NA,US,42.9,-78.66,33290 +14091,STANDARD,0,Lawtons,,,NY,"Erie County",America/New_York,,NA,US,42.54,-78.89,1130 +14092,STANDARD,0,Lewiston,"Stela Niagara, Stella Niagara",,NY,"Niagara County",America/New_York,716,NA,US,43.17,-79.04,10080 +14094,STANDARD,0,Lockport,,Pendleton,NY,"Niagara County",America/New_York,716,NA,US,43.16,-78.69,44800 +14095,"PO BOX",0,Lockport,,,NY,"Niagara County",America/New_York,716,NA,US,43.16,-78.69,680 +14098,STANDARD,0,Lyndonville,,,NY,"Orleans County",America/New_York,"585,716",NA,US,43.32,-78.38,2750 +14101,STANDARD,0,Machias,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.38,-78.52,1540 +14102,STANDARD,0,Marilla,,,NY,"Erie County",America/New_York,,NA,US,42.83,-78.55,1190 +14103,STANDARD,0,Medina,,,NY,"Orleans County",America/New_York,"585,716",NA,US,43.21,-78.38,8860 +14105,STANDARD,0,Middleport,,"Royalton, Shelby",NY,"Niagara County",America/New_York,"585,716",NA,US,43.21,-78.47,3900 +14107,"PO BOX",0,"Model City",,,NY,"Niagara County",America/New_York,716,NA,US,43.16,-78.99,41 +14108,STANDARD,0,Newfane,,,NY,"Niagara County",America/New_York,716,NA,US,43.28,-78.69,5110 +14109,"PO BOX",0,"Niagara University","Niagara Univ",,NY,"Niagara County",America/New_York,716,NA,US,43.14,-79.03,44 +14110,"PO BOX",0,"North Boston",,"N Boston",NY,"Erie County",America/New_York,716,NA,US,42.67,-78.78,96 +14111,STANDARD,0,"North Collins",,"N Collins",NY,"Erie County",America/New_York,716,NA,US,42.59,-78.93,2890 +14112,"PO BOX",0,"North Evans",,"N Evans",NY,"Erie County",America/New_York,,NA,US,42.7,-78.94,175 +14113,STANDARD,0,"North Java",,"N Java",NY,"Wyoming County",America/New_York,585,NA,US,42.66,-78.33,710 +14120,STANDARD,0,"North Tonawanda","N Tonawanda","No Tonawanda, Pendleton, Wheatfield",NY,"Niagara County",America/New_York,716,NA,US,43.04,-78.86,39850 +14125,STANDARD,0,Oakfield,,"East Oakfield",NY,"Genesee County",America/New_York,585,NA,US,43.06,-78.27,3260 +14126,"PO BOX",0,Olcott,,,NY,"Niagara County",America/New_York,716,NA,US,43.34,-78.73,742 +14127,STANDARD,0,"Orchard Park",,,NY,"Erie County",America/New_York,716,NA,US,42.76,-78.74,29370 +14129,STANDARD,0,Perrysburg,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.45,-79,1150 +14130,"PO BOX",0,Pike,,,NY,"Wyoming County",America/New_York,585,NA,US,42.55,-78.15,410 +14131,STANDARD,0,Ransomville,,,NY,"Niagara County",America/New_York,716,NA,US,43.23,-78.9,4750 +14132,STANDARD,0,Sanborn,,Pendleton,NY,"Niagara County",America/New_York,716,NA,US,43.14,-78.87,5310 +14133,"PO BOX",0,Sandusky,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.49,-78.38,145 +14134,STANDARD,0,Sardinia,,,NY,"Erie County",America/New_York,716,NA,US,42.53,-78.52,250 +14135,"PO BOX",0,Sheridan,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.49,-79.24,243 +14136,STANDARD,0,"Silver Creek",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.54,-79.16,4250 +14138,STANDARD,0,"South Dayton",,"S Dayton",NY,"Cattaraugus County",America/New_York,716,NA,US,42.36,-79.05,1560 +14139,STANDARD,0,"South Wales",,"S Wales",NY,"Erie County",America/New_York,,NA,US,42.7,-78.53,2210 +14140,"PO BOX",0,"Spring Brook",,Springbrook,NY,"Erie County",America/New_York,,NA,US,42.83,-78.63,114 +14141,STANDARD,0,Springville,,,NY,"Erie County",America/New_York,716,NA,US,42.5,-78.67,6690 +14143,STANDARD,0,Stafford,,,NY,"Genesee County",America/New_York,585,NA,US,42.98,-78.08,1160 +14144,STANDARD,0,"Stella Niagara","Stela Niagara",,NY,"Niagara County",America/New_York,716,NA,US,43.17,-78.99,22 +14145,STANDARD,0,Strykersville,,Sheldon,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.73,-78.42,1400 +14150,STANDARD,0,Tonawanda,,,NY,"Erie County",America/New_York,716,NA,US,43,-78.87,36110 +14151,"PO BOX",0,Tonawanda,,,NY,"Erie County",America/New_York,716,NA,US,43,-78.87,177 +14166,"PO BOX",0,"Van Buren Point","Dunkirk, Van Buren Pt","Van Buren Bay",NY,"Chautauqua County",America/New_York,716,NA,US,42.44,-79.36,0 +14167,STANDARD,0,Varysburg,,,NY,"Wyoming County",America/New_York,585,NA,US,42.73,-78.31,1420 +14168,"PO BOX",0,Versailles,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.52,-78.99,487 +14169,"PO BOX",0,"Wales Center",,,NY,"Erie County",America/New_York,,NA,US,42.77,-78.52,219 +14170,STANDARD,0,"West Falls",,"W Falls",NY,"Erie County",America/New_York,716,NA,US,42.7,-78.67,2180 +14171,STANDARD,0,"West Valley",,"W Valley",NY,"Cattaraugus County",America/New_York,716,NA,US,42.43,-78.62,1730 +14172,STANDARD,0,Wilson,,,NY,"Niagara County",America/New_York,716,NA,US,43.31,-78.82,2920 +14173,"PO BOX",0,Yorkshire,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.53,-78.47,715 +14174,STANDARD,0,Youngstown,,,NY,"Niagara County",America/New_York,716,NA,US,43.24,-79.04,5250 +14201,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.9,-78.89,7970 +14202,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.88,2520 +14203,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,"716,585",NA,US,42.87,-78.87,1280 +14204,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,"585,716",NA,US,42.88,-78.86,5990 +14205,"PO BOX",0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,253 +14206,STANDARD,0,Buffalo,"Cheektowaga, West Seneca",,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.81,16040 +14207,STANDARD,0,Buffalo,,"Town Of Tonawanda",NY,"Erie County",America/New_York,716,NA,US,42.95,-78.9,19830 +14208,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.92,-78.85,7150 +14209,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.91,-78.87,5080 +14210,STANDARD,0,Buffalo,"West Seneca","W Seneca",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,11200 +14211,STANDARD,0,Buffalo,,Cheektowaga,NY,"Erie County",America/New_York,716,NA,US,42.91,-78.82,17840 +14212,STANDARD,0,Buffalo,Sloan,,NY,"Erie County",America/New_York,716,NA,US,42.89,-78.82,9050 +14213,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.92,-78.89,17670 +14214,STANDARD,0,Buffalo,,"University Buffalo",NY,"Erie County",America/New_York,716,NA,US,42.94,-78.84,13320 +14215,STANDARD,0,Buffalo,"Cheektowaga, Snyder",,NY,"Erie County",America/New_York,716,NA,US,42.94,-78.81,30620 +14216,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.95,-78.86,17700 +14217,STANDARD,0,Buffalo,"Kenmore, Tn Of Tona, Tonawanda, Town Of Tonawanda",,NY,"Erie County",America/New_York,716,NA,US,42.97,-78.88,19450 +14218,STANDARD,0,Buffalo,"Lackawanna, West Seneca","W Seneca",NY,"Erie County",America/New_York,716,NA,US,42.82,-78.83,16230 +14219,STANDARD,0,Buffalo,Blasdell,,NY,"Erie County",America/New_York,716,NA,US,42.79,-78.83,10040 +14220,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.85,-78.82,19930 +14221,STANDARD,0,Buffalo,"Amherst, Williamsville",,NY,"Erie County",America/New_York,716,NA,US,42.98,-78.72,50120 +14222,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.92,-78.88,8520 +14223,STANDARD,0,Buffalo,"Kenmore, Tn Of Tona, Tonawanda, Town Of Tonawanda",,NY,"Erie County",America/New_York,716,NA,US,42.97,-78.85,20860 +14224,STANDARD,0,Buffalo,"West Seneca",,NY,"Erie County",America/New_York,716,NA,US,42.84,-78.75,37220 +14225,STANDARD,0,Buffalo,Cheektowaga,,NY,"Erie County",America/New_York,716,NA,US,42.93,-78.75,29670 +14226,STANDARD,0,Buffalo,"Amherst, Eggertsville, Snyder","Snyder Square",NY,"Erie County",America/New_York,716,NA,US,42.97,-78.8,25870 +14227,STANDARD,0,Buffalo,"Cheektowaga, S Cheek, South Cheektowaga","S Cheektowaga",NY,"Erie County",America/New_York,716,NA,US,42.89,-78.73,19810 +14228,STANDARD,0,Buffalo,"Amherst, W Amherst, West Amherst",,NY,"Erie County",America/New_York,716,NA,US,43.04,-78.78,17140 +14231,"PO BOX",0,Buffalo,"Amherst, Williamsville",Bflo,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,444 +14233,UNIQUE,0,Buffalo,,Jingo,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14240,"PO BOX",0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,517 +14241,UNIQUE,0,Buffalo,,"Bflo, Usps Buffalo Amf",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14260,UNIQUE,0,Buffalo,Amherst,"University At Buffalo, University Buffalo",NY,"Erie County",America/New_York,,NA,US,42.88,-78.85,37 +14261,UNIQUE,0,Buffalo,Amherst,"University At Buffalo, University Buffalo",NY,"Erie County",America/New_York,716,NA,US,43.01,-78.79,205 +14263,UNIQUE,0,Buffalo,,"Roswell Park Memorial Instit",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14264,UNIQUE,0,Buffalo,,"Nat Fuel Gas Co",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14265,UNIQUE,0,Buffalo,,"Ind Order Of Foresters",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14267,UNIQUE,0,Buffalo,,"M And T Bank",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14269,UNIQUE,0,Buffalo,,"Harlequin Books",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14270,UNIQUE,0,Buffalo,,"Hsbc Bank, Marine Midland",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14272,UNIQUE,0,Buffalo,,"Silhouette Books",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14273,UNIQUE,0,Buffalo,,"Bflo, Hsbc Atrium, Hsbc Bank",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14276,UNIQUE,0,Buffalo,,Scoreball,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14280,UNIQUE,0,Buffalo,,"Shared Brm",NY,"Erie County",America/New_York,"585,716",NA,US,42.88,-78.85,0 +14301,STANDARD,0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.1,-79.04,8630 +14302,"PO BOX",0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.09,-79.05,432 +14303,STANDARD,0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.09,-79.01,4180 +14304,STANDARD,0,"Niagara Falls",,"N Falls, Wheatfield",NY,"Niagara County",America/New_York,716,NA,US,43.1,-78.95,25330 +14305,STANDARD,0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.12,-79.02,13000 +14410,"PO BOX",0,"Adams Basin",,,NY,"Monroe County",America/New_York,585,NA,US,43.19,-77.86,129 +14411,STANDARD,0,Albion,"Eagle Harbor",,NY,"Orleans County",America/New_York,585,NA,US,43.24,-78.18,9810 +14413,"PO BOX",0,Alton,,,NY,"Wayne County",America/New_York,315,NA,US,43.21,-77.05,292 +14414,STANDARD,0,Avon,,,NY,"Livingston County",America/New_York,585,NA,US,42.91,-77.74,6110 +14415,STANDARD,0,Bellona,,,NY,"Yates County",America/New_York,315,NA,US,42.76,-77.02,187 +14416,STANDARD,0,Bergen,,,NY,"Genesee County",America/New_York,585,NA,US,43.08,-77.94,3490 +14418,STANDARD,0,Branchport,,,NY,"Yates County",America/New_York,315,NA,US,42.59,-77.15,1040 +14420,STANDARD,0,Brockport,,,NY,"Monroe County",America/New_York,585,NA,US,43.21,-77.94,14450 +14422,STANDARD,0,Byron,,,NY,"Genesee County",America/New_York,585,NA,US,43.07,-78.06,1920 +14423,STANDARD,0,Caledonia,,,NY,"Livingston County",America/New_York,585,NA,US,42.97,-77.85,4290 +14424,STANDARD,0,Canandaigua,,,NY,"Ontario County",America/New_York,585,NA,US,42.88,-77.28,24140 +14425,STANDARD,0,Farmington,Canandaigua,,NY,"Ontario County",America/New_York,585,NA,US,42.95,-77.32,12040 +14427,STANDARD,0,Castile,,,NY,"Wyoming County",America/New_York,585,NA,US,42.63,-78.05,1750 +14428,STANDARD,0,Churchville,Clifton,,NY,"Monroe County",America/New_York,585,NA,US,43.1,-77.88,8070 +14429,"PO BOX",0,Clarendon,,,NY,"Orleans County",America/New_York,585,NA,US,43.17,-78.05,108 +14430,"PO BOX",0,Clarkson,,,NY,"Monroe County",America/New_York,585,NA,US,43.21,-77.93,76 +14432,STANDARD,0,"Clifton Springs","Clifton Spgs",,NY,"Ontario County",America/New_York,315,NA,US,42.95,-77.13,4670 +14433,STANDARD,0,Clyde,,,NY,"Wayne County",America/New_York,315,NA,US,43.08,-76.87,3970 +14435,STANDARD,0,Conesus,,,NY,"Livingston County",America/New_York,585,NA,US,42.71,-77.66,2580 +14437,STANDARD,0,Dansville,,,NY,"Livingston County",America/New_York,585,NA,US,42.56,-77.69,7860 +14441,STANDARD,0,Dresden,,,NY,"Yates County",America/New_York,315,NA,US,42.68,-76.96,300 +14443,"PO BOX",0,"East Bloomfield","E Bloomfield",,NY,"Ontario County",America/New_York,,NA,US,42.89,-77.43,115 +14445,STANDARD,0,"East Rochester","E Rochester",,NY,"Monroe County",America/New_York,585,NA,US,43.11,-77.48,6410 +14449,"PO BOX",0,"East Williamson","E Williamson",,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.19,108 +14450,STANDARD,0,Fairport,,,NY,"Monroe County",America/New_York,585,NA,US,43.1,-77.44,40370 +14452,"PO BOX",0,Fancher,,,NY,"Orleans County",America/New_York,585,NA,US,43.25,-78.05,35 +14453,"PO BOX",0,Fishers,,,NY,"Ontario County",America/New_York,,NA,US,42.99,-77.42,220 +14454,STANDARD,0,Geneseo,,,NY,"Livingston County",America/New_York,585,NA,US,42.79,-77.81,5620 +14456,STANDARD,0,Geneva,,,NY,"Ontario County",America/New_York,315,NA,US,42.85,-77,15400 +14461,"PO BOX",0,Gorham,,,NY,"Ontario County",America/New_York,,NA,US,42.8,-77.2,306 +14462,STANDARD,0,Groveland,,,NY,"Livingston County",America/New_York,585,NA,US,42.68,-77.74,550 +14463,"PO BOX",0,Hall,,,NY,"Ontario County",America/New_York,315,NA,US,42.83,-77.07,250 +14464,STANDARD,0,Hamlin,,,NY,"Monroe County",America/New_York,585,NA,US,43.32,-77.93,6450 +14466,STANDARD,0,Hemlock,,,NY,"Ontario County",America/New_York,585,NA,US,42.77,-77.58,1550 +14467,STANDARD,0,Henrietta,,,NY,"Monroe County",America/New_York,585,NA,US,43.04,-77.61,8740 +14468,STANDARD,0,Hilton,,,NY,"Monroe County",America/New_York,585,NA,US,43.28,-77.79,18280 +14469,STANDARD,0,Bloomfield,,"E Bloomfield, East Bloomfield, Holcomb",NY,"Ontario County",America/New_York,585,NA,US,42.87,-77.46,5280 +14470,STANDARD,0,Holley,Hulberton,,NY,"Orleans County",America/New_York,585,NA,US,43.22,-78.02,6870 +14471,STANDARD,0,Honeoye,,,NY,"Ontario County",America/New_York,585,NA,US,42.75,-77.49,2290 +14472,STANDARD,0,"Honeoye Falls",,,NY,"Monroe County",America/New_York,585,NA,US,42.95,-77.59,8380 +14475,STANDARD,0,Ionia,,,NY,"Ontario County",America/New_York,,NA,US,42.94,-77.5,410 +14476,STANDARD,0,Kendall,,,NY,"Orleans County",America/New_York,585,NA,US,43.32,-78.03,2010 +14477,STANDARD,0,Kent,,,NY,"Orleans County",America/New_York,585,NA,US,43.33,-78.13,1360 +14478,STANDARD,0,"Keuka Park","Bluff Point",,NY,"Yates County",America/New_York,315,NA,US,42.58,-77.13,770 +14479,STANDARD,0,Knowlesville,,,NY,"Orleans County",America/New_York,585,NA,US,43.24,-78.31,215 +14480,STANDARD,0,Lakeville,,,NY,"Livingston County",America/New_York,585,NA,US,42.84,-77.71,720 +14481,STANDARD,0,Leicester,,,NY,"Livingston County",America/New_York,585,NA,US,42.77,-77.89,1580 +14482,STANDARD,0,"Le Roy",,Leroy,NY,"Genesee County",America/New_York,585,NA,US,42.97,-77.99,7370 +14485,STANDARD,0,Lima,,,NY,"Livingston County",America/New_York,585,NA,US,42.9,-77.61,3700 +14486,STANDARD,0,Linwood,,,NY,"Livingston County",America/New_York,585,NA,US,42.9,-77.91,280 +14487,STANDARD,0,Livonia,,,NY,"Livingston County",America/New_York,585,NA,US,42.82,-77.66,5410 +14488,"PO BOX",0,"Livonia Center","Livonia Ctr",,NY,"Livingston County",America/New_York,585,NA,US,42.81,-77.65,104 +14489,STANDARD,0,Lyons,,,NY,"Wayne County",America/New_York,315,NA,US,43.06,-76.99,5870 +14502,STANDARD,0,Macedon,,,NY,"Wayne County",America/New_York,315,NA,US,43.06,-77.3,9900 +14504,STANDARD,0,Manchester,,,NY,"Ontario County",America/New_York,,NA,US,42.97,-77.23,1510 +14505,STANDARD,0,Marion,,,NY,"Wayne County",America/New_York,315,NA,US,43.16,-77.17,4710 +14506,STANDARD,0,Mendon,,,NY,"Monroe County",America/New_York,585,NA,US,43.01,-77.52,1260 +14507,STANDARD,0,Middlesex,,,NY,"Yates County",America/New_York,,NA,US,42.7,-77.27,1150 +14508,"PO BOX",0,Morton,,,NY,"Orleans County",America/New_York,585,NA,US,43.32,-78.05,96 +14510,STANDARD,0,"Mount Morris",Tuscarora,,NY,"Livingston County",America/New_York,585,NA,US,42.72,-77.87,4060 +14511,"PO BOX",0,Mumford,,,NY,"Monroe County",America/New_York,585,NA,US,42.99,-77.86,608 +14512,STANDARD,0,Naples,,,NY,"Ontario County",America/New_York,585,NA,US,42.61,-77.4,4130 +14513,STANDARD,0,Newark,"East Palmyra",,NY,"Wayne County",America/New_York,315,NA,US,43.04,-77.09,11370 +14514,STANDARD,0,"North Chili",,,NY,"Monroe County",America/New_York,585,NA,US,43.11,-77.81,6040 +14515,"PO BOX",0,"North Greece",,,NY,"Monroe County",America/New_York,585,NA,US,43.25,-77.73,160 +14516,STANDARD,0,"North Rose",,,NY,"Wayne County",America/New_York,315,NA,US,43.2,-76.91,1950 +14517,STANDARD,0,Nunda,,,NY,"Livingston County",America/New_York,585,NA,US,42.58,-77.93,2270 +14518,"PO BOX",0,"Oaks Corners",,,NY,"Ontario County",America/New_York,,NA,US,42.95,-77.04,98 +14519,STANDARD,0,Ontario,,,NY,"Wayne County",America/New_York,315,NA,US,43.22,-77.31,11590 +14520,"PO BOX",0,"Ontario Center","Ontario Ctr",,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.31,68 +14521,STANDARD,0,Ovid,"Hayt Corners",,NY,"Seneca County",America/New_York,607,NA,US,42.67,-76.82,2410 +14522,STANDARD,0,Palmyra,,,NY,"Wayne County",America/New_York,315,NA,US,43.06,-77.23,8010 +14525,STANDARD,0,Pavilion,,,NY,"Genesee County",America/New_York,585,NA,US,42.87,-77.99,2440 +14526,STANDARD,0,Penfield,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.44,20330 +14527,STANDARD,0,"Penn Yan",,,NY,"Yates County",America/New_York,315,NA,US,42.66,-77.05,10950 +14529,"PO BOX",0,Perkinsville,,,NY,"Steuben County",America/New_York,,NA,US,42.54,-77.64,161 +14530,STANDARD,0,Perry,,,NY,"Wyoming County",America/New_York,585,NA,US,42.71,-78,4450 +14532,STANDARD,0,Phelps,,"West Junius",NY,"Ontario County",America/New_York,315,NA,US,42.95,-77.06,3980 +14533,STANDARD,0,Piffard,Wadsworth,,NY,"Livingston County",America/New_York,585,NA,US,42.84,-77.88,1390 +14534,STANDARD,0,Pittsford,,,NY,"Monroe County",America/New_York,585,NA,US,43.09,-77.51,32750 +14536,STANDARD,0,Portageville,Rossburg,,NY,"Wyoming County",America/New_York,,NA,US,42.55,-78.09,560 +14537,"PO BOX",0,"Port Gibson",,,NY,"Ontario County",America/New_York,,NA,US,43.04,-77.16,261 +14538,"PO BOX",0,Pultneyville,,,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.19,169 +14539,"PO BOX",0,Retsof,,,NY,"Livingston County",America/New_York,585,NA,US,42.83,-77.87,400 +14541,STANDARD,0,Romulus,"Mac Dougall",,NY,"Seneca County",America/New_York,315,NA,US,42.75,-76.83,2080 +14542,"PO BOX",0,Rose,,,NY,"Wayne County",America/New_York,315,NA,US,43.15,-76.86,282 +14543,STANDARD,0,Rush,"Industry, West Rush",,NY,"Monroe County",America/New_York,585,NA,US,42.98,-77.67,3010 +14544,STANDARD,0,Rushville,,,NY,"Yates County",America/New_York,585,NA,US,42.76,-77.22,1720 +14545,STANDARD,0,Scottsburg,Groveland,,NY,"Livingston County",America/New_York,585,NA,US,42.66,-77.7,124 +14546,STANDARD,0,Scottsville,,Wheatland,NY,"Monroe County",America/New_York,585,NA,US,43.02,-77.75,4350 +14547,"PO BOX",0,"Seneca Castle",,,NY,"Ontario County",America/New_York,315,NA,US,42.83,-77.07,257 +14548,STANDARD,0,Shortsville,,,NY,"Ontario County",America/New_York,585,NA,US,42.95,-77.22,3440 +14549,"PO BOX",0,"Silver Lake",,,NY,"Wyoming County",America/New_York,585,NA,US,42.7,-78.02,216 +14550,STANDARD,0,"Silver Springs","Rock Glen, Silver Spgs",,NY,"Wyoming County",America/New_York,585,NA,US,42.66,-78.08,1410 +14551,STANDARD,0,Sodus,"Sodus Center",,NY,"Wayne County",America/New_York,315,NA,US,43.23,-77.06,4540 +14555,STANDARD,0,"Sodus Point",,,NY,"Wayne County",America/New_York,315,NA,US,43.26,-76.99,760 +14556,"PO BOX",0,Sonyea,,,NY,"Livingston County",America/New_York,585,NA,US,42.68,-77.82,19 +14557,"PO BOX",0,"South Byron",,,NY,"Genesee County",America/New_York,585,NA,US,43.04,-78.06,201 +14558,"PO BOX",0,"South Lima",,,NY,"Livingston County",America/New_York,585,NA,US,42.81,-77.65,130 +14559,STANDARD,0,Spencerport,,Ogden,NY,"Monroe County",America/New_York,585,NA,US,43.18,-77.8,17140 +14560,STANDARD,0,Springwater,"Webster Crossing, Webster Xing",,NY,"Livingston County",America/New_York,585,NA,US,42.68,-77.57,1880 +14561,STANDARD,0,Stanley,,,NY,"Ontario County",America/New_York,585,NA,US,42.82,-77.12,2640 +14563,"PO BOX",0,"Union Hill",,,NY,"Wayne County",America/New_York,315,NA,US,43.22,-77.44,48 +14564,STANDARD,0,Victor,,,NY,"Ontario County",America/New_York,585,NA,US,42.98,-77.41,15640 +14568,STANDARD,0,Walworth,,,NY,"Wayne County",America/New_York,315,NA,US,43.14,-77.27,5740 +14569,STANDARD,0,Warsaw,,,NY,"Wyoming County",America/New_York,585,NA,US,42.74,-78.14,5170 +14571,STANDARD,0,Waterport,,,NY,"Orleans County",America/New_York,585,NA,US,43.33,-78.24,1190 +14572,STANDARD,0,Wayland,,,NY,"Steuben County",America/New_York,585,NA,US,42.56,-77.59,4140 +14580,STANDARD,0,Webster,,,NY,"Monroe County",America/New_York,585,NA,US,43.21,-77.42,51030 +14585,STANDARD,0,"West Bloomfield","W Bloomfield",,NY,"Ontario County",America/New_York,,NA,US,42.91,-77.55,200 +14586,STANDARD,0,"West Henrietta","W Henrietta",,NY,"Monroe County",America/New_York,585,NA,US,43.03,-77.69,10950 +14588,"PO BOX",0,Willard,,,NY,"Seneca County",America/New_York,,NA,US,42.68,-76.87,247 +14589,STANDARD,0,Williamson,,,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.15,6950 +14590,STANDARD,0,Wolcott,,,NY,"Wayne County",America/New_York,315,NA,US,43.22,-76.81,4120 +14591,STANDARD,0,Wyoming,,,NY,"Wyoming County",America/New_York,585,NA,US,42.82,-78.08,1480 +14592,"PO BOX",0,York,,,NY,"Livingston County",America/New_York,585,NA,US,42.87,-77.9,409 +14602,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,376 +14603,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,1116 +14604,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,1420 +14605,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.17,-77.6,8310 +14606,STANDARD,0,Rochester,Gates,,NY,"Monroe County",America/New_York,585,NA,US,43.17,-77.7,23480 +14607,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.59,9890 +14608,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.62,8640 +14609,STANDARD,0,Rochester,Irondequoit,,NY,"Monroe County",America/New_York,585,NA,US,43.18,-77.55,34060 +14610,STANDARD,0,Rochester,Brighton,,NY,"Monroe County",America/New_York,585,NA,US,43.14,-77.55,11820 +14611,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.65,12290 +14612,STANDARD,0,Rochester,Greece,,NY,"Monroe County",America/New_York,585,NA,US,43.27,-77.68,31370 +14613,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.18,-77.64,11300 +14614,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.62,350 +14615,STANDARD,0,Rochester,Greece,,NY,"Monroe County",America/New_York,585,NA,US,43.2,-77.65,13810 +14616,STANDARD,0,Rochester,Greece,,NY,"Monroe County",America/New_York,585,NA,US,43.23,-77.66,25690 +14617,STANDARD,0,Rochester,Irondequoit,,NY,"Monroe County",America/New_York,585,NA,US,43.23,-77.59,21990 +14618,STANDARD,0,Rochester,"Loehmanns Plaza, Loehmanns Plz",,NY,"Monroe County",America/New_York,585,NA,US,43.11,-77.55,19990 +14619,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.14,-77.65,11070 +14620,STANDARD,0,Rochester,Brighton,,NY,"Monroe County",America/New_York,585,NA,US,43.13,-77.61,15390 +14621,STANDARD,0,Rochester,,Irondequoit,NY,"Monroe County",America/New_York,585,NA,US,43.19,-77.6,23700 +14622,STANDARD,0,Rochester,Irondequoit,,NY,"Monroe County",America/New_York,585,NA,US,43.22,-77.55,10900 +14623,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.09,-77.64,15340 +14624,STANDARD,0,Rochester,"Gates, Westgate",,NY,"Monroe County",America/New_York,585,NA,US,43.13,-77.73,34850 +14625,STANDARD,0,Rochester,Panorama,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.51,10060 +14626,STANDARD,0,Rochester,"Greece, Ridgemont",,NY,"Monroe County",America/New_York,585,NA,US,43.22,-77.71,27620 +14627,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.13,-77.63,147 +14638,UNIQUE,0,Rochester,,"Bank Of America",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14639,UNIQUE,0,Rochester,,Hsbc,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14642,UNIQUE,0,Rochester,,"Strong Memorial Hospital",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,23 +14643,UNIQUE,0,Rochester,,"Jp Morgan Bank",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14644,UNIQUE,0,Rochester,,Xerox,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14645,UNIQUE,1,Rochester,,Mccurdy's,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14646,UNIQUE,0,Rochester,,Frontier,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14647,UNIQUE,0,Rochester,,"Excellus Bcbs",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14649,UNIQUE,0,Rochester,,"Roch Gas & Elec Corp",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14650,UNIQUE,0,Rochester,,"Kodak Office",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,291 +14651,UNIQUE,0,Rochester,,"Eastman Kodak",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14652,UNIQUE,0,Rochester,,"Kodak Park",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14653,UNIQUE,0,Rochester,,"Kodak Apparatus Division",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14664,UNIQUE,1,Rochester,,"Xerox Corp",NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14673,UNIQUE,1,Rochester,,"Chase Lincoln",NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14683,UNIQUE,1,Rochester,,"Chase Lincoln",NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14692,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,536 +14694,UNIQUE,0,Rochester,,"West Group",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14701,STANDARD,0,Jamestown,"Fluvanna, West Ellicott",,NY,"Chautauqua County",America/New_York,716,NA,US,42.09,-79.23,29330 +14702,"PO BOX",0,Jamestown,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.09,-79.23,541 +14706,STANDARD,0,Allegany,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.09,-78.49,5230 +14707,"PO BOX",0,Allentown,,,NY,"Allegany County",America/New_York,585,NA,US,42.08,-78.06,231 +14708,STANDARD,0,Alma,,,NY,"Allegany County",America/New_York,,NA,US,42.01,-78.02,175 +14709,STANDARD,0,Angelica,,,NY,"Allegany County",America/New_York,585,NA,US,42.3,-78.02,1330 +14710,STANDARD,0,Ashville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.11,-79.42,2970 +14711,STANDARD,0,Belfast,,,NY,"Allegany County",America/New_York,585,NA,US,42.33,-78.12,1550 +14712,STANDARD,0,"Bemus Point",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.16,-79.39,2830 +14714,STANDARD,0,"Black Creek",,,NY,"Allegany County",America/New_York,585,NA,US,42.29,-78.24,370 +14715,STANDARD,0,Bolivar,,"Alma, South Bolivar",NY,"Allegany County",America/New_York,585,NA,US,42.06,-78.17,2230 +14716,STANDARD,0,Brocton,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.38,-79.44,1810 +14717,STANDARD,0,Caneadea,,,NY,"Allegany County",America/New_York,585,NA,US,42.35,-78.21,480 +14718,STANDARD,0,Cassadaga,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.34,-79.31,1590 +14719,STANDARD,0,Cattaraugus,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.32,-78.86,2620 +14720,"PO BOX",0,Celoron,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.11,-79.28,763 +14721,STANDARD,0,Ceres,,,NY,"Allegany County",America/New_York,"585,716",NA,US,42,-78.27,190 +14722,"PO BOX",0,Chautauqua,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.21,-79.47,219 +14723,STANDARD,0,"Cherry Creek",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.29,-79.1,990 +14724,STANDARD,0,Clymer,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.05,-79.66,2360 +14726,STANDARD,0,"Conewango Valley","Conewango Vly",,NY,"Cattaraugus County",America/New_York,716,NA,US,42.26,-79.01,890 +14727,STANDARD,0,Cuba,,,NY,"Allegany County",America/New_York,"585,716",NA,US,42.21,-78.27,4290 +14728,STANDARD,0,Dewittville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.24,-79.4,900 +14729,STANDARD,0,"East Otto",,,NY,"Cattaraugus County",America/New_York,,NA,US,42.4,-78.74,700 +14730,"PO BOX",0,"East Randolph",,,NY,"Cattaraugus County",America/New_York,,NA,US,42.17,-78.95,108 +14731,STANDARD,0,Ellicottville,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.27,-78.67,1230 +14732,"PO BOX",0,Ellington,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.23,-79.12,295 +14733,STANDARD,0,Falconer,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.11,-79.19,3310 +14735,STANDARD,0,Fillmore,,,NY,"Allegany County",America/New_York,585,NA,US,42.46,-78.11,2220 +14736,STANDARD,0,"Findley Lake",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.14,-79.75,400 +14737,STANDARD,0,Franklinville,,,NY,"Cattaraugus County",America/New_York,"585,716",NA,US,42.33,-78.45,3260 +14738,STANDARD,0,Frewsburg,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.05,-79.16,3150 +14739,STANDARD,0,Friendship,,,NY,"Allegany County",America/New_York,585,NA,US,42.2,-78.14,2260 +14740,STANDARD,0,Gerry,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.22,-79.18,1050 +14741,STANDARD,0,"Great Valley",,Humphrey,NY,"Cattaraugus County",America/New_York,,NA,US,42.21,-78.59,1670 +14742,"PO BOX",0,Greenhurst,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.12,-79.31,305 +14743,STANDARD,0,Hinsdale,Ischua,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.16,-78.38,1520 +14744,STANDARD,0,Houghton,,,NY,"Allegany County",America/New_York,585,NA,US,42.42,-78.16,1010 +14745,"PO BOX",0,Hume,,,NY,"Allegany County",America/New_York,,NA,US,42.47,-78.14,139 +14747,STANDARD,0,Kennedy,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.14,-79.07,1940 +14748,STANDARD,0,"Kill Buck",,Killbuck,NY,"Cattaraugus County",America/New_York,716,NA,US,42.14,-78.61,550 +14750,STANDARD,0,Lakewood,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.1,-79.32,4280 +14751,"PO BOX",0,Leon,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.3,-79,96 +14752,"PO BOX",0,"Lily Dale",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.35,-79.32,159 +14753,STANDARD,0,Limestone,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.02,-78.63,860 +14754,STANDARD,0,"Little Genesee","Little Genese",,NY,"Allegany County",America/New_York,585,NA,US,42.02,-78.23,550 +14755,STANDARD,0,"Little Valley",,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.24,-78.79,2200 +14756,"PO BOX",0,"Maple Springs",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.2,-79.42,111 +14757,STANDARD,0,Mayville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.25,-79.5,2530 +14758,"PO BOX",0,Niobe,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.01,-79.45,0 +14760,STANDARD,0,Olean,"Knapp Creek",,NY,"Cattaraugus County",America/New_York,"585,716",NA,US,42.08,-78.43,14330 +14766,"PO BOX",0,Otto,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.39,-78.83,131 +14767,STANDARD,0,Panama,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.07,-79.48,1700 +14769,STANDARD,0,Portland,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.37,-79.47,750 +14770,STANDARD,0,Portville,,,NY,"Cattaraugus County",America/New_York,"585,716",NA,US,42.03,-78.33,2510 +14772,STANDARD,0,Randolph,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.16,-78.97,3260 +14774,"PO BOX",0,Richburg,,,NY,"Allegany County",America/New_York,,NA,US,42.09,-78.15,305 +14775,STANDARD,0,Ripley,,Forsyth,NY,"Chautauqua County",America/New_York,716,NA,US,42.26,-79.71,2070 +14777,STANDARD,0,Rushford,,,NY,"Allegany County",America/New_York,"585,716",NA,US,42.39,-78.27,520 +14778,"PO BOX",0,"Saint Bonaventure","St Bonas","St Bonaventure",NY,"Cattaraugus County",America/New_York,,NA,US,42.08,-78.48,43 +14779,STANDARD,0,Salamanca,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.16,-78.72,5390 +14781,STANDARD,0,Sherman,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.16,-79.59,1820 +14782,STANDARD,0,Sinclairville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.26,-79.25,1930 +14783,"PO BOX",0,Steamburg,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.08,-78.89,366 +14784,STANDARD,0,Stockton,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.31,-79.38,740 +14785,"PO BOX",0,Stow,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.15,-79.41,174 +14786,"PO BOX",0,"West Clarksville","W Clarksville",,NY,"Allegany County",America/New_York,,NA,US,42.13,-78.25,222 +14787,STANDARD,0,Westfield,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.32,-79.57,4010 +14788,"PO BOX",0,"Westons Mills",,"Weston Mills",NY,"Cattaraugus County",America/New_York,,NA,US,42.06,-78.38,248 +14801,STANDARD,0,Addison,,,NY,"Steuben County",America/New_York,607,NA,US,42.1,-77.23,4600 +14802,STANDARD,0,Alfred,,,NY,"Allegany County",America/New_York,607,NA,US,42.25,-77.79,620 +14803,STANDARD,0,"Alfred Station","Alfred Sta",,NY,"Allegany County",America/New_York,,NA,US,42.24,-77.81,1070 +14804,STANDARD,0,Almond,,,NY,"Allegany County",America/New_York,607,NA,US,42.32,-77.85,1170 +14805,STANDARD,0,Alpine,,,NY,"Schuyler County",America/New_York,607,NA,US,42.31,-76.72,980 +14806,STANDARD,0,Andover,,,NY,"Allegany County",America/New_York,607,NA,US,42.15,-77.79,1880 +14807,STANDARD,0,Arkport,,,NY,"Steuben County",America/New_York,607,NA,US,42.39,-77.69,2560 +14808,STANDARD,0,Atlanta,"N Cohocton, North Cohocton",,NY,"Steuben County",America/New_York,585,NA,US,42.56,-77.47,520 +14809,STANDARD,0,Avoca,Wallace,,NY,"Steuben County",America/New_York,607,NA,US,42.4,-77.42,2030 +14810,STANDARD,0,Bath,"Veterans Administration, Veterans Admn",,NY,"Steuben County",America/New_York,607,NA,US,42.33,-77.31,9120 +14812,STANDARD,0,"Beaver Dams",,,NY,"Schuyler County",America/New_York,,NA,US,42.29,-76.96,2850 +14813,STANDARD,0,Belmont,,,NY,"Allegany County",America/New_York,585,NA,US,42.22,-78.03,1860 +14814,STANDARD,0,"Big Flats",,,NY,"Chemung County",America/New_York,607,NA,US,42.13,-76.93,1910 +14815,STANDARD,0,Bradford,,,NY,"Schuyler County",America/New_York,607,NA,US,42.37,-77.1,800 +14816,STANDARD,0,Breesport,,,NY,"Chemung County",America/New_York,607,NA,US,42.17,-76.73,610 +14817,STANDARD,0,Brooktondale,,,NY,"Tompkins County",America/New_York,607,NA,US,42.38,-76.39,2200 +14818,STANDARD,0,Burdett,,,NY,"Schuyler County",America/New_York,607,NA,US,42.41,-76.84,1590 +14819,STANDARD,0,Cameron,,,NY,"Steuben County",America/New_York,607,NA,US,42.19,-77.4,540 +14820,STANDARD,0,"Cameron Mills",,,NY,"Steuben County",America/New_York,607,NA,US,42.18,-77.36,580 +14821,STANDARD,0,Campbell,,,NY,"Steuben County",America/New_York,607,NA,US,42.23,-77.19,2860 +14822,STANDARD,0,Canaseraga,,,NY,"Allegany County",America/New_York,607,NA,US,42.46,-77.77,920 +14823,STANDARD,0,Canisteo,,,NY,"Steuben County",America/New_York,607,NA,US,42.27,-77.6,3150 +14824,STANDARD,0,Cayuta,,,NY,"Schuyler County",America/New_York,607,NA,US,42.28,-76.69,600 +14825,STANDARD,0,Chemung,,,NY,"Chemung County",America/New_York,607,NA,US,42.06,-76.62,670 +14826,STANDARD,0,Cohocton,,,NY,"Steuben County",America/New_York,585,NA,US,42.5,-77.5,1730 +14827,"PO BOX",0,"Coopers Plains","Coopers Plns",,NY,"Steuben County",America/New_York,,NA,US,42.18,-77.14,278 +14830,STANDARD,0,Corning,"South Corning",,NY,"Steuben County",America/New_York,607,NA,US,42.14,-77.05,16860 +14831,UNIQUE,0,Corning,,"Corning Inc",NY,"Steuben County",America/New_York,607,NA,US,42.14,-77.05,25 +14836,STANDARD,0,Dalton,,,NY,"Livingston County",America/New_York,585,NA,US,42.54,-77.89,870 +14837,STANDARD,0,Dundee,,,NY,"Yates County",America/New_York,607,NA,US,42.52,-76.97,4430 +14838,STANDARD,0,Erin,,,NY,"Chemung County",America/New_York,607,NA,US,42.18,-76.67,1670 +14839,STANDARD,0,Greenwood,,,NY,"Steuben County",America/New_York,607,NA,US,42.13,-77.64,590 +14840,STANDARD,0,Hammondsport,,,NY,"Steuben County",America/New_York,607,NA,US,42.4,-77.22,2620 +14841,STANDARD,0,Hector,Valois,,NY,"Schuyler County",America/New_York,,NA,US,42.5,-76.87,730 +14842,STANDARD,0,Himrod,,,NY,"Yates County",America/New_York,315,NA,US,42.58,-76.95,700 +14843,STANDARD,0,Hornell,"North Hornell",,NY,"Steuben County",America/New_York,607,NA,US,42.32,-77.66,10420 +14845,STANDARD,0,Horseheads,,,NY,"Chemung County",America/New_York,607,NA,US,42.16,-76.82,18630 +14846,STANDARD,0,Hunt,,,NY,"Livingston County",America/New_York,585,NA,US,42.52,-77.98,580 +14847,STANDARD,0,Interlaken,,,NY,"Seneca County",America/New_York,607,NA,US,42.61,-76.72,2080 +14850,STANDARD,0,Ithaca,,"Ithaca Clg, Ithaca College",NY,"Tompkins County",America/New_York,607,NA,US,42.44,-76.5,38440 +14851,"PO BOX",0,Ithaca,,,NY,"Tompkins County",America/New_York,607,NA,US,42.44,-76.5,442 +14852,"PO BOX",0,Ithaca,,,NY,"Tompkins County",America/New_York,607,NA,US,42.44,-76.5,377 +14853,STANDARD,0,Ithaca,,,NY,"Tompkins County",America/New_York,607,NA,US,42.45,-76.48,130 +14854,"PO BOX",0,Jacksonville,,,NY,"Tompkins County",America/New_York,607,NA,US,42.51,-76.61,209 +14855,STANDARD,0,Jasper,,,NY,"Steuben County",America/New_York,607,NA,US,42.12,-77.5,930 +14856,"PO BOX",0,Kanona,,,NY,"Steuben County",America/New_York,,NA,US,42.38,-77.37,229 +14857,"PO BOX",0,Lakemont,,,NY,"Yates County",America/New_York,607,NA,US,42.51,-76.92,104 +14858,STANDARD,0,Lindley,,,NY,"Steuben County",America/New_York,607,NA,US,42.02,-77.14,1430 +14859,STANDARD,0,Lockwood,,,NY,"Tioga County",America/New_York,607,NA,US,42.09,-76.55,1000 +14860,STANDARD,0,Lodi,,,NY,"Seneca County",America/New_York,607,NA,US,42.61,-76.82,920 +14861,STANDARD,0,Lowman,,,NY,"Chemung County",America/New_York,607,NA,US,42.02,-76.72,1120 +14863,"PO BOX",0,Mecklenburg,,,NY,"Schuyler County",America/New_York,607,NA,US,42.45,-76.71,178 +14864,STANDARD,0,Millport,,,NY,"Chemung County",America/New_York,607,NA,US,42.26,-76.83,1040 +14865,STANDARD,0,"Montour Falls",,,NY,"Schuyler County",America/New_York,607,NA,US,42.34,-76.84,2080 +14867,STANDARD,0,Newfield,,,NY,"Tompkins County",America/New_York,607,NA,US,42.36,-76.59,4870 +14869,STANDARD,0,Odessa,,,NY,"Schuyler County",America/New_York,607,NA,US,42.33,-76.78,1100 +14870,STANDARD,0,"Painted Post",,,NY,"Steuben County",America/New_York,,NA,US,42.16,-77.09,8540 +14871,STANDARD,0,"Pine City",,,NY,"Chemung County",America/New_York,607,NA,US,42.03,-76.86,3850 +14872,STANDARD,0,"Pine Valley",,,NY,"Chemung County",America/New_York,607,NA,US,42.24,-76.87,510 +14873,STANDARD,0,Prattsburgh,,,NY,"Steuben County",America/New_York,607,NA,US,42.52,-77.29,2040 +14874,STANDARD,0,Pulteney,,,NY,"Steuben County",America/New_York,607,NA,US,42.53,-77.18,180 +14876,"PO BOX",0,"Reading Center","Reading Ctr",,NY,"Schuyler County",America/New_York,607,NA,US,42.43,-76.93,175 +14877,STANDARD,0,Rexville,,,NY,"Steuben County",America/New_York,,NA,US,42.08,-77.66,460 +14878,STANDARD,0,"Rock Stream",,,NY,"Schuyler County",America/New_York,,NA,US,42.47,-76.92,650 +14879,STANDARD,0,Savona,,,NY,"Steuben County",America/New_York,607,NA,US,42.28,-77.22,1960 +14880,STANDARD,0,Scio,,,NY,"Allegany County",America/New_York,,NA,US,42.17,-77.97,1340 +14881,STANDARD,0,"Slaterville Springs","Slatervle Spg",,NY,"Tompkins County",America/New_York,607,NA,US,42.4,-76.36,220 +14882,STANDARD,0,Lansing,Ithaca,,NY,"Tompkins County",America/New_York,607,NA,US,42.58,-76.55,3540 +14883,STANDARD,0,Spencer,"West Danby",,NY,"Tioga County",America/New_York,607,NA,US,42.21,-76.49,3630 +14884,STANDARD,0,Swain,,,NY,"Allegany County",America/New_York,607,NA,US,42.48,-77.88,300 +14885,STANDARD,0,Troupsburg,,,NY,"Steuben County",America/New_York,607,NA,US,42.04,-77.54,600 +14886,STANDARD,0,Trumansburg,,,NY,"Tompkins County",America/New_York,607,NA,US,42.54,-76.66,5840 +14887,"PO BOX",0,Tyrone,,,NY,"Schuyler County",America/New_York,607,NA,US,42.4,-77.05,120 +14889,STANDARD,0,"Van Etten",,,NY,"Chemung County",America/New_York,607,NA,US,42.19,-76.55,1340 +14891,STANDARD,0,"Watkins Glen",,,NY,"Schuyler County",America/New_York,607,NA,US,42.38,-76.87,3610 +14892,STANDARD,0,Waverly,,,NY,"Tioga County",America/New_York,607,NA,US,42.01,-76.52,6520 +14893,"PO BOX",0,Wayne,,,NY,"Steuben County",America/New_York,607,NA,US,42.47,-77.11,145 +14894,STANDARD,0,Wellsburg,,,NY,"Chemung County",America/New_York,607,NA,US,42.01,-76.72,1160 +14895,STANDARD,0,Wellsville,,,NY,"Allegany County",America/New_York,585,NA,US,42.12,-77.94,7270 +14897,STANDARD,0,Whitesville,,,NY,"Allegany County",America/New_York,607,NA,US,42.03,-77.8,740 +14898,STANDARD,0,Woodhull,,,NY,"Steuben County",America/New_York,607,NA,US,42.08,-77.4,1220 +14901,STANDARD,0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.09,-76.75,9660 +14902,"PO BOX",0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.08,-76.8,399 +14903,STANDARD,0,Elmira,"Elmira Heights, Elmira Hgts, Elmira Hts",,NY,"Chemung County",America/New_York,607,NA,US,42.13,-76.87,6650 +14904,STANDARD,0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.08,-76.8,12270 +14905,STANDARD,0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.09,-76.84,7740 +14925,STANDARD,1,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.08,-76.8,0 +15001,STANDARD,0,Aliquippa,"Macarthur, W Aliquippa, West Aliquippa","Aliq, Mac Arthur",PA,"Beaver County",America/New_York,724,NA,US,40.61,-80.25,28530 +15003,STANDARD,0,Ambridge,"Fair Oaks",,PA,"Beaver County",America/New_York,724,NA,US,40.59,-80.22,9750 +15004,"PO BOX",0,Atlasburg,,,PA,"Washington County",America/New_York,724,NA,US,40.35,-80.38,355 +15005,STANDARD,0,Baden,,,PA,"Beaver County",America/New_York,724,NA,US,40.63,-80.22,8750 +15006,"PO BOX",0,Bairdford,,,PA,"Allegheny County",America/New_York,724,NA,US,40.63,-79.88,359 +15007,STANDARD,0,Bakerstown,,,PA,"Allegheny County",America/New_York,724,NA,US,40.65,-79.93,360 +15009,STANDARD,0,Beaver,"Vanport, W Bridgewater, West Bridgewater",,PA,"Beaver County",America/New_York,"412,724",NA,US,40.69,-80.3,14200 +15010,STANDARD,0,"Beaver Falls","Patterson Heights, Patterson Hts, Racine",,PA,"Beaver County",America/New_York,"412,724",NA,US,40.76,-80.32,24190 +15012,STANDARD,0,"Belle Vernon","Belle Vrn Br, N Bell Vernon, N Belle Vernon, N Belle Vrn, North Belle Vernon, Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.12,-79.86,14060 +15014,STANDARD,0,Brackenridge,,,PA,"Allegheny County",America/New_York,878,NA,US,40.61,-79.74,2650 +15015,STANDARD,0,Bradfordwoods,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.63,-80.08,1290 +15017,STANDARD,0,Bridgeville,,,PA,"Allegheny County",America/New_York,412,NA,US,40.35,-80.1,14880 +15018,STANDARD,0,"Buena Vista",,,PA,"Allegheny County",America/New_York,412,NA,US,40.27,-79.8,750 +15019,STANDARD,0,Bulger,,,PA,"Washington County",America/New_York,724,NA,US,40.42,-80.35,1350 +15020,"PO BOX",0,Bunola,,,PA,"Allegheny County",America/New_York,412,NA,US,40.23,-79.95,263 +15021,STANDARD,0,Burgettstown,"Eldersville, Paris",Burgettstn,PA,"Washington County",America/New_York,724,NA,US,40.38,-80.39,6210 +15022,STANDARD,0,Charleroi,"N Charleroi, North Charleroi",,PA,"Washington County",America/New_York,724,NA,US,40.13,-79.9,8600 +15024,STANDARD,0,Cheswick,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.54,-79.8,7970 +15025,STANDARD,0,Clairton,"Floreffe, Jefferson Hills, Jefferson Hls, Large",,PA,"Allegheny County",America/New_York,412,NA,US,40.29,-79.88,15150 +15026,STANDARD,0,Clinton,,,PA,"Beaver County",America/New_York,724,NA,US,40.51,-80.34,4040 +15027,STANDARD,0,Conway,,,PA,"Beaver County",America/New_York,724,NA,US,40.66,-80.24,2060 +15028,"PO BOX",0,Coulters,,,PA,"Allegheny County",America/New_York,878,NA,US,40.31,-79.79,170 +15030,STANDARD,0,Creighton,,,PA,"Allegheny County",America/New_York,724,NA,US,40.58,-79.78,850 +15031,STANDARD,0,Cuddy,,,PA,"Allegheny County",America/New_York,412,NA,US,40.35,-80.16,500 +15032,"PO BOX",0,Curtisville,,,PA,"Allegheny County",America/New_York,724,NA,US,40.64,-79.84,244 +15033,STANDARD,0,Donora,,,PA,"Washington County",America/New_York,724,NA,US,40.17,-79.86,3550 +15034,STANDARD,0,Dravosburg,,,PA,"Allegheny County",America/New_York,412,NA,US,40.35,-79.89,1350 +15035,STANDARD,0,"East Mc Keesport","E Mckeesport","E Mc Keesport, East Mckeesport",PA,"Allegheny County",America/New_York,878,NA,US,40.38,-79.81,1770 +15037,STANDARD,0,Elizabeth,,,PA,"Allegheny County",America/New_York,412,NA,US,40.27,-79.88,9730 +15038,"PO BOX",0,Elrama,,,PA,"Washington County",America/New_York,724,NA,US,40.25,-79.93,379 +15042,STANDARD,0,Freedom,,,PA,"Beaver County",America/New_York,724,NA,US,40.68,-80.25,7520 +15043,STANDARD,0,Georgetown,,,PA,"Beaver County",America/New_York,724,NA,US,40.64,-80.49,1930 +15044,STANDARD,0,Gibsonia,,,PA,"Allegheny County",America/New_York,724,NA,US,40.63,-79.94,29140 +15045,STANDARD,0,Glassport,,,PA,"Allegheny County",America/New_York,878,NA,US,40.32,-79.88,3500 +15046,STANDARD,0,Crescent,Glenwillard,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.55,-80.23,2360 +15047,"PO BOX",0,Greenock,,,PA,"Allegheny County",America/New_York,878,NA,US,40.32,-79.81,378 +15049,STANDARD,0,Harwick,,,PA,"Allegheny County",America/New_York,724,NA,US,40.56,-79.81,860 +15050,STANDARD,0,Hookstown,,,PA,"Beaver County",America/New_York,724,NA,US,40.59,-80.47,2430 +15051,STANDARD,0,Indianola,,,PA,"Allegheny County",America/New_York,412,NA,US,40.56,-79.87,360 +15052,STANDARD,0,Industry,,,PA,"Beaver County",America/New_York,724,NA,US,40.65,-80.4,3060 +15053,STANDARD,0,Joffre,,,PA,"Washington County",America/New_York,724,NA,US,40.38,-80.36,200 +15054,"PO BOX",0,Langeloth,,,PA,"Washington County",America/New_York,724,NA,US,40.36,-80.41,589 +15055,STANDARD,0,Lawrence,,,PA,"Washington County",America/New_York,724,NA,US,40.31,-80.12,1280 +15056,STANDARD,0,Leetsdale,,,PA,"Allegheny County",America/New_York,412,NA,US,40.56,-80.21,950 +15057,STANDARD,0,"Mc Donald",,Mcdonald,PA,"Washington County",America/New_York,724,NA,US,40.37,-80.23,15970 +15059,STANDARD,0,Midland,,,PA,"Beaver County",America/New_York,724,NA,US,40.63,-80.45,3300 +15060,"PO BOX",0,Midway,,,PA,"Washington County",America/New_York,724,NA,US,40.37,-80.29,991 +15061,STANDARD,0,Monaca,,,PA,"Beaver County",America/New_York,724,NA,US,40.68,-80.27,11300 +15062,STANDARD,0,Monessen,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.15,-79.88,5570 +15063,STANDARD,0,Monongahela,,,PA,"Washington County",America/New_York,724,NA,US,40.19,-79.92,9830 +15064,STANDARD,0,Morgan,,,PA,"Allegheny County",America/New_York,412,NA,US,40.36,-80.15,310 +15065,STANDARD,0,"Natrona Heights","Natrona Hts",,PA,"Allegheny County",America/New_York,878,NA,US,40.64,-79.73,9890 +15066,STANDARD,0,"New Brighton",,,PA,"Beaver County",America/New_York,"412,724",NA,US,40.73,-80.3,10370 +15067,STANDARD,0,"New Eagle",,Courtney,PA,"Washington County",America/New_York,724,NA,US,40.2,-79.95,1880 +15068,STANDARD,0,"New Kensington","Arnold, Barking, Lower Burrell, New Kensingtn, Parnassus",,PA,"Westmoreland County",America/New_York,724,NA,US,40.56,-79.75,32940 +15069,UNIQUE,0,"New Kensington","New Kensingtn","Alcoa Center",PA,"Westmoreland County",America/New_York,724,NA,US,40.56,-79.75,0 +15071,STANDARD,0,Oakdale,Noblestown,,PA,"Allegheny County",America/New_York,"724,412",NA,US,40.39,-80.18,10700 +15072,"PO BOX",0,Pricedale,"Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.14,-79.86,146 +15074,STANDARD,0,Rochester,,,PA,"Beaver County",America/New_York,"412,724,878",NA,US,40.7,-80.28,7600 +15075,"PO BOX",0,"Rural Ridge",,,PA,"Allegheny County",America/New_York,878,NA,US,40.59,-79.83,207 +15076,STANDARD,0,Russellton,,,PA,"Allegheny County",America/New_York,724,NA,US,40.61,-79.83,810 +15077,"PO BOX",0,Shippingport,,,PA,"Beaver County",America/New_York,724,NA,US,40.62,-80.42,188 +15078,STANDARD,0,Slovan,,,PA,"Washington County",America/New_York,724,NA,US,40.36,-80.38,430 +15081,"PO BOX",0,"South Heights",,,PA,"Beaver County",America/New_York,724,NA,US,40.57,-80.24,459 +15082,"PO BOX",0,Sturgeon,,,PA,"Allegheny County",America/New_York,878,NA,US,40.38,-80.21,386 +15083,STANDARD,0,Sutersville,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.26,-79.79,900 +15084,STANDARD,0,Tarentum,,,PA,"Allegheny County",America/New_York,724,NA,US,40.6,-79.76,8360 +15085,STANDARD,0,Trafford,,,PA,"Westmoreland County",America/New_York,412,NA,US,40.38,-79.75,7480 +15086,STANDARD,0,Warrendale,,,PA,"Allegheny County",America/New_York,724,NA,US,40.67,-80.11,560 +15087,"PO BOX",0,Webster,"Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.19,-79.85,238 +15088,"PO BOX",0,"West Elizabeth","W Elizabeth",,PA,"Allegheny County",America/New_York,878,NA,US,40.27,-79.9,631 +15089,STANDARD,0,"West Newton","Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.2,-79.76,5560 +15090,STANDARD,0,Wexford,,,PA,"Allegheny County",America/New_York,"724,878",NA,US,40.63,-80.05,23900 +15091,"PO BOX",0,Wildwood,,,PA,"Allegheny County",America/New_York,412,NA,US,40.57,-79.95,115 +15095,"PO BOX",0,Warrendale,,"Bulk Mail Ctr",PA,"Allegheny County",America/New_York,724,NA,US,40.64,-80.09,0 +15096,UNIQUE,0,Warrendale,,"Soc Auto Engineers",PA,"Allegheny County",America/New_York,724,NA,US,40.64,-80.09,0 +15101,STANDARD,0,"Allison Park",,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.57,-79.95,24110 +15102,STANDARD,0,"Bethel Park",,,PA,"Allegheny County",America/New_York,412,NA,US,40.32,-80.03,28950 +15104,STANDARD,0,Braddock,Rankin,,PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.86,6020 +15106,STANDARD,0,Carnegie,Heidelberg,"Collier Township, Collier Twp, Rennerdale",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-80.08,16810 +15108,STANDARD,0,Coraopolis,"Moon Township, Moon Twp","Carpolis, Coropolis",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-80.16,37850 +15110,STANDARD,0,Duquesne,,,PA,"Allegheny County",America/New_York,412,NA,US,40.37,-79.85,3950 +15112,STANDARD,0,"East Pittsburgh","E Pittsburgh","East Pgh",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.84,2650 +15116,STANDARD,0,Glenshaw,,,PA,"Allegheny County",America/New_York,412,NA,US,40.52,-79.95,13950 +15120,STANDARD,0,Homestead,"Munhall, W Homestead, West Homestead",,PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.9,15350 +15122,STANDARD,0,"West Mifflin",Pittsburgh,"W Mifflin/Pleasant Hills",PA,"Allegheny County",America/New_York,412,NA,US,40.36,-79.9,17260 +15123,STANDARD,0,"West Mifflin",,"W Mifflin/Pleasant Hills, West Mifflin Century Mall",PA,"Allegheny County",America/New_York,412,NA,US,40.35,-79.9,0 +15126,STANDARD,0,Imperial,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.45,-80.25,6730 +15127,"PO BOX",0,Ingomar,,,PA,"Allegheny County",America/New_York,878,NA,US,40.56,-80.02,283 +15129,STANDARD,0,"South Park",Library,,PA,"Allegheny County",America/New_York,878,NA,US,40.29,-79.99,10260 +15131,STANDARD,0,Mckeesport,"White Oak",,PA,"Allegheny County",America/New_York,412,NA,US,40.34,-79.8,7280 +15132,STANDARD,0,Mckeesport,,,PA,"Allegheny County",America/New_York,412,NA,US,40.33,-79.83,14700 +15133,STANDARD,0,Mckeesport,,"Port Vue",PA,"Allegheny County",America/New_York,412,NA,US,40.33,-79.86,5460 +15134,"PO BOX",0,Mckeesport,,,PA,"Allegheny County",America/New_York,412,NA,US,40.33,-79.83,237 +15135,STANDARD,0,Mckeesport,Boston,,PA,"Allegheny County",America/New_York,412,NA,US,40.31,-79.81,4510 +15136,STANDARD,0,"Mc Kees Rocks",,"Mckees Rocks",PA,"Allegheny County",America/New_York,412,NA,US,40.47,-80.1,20030 +15137,STANDARD,0,"North Versailles","N Versailles",,PA,"Allegheny County",America/New_York,878,NA,US,40.37,-79.8,8540 +15139,STANDARD,0,Oakmont,,,PA,"Allegheny County",America/New_York,412,NA,US,40.52,-79.84,6080 +15140,STANDARD,0,Pitcairn,Monroeville,,PA,"Allegheny County",America/New_York,412,NA,US,40.41,-79.78,2360 +15142,STANDARD,0,Presto,,,PA,"Allegheny County",America/New_York,412,NA,US,40.38,-80.12,1860 +15143,STANDARD,0,Sewickley,Edgeworth,,PA,"Allegheny County",America/New_York,412,NA,US,40.57,-80.15,21220 +15144,STANDARD,0,Springdale,,,PA,"Allegheny County",America/New_York,724,NA,US,40.55,-79.78,3580 +15145,STANDARD,0,"Turtle Creek",,,PA,"Allegheny County",America/New_York,412,NA,US,40.42,-79.82,5720 +15146,STANDARD,0,Monroeville,,,PA,"Allegheny County",America/New_York,412,NA,US,40.42,-79.76,25680 +15147,STANDARD,0,Verona,,,PA,"Allegheny County",America/New_York,412,NA,US,40.5,-79.84,13980 +15148,STANDARD,0,Wilmerding,Wall,,PA,"Allegheny County",America/New_York,412,NA,US,40.39,-79.81,1860 +15201,STANDARD,0,Pittsburgh,Arsenal,"Pgh, Pitt, Pitts",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.47,-79.95,10560 +15202,STANDARD,0,Pittsburgh,"Avalon, Bellevue, Bellvue, Ben Avon, Emsworth","Ben Avon Heights, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-80.07,17220 +15203,STANDARD,0,Pittsburgh,Carson,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.43,-79.97,6410 +15204,STANDARD,0,Pittsburgh,Corliss,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-80.06,6820 +15205,STANDARD,0,Pittsburgh,Crafton,"Ingram, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-80.1,20320 +15206,STANDARD,0,Pittsburgh,"East Liberty",,PA,"Allegheny County",America/New_York,412,NA,US,40.47,-79.91,22090 +15207,STANDARD,0,Pittsburgh,Hazelwood,,PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.93,8780 +15208,STANDARD,0,Pittsburgh,Homewood,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.45,-79.9,7770 +15209,STANDARD,0,Pittsburgh,Millvale,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.5,-79.97,10970 +15210,STANDARD,0,Pittsburgh,"Mount Oliver, Mt Oliver","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.41,-79.98,20140 +15211,STANDARD,0,Pittsburgh,"Mount Washington, Mt Washington","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-80.02,8560 +15212,STANDARD,0,Pittsburgh,Allegheny,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-79.99,21660 +15213,STANDARD,0,Pittsburgh,Oakland,,PA,"Allegheny County",America/New_York,"878,412,724",NA,US,40.44,-79.96,7230 +15214,STANDARD,0,Pittsburgh,Observatory,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.49,-80.01,12010 +15215,STANDARD,0,Pittsburgh,"Aspinwall, Sharpsburg","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.5,-79.91,11150 +15216,STANDARD,0,Pittsburgh,"South Hills","Beechview, Dormont, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-80.03,19990 +15217,STANDARD,0,Pittsburgh,"Squirrel Hill",,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.92,21290 +15218,STANDARD,0,Pittsburgh,Swissvale,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.42,-79.89,11670 +15219,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.44,-79.98,7480 +15220,STANDARD,0,Pittsburgh,Wabash,"Pgh, Pitt, Rook",PA,"Allegheny County",America/New_York,412,NA,US,40.42,-80.05,16460 +15221,STANDARD,0,Pittsburgh,Wilkinsburg,"Braddock Hills, Churchill, Forest Hills, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.86,23860 +15222,STANDARD,0,Pittsburgh,,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.45,-79.99,3610 +15223,STANDARD,0,Pittsburgh,Etna,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-79.95,6180 +15224,STANDARD,0,Pittsburgh,Bloomfield,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"878,412,724",NA,US,40.46,-79.94,7630 +15225,STANDARD,0,Pittsburgh,,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-80.11,870 +15226,STANDARD,0,Pittsburgh,Brookline,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-80.01,11930 +15227,STANDARD,0,Pittsburgh,Brentwood,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.38,-79.97,26790 +15228,STANDARD,0,Pittsburgh,"Mt Lebanon","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.37,-80.04,17180 +15229,STANDARD,0,Pittsburgh,"West View","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.52,-80.04,13410 +15230,"PO BOX",0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,676 +15231,"PO BOX",0,Pittsburgh,"Pgh Int Arprt",,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15232,STANDARD,0,Pittsburgh,Shadyside,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724,878",NA,US,40.45,-79.93,6760 +15233,STANDARD,0,Pittsburgh,Kilbuck,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-80.03,2120 +15234,STANDARD,0,Pittsburgh,"Castle Shann, Castle Shannon","Baldwin, Baldwin Township, BRA# 52, Castl Shannon, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.37,-80.02,12670 +15235,STANDARD,0,Pittsburgh,"Penn Hills","Pgh, Pitt, Universal",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-79.82,30560 +15236,STANDARD,0,Pittsburgh,"Pleasant Hills, Pleasant Hls, West Mifflin","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.35,-79.98,29410 +15237,STANDARD,0,Pittsburgh,"Mc Knight, Mcknight","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.55,-80.04,42230 +15238,STANDARD,0,Pittsburgh,Blawnox,"Fox Chapel, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.54,-79.88,12850 +15239,STANDARD,0,Pittsburgh,Plum,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.48,-79.74,20120 +15240,"PO BOX",0,Pittsburgh,,"Pgh, Pitt, Veterans Hospital",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15241,STANDARD,0,Pittsburgh,"Upper Saint Clair, Upper St Clair, Uppr St Clair","South Hills Village",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.33,-80.08,22040 +15242,"PO BOX",0,Pittsburgh,Greentree,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,61 +15243,STANDARD,0,Pittsburgh,Cedarhurst,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.38,-80.07,13340 +15244,"PO BOX",0,Pittsburgh,Montour,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,69 +15250,UNIQUE,0,Pittsburgh,,"Bank Of Ny Mellon",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15251,UNIQUE,0,Pittsburgh,,"Bank Of Ny Mellon",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15252,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15253,"PO BOX",0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15254,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15255,UNIQUE,0,Pittsburgh,,"Bell Telephone Co",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15257,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15258,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,45 +15259,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15260,STANDARD,0,Pittsburgh,,"Univ Of Pittsburgh",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.44,-79.95,29 +15261,UNIQUE,0,Pittsburgh,,"Univ Of Pittsburgh",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15262,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15263,UNIQUE,1,Pittsburgh,,"Jones And Laughlin",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.98,0 +15264,"PO BOX",0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15265,UNIQUE,0,Pittsburgh,,"Pnc Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15266,UNIQUE,1,Pittsburgh,,"Duguesne Light Co",PA,,America/New_York,,NA,US,40.44,-79.99,0 +15267,UNIQUE,0,Pittsburgh,,Duguesne,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15268,UNIQUE,0,Pittsburgh,,"National City Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15270,UNIQUE,0,Pittsburgh,,"Columbia Gas Of Pa",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15272,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"724,412",NA,US,40.43,-79.97,75 +15273,STANDARD,1,Pittsburgh,,,PA,,America/New_York,,NA,US,40.37,-79.9,0 +15274,"PO BOX",0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15275,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,13 +15276,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.43,-79.97,0 +15277,UNIQUE,0,Pittsburgh,,"Eastern Area",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15278,UNIQUE,0,Pittsburgh,,"National City Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15279,UNIQUE,0,Pittsburgh,,"Duquesne Light Co",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15281,UNIQUE,0,Pittsburgh,,"Macys Dept Store",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15282,UNIQUE,0,Pittsburgh,,"Duquesne Univ",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,16 +15283,UNIQUE,0,Pittsburgh,,"AT & T",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15285,UNIQUE,1,Pittsburgh,,"Joseph Horne Co",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.99,0 +15286,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15288,STANDARD,1,Pittsburgh,Carnegie,,PA,,America/New_York,,NA,US,40.44,-79.94,0 +15289,UNIQUE,0,Pittsburgh,,"Carnegie Mellon Univ",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.94,123 +15290,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"724,412",NA,US,40.46,-80.02,0 +15295,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.43,-79.88,0 +15301,STANDARD,0,Washington,,Wash,PA,"Washington County",America/New_York,"412,724",NA,US,40.17,-80.24,41450 +15310,STANDARD,0,Aleppo,,,PA,"Greene County",America/New_York,724,NA,US,39.82,-80.45,210 +15311,STANDARD,0,Amity,,,PA,"Washington County",America/New_York,724,NA,US,40.05,-80.2,1200 +15312,STANDARD,0,Avella,Rea,,PA,"Washington County",America/New_York,"412,724",NA,US,40.28,-80.47,3110 +15313,"PO BOX",0,Beallsville,,,PA,"Washington County",America/New_York,724,NA,US,40.07,-80.02,432 +15314,STANDARD,0,Bentleyville,,,PA,"Washington County",America/New_York,724,NA,US,40.11,-80,3050 +15315,"PO BOX",0,Bobtown,,,PA,"Greene County",America/New_York,724,NA,US,39.75,-79.98,672 +15316,STANDARD,0,Brave,,,PA,"Greene County",America/New_York,724,NA,US,39.72,-80.25,210 +15317,STANDARD,0,Canonsburg,"Mc Murray, Mcmurray",,PA,"Washington County",America/New_York,724,NA,US,40.26,-80.18,40290 +15320,STANDARD,0,Carmichaels,,Fairdale,PA,"Greene County",America/New_York,724,NA,US,39.89,-79.97,4290 +15321,STANDARD,0,Cecil,,,PA,"Washington County",America/New_York,724,NA,US,40.32,-80.19,1610 +15322,STANDARD,0,Clarksville,,,PA,"Greene County",America/New_York,724,NA,US,39.97,-80.04,1690 +15323,STANDARD,0,Claysville,,,PA,"Washington County",America/New_York,724,NA,US,40.12,-80.41,3950 +15324,"PO BOX",0,Cokeburg,,,PA,"Washington County",America/New_York,724,NA,US,40.1,-80.07,619 +15325,"PO BOX",0,Crucible,,,PA,"Greene County",America/New_York,724,NA,US,39.95,-79.96,468 +15327,STANDARD,0,Dilliner,,,PA,"Greene County",America/New_York,724,NA,US,39.75,-79.99,1100 +15329,STANDARD,0,Prosperity,,,PA,"Washington County",America/New_York,724,NA,US,40.02,-80.25,1330 +15330,STANDARD,0,"Eighty Four",,,PA,"Washington County",America/New_York,724,NA,US,40.18,-80.13,5070 +15331,"PO BOX",0,Ellsworth,,,PA,"Washington County",America/New_York,724,NA,US,40.1,-80.02,968 +15332,STANDARD,0,Finleyville,,,PA,"Washington County",America/New_York,724,NA,US,40.25,-80,7490 +15333,STANDARD,0,Fredericktown,,,PA,"Washington County",America/New_York,724,NA,US,40.02,-80.03,1720 +15334,STANDARD,0,"Garards Fort",,,PA,"Greene County",America/New_York,724,NA,US,39.81,-79.97,186 +15336,"PO BOX",0,Gastonville,,,PA,"Washington County",America/New_York,724,NA,US,40.26,-80,116 +15337,STANDARD,0,Graysville,,,PA,"Greene County",America/New_York,724,NA,US,39.95,-80.38,530 +15338,STANDARD,0,Greensboro,,,PA,"Greene County",America/New_York,724,NA,US,39.78,-79.99,1320 +15339,"PO BOX",0,Hendersonville,Hendersonvlle,,PA,"Washington County",America/New_York,724,NA,US,40.32,-80.21,267 +15340,STANDARD,0,Hickory,,,PA,"Washington County",America/New_York,724,NA,US,40.3,-80.32,1280 +15341,STANDARD,0,Holbrook,,,PA,"Greene County",America/New_York,724,NA,US,39.84,-80.34,630 +15342,STANDARD,0,Houston,,,PA,"Washington County",America/New_York,412,NA,US,40.25,-80.21,4650 +15344,STANDARD,0,Jefferson,,,PA,"Greene County",America/New_York,724,NA,US,39.93,-80.05,1410 +15345,STANDARD,0,Marianna,,,PA,"Washington County",America/New_York,724,NA,US,40.01,-80.11,1310 +15346,"PO BOX",0,Mather,,,PA,"Greene County",America/New_York,724,NA,US,39.94,-80.08,644 +15347,"PO BOX",0,"Meadow Lands",,,PA,"Washington County",America/New_York,724,NA,US,40.22,-80.22,785 +15348,"PO BOX",0,Millsboro,,,PA,"Washington County",America/New_York,724,NA,US,39.99,-80,336 +15349,STANDARD,0,"Mount Morris","Davistown, Mt Morris",,PA,"Greene County",America/New_York,724,NA,US,39.75,-80.11,1440 +15350,"PO BOX",0,Muse,,,PA,"Washington County",America/New_York,724,NA,US,40.29,-80.2,663 +15351,"PO BOX",0,Nemacolin,,,PA,"Greene County",America/New_York,724,NA,US,39.88,-79.92,736 +15352,STANDARD,0,"New Freeport","Pine Bank",,PA,"Greene County",America/New_York,724,NA,US,39.75,-80.45,660 +15353,"PO BOX",0,Nineveh,,,PA,"Greene County",America/New_York,724,NA,US,39.96,-80.31,104 +15357,STANDARD,0,"Rices Landing",,,PA,"Greene County",America/New_York,724,NA,US,39.94,-79.99,1460 +15358,"PO BOX",0,Richeyville,,,PA,"Washington County",America/New_York,724,NA,US,40.06,-80,812 +15359,STANDARD,0,Rogersville,,,PA,"Greene County",America/New_York,724,NA,US,39.88,-80.28,210 +15360,STANDARD,0,"Scenery Hill",,,PA,"Washington County",America/New_York,724,NA,US,40.08,-80.07,1730 +15361,"PO BOX",0,Southview,,,PA,"Washington County",America/New_York,724,NA,US,40.33,-80.26,158 +15362,STANDARD,0,Spraggs,,,PA,"Greene County",America/New_York,724,NA,US,39.78,-80.22,610 +15363,STANDARD,0,Strabane,,,PA,"Washington County",America/New_York,724,NA,US,40.25,-80.2,720 +15364,STANDARD,0,Sycamore,,,PA,"Greene County",America/New_York,724,NA,US,39.95,-80.3,530 +15365,"PO BOX",0,Taylorstown,,,PA,"Washington County",America/New_York,724,NA,US,40.17,-80.38,131 +15366,"PO BOX",0,"Van Voorhis",,,PA,"Washington County",America/New_York,724,NA,US,40.16,-79.97,191 +15367,STANDARD,0,Venetia,,,PA,"Washington County",America/New_York,724,NA,US,40.26,-80.05,9660 +15368,"PO BOX",0,Vestaburg,,,PA,"Washington County",America/New_York,724,NA,US,40.01,-79.99,546 +15370,STANDARD,0,Waynesburg,,,PA,"Greene County",America/New_York,724,NA,US,39.89,-80.18,9750 +15376,STANDARD,0,"West Alexander","W Alexander",,PA,"Washington County",America/New_York,724,NA,US,40.1,-80.5,1570 +15377,STANDARD,0,"West Finley",,,PA,"Washington County",America/New_York,724,NA,US,39.99,-80.45,540 +15378,"PO BOX",0,Westland,,,PA,"Washington County",America/New_York,724,NA,US,40.28,-80.28,126 +15379,"PO BOX",0,"West Middletown","W Middletown",,PA,"Washington County",America/New_York,724,NA,US,40.24,-80.43,132 +15380,STANDARD,0,"Wind Ridge",,,PA,"Greene County",America/New_York,724,NA,US,39.88,-80.46,570 +15401,STANDARD,0,Uniontown,,"Oliphant Furnace",PA,"Fayette County",America/New_York,"412,724",NA,US,39.89,-79.72,25550 +15410,STANDARD,0,Adah,,,PA,"Fayette County",America/New_York,724,NA,US,39.91,-79.9,610 +15411,STANDARD,0,Addison,,,PA,"Somerset County",America/New_York,814,NA,US,39.74,-79.33,510 +15412,"PO BOX",0,Allenport,,,PA,"Washington County",America/New_York,724,NA,US,40.09,-79.85,282 +15413,STANDARD,0,Allison,,,PA,"Fayette County",America/New_York,724,NA,US,39.99,-79.87,390 +15415,"PO BOX",0,"Brier Hill",,,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.83,123 +15416,"PO BOX",0,Brownfield,,,PA,"Fayette County",America/New_York,724,NA,US,39.85,-79.68,229 +15417,STANDARD,0,Brownsville,,"West Brownsville",PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.89,6000 +15419,STANDARD,0,California,,,PA,"Washington County",America/New_York,724,NA,US,40.05,-79.89,1590 +15420,"PO BOX",0,Cardale,,,PA,"Fayette County",America/New_York,724,NA,US,39.96,-79.87,192 +15421,"PO BOX",0,"Chalk Hill",,,PA,"Fayette County",America/New_York,724,NA,US,39.85,-79.6,621 +15422,"PO BOX",0,"Chestnut Ridge","Chestnut Rdg",,PA,"Fayette County",America/New_York,724,NA,US,39.98,-79.81,186 +15423,STANDARD,0,"Coal Center",,,PA,"Washington County",America/New_York,724,NA,US,40.09,-79.93,1540 +15424,STANDARD,0,Confluence,"Listonburg, Ursina",,PA,"Somerset County",America/New_York,814,NA,US,39.8,-79.35,1930 +15425,STANDARD,0,Connellsville,"S Connellsvl","Greene Junction, S Connelsvl",PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.58,15380 +15427,STANDARD,0,Daisytown,,,PA,"Washington County",America/New_York,724,NA,US,40.07,-79.97,880 +15428,STANDARD,0,Dawson,,,PA,"Fayette County",America/New_York,724,NA,US,40.08,-79.68,1580 +15429,"PO BOX",0,Denbo,,,PA,"Washington County",America/New_York,724,NA,US,40,-79.94,200 +15430,"PO BOX",0,"Dickerson Run",,,PA,"Fayette County",America/New_York,724,NA,US,40.04,-79.65,342 +15431,STANDARD,0,Dunbar,,,PA,"Fayette County",America/New_York,724,NA,US,39.97,-79.61,3780 +15432,"PO BOX",0,Dunlevy,,,PA,"Washington County",America/New_York,724,NA,US,40.11,-79.86,366 +15433,STANDARD,0,"East Millsboro","E Millsboro",,PA,"Fayette County",America/New_York,724,NA,US,39.98,-79.96,610 +15434,"PO BOX",0,Elco,,,PA,"Washington County",America/New_York,724,NA,US,40.08,-79.88,232 +15435,"PO BOX",0,Fairbank,,,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.85,588 +15436,STANDARD,0,Fairchance,,,PA,"Fayette County",America/New_York,724,NA,US,39.82,-79.75,2260 +15437,STANDARD,0,Farmington,,,PA,"Fayette County",America/New_York,724,NA,US,39.78,-79.61,2290 +15438,STANDARD,0,"Fayette City",,,PA,"Fayette County",America/New_York,724,NA,US,40.1,-79.83,1880 +15439,"PO BOX",0,Gans,"Lake Lynn",,PA,"Monongalia County",America/New_York,724,NA,US,39.74,-79.81,98 +15440,STANDARD,0,"Gibbon Glade",,,PA,"Fayette County",America/New_York,724,NA,US,39.73,-79.56,280 +15442,STANDARD,0,Grindstone,,,PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.83,1910 +15443,"PO BOX",0,Hibbs,,,PA,"Fayette County",America/New_York,724,NA,US,39.92,-79.88,283 +15444,STANDARD,0,Hiller,,,PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.91,410 +15445,STANDARD,0,Hopwood,,,PA,"Fayette County",America/New_York,"412,724",NA,US,39.87,-79.7,2510 +15446,STANDARD,0,"Indian Head",,,PA,"Fayette County",America/New_York,724,NA,US,40.03,-79.4,430 +15447,"PO BOX",0,Isabella,,,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.94,145 +15448,"PO BOX",0,"Jacobs Creek",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.14,-79.73,179 +15449,"PO BOX",0,Keisterville,,,PA,"Fayette County",America/New_York,724,NA,US,39.96,-79.78,202 +15450,STANDARD,0,"La Belle",,,PA,"Fayette County",America/New_York,724,NA,US,40,-79.97,280 +15451,STANDARD,0,"Lake Lynn",,,PA,"Fayette County",America/New_York,724,NA,US,39.74,-79.84,710 +15454,"PO BOX",0,Leckrone,,,PA,"Fayette County",America/New_York,724,NA,US,39.86,-79.87,210 +15455,"PO BOX",0,Leisenring,,,PA,"Fayette County",America/New_York,724,NA,US,40,-79.64,301 +15456,STANDARD,0,"Lemont Furnace","Lemont Frnc, Lemont Frnce","Lemont Fce",PA,"Fayette County",America/New_York,"412,724",NA,US,39.92,-79.64,2120 +15458,STANDARD,0,"Mc Clellandtown","Lamberton, Mcclellandtwn",Mcclellandtown,PA,"Fayette County",America/New_York,724,NA,US,39.88,-79.86,1870 +15459,STANDARD,0,Markleysburg,,,PA,"Fayette County",America/New_York,724,NA,US,39.73,-79.45,1230 +15460,"PO BOX",0,Martin,,,PA,"Fayette County",America/New_York,724,NA,US,39.81,-79.91,163 +15461,STANDARD,0,Masontown,,,PA,"Fayette County",America/New_York,724,NA,US,39.84,-79.9,3440 +15462,STANDARD,0,Melcroft,,,PA,"Fayette County",America/New_York,814,NA,US,40.06,-79.38,330 +15463,"PO BOX",0,Merrittstown,,,PA,"Fayette County",America/New_York,724,NA,US,39.97,-79.9,433 +15464,STANDARD,0,"Mill Run",,,PA,"Fayette County",America/New_York,724,NA,US,39.96,-79.45,1240 +15465,"PO BOX",0,"Mount Braddock","Mt Braddock",,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.67,324 +15466,"PO BOX",0,Newell,,,PA,"Fayette County",America/New_York,724,NA,US,40.08,-79.89,399 +15467,"PO BOX",0,"New Geneva",,,PA,"Fayette County",America/New_York,724,NA,US,39.78,-79.93,164 +15468,STANDARD,0,"New Salem",,,PA,"Fayette County",America/New_York,724,NA,US,39.95,-79.83,1920 +15469,STANDARD,0,Normalville,,,PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.42,1790 +15470,STANDARD,0,Ohiopyle,,,PA,"Fayette County",America/New_York,724,NA,US,39.87,-79.53,630 +15472,"PO BOX",0,Oliver,,,PA,"Fayette County",America/New_York,724,NA,US,39.92,-79.72,247 +15473,STANDARD,0,Perryopolis,"Layton, Whitsett",,PA,"Fayette County",America/New_York,724,NA,US,40.08,-79.75,3450 +15474,STANDARD,0,"Point Marion",,,PA,"Fayette County",America/New_York,724,NA,US,39.73,-79.9,1580 +15475,"PO BOX",0,Republic,,,PA,"Fayette County",America/New_York,724,NA,US,39.95,-79.88,1062 +15476,"PO BOX",0,Ronco,,,PA,"Fayette County",America/New_York,724,NA,US,39.87,-79.92,207 +15477,"PO BOX",0,Roscoe,,,PA,"Washington County",America/New_York,724,NA,US,40.08,-79.86,970 +15478,STANDARD,0,Smithfield,,,PA,"Fayette County",America/New_York,724,NA,US,39.8,-79.8,5220 +15479,STANDARD,0,Smithton,"Rostraver Township, Rostraver Twp, Van Meter",,PA,"Westmoreland County",America/New_York,878,NA,US,40.15,-79.74,1800 +15480,STANDARD,0,Smock,,,PA,"Fayette County",America/New_York,724,NA,US,39.99,-79.75,1650 +15482,"PO BOX",0,"Star Junction",,,PA,"Fayette County",America/New_York,724,NA,US,40.06,-79.77,571 +15483,"PO BOX",0,Stockdale,,,PA,"Washington County",America/New_York,724,NA,US,40.08,-79.85,485 +15484,"PO BOX",0,Uledi,,,PA,"Fayette County",America/New_York,724,NA,US,39.89,-79.78,295 +15485,"PO BOX",0,Ursina,,,PA,"Somerset County",America/New_York,814,NA,US,39.81,-79.33,101 +15486,STANDARD,0,Vanderbilt,,,PA,"Fayette County",America/New_York,724,NA,US,40.03,-79.66,1970 +15488,STANDARD,0,Waltersburg,,,PA,"Fayette County",America/New_York,724,NA,US,39.98,-79.77,218 +15489,"PO BOX",0,"West Leisenring","W Leisenring",,PA,"Fayette County",America/New_York,724,NA,US,39.97,-79.7,376 +15490,STANDARD,0,White,,,PA,"Fayette County",America/New_York,724,NA,US,40.07,-79.42,570 +15492,"PO BOX",0,Wickhaven,,,PA,"Fayette County",America/New_York,724,NA,US,40.12,-79.76,127 +15501,STANDARD,0,Somerset,,,PA,"Somerset County",America/New_York,814,NA,US,40,-79.07,12740 +15502,"PO BOX",0,"Hidden Valley",,,PA,"Somerset County",America/New_York,814,NA,US,40.04,-79.24,221 +15510,UNIQUE,0,Somerset,,"Sci Somerset",PA,"Somerset County",America/New_York,814,NA,US,39.97,-79.04,47 +15520,"PO BOX",0,Acosta,,,PA,"Somerset County",America/New_York,814,NA,US,40.11,-79.06,263 +15521,STANDARD,0,"Alum Bank",,,PA,"Bedford County",America/New_York,814,NA,US,40.19,-78.62,1560 +15522,STANDARD,0,Bedford,,,PA,"Bedford County",America/New_York,814,NA,US,40.01,-78.5,10310 +15530,STANDARD,0,Berlin,,,PA,"Somerset County",America/New_York,814,NA,US,39.92,-78.95,4520 +15531,STANDARD,0,Boswell,,,PA,"Somerset County",America/New_York,814,NA,US,40.16,-79.02,3140 +15532,"PO BOX",0,Boynton,,,PA,"Somerset County",America/New_York,814,NA,US,39.76,-79.06,146 +15533,STANDARD,0,Breezewood,,,PA,"Bedford County",America/New_York,814,NA,US,39.99,-78.24,1220 +15534,STANDARD,0,"Buffalo Mills",,,PA,"Bedford County",America/New_York,814,NA,US,39.9,-78.69,730 +15535,STANDARD,0,Clearville,,,PA,"Bedford County",America/New_York,814,NA,US,39.91,-78.37,1790 +15536,STANDARD,0,"Crystal Spring","Crystal Spg",,PA,"Fulton County",America/New_York,814,NA,US,39.93,-78.21,380 +15537,STANDARD,0,Everett,,,PA,"Bedford County",America/New_York,814,NA,US,40.01,-78.36,6770 +15538,STANDARD,0,Fairhope,Glencoe,,PA,"Somerset County",America/New_York,814,NA,US,39.89,-78.83,600 +15539,STANDARD,0,Fishertown,,,PA,"Bedford County",America/New_York,814,NA,US,40.13,-78.59,470 +15540,STANDARD,0,"Fort Hill",,,PA,"Somerset County",America/New_York,814,NA,US,39.8,-79.24,280 +15541,STANDARD,0,Friedens,,,PA,"Somerset County",America/New_York,814,NA,US,40.04,-79,3270 +15542,STANDARD,0,Garrett,,,PA,"Somerset County",America/New_York,814,NA,US,39.86,-79.06,1030 +15544,"PO BOX",0,Gray,,,PA,"Somerset County",America/New_York,814,NA,US,40.14,-79.09,244 +15545,STANDARD,0,Hyndman,,,PA,"Bedford County",America/New_York,814,NA,US,39.82,-78.72,2270 +15546,STANDARD,0,Jenners,,,PA,"Somerset County",America/New_York,814,NA,US,40.14,-79.05,290 +15547,"PO BOX",0,Jennerstown,,,PA,"Somerset County",America/New_York,814,NA,US,40.16,-79.06,635 +15548,STANDARD,0,Kantner,,,PA,"Somerset County",America/New_York,814,NA,US,40.11,-78.96,30 +15549,"PO BOX",0,Listie,,,PA,"Somerset County",America/New_York,814,NA,US,40.04,-79.12,88 +15550,STANDARD,0,"Manns Choice",,,PA,"Bedford County",America/New_York,814,NA,US,40,-78.59,1440 +15551,STANDARD,0,Markleton,,,PA,"Somerset County",America/New_York,814,NA,US,39.87,-79.29,670 +15552,STANDARD,0,Meyersdale,,Myersdale,PA,"Somerset County",America/New_York,814,NA,US,39.81,-79.02,5080 +15553,"PO BOX",0,"New Baltimore",,,PA,"Somerset County",America/New_York,814,NA,US,39.98,-78.77,133 +15554,STANDARD,0,"New Paris",,,PA,"Bedford County",America/New_York,814,NA,US,40.1,-78.64,2090 +15555,"PO BOX",0,Quecreek,,,PA,"Somerset County",America/New_York,814,NA,US,40.09,-79.08,78 +15557,STANDARD,0,Rockwood,,,PA,"Somerset County",America/New_York,814,NA,US,39.91,-79.15,3280 +15558,STANDARD,0,Salisbury,,,PA,"Somerset County",America/New_York,814,NA,US,39.75,-79.08,1660 +15559,STANDARD,0,Schellsburg,,,PA,"Bedford County",America/New_York,814,NA,US,40.04,-78.64,1700 +15560,"PO BOX",0,Shanksville,,,PA,"Somerset County",America/New_York,814,NA,US,40.02,-78.91,275 +15561,"PO BOX",0,Sipesville,,,PA,"Somerset County",America/New_York,814,NA,US,40.1,-79.09,244 +15562,STANDARD,0,Springs,,,PA,"Somerset County",America/New_York,814,NA,US,39.74,-79.13,300 +15563,STANDARD,0,Stoystown,,,PA,"Somerset County",America/New_York,814,NA,US,40.1,-78.95,2530 +15564,STANDARD,0,Wellersburg,,,PA,"Somerset County",America/New_York,814,NA,US,39.73,-78.84,83 +15565,STANDARD,0,"West Salisbury","W Salisbury",,PA,"Somerset County",America/New_York,814,NA,US,39.78,-79.01,63 +15601,STANDARD,0,Greensburg,,Gbg,PA,"Westmoreland County",America/New_York,"412,724,878",NA,US,40.31,-79.54,49750 +15605,UNIQUE,0,Greensburg,,"Bureau Of Voc Rehab",PA,"Westmoreland County",America/New_York,724,NA,US,40.31,-79.54,0 +15606,UNIQUE,0,Greensburg,,"Allegheny Power",PA,"Westmoreland County",America/New_York,724,NA,US,40.31,-79.54,0 +15610,STANDARD,0,Acme,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.15,-79.42,3350 +15611,STANDARD,0,Adamsburg,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.31,-79.65,390 +15612,STANDARD,0,Alverton,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.14,-79.6,360 +15613,STANDARD,0,Apollo,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.58,-79.56,12270 +15615,STANDARD,0,Ardara,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.36,-79.73,240 +15616,"PO BOX",0,Armbrust,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.22,-79.55,198 +15617,"PO BOX",0,Arona,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.27,-79.66,401 +15618,STANDARD,0,Avonmore,Edmon,,PA,"Westmoreland County",America/New_York,724,NA,US,40.52,-79.47,2180 +15619,"PO BOX",0,Bovard,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.34,-79.53,429 +15620,STANDARD,0,Bradenville,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.32,-79.34,670 +15621,"PO BOX",0,Calumet,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.21,-79.48,140 +15622,STANDARD,0,Champion,,,PA,"Fayette County",America/New_York,"724,814",NA,US,40.04,-79.32,1030 +15623,STANDARD,0,Claridge,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.37,-79.62,720 +15624,"PO BOX",0,Crabtree,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.36,-79.47,490 +15625,"PO BOX",0,Darragh,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.27,-79.68,208 +15626,STANDARD,0,Delmont,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.41,-79.57,4790 +15627,STANDARD,0,Derry,,,PA,"Westmoreland County",America/New_York,"724,878",NA,US,40.33,-79.3,5600 +15628,STANDARD,0,Donegal,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.11,-79.38,440 +15629,"PO BOX",0,"East Vandergrift","E Vandergrift",,PA,"Westmoreland County",America/New_York,878,NA,US,40.6,-79.56,624 +15631,"PO BOX",0,Everson,,,PA,"Fayette County",America/New_York,724,NA,US,40.09,-79.58,800 +15632,STANDARD,0,Export,Murrysville,,PA,"Westmoreland County",America/New_York,724,NA,US,40.41,-79.62,8930 +15633,"PO BOX",0,"Forbes Road",,"Forbes Rd",PA,"Westmoreland County",America/New_York,878,NA,US,40.36,-79.52,276 +15634,STANDARD,0,Grapeville,,,PA,"Westmoreland County",America/New_York,"412,724",NA,US,40.32,-79.6,510 +15635,"PO BOX",0,Hannastown,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.35,-79.5,257 +15636,STANDARD,0,"Harrison City",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.37,-79.66,3910 +15637,STANDARD,0,Herminie,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.26,-79.71,1660 +15638,"PO BOX",0,Hostetter,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.26,-79.4,307 +15639,STANDARD,0,Hunker,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.2,-79.61,1740 +15640,"PO BOX",0,Hutchinson,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.22,-79.73,354 +15641,STANDARD,0,"Hyde Park",,,PA,"Westmoreland County",America/New_York,878,NA,US,40.63,-79.59,490 +15642,STANDARD,0,Irwin,"N Huntingdon, No Huntingdon, North Huntingdon, North Irwin",,PA,"Westmoreland County",America/New_York,724,NA,US,40.32,-79.69,44170 +15644,STANDARD,0,Jeannette,,,PA,"Westmoreland County",America/New_York,"412,724",NA,US,40.33,-79.62,16050 +15646,STANDARD,0,"Jones Mills",,,PA,"Westmoreland County",America/New_York,"724,814",NA,US,40.08,-79.33,200 +15647,STANDARD,0,Larimer,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.35,-79.72,300 +15650,STANDARD,0,Latrobe,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.31,-79.38,23010 +15655,STANDARD,0,Laughlintown,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.19,-79.16,470 +15656,STANDARD,0,Leechburg,"N Leechburg, North Leechburg, W Leechburg, West Leechburg",,PA,"Westmoreland County",America/New_York,724,NA,US,40.63,-79.6,9020 +15658,STANDARD,0,Ligonier,Wilpen,,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.23,7250 +15660,"PO BOX",0,Lowber,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.77,210 +15661,STANDARD,0,Loyalhanna,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.32,-79.36,490 +15662,"PO BOX",0,Luxor,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.33,-79.48,244 +15663,"PO BOX",0,Madison,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.24,-79.67,538 +15664,"PO BOX",0,Mammoth,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.16,-79.51,125 +15665,STANDARD,0,Manor,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.34,-79.66,1420 +15666,STANDARD,0,"Mount Pleasant","Mt Pleasant",,PA,"Westmoreland County",America/New_York,724,NA,US,40.15,-79.54,13680 +15668,STANDARD,0,Murrysville,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.46,-79.67,13210 +15670,STANDARD,0,"New Alexandria","New Alexandri",,PA,"Westmoreland County",America/New_York,724,NA,US,40.39,-79.41,3080 +15671,STANDARD,0,"New Derry",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.36,-79.32,640 +15672,STANDARD,0,"New Stanton",,,PA,"Westmoreland County",America/New_York,878,NA,US,40.22,-79.6,2970 +15673,"PO BOX",0,"North Apollo",,,PA,"Armstrong County",America/New_York,724,NA,US,40.59,-79.56,1289 +15674,"PO BOX",0,Norvelt,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.16,-79.51,392 +15675,STANDARD,0,Penn,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.34,-79.64,850 +15676,"PO BOX",0,"Pleasant Unity","Pleasant Unty",,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.47,593 +15677,STANDARD,0,Rector,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.14,-79.24,410 +15678,STANDARD,0,Rillton,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.29,-79.73,530 +15679,STANDARD,0,"Ruffs Dale",,,PA,"Westmoreland County",America/New_York,878,NA,US,40.15,-79.63,2820 +15680,"PO BOX",0,Salina,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.52,-79.5,303 +15681,STANDARD,0,Saltsburg,,,PA,"Indiana County",America/New_York,724,NA,US,40.48,-79.44,4000 +15682,"PO BOX",0,Schenley,,,PA,"Armstrong County",America/New_York,724,NA,US,40.68,-79.64,59 +15683,STANDARD,0,Scottdale,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.1,-79.58,7170 +15684,STANDARD,0,Slickville,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.46,-79.5,530 +15685,"PO BOX",0,Southwest,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.18,-79.49,288 +15686,STANDARD,0,"Spring Church",,,PA,"Armstrong County",America/New_York,724,NA,US,40.62,-79.44,730 +15687,STANDARD,0,Stahlstown,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.13,-79.29,1190 +15688,STANDARD,0,Tarrs,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.17,-79.58,630 +15689,"PO BOX",0,United,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.22,-79.49,238 +15690,STANDARD,0,Vandergrift,Park,,PA,"Westmoreland County",America/New_York,724,NA,US,40.59,-79.57,7480 +15691,"PO BOX",0,Wendel,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.3,-79.69,217 +15692,STANDARD,0,"Westmoreland City","Westmrlnd Cty",,PA,"Westmoreland County",America/New_York,724,NA,US,40.33,-79.68,890 +15693,"PO BOX",0,Whitney,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.25,-79.41,255 +15695,"PO BOX",0,Wyano,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.2,-79.69,341 +15696,"PO BOX",0,Youngstown,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.28,-79.37,682 +15697,STANDARD,0,Youngwood,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.58,2560 +15698,STANDARD,0,Yukon,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.21,-79.68,680 +15701,STANDARD,0,Indiana,,,PA,"Indiana County",America/New_York,"412,724",NA,US,40.62,-79.15,21260 +15705,UNIQUE,0,Indiana,,"Indiana Univ Of Pa",PA,"Indiana County",America/New_York,724,NA,US,40.62,-79.15,60 +15710,"PO BOX",0,Alverda,,,PA,"Indiana County",America/New_York,724,NA,US,40.64,-78.87,212 +15711,STANDARD,0,Anita,,,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-78.96,290 +15712,"PO BOX",0,Arcadia,,,PA,"Indiana County",America/New_York,814,NA,US,40.79,-78.85,112 +15713,STANDARD,0,Aultman,,,PA,"Indiana County",America/New_York,"724,878",NA,US,40.57,-79.26,200 +15714,STANDARD,0,"Northern Cambria","Barnesboro, N Cambria",,PA,"Cambria County",America/New_York,814,NA,US,40.66,-78.78,5090 +15715,"PO BOX",0,"Big Run",,,PA,"Jefferson County",America/New_York,814,NA,US,40.97,-78.88,617 +15716,"PO BOX",0,"Black Lick",,,PA,"Indiana County",America/New_York,,NA,US,40.47,-79.19,798 +15717,STANDARD,0,Blairsville,,,PA,"Indiana County",America/New_York,"878,724",NA,US,40.43,-79.26,8590 +15720,"PO BOX",0,"Brush Valley",,,PA,"Indiana County",America/New_York,724,NA,US,40.53,-79.06,218 +15721,"PO BOX",0,Burnside,,,PA,"Clearfield County",America/New_York,814,NA,US,40.81,-78.78,188 +15722,STANDARD,0,Carrolltown,,,PA,"Cambria County",America/New_York,814,NA,US,40.6,-78.7,1970 +15723,"PO BOX",0,Chambersville,,,PA,"Indiana County",America/New_York,724,NA,US,40.7,-79.16,48 +15724,STANDARD,0,"Cherry Tree",,,PA,"Indiana County",America/New_York,814,NA,US,40.72,-78.8,1880 +15725,STANDARD,0,Clarksburg,,,PA,"Indiana County",America/New_York,"724,878",NA,US,40.49,-79.36,1180 +15727,"PO BOX",0,Clune,,,PA,"Indiana County",America/New_York,724,NA,US,40.56,-79.31,158 +15728,STANDARD,0,Clymer,,,PA,"Indiana County",America/New_York,724,NA,US,40.66,-79.01,3020 +15729,STANDARD,0,Commodore,,,PA,"Indiana County",America/New_York,,NA,US,40.69,-78.9,1250 +15730,STANDARD,0,Coolspring,,,PA,"Jefferson County",America/New_York,814,NA,US,41.06,-79.09,139 +15731,"PO BOX",0,Coral,,,PA,"Indiana County",America/New_York,,NA,US,40.5,-79.18,332 +15732,STANDARD,0,Creekside,,,PA,"Indiana County",America/New_York,"412,724",NA,US,40.68,-79.19,1490 +15733,"PO BOX",0,"De Lancey",,,PA,"Jefferson County",America/New_York,814,NA,US,40.99,-78.96,105 +15734,"PO BOX",0,Dixonville,,,PA,"Indiana County",America/New_York,814,NA,US,40.72,-79,308 +15736,"PO BOX",0,Elderton,,,PA,"Armstrong County",America/New_York,724,NA,US,40.69,-79.34,643 +15737,"PO BOX",0,Elmora,,,PA,"Cambria County",America/New_York,814,NA,US,40.6,-78.76,561 +15738,"PO BOX",0,Emeigh,,,PA,"Cambria County",America/New_York,814,NA,US,40.69,-78.76,225 +15739,"PO BOX",0,Ernest,,,PA,"Indiana County",America/New_York,,NA,US,40.67,-79.17,440 +15740,STANDARD,1,Frostburg,,,PA,"Jefferson County",America/New_York,814,NA,US,40.96,-79.03,0 +15741,"PO BOX",0,Gipsy,,,PA,"Indiana County",America/New_York,814,NA,US,40.8,-78.89,74 +15742,STANDARD,0,"Glen Campbell",,,PA,"Indiana County",America/New_York,814,NA,US,40.81,-78.83,770 +15744,STANDARD,0,Hamilton,,,PA,"Jefferson County",America/New_York,814,NA,US,40.92,-79.08,107 +15745,"PO BOX",0,Heilwood,,,PA,"Indiana County",America/New_York,724,NA,US,40.62,-78.92,352 +15746,"PO BOX",0,Hillsdale,,,PA,"Indiana County",America/New_York,814,NA,US,40.76,-78.89,211 +15747,STANDARD,0,Home,,,PA,"Indiana County",America/New_York,724,NA,US,40.78,-79.15,1710 +15748,STANDARD,0,"Homer City","Graceton, Waterman",,PA,"Indiana County",America/New_York,"724,412,878",NA,US,40.53,-79.15,6070 +15750,STANDARD,0,Josephine,,,PA,"Indiana County",America/New_York,,NA,US,40.48,-79.18,154 +15752,"PO BOX",0,Kent,,,PA,"Indiana County",America/New_York,,NA,US,40.54,-79.28,108 +15753,STANDARD,0,"La Jose",,,PA,"Clearfield County",America/New_York,814,NA,US,40.81,-78.62,390 +15754,"PO BOX",0,Lucernemines,,,PA,"Indiana County",America/New_York,,NA,US,40.56,-79.15,515 +15756,"PO BOX",0,"Mc Intyre",,Mcintyre,PA,"Indiana County",America/New_York,724,NA,US,40.57,-79.3,184 +15757,STANDARD,0,Mahaffey,"Mcgees Mills","Mc Gees Mills",PA,"Clearfield County",America/New_York,814,NA,US,40.87,-78.72,1300 +15758,STANDARD,0,Marchand,,,PA,"Indiana County",America/New_York,814,NA,US,40.87,-79.04,17 +15759,STANDARD,0,"Marion Center",,,PA,"Indiana County",America/New_York,724,NA,US,40.77,-79.04,2350 +15760,STANDARD,0,Marsteller,,,PA,"Cambria County",America/New_York,814,NA,US,40.64,-78.81,104 +15761,STANDARD,0,Mentcle,,,PA,"Indiana County",America/New_York,724,NA,US,40.63,-78.89,70 +15762,STANDARD,0,Nicktown,,,PA,"Cambria County",America/New_York,814,NA,US,40.59,-78.83,850 +15763,STANDARD,0,Northpoint,,,PA,"Indiana County",America/New_York,,NA,US,40.9,-79.12,29 +15764,STANDARD,0,Oliveburg,,,PA,"Jefferson County",America/New_York,814,NA,US,40.99,-79.03,102 +15765,STANDARD,0,"Penn Run",,,PA,"Indiana County",America/New_York,,NA,US,40.6,-78.99,1450 +15767,STANDARD,0,Punxsutawney,"Frostburg, Juneau",,PA,"Jefferson County",America/New_York,814,NA,US,40.94,-78.97,12380 +15770,STANDARD,0,Ringgold,,,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-79.14,170 +15771,STANDARD,0,"Rochester Mills","Rochester Mls",,PA,"Indiana County",America/New_York,724,NA,US,40.82,-79,810 +15772,STANDARD,0,Rossiter,,,PA,"Indiana County",America/New_York,"724,814",NA,US,40.86,-78.94,1340 +15773,STANDARD,0,"Saint Benedict","St Benedict",,PA,"Cambria County",America/New_York,814,NA,US,40.63,-78.74,380 +15774,STANDARD,0,Shelocta,,,PA,"Indiana County",America/New_York,724,NA,US,40.65,-79.3,2780 +15775,STANDARD,0,Spangler,,,PA,"Cambria County",America/New_York,814,NA,US,40.63,-78.79,0 +15776,STANDARD,0,"Sprankle Mills","Sprankle Mls",,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-79.11,50 +15777,STANDARD,0,Starford,,,PA,"Indiana County",America/New_York,,NA,US,40.69,-78.97,151 +15778,STANDARD,0,Timblin,,,PA,"Jefferson County",America/New_York,814,NA,US,40.97,-79.2,155 +15779,"PO BOX",0,Torrance,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.39,-79.22,191 +15780,STANDARD,0,Valier,,,PA,"Jefferson County",America/New_York,724,NA,US,40.91,-79.07,138 +15781,"PO BOX",0,Walston,,,PA,"Jefferson County",America/New_York,814,NA,US,40.96,-78.99,144 +15783,"PO BOX",0,"West Lebanon",,,PA,"Indiana County",America/New_York,724,NA,US,40.6,-79.35,126 +15784,STANDARD,0,Worthville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.02,-79.14,125 +15801,STANDARD,0,"Du Bois",Dubois,,PA,"Clearfield County",America/New_York,814,NA,US,41.14,-78.73,16850 +15821,STANDARD,0,Benezett,Benezette,,PA,"Elk County",America/New_York,814,NA,US,41.35,-78.37,181 +15822,STANDARD,0,"Brandy Camp",,,PA,"Elk County",America/New_York,814,NA,US,41.34,-78.7,0 +15823,STANDARD,0,Brockport,,,PA,"Elk County",America/New_York,814,NA,US,41.27,-78.73,1310 +15824,STANDARD,0,Brockway,,,PA,"Jefferson County",America/New_York,814,NA,US,41.24,-78.79,4540 +15825,STANDARD,0,Brookville,Hazen,,PA,"Jefferson County",America/New_York,814,NA,US,41.16,-79.08,8050 +15827,STANDARD,0,Byrnedale,,,PA,"Elk County",America/New_York,814,NA,US,41.32,-78.52,220 +15828,STANDARD,0,Clarington,,,PA,"Jefferson County",America/New_York,814,NA,US,41.32,-79.14,230 +15829,STANDARD,0,Corsica,,,PA,"Jefferson County",America/New_York,814,NA,US,41.18,-79.2,1100 +15831,"PO BOX",0,"Dagus Mines",,,PA,"Elk County",America/New_York,814,NA,US,41.36,-78.59,227 +15832,STANDARD,0,Driftwood,,,PA,"Cameron County",America/New_York,814,NA,US,41.34,-78.13,220 +15834,STANDARD,0,Emporium,,,PA,"Cameron County",America/New_York,814,NA,US,41.51,-78.23,3680 +15840,STANDARD,0,"Falls Creek",,,PA,"Jefferson County",America/New_York,814,NA,US,41.14,-78.8,1690 +15841,"PO BOX",0,Force,,,PA,"Elk County",America/New_York,814,NA,US,41.26,-78.53,232 +15845,STANDARD,0,Johnsonburg,,,PA,"Elk County",America/New_York,814,NA,US,41.49,-78.67,2730 +15846,STANDARD,0,Kersey,,,PA,"Elk County",America/New_York,814,NA,US,41.32,-78.6,3070 +15847,"PO BOX",0,"Knox Dale",,,PA,"Jefferson County",America/New_York,814,NA,US,41.09,-79.03,200 +15848,STANDARD,0,Luthersburg,,,PA,"Clearfield County",America/New_York,814,NA,US,41.03,-78.74,980 +15849,STANDARD,0,Penfield,,,PA,"Clearfield County",America/New_York,814,NA,US,41.21,-78.6,1070 +15851,STANDARD,0,Reynoldsville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.09,-78.88,5820 +15853,STANDARD,0,Ridgway,"Portland Mills, Portland Mls",,PA,"Elk County",America/New_York,814,NA,US,41.42,-78.72,5750 +15856,STANDARD,0,Rockton,,,PA,"Clearfield County",America/New_York,814,NA,US,41.08,-78.66,750 +15857,STANDARD,0,"Saint Marys",,"St Marys",PA,"Elk County",America/New_York,814,NA,US,41.42,-78.55,11800 +15860,STANDARD,0,Sigel,Hallton,,PA,"Jefferson County",America/New_York,814,NA,US,41.28,-79.12,980 +15861,STANDARD,0,Sinnamahoning,,,PA,"Cameron County",America/New_York,814,NA,US,41.38,-78.05,150 +15863,"PO BOX",0,"Stump Creek",,,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-78.84,226 +15864,STANDARD,0,Summerville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.1,-79.2,1660 +15865,STANDARD,0,Sykesville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.04,-78.83,970 +15866,STANDARD,0,Troutville,,,PA,"Clearfield County",America/New_York,814,NA,US,41.02,-78.78,187 +15868,STANDARD,0,Weedville,,,PA,"Elk County",America/New_York,814,NA,US,41.26,-78.49,1370 +15870,STANDARD,0,Wilcox,,,PA,"Elk County",America/New_York,814,NA,US,41.58,-78.68,1080 +15901,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.33,-78.91,1940 +15902,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.91,8480 +15904,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.31,-78.84,13000 +15905,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.29,-78.97,17340 +15906,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.38,-78.96,7840 +15907,"PO BOX",0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.91,279 +15909,STANDARD,0,Johnstown,Conemaugh,,PA,"Cambria County",America/New_York,814,NA,US,40.41,-78.87,4340 +15915,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.91,0 +15920,STANDARD,0,Armagh,,,PA,"Indiana County",America/New_York,,NA,US,40.45,-79.03,840 +15921,"PO BOX",0,Beaverdale,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.7,809 +15922,"PO BOX",0,Belsano,,,PA,"Cambria County",America/New_York,814,NA,US,40.52,-78.88,274 +15923,STANDARD,0,Bolivar,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.39,-79.15,1410 +15924,STANDARD,0,Cairnbrook,,,PA,"Somerset County",America/New_York,814,NA,US,40.1,-78.76,880 +15925,"PO BOX",0,Cassandra,,,PA,"Cambria County",America/New_York,814,NA,US,40.41,-78.64,150 +15926,STANDARD,0,"Central City",,,PA,"Somerset County",America/New_York,814,NA,US,40.05,-78.82,2140 +15927,STANDARD,0,Colver,,,PA,"Cambria County",America/New_York,814,NA,US,40.54,-78.78,940 +15928,STANDARD,0,Davidsville,,,PA,"Somerset County",America/New_York,814,NA,US,40.23,-78.93,1830 +15929,"PO BOX",0,Dilltown,,,PA,"Indiana County",America/New_York,814,NA,US,40.47,-79.01,164 +15930,"PO BOX",0,Dunlo,,,PA,"Cambria County",America/New_York,814,NA,US,40.29,-78.72,378 +15931,STANDARD,0,Ebensburg,,,PA,"Cambria County",America/New_York,814,NA,US,40.48,-78.72,7450 +15934,"PO BOX",0,Elton,,,PA,"Cambria County",America/New_York,814,NA,US,40.28,-78.8,305 +15935,STANDARD,0,Hollsopple,,,PA,"Somerset County",America/New_York,814,NA,US,40.24,-78.96,2340 +15936,STANDARD,0,Hooversville,,,PA,"Somerset County",America/New_York,814,NA,US,40.15,-78.91,1270 +15937,"PO BOX",0,Jerome,,,PA,"Somerset County",America/New_York,814,NA,US,40.21,-78.98,689 +15938,STANDARD,0,Lilly,,,PA,"Cambria County",America/New_York,814,NA,US,40.42,-78.62,2210 +15940,STANDARD,0,Loretto,,,PA,"Cambria County",America/New_York,814,NA,US,40.5,-78.63,1560 +15942,STANDARD,0,"Mineral Point",,,PA,"Cambria County",America/New_York,814,NA,US,40.38,-78.82,1850 +15943,STANDARD,0,"Nanty Glo",,,PA,"Cambria County",America/New_York,814,NA,US,40.47,-78.83,3080 +15944,STANDARD,0,"New Florence",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.37,-79.07,2710 +15945,STANDARD,0,Parkhill,Johnstown,,PA,"Cambria County",America/New_York,814,NA,US,40.36,-78.87,210 +15946,STANDARD,0,Portage,Puritan,,PA,"Cambria County",America/New_York,814,NA,US,40.38,-78.67,5810 +15948,"PO BOX",0,Revloc,,,PA,"Cambria County",America/New_York,814,NA,US,40.49,-78.76,580 +15949,STANDARD,0,Robinson,,,PA,"Indiana County",America/New_York,724,NA,US,40.41,-79.13,610 +15951,"PO BOX",0,"Saint Michael",,,PA,"Cambria County",America/New_York,814,NA,US,40.33,-78.77,585 +15952,STANDARD,0,Salix,,,PA,"Cambria County",America/New_York,814,NA,US,40.3,-78.78,1220 +15953,STANDARD,0,Seanor,,,PA,"Somerset County",America/New_York,814,NA,US,40.21,-78.89,78 +15954,STANDARD,0,Seward,,"Boltz, Cramer",PA,"Indiana County",America/New_York,814,NA,US,40.41,-79.02,1720 +15955,STANDARD,0,Sidman,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.7,1700 +15956,STANDARD,0,"South Fork",,Ehrenfeld,PA,"Cambria County",America/New_York,814,NA,US,40.36,-78.79,2440 +15957,STANDARD,0,Strongstown,,,PA,"Indiana County",America/New_York,,NA,US,40.56,-78.91,370 +15958,STANDARD,0,Summerhill,,,PA,"Cambria County",America/New_York,814,NA,US,40.39,-78.73,1950 +16670,STANDARD,0,Queen,,,PA,"Bedford County",America/New_York,814,NA,US,40.26,-78.51,181 +16671,"PO BOX",0,Ramey,,,PA,"Clearfield County",America/New_York,814,NA,US,40.8,-78.39,526 +16672,"PO BOX",0,Riddlesburg,,,PA,"Bedford County",America/New_York,814,NA,US,40.17,-78.24,158 +16673,STANDARD,0,"Roaring Spring","Bakers Summit, Roaring Spg",,PA,"Blair County",America/New_York,814,NA,US,40.33,-78.39,4810 +16674,STANDARD,0,Robertsdale,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.17,-78.09,510 +16675,"PO BOX",0,"Saint Boniface","St Boniface",,PA,"Cambria County",America/New_York,814,NA,US,40.66,-78.68,91 +16677,"PO BOX",0,"Sandy Ridge",,,PA,"Centre County",America/New_York,814,NA,US,40.81,-78.24,420 +16678,STANDARD,0,Saxton,,,PA,"Bedford County",America/New_York,814,NA,US,40.21,-78.24,2270 +16679,STANDARD,0,"Six Mile Run",,,PA,"Bedford County",America/New_York,814,NA,US,40.15,-78.2,650 +16680,STANDARD,0,Smithmill,,,PA,"Clearfield County",America/New_York,814,NA,US,40.74,-78.38,440 +16681,"PO BOX",0,Smokerun,,,PA,"Clearfield County",America/New_York,814,NA,US,40.8,-78.43,170 +16682,STANDARD,0,Sproul,,,PA,"Blair County",America/New_York,814,NA,US,40.27,-78.46,144 +16683,STANDARD,0,"Spruce Creek",,,PA,"Huntingdon County",America/New_York,814,NA,US,40.62,-78.14,340 +16684,"PO BOX",0,Tipton,,,PA,"Blair County",America/New_York,814,NA,US,40.63,-78.29,322 +16685,STANDARD,0,Todd,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.29,-78.08,270 +16686,STANDARD,0,Tyrone,Birmingham,,PA,"Blair County",America/New_York,814,NA,US,40.67,-78.24,12130 +16689,STANDARD,0,Waterfall,,,PA,"Fulton County",America/New_York,814,NA,US,40.12,-78.06,370 +16691,STANDARD,0,"Wells Tannery",,,PA,"Fulton County",America/New_York,814,NA,US,40.09,-78.18,300 +16692,STANDARD,0,Westover,,,PA,"Clearfield County",America/New_York,814,NA,US,40.74,-78.68,690 +16693,STANDARD,0,Williamsburg,Ganister,,PA,"Blair County",America/New_York,814,NA,US,40.46,-78.2,3680 +16694,"PO BOX",0,Wood,,,PA,"Bedford County",America/New_York,814,NA,US,40.16,-78.15,232 +16695,STANDARD,0,Woodbury,,,PA,"Bedford County",America/New_York,814,NA,US,40.22,-78.36,910 +16698,UNIQUE,0,Houtzdale,,"Sci Houtzdale",PA,"Clearfield County",America/New_York,814,NA,US,40.82,-78.35,0 +16699,UNIQUE,0,Cresson,,"Sci Cresson",PA,"Cambria County",America/New_York,814,NA,US,40.45,-78.56,13 +16701,STANDARD,0,Bradford,,"Kendall Creek",PA,"McKean County",America/New_York,814,NA,US,41.96,-78.64,13140 +16720,STANDARD,0,Austin,,,PA,"Potter County",America/New_York,814,NA,US,41.63,-78.08,1050 +16724,"PO BOX",0,Crosby,,,PA,"McKean County",America/New_York,814,NA,US,41.73,-78.37,152 +16725,"PO BOX",0,"Custer City",,,PA,"McKean County",America/New_York,814,NA,US,41.91,-78.66,272 +16726,STANDARD,0,Cyclone,Ormsby,,PA,"McKean County",America/New_York,814,NA,US,41.82,-78.58,460 +16727,STANDARD,0,"Derrick City",,,PA,"McKean County",America/New_York,814,NA,US,41.97,-78.55,330 +16728,STANDARD,0,"De Young",,,PA,"Elk County",America/New_York,814,NA,US,41.57,-78.91,27 +16729,STANDARD,0,"Duke Center",,,PA,"McKean County",America/New_York,814,NA,US,41.96,-78.5,710 +16730,"PO BOX",0,"East Smethport","E Smethport",,PA,"McKean County",America/New_York,814,NA,US,41.82,-78.42,180 +16731,STANDARD,0,Eldred,,,PA,"McKean County",America/New_York,814,NA,US,41.95,-78.38,2410 +16732,STANDARD,0,Gifford,,,PA,"McKean County",America/New_York,814,NA,US,41.86,-78.62,320 +16733,"PO BOX",0,"Hazel Hurst",,,PA,"McKean County",America/New_York,814,NA,US,41.7,-78.58,193 +16734,"PO BOX",0,"James City",,,PA,"Elk County",America/New_York,814,NA,US,41.62,-78.84,267 +16735,STANDARD,0,Kane,,"East Kane",PA,"McKean County",America/New_York,814,NA,US,41.66,-78.8,5130 +16738,STANDARD,0,"Lewis Run",,,PA,"McKean County",America/New_York,814,NA,US,41.87,-78.66,1120 +16740,STANDARD,0,"Mount Jewett",Westline,,PA,"McKean County",America/New_York,814,NA,US,41.72,-78.64,970 +16743,STANDARD,0,"Port Allegany",,"Pt Allegany",PA,"McKean County",America/New_York,814,NA,US,41.81,-78.27,3430 +16744,STANDARD,0,Rew,,,PA,"McKean County",America/New_York,814,NA,US,41.87,-78.57,250 +16745,STANDARD,0,Rixford,,,PA,"McKean County",America/New_York,814,NA,US,41.92,-78.45,490 +16746,STANDARD,0,Roulette,,,PA,"Potter County",America/New_York,814,NA,US,41.77,-78.16,1000 +16748,STANDARD,0,Shinglehouse,,"Millport, Shinglehse",PA,"Potter County",America/New_York,814,NA,US,41.96,-78.19,2370 +16749,STANDARD,0,Smethport,,"Keating Summit",PA,"McKean County",America/New_York,814,NA,US,41.8,-78.44,3320 +16750,STANDARD,0,Turtlepoint,,,PA,"McKean County",America/New_York,814,NA,US,41.88,-78.32,390 +16801,STANDARD,0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-77.85,22290 +16802,STANDARD,0,"University Park","Penn St Univ, Penn State University, State College, University Pk",,PA,"Centre County",America/New_York,814,NA,US,40.8,-77.86,260 +16803,STANDARD,0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.8,-77.9,14990 +16804,"PO BOX",0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-77.85,395 +16805,"PO BOX",0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-77.85,132 +16820,STANDARD,0,Aaronsburg,,,PA,"Centre County",America/New_York,814,NA,US,40.86,-77.39,1050 +16821,STANDARD,0,Allport,,,PA,"Clearfield County",America/New_York,814,NA,US,40.96,-78.2,320 +16822,STANDARD,0,"Beech Creek",,,PA,"Clinton County",America/New_York,570,NA,US,41.07,-77.58,2050 +16823,STANDARD,0,Bellefonte,"Hublersburg, Pleasant Gap, Wingate",,PA,"Centre County",America/New_York,814,NA,US,40.91,-77.76,21900 +16825,"PO BOX",0,Bigler,,,PA,"Clearfield County",America/New_York,814,NA,US,40.99,-78.32,343 +16826,"PO BOX",0,Blanchard,,,PA,"Centre County",America/New_York,814,NA,US,41.05,-77.58,931 +16827,STANDARD,0,Boalsburg,,,PA,"Centre County",America/New_York,814,NA,US,40.77,-77.79,4850 +16828,STANDARD,0,"Centre Hall",,,PA,"Centre County",America/New_York,814,NA,US,40.84,-77.68,4110 +16829,STANDARD,0,Clarence,,,PA,"Centre County",America/New_York,814,NA,US,41.08,-77.87,650 +16830,STANDARD,0,Clearfield,,,PA,"Clearfield County",America/New_York,814,NA,US,41.02,-78.43,11060 +16832,STANDARD,0,Coburn,,,PA,"Centre County",America/New_York,814,NA,US,40.85,-77.49,470 +16833,STANDARD,0,Curwensville,,,PA,"Clearfield County",America/New_York,814,NA,US,40.97,-78.51,4580 +16834,"PO BOX",0,Drifting,,,PA,"Clearfield County",America/New_York,814,NA,US,41.05,-78.09,321 +16835,"PO BOX",0,Fleming,,,PA,"Centre County",America/New_York,814,NA,US,40.91,-77.88,297 +16836,STANDARD,0,Frenchville,,,PA,"Clearfield County",America/New_York,814,NA,US,41.14,-78.24,1000 +16837,STANDARD,0,"Glen Richey",,,PA,"Clearfield County",America/New_York,814,NA,US,40.95,-78.47,201 +16838,STANDARD,0,Grampian,,,PA,"Clearfield County",America/New_York,814,NA,US,40.96,-78.61,1570 +16839,STANDARD,0,Grassflat,,,PA,"Clearfield County",America/New_York,814,NA,US,41.01,-78.11,400 +16840,STANDARD,0,"Hawk Run",,,PA,"Clearfield County",America/New_York,814,NA,US,40.92,-78.2,450 +16841,STANDARD,0,Howard,,,PA,"Centre County",America/New_York,814,NA,US,41.01,-77.65,4710 +16843,"PO BOX",0,Hyde,,,PA,"Clearfield County",America/New_York,814,NA,US,41,-78.47,715 +16844,STANDARD,0,Julian,,,PA,"Centre County",America/New_York,814,NA,US,40.91,-77.93,2420 +16845,STANDARD,0,Karthaus,,,PA,"Clearfield County",America/New_York,814,NA,US,41.12,-78.02,580 +16847,"PO BOX",0,Kylertown,,,PA,"Clearfield County",America/New_York,814,NA,US,41,-78.17,378 +16848,"PO BOX",0,Lamar,,,PA,"Clinton County",America/New_York,570,NA,US,41.01,-77.54,424 +16849,"PO BOX",0,Lanse,,,PA,"Clearfield County",America/New_York,814,NA,US,40.97,-78.13,384 +16850,STANDARD,0,"Lecontes Mills","Lecontes Mls",,PA,"Clearfield County",America/New_York,814,NA,US,41.07,-78.26,64 +16851,"PO BOX",0,Lemont,,,PA,"Centre County",America/New_York,814,NA,US,40.82,-77.79,1221 +16852,STANDARD,0,Madisonburg,,,PA,"Centre County",America/New_York,814,NA,US,40.94,-77.49,340 +16853,"PO BOX",0,Milesburg,,,PA,"Centre County",America/New_York,814,NA,US,40.94,-77.79,1437 +16854,STANDARD,0,Millheim,,,PA,"Centre County",America/New_York,814,NA,US,40.89,-77.47,980 +16855,"PO BOX",0,"Mineral Springs","Mineral Spgs",,PA,"Clearfield County",America/New_York,814,NA,US,41,-78.38,289 +16856,"PO BOX",0,Mingoville,,,PA,"Centre County",America/New_York,814,NA,US,40.93,-77.74,228 +16858,STANDARD,0,Morrisdale,,,PA,"Clearfield County",America/New_York,814,NA,US,41.01,-78.22,3330 +16859,STANDARD,0,Moshannon,,,PA,"Centre County",America/New_York,814,NA,US,41.02,-78.04,410 +16860,STANDARD,0,Munson,,,PA,"Clearfield County",America/New_York,814,NA,US,40.94,-78.18,300 +16861,STANDARD,0,"New Millport",,,PA,"Clearfield County",America/New_York,814,NA,US,40.86,-78.52,290 +16863,STANDARD,0,Olanta,,,PA,"Clearfield County",America/New_York,814,NA,US,40.9,-78.5,620 +16864,STANDARD,0,Orviston,,,PA,"Centre County",America/New_York,814,NA,US,41.08,-77.65,71 +16865,STANDARD,0,"Pennsylvania Furnace","Pa Furnace",,PA,"Centre County",America/New_York,814,NA,US,40.72,-77.98,1580 +16866,STANDARD,0,Philipsburg,,,PA,"Centre County",America/New_York,814,NA,US,40.89,-78.21,6710 +16868,"PO BOX",0,"Pine Grove Mills","Pine Grv Mls",,PA,"Centre County",America/New_York,814,NA,US,40.73,-77.88,865 +16870,STANDARD,0,"Port Matilda",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-78.05,7360 +16871,STANDARD,0,Pottersdale,,,PA,"Clearfield County",America/New_York,570,NA,US,41.2,-78.02,53 +16872,STANDARD,0,Rebersburg,,,PA,"Centre County",America/New_York,814,NA,US,40.97,-77.36,1450 +16873,"PO BOX",0,Shawville,,,PA,"Clearfield County",America/New_York,814,NA,US,41.07,-78.35,106 +16874,STANDARD,0,"Snow Shoe",,,PA,"Centre County",America/New_York,814,NA,US,41.02,-77.95,1190 +16875,STANDARD,0,"Spring Mills",,,PA,"Centre County",America/New_York,814,NA,US,40.86,-77.57,3760 +16876,"PO BOX",0,Wallaceton,,,PA,"Clearfield County",America/New_York,814,NA,US,40.96,-78.29,316 +16877,STANDARD,0,"Warriors Mark",,,PA,"Huntingdon County",America/New_York,814,NA,US,40.7,-78.11,1620 +16878,STANDARD,0,"West Decatur",,,PA,"Clearfield County",America/New_York,814,NA,US,40.94,-78.36,1680 +16879,STANDARD,0,Winburne,,,PA,"Clearfield County",America/New_York,814,NA,US,40.97,-78.15,330 +16881,STANDARD,0,Woodland,,,PA,"Clearfield County",America/New_York,814,NA,US,41.03,-78.32,1870 +16882,STANDARD,0,Woodward,,,PA,"Centre County",America/New_York,814,NA,US,40.92,-77.3,420 +16901,STANDARD,0,Wellsboro,,"Ansonia, Asaph, Charleston, Delmar, Draper, Duncan, Kennedy, Knapp, Shippen, Stokesdale, Stonyfork",PA,"Tioga County",America/New_York,570,NA,US,41.74,-77.3,8970 +16910,STANDARD,0,Alba,Snydertown,Snydertwn,PA,"Bradford County",America/New_York,570,NA,US,41.7,-76.82,39 +16911,"PO BOX",0,Arnot,,Bloss,PA,"Tioga County",America/New_York,570,NA,US,41.66,-77.14,339 +16912,STANDARD,0,Blossburg,,Blakes,PA,"Tioga County",America/New_York,570,NA,US,41.68,-77.06,1810 +16914,STANDARD,0,"Columbia Cross Roads","Columbia X Rd","Austinville, Big Pond, Col X Rds, Snedekerville, Wetona",PA,"Bradford County",America/New_York,570,NA,US,41.83,-76.8,2090 +16915,STANDARD,0,Coudersport,Oswayo,"Colesburg, Eulalia, Homer, Inez, Ladona, Mina, Odin, Summit, Sweden, Sweden Valley",PA,"Potter County",America/New_York,814,NA,US,41.77,-78.01,4890 +16917,STANDARD,0,Covington,,Covngtn,PA,"Tioga County",America/New_York,570,NA,US,41.74,-77.07,1270 +16918,STANDARD,1,Cowanesque,,,PA,"Tioga County",America/New_York,814,NA,US,41.93,-77.49,41 +16920,STANDARD,0,Elkland,,,PA,"Tioga County",America/New_York,814,NA,US,41.98,-77.31,1580 +16921,STANDARD,0,Gaines,,"Elk, Manhattan, Marshlands, Rexford, Watrous",PA,"Tioga County",America/New_York,,NA,US,41.78,-77.54,450 +16922,STANDARD,0,Galeton,,"Abbott, Carter Camp, West Branch, West Pike",PA,"Potter County",America/New_York,814,NA,US,41.73,-77.64,1480 +16923,STANDARD,0,Genesee,"North Bingham","Eleven Mile, Ellisburg, Gold, Hickox, Keech, Kinney, Raymond, West Bingham",PA,"Potter County",America/New_York,814,NA,US,41.98,-77.9,1180 +16925,STANDARD,0,Gillett,,"Bentley Creek, Berrytown, Fassett, Mosherville, South Creek, Wells",PA,"Bradford County",America/New_York,570,NA,US,41.95,-76.79,2960 +16926,STANDARD,0,"Granville Summit","Granville Smt","Cowley, Granville Ctr, Windfall",PA,"Bradford County",America/New_York,570,NA,US,41.71,-76.77,750 +16927,STANDARD,0,"Harrison Valley","Harrison Twp, Harrison Vly, Westfield",Harrison,PA,"Potter County",America/New_York,814,NA,US,41.96,-77.66,470 +16928,STANDARD,0,Knoxville,,"Austinburg, Deerfield",PA,"Tioga County",America/New_York,814,NA,US,41.95,-77.43,1140 +16929,STANDARD,0,Lawrenceville,,"E Lawrencevle, Somers Lane",PA,"Tioga County",America/New_York,570,NA,US,41.99,-77.12,2140 +16930,STANDARD,0,Liberty,,"Hartsfield, Sebring",PA,"Tioga County",America/New_York,570,NA,US,41.55,-77.1,1170 +16932,STANDARD,0,Mainesburg,,Sullivan,PA,"Tioga County",America/New_York,570,NA,US,41.78,-76.94,660 +16933,STANDARD,0,Mansfield,,"Bungy, Canoe Camp, Cherry Flats, E Charleston, Kellytown, Lambs Creek, Rutland, Whitneyville",PA,"Tioga County",America/New_York,570,NA,US,41.8,-77.07,4840 +16935,STANDARD,0,"Middlebury Center","Middlebry Ctr","Crooked Creek, Keeneyville, Mdby Center, Middlebury, Niles Valley, Shortsville",PA,"Tioga County",America/New_York,570,NA,US,41.89,-77.3,1090 +16936,STANDARD,0,Millerton,,"Daggett, Jackson Smt, Jobs Corners",PA,"Tioga County",America/New_York,570,NA,US,41.98,-76.95,1870 +16937,STANDARD,0,Mills,,,PA,"Potter County",America/New_York,814,NA,US,41.97,-77.71,193 +16938,STANDARD,0,Morris,,"Blackwell, Hoytville, Lorenton, Nauvoo, Oregon Hill, Plank",PA,"Tioga County",America/New_York,570,NA,US,41.58,-77.37,650 +16939,"PO BOX",0,"Morris Run",,,PA,"Tioga County",America/New_York,,NA,US,41.66,-77.04,259 +16940,"PO BOX",0,Nelson,,,PA,"Tioga County",America/New_York,,NA,US,41.99,-77.24,290 +16941,STANDARD,0,Genesee,"North Bingham",,PA,"Potter County",America/New_York,814,NA,US,41.99,-77.76,34 +16942,STANDARD,0,Osceola,,,PA,"Tioga County",America/New_York,,NA,US,41.98,-77.38,660 +16943,STANDARD,0,Sabinsville,,"Cathead, Hector, Sunderlinvle",PA,"Tioga County",America/New_York,814,NA,US,41.83,-77.61,420 +16945,"PO BOX",0,Sylvania,,,PA,"Bradford County",America/New_York,570,NA,US,41.8,-76.85,66 +16946,STANDARD,0,Tioga,,,PA,"Tioga County",America/New_York,570,NA,US,41.9,-77.13,2170 +16947,STANDARD,0,Troy,"W Burlington, West Burlington Township",,PA,"Bradford County",America/New_York,570,NA,US,41.78,-76.78,3870 +16948,STANDARD,0,Ulysses,,"Bingham, Brookland, Newfield",PA,"Potter County",America/New_York,814,NA,US,41.9,-77.75,1400 +16950,STANDARD,0,Westfield,"Cowanesque, Harrison Twp, Little Marsh","Brookfield, Elmer, North Fork, Potter Brook",PA,"Tioga County",America/New_York,814,NA,US,41.91,-77.54,2800 +17001,"PO BOX",0,"Camp Hill",,,PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,243 +17002,STANDARD,0,Allensville,,,PA,"Mifflin County",America/New_York,"717,814",NA,US,40.53,-77.81,670 +17003,STANDARD,0,Annville,,"Bellegrove, East Hanover, Ft Indiantown, Harper Tavern, Steelstown, Syner, West Annville",PA,"Lebanon County",America/New_York,717,NA,US,40.33,-76.5,10360 +17004,STANDARD,0,Belleville,,"Alexander Spr, Alexander Springs, Menno, Union Mills",PA,"Mifflin County",America/New_York,"814,717",NA,US,40.6,-77.72,4840 +17005,"PO BOX",0,Berrysburg,,,PA,"Dauphin County",America/New_York,717,NA,US,40.6,-76.81,352 +17006,STANDARD,0,Blain,,,PA,"Perry County",America/New_York,717,NA,US,40.33,-77.51,1060 +17007,STANDARD,0,"Boiling Springs","Boiling Spgs","South Middleton",PA,"Cumberland County",America/New_York,717,NA,US,40.15,-77.13,5840 +17008,"PO BOX",1,Bowmansdale,,,PA,"Cumberland County",America/New_York,717,NA,US,40.23,-77.02,60 +17009,STANDARD,0,Burnham,,,PA,"Mifflin County",America/New_York,717,NA,US,40.63,-77.56,1740 +17010,"PO BOX",0,Campbelltown,,,PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.58,563 +17011,STANDARD,0,"Camp Hill",Shiremanstown,"Camp Hill Brm",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,30950 +17012,UNIQUE,1,"Camp Hill",,"Book Of Month",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,0 +17013,STANDARD,0,Carlisle,"Carlisle Barracks, Carlisle Brks",,PA,"Cumberland County",America/New_York,717,NA,US,40.2,-77.2,30540 +17014,STANDARD,0,Cocolamus,,,PA,"Juniata County",America/New_York,717,NA,US,40.65,-77.1,133 +17015,STANDARD,0,Carlisle,"W Pennsboro, West Pennsboro",,PA,"Cumberland County",America/New_York,717,NA,US,40.15,-77.26,22040 +17016,"PO BOX",0,Cornwall,,"Cornwall Ctr",PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.4,1079 +17017,STANDARD,0,Dalmatia,,,PA,"Northumberland County",America/New_York,717,NA,US,40.65,-76.87,1570 +17018,STANDARD,0,Dauphin,,"Ellendale, Middle Paxton, Singersville, Water Gap",PA,"Dauphin County",America/New_York,717,NA,US,40.36,-76.93,4130 +17019,STANDARD,0,Dillsburg,,"Bermudian, Clear Spring, Siddonsburg",PA,"York County",America/New_York,717,NA,US,40.11,-77.03,17970 +17020,STANDARD,0,Duncannon,,"Cove, Dellville, Perdix, Watts, Wheatfield",PA,"Perry County",America/New_York,717,NA,US,40.41,-77.04,8180 +17021,STANDARD,0,"East Waterford","E Waterford","Ewaterfrd, Ewtrford, Perulack, Scyoc, Spears Grove, Waterloo",PA,"Juniata County",America/New_York,717,NA,US,40.36,-77.67,820 +17022,STANDARD,0,Elizabethtown,,"Aberdeen, Bellaire, Deodate, Elizabthtwn, Etown, West Donegal",PA,"Lancaster County",America/New_York,717,NA,US,40.15,-76.59,27900 +17023,STANDARD,0,Elizabethville,Elizabethvle,Eville,PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.82,3090 +17024,STANDARD,0,Elliottsburg,"Green Park","Erly, Greenpark, Little German, Mansville",PA,"Perry County",America/New_York,717,NA,US,40.41,-77.31,1820 +17025,STANDARD,0,Enola,"E Pennsboro, East Pennsboro","South Enola, W Fairview, West Enola, West Fairview",PA,"Cumberland County",America/New_York,717,NA,US,40.28,-76.93,16860 +17026,STANDARD,0,Fredericksburg,Fredericksbrg,,PA,"Lebanon County",America/New_York,717,NA,US,40.45,-76.42,3570 +17027,"PO BOX",0,Grantham,"Messiah Coll, Messiah College",,PA,"Cumberland County",America/New_York,717,NA,US,40.16,-77,499 +17028,STANDARD,0,Grantville,,Shellsville,PA,"Dauphin County",America/New_York,717,NA,US,40.39,-76.68,3300 +17029,STANDARD,0,Granville,,Anderson,PA,"Mifflin County",America/New_York,,NA,US,40.56,-77.62,290 +17030,STANDARD,0,Gratz,,,PA,"Dauphin County",America/New_York,717,NA,US,40.6,-76.71,680 +17032,STANDARD,0,Halifax,,"Carsonville, Enders, Enterline, Fisherville, Inglenook, Mcclellan, Powells Vly, Reed, Waynesville",PA,"Dauphin County",America/New_York,717,NA,US,40.46,-76.93,7350 +17033,STANDARD,0,Hershey,,"Bachmanville, Derry Church, Palmdale, S Londonderry, Sandbeach, Swatara Sta, Union Deposit",PA,"Dauphin County",America/New_York,717,NA,US,40.28,-76.64,13600 +17034,STANDARD,0,Highspire,,"High Spire",PA,"Dauphin County",America/New_York,717,NA,US,40.21,-76.79,2300 +17035,STANDARD,0,"Honey Grove",,"Mccullochs Ml, Reeds Gap",PA,"Juniata County",America/New_York,717,NA,US,40.42,-77.55,680 +17036,STANDARD,0,Hummelstown,,"Hoernerstown, South Hanover, Stoverdale, Waltonville",PA,"Dauphin County",America/New_York,717,NA,US,40.26,-76.71,23010 +17037,STANDARD,0,Ickesburg,,,PA,"Perry County",America/New_York,717,NA,US,40.43,-77.42,940 +17038,STANDARD,0,Jonestown,,"Bordnersville, Green Point, Jonestwn, Mcgillstown",PA,"Lebanon County",America/New_York,717,NA,US,40.41,-76.48,7510 +17039,"PO BOX",0,Kleinfeltersville,Kleinfeltersv,,PA,"Lebanon County",America/New_York,717,NA,US,40.29,-76.24,124 +17040,STANDARD,0,Landisburg,,"Alinda, Landisbg, Lebo",PA,"Perry County",America/New_York,717,NA,US,40.34,-77.3,2390 +17041,"PO BOX",0,Lawn,,,PA,"Lebanon County",America/New_York,717,NA,US,40.22,-76.54,210 +17042,STANDARD,0,Lebanon,"Cleona, Colebrook, Cornwall Boro, Cornwall Borough","Avon, Avon Heights, Beverly Hts, Buffalo Sprs, Ebenezer, Flintville, Fontana, Heilmandale, Iona, Leb, Mount Wilson, N Cornwall, North Lebanon, Rocherty, South Lebanon Twp",PA,"Lebanon County",America/New_York,717,NA,US,40.34,-76.42,36100 +17043,STANDARD,0,Lemoyne,Wormleysburg,"Washington Ht, Wormleysbg",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.89,5410 +17044,STANDARD,0,Lewistown,,"Bratton, Colonial Hill, Hawstone, Horningford, Juniata Terr, Klondyke, Lewistown Jun, Lewistwn, Longfellow, Maitland, Paintersville, Strodes Mills, Vira",PA,"Mifflin County",America/New_York,717,NA,US,40.59,-77.57,17590 +17045,STANDARD,0,Liverpool,,"Mount Patrick, Oriental",PA,"Perry County",America/New_York,717,NA,US,40.6,-77,3070 +17046,STANDARD,0,Lebanon,"Swatara Township, Swatara Twp",,PA,"Lebanon County",America/New_York,717,NA,US,40.38,-76.43,28510 +17047,STANDARD,0,Loysville,,"Andersonburg, Bixler, Cisna Run, Couchtown, Fort Robinson, Ne Madison, Sw Madison",PA,"Perry County",America/New_York,717,NA,US,40.38,-77.33,2470 +17048,STANDARD,0,Lykens,,"Erdman, Loyalton, Specktown",PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.76,3580 +17049,STANDARD,0,"Mc Alisterville","Mc Alistervle","Bunkertown, Mc Alistervl, Mcalistervle, Swales",PA,"Juniata County",America/New_York,717,NA,US,40.65,-77.28,2990 +17050,STANDARD,0,Mechanicsburg,"Hampden Township, Hampden Twp, Silver Spg Tp, Silver Spring Township","Defense Depot, Goodhope, Hampden Station, Hogestown, Mech, Mechancsbrg, Mechbg, Navy Ships, Navy Sup Dpt, Trindle Sprg, Wertzville",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-77.02,40670 +17051,STANDARD,0,"Mc Veytown",,"Atkinsons Mills, Atkinsons Mls, Little Kansas, Mcveytown, Mcveytwn, Ryde",PA,"Mifflin County",America/New_York,717,NA,US,40.49,-77.74,3970 +17052,STANDARD,0,"Mapleton Depot","Mapleton Dep","Bankstown, Barneytown, Birdville, Knightsville",PA,"Huntingdon County",America/New_York,814,NA,US,40.37,-77.97,1420 +17053,STANDARD,0,Marysville,,,PA,"Perry County",America/New_York,717,NA,US,40.33,-76.93,4900 +17054,"PO BOX",0,Mattawana,,,PA,"Mifflin County",America/New_York,,NA,US,40.49,-77.72,185 +17055,STANDARD,0,Mechanicsburg,Bowmansdale,"Andersontown, Brandtsville, Defense Depot, Lisburn, Locust Point, Mech, Mechancsbrg, Mechbg, Mount Allen, Navy Ships, Navy Sup Dpt, Shepherdstown, Upper Allen, Williams Grv, Winding Hill",PA,"Cumberland County",America/New_York,717,NA,US,40.21,-77,37660 +17056,"PO BOX",0,Mexico,,,PA,"Juniata County",America/New_York,717,NA,US,40.54,-77.35,154 +17057,STANDARD,0,Middletown,,"H I A, Hbg Inter Airp, Londonderry, Lower Swatara, Mdt, Middletwn, Midltwn, Royalton, Shope Gardens",PA,"Dauphin County",America/New_York,717,NA,US,40.19,-76.7,19240 +17058,STANDARD,0,Mifflin,,"Doyles Mills, Mccoysville, Nook",PA,"Juniata County",America/New_York,717,NA,US,40.51,-77.55,1490 +17059,STANDARD,0,Mifflintown,,"Arch Rock, Cuba Mills, Denholm, East Salem, Fermanagh, Jericho Mills, Macedonia, Van Wert, Walker, Zooks Dam",PA,"Juniata County",America/New_York,717,NA,US,40.57,-77.39,6890 +17060,STANDARD,0,"Mill Creek",,"Mill Crk, Mlcreek",PA,"Huntingdon County",America/New_York,814,NA,US,40.43,-77.92,1060 +17061,STANDARD,0,Millersburg,,"Killinger, Lenkerville, Millersbg, Rife, Upper Paxton",PA,"Dauphin County",America/New_York,717,NA,US,40.54,-76.95,6160 +17062,STANDARD,0,Millerstown,,"Donnally Mill, Eshcol, Knousetown, Reward, Seven Stars",PA,"Perry County",America/New_York,717,NA,US,40.55,-77.15,3830 +17063,STANDARD,0,Milroy,,"Locke Mills, Naginey, Roseann, Siglerville",PA,"Mifflin County",America/New_York,717,NA,US,40.71,-77.58,3110 +17064,"PO BOX",0,"Mount Gretna",,"Mt Gretna, Mt Gretna Hts",PA,"Lebanon County",America/New_York,717,NA,US,40.24,-76.47,918 +17065,STANDARD,0,"Mount Holly Springs","Mt Holly Spgs","Mount Holly Spgs, Mt Holly Springs, Upper Mill",PA,"Cumberland County",America/New_York,717,NA,US,40.11,-77.18,3920 +17066,STANDARD,0,"Mount Union",,"Aughwick, Lucy Furnace, Mt Union, Silver Ford",PA,"Huntingdon County",America/New_York,814,NA,US,40.38,-77.88,4230 +17067,STANDARD,0,Myerstown,,"Frystown, Greble, Millardsville, Myerstwn, Reistville",PA,"Lebanon County",America/New_York,717,NA,US,40.37,-76.3,14860 +17068,STANDARD,0,"New Bloomfield","New Bloomfld","Mecks Corner, Paradise Park, Perry Village",PA,"Perry County",America/New_York,717,NA,US,40.41,-77.18,3830 +17069,"PO BOX",0,"New Buffalo",,,PA,"Perry County",America/New_York,717,NA,US,40.45,-76.97,221 +17070,STANDARD,0,"New Cumberland","New Cumberlnd","Drexel Hills, Fair Acres, Frogtown, Marsh Run, N Cumberld, New Cmbrlnd, New Cumb, New Cumberland Army D, New Market, Newcmbrlnd, Nw Cumb, Nw Cumberland, Nw Cumberlnd, Rudytown, Westfield Ter",PA,"Cumberland County",America/New_York,717,NA,US,40.23,-76.87,15670 +17071,"PO BOX",0,"New Germantown","New Germanton",Toboyne,PA,"Perry County",America/New_York,717,NA,US,40.3,-77.6,55 +17072,"PO BOX",0,"New Kingstown",,,PA,"Cumberland County",America/New_York,717,NA,US,40.23,-77.08,260 +17073,STANDARD,0,Newmanstown,,"Millbach, Millbach Sprs, Sheridan, Stricklerstwn",PA,"Lebanon County",America/New_York,717,NA,US,40.35,-76.21,5720 +17074,STANDARD,0,Newport,,"Bailey, East Newport, Everhartville, Howe, Mannsville, Markelsville, Montgomery Fy, Newprt, Nwprt, Saville, Walnut Grove, Wila",PA,"Perry County",America/New_York,717,NA,US,40.47,-77.13,6670 +17075,"PO BOX",0,"Newton Hamilton","Newton Hamltn","Newtn Hamltn",PA,"Mifflin County",America/New_York,,NA,US,40.39,-77.83,366 +17076,STANDARD,0,"Oakland Mills",,,PA,"Juniata County",America/New_York,717,NA,US,40.62,-77.31,129 +17077,"PO BOX",0,Ono,,,PA,"Lebanon County",America/New_York,717,NA,US,40.4,-76.54,225 +17078,STANDARD,0,Palmyra,,"Coffeetown, N Londonderry, Upper Lawn",PA,"Lebanon County",America/New_York,717,NA,US,40.3,-76.59,22180 +17080,"PO BOX",0,Pillow,,,PA,"Dauphin County",America/New_York,717,NA,US,40.64,-76.8,335 +17081,"PO BOX",0,Plainfield,,"Wolfs X Rds",PA,"Cumberland County",America/New_York,717,NA,US,40.2,-77.28,377 +17082,STANDARD,0,"Port Royal",,"Academia, Beale, Old Port, Pleasantview, Pt Royal, Seven Pines, Spruce Hill, Turbett",PA,"Juniata County",America/New_York,717,NA,US,40.53,-77.39,3150 +17083,"PO BOX",0,Quentin,,,PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.44,231 +17084,STANDARD,0,Reedsville,,"Barrville, Gardenview, Shraders",PA,"Mifflin County",America/New_York,717,NA,US,40.68,-77.63,4190 +17085,"PO BOX",0,Rexmont,,,PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.39,214 +17086,STANDARD,0,Richfield,,"Evendale, West Perry",PA,"Juniata County",America/New_York,717,NA,US,40.69,-77.12,2140 +17087,STANDARD,0,Richland,,,PA,"Lebanon County",America/New_York,717,NA,US,40.44,-76.28,2640 +17088,"PO BOX",0,Schaefferstown,Schaefferstwn,,PA,"Lebanon County",America/New_York,717,NA,US,40.3,-76.29,830 +17089,UNIQUE,0,"Camp Hill",,"Blue Shield, High Mark Blue Shield",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,0 +17090,STANDARD,0,"Shermans Dale",,Shermansdale,PA,"Perry County",America/New_York,717,NA,US,40.33,-77.19,4880 +17091,UNIQUE,1,Lebanon,Genco,,PA,"Lebanon County",America/New_York,717,NA,US,40.23,-76.92,0 +17093,"PO BOX",0,Summerdale,,,PA,"Cumberland County",America/New_York,717,NA,US,40.31,-76.93,743 +17094,STANDARD,0,Thompsontown,,"Locust Run, Maze",PA,"Juniata County",America/New_York,717,NA,US,40.56,-77.23,2250 +17097,"PO BOX",0,Wiconisco,,,PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.68,889 +17098,STANDARD,0,Williamstown,,"Green Fields, Williams",PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.61,2050 +17099,STANDARD,0,Yeagertown,,Yeagertwn,PA,"Mifflin County",America/New_York,717,NA,US,40.64,-77.58,1020 +17101,STANDARD,0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.26,-76.89,1420 +17102,STANDARD,0,Harrisburg,,"Hbg, West End",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.91,5800 +17103,STANDARD,0,Harrisburg,Penbrook,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,10670 +17104,STANDARD,0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.25,-76.86,16650 +17105,"PO BOX",0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,1109 +17106,"PO BOX",0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,340 +17107,UNIQUE,0,Harrisburg,,"Hbg, Usps Official",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17108,"PO BOX",0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,191 +17109,STANDARD,0,Harrisburg,"Lower Paxton, Penbrook",,PA,"Dauphin County",America/New_York,717,NA,US,40.29,-76.82,22790 +17110,STANDARD,0,Harrisburg,,,PA,"Dauphin County",America/New_York,717,NA,US,40.32,-76.89,24330 +17111,STANDARD,0,Harrisburg,"Paxtang, Swatara",,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.79,32150 +17112,STANDARD,0,Harrisburg,"Linglestown, Lower Paxton, Paxtonia, West Hanover",,PA,"Dauphin County",America/New_York,717,NA,US,40.37,-76.78,35400 +17113,STANDARD,0,Harrisburg,"Bressler, Oberlin, Steelton",,PA,"Dauphin County",America/New_York,717,NA,US,40.23,-76.83,10260 +17120,UNIQUE,0,Harrisburg,,"Hbg, State Of Pennsylvania",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17121,UNIQUE,0,Harrisburg,,"Hbg, State Employment Security",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17122,UNIQUE,0,Harrisburg,,"Bureau Of Motor Vehicles, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17123,UNIQUE,0,Harrisburg,,"Hbg, Traffic Safety",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17124,UNIQUE,0,Harrisburg,,"Hbg, State Liquor Control",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17125,UNIQUE,0,Harrisburg,,"Hbg, State General Services",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17126,UNIQUE,0,Harrisburg,,"Hbg, State Dept Of Education",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17127,UNIQUE,0,Harrisburg,,"Department Of Revenue, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17128,UNIQUE,0,Harrisburg,,"Department Of Revenue, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17129,STANDARD,0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17130,UNIQUE,0,Harrisburg,,"Hbg, Pheaa",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17140,UNIQUE,0,Harrisburg,,"Blue Shield, Hbg, Pa Blue Shield",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17177,UNIQUE,0,Harrisburg,,"Blue Cross, Capital Blue Cross, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17201,STANDARD,0,Chambersburg,,"Aqua, Beautiful, Cheesetown, Clay Hill, Duffield, Franklin Furn, Greenvillage, Guilford Sprs, Guilford Township, Housum, Jackson Hall, Kauffman, Kerrstown, Kerrstown Sq, Letterkenny Army Depo, New Franklin, Nyesville, Pond Bank, Red Bridge, Stoufferstown, Sunbeam, Turkeyfoot",PA,"Franklin County",America/New_York,717,NA,US,39.93,-77.65,24510 +17202,STANDARD,0,Chambersburg,"Guilford Township, Guilford Twp",,PA,"Franklin County",America/New_York,717,NA,US,39.92,-77.71,30020 +17210,"PO BOX",0,Amberson,,,PA,"Franklin County",America/New_York,717,NA,US,40.21,-77.66,233 +17211,STANDARD,0,Artemas,,"Inglesmith, Mann",PA,"Bedford County",America/New_York,814,NA,US,39.76,-78.4,360 +17212,STANDARD,0,"Big Cove Tannery","Big Cove Tann",,PA,"Fulton County",America/New_York,717,NA,US,39.84,-78.05,600 +17213,STANDARD,0,"Blairs Mills",,"Lack, Nossville, Richvale, Shade Valley, Tell",PA,"Huntingdon County",America/New_York,814,NA,US,40.25,-77.77,500 +17214,STANDARD,0,"Blue Ridge Summit","Blue Ridge Sm",Charmian,PA,"Franklin County",America/New_York,717,NA,US,39.73,-77.46,990 +17215,STANDARD,0,"Burnt Cabins",,,PA,"Fulton County",America/New_York,,NA,US,40.06,-77.9,280 +17217,STANDARD,0,Concord,,,PA,"Franklin County",America/New_York,717,NA,US,40.25,-77.7,142 +17219,STANDARD,0,Doylesburg,,Fannett,PA,"Franklin County",America/New_York,717,NA,US,40.22,-77.7,440 +17220,STANDARD,0,"Dry Run",,,PA,"Franklin County",America/New_York,717,NA,US,40.19,-77.74,540 +17221,STANDARD,0,Fannettsburg,,Boggstown,PA,"Franklin County",America/New_York,717,NA,US,40.05,-77.83,570 +17222,STANDARD,0,Fayetteville,,,PA,"Franklin County",America/New_York,717,NA,US,39.91,-77.56,10250 +17223,STANDARD,0,"Fort Littleton","Fort Littletn","Ft Littleton",PA,"Fulton County",America/New_York,,NA,US,40.06,-77.93,250 +17224,STANDARD,0,"Fort Loudon",,"Bricker Dev, Cowans Gap, Cowans Vlg, Ft Loudon, Metal, Richmond Furn, Tuscarora Hts",PA,"Franklin County",America/New_York,717,NA,US,39.97,-77.9,1580 +17225,STANDARD,0,Greencastle,,"Bino, Cosytown, Mason Dixon, Milnor, Upton, Waynecastle, Welsh Run, Worleytown",PA,"Franklin County",America/New_York,717,NA,US,39.79,-77.72,18930 +17228,STANDARD,0,Harrisonville,,"Gracey, Licking Creek, Saluvia",PA,"Fulton County",America/New_York,717,NA,US,39.97,-78.08,980 +17229,STANDARD,0,Hustontown,,Hustontwn,PA,"Fulton County",America/New_York,717,NA,US,40.08,-78.01,1070 +17231,"PO BOX",0,Lemasters,,,PA,"Franklin County",America/New_York,717,NA,US,39.85,-77.84,248 +17232,STANDARD,0,Lurgan,,,PA,"Franklin County",America/New_York,717,NA,US,40.13,-77.64,114 +17233,STANDARD,0,"Mc Connellsburg","Mc Connellsbg","Andover, Cito, Knobsville, Mcconnellsburg, Webster Mills",PA,"Fulton County",America/New_York,717,NA,US,39.93,-77.99,4590 +17235,"PO BOX",0,Marion,,,PA,"Franklin County",America/New_York,717,NA,US,39.86,-77.7,742 +17236,STANDARD,0,Mercersburg,,"Africa, Charlestown, Claylick, Cove Gap, Dickey, Kasiesville, Markes, Peters, Shimpstown, Sylvan",PA,"Franklin County",America/New_York,717,NA,US,39.83,-77.9,7990 +17237,STANDARD,0,"Mont Alto",,,PA,"Franklin County",America/New_York,717,NA,US,39.84,-77.54,1510 +17238,STANDARD,0,Needmore,,"Belfast, Sipes Mill",PA,"Fulton County",America/New_York,717,NA,US,39.86,-78.15,1650 +17239,STANDARD,0,Neelyton,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.13,-77.85,210 +17240,STANDARD,0,Newburg,,,PA,"Cumberland County",America/New_York,717,NA,US,40.13,-77.55,3380 +17241,STANDARD,0,Newville,,"Bloserville, Cobblerville, Dickinson, Doubling Gap, Entlerville, Greenspring, Hays Grove, Heberlig, Little Wash, Lower Mifflin, Mccrea, North Newton, Upper Frankfd, Upper Mifflin",PA,"Cumberland County",America/New_York,717,NA,US,40.17,-77.4,11250 +17243,STANDARD,0,Orbisonia,,"Blacklog, Maddensville, Meadow Gap",PA,"Huntingdon County",America/New_York,814,NA,US,40.24,-77.89,1150 +17244,STANDARD,0,Orrstown,,,PA,"Franklin County",America/New_York,717,NA,US,40.05,-77.6,2260 +17246,STANDARD,0,"Pleasant Hall",,,PA,"Franklin County",America/New_York,717,NA,US,40.05,-77.66,210 +17247,"PO BOX",0,Quincy,,,PA,"Franklin County",America/New_York,717,NA,US,39.8,-77.58,518 +17249,"PO BOX",0,"Rockhill Furnace","Rockhill Furn",,PA,"Huntingdon County",America/New_York,814,NA,US,40.24,-77.9,418 +17250,"PO BOX",0,Rouzerville,,,PA,"Franklin County",America/New_York,717,NA,US,39.74,-77.52,358 +17251,"PO BOX",0,Roxbury,,,PA,"Franklin County",America/New_York,717,NA,US,40.13,-77.69,268 +17252,STANDARD,0,"Saint Thomas",,"St Thomas",PA,"Franklin County",America/New_York,717,NA,US,39.92,-77.8,3520 +17253,"PO BOX",0,Saltillo,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.21,-78.01,333 +17254,"PO BOX",0,Scotland,,,PA,"Franklin County",America/New_York,717,NA,US,39.97,-77.59,507 +17255,STANDARD,0,"Shade Gap",,,PA,"Huntingdon County",America/New_York,814,NA,US,40.18,-77.86,930 +17256,"PO BOX",0,"Shady Grove",,,PA,"Franklin County",America/New_York,717,NA,US,39.78,-77.68,263 +17257,STANDARD,0,Shippensburg,,"Cleversburg, Lees Cross Rd, Mainsville, Middle Spring, Mongul, Mowersville, Pinola, Stoughstown, Tusculam",PA,"Cumberland County",America/New_York,717,NA,US,40.04,-77.52,23390 +17260,STANDARD,0,Shirleysburg,"Mount Union",,PA,"Huntingdon County",America/New_York,814,NA,US,40.29,-77.87,1070 +17261,"PO BOX",0,"South Mountain","S Mountain",,PA,"Franklin County",America/New_York,717,NA,US,39.86,-77.51,484 +17262,STANDARD,0,"Spring Run",,,PA,"Franklin County",America/New_York,717,NA,US,40.15,-77.71,1020 +17263,"PO BOX",0,"State Line",,,PA,"Franklin County",America/New_York,717,NA,US,39.73,-77.72,731 +17264,STANDARD,0,"Three Springs",,"Cherry Grove, Pogue, Selea",PA,"Huntingdon County",America/New_York,814,NA,US,40.19,-77.98,2110 +17265,STANDARD,0,Upperstrasburg,Upperstrasbrg,"Upper Strasbg",PA,"Franklin County",America/New_York,717,NA,US,40.06,-77.76,430 +17266,STANDARD,0,"Walnut Bottom",,"South Newton",PA,"Cumberland County",America/New_York,717,NA,US,40.09,-77.41,520 +17267,STANDARD,0,Warfordsburg,,"Amaranth, Buck Valley, Dott, Stoneybreak",PA,"Fulton County",America/New_York,717,NA,US,39.77,-78.2,2570 +17268,STANDARD,0,Waynesboro,,"Altenwald, Biesecker Gap, Cress, Eastland Hill, Fiveforks, Fox Hill, Glen Forney, Good, Pen Mar, Pennersville, Polktown, Roadside, Tomstown, Wayne Heights, Weltys",PA,"Franklin County",America/New_York,717,NA,US,39.75,-77.58,27050 +17270,"PO BOX",1,Williamson,,,PA,"Franklin County",America/New_York,717,NA,US,39.85,-77.8,161 +17271,STANDARD,0,"Willow Hill",,,PA,"Franklin County",America/New_York,717,NA,US,40.11,-77.77,440 +17272,"PO BOX",0,Zullinger,,,PA,"Franklin County",America/New_York,717,NA,US,39.77,-77.62,492 +17301,STANDARD,0,Abbottstown,,,PA,"Adams County",America/New_York,,NA,US,39.88,-76.98,4060 +17302,STANDARD,0,Airville,,"Collinsville, Kyleville, Muddy Creek Forks, Sunnyburn, Woodbine",PA,"York County",America/New_York,717,NA,US,39.82,-76.39,2650 +17303,"PO BOX",0,Arendtsville,,,PA,"Adams County",America/New_York,717,NA,US,39.92,-77.3,864 +17304,STANDARD,0,Aspers,,"Center Mills",PA,"Adams County",America/New_York,717,NA,US,39.97,-77.23,2970 +17306,"PO BOX",0,Bendersville,,,PA,"Adams County",America/New_York,717,NA,US,39.98,-77.25,783 +17307,STANDARD,0,Biglerville,,"Beecherstown, Brysonia, Floradale, Guernsey, Table Rock",PA,"Adams County",America/New_York,717,NA,US,39.93,-77.24,5130 +17309,STANDARD,0,Brogue,,"Shenks Ferry",PA,"York County",America/New_York,717,NA,US,39.86,-76.45,1940 +17310,"PO BOX",0,Cashtown,,,PA,"Adams County",America/New_York,717,NA,US,39.88,-77.34,255 +17311,"PO BOX",0,Codorus,,,PA,"York County",America/New_York,717,NA,US,39.82,-76.84,465 +17312,"PO BOX",0,Craley,,,PA,"York County",America/New_York,717,NA,US,39.95,-76.54,139 +17313,STANDARD,0,Dallastown,Yoe,,PA,"York County",America/New_York,717,NA,US,39.89,-76.64,9590 +17314,STANDARD,0,Delta,,"Bryansville, Coal Cabin Beach, Slate Hill, West Bangor",PA,"York County",America/New_York,717,NA,US,39.76,-76.33,5350 +17315,STANDARD,0,Dover,York,"Bigmount, Davidsburg, Mount Royal",PA,"York County",America/New_York,717,NA,US,40,-76.84,24480 +17316,STANDARD,0,"East Berlin",,,PA,"Adams County",America/New_York,717,NA,US,39.93,-76.97,8100 +17317,"PO BOX",0,"East Prospect",,,PA,"York County",America/New_York,717,NA,US,39.97,-76.52,546 +17318,"PO BOX",0,Emigsville,,,PA,"York County",America/New_York,717,NA,US,40.02,-76.72,453 +17319,STANDARD,0,Etters,,"Goldsboro, Newberrytown, Yocumtown",PA,"York County",America/New_York,717,NA,US,40.15,-76.79,10420 +17320,STANDARD,0,Fairfield,Greenstone,"Carroll Valley, Charnita",PA,"Adams County",America/New_York,717,NA,US,39.78,-77.36,7530 +17321,STANDARD,0,"Fawn Grove",,Fawn,PA,"York County",America/New_York,717,NA,US,39.75,-76.44,2160 +17322,STANDARD,0,Felton,,"Brogueville, Cross Roads, Lucky",PA,"York County",America/New_York,717,NA,US,39.85,-76.56,5660 +17323,"PO BOX",0,Franklintown,,,PA,"York County",America/New_York,717,NA,US,40.07,-77.02,341 +17324,STANDARD,0,Gardners,,"Goodyear, Hunters Run, Mount Tabor, Pine Grove Furnace, Starners Station, Toland, Uriah",PA,"Cumberland County",America/New_York,,NA,US,40.04,-77.18,3890 +17325,STANDARD,0,Gettysburg,,"Bonneauville, Fairplay, Heidlersburg, Hunterstown",PA,"Adams County",America/New_York,717,NA,US,39.83,-77.23,23420 +17326,UNIQUE,1,Gettysburg,,"Federal Communications Com",PA,"Adams County",America/New_York,717,NA,US,39.83,-77.23,0 +17327,STANDARD,0,"Glen Rock",,"Hametown, Larue",PA,"York County",America/New_York,717,NA,US,39.79,-76.73,7040 +17329,STANDARD,0,Glenville,Brodbecks,Sticks,PA,"York County",America/New_York,717,NA,US,39.76,-76.85,2570 +17331,STANDARD,0,Hanover,,"Baresville, Bowman Addition, Brushtown, Edgegrove, Fairview Drive, Gitts Run, Gnatstown, Grangeville, Green Springs, Hershey Heights, Hobart, Jacobs Mills, Moulstown, Park Heights, Park Hills, Parkville, Pennville, Pleasant Hill, Shorbes Hill, York Road",PA,"York County",America/New_York,717,NA,US,39.81,-76.98,50650 +17332,UNIQUE,0,Hanover,,"Direct Brands",PA,"York County",America/New_York,717,NA,US,39.81,-76.98,0 +17333,UNIQUE,0,Hanover,,"Hanover Direct",PA,"York County",America/New_York,717,NA,US,39.81,-76.98,0 +17334,UNIQUE,0,Hanover,,"Direct Brands",PA,"York County",America/New_York,717,NA,US,39.8,-76.98,0 +17335,UNIQUE,0,Hanover,,"Direct Brands",PA,"York County",America/New_York,717,NA,US,39.8,-76.98,0 +17337,"PO BOX",0,Idaville,,,PA,"Adams County",America/New_York,717,NA,US,40.01,-77.2,68 +17339,STANDARD,0,Lewisberry,,"Fortney, Pinetown, Silver Lake",PA,"York County",America/New_York,717,NA,US,40.13,-76.86,6590 +17340,STANDARD,0,Littlestown,,"Kingsdale, White Hall",PA,"Adams County",America/New_York,717,NA,US,39.74,-77.08,10560 +17342,"PO BOX",0,Loganville,,,PA,"York County",America/New_York,717,NA,US,39.85,-76.7,379 +17343,"PO BOX",0,"Mc Knightstown",Mcknightstown,,PA,"Adams County",America/New_York,717,NA,US,39.87,-77.33,273 +17344,STANDARD,0,"Mc Sherrystown",Mcsherrystown,,PA,"Adams County",America/New_York,717,NA,US,39.81,-77.02,3240 +17345,STANDARD,0,Manchester,,Strinestown,PA,"York County",America/New_York,717,NA,US,40.06,-76.72,7240 +17347,STANDARD,0,"Mount Wolf",,"Saginaw, Starview",PA,"York County",America/New_York,717,NA,US,40.06,-76.7,6360 +17349,STANDARD,0,"New Freedom",,Tolna,PA,"York County",America/New_York,717,NA,US,39.73,-76.69,7930 +17350,STANDARD,0,"New Oxford",,,PA,"Adams County",America/New_York,717,NA,US,39.86,-77.05,12550 +17352,STANDARD,0,"New Park",,"Bridgeton, Gatchellville",PA,"York County",America/New_York,717,NA,US,39.76,-76.5,1220 +17353,STANDARD,0,Orrtanna,,,PA,"Adams County",America/New_York,717,NA,US,39.88,-77.38,2840 +17354,STANDARD,1,"Porters Sideling","Ports Sidling, Spring Grove",,PA,"York County",America/New_York,717,NA,US,39.85,-76.88,0 +17355,"PO BOX",0,Railroad,,,PA,"York County",America/New_York,717,NA,US,39.76,-76.69,239 +17356,STANDARD,0,"Red Lion",,"Freysville, New Bridgeville, Pleasant View, Snyder Corner, Springvale",PA,"York County",America/New_York,717,NA,US,39.89,-76.6,21640 +17358,"PO BOX",0,Rossville,,,PA,"York County",America/New_York,717,NA,US,40.07,-76.92,20 +17360,STANDARD,0,"Seven Valleys",,,PA,"York County",America/New_York,717,NA,US,39.85,-76.76,6210 +17361,STANDARD,0,Shrewsbury,,,PA,"York County",America/New_York,717,NA,US,39.77,-76.68,5610 +17362,STANDARD,0,"Spring Grove","Menges Mills","Nashville, Sinsheim, Stoverstown",PA,"York County",America/New_York,717,NA,US,39.88,-76.86,13300 +17363,STANDARD,0,Stewartstown,,Rinely,PA,"York County",America/New_York,717,NA,US,39.75,-76.59,8770 +17364,STANDARD,0,Thomasville,,,PA,"York County",America/New_York,717,NA,US,39.92,-76.87,3550 +17365,STANDARD,0,Wellsville,,,PA,"York County",America/New_York,717,NA,US,40.05,-76.94,2440 +17366,STANDARD,0,Windsor,,Bittersville,PA,"York County",America/New_York,717,NA,US,39.91,-76.58,5080 +17368,STANDARD,0,Wrightsville,,Longlevel,PA,"York County",America/New_York,717,NA,US,40.02,-76.53,7080 +17370,STANDARD,0,"York Haven",,Cly,PA,"York County",America/New_York,717,NA,US,40.11,-76.71,5940 +17371,"PO BOX",0,"York New Salem","York Nw Salem",,PA,"York County",America/New_York,717,NA,US,39.9,-76.79,375 +17372,STANDARD,0,"York Springs",,,PA,"Adams County",America/New_York,717,NA,US,40,-77.11,4220 +17375,UNIQUE,0,"Peach Glen",,"Knouse Foods",PA,"Adams County",America/New_York,717,NA,US,40.02,-77.23,0 +17401,STANDARD,0,York,,,PA,"York County",America/New_York,717,NA,US,39.96,-76.73,15700 +17402,STANDARD,0,York,"East York, Springettsbury Township, Sprngtsbry Tp","Fayfield, Glades, Locust Grove, Longstown, Mount Zion, Pleasureville, Spry, Stonybrook, Yorklyn, Yorkshire",PA,"York County",America/New_York,717,NA,US,39.96,-76.66,32010 +17403,STANDARD,0,York,,"Botts, Leaders Heights, Ore Valley, Windsor Park, Wyndham Hills",PA,"York County",America/New_York,717,NA,US,39.92,-76.71,34060 +17404,STANDARD,0,York,"West York",Shiloh,PA,"York County",America/New_York,717,NA,US,40,-76.77,35040 +17405,"PO BOX",0,York,,,PA,"York County",America/New_York,717,NA,US,39.96,-76.73,608 +17406,STANDARD,0,York,"Hallam, Hellam, Yorkana","Accomac, Highmount, Kreutz Creek",PA,"York County",America/New_York,717,NA,US,40.01,-76.64,22170 +17407,STANDARD,0,York,Jacobus,,PA,"York County",America/New_York,717,NA,US,39.88,-76.71,2190 +17408,STANDARD,0,York,"New Salem Borough, New Salem Bro, W Manchester, West Manchester Twp",,PA,"York County",America/New_York,717,NA,US,39.95,-76.81,22260 +17415,UNIQUE,1,York,,"North American Outdoor Group",PA,"York County",America/New_York,717,NA,US,39.96,-76.73,0 +17501,STANDARD,0,Akron,,,PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.2,4390 +17502,STANDARD,0,Bainbridge,,"Conoy, Falmouth, Stack Town",PA,"Lancaster County",America/New_York,717,NA,US,40.09,-76.67,2600 +17503,"PO BOX",0,Bart,,,PA,"Lancaster County",America/New_York,717,NA,US,39.92,-76.07,173 +17504,"PO BOX",0,Bausman,,,PA,"Lancaster County",America/New_York,717,NA,US,40,-76.32,261 +17505,STANDARD,0,"Bird In Hand",,,PA,"Lancaster County",America/New_York,717,NA,US,40.05,-76.18,1880 +17506,"PO BOX",0,"Blue Ball",,,PA,"Lancaster County",America/New_York,717,NA,US,40.12,-76.03,551 +17507,"PO BOX",0,Bowmansville,,,PA,"Lancaster County",America/New_York,717,NA,US,40.2,-76.02,544 +17508,"PO BOX",0,Brownstown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.12,-76.22,1030 +17509,STANDARD,0,Christiana,Ninepoints,"Andrews Bridge, Bartville, Cooperville, Smyrna",PA,"Lancaster County",America/New_York,717,NA,US,39.91,-76.04,4640 +17512,STANDARD,0,Columbia,,"Ironville, Kinderhook",PA,"Lancaster County",America/New_York,717,NA,US,40.03,-76.49,16110 +17516,STANDARD,0,Conestoga,,"Creswell, Highville, Safe Harbor",PA,"Lancaster County",America/New_York,717,NA,US,39.93,-76.36,4190 +17517,STANDARD,0,Denver,,Fivepointville,PA,"Lancaster County",America/New_York,717,NA,US,40.23,-76.13,15190 +17518,STANDARD,0,Drumore,,"Liberty Square",PA,"Lancaster County",America/New_York,717,NA,US,39.83,-76.25,1180 +17519,STANDARD,0,"East Earl",,"Cedar Lane, Weaverland",PA,"Lancaster County",America/New_York,717,NA,US,40.14,-76.02,6090 +17520,STANDARD,0,"East Petersburg","E Petersburg",,PA,"Lancaster County",America/New_York,717,NA,US,40.1,-76.35,4640 +17521,"PO BOX",0,Elm,,,PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.42,78 +17522,STANDARD,0,Ephrata,,"Clay, Durlach, Farmersville, Hahnstown, Hinkletown, Murrell, Napierville, Voganville, Weidmanville",PA,"Lancaster County",America/New_York,717,NA,US,40.18,-76.18,31170 +17527,STANDARD,0,Gap,,"White Horse",PA,"Lancaster County",America/New_York,717,NA,US,40.01,-75.99,6120 +17528,"PO BOX",0,Goodville,,,PA,"Lancaster County",America/New_York,717,NA,US,39.89,-76.32,222 +17529,STANDARD,0,Gordonville,,,PA,"Lancaster County",America/New_York,717,NA,US,40.04,-76.1,4080 +17532,STANDARD,0,Holtwood,,"Bethesda, Rawlinsville",PA,"Lancaster County",America/New_York,717,NA,US,39.82,-76.33,3190 +17533,"PO BOX",0,Hopeland,,,PA,"Lancaster County",America/New_York,717,NA,US,40.2,-76.2,128 +17534,"PO BOX",0,Intercourse,,,PA,"Lancaster County",America/New_York,717,NA,US,40.06,-76.14,330 +17535,STANDARD,0,Kinzers,,"Buyerstown, New Milltown",PA,"Lancaster County",America/New_York,717,NA,US,39.98,-76.02,2610 +17536,STANDARD,0,Kirkwood,,Colerain,PA,"Lancaster County",America/New_York,717,NA,US,39.82,-76.09,2790 +17537,"PO BOX",0,Lampeter,,,PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.24,236 +17538,STANDARD,0,Landisville,Salunga,Bamford,PA,"Lancaster County",America/New_York,717,NA,US,40.09,-76.41,6660 +17540,STANDARD,0,Leola,,"Bareville, Leacock, Oregon, Rockrimmin Ridge",PA,"Lancaster County",America/New_York,717,NA,US,40.09,-76.18,10030 +17543,STANDARD,0,Lititz,,"Brickerville, Fairland, Halfville, Kissel Hill, Lexington, Lime Rock, Millway, Poplar Grove, Rothsville, Speedwell",PA,"Lancaster County",America/New_York,717,NA,US,40.15,-76.3,43730 +17545,STANDARD,0,Manheim,,"Elstonville, Elwyn Terrace, Lancaster Junction, Mastersonville, Mount Hope, Old Line, Sporting Hill",PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.39,21400 +17547,STANDARD,0,Marietta,,"Shocks Mills",PA,"Lancaster County",America/New_York,717,NA,US,40.05,-76.55,7370 +17549,"PO BOX",0,Martindale,,,PA,"Lancaster County",America/New_York,717,NA,US,40.17,-76.17,29 +17550,"PO BOX",0,Maytown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.08,-76.58,1132 +17551,STANDARD,0,Millersville,,Slackwater,PA,"Lancaster County",America/New_York,717,NA,US,40,-76.35,7440 +17552,STANDARD,0,"Mount Joy",Florin,"Donegal Heights, Donegal Springs, Farmdale, Milton Grove",PA,"Lancaster County",America/New_York,717,NA,US,40.11,-76.5,19650 +17554,STANDARD,0,Mountville,,,PA,"Lancaster County",America/New_York,717,NA,US,40.04,-76.43,7470 +17555,STANDARD,0,Narvon,,"Beartown, Churchtown, Fetterville, South Hermitage",PA,"Lancaster County",America/New_York,717,NA,US,40.12,-75.97,6940 +17557,STANDARD,0,"New Holland",,"Greenbank, Groffdale, Laurelville",PA,"Lancaster County",America/New_York,717,NA,US,40.1,-76.09,13850 +17560,STANDARD,0,"New Providence","New Providnce","Providence, Smithville",PA,"Lancaster County",America/New_York,717,NA,US,39.9,-76.23,4690 +17562,STANDARD,0,Paradise,,"Bellemont, Harristown, Iva, Lapark, Leaman Place, Nickel Mines, Vintage",PA,"Lancaster County",America/New_York,717,NA,US,40,-76.12,4220 +17563,STANDARD,0,"Peach Bottom",,"Eldora, Fulton, Furniss, Mcsparren, New Texas, Oakryn, Penn Hill, Wrightsdale",PA,"Lancaster County",America/New_York,717,NA,US,39.76,-76.18,3660 +17564,"PO BOX",0,Penryn,,,PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.42,70 +17565,STANDARD,0,Pequea,,"Colemanville, Martic, Martic Forge, Marticville, Mount Nebo",PA,"Lancaster County",America/New_York,717,NA,US,39.9,-76.31,2460 +17566,STANDARD,0,Quarryville,,"Buck, Mechanics Grove",PA,"Lancaster County",America/New_York,717,NA,US,39.89,-76.16,11790 +17567,"PO BOX",0,Reamstown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.21,-76.11,623 +17568,"PO BOX",0,Refton,,,PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.24,139 +17569,STANDARD,0,Reinholds,,"Blainsport, Swartzville, Vere Cruz, Vinemont",PA,"Lancaster County",America/New_York,717,NA,US,40.27,-76.11,5930 +17570,"PO BOX",0,Rheems,,,PA,"Lancaster County",America/New_York,717,NA,US,40.13,-76.57,262 +17572,STANDARD,0,Ronks,Soudersburg,Mascot,PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.16,3680 +17573,UNIQUE,0,Lancaster,,"Jay Advertising",PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.16,0 +17575,"PO BOX",0,"Silver Spring",,"Forest Knolls",PA,"Lancaster County",America/New_York,717,NA,US,40.06,-76.43,147 +17576,STANDARD,0,Smoketown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.04,-76.2,240 +17578,STANDARD,0,Stevens,,"Redrun, Schoeneck",PA,"Lancaster County",America/New_York,717,NA,US,40.23,-76.18,6300 +20016,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.94,-77.09,24500 +20017,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.94,-76.99,16170 +20018,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.93,-76.97,16800 +20019,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-76.94,50130 +20020,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.86,-76.98,42310 +20022,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.91,-76.96,0 +20023,"PO BOX",1,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.01,0 +20024,STANDARD,0,Washington,"Fort Lesley J Mcnair, Fort Mcnair, Ft L J Mcnair",,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,11930 +20026,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,308 +20027,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-76.98,104 +20029,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,511 +20030,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,559 +20032,STANDARD,0,Washington,"Bolling AFB","Bolling Air Force Base, Wash, Washing, Washingtn",DC,"District of Columbia",America/New_York,202,NA,US,38.83,-77.01,31150 +20033,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,80 +20035,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,126 +20036,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.91,-77.04,4150 +20037,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.06,6320 +20038,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,261 +20039,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,166 +20040,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,212 +20041,"PO BOX",0,Washington,,"Dulles International Airp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,75 +20042,UNIQUE,0,Washington,,"Sun Trust Bank Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20043,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,86 +20044,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,335 +20045,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.03,32 +20046,UNIQUE,1,Washington,,"G E I C O",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20047,UNIQUE,0,Washington,,"Criterion Ins Co",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20049,UNIQUE,0,Washington,,"Amer Assc Retired Persons",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20050,"PO BOX",0,Washington,Pentagon,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20051,UNIQUE,1,Washington,,"Woodward And Lothrop",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20052,UNIQUE,0,Washington,,"G W Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.05,124 +20053,UNIQUE,0,Washington,,Verizon,DC,"District of Columbia",America/New_York,202,NA,US,38.88,-77.01,0 +20055,UNIQUE,0,Washington,,"Bank Of America",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20056,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,147 +20057,UNIQUE,0,Washington,,"Georgetown Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.91,-77.08,799 +20058,UNIQUE,0,Washington,,"Marriott Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20059,UNIQUE,0,Washington,,"Howard Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,99 +20060,UNIQUE,0,Washington,,"Howard University Hospital",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20061,UNIQUE,0,Washington,,"Wells Fargo",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20062,UNIQUE,0,Washington,,"Us Chamber Of Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20063,UNIQUE,0,Washington,,"Int Group Plans Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20064,UNIQUE,0,Washington,,"Catholic Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.94,-77,33 +20065,UNIQUE,0,Washington,,"Blue Cross Group Hosp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20066,UNIQUE,0,Washington,,"Washington Dc Post Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20067,UNIQUE,0,Washington,,Pepco,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20068,UNIQUE,0,Washington,,Pepco,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20069,UNIQUE,0,Washington,,"Wash Intell Bureau Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20070,UNIQUE,0,Washington,,"Wash Intell Bureau Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20071,UNIQUE,0,Washington,,"Washington Post",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,28 +20073,UNIQUE,0,Washington,,"Pnc Financial",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20074,UNIQUE,0,Washington,,"Pnc Financial",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20075,UNIQUE,0,Washington,,"Pnc Financial",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20076,UNIQUE,0,Washington,,Geico,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20077,UNIQUE,0,Washington,,"Washington Brm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20078,UNIQUE,0,Washington,,"Washington Brm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20080,UNIQUE,0,Washington,,"Washington Gas",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20081,UNIQUE,0,Washington,,"Washington Gas",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20082,UNIQUE,0,Washington,,"Natl Repub Cong Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20088,"PO BOX",1,Washington,,"Friendship Heights",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20090,"PO BOX",0,Washington,,"General Delivery",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,394 +20091,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,125 +20097,UNIQUE,1,Washington,,"Natl Repub Cong Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20098,UNIQUE,1,Washington,,"Vietnam Vet Mem Fund",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20101,UNIQUE,0,Dulles,,"Dulles P & D Center",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,87 +20102,UNIQUE,0,Dulles,,"Dulles Air Transfer Office",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,0 +20103,UNIQUE,0,Dulles,,"Stamp Distribution Network",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,0 +20104,UNIQUE,0,Dulles,,"Inspection Service Forensic",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,0 +20105,STANDARD,0,Aldie,"Stone Ridge",,VA,"Loudoun County",America/New_York,"540,703,571",NA,US,38.97,-77.64,32660 +20106,STANDARD,0,Amissville,Viewtown,,VA,"Culpeper County",America/New_York,,NA,US,38.67,-77.99,4640 +20107,STANDARD,1,Arcola,,,VA,"Loudoun County",America/New_York,,NA,US,38.96,-77.52,31 +20108,"PO BOX",0,Manassas,,,VA,"Manassas City",America/New_York,571,NA,US,38.74,-77.48,1684 +20109,STANDARD,0,Manassas,"Sudley Spgs, Sudley Springs",,VA,"Prince William County",America/New_York,"571,703",NA,US,38.79,-77.53,37490 +20110,STANDARD,0,Manassas,,,VA,"Manassas city",America/New_York,"571,703",NA,US,38.74,-77.48,44240 +20111,STANDARD,0,Manassas,"Manassas Park",,VA,"Prince William County",America/New_York,"571,703",NA,US,38.75,-77.43,36040 +20112,STANDARD,0,Manassas,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.66,-77.43,28440 +20113,"PO BOX",0,Manassas,"Manassas Park",,VA,"Manassas City",America/New_York,571,NA,US,38.74,-77.48,188 +20115,STANDARD,0,Marshall,,,VA,"Fauquier County",America/New_York,540,NA,US,38.87,-77.85,5430 +20116,"PO BOX",0,Marshall,,,VA,"Fauquier County",America/New_York,,NA,US,38.87,-77.85,902 +20117,STANDARD,0,Middleburg,,,VA,"Loudoun County",America/New_York,540,NA,US,38.97,-77.73,1560 +20118,"PO BOX",0,Middleburg,,,VA,"Loudoun County",America/New_York,540,NA,US,38.97,-77.74,2122 +20119,STANDARD,0,Catlett,,,VA,"Fauquier County",America/New_York,540,NA,US,38.61,-77.64,3720 +20120,STANDARD,0,Centreville,"Sully Station",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.84,-77.44,40450 +20121,STANDARD,0,Centreville,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.81,-77.46,26750 +20122,"PO BOX",0,Centreville,,,VA,"Fairfax County",America/New_York,571,NA,US,38.84,-77.44,621 +20124,STANDARD,0,Clifton,,,VA,"Fairfax County",America/New_York,571,NA,US,38.77,-77.38,15080 +20128,"PO BOX",0,Orlean,,,VA,"Fauquier County",America/New_York,,NA,US,38.74,-77.96,255 +20129,STANDARD,0,"Paeonian Springs","Paeonian Spgs",,VA,"Loudoun County",America/New_York,703,NA,US,39.16,-77.61,650 +20130,STANDARD,0,Paris,,,VA,"Clarke County",America/New_York,,NA,US,39,-77.95,260 +20131,"PO BOX",0,Philomont,,,VA,"Loudoun County",America/New_York,,NA,US,39.05,-77.74,375 +20132,STANDARD,0,Purcellville,Hillsboro,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.71,16860 +20134,"PO BOX",0,Purcellville,Hillsboro,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.71,959 +20135,STANDARD,0,Bluemont,"Mount Weather",,VA,"Clarke County",America/New_York,703,NA,US,39.11,-77.83,2520 +20136,STANDARD,0,Bristow,,,VA,"Prince William County",America/New_York,571,NA,US,38.74,-77.55,31270 +20137,STANDARD,0,"Broad Run",,,VA,"Fauquier County",America/New_York,540,NA,US,38.81,-77.72,1860 +20138,"PO BOX",0,Calverton,,,VA,"Fauquier County",America/New_York,,NA,US,38.63,-77.67,289 +20139,"PO BOX",0,Casanova,,,VA,"Fauquier County",America/New_York,,NA,US,38.66,-77.7,326 +20140,"PO BOX",0,Rectortown,,,VA,"Fauquier County",America/New_York,,NA,US,38.81,-77.9,98 +20141,STANDARD,0,"Round Hill",,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.77,7570 +20142,"PO BOX",0,"Round Hill",,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.77,667 +20143,STANDARD,0,Catharpin,,,VA,"Prince William County",America/New_York,571,NA,US,38.84,-77.56,1110 +20144,STANDARD,0,Delaplane,,,VA,"Fauquier County",America/New_York,540,NA,US,38.92,-77.92,860 +20146,"PO BOX",0,Ashburn,,,VA,"Loudoun County",America/New_York,,NA,US,39.04,-77.48,510 +20147,STANDARD,0,Ashburn,,,VA,"Loudoun County",America/New_York,703,NA,US,39.04,-77.48,63400 +20148,STANDARD,0,Ashburn,"Brambleton, Broadlands",,VA,"Loudoun County",America/New_York,"571,703",NA,US,39,-77.52,59380 +20149,UNIQUE,0,Ashburn,,"Natl Assn Letter Carriers",VA,"Loudoun County",America/New_York,571,NA,US,39.04,-77.48,0 +20151,STANDARD,0,Chantilly,Fairfax,,VA,"Fairfax County",America/New_York,571,NA,US,38.9,-77.45,21880 +20152,STANDARD,0,Chantilly,"Fairfax, South Riding",,VA,"Loudoun County",America/New_York,"571,703",NA,US,38.92,-77.5,36430 +20153,"PO BOX",0,Chantilly,Fairfax,,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.4,632 +20155,STANDARD,0,Gainesville,,,VA,"Prince William County",America/New_York,571,NA,US,38.79,-77.61,36090 +20156,"PO BOX",0,Gainesville,,,VA,"Prince William County",America/New_York,571,NA,US,38.79,-77.61,339 +20158,STANDARD,0,Hamilton,,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.66,4360 +20159,"PO BOX",0,Hamilton,,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.66,419 +20160,"PO BOX",0,Lincoln,Purcellville,,VA,"Loudoun County",America/New_York,540,NA,US,39.11,-77.69,243 +20163,"PO BOX",0,Sterling,,,VA,"Loudoun County",America/New_York,,NA,US,39,-77.4,0 +20164,STANDARD,0,Sterling,,,VA,"Loudoun County",America/New_York,703,NA,US,39,-77.4,39110 +20165,STANDARD,0,Sterling,"Potomac Falls",,VA,"Loudoun County",America/New_York,703,NA,US,39.06,-77.39,33190 +20166,STANDARD,0,Sterling,"Arcola, Dulles",,VA,"Loudoun County",America/New_York,"571,703",NA,US,38.99,-77.46,12350 +20167,"PO BOX",0,Sterling,,,VA,"Loudoun County",America/New_York,571,NA,US,39,-77.4,542 +20168,"PO BOX",0,Haymarket,,,VA,"Prince William County",America/New_York,571,NA,US,38.81,-77.63,269 +20169,STANDARD,0,Haymarket,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.88,-77.65,27590 +20170,STANDARD,0,Herndon,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.96,-77.38,40620 +20171,STANDARD,0,Herndon,"Oak Hill",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.92,-77.4,49720 +20172,"PO BOX",0,Herndon,,,VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,769 +20175,STANDARD,0,Leesburg,,,VA,"Loudoun County",America/New_York,"571,703,540",NA,US,39.1,-77.55,31280 +20176,STANDARD,0,Leesburg,Lansdowne,Lucketts,VA,"Loudoun County",America/New_York,"540,571,703",NA,US,39.18,-77.54,49640 +20177,"PO BOX",0,Leesburg,,,VA,"Loudoun County",America/New_York,571,NA,US,39.1,-77.55,711 +20178,"PO BOX",0,Leesburg,,,VA,"Loudoun County",America/New_York,571,NA,US,39.1,-77.55,239 +20180,STANDARD,0,Lovettsville,,,VA,"Loudoun County",America/New_York,540,NA,US,39.27,-77.63,7910 +20181,STANDARD,0,Nokesville,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.69,-77.58,9110 +20182,"PO BOX",0,Nokesville,,,VA,"Prince William County",America/New_York,571,NA,US,38.69,-77.58,437 +20184,STANDARD,0,Upperville,,,VA,"Fauquier County",America/New_York,703,NA,US,38.99,-77.88,400 +20185,"PO BOX",0,Upperville,,,VA,"Fauquier County",America/New_York,540,NA,US,38.99,-77.88,384 +20186,STANDARD,0,Warrenton,,"Airlie, Opal",VA,"Fauquier County",America/New_York,540,NA,US,38.71,-77.79,13490 +20187,STANDARD,0,Warrenton,"New Baltimore, Vint Hill Farms, Vint Hill Frm",,VA,"Fauquier County",America/New_York,540,NA,US,38.72,-77.75,18410 +20188,"PO BOX",0,Warrenton,"Vint Hill Farms, Vint Hill Frm",,VA,"Fauquier County",America/New_York,540,NA,US,38.71,-77.79,1067 +20189,STANDARD,0,Dulles,,,VA,"Loudoun County",America/New_York,"571,703",NA,US,38.96,-77.45,9117 +20190,STANDARD,0,Reston,Herndon,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.95,-77.34,17820 +20191,STANDARD,0,Reston,Herndon,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.93,-77.35,27670 +20192,UNIQUE,0,Herndon,Reston,"Hundon, Us Geological Survey",VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,0 +20193,UNIQUE,1,Reston,"Herndon, Hundon, Sallie Mae",,VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.34,0 +20194,STANDARD,0,Reston,Herndon,,VA,"Fairfax County",America/New_York,"703,571",NA,US,38.98,-77.34,12470 +20195,"PO BOX",0,Reston,Herndon,,VA,"Fairfax County",America/New_York,571,NA,US,38.95,-77.34,525 +20196,UNIQUE,0,Reston,Herndon,Sprint,VA,"Fairfax County",America/New_York,571,NA,US,38.95,-77.34,0 +20197,STANDARD,0,Waterford,,,VA,"Loudoun County",America/New_York,"571,703",NA,US,39.2,-77.63,2460 +20198,STANDARD,0,"The Plains",,,VA,"Fauquier County",America/New_York,540,NA,US,38.86,-77.77,1810 +20199,UNIQUE,1,Dulles,"Visa Lottery State Dept",,VA,"Loudoun County",America/New_York,571,NA,US,39,-77.45,0 +20201,UNIQUE,0,Washington,,"Dept Hlth Human Serv",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20202,UNIQUE,0,Washington,,"Dept Education",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20203,UNIQUE,0,Washington,,"Social Securtiy Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20204,UNIQUE,0,Washington,,"Food And Drug Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.01,0 +20206,UNIQUE,0,Washington,,"Soc Sec Bureau Hearing App",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20207,UNIQUE,0,Washington,,"Consumer Product Safety Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20208,UNIQUE,0,Washington,,"Natl Institute Of Educ",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20210,UNIQUE,0,Washington,,"Dept Of Labor",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20211,UNIQUE,0,Washington,,"Office Of Workers Comp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20212,UNIQUE,0,Washington,,"Dept Labor Stats",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20213,UNIQUE,0,Washington,,"Dept Labor Manpower Admn",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20214,UNIQUE,0,Washington,,"Bureau Labor Statistics",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20215,UNIQUE,0,Washington,,"Dept Labor Payroll Audit Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20216,UNIQUE,0,Washington,,"Labor Management Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20217,UNIQUE,0,Washington,,"Us Tax Court",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20218,UNIQUE,0,Washington,,"Natl Comm On Social Sec",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20219,UNIQUE,0,Washington,,"Comptroller Of Currency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20220,UNIQUE,0,Washington,,"Dept Treasury",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20221,UNIQUE,0,Washington,,"District Director Irs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20222,UNIQUE,0,Washington,,"Us Treasurer",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20223,UNIQUE,0,Washington,,"Us Secret Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20224,UNIQUE,0,Washington,,"Internal Revenue Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20226,UNIQUE,0,Washington,,"Dept Treas Other Offices",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20227,UNIQUE,0,Washington,,"Dept Treas Check Claims Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20228,UNIQUE,0,Washington,,"Bureau Engav And Printing",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20229,UNIQUE,0,Washington,,"Us Bureau Of Customs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20230,UNIQUE,0,Washington,,"Dept Commerce",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20232,UNIQUE,0,Washington,,"Resolutn Trust Oversight Brd",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20233,UNIQUE,0,Washington,,"Bureau Of Census",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20235,UNIQUE,0,Washington,,"Dept Commerce Outside Hq",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20237,UNIQUE,0,Washington,,"Broadcasting Bd Of Governors",DC,"District of Columbia",America/New_York,202,NA,US,38.88,-77.01,0 +20238,UNIQUE,0,Washington,,"Us Holocaust Memorial Museum",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20239,UNIQUE,0,Washington,,"Bureau Of Public Debt",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20240,UNIQUE,0,Washington,,"Dept Interior",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.04,0 +20241,UNIQUE,0,Washington,,"Bureau Of Mines",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20242,UNIQUE,0,Washington,,"National Park Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20244,UNIQUE,0,Washington,,"Geological Survey",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20245,UNIQUE,0,Washington,,"Bureau Of Indian Affairs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.04,0 +20250,UNIQUE,0,Washington,,"Dept Agriculture",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20251,UNIQUE,0,Washington,,"Dept Ag Ofc Outside Hq",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20252,UNIQUE,0,Washington,,"Smokey Bear",DC,,America/New_York,,NA,US,38.89,-77.03,0 +20254,UNIQUE,0,Washington,,"Social Securtiy Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20260,STANDARD,0,Washington,,"Usps Headquarters",DC,"District of Columbia",America/New_York,202,NA,US,38.88,-77.02,0 +20261,UNIQUE,0,Washington,,"Usps Consumer Affairs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20262,UNIQUE,0,Washington,,Mafic,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20265,UNIQUE,0,Washington,,"Philatelic Sales Division",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20266,UNIQUE,0,Washington,,"Philatelic Sales",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20268,UNIQUE,0,Washington,,"Postal Regulatory Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20270,UNIQUE,0,Washington,,"Presidential Transition Team",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20277,UNIQUE,0,Washington,,"Washington Dc Brm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20289,UNIQUE,0,Washington,,"Universal Postal Union Congr",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20299,UNIQUE,0,Washington,,Readasorus,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20301,UNIQUE,0,Washington,Pentagon,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20303,UNIQUE,0,Washington,,"National Imaging And Mapping",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20306,UNIQUE,0,Washington,,"Armed Forces Inst Pathology",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20307,UNIQUE,1,Washington,,"Walter Reed Army Med Center",DC,"District of Columbia",America/New_York,202,NA,US,38.97,-77.03,76 +20310,UNIQUE,0,Washington,,"Dept Army Pentagon",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20314,UNIQUE,0,Washington,,"Us Army Corp Of Engineers",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20317,UNIQUE,0,Washington,,"Soldiers Airmens Home",DC,"District of Columbia",America/New_York,202,NA,US,38.93,-77.01,11 +20318,UNIQUE,0,Washington,,"Army Criminal Invest, Joint Staff",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20319,UNIQUE,0,Washington,"Fort Mcnair",,DC,"District of Columbia",America/New_York,202,NA,US,38.86,-77.02,20 +20330,UNIQUE,0,Washington,,"Dept Air Force Pentagon",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20340,UNIQUE,0,Washington,,"Defense Intelligence",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20350,UNIQUE,0,Washington,,"Chief Naval Operation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20355,UNIQUE,0,Washington,,Pentagon,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20370,UNIQUE,0,Washington,"Navy Annex",,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20372,UNIQUE,0,Washington,,"Bur Medicine Surgery",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20373,UNIQUE,0,"Naval Anacost Annex","Anacostia, Anacostia Anx, Jbab, Joint Base Anacostia Bolling, Washington","Naval Station Anacostia",DC,"District of Columbia",America/New_York,202,NA,US,38.86,-77.01,140 +20374,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Navy Yard",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,29 +20375,UNIQUE,0,Washington,,"Naval Research Laboratory",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20376,STANDARD,0,"Washington Navy Yard","Naval Sea Sys, Naval Sea Systems Command, Washington, Washington Na",,DC,"District of Columbia",America/New_York,202,NA,US,38.87,-76.99,0 +20380,UNIQUE,0,Washington,,"Dept Navy Hq Marines Arl",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20388,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Naval Investigative Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20389,UNIQUE,0,Washington,,"Naval Intelligence Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20390,UNIQUE,0,Washington,"Marine Barrks, Us Marine Corps Barracks","Dept Navy Other Offices",DC,"District of Columbia",America/New_York,202,NA,US,38.88,-76.99,329 +20391,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Dept Navy Fed Credit Union",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20392,UNIQUE,0,Washington,,"Navy Observatory",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20393,UNIQUE,0,Washington,,"Navy Security Group",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20394,UNIQUE,0,Washington,,"Naval Telecommunications Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20395,UNIQUE,0,Washington,,"Naval Intelligence Support C",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20398,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Military Sealift Command",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20401,UNIQUE,0,Washington,,"Gov Printing Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20402,UNIQUE,0,Washington,,"Gpo Supt Of Documents",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20403,UNIQUE,0,Washington,,"Gpo Field Serv Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20404,UNIQUE,0,Washington,,"Gpo Procurement Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20405,UNIQUE,0,Washington,,"Gen Services Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20406,UNIQUE,0,Washington,,"Gsa Crystal City",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20407,UNIQUE,0,Washington,,"Gsa Region 3",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20408,UNIQUE,0,Washington,,"Natl Archives And Records",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20409,UNIQUE,1,Washington,,"Fed Records Center",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20410,UNIQUE,0,Washington,,"Housing And Urban Dev",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20411,UNIQUE,0,Washington,,"Hud Fed Housing Adm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20412,UNIQUE,0,Washington,,"Fha Comptroller",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20413,UNIQUE,0,Washington,,"Housing Assistance Adm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20414,UNIQUE,0,Washington,,"Hud Fed Natl Mortgage",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20415,UNIQUE,0,Washington,,"Office Personnel Mgmt",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20416,UNIQUE,0,Washington,,"Small Business Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20417,UNIQUE,0,Washington,,"Gen Services Admin",DC,,America/New_York,202,NA,US,38.9,-77,0 +20418,UNIQUE,0,Washington,,"National Academy Of Science",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.05,0 +20419,UNIQUE,0,Washington,,"Merit Systems Protection Bd",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20420,UNIQUE,0,Washington,,"Veterans Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20421,UNIQUE,0,Washington,,"Veterans Benefits Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20422,UNIQUE,0,Washington,,"Veterans Hospital",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20423,UNIQUE,0,Washington,,"Surface Transportation Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20424,UNIQUE,0,Washington,,"Fed Labor Relations Auth",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20425,UNIQUE,0,Washington,,"Comm On Civil Rights",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20426,UNIQUE,0,Washington,,"Federal Energy Reg Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20427,UNIQUE,0,Washington,,"Fed Mediation And Concil Ser",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.05,0 +20428,UNIQUE,0,Washington,,"Civil Aeronautics Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20429,UNIQUE,0,Washington,,"Federal Deposit Ins Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20431,UNIQUE,0,Washington,,"International Monetary Fund",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,97 +20433,UNIQUE,0,Washington,,"World Bank",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,194 +20434,UNIQUE,0,Washington,,"Resolution Trust Corporation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20435,UNIQUE,0,Washington,,"National Selective Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20436,UNIQUE,0,Washington,,"International Trade Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20437,UNIQUE,0,Washington,,"Food And Drug Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20439,UNIQUE,0,Washington,,"Us Court Appeal Fed Circuit",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20440,UNIQUE,0,Washington,,"International Joint Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20441,UNIQUE,0,Washington,,"Inter Amer Defense Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20442,UNIQUE,0,Washington,,"Court Of Military Appeals",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20444,UNIQUE,0,Washington,,"Tennessee Valley Auth",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20447,UNIQUE,0,Washington,,"Family Support Administratio",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20451,UNIQUE,0,Washington,,"Arms Control And Disarm Agy",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20453,UNIQUE,0,Washington,,"Comm Equal Oppor Armed Forc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20456,UNIQUE,0,Washington,,"National Credit Union Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20460,UNIQUE,0,Washington,,"Envir Protect Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20463,UNIQUE,0,Washington,,"Federal Election Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20468,UNIQUE,0,Washington,,"Gsa Surplus Sales",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20469,UNIQUE,0,Washington,,"Gsa Consumer Products Info",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20470,UNIQUE,0,Washington,,"Gsa Tele Com Serv",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20472,UNIQUE,0,Washington,,"Fed Emer Mngt Agncy",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20500,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20501,UNIQUE,0,Washington,,"White House Ofc Of Vice Pres",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20502,UNIQUE,0,Washington,,"White House Ofc Staff",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20503,UNIQUE,0,Washington,,"Office Of Mgmt And Budget",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20504,UNIQUE,0,Washington,,"National Security Counsel",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20505,UNIQUE,0,Washington,,"Central Intelligence Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20506,UNIQUE,0,Washington,,"Exec Office Other Organ",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20507,UNIQUE,0,Washington,,"Equal Emp Opportunity Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20508,UNIQUE,0,Washington,,"Us Trade Representative",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20509,UNIQUE,0,Washington,,"White House Ofc Staff",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20510,UNIQUE,0,Washington,,"Us Senate",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.01,0 +20511,UNIQUE,0,Washington,,"Dir National Intelligence",DC,"District of Columbia",America/New_York,202,NA,US,38.97,-77.05,0 +20515,UNIQUE,0,Washington,,"Us House Of Representatives",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20520,UNIQUE,0,Washington,,"Dept Of State",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.05,0 +20521,UNIQUE,0,Washington,,"State Department",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,384 +20522,UNIQUE,0,Washington,,"Government Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20523,UNIQUE,0,Washington,,"Dept Of State Intrntl Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20524,UNIQUE,0,Washington,,"Passport Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20525,UNIQUE,0,Washington,,Action,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20526,UNIQUE,0,Washington,,"Peace Corps",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20527,UNIQUE,0,Washington,,"Oversea Pvt Inves Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20528,UNIQUE,0,Washington,,"Dept Homeland Security",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20529,UNIQUE,0,Washington,,"Us Citizenship Immigration",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.01,0 +20530,UNIQUE,0,Washington,,"Dept Justice",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20531,UNIQUE,0,Washington,,"Law Enforce Assist Adm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20532,UNIQUE,1,Washington,,"Bureau Narc Dngr Drugs Lab",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20533,UNIQUE,0,Washington,,"Bureau Narc And Dngr Drugs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20534,UNIQUE,0,Washington,,"Bureau Of Prisons",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20535,UNIQUE,0,Washington,,Fbi,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20536,UNIQUE,0,Washington,,"Immig And Naturalization Ser",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20537,UNIQUE,0,Washington,,"Fbi Identification Unit",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20538,UNIQUE,0,Washington,,"Immig And Naturalization Ser",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20539,UNIQUE,0,Washington,,"Immig And Natural Records",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20540,UNIQUE,0,Washington,,"Library Of Congress",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77,0 +20541,UNIQUE,0,Washington,,"Library Of Congress Card Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20542,UNIQUE,0,Washington,,"Library Of Congress Handicap",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20543,UNIQUE,0,Washington,,"Us Supreme Court",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20544,UNIQUE,0,Washington,,"Adm Office Us Court",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20546,UNIQUE,0,Washington,,"Natl Aero And Space Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20547,UNIQUE,0,Washington,,"Us Information Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20548,UNIQUE,0,Washington,,"General Accounting Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20549,UNIQUE,0,Washington,,"Securities And Exchange Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20551,UNIQUE,0,Washington,,"Federal Reserve Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.05,0 +20552,UNIQUE,0,Washington,,"Cnsmr Fnncl Prtct Brd",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20553,UNIQUE,0,Washington,,"Federal Aviation Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20554,UNIQUE,0,Washington,,"Fed Communications Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20555,UNIQUE,0,Washington,,"Nuclear Regulatory Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20557,UNIQUE,0,Washington,,"Lib Of Congress Licensing",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20558,UNIQUE,1,Washington,,"Comm Tech Uses Copyrights",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20559,UNIQUE,0,Washington,,"Us Copyright Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20560,UNIQUE,0,Washington,,"Smithsonian Institute",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20565,UNIQUE,0,Washington,,"National Gallery Of Art",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20566,UNIQUE,0,Washington,,"John F Kennedy Center",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.06,0 +20570,UNIQUE,0,Washington,,"Natl Labor Relations Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20571,UNIQUE,0,Washington,,"Export Import Bank",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20572,UNIQUE,0,Washington,,"National Mediation Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20573,UNIQUE,0,Washington,,"Federal Maritime Commission",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20575,UNIQUE,0,Washington,,"Adv Comm Inter Govt Relation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20576,UNIQUE,0,Washington,,"Natl Capitol Planning",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20577,UNIQUE,0,Washington,,"Inter American Dev Bank",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,24 +20578,UNIQUE,0,Washington,,"Farm Credit Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20579,UNIQUE,0,Washington,,"Foreign Claims Settlement",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20580,UNIQUE,0,Washington,,"Federal Trade Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20581,UNIQUE,0,Washington,,"Commodity Futures Trade",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20585,UNIQUE,0,Washington,,"Dept Energy",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20586,UNIQUE,0,Washington,,"Us Synthetic Fuel Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20588,UNIQUE,0,Dhs,"Camp Springs, Cheltenham, Columbia","Dept Hs",MD,"Howard County",America/New_York,410,NA,US,38.74,-76.85,0 +20590,UNIQUE,0,Washington,,"Dept Transportation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20591,UNIQUE,0,Washington,,"Dept Transportation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20593,UNIQUE,0,Washington,,"Us Coast Guard",DC,"District of Columbia",America/New_York,202,NA,US,38.87,-77.01,0 +20594,UNIQUE,0,Washington,,"Natl Trans Safety Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20597,UNIQUE,0,Washington,,"Armed Forces Inaugural Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20598,UNIQUE,0,Dhs,"Alexandria, Arlington, Chantilly, Fairfax, Falls Church, Herndon, Lorton, Mc Lean, Mclean, Reston, Springfield, Sterling","Dept Hs",VA,"Fairfax County",America/New_York,571,NA,US,38.86,-77.05,0 +20599,UNIQUE,0,Washington,,"Pre Inaugural Committee",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20601,STANDARD,0,Waldorf,,,MD,"Charles County",America/New_York,"240,301",NA,US,38.64,-76.9,25300 +20602,STANDARD,0,Waldorf,"Saint Charles",,MD,"Charles County",America/New_York,"240,301",NA,US,38.58,-76.89,25490 +20603,STANDARD,0,Waldorf,"Saint Charles",,MD,"Charles County",America/New_York,"240,301",NA,US,38.63,-76.98,30770 +20604,"PO BOX",0,Waldorf,"Saint Charles",,MD,"Charles County",America/New_York,240,NA,US,38.64,-76.9,1437 +20606,STANDARD,0,Abell,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.25,-76.74,260 +20607,STANDARD,0,Accokeek,,,MD,"Prince George's County",America/New_York,301,NA,US,38.67,-77.01,11920 +20608,STANDARD,0,Aquasco,"Eagle Harbor",,MD,"Prince George's County",America/New_York,240,NA,US,38.58,-76.7,710 +20609,STANDARD,0,Avenue,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.27,-76.77,1050 +20610,"PO BOX",0,Barstow,,,MD,"Calvert County",America/New_York,410,NA,US,38.52,-76.6,233 +20611,STANDARD,0,"Bel Alton",,,MD,"Charles County",America/New_York,"240,301",NA,US,38.46,-76.98,1000 +20612,"PO BOX",0,Benedict,,,MD,"Charles County",America/New_York,240,NA,US,38.5,-76.68,319 +20613,STANDARD,0,Brandywine,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.69,-76.85,14590 +20615,STANDARD,0,"Broomes Island","Broomes Is",,MD,"Calvert County",America/New_York,410,NA,US,38.42,-76.55,370 +20616,STANDARD,0,"Bryans Road",,"Bryans Rd, Marshall Hall",MD,"Charles County",America/New_York,301,NA,US,38.63,-77.07,6830 +20617,STANDARD,0,Bryantown,,,MD,"Charles County",America/New_York,240,NA,US,38.55,-76.84,900 +20618,STANDARD,0,Bushwood,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.28,-76.78,740 +20619,STANDARD,0,California,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.29,-76.49,13150 +20620,STANDARD,0,Callaway,,,MD,"St. Mary's County",America/New_York,"301,240",NA,US,38.23,-76.51,1420 +20621,STANDARD,0,Chaptico,Maddox,,MD,"St. Mary's County",America/New_York,301,NA,US,38.33,-76.8,1290 +20622,STANDARD,0,"Charlotte Hall","Charlott Hall",,MD,"Charles County",America/New_York,240,NA,US,38.42,-76.87,4510 +20623,STANDARD,0,Cheltenham,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.74,-76.84,2810 +20624,STANDARD,0,Clements,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.34,-76.73,1180 +20625,"PO BOX",0,"Cobb Island",,,MD,"Charles County",America/New_York,240,NA,US,38.26,-76.85,799 +20626,STANDARD,0,"Coltons Point",,,MD,"St. Mary's County",America/New_York,240,NA,US,38.23,-76.76,320 +20627,"PO BOX",0,Compton,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.3,-76.63,271 +20628,STANDARD,0,Dameron,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.15,-76.36,540 +20629,"PO BOX",0,Dowell,,,MD,"Calvert County",America/New_York,410,NA,US,38.34,-76.45,409 +20630,STANDARD,0,Drayden,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.17,-76.47,480 +20632,STANDARD,0,Faulkner,,,MD,"Charles County",America/New_York,240,NA,US,38.43,-76.97,470 +20634,STANDARD,0,"Great Mills",,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.27,-76.51,6670 +20635,"PO BOX",0,Helen,,,MD,"St Mary's County",America/New_York,240,NA,US,38.41,-76.73,24 +20636,STANDARD,0,Hollywood,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.34,-76.57,10120 +20637,STANDARD,0,Hughesville,,,MD,"Charles County",America/New_York,"240,301",NA,US,38.53,-76.78,5640 +20639,STANDARD,0,Huntingtown,,,MD,"Calvert County",America/New_York,"410,443",NA,US,38.61,-76.61,15580 +20640,STANDARD,0,"Indian Head",Pisgah,,MD,"Charles County",America/New_York,"240,301",NA,US,38.59,-77.15,8720 +20643,"PO BOX",0,Ironsides,,,MD,"Charles County",America/New_York,240,NA,US,38.49,-77.16,43 +20645,STANDARD,0,Issue,"Swan Point",,MD,"Charles County",America/New_York,"240,301",NA,US,38.29,-76.91,890 +20646,STANDARD,0,"La Plata",Dentsville,Laplata,MD,"Charles County",America/New_York,"240,301",NA,US,38.53,-76.97,18850 +20650,STANDARD,0,Leonardtown,,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.29,-76.64,13850 +20653,STANDARD,0,"Lexington Park","Lexington Pk","Lex Pk",MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.24,-76.43,21230 +20656,STANDARD,0,Loveville,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.35,-76.67,519 +20657,STANDARD,0,Lusby,,,MD,"Calvert County",America/New_York,410,NA,US,38.41,-76.45,18000 +20658,STANDARD,0,Marbury,Rison,,MD,"Charles County",America/New_York,240,NA,US,38.56,-77.16,930 +20659,STANDARD,0,Mechanicsville,Mechanicsvlle,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.43,-76.73,22830 +20660,"PO BOX",0,Morganza,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.37,-76.71,239 +20661,"PO BOX",0,"Mount Victoria","Mt Victoria",,MD,"Charles County",America/New_York,240,NA,US,38.33,-76.91,62 +20662,STANDARD,0,Nanjemoy,,,MD,"Charles County",America/New_York,"240,301",NA,US,38.45,-77.21,2290 +20664,STANDARD,0,Newburg,,,MD,"Charles County",America/New_York,"301,240",NA,US,38.34,-76.92,2530 +20667,STANDARD,0,"Park Hall",,,MD,"St. Mary's County",America/New_York,240,NA,US,38.22,-76.44,440 +20670,STANDARD,0,"Patuxent River","Patuxent Rvr","Patuxent River Naval Air Sta",MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.28,-76.42,1120 +20674,STANDARD,0,"Piney Point",,"Piney Pt",MD,"St. Mary's County",America/New_York,301,NA,US,38.13,-76.5,710 +20675,STANDARD,0,Pomfret,,,MD,"Charles County",America/New_York,301,NA,US,38.58,-77.02,1570 +20676,STANDARD,0,"Port Republic",,,MD,"Calvert County",America/New_York,"443,410",NA,US,38.49,-76.54,3310 +20677,STANDARD,0,"Port Tobacco",,,MD,"Charles County",America/New_York,"240,301",NA,US,38.49,-77.04,2370 +20678,STANDARD,0,"Prince Frederick","Dares Beach, Prnc Frederck","Pr Frederick",MD,"Calvert County",America/New_York,"410,443",NA,US,38.54,-76.58,11510 +20680,STANDARD,0,Ridge,,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.11,-76.37,740 +20682,"PO BOX",0,"Rock Point",,"Rock Pt",MD,"Charles County",America/New_York,240,NA,US,38.34,-76.92,0 +20684,STANDARD,0,"Saint Inigoes",,"Beachville, St Inigoes",MD,"St. Mary's County",America/New_York,240,NA,US,38.15,-76.41,1110 +20685,STANDARD,0,"Saint Leonard",,"St Leonard",MD,"Calvert County",America/New_York,410,NA,US,38.47,-76.5,6320 +20686,"PO BOX",0,"Saint Marys City","Saint Marys, St Marys City",,MD,"St. Mary's County",America/New_York,240,NA,US,38.18,-76.42,240 +20687,STANDARD,0,Scotland,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.07,-76.34,260 +20688,STANDARD,0,Solomons,Dowell,,MD,"Calvert County",America/New_York,"410,443,667",NA,US,38.33,-76.46,2420 +20689,STANDARD,0,Sunderland,,,MD,"Calvert County",America/New_York,410,NA,US,38.66,-76.58,1860 +20690,STANDARD,0,"Tall Timbers",,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.16,-76.53,780 +20692,STANDARD,0,"Valley Lee",,,MD,"St. Mary's County",America/New_York,301,NA,US,38.18,-76.5,1000 +20693,STANDARD,0,Welcome,,,MD,"Charles County",America/New_York,240,NA,US,38.45,-77.08,1020 +20695,STANDARD,0,"White Plains",,,MD,"Charles County",America/New_York,301,NA,US,38.59,-76.97,12100 +20697,UNIQUE,0,"Southern Md Facility","Sthrn Md Fac","Southern Md Brm",MD,"Prince George's County",America/New_York,240,NA,US,39.03,-76.9,0 +20701,STANDARD,0,"Annapolis Junction","Annapolis Jct",,MD,"Howard County",America/New_York,"410,443",NA,US,39.12,-76.77,420 +20703,"PO BOX",0,Lanham,"Lanham Seabrook",Seabrook,MD,"Prince George's County",America/New_York,240,NA,US,38.96,-76.85,411 +20704,"PO BOX",0,Beltsville,,,MD,"Prince George's County",America/New_York,240,NA,US,39.03,-76.92,412 +20705,STANDARD,0,Beltsville,Calverton,,MD,"Prince George's County",America/New_York,"240,301,410",NA,US,39.03,-76.92,27360 +20706,STANDARD,0,Lanham,"Glenarden, Lanham Seabrook, Seabrook",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.96,-76.85,43370 +20707,STANDARD,0,Laurel,,,MD,"Prince George's County",America/New_York,"240,301,410,443",NA,US,39.1,-76.88,34680 +20708,STANDARD,0,Laurel,Montpelier,,MD,"Prince George's County",America/New_York,"240,301,410,443",NA,US,39.09,-76.85,24330 +20709,"PO BOX",0,Laurel,Montpelier,,MD,"Prince George's County",America/New_York,240,NA,US,39.09,-76.85,348 +20710,STANDARD,0,Bladensburg,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.94,-76.92,8860 +20711,STANDARD,0,Lothian,,,MD,"Anne Arundel County",America/New_York,"240,301",NA,US,38.8,-76.65,6750 +20712,STANDARD,0,"Mount Rainier",,"Mt Rainier",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.94,-76.96,7670 +20714,STANDARD,0,"North Beach","Holland Point, Rose Haven","N Beach",MD,"Calvert County",America/New_York,"301,410,443",NA,US,38.7,-76.53,4000 +20715,STANDARD,0,Bowie,,,MD,"Prince George's County",America/New_York,"301,240",NA,US,38.99,-76.74,24630 +20716,STANDARD,0,Bowie,Mitchellville,"S Bowie, South Bowie",MD,"Prince George's County",America/New_York,301,NA,US,38.95,-76.73,20090 +20717,"PO BOX",0,Bowie,Mitchellville,,MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.73,117 +20718,"PO BOX",0,Bowie,,,MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.73,358 +20719,"PO BOX",0,Bowie,,"W Bowie",MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.73,76 +20720,STANDARD,0,Bowie,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.98,-76.79,24130 +20721,STANDARD,0,Bowie,Mitchellville,,MD,"Prince George's County",America/New_York,301,NA,US,38.92,-76.79,28280 +20722,STANDARD,0,Brentwood,"Colmar Manor, Cottage City, N Brentwood, North Brentwood",Brentwd,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.94,-76.95,5960 +20723,STANDARD,0,Laurel,Scaggsville,,MD,"Howard County",America/New_York,"240,301,410,443",NA,US,39.14,-76.87,33360 +20724,STANDARD,0,Laurel,"Maryland City, Md City, Russett",,MD,"Anne Arundel County",America/New_York,"240,301,410,443",NA,US,39.1,-76.8,17370 +20725,"PO BOX",0,Laurel,,,MD,"Prince George's County",America/New_York,240,NA,US,39.09,-76.85,488 +20726,"PO BOX",0,Laurel,,,MD,"Prince George's County",America/New_York,240,NA,US,39.09,-76.85,109 +20731,"PO BOX",0,"Capitol Heights","Capitol Hgts",,MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,319 +20732,STANDARD,0,"Chesapeake Beach","Chesapeak Bch",,MD,"Calvert County",America/New_York,410,NA,US,38.68,-76.53,9970 +20733,STANDARD,0,Churchton,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.81,-76.53,2670 +20735,STANDARD,0,Clinton,,,MD,"Prince George's County",America/New_York,"301,240",NA,US,38.76,-76.89,35880 +20736,STANDARD,0,Owings,,,MD,"Calvert County",America/New_York,410,NA,US,38.69,-76.62,9010 +20737,STANDARD,0,Riverdale,"Riverdale Park, Riverdale Pk",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.96,-76.92,23070 +20738,"PO BOX",0,Riverdale,,,MD,"Prince George's County",America/New_York,240,NA,US,38.96,-76.92,294 +20740,STANDARD,0,"College Park","Berwyn Heights, Berwyn Hts","Berwyn, North College Park",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.99,-76.93,19140 +20741,"PO BOX",0,"College Park",,,MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.93,284 +20742,UNIQUE,0,"College Park",,"University Of Maryland",MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.95,165 +20743,STANDARD,0,"Capitol Heights","Capitol Hgts, Fairmount Heights, Fairmount Hgt, Seat Pleasant",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.87,-76.9,34350 +20744,STANDARD,0,"Fort Washington","Ft Washington",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.73,-77,49460 +20745,STANDARD,0,"Oxon Hill","Forest Heights, Forest Hts","National Harbor",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.8,-76.99,27280 +20746,STANDARD,0,Suitland,"Camp Springs, Hillcrest Hgts, Hillcrest Hts, Morningside","Marlow Heights, Silver Hill",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.83,-76.92,25320 +20747,STANDARD,0,"District Heights","District Hts, Forestville",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.85,-76.88,34280 +20748,STANDARD,0,"Temple Hills","Camp Springs, Hillcrest Heights, Hillcrest Hts, Marlow Heights, Marlow Hgts",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.81,-76.93,33470 +20749,"PO BOX",0,"Fort Washington","Ft Washington",,MD,"Prince George's County",America/New_York,240,NA,US,38.73,-77,530 +20750,"PO BOX",0,"Oxon Hill",,,MD,"Prince George's County",America/New_York,240,NA,US,38.8,-76.99,466 +20751,STANDARD,0,Deale,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.79,-76.54,2170 +20752,"PO BOX",0,Suitland,,,MD,"Prince George's County",America/New_York,240,NA,US,38.83,-76.92,336 +20753,"PO BOX",0,"District Heights","District Hts",Forestville,MD,"Prince George's County",America/New_York,240,NA,US,38.85,-76.88,597 +20754,STANDARD,0,Dunkirk,,,MD,"Calvert County",America/New_York,,NA,US,38.72,-76.66,6880 +20755,STANDARD,0,"Fort George G Meade","Fort Meade","Fort George Meade, Ft George G Meade, Ft Meade",MD,"Anne Arundel County",America/New_York,410,NA,US,39.11,-76.75,8560 +20757,"PO BOX",0,"Temple Hills",,,MD,"Prince George's County",America/New_York,240,NA,US,38.8,-76.94,630 +20758,STANDARD,0,Friendship,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.73,-76.59,740 +20759,STANDARD,0,Fulton,,,MD,"Howard County",America/New_York,410,NA,US,39.15,-76.92,6520 +20762,STANDARD,0,"Andrews Air Force Base","Andrews AFB, Jb Andrews",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.8,-76.87,2870 +20763,STANDARD,0,Savage,,,MD,"Howard County",America/New_York,"410,443",NA,US,39.13,-76.81,2620 +20764,STANDARD,0,"Shady Side",,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.83,-76.52,3920 +20765,"PO BOX",0,Galesville,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.84,-76.54,553 +20768,"PO BOX",0,Greenbelt,,,MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.88,413 +20769,STANDARD,0,"Glenn Dale",,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.98,-76.8,6840 +20770,STANDARD,0,Greenbelt,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.99,-76.88,23990 +20771,UNIQUE,0,Greenbelt,,"Goddard Flight Center",MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.88,0 +20772,STANDARD,0,"Upper Marlboro","Uppr Marlboro",Marlboro,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.81,-76.75,45210 +20773,"PO BOX",0,"Upper Marlboro","Uppr Marlboro",,MD,"Prince George's County",America/New_York,240,NA,US,38.81,-76.75,613 +20774,STANDARD,0,"Upper Marlboro","Glenarden, Kettering, Largo, Springdale, Uppr Marlboro, Upr Marlboro",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.87,-76.77,47420 +20775,"PO BOX",0,"Upper Marlboro","Uppr Marlboro",Kettering,MD,"Prince George's County",America/New_York,240,NA,US,38.81,-76.75,184 +20776,STANDARD,0,Harwood,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.86,-76.6,3150 +20777,STANDARD,0,Highland,,,MD,"Howard County",America/New_York,240,NA,US,39.17,-76.95,3530 +20778,STANDARD,0,"West River",,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,38.82,-76.55,1720 +20779,STANDARD,0,"Tracys Landing","Tracys Lndg",Fairhaven,MD,"Anne Arundel County",America/New_York,410,NA,US,38.76,-76.58,1290 +20781,STANDARD,0,Hyattsville,,"Avondale, Cheverly, Edmonston, Rogers Heights, Tuxedo",MD,"Prince George's County",America/New_York,"240,301",NA,US,38.95,-76.95,12750 +20782,STANDARD,0,Hyattsville,"Chillum, University Pa, University Park, W Hyattsville, West Hyattsville","Avondale, Green Meadow, Lewisdale, Prince Georges Metro Ctr",MD,"Prince George's County",America/New_York,"240,301",NA,US,38.97,-76.97,29580 +20783,STANDARD,0,Hyattsville,Adelphi,"Langley Park",MD,"Prince George's County",America/New_York,301,NA,US,39,-76.97,43220 +20784,STANDARD,0,Hyattsville,"Cheverly, Landover Hills, Landover Hls, New Carrolltn, New Carrollton",Lanham,MD,"Prince George's County",America/New_York,301,NA,US,38.95,-76.89,32040 +20785,STANDARD,0,Hyattsville,"Cheverly, Landover, N Englewood, North Englewood","Ardmore, Palmer Park",MD,"Prince George's County",America/New_York,"240,301",NA,US,38.92,-76.88,37140 +20787,"PO BOX",0,Hyattsville,"Langley Park",,MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.95,535 +20788,"PO BOX",0,Hyattsville,"W Hyattsville","Prince George Plaza",MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.95,51 +20790,UNIQUE,0,"Capitol Heights","Capitol Hgts","Southern Maryland Facility",MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,0 +20791,"PO BOX",0,"Capitol Heights","Capitol Hgts",,MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,600 +20792,"PO BOX",0,"Upper Marlboro","Largo, Uppr Marlboro",,MD,"Prince George's County",America/New_York,240,NA,US,38.82,-76.75,441 +20794,STANDARD,0,Jessup,,,MD,"Howard County",America/New_York,"410,443",NA,US,39.14,-76.77,10650 +20797,UNIQUE,0,"Southern Md Facility","Sthrn Md Fac","Southern Md Brm",MD,"Prince George's County",America/New_York,240,NA,US,39.03,-76.9,0 +20799,UNIQUE,0,"Capitol Heights","Capitol Hgts","Washington Ndc",MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,0 +20810,UNIQUE,0,Bethesda,,Geico,MD,"Montgomery County",America/New_York,240,NA,US,38.97,-77.1,0 +20811,UNIQUE,0,Bethesda,,Geico,MD,"Montgomery County",America/New_York,240,NA,US,38.97,-77.1,0 +20812,STANDARD,0,"Glen Echo",,,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.97,-77.14,320 +20813,"PO BOX",0,Bethesda,,,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,52 +20814,STANDARD,0,Bethesda,,,MD,"Montgomery County",America/New_York,"301,240",NA,US,39,-77.1,27480 +20815,STANDARD,0,"Chevy Chase","Bethesda, Chevy Chase Village, Chevy Chs Vlg, Martins Add, Martins Additions, N Chevy Chase, North Chevy Chase",Somerset,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.98,-77.08,27270 +20816,STANDARD,0,Bethesda,,,MD,"Montgomery County",America/New_York,"301,240",NA,US,38.96,-77.12,15550 +20817,STANDARD,0,Bethesda,Westlake,,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.98,-77.12,35050 +20818,STANDARD,0,"Cabin John",,,MD,"Montgomery County",America/New_York,"301,240",NA,US,38.97,-77.16,1740 +20824,"PO BOX",0,Bethesda,,,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,315 +20825,"PO BOX",0,"Chevy Chase",Bethesda,,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.08,50 +20827,"PO BOX",0,Bethesda,"W Bethesda, Westlake",,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,229 +20830,"PO BOX",0,Olney,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.08,360 +20832,STANDARD,0,Olney,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.08,25270 +20833,STANDARD,0,Brookeville,,"Sunshine, Unity",MD,"Montgomery County",America/New_York,,NA,US,39.17,-77.05,7880 +20837,STANDARD,0,Poolesville,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.14,-77.41,6540 +20838,STANDARD,0,Barnesville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.22,-77.39,280 +20839,STANDARD,0,Beallsville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.19,-77.43,230 +20841,STANDARD,0,Boyds,,,MD,"Montgomery County",America/New_York,240,NA,US,39.18,-77.31,9210 +20842,STANDARD,0,Dickerson,,Comus,MD,"Montgomery County",America/New_York,,NA,US,39.22,-77.42,1750 +20847,"PO BOX",0,Rockville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,92 +20848,"PO BOX",0,Rockville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,308 +20849,"PO BOX",0,Rockville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,476 +20850,STANDARD,0,Rockville,Potomac,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.08,-77.15,45080 +20851,STANDARD,0,Rockville,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.08,-77.12,13590 +20852,STANDARD,0,Rockville,"N Bethesda, North Bethesda","No Bethesda",MD,"Montgomery County",America/New_York,"240,301",NA,US,39.05,-77.12,40220 +20853,STANDARD,0,Rockville,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.1,-77.09,30570 +20854,STANDARD,0,Potomac,Rockville,,MD,"Montgomery County",America/New_York,301,NA,US,39.02,-77.19,48600 +20855,STANDARD,0,Derwood,Rockville,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.13,-77.13,15850 +20857,UNIQUE,0,Rockville,,Hhs,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,0 +20859,"PO BOX",0,Potomac,Rockville,,MD,"Montgomery County",America/New_York,240,NA,US,39.02,-77.19,255 +20860,STANDARD,0,"Sandy Spring",,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.14,-77.02,1930 +20861,STANDARD,0,Ashton,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.15,-76.98,2760 +20862,STANDARD,0,Brinklow,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.18,-77.01,410 +20866,STANDARD,0,Burtonsville,,,MD,"Montgomery County",America/New_York,301,NA,US,39.11,-76.93,14820 +20868,STANDARD,0,Spencerville,,,MD,"Montgomery County",America/New_York,301,NA,US,39.12,-76.96,740 +20871,STANDARD,0,Clarksburg,Hyattstown,,MD,"Montgomery County",America/New_York,"301,240",NA,US,39.23,-77.27,27070 +20872,STANDARD,0,Damascus,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.29,-77.22,12990 +20874,STANDARD,0,Germantown,Darnestown,,MD,"Montgomery County",America/New_York,240,NA,US,39.17,-77.26,58580 +20875,"PO BOX",0,Germantown,,,MD,"Montgomery County",America/New_York,240,NA,US,39.17,-77.26,628 +20876,STANDARD,0,Germantown,,,MD,"Montgomery County",America/New_York,240,NA,US,39.21,-77.24,24860 +20877,STANDARD,0,Gaithersburg,"Montgomery Village, Montgomry Vlg",,MD,"Montgomery County",America/New_York,"301,240",NA,US,39.14,-77.21,35970 +20878,STANDARD,0,Gaithersburg,"Darnestown, N Potomac, No Potomac, North Potomac",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.12,-77.25,63350 +20879,STANDARD,0,Gaithersburg,"Montgomery Village, Montgomry Vlg",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.17,-77.18,25290 +20880,"PO BOX",0,"Washington Grove","Washingtn Grv",,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.17,740 +20882,STANDARD,0,Gaithersburg,"Brookeville, Laytonsville",,MD,"Montgomery County",America/New_York,240,NA,US,39.24,-77.15,13810 +20883,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.17,-77.19,161 +20884,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.21,366 +20885,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.21,344 +20886,STANDARD,0,"Montgomery Village","Gaithersburg, Montgomry Vlg",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.19,-77.21,33500 +20889,UNIQUE,0,Bethesda,,"National Naval Medical Ctr, Walter Reed Natl Mil Med Ctr",MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,273 +20891,"PO BOX",0,Kensington,,,MD,"Montgomery County",America/New_York,240,NA,US,39.02,-77.07,119 +20892,UNIQUE,0,Bethesda,,"National Institute Of Health",MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,0 +20894,UNIQUE,0,Bethesda,,"National Library Of Medicine",MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,0 +20895,STANDARD,0,Kensington,,"North Bethesda",MD,"Montgomery County",America/New_York,"301,240",NA,US,39.02,-77.07,19180 +20896,"PO BOX",0,"Garrett Park",,,MD,"Montgomery County",America/New_York,240,NA,US,39.04,-77.09,1020 +20897,UNIQUE,0,"Suburb Maryland Fac","Subn Md Fac","Suburban Md Brm",MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.05,0 +20898,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.21,347 +20899,UNIQUE,0,Gaithersburg,,"Natl Inst Stds & Tech Md",MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.22,0 +20901,STANDARD,0,"Silver Spring","Takoma Park",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.01,-77.02,35940 +20902,STANDARD,0,"Silver Spring",Wheaton,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.05,-77.04,50390 +20903,STANDARD,0,"Silver Spring",,Hillandale,MD,"Montgomery County",America/New_York,301,NA,US,39.02,-76.98,23620 +20904,STANDARD,0,"Silver Spring",Colesville,Cloverly,MD,"Montgomery County",America/New_York,301,NA,US,39.07,-76.98,54640 +20905,STANDARD,0,"Silver Spring","Colesville, Sandy Spring",Cloverly,MD,"Montgomery County",America/New_York,301,NA,US,39.11,-76.99,17610 +20906,STANDARD,0,"Silver Spring","Aspen Hill","Glenmont, Leisure World, Norbeck, Wheaton",MD,"Montgomery County",America/New_York,"301,240",NA,US,39.09,-77.06,67910 +20907,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,323 +20908,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,38 +20910,STANDARD,0,"Silver Spring",,"Takoma Pk",MD,"Montgomery County",America/New_York,"240,301",NA,US,39,-77.04,38620 +20911,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,115 +20912,STANDARD,0,"Takoma Park","Silver Spring",,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.98,-77,23430 +20913,"PO BOX",0,"Takoma Park","Silver Spring",,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77,225 +20914,"PO BOX",0,"Silver Spring",Colesville,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,526 +20915,"PO BOX",0,"Silver Spring",Wheaton,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,270 +20916,"PO BOX",0,"Silver Spring","Aspen Hill",,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,425 +20918,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,236 +20993,UNIQUE,0,"Silver Spring",,"Us Food And Drug Admin",MD,"Montgomery County",America/New_York,240,NA,US,39.03,-76.98,0 +20997,UNIQUE,0,"Silver Spring",,"Suburban Md Brm",MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,0 +21001,STANDARD,0,Aberdeen,,,MD,"Harford County",America/New_York,"410,443,667",NA,US,39.51,-76.17,22570 +21005,STANDARD,0,"Aberdeen Proving Ground","Aber Prov Grd",Apg,MD,"Harford County",America/New_York,"443,667",NA,US,39.49,-76.14,2130 +21009,STANDARD,0,Abingdon,,,MD,"Harford County",America/New_York,410,NA,US,39.46,-76.27,29380 +21010,STANDARD,0,Gunpowder,"Aber Prov Grd, Aberdeen Proving Ground","Edgewood Arsenal",MD,"Harford County",America/New_York,410,NA,US,39.39,-76.29,580 +21012,STANDARD,0,Arnold,,,MD,"Anne Arundel County",America/New_York,410,NA,US,39.04,-76.49,21430 +21013,STANDARD,0,Baldwin,,,MD,"Baltimore County",America/New_York,,NA,US,39.51,-76.49,4820 +21014,STANDARD,0,"Bel Air",,,MD,"Harford County",America/New_York,"410,443",NA,US,39.53,-76.34,36010 +21015,STANDARD,0,"Bel Air",,,MD,"Harford County",America/New_York,"410,443",NA,US,39.54,-76.29,29180 +21017,STANDARD,0,Belcamp,,Riverside,MD,"Harford County",America/New_York,410,NA,US,39.47,-76.23,5710 +21018,"PO BOX",0,Benson,,,MD,"Harford County",America/New_York,410,NA,US,39.51,-76.18,51 +21020,"PO BOX",0,Boring,,,MD,"Baltimore County",America/New_York,410,NA,US,39.57,-76.8,111 +21022,"PO BOX",0,Brooklandville,Brooklandvl,,MD,"Baltimore County",America/New_York,410,NA,US,39.42,-76.67,326 +21023,"PO BOX",0,Butler,,,MD,"Baltimore County",America/New_York,410,NA,US,39.55,-76.68,247 +21027,"PO BOX",0,Chase,,,MD,"Baltimore County",America/New_York,410,NA,US,39.36,-76.37,185 +21028,STANDARD,0,Churchville,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.56,-76.24,3160 +21029,STANDARD,0,Clarksville,,,MD,"Howard County",America/New_York,240,NA,US,39.2,-76.94,13020 +21030,STANDARD,0,Cockeysville,"Cockysvil, Hunt Valley",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.47,-76.63,24100 +21031,STANDARD,0,"Hunt Valley",,,MD,"Baltimore County",America/New_York,"443,410",NA,US,39.49,-76.65,23 +21032,STANDARD,0,Crownsville,,,MD,"Anne Arundel County",America/New_York,410,NA,US,39.01,-76.59,8610 +21034,STANDARD,0,Darlington,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.63,-76.2,3040 +21035,STANDARD,0,Davidsonville,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.93,-76.63,8060 +21036,STANDARD,0,Dayton,,,MD,"Howard County",America/New_York,240,NA,US,39.23,-77,2190 +21037,STANDARD,0,Edgewater,,,MD,"Anne Arundel County",America/New_York,"301,410",NA,US,38.9,-76.54,20170 +21040,STANDARD,0,Edgewood,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.42,-76.29,22210 +21041,"PO BOX",0,"Ellicott City",,Ellicott,MD,"Howard County",America/New_York,410,NA,US,39.27,-76.83,398 +21042,STANDARD,0,"Ellicott City",,Ellicott,MD,"Howard County",America/New_York,"410,443",NA,US,39.27,-76.83,42660 +21043,STANDARD,0,"Ellicott City","Daniels, Ilchester, Oella",Ellicott,MD,"Howard County",America/New_York,"410,443",NA,US,39.26,-76.8,46000 +21044,STANDARD,0,Columbia,,,MD,"Howard County",America/New_York,"240,301,410,443",NA,US,39.21,-76.88,40280 +21045,STANDARD,0,Columbia,,,MD,"Howard County",America/New_York,"240,301,410,443",NA,US,39.2,-76.85,36910 +21046,STANDARD,0,Columbia,,,MD,"Howard County",America/New_York,"301,410,443,240",NA,US,39.17,-76.84,15140 +21047,STANDARD,0,Fallston,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.52,-76.42,12890 +21048,STANDARD,0,Finksburg,Patapsco,,MD,"Carroll County",America/New_York,443,NA,US,39.49,-76.88,10130 +21050,STANDARD,0,"Forest Hill",,,MD,"Harford County",America/New_York,410,NA,US,39.58,-76.39,18220 +21051,STANDARD,0,Fork,,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.47,-76.45,340 +21052,"PO BOX",0,"Fort Howard",,,MD,"Baltimore County",America/New_York,410,NA,US,39.21,-76.45,417 +21053,STANDARD,0,Freeland,,,MD,"Baltimore County",America/New_York,410,NA,US,39.69,-76.72,3160 +21054,STANDARD,0,Gambrills,,,MD,"Anne Arundel County",America/New_York,240,NA,US,39.04,-76.69,12950 +21056,"PO BOX",0,"Gibson Island",,,MD,"Anne Arundel County",America/New_York,410,NA,US,39.07,-76.42,256 +21057,STANDARD,0,"Glen Arm",,,MD,"Baltimore County",America/New_York,410,NA,US,39.44,-76.5,3950 +21060,STANDARD,0,"Glen Burnie",,,MD,"Anne Arundel County",America/New_York,"443,410",NA,US,39.16,-76.6,34330 +21061,STANDARD,0,"Glen Burnie",,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.16,-76.63,49780 +21062,UNIQUE,0,"Glen Burnie",,"Md Motor Vehicle Admin",MD,"Anne Arundel County",America/New_York,410,NA,US,39.16,-76.6,0 +21065,UNIQUE,0,"Hunt Valley","Cockys Ht Vly","Huntvalley, Pdp Group Inc",MD,"Baltimore County",America/New_York,410,NA,US,39.49,-76.65,0 +21071,"PO BOX",0,Glyndon,,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.47,-76.81,632 +21074,STANDARD,0,Hampstead,Greenmount,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.61,-76.85,14740 +21075,STANDARD,0,Elkridge,,,MD,"Howard County",America/New_York,"240,443,410",NA,US,39.2,-76.75,32860 +21076,STANDARD,0,Hanover,,Harmans,MD,"Anne Arundel County",America/New_York,443,NA,US,39.16,-76.72,19650 +21077,STANDARD,0,Harmans,,,MD,"Anne Arundel County",America/New_York,443,NA,US,39.16,-76.7,320 +21078,STANDARD,0,"Havre De Grace","Hvre De Grace",,MD,"Harford County",America/New_York,"667,410,443",NA,US,39.54,-76.09,17910 +21082,STANDARD,0,Hydes,,,MD,"Baltimore County",America/New_York,410,NA,US,39.48,-76.47,830 +21084,STANDARD,0,Jarrettsville,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.6,-76.47,7370 +21085,STANDARD,0,Joppa,,"Joppatown, Joppatowne",MD,"Harford County",America/New_York,443,NA,US,39.43,-76.35,15870 +21087,STANDARD,0,Kingsville,Bradshaw,,MD,"Baltimore County",America/New_York,,NA,US,39.44,-76.41,5400 +21088,"PO BOX",0,Lineboro,Manchester,,MD,"Carroll County",America/New_York,410,NA,US,39.71,-76.84,35 +21090,STANDARD,0,"Linthicum Heights","Linthicum, Linthicum Hts",,MD,"Anne Arundel County",America/New_York,"443,410",NA,US,39.2,-76.66,9820 +21092,"PO BOX",0,"Long Green",,,MD,"Baltimore County",America/New_York,410,NA,US,39.47,-76.52,156 +21093,STANDARD,0,"Lutherville Timonium","Lutherville, Luthvle Timon, Timonium",,MD,"Baltimore County",America/New_York,410,NA,US,39.43,-76.64,36960 +21094,"PO BOX",0,"Lutherville Timonium","Lutherville, Luthvle Timon, Timonium",,MD,"Baltimore County",America/New_York,410,NA,US,39.43,-76.64,247 +21098,UNIQUE,1,Hanover,"Household Bank",,MD,"Anne Arundel County",America/New_York,410,NA,US,39.19,-76.72,0 +21102,STANDARD,0,Manchester,"Lineboro, Millers",,MD,"Carroll County",America/New_York,"410,443",NA,US,39.65,-76.89,11610 +21104,STANDARD,0,Marriottsville,"Henryton, Marriottsvl, Woodstock",,MD,"Carroll County",America/New_York,,NA,US,39.35,-76.89,5720 +21105,"PO BOX",0,"Maryland Line",,,MD,"Baltimore County",America/New_York,410,NA,US,39.71,-76.65,132 +21106,"PO BOX",0,Mayo,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.89,-76.5,259 +21108,STANDARD,0,Millersville,,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.05,-76.64,17780 +21111,STANDARD,0,Monkton,Hereford,,MD,"Baltimore County",America/New_York,,NA,US,39.57,-76.58,4920 +21113,STANDARD,0,Odenton,,,MD,"Anne Arundel County",America/New_York,"240,301,410,443",NA,US,39.05,-76.72,32590 +21114,STANDARD,0,Crofton,,,MD,"Anne Arundel County",America/New_York,"240,410,443,667",NA,US,39.01,-76.68,25240 +21117,STANDARD,0,"Owings Mills",Garrison,,MD,"Baltimore County",America/New_York,410,NA,US,39.41,-76.79,51850 +21120,STANDARD,0,Parkton,"Bentley Spgs, Bentley Springs",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.65,-76.67,7150 +21122,STANDARD,0,Pasadena,"Lake Shore, Riviera Beach",,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.11,-76.55,58170 +21123,"PO BOX",0,Pasadena,"Lake Shore, Riviera Beach",,MD,"Anne Arundel County",America/New_York,410,NA,US,39.11,-76.55,635 +21128,STANDARD,0,"Perry Hall",,Perryhall,MD,"Baltimore County",America/New_York,410,NA,US,39.41,-76.45,14180 +21130,"PO BOX",0,Perryman,,,MD,"Harford County",America/New_York,410,NA,US,39.48,-76.19,237 +21131,STANDARD,0,Phoenix,Jacksonville,,MD,"Baltimore County",America/New_York,410,NA,US,39.5,-76.56,7740 +21132,STANDARD,0,Pylesville,,,MD,"Harford County",America/New_York,410,NA,US,39.68,-76.37,2610 +21133,STANDARD,0,Randallstown,"Mcdonogh Run",Foxridge,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.37,-76.8,27130 +21136,STANDARD,0,Reisterstown,Glyndon,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.45,-76.81,32830 +21139,"PO BOX",0,Riderwood,,,MD,"Baltimore County",America/New_York,410,NA,US,39.4,-76.6,157 +21140,STANDARD,0,Riva,,,MD,"Anne Arundel County",America/New_York,"301,410",NA,US,38.94,-76.58,3500 +21144,STANDARD,0,Severn,,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.13,-76.69,34850 +21146,STANDARD,0,"Severna Park",,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.08,-76.57,28240 +21150,"PO BOX",0,Simpsonville,,,MD,"Howard County",America/New_York,410,NA,US,39.18,-76.88,90 +21152,STANDARD,0,"Sparks Glencoe","Glencoe, Sparks, Sparks Glenco",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.54,-76.68,5610 +21153,"PO BOX",0,Stevenson,,,MD,"Baltimore County",America/New_York,410,NA,US,39.42,-76.7,925 +21154,STANDARD,0,Street,,,MD,"Harford County",America/New_York,410,NA,US,39.65,-76.34,6070 +21155,STANDARD,0,Upperco,Fowbelsburg,,MD,"Baltimore County",America/New_York,,NA,US,39.57,-76.8,2250 +21156,STANDARD,0,"Upper Falls",,,MD,"Baltimore County",America/New_York,410,NA,US,39.43,-76.4,350 +21157,STANDARD,0,Westminster,,Carrollton,MD,"Carroll County",America/New_York,"410,443",NA,US,39.57,-77,33560 +21158,STANDARD,0,Westminster,,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.65,-77.04,20190 +21160,STANDARD,0,Whiteford,Cardiff,,MD,"Harford County",America/New_York,"410,443",NA,US,39.7,-76.34,2230 +21161,STANDARD,0,"White Hall",,Norrisville,MD,"Harford County",America/New_York,,NA,US,39.65,-76.56,5140 +21162,STANDARD,0,"White Marsh",,,MD,"Baltimore County",America/New_York,"443,410",NA,US,39.39,-76.41,4760 +21163,STANDARD,0,Woodstock,Granite,,MD,"Howard County",America/New_York,,NA,US,39.32,-76.87,7250 +21201,STANDARD,0,Baltimore,,,MD,"Baltimore city",America/New_York,"410,443,667,301",NA,US,39.29,-76.62,10800 +21202,STANDARD,0,Baltimore,"East Case",,MD,"Baltimore city",America/New_York,"301,443,410,667",NA,US,39.3,-76.61,12240 +21203,"PO BOX",0,Baltimore,,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,1290 +21204,STANDARD,0,Towson,"Baltimore, Eudowood, Loch Raven, Ruxton",,MD,"Baltimore County",America/New_York,"410,443,667",NA,US,39.39,-76.62,15160 +21205,STANDARD,0,Baltimore,,"Clifton East End, East End",MD,"Baltimore city",America/New_York,"410,443",NA,US,39.3,-76.56,11050 +21206,STANDARD,0,Baltimore,Raspeburg,,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.34,-76.54,41800 +21207,STANDARD,0,"Gwynn Oak","Baltimore, Pikesville, Woodlawn",,MD,"Baltimore County",America/New_York,"667,410,443",NA,US,39.32,-76.72,40230 +21208,STANDARD,0,Pikesville,Baltimore,,MD,"Baltimore County",America/New_York,"410,443,667",NA,US,39.39,-76.7,31150 +21209,STANDARD,0,Baltimore,"Mount Washington, Mt Washington",,MD,"Baltimore County",America/New_York,410,NA,US,39.37,-76.67,25470 +21210,STANDARD,0,Baltimore,"Roland Park",,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.36,-76.63,9260 +21211,STANDARD,0,Baltimore,,Hampden,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.33,-76.64,13310 +21212,STANDARD,0,Baltimore,Govans,,MD,"Baltimore city",America/New_York,"410,443,667",NA,US,39.37,-76.61,27190 +21213,STANDARD,0,Baltimore,Clifton,"Clifton East End",MD,"Baltimore city",America/New_York,"410,443",NA,US,39.31,-76.58,22200 +21214,STANDARD,0,Baltimore,,Hamilton,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.35,-76.56,16210 +21215,STANDARD,0,Baltimore,Arlington,,MD,"Baltimore city",America/New_York,410,NA,US,39.35,-76.68,41820 +21216,STANDARD,0,Baltimore,,Walbrook,MD,"Baltimore city",America/New_York,410,NA,US,39.31,-76.67,20150 +21217,STANDARD,0,Baltimore,Druid,,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.31,-76.64,20120 +21218,STANDARD,0,Baltimore,,Waverly,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.33,-76.6,29710 +21219,STANDARD,0,"Sparrows Point","Baltimore, Edgemere, Sparrows Pt",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.22,-76.43,8730 +21220,STANDARD,0,"Middle River",Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.33,-76.43,38490 +21221,STANDARD,0,Essex,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.3,-76.44,37450 +21222,STANDARD,0,Dundalk,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.26,-76.49,49680 +21223,STANDARD,0,Baltimore,Franklin,,MD,"Baltimore city",America/New_York,"667,410",NA,US,39.28,-76.65,14510 +21224,STANDARD,0,Baltimore,Highlandtown,,MD,"Baltimore city",America/New_York,410,NA,US,39.27,-76.54,42600 +21225,STANDARD,0,Brooklyn,"Baltimore, Brooklyn Park",,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.22,-76.61,26880 +21226,STANDARD,0,"Curtis Bay","Baltimore, Carvel Beach, Chestnut Hill Cove, Chstnt Hl Cv, Clearwater Beach, Clearwatr Bch, Greenland Bch, Greenland Beach, Orchard Beach, Stoney Beach",Brooklyn,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.21,-76.55,5760 +21227,STANDARD,0,Halethorpe,"Arbutus, Baltimore, Lansdowne",,MD,"Baltimore County",America/New_York,"240,443,410",NA,US,39.24,-76.68,30210 +21228,STANDARD,0,Catonsville,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.26,-76.74,45290 +21229,STANDARD,0,Baltimore,Carroll,,MD,"Baltimore city",America/New_York,410,NA,US,39.28,-76.69,35840 +21230,STANDARD,0,Baltimore,,,MD,"Baltimore city",America/New_York,"410,667",NA,US,39.27,-76.62,27750 +21231,STANDARD,0,Baltimore,,Patterson,MD,"Baltimore city",America/New_York,"410,443,667",NA,US,39.29,-76.59,12010 +21233,STANDARD,0,Baltimore,,,MD,"Baltimore City",America/New_York,"410,667,301,443",NA,US,39.3,-76.61,35 +21234,STANDARD,0,Parkville,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.38,-76.55,59610 +21235,UNIQUE,0,Baltimore,,"Social Security Administrat",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,20 +21236,STANDARD,0,Nottingham,Baltimore,,MD,"Baltimore County",America/New_York,410,NA,US,39.39,-76.48,37310 +21237,STANDARD,0,Rosedale,Baltimore,,MD,"Baltimore County",America/New_York,410,NA,US,39.32,-76.5,28180 +21239,STANDARD,0,Baltimore,"Idlewylde, Loch Hill, Northwood",,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.37,-76.59,22730 +21240,STANDARD,0,Baltimore,Millersville,,MD,"Anne Arundel County",America/New_York,"240,410,443",NA,US,39.17,-76.67,117 +21241,UNIQUE,0,Baltimore,,"Social Security Admin",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21244,STANDARD,0,"Windsor Mill",Baltimore,,MD,"Baltimore County",America/New_York,410,NA,US,39.33,-76.78,33130 +21250,UNIQUE,0,Baltimore,,"Univ Of Md Baltimore County",MD,"Baltimore County",America/New_York,410,NA,US,39.26,-76.71,46 +21251,UNIQUE,0,Baltimore,,"Morgan State University",MD,"Baltimore city",America/New_York,410,NA,US,39.34,-76.58,35 +21252,UNIQUE,0,Towson,Baltimore,"Towson State University",MD,"Baltimore County",America/New_York,410,NA,US,39.39,-76.61,59 +21260,STANDARD,1,Baltimore,,"Census Bureau",MD,"Baltimore City",America/New_York,410,NA,US,39.35,-76.7,0 +21261,STANDARD,1,Baltimore,Essex,"Census Bureau",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.45,0 +21263,UNIQUE,0,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21264,UNIQUE,0,Baltimore,,"M T Bank",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21265,UNIQUE,1,Baltimore,,"Verizon Telephone",MD,"Baltimore City",America/New_York,410,NA,US,39.29,-76.6,0 +21268,UNIQUE,1,Baltimore,,"Harte Hanks Direct Marketing",MD,"Baltimore City",America/New_York,410,NA,US,39.21,-76.72,0 +21270,"PO BOX",0,Baltimore,,"Reisterstown Rd Plaza",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,35 +21273,UNIQUE,0,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21274,UNIQUE,1,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.29,-76.6,0 +21275,UNIQUE,0,Baltimore,,"Wells Fargo",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21278,UNIQUE,0,Baltimore,,"Baltimore Sunpapers",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21279,UNIQUE,0,Baltimore,,"Sun Trust Bank",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21280,UNIQUE,1,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21281,"PO BOX",0,Baltimore,,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,73 +21282,"PO BOX",0,Pikesville,Baltimore,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,387 +21283,UNIQUE,1,Baltimore,"Shared Firm Zip Code",,MD,"Baltimore City",America/New_York,410,NA,US,39.29,-76.61,0 +21284,"PO BOX",0,Towson,"Baltimore, Loch Raven",,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,202 +21285,"PO BOX",0,Towson,Baltimore,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,100 +21286,STANDARD,0,Towson,"Baltimore, Loch Raven",,MD,"Baltimore County",America/New_York,"667,410,443",NA,US,39.41,-76.57,18250 +21287,STANDARD,0,Baltimore,,"Johns Hopkins, Johns Hopkins Hospital",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,34 +21288,UNIQUE,1,Baltimore,,"Household Bank",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21289,UNIQUE,0,Baltimore,,"T Rowe Price Associates Inc",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21290,UNIQUE,0,Baltimore,,"Social Security Admin",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21297,"PO BOX",0,Baltimore,,"Firms-Courtesy Reply",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,80 +21298,UNIQUE,0,Baltimore,,"Baltimore Brm",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21401,STANDARD,0,Annapolis,"Cape Saint Claire, Cpe St Claire",,MD,"Anne Arundel County",America/New_York,"410,443,301",NA,US,38.99,-76.55,35920 +21402,STANDARD,0,Annapolis,"N Severn Vlg, Naval Academy, North Severn Village",,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,38.99,-76.47,1030 +21403,STANDARD,0,Annapolis,"Highland Bch",,MD,"Anne Arundel County",America/New_York,"301,410,443",NA,US,38.97,-76.5,29020 +21404,"PO BOX",0,Annapolis,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.97,-76.5,266 +21405,STANDARD,0,Annapolis,"Sherwood Forest, Sherwood Frst",,MD,"Anne Arundel County",America/New_York,"301,410,443",NA,US,39.03,-76.56,613 +21409,STANDARD,0,Annapolis,,,MD,"Anne Arundel County",America/New_York,443,NA,US,39.02,-76.45,19780 +21411,UNIQUE,0,Annapolis,,"Comptroller Of The Treasury",MD,"Anne Arundel County",America/New_York,410,NA,US,38.97,-76.5,0 +21412,STANDARD,0,Annapolis,,"Bancroft Hall",MD,"Anne Arundel County",America/New_York,410,NA,US,38.97,-76.5,1107 +21501,"PO BOX",0,Cumberland,,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,520 +21502,STANDARD,0,Cumberland,"Cresaptown, Lavale",,MD,"Allegany County",America/New_York,"240,301",NA,US,39.65,-78.76,29730 +21503,"PO BOX",0,Cumberland,,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,56 +21504,"PO BOX",0,Cumberland,Lavale,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,93 +21505,"PO BOX",0,Cumberland,Cresaptown,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,223 +21520,STANDARD,0,Accident,,,MD,"Garrett County",America/New_York,301,NA,US,39.62,-79.32,1880 +21521,STANDARD,0,Barton,,,MD,"Allegany County",America/New_York,,NA,US,39.53,-79.01,990 +21522,STANDARD,0,Bittinger,,,MD,"Garrett County",America/New_York,301,NA,US,39.61,-79.23,154 +21523,STANDARD,0,Bloomington,,,MD,"Garrett County",America/New_York,240,NA,US,39.48,-79.08,250 +21524,"PO BOX",0,Corriganville,,,MD,"Allegany County",America/New_York,240,NA,US,39.71,-78.8,507 +21528,"PO BOX",0,"Eckhart Mines",,,MD,"Allegany County",America/New_York,240,NA,US,39.64,-78.87,59 +21529,"PO BOX",0,Ellerslie,,,MD,"Allegany County",America/New_York,240,NA,US,39.72,-78.77,680 +21530,STANDARD,0,Flintstone,,,MD,"Allegany County",America/New_York,240,NA,US,39.7,-78.56,1270 +21531,STANDARD,0,Friendsville,,,MD,"Garrett County",America/New_York,301,NA,US,39.66,-79.4,1860 +21532,STANDARD,0,Frostburg,,,MD,"Allegany County",America/New_York,"240,301",NA,US,39.66,-78.92,10160 +21536,STANDARD,0,Grantsville,Jennings,,MD,"Garrett County",America/New_York,"240,301",NA,US,39.69,-79.15,3360 +21538,STANDARD,0,Kitzmiller,Shallmar,,MD,"Garrett County",America/New_York,301,NA,US,39.41,-79.22,520 +21539,STANDARD,0,Lonaconing,,,MD,"Allegany County",America/New_York,301,NA,US,39.56,-78.97,2060 +21540,STANDARD,0,Luke,Westernport,,MD,"Allegany County",America/New_York,301,NA,US,39.48,-79.06,48 +21541,STANDARD,0,"Mc Henry","Sang Run",Mchenry,MD,"Garrett County",America/New_York,301,NA,US,39.55,-79.35,1340 +21542,"PO BOX",0,Midland,,,MD,"Allegany County",America/New_York,240,NA,US,39.6,-78.95,541 +21543,"PO BOX",0,Midlothian,,,MD,"Allegany County",America/New_York,240,NA,US,39.66,-78.96,239 +21545,STANDARD,0,"Mount Savage",,,MD,"Allegany County",America/New_York,301,NA,US,39.7,-78.85,1560 +21550,STANDARD,0,Oakland,"Crellin, Deer Park, Hutton, Loch Lyn Hght, Loch Lynn Heights, Mnt Lake Park, Mountain Lake Park, Mt Lake Park, Mtn Lk Park",,MD,"Garrett County",America/New_York,"240,301",NA,US,39.41,-79.41,11670 +21555,STANDARD,0,Oldtown,,,MD,"Allegany County",America/New_York,301,NA,US,39.54,-78.61,1380 +21556,"PO BOX",0,Pinto,,,MD,"Allegany County",America/New_York,240,NA,US,39.54,-78.89,105 +21557,STANDARD,0,Rawlings,,,MD,"Allegany County",America/New_York,240,NA,US,39.53,-78.88,1570 +21560,"PO BOX",0,"Spring Gap",,,MD,"Mineral County",America/New_York,240,NA,US,39.59,-78.69,78 +21561,STANDARD,0,Swanton,,,MD,"Garrett County",America/New_York,301,NA,US,39.47,-79.21,2060 +21562,STANDARD,0,Westernport,Mccoole,,MD,"Allegany County",America/New_York,"301,240",NA,US,39.48,-79.04,2310 +21601,STANDARD,0,Easton,,,MD,"Talbot County",America/New_York,"410,443",NA,US,38.77,-76.06,21810 +21606,UNIQUE,1,Easton,"First Fulfillment & Mgr Co",,MD,"Talbot County",America/New_York,410,NA,US,38.77,-76.07,0 +21607,STANDARD,0,Barclay,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.14,-75.86,420 +21609,"PO BOX",0,Bethlehem,,,MD,"Caroline County",America/New_York,410,NA,US,38.74,-75.93,77 +21610,STANDARD,0,Betterton,,,MD,"Kent County",America/New_York,410,NA,US,39.36,-76.07,320 +21612,STANDARD,0,Bozman,,,MD,"Talbot County",America/New_York,410,NA,US,38.75,-76.26,390 +21613,STANDARD,0,Cambridge,,,MD,"Dorchester County",America/New_York,"410,443",NA,US,38.56,-76.07,14850 +21617,STANDARD,0,Centreville,,,MD,"Queen Anne's County",America/New_York,"410,443",NA,US,39.04,-76.06,10010 +21619,STANDARD,0,Chester,,,MD,"Queen Anne's County",America/New_York,410,NA,US,38.95,-76.28,6140 +21620,STANDARD,0,Chestertown,,,MD,"Kent County",America/New_York,"410,443",NA,US,39.21,-76.07,10000 +21622,STANDARD,0,"Church Creek",,,MD,"Dorchester County",America/New_York,410,NA,US,38.5,-76.15,400 +21623,STANDARD,0,"Church Hill",,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.14,-75.98,1940 +21624,"PO BOX",0,Claiborne,,,MD,"Talbot County",America/New_York,410,NA,US,38.84,-76.27,127 +21625,STANDARD,0,Cordova,,,MD,"Talbot County",America/New_York,410,NA,US,38.87,-75.99,2160 +21626,STANDARD,0,Crapo,,,MD,"Dorchester County",America/New_York,410,NA,US,38.32,-76.12,104 +21627,STANDARD,0,Crocheron,,,MD,"Dorchester County",America/New_York,410,NA,US,38.24,-76.05,27 +21628,"PO BOX",0,Crumpton,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.23,-75.92,474 +21629,STANDARD,0,Denton,,,MD,"Caroline County",America/New_York,"410,443",NA,US,38.88,-75.82,8640 +21631,STANDARD,0,"East New Market","E New Market",,MD,"Dorchester County",America/New_York,410,NA,US,38.59,-75.92,2410 +21632,STANDARD,0,Federalsburg,,,MD,"Caroline County",America/New_York,"410,443",NA,US,38.69,-75.77,5500 +21634,STANDARD,0,"Fishing Creek",,Hoopersville,MD,"Dorchester County",America/New_York,410,NA,US,38.32,-76.23,620 +21635,STANDARD,0,Galena,Golts,,MD,"Kent County",America/New_York,410,NA,US,39.34,-75.87,1720 +21636,STANDARD,0,Goldsboro,,,MD,"Caroline County",America/New_York,410,NA,US,39.03,-75.78,1020 +21638,STANDARD,0,Grasonville,,,MD,"Queen Anne's County",America/New_York,410,NA,US,38.95,-76.19,4790 +21639,STANDARD,0,Greensboro,,,MD,"Caroline County",America/New_York,410,NA,US,38.97,-75.8,4070 +21640,STANDARD,0,Henderson,,,MD,"Caroline County",America/New_York,410,NA,US,39.07,-75.76,1470 +21641,"PO BOX",0,Hillsboro,,,MD,"Caroline County",America/New_York,410,NA,US,38.92,-75.94,172 +21643,STANDARD,0,Hurlock,,,MD,"Dorchester County",America/New_York,410,NA,US,38.62,-75.87,5250 +21644,STANDARD,0,Ingleside,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.11,-75.87,148 +21645,STANDARD,0,Kennedyville,,,MD,"Kent County",America/New_York,410,NA,US,39.3,-75.98,800 +21647,STANDARD,0,Mcdaniel,,,MD,"Talbot County",America/New_York,410,NA,US,38.82,-76.28,320 +21648,STANDARD,0,Madison,,,MD,"Dorchester County",America/New_York,410,NA,US,38.5,-76.22,186 +21649,STANDARD,0,Marydel,,,MD,"Caroline County",America/New_York,410,NA,US,39.13,-75.77,1670 +21650,STANDARD,0,Massey,,,MD,"Kent County",America/New_York,410,NA,US,39.31,-75.81,200 +21651,STANDARD,0,Millington,,,MD,"Kent County",America/New_York,410,NA,US,39.25,-75.84,2410 +21652,"PO BOX",0,Neavitt,,,MD,"Talbot County",America/New_York,410,NA,US,38.72,-76.28,176 +21653,"PO BOX",0,Newcomb,,,MD,"Talbot County",America/New_York,410,NA,US,38.75,-76.18,121 +21654,STANDARD,0,Oxford,,,MD,"Talbot County",America/New_York,410,NA,US,38.68,-76.17,990 +21655,STANDARD,0,Preston,,,MD,"Caroline County",America/New_York,410,NA,US,38.71,-75.9,4480 +21656,"PO BOX",0,Price,"Church Hill",,MD,"Queen Anne's County",America/New_York,410,NA,US,39.14,-75.99,0 +21657,STANDARD,0,"Queen Anne",,,MD,"Queen Anne's County",America/New_York,410,NA,US,38.97,-75.99,1080 +21658,STANDARD,0,Queenstown,,,MD,"Queen Anne's County",America/New_York,"410,443",NA,US,38.98,-76.15,3570 +21659,STANDARD,0,Rhodesdale,"Brookview, Eldorado, Galestown",,MD,"Dorchester County",America/New_York,"410,443",NA,US,38.59,-75.79,820 +21660,STANDARD,0,Ridgely,,,MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,3700 +21661,STANDARD,0,"Rock Hall",,,MD,"Kent County",America/New_York,410,NA,US,39.14,-76.24,2120 +21662,STANDARD,0,"Royal Oak",,,MD,"Talbot County",America/New_York,410,NA,US,38.71,-76.21,630 +21663,STANDARD,0,"Saint Michaels","St Michaels",,MD,"Talbot County",America/New_York,410,NA,US,38.78,-76.22,2720 +21664,"PO BOX",0,Secretary,,,MD,"Dorchester County",America/New_York,410,NA,US,38.61,-75.94,637 +21665,STANDARD,0,Sherwood,,,MD,"Talbot County",America/New_York,410,NA,US,38.74,-76.32,230 +21666,STANDARD,0,Stevensville,,,MD,"Queen Anne's County",America/New_York,"410,443",NA,US,38.99,-76.3,12410 +21667,STANDARD,0,"Still Pond",,,MD,"Kent County",America/New_York,410,NA,US,39.32,-76.05,300 +21668,STANDARD,0,Sudlersville,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.18,-75.85,1590 +21669,"PO BOX",0,"Taylors Island","Taylors Is",,MD,"Dorchester County",America/New_York,410,NA,US,38.46,-76.3,211 +21670,"PO BOX",0,Templeville,,,MD,"Caroline County",America/New_York,410,NA,US,39.13,-75.76,32 +21671,STANDARD,0,Tilghman,,,MD,"Talbot County",America/New_York,410,NA,US,38.69,-76.33,720 +21672,STANDARD,0,Toddville,,,MD,"Dorchester County",America/New_York,410,NA,US,38.27,-76.05,199 +21673,STANDARD,0,Trappe,,,MD,"Talbot County",America/New_York,"410,443",NA,US,38.65,-76.05,2850 +21675,STANDARD,0,Wingate,,,MD,"Dorchester County",America/New_York,410,NA,US,38.28,-76.08,81 +21676,STANDARD,0,Wittman,,,MD,"Talbot County",America/New_York,410,NA,US,38.78,-76.3,260 +21677,STANDARD,0,Woolford,,Madison,MD,"Dorchester County",America/New_York,410,NA,US,38.5,-76.18,420 +21678,STANDARD,0,Worton,Lynch,,MD,"Kent County",America/New_York,410,NA,US,39.29,-76.11,1960 +21679,STANDARD,0,"Wye Mills",,,MD,"Talbot County",America/New_York,410,NA,US,38.91,-76.08,480 +21681,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21682,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21683,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21684,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21685,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21686,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21687,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21688,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21690,UNIQUE,0,Chestertown,,"Usa Fulfillment",MD,"Kent County",America/New_York,410,NA,US,39.21,-76.07,0 +21701,STANDARD,0,Frederick,Lewistown,"Hood College",MD,"Frederick County",America/New_York,"240,301",NA,US,39.42,-77.41,34700 +21702,STANDARD,0,Frederick,"Fort Detrick","College Estates",MD,"Frederick County",America/New_York,"240,301",NA,US,39.48,-77.46,41200 +21703,STANDARD,0,Frederick,,,MD,"Frederick County",America/New_York,"301,240",NA,US,39.37,-77.47,37740 +21704,STANDARD,0,Frederick,Urbana,,MD,"Frederick County",America/New_York,"301,240",NA,US,39.35,-77.38,17990 +21705,"PO BOX",0,Frederick,,,MD,"Frederick County",America/New_York,240,NA,US,39.41,-77.41,758 +21709,UNIQUE,0,Frederick,,"State Farm Ins Co",MD,"Frederick County",America/New_York,240,NA,US,39.42,-77.41,0 +21710,STANDARD,0,Adamstown,Doubs,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.29,-77.45,4490 +21711,STANDARD,0,"Big Pool",,,MD,"Washington County",America/New_York,240,NA,US,39.66,-78,930 +21713,STANDARD,0,Boonsboro,,,MD,"Washington County",America/New_York,240,NA,US,39.5,-77.65,8940 +21714,"PO BOX",0,"Braddock Heights","Braddock Hts",,MD,"Frederick County",America/New_York,240,NA,US,39.42,-77.5,439 +21715,"PO BOX",0,Brownsville,,,MD,"Washington County",America/New_York,240,NA,US,39.38,-77.66,115 +21716,STANDARD,0,Brunswick,,Knoxville,MD,"Frederick County",America/New_York,301,NA,US,39.31,-77.61,6150 +21717,"PO BOX",0,Buckeystown,,,MD,"Frederick County",America/New_York,240,NA,US,39.34,-77.44,406 +21718,STANDARD,0,Burkittsville,,,MD,"Frederick County",America/New_York,240,NA,US,39.39,-77.63,216 +21719,STANDARD,0,Cascade,"Fort Ritchie, Highfield",,MD,"Washington County",America/New_York,"240,301",NA,US,39.7,-77.49,1150 +21720,"PO BOX",0,Cavetown,,,MD,"Washington County",America/New_York,240,NA,US,39.65,-77.57,250 +21721,"PO BOX",0,Chewsville,,,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.68,151 +21722,STANDARD,0,"Clear Spring","Big Spring",,MD,"Washington County",America/New_York,301,NA,US,39.65,-77.93,5210 +21723,STANDARD,0,Cooksville,,,MD,"Howard County",America/New_York,410,NA,US,39.33,-77,1020 +21727,STANDARD,0,Emmitsburg,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.7,-77.32,3830 +21733,STANDARD,0,Fairplay,"St James",,MD,"Washington County",America/New_York,240,NA,US,39.55,-77.76,1170 +21734,"PO BOX",0,Funkstown,,,MD,"Washington County",America/New_York,240,NA,US,39.61,-77.71,1015 +21737,STANDARD,0,Glenelg,,,MD,"Howard County",America/New_York,410,NA,US,39.25,-77.03,2280 +21738,STANDARD,0,Glenwood,,,MD,"Howard County",America/New_York,"410,443",NA,US,39.28,-77.02,3450 +21740,STANDARD,0,Hagerstown,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.63,-77.71,52680 +21741,"PO BOX",0,Hagerstown,,,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,870 +21742,STANDARD,0,Hagerstown,,Northern,MD,"Washington County",America/New_York,"240,301",NA,US,39.68,-77.65,29850 +21746,UNIQUE,0,Hagerstown,,"Md Correctional System",MD,"Washington County",America/New_York,240,NA,US,39.57,-77.71,28 +21747,"PO BOX",0,Hagerstown,,,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,0 +21748,UNIQUE,1,Hagerstown,,Citicorp,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,0 +21749,UNIQUE,0,Hagerstown,,"Citicorp Brm",MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,0 +21750,STANDARD,0,Hancock,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.7,-78.17,3190 +21754,STANDARD,0,Ijamsville,,,MD,"Frederick County",America/New_York,240,NA,US,39.33,-77.31,6990 +21755,STANDARD,0,Jefferson,,,MD,"Frederick County",America/New_York,240,NA,US,39.36,-77.53,5540 +21756,STANDARD,0,Keedysville,,,MD,"Washington County",America/New_York,301,NA,US,39.48,-77.69,3520 +21757,STANDARD,0,Keymar,"Detour, Middleburg",,MD,"Frederick County",America/New_York,,NA,US,39.59,-77.26,2630 +21758,STANDARD,0,Knoxville,Brunswick,,MD,"Frederick County",America/New_York,301,NA,US,39.35,-77.64,4490 +21759,"PO BOX",0,Ladiesburg,,,MD,"Frederick County",America/New_York,240,NA,US,39.56,-77.26,48 +21762,"PO BOX",0,Libertytown,,,MD,"Frederick County",America/New_York,240,NA,US,39.48,-77.25,490 +21765,"PO BOX",0,Lisbon,,,MD,"Howard County",America/New_York,410,NA,US,39.33,-77.07,179 +21766,STANDARD,0,"Little Orleans","Ltl Orleans",,MD,"Allegany County",America/New_York,240,NA,US,39.67,-78.39,560 +21767,STANDARD,0,Maugansville,,,MD,"Washington County",America/New_York,240,NA,US,39.7,-77.75,1050 +21769,STANDARD,0,Middletown,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.44,-77.54,11620 +21770,STANDARD,0,Monrovia,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.35,-77.25,7040 +21771,STANDARD,0,"Mount Airy",,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.37,-77.15,30120 +21773,STANDARD,0,Myersville,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.5,-77.56,5190 +21774,STANDARD,0,"New Market",,"Lake Linganore",MD,"Frederick County",America/New_York,301,NA,US,39.41,-77.27,14950 +21775,"PO BOX",0,"New Midway",,,MD,"Frederick County",America/New_York,240,NA,US,39.55,-77.3,34 +21776,STANDARD,0,"New Windsor",,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.54,-77.1,5490 +21777,STANDARD,0,"Point Of Rocks","Pt Of Rocks",,MD,"Frederick County",America/New_York,240,NA,US,39.27,-77.53,1850 +21778,STANDARD,0,"Rocky Ridge",,,MD,"Frederick County",America/New_York,240,NA,US,39.61,-77.33,920 +21779,STANDARD,0,Rohrersville,Gapland,,MD,"Washington County",America/New_York,240,NA,US,39.43,-77.65,890 +21780,STANDARD,0,Sabillasville,,,MD,"Frederick County",America/New_York,240,NA,US,39.7,-77.45,1400 +21781,"PO BOX",0,"Saint James",,,MD,"Washington County",America/New_York,240,NA,US,39.57,-77.76,84 +21782,STANDARD,0,Sharpsburg,,,MD,"Washington County",America/New_York,240,NA,US,39.45,-77.74,3630 +21783,STANDARD,0,Smithsburg,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.65,-77.57,8410 +21784,STANDARD,0,Sykesville,"Eldersburg, Gaither",,MD,"Carroll County",America/New_York,"410,443",NA,US,39.37,-76.97,38330 +21787,STANDARD,0,Taneytown,,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.65,-77.16,10010 +21788,STANDARD,0,Thurmont,Graceham,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.62,-77.4,10920 +21790,STANDARD,0,Tuscarora,,,MD,"Frederick County",America/New_York,240,NA,US,39.26,-77.5,134 +21791,STANDARD,0,"Union Bridge",Linwood,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.56,-77.17,4880 +21792,"PO BOX",0,Unionville,,,MD,"Frederick County",America/New_York,240,NA,US,39.51,-77.11,0 +21793,STANDARD,0,Walkersville,,,MD,"Frederick County",America/New_York,301,NA,US,39.48,-77.35,10090 +21794,STANDARD,0,"West Friendship","W Friendship",,MD,"Howard County",America/New_York,410,NA,US,39.3,-76.95,2630 +21795,STANDARD,0,Williamsport,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.59,-77.81,8680 +21797,STANDARD,0,Woodbine,,,MD,"Howard County",America/New_York,,NA,US,39.33,-77.06,9130 +21798,STANDARD,0,Woodsboro,,,MD,"Frederick County",America/New_York,240,NA,US,39.53,-77.31,2300 +21801,STANDARD,0,Salisbury,,,MD,"Wicomico County",America/New_York,"443,410,667",NA,US,38.38,-75.64,23890 +21802,"PO BOX",0,Salisbury,,,MD,"Wicomico County",America/New_York,410,NA,US,38.34,-75.58,1309 +21803,"PO BOX",0,Salisbury,,,MD,"Wicomico County",America/New_York,410,NA,US,38.37,-75.58,508 +21804,STANDARD,0,Salisbury,,,MD,"Wicomico County",America/New_York,"410,667,443",NA,US,38.37,-75.58,32040 +21810,"PO BOX",0,Allen,,,MD,"Wicomico County",America/New_York,410,NA,US,38.3,-75.71,163 +21811,STANDARD,0,Berlin,"Ocean Pines, Ocean Pnes",,MD,"Worcester County",America/New_York,"410,443",NA,US,38.32,-75.21,21420 +21813,STANDARD,0,Bishopville,,Bishop,MD,"Worcester County",America/New_York,"410,443",NA,US,38.44,-75.19,2760 +21814,STANDARD,0,Bivalve,,,MD,"Wicomico County",America/New_York,410,NA,US,38.3,-75.88,270 +21817,STANDARD,0,Crisfield,,,MD,"Somerset County",America/New_York,"410,443",NA,US,37.98,-75.85,3990 +21821,STANDARD,0,"Deal Island","Chance, Dames Quarter, Wenona",,MD,"Somerset County",America/New_York,410,NA,US,38.15,-75.94,660 +21822,STANDARD,0,Eden,,,MD,"Somerset County",America/New_York,,NA,US,38.28,-75.65,2450 +21824,STANDARD,0,Ewell,,"Rhodes Point",MD,"Somerset County",America/New_York,410,NA,US,37.98,-76.03,142 +21826,STANDARD,0,Fruitland,,,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.62,4550 +21829,STANDARD,0,Girdletree,,,MD,"Worcester County",America/New_York,410,NA,US,38.09,-75.39,410 +21830,STANDARD,0,Hebron,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.41,-75.68,3860 +21835,STANDARD,0,Linkwood,,,MD,"Dorchester County",America/New_York,"410,443",NA,US,38.54,-75.94,340 +21836,"PO BOX",0,Manokin,,,MD,"Somerset County",America/New_York,410,NA,US,38.11,-75.75,73 +21837,STANDARD,0,"Mardela Springs","Mardela, Mardela Spgs",,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.45,-75.75,2360 +21838,STANDARD,0,"Marion Station","Marion, Marion Sta",,MD,"Somerset County",America/New_York,410,NA,US,38.01,-75.73,1490 +21840,STANDARD,0,Nanticoke,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.27,-75.9,310 +21841,STANDARD,0,Newark,,,MD,"Worcester County",America/New_York,410,NA,US,38.25,-75.29,830 +21842,STANDARD,0,"Ocean City",,"North Ocean City, West Ocean City",MD,"Worcester County",America/New_York,"410,443",NA,US,38.35,-75.13,11680 +21843,"PO BOX",0,"Ocean City",,,MD,"Worcester County",America/New_York,410,NA,US,38.33,-75.08,1256 +21849,STANDARD,0,Parsonsburg,,,MD,"Wicomico County",America/New_York,410,NA,US,38.38,-75.47,2840 +21850,STANDARD,0,Pittsville,,,MD,"Wicomico County",America/New_York,410,NA,US,38.39,-75.41,2690 +21851,STANDARD,0,"Pocomoke City",,Pocomoke,MD,"Worcester County",America/New_York,"410,443",NA,US,38.06,-75.56,6250 +21852,"PO BOX",0,Powellville,,,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.37,0 +21853,STANDARD,0,"Princess Anne",,Oriole,MD,"Somerset County",America/New_York,"410,443",NA,US,38.2,-75.69,7050 +21856,STANDARD,0,Quantico,,Whitehaven,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.79,790 +21857,"PO BOX",0,Rehobeth,,,MD,"Somerset County",America/New_York,410,NA,US,38.03,-75.66,0 +21861,"PO BOX",0,Sharptown,,,MD,"Wicomico County",America/New_York,410,NA,US,38.54,-75.73,815 +21862,STANDARD,0,Showell,,,MD,"Worcester County",America/New_York,410,NA,US,38.4,-75.23,96 +21863,STANDARD,0,"Snow Hill",,,MD,"Worcester County",America/New_York,"410,443",NA,US,38.17,-75.39,4100 +21864,STANDARD,0,Stockton,,,MD,"Worcester County",America/New_York,410,NA,US,38.05,-75.4,590 +21865,STANDARD,0,Tyaskin,,,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.87,380 +21866,"PO BOX",0,Tylerton,,,MD,"Somerset County",America/New_York,410,NA,US,37.97,-76.02,51 +21867,"PO BOX",0,"Upper Fairmount","Fairmount, Upper Fairmt, Upper Hill",,MD,"Somerset County",America/New_York,410,NA,US,38.11,-75.79,213 +21869,STANDARD,0,Vienna,,"Elliott, Salem",MD,"Dorchester County",America/New_York,410,NA,US,38.44,-75.9,800 +21871,STANDARD,0,Westover,,"Easton Correctional Inst, Kingston, Rumbley",MD,"Somerset County",America/New_York,410,NA,US,38.12,-75.7,1600 +21872,STANDARD,0,Whaleyville,,,MD,"Worcester County",America/New_York,410,NA,US,38.4,-75.3,610 +21874,STANDARD,0,Willards,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.39,-75.34,2020 +21875,STANDARD,0,Delmar,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.45,-75.57,6250 +21890,UNIQUE,0,Westover,,"Eastern Correctional Inst, Easton Correctional Inst",MD,"Somerset County",America/New_York,410,NA,US,38.16,-75.7,0 +21901,STANDARD,0,"North East",,Northeast,MD,"Cecil County",America/New_York,"410,443",NA,US,39.6,-75.94,16440 +21902,"PO BOX",0,"Perry Point",,,MD,"Cecil County",America/New_York,410,NA,US,39.55,-76.06,121 +21903,STANDARD,0,Perryville,,,MD,"Cecil County",America/New_York,"410,443",NA,US,39.57,-76.06,4930 +21904,STANDARD,0,"Port Deposit",Bainbridge,,MD,"Cecil County",America/New_York,"410,443",NA,US,39.6,-76.11,6130 +21911,STANDARD,0,"Rising Sun",,,MD,"Cecil County",America/New_York,410,NA,US,39.69,-76.06,10170 +21912,STANDARD,0,Warwick,,,MD,"Cecil County",America/New_York,410,NA,US,39.42,-75.8,1100 +21913,"PO BOX",0,Cecilton,,,MD,"Cecil County",America/New_York,410,NA,US,39.4,-75.87,776 +21914,"PO BOX",0,Charlestown,,,MD,"Cecil County",America/New_York,410,NA,US,39.57,-75.97,813 +21915,STANDARD,0,"Chesapeake City","Chesapeake Cy",,MD,"Cecil County",America/New_York,"443,410",NA,US,39.52,-75.81,2760 +21916,"PO BOX",0,Childs,,,MD,"Cecil County",America/New_York,410,NA,US,39.64,-75.86,159 +21917,STANDARD,0,Colora,,,MD,"Cecil County",America/New_York,410,NA,US,39.66,-76.09,2340 +21918,STANDARD,0,Conowingo,,,MD,"Cecil County",America/New_York,410,NA,US,39.68,-76.16,3790 +21919,STANDARD,0,Earleville,,,MD,"Cecil County",America/New_York,410,NA,US,39.41,-75.93,2590 +21920,"PO BOX",0,"Elk Mills",,,MD,"Cecil County",America/New_York,410,NA,US,39.66,-75.83,365 +21921,STANDARD,0,Elkton,,,MD,"Cecil County",America/New_York,"410,443",NA,US,39.6,-75.82,37990 +21922,"PO BOX",0,Elkton,,,MD,"Cecil County",America/New_York,410,NA,US,39.6,-75.82,980 +21930,"PO BOX",0,Georgetown,,,MD,"Cecil County",America/New_York,410,NA,US,39.38,-75.89,222 +22003,STANDARD,0,Annandale,,,VA,"Fairfax County",America/New_York,703,NA,US,38.83,-77.21,53400 +22009,"PO BOX",0,Burke,Springfield,,VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.27,305 +22015,STANDARD,0,Burke,Springfield,,VA,"Fairfax County",America/New_York,703,NA,US,38.78,-77.27,42560 +22025,STANDARD,0,Dumfries,Montclair,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.6,-77.34,17840 +22026,STANDARD,0,Dumfries,Southbridge,,VA,"Prince William County",America/New_York,571,NA,US,38.56,-77.3,18850 +22027,STANDARD,0,"Dunn Loring",Vienna,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.89,-77.22,2230 +22030,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,571,NA,US,38.84,-77.34,48880 +22031,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.85,-77.29,30860 +22032,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.82,-77.29,28920 +22033,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,703,NA,US,38.88,-77.38,36900 +22034,STANDARD,0,Fairfax,,"Journal Newspaper",VA,"Fairfax City",America/New_York,571,NA,US,38.85,-77.29,0 +22035,STANDARD,0,Fairfax,,"Fairfax County Government",VA,"Fairfax County",America/New_York,571,NA,US,38.85,-77.36,0 +22036,STANDARD,0,Fairfax,,"Journal Newspaper",VA,"Fairfax City",America/New_York,"571,703",NA,US,38.85,-77.29,0 +22037,UNIQUE,0,Fairfax,,"Mobil Oil Corp",VA,"Fairfax City",America/New_York,571,NA,US,38.85,-77.29,67 +22038,"PO BOX",0,Fairfax,,,VA,"Fairfax City",America/New_York,571,NA,US,38.85,-77.29,415 +22039,STANDARD,0,"Fairfax Station","Fairfax Sta, Fx Station",,VA,"Fairfax County",America/New_York,571,NA,US,38.76,-77.31,19100 +22040,"PO BOX",0,"Falls Church",,,VA,"Falls Church City",America/New_York,571,NA,US,38.88,-77.17,382 +22041,STANDARD,0,"Falls Church","Baileys Crossroads, Baileys Xrds",,VA,"Fairfax County",America/New_York,703,NA,US,38.84,-77.14,23870 +22042,STANDARD,0,"Falls Church",Mosby,,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.2,31090 +22043,STANDARD,0,"Falls Church",Pimmit,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.9,-77.2,23170 +22044,STANDARD,0,"Falls Church","Seven Corners","7 Corners",VA,"Fairfax County",America/New_York,571,NA,US,38.86,-77.15,11660 +22046,STANDARD,0,"Falls Church",,,VA,"Falls Church city",America/New_York,"571,703",NA,US,38.88,-77.17,17600 +22047,UNIQUE,1,"Falls Church",,Aaa,VA,"Falls Church City",America/New_York,571,NA,US,38.86,-77.22,0 +22060,STANDARD,0,"Fort Belvoir","Ft Belvoir",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.7,-77.14,9220 +22066,STANDARD,0,"Great Falls",,,VA,"Fairfax County",America/New_York,703,NA,US,39.01,-77.28,18050 +22067,STANDARD,0,Greenway,"Mc Lean",,VA,"Fairfax County",America/New_York,703,NA,US,38.93,-77.16,0 +22079,STANDARD,0,Lorton,"Mason Neck",,VA,"Fairfax County",America/New_York,"703,571",NA,US,38.7,-77.24,33540 +22081,STANDARD,0,Merrifield,,"Northern Virginia, Northern Virginia Facility",VA,"Fairfax County",America/New_York,"571,703",NA,US,38.87,-77.24,0 +22082,UNIQUE,0,Merrifield,,"Engineering Support Center",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,0 +22092,UNIQUE,1,Herndon,,"U S Geological Survey",VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,0 +22093,UNIQUE,1,Ashburn,"Natl Assn Letter Carriers",,VA,"Loudoun County",America/New_York,571,NA,US,39.04,-77.48,0 +22095,UNIQUE,0,Herndon,Reston,"Business Reply Mail",VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,0 +22096,UNIQUE,0,Reston,Herndon,Sprint,VA,"Fairfax County",America/New_York,571,NA,US,38.95,-77.34,0 +22101,STANDARD,0,"Mc Lean",Mclean,Maclean,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.94,-77.19,29720 +22102,STANDARD,0,"Mc Lean","Mclean, Tysons, Tysons Corner, West Mclean",Maclean,VA,"Fairfax County",America/New_York,"703,571",NA,US,38.95,-77.23,23910 +22103,"PO BOX",0,"West Mclean","Mc Lean, Mclean",Maclean,VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.16,170 +22106,"PO BOX",0,"Mc Lean",Mclean,,VA,"Fairfax County",America/New_York,571,NA,US,38.94,-77.19,265 +22107,UNIQUE,0,"Mc Lean",,Gannett,VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.18,0 +22108,UNIQUE,0,"Mc Lean",,"Usa Today",VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.18,0 +22109,UNIQUE,0,"Mc Lean",,"Wachovia Bank",VA,"Fairfax County",America/New_York,571,NA,US,38.94,-77.19,0 +22116,"PO BOX",0,Merrifield,,,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,624 +22118,UNIQUE,0,Merrifield,,"Bank Of America",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,0 +22119,UNIQUE,0,Merrifield,,"Navy Federal Credit Union",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,0 +22120,UNIQUE,1,Merrifield,"Continental Telephone",,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.22,0 +22121,"PO BOX",0,"Mount Vernon",,,VA,"Fairfax County",America/New_York,571,NA,US,38.71,-77.1,74 +22122,"PO BOX",0,Newington,,,VA,"Fairfax County",America/New_York,571,NA,US,38.73,-77.2,112 +22124,STANDARD,0,Oakton,Vienna,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.89,-77.3,17910 +22125,"PO BOX",0,Occoquan,,,VA,"Prince William County",America/New_York,571,NA,US,38.68,-77.26,654 +22134,STANDARD,0,Quantico,,"Mcb Quantico, Quantico Naval Hospital",VA,"Prince William County",America/New_York,571,NA,US,38.52,-77.29,4790 +22135,UNIQUE,0,Quantico,,"Fbi Academy",VA,"Prince William County",America/New_York,571,NA,US,38.52,-77.29,0 +22150,STANDARD,0,Springfield,,,VA,"Fairfax County",America/New_York,703,NA,US,38.78,-77.17,26770 +22151,STANDARD,0,Springfield,"N Springfield, North Springfield","N Springfld",VA,"Fairfax County",America/New_York,703,NA,US,38.8,-77.21,17210 +22152,STANDARD,0,Springfield,"W Springfield, West Springfield",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.77,-77.23,29200 +22153,STANDARD,0,Springfield,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.74,-77.24,32060 +22156,UNIQUE,0,Springfield,,"Firm Zip",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22158,UNIQUE,0,Springfield,,"Army Times, Springfield Brm",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22159,STANDARD,0,Springfield,,"Army Times, Firm Zip",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22160,UNIQUE,0,Springfield,,"National Right To Work Comm",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22161,UNIQUE,0,Springfield,,"Dept Of Commerce",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22172,STANDARD,0,Triangle,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.54,-77.31,9550 +22180,STANDARD,0,Vienna,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.9,-77.26,24900 +22181,STANDARD,0,Vienna,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.91,-77.29,14760 +22182,STANDARD,0,Vienna,"Tysons, Tysons Corner",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.94,-77.27,26280 +22183,"PO BOX",0,Vienna,,,VA,"Fairfax County",America/New_York,571,NA,US,38.9,-77.26,258 +22184,UNIQUE,1,Vienna,,"National Wildlife Assoc",VA,"Fairfax County",America/New_York,571,NA,US,38.9,-77.26,0 +22185,UNIQUE,0,Vienna,Oakton,"A T & T, AT&T",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.3,0 +22191,STANDARD,0,Woodbridge,,Wdbg,VA,"Prince William County",America/New_York,"571,703",NA,US,38.63,-77.26,68120 +22192,STANDARD,0,Woodbridge,"Lake Ridge, Prince William, Prince Wm",,VA,"Prince William County",America/New_York,"571,703",NA,US,38.68,-77.31,56250 +22193,STANDARD,0,Woodbridge,"Dale City",Dalecity,VA,"Prince William County",America/New_York,"571,703",NA,US,38.64,-77.35,79970 +22194,"PO BOX",0,Woodbridge,,,VA,"Prince William County",America/New_York,571,NA,US,38.63,-77.26,666 +22195,"PO BOX",0,Woodbridge,,,VA,"Prince William County",America/New_York,571,NA,US,38.63,-77.26,1056 +22199,"PO BOX",0,Lorton,,,VA,"Fairfax County",America/New_York,571,NA,US,38.7,-77.24,474 +22201,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.89,-77.1,31480 +22202,STANDARD,0,Arlington,,"Crystal City",VA,"Arlington County",America/New_York,"571,703",NA,US,38.86,-77.05,20150 +22203,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.12,20060 +22204,STANDARD,0,Arlington,,South,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.1,46660 +22205,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"703,571",NA,US,38.88,-77.14,17630 +22206,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,703,NA,US,38.84,-77.09,18890 +22207,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"703,571",NA,US,38.91,-77.12,31550 +22209,STANDARD,0,Arlington,Rosslyn,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.9,-77.08,10950 +22210,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,264 +22211,STANDARD,0,"Fort Myer","Ft Myer",,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.07,620 +22212,UNIQUE,0,Arlington,,"Navy Mutual Aid Assoc",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22213,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.9,-77.16,3470 +22214,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.07,133 +22215,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,201 +22216,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,181 +22217,UNIQUE,0,Arlington,,"Office Of Naval Research",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22218,UNIQUE,1,Arlington,"Visa Lottery",,VA,"Arlington County",America/New_York,571,NA,US,38.88,-77.09,0 +22219,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,257 +22222,UNIQUE,1,Arlington,,"Marine Corps Institute",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22223,UNIQUE,1,Arlington,,"Marine Corps Institute, Business Reply Mail",VA,"Arlington County",America/New_York,571,NA,US,38.88,-77.09,0 +22225,UNIQUE,0,Arlington,,"Dept Of The Navy",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22226,UNIQUE,0,Arlington,,Fdic,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22227,UNIQUE,0,Arlington,,"Us Air",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22229,UNIQUE,1,Arlington,"Shared Firm Zip",,VA,"Arlington County",America/New_York,571,NA,US,38.89,-77.07,0 +22230,UNIQUE,0,Arlington,,"National Science Foundation",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22234,UNIQUE,1,Arlington,Gannett,,VA,"Arlington County",America/New_York,571,NA,US,38.89,-77.07,0 +22240,UNIQUE,0,Arlington,,"Us Navy Accounting Office",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22241,UNIQUE,0,Arlington,,"Naval Supply System Command",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22242,UNIQUE,0,Arlington,,"Navy Sea Systems Command",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22243,UNIQUE,0,Arlington,,"Naval Air System Command",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22244,UNIQUE,0,Arlington,,"Assistant Secretary Of Navy",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22245,UNIQUE,0,Arlington,,"Space & Naval Warfare System",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22246,UNIQUE,0,Arlington,,"Us Unmanned Aerial Vehicles",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22301,STANDARD,0,Alexandria,Potomac,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.82,-77.06,13270 +22302,STANDARD,0,Alexandria,,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.82,-77.08,16090 +22303,STANDARD,0,Alexandria,"Jefferson Manor, Jefferson Mnr",,VA,"Fairfax County",America/New_York,703,NA,US,38.79,-77.08,14330 +22304,STANDARD,0,Alexandria,,"Cameron Station, Theological Seminary, Trade Center",VA,"Alexandria city",America/New_York,"571,703",NA,US,38.81,-77.11,42600 +22305,STANDARD,0,Alexandria,,"George Washington",VA,"Alexandria city",America/New_York,"571,703",NA,US,38.84,-77.06,14970 +22306,STANDARD,0,Alexandria,Community,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.76,-77.1,29660 +22307,STANDARD,0,Alexandria,Belleview,,VA,"Fairfax County",America/New_York,703,NA,US,38.77,-77.06,9790 +22308,STANDARD,0,Alexandria,"Fort Hunt",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.73,-77.06,13740 +22309,STANDARD,0,Alexandria,Engleside,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.72,-77.11,31040 +22310,STANDARD,0,Alexandria,Franconia,,VA,"Fairfax County",America/New_York,703,NA,US,38.78,-77.12,28090 +22311,STANDARD,0,Alexandria,,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.83,-77.13,16590 +22312,STANDARD,0,Alexandria,Lincolnia,,VA,"Fairfax County",America/New_York,703,NA,US,38.82,-77.15,27890 +22313,"PO BOX",0,Alexandria,,,VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,457 +22314,STANDARD,0,Alexandria,,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.81,-77.06,30900 +22315,STANDARD,0,Alexandria,Kingstowne,,VA,"Fairfax County",America/New_York,703,NA,US,38.76,-77.15,26980 +22320,"PO BOX",0,Alexandria,,,VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,184 +22321,UNIQUE,1,Alexandria,"Firm Zip",,VA,"Alexandria City",America/New_York,571,NA,US,38.8,-77.05,0 +22331,STANDARD,0,Alexandria,,,VA,"Alexandria City",America/New_York,703,NA,US,38.82,-77.08,0 +22332,STANDARD,0,Alexandria,,,VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,0 +22333,UNIQUE,0,Alexandria,,"Us Army Mat Com",VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,0 +22334,UNIQUE,0,Alexandria,,"Sun Trust Bank",VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,0 +22336,UNIQUE,1,Alexandria,,"Woodward & Lothrop",VA,"Alexandria City",America/New_York,571,NA,US,38.8,-77.04,0 +22350,UNIQUE,0,Alexandria,,"Dept Of Defense, Dod",VA,,America/New_York,571,NA,US,38.81,-77.08,0 +22401,STANDARD,0,Fredericksburg,Fredericksbrg,"Enon, Fred",VA,"Fredericksburg city",America/New_York,540,NA,US,38.29,-77.48,21280 +22402,"PO BOX",0,Fredericksburg,Fredericksbrg,Fred,VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,552 +22403,"PO BOX",0,Fredericksburg,"Falmouth, Fredericksbrg",Fred,VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,620 +22404,"PO BOX",0,Fredericksburg,Fredericksbrg,Fred,VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,1119 +22405,STANDARD,0,Fredericksburg,"Falmouth, Fredericksbrg","Fred, Fredericksbg",VA,"Stafford County",America/New_York,540,NA,US,38.31,-77.4,31780 +22406,STANDARD,0,Fredericksburg,"Falmouth, Fredericksbrg","Fred, Fredbg, Frederickbg, Frederickbur, Fredericksbg, Fredericksbur",VA,"Stafford County",America/New_York,540,NA,US,38.4,-77.54,25040 +22407,STANDARD,0,Fredericksburg,Fredericksbrg,"Fred, Fredbg, Frederickbg, Frederickbur, Fredericksbg, Fredericksbur",VA,"Spotsylvania County",America/New_York,540,NA,US,38.28,-77.58,56890 +22408,STANDARD,0,Fredericksburg,Fredericksbrg,"Fred, Fredbg, Frederickbg, Frederickbur, Fredericksbg, Fredericksbur",VA,"Spotsylvania County",America/New_York,540,NA,US,38.22,-77.44,29210 +22412,UNIQUE,0,Fredericksburg,"Falmouth, Fredericksbrg","Geico Insurance",VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,0 +22427,STANDARD,0,"Bowling Green","Fort A P Hill","Bowling Grn, Ft Ap Hill",VA,"Caroline County",America/New_York,804,NA,US,38.04,-77.35,2840 +22428,UNIQUE,0,"Bowling Green",,"Boy Scouts Of America",VA,"Caroline County",America/New_York,804,NA,US,38.04,-77.35,0 +22430,"PO BOX",0,Brooke,Stafford,,VA,"Stafford County",America/New_York,540,NA,US,38.37,-77.34,71 +22432,STANDARD,0,Burgess,,,VA,"Northumberland County",America/New_York,804,NA,US,37.88,-76.34,600 +22433,STANDARD,0,"Burr Hill",,,VA,"Orange County",America/New_York,,NA,US,38.37,-77.86,250 +22435,STANDARD,0,Callao,,Walmsley,VA,"Northumberland County",America/New_York,804,NA,US,37.96,-76.55,2010 +22436,STANDARD,0,Caret,Supply,,VA,"Essex County",America/New_York,804,NA,US,37.98,-76.96,720 +22437,STANDARD,0,"Center Cross",,,VA,"Essex County",America/New_York,804,NA,US,37.8,-76.77,510 +22438,STANDARD,0,Champlain,Chance,Elevon,VA,"Essex County",America/New_York,804,NA,US,38.04,-76.98,370 +22442,"PO BOX",0,"Coles Point",,"Ragged Point Beach",VA,"Westmoreland County",America/New_York,804,NA,US,38.14,-76.63,76 +22443,STANDARD,0,"Colonial Beach","Colonial Bch, Oak Grove, Washgtns Brhp, Washingtons Birthplace",,VA,"Westmoreland County",America/New_York,804,NA,US,38.25,-76.97,7450 +22446,"PO BOX",0,Corbin,,,VA,"Caroline County",America/New_York,804,NA,US,38.19,-77.38,231 +22448,STANDARD,0,Dahlgren,,"Naval Surface Weapons Center",VA,"King George County",America/New_York,540,NA,US,38.34,-77.03,1240 +22451,"PO BOX",0,Dogue,,,VA,"King George County",America/New_York,540,NA,US,38.23,-77.21,139 +22454,STANDARD,0,Dunnsville,Howertons,,VA,"Essex County",America/New_York,804,NA,US,37.85,-76.82,1520 +22456,"PO BOX",0,Edwardsville,,,VA,"Northumberland County",America/New_York,804,NA,US,37.9,-76.36,30 +22460,STANDARD,0,Farnham,,,VA,"Richmond County",America/New_York,804,NA,US,37.88,-76.62,1440 +22463,"PO BOX",0,Garrisonville,,,VA,"Stafford County",America/New_York,540,NA,US,38.48,-77.42,348 +22469,STANDARD,0,Hague,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.07,-76.65,1740 +22471,"PO BOX",0,Hartwood,,,VA,"Stafford County",America/New_York,540,NA,US,38.39,-77.61,307 +22472,"PO BOX",0,Haynesville,,,VA,"Richmond County",America/New_York,804,NA,US,37.95,-76.66,363 +22473,STANDARD,0,Heathsville,,,VA,"Northumberland County",America/New_York,804,NA,US,37.91,-76.47,3880 +22476,STANDARD,0,Hustle,,,VA,"Essex County",America/New_York,804,NA,US,38.04,-77.06,290 +22480,STANDARD,0,Irvington,,,VA,"Lancaster County",America/New_York,804,NA,US,37.66,-76.42,1060 +22481,"PO BOX",0,Jersey,,,VA,"King George County",America/New_York,540,NA,US,38.21,-77.13,185 +22482,STANDARD,0,Kilmarnock,,,VA,"Lancaster County",America/New_York,804,NA,US,37.71,-76.38,2630 +22485,STANDARD,0,"King George",Shiloh,Owens,VA,"King George County",America/New_York,540,NA,US,38.26,-77.18,22930 +22488,STANDARD,0,Kinsale,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.05,-76.59,1490 +22501,STANDARD,0,Ladysmith,,,VA,"Caroline County",America/New_York,804,NA,US,38.01,-77.51,505 +22503,STANDARD,0,Lancaster,"Alfonso, Regina",Millenbeck,VA,"Lancaster County",America/New_York,804,NA,US,37.76,-76.46,2990 +22504,STANDARD,0,Laneview,,Butylo,VA,"Essex County",America/New_York,,NA,US,37.77,-76.73,180 +22507,"PO BOX",0,Lively,,,VA,"Lancaster County",America/New_York,804,NA,US,37.77,-76.51,334 +22508,STANDARD,0,"Locust Grove","Lake Of The Woods, Lake Of Woods, Mine Run",,VA,"Orange County",America/New_York,540,NA,US,38.33,-77.79,13550 +22509,STANDARD,0,Loretto,,,VA,"Essex County",America/New_York,804,NA,US,38.12,-77.08,31 +22511,STANDARD,0,Lottsburg,Lewisetta,,VA,"Northumberland County",America/New_York,804,NA,US,37.96,-76.51,1350 +22513,"PO BOX",0,"Merry Point",,,VA,"Lancaster County",America/New_York,804,NA,US,37.71,-76.5,121 +22514,STANDARD,0,Milford,,Gether,VA,"Caroline County",America/New_York,804,NA,US,38.02,-77.36,2080 +22517,"PO BOX",0,Mollusk,,,VA,"Lancaster County",America/New_York,804,NA,US,37.72,-76.53,308 +22520,STANDARD,0,Montross,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.09,-76.82,4810 +22523,"PO BOX",0,Morattico,,,VA,"Lancaster County",America/New_York,804,NA,US,37.8,-76.61,55 +22524,"PO BOX",0,"Mount Holly",,,VA,"Westmoreland County",America/New_York,804,NA,US,38.09,-76.71,332 +22526,"PO BOX",0,Ninde,,,VA,"King George County",America/New_York,540,NA,US,38.27,-77.05,107 +22528,"PO BOX",0,Nuttsville,,,VA,"Lancaster County",America/New_York,804,NA,US,37.79,-76.55,77 +22529,"PO BOX",0,Oldhams,,,VA,"Westmoreland County",America/New_York,804,NA,US,38,-76.68,254 +22530,"PO BOX",0,Ophelia,,,VA,"Northumberland County",America/New_York,804,NA,US,37.9,-76.29,171 +22534,STANDARD,0,Partlow,,,VA,"Spotsylvania County",America/New_York,"804,540",NA,US,38.08,-77.67,2750 +22535,STANDARD,0,"Port Royal",,,VA,"Caroline County",America/New_York,804,NA,US,38.16,-77.19,620 +22538,STANDARD,0,"Rappahannock Academy","Raphanck Acad",Rappnhanck,VA,"Caroline County",America/New_York,804,NA,US,38.2,-77.26,270 +22539,STANDARD,0,Reedville,,,VA,"Northumberland County",America/New_York,804,NA,US,37.86,-76.29,1840 +22542,STANDARD,0,Rhoadesville,,,VA,"Orange County",America/New_York,,NA,US,38.28,-77.9,1820 +22544,"PO BOX",0,"Rollins Fork",,,VA,"King George County",America/New_York,540,NA,US,38.18,-77.06,0 +22545,"PO BOX",0,Ruby,,,VA,"Stafford County",America/New_York,540,NA,US,38.5,-77.51,71 +22546,STANDARD,0,"Ruther Glen",,Rutherglen,VA,"Caroline County",America/New_York,804,NA,US,38,-77.54,16010 +22547,"PO BOX",0,Sealston,,,VA,"King George County",America/New_York,540,NA,US,38.27,-77.32,94 +22548,"PO BOX",0,Sharps,,,VA,"Richmond County",America/New_York,804,NA,US,37.82,-76.7,82 +22551,STANDARD,0,Spotsylvania,,,VA,"Spotsylvania County",America/New_York,540,NA,US,38.17,-77.7,19000 +22552,"PO BOX",0,Sparta,,,VA,"Caroline County",America/New_York,804,NA,US,37.99,-77.22,64 +22553,STANDARD,0,Spotsylvania,Snell,,VA,"Spotsylvania County",America/New_York,540,NA,US,38.27,-77.65,15540 +22554,STANDARD,0,Stafford,,,VA,"Stafford County",America/New_York,540,NA,US,38.42,-77.4,58630 +22555,"PO BOX",0,Stafford,,,VA,"Stafford County",America/New_York,540,NA,US,38.42,-77.4,1083 +22556,STANDARD,0,Stafford,,,VA,"Stafford County",America/New_York,540,NA,US,38.47,-77.51,27890 +22558,"PO BOX",0,Stratford,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.12,-76.81,0 +22560,STANDARD,0,Tappahannock,,,VA,"Essex County",America/New_York,804,NA,US,37.92,-76.86,5930 +22565,"PO BOX",0,Thornburg,,,VA,"Spotsylvania County",America/New_York,540,NA,US,38.13,-77.52,556 +22567,STANDARD,0,Unionville,,Lahore,VA,"Orange County",America/New_York,540,NA,US,38.25,-77.96,2760 +22570,"PO BOX",0,Village,,,VA,"Richmond County",America/New_York,,NA,US,37.94,-76.6,29 +22572,STANDARD,0,Warsaw,Foneswood,"Nomini Grove",VA,"Richmond County",America/New_York,804,NA,US,37.96,-76.76,5090 +22576,STANDARD,0,Weems,,,VA,"Lancaster County",America/New_York,804,NA,US,37.68,-76.44,1320 +22577,"PO BOX",0,"Sandy Point",,,VA,"Westmoreland County",America/New_York,804,NA,US,38.06,-76.55,187 +22578,STANDARD,0,"White Stone",,Whitestone,VA,"Lancaster County",America/New_York,804,NA,US,37.64,-76.39,2050 +22579,"PO BOX",0,"Wicomico Church","Wicomico Chur",,VA,"Northumberland County",America/New_York,804,NA,US,37.8,-76.31,503 +22580,STANDARD,0,Woodford,,,VA,"Caroline County",America/New_York,"804,540",NA,US,38.11,-77.4,4320 +22581,"PO BOX",0,Zacata,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.11,-76.8,0 +22601,STANDARD,0,Winchester,,,VA,"Winchester city",America/New_York,540,NA,US,39.17,-78.17,24070 +22602,STANDARD,0,Winchester,,,VA,"Frederick County",America/New_York,540,NA,US,39.14,-78.28,28230 +22603,STANDARD,0,Winchester,Hayfield,,VA,"Frederick County",America/New_York,540,NA,US,39.28,-78.21,13740 +22604,"PO BOX",0,Winchester,,,VA,"Winchester City",America/New_York,540,NA,US,39.17,-78.17,1823 +22610,STANDARD,0,Bentonville,Browntown,Overall,VA,"Warren County",America/New_York,540,NA,US,38.83,-78.31,1850 +22611,STANDARD,0,Berryville,"Mount Weather",,VA,"Clarke County",America/New_York,540,NA,US,39.14,-77.98,8360 +22620,STANDARD,0,Boyce,,,VA,"Clarke County",America/New_York,540,NA,US,39.09,-78.05,2130 +22622,"PO BOX",0,Brucetown,,,VA,"Frederick County",America/New_York,540,NA,US,39.25,-78.05,0 +22623,STANDARD,0,"Chester Gap",,,VA,"Rappahannock County",America/New_York,540,NA,US,38.85,-78.13,620 +22624,STANDARD,0,"Clear Brook",,,VA,"Frederick County",America/New_York,540,NA,US,39.26,-78.1,2470 +22625,STANDARD,0,"Cross Junction","Cross Jct, Whitacre",,VA,"Frederick County",America/New_York,540,NA,US,39.32,-78.29,3530 +22626,"PO BOX",0,"Fishers Hill",,,VA,"Shenandoah County",America/New_York,540,NA,US,38.97,-78.4,103 +22627,STANDARD,0,"Flint Hill",Huntly,,VA,"Rappahannock County",America/New_York,540,NA,US,38.76,-78.1,720 +22630,STANDARD,0,"Front Royal","Lake Frederick, Lk Frederick, Riverton",,VA,"Warren County",America/New_York,540,NA,US,38.92,-78.18,29590 +22637,STANDARD,0,Gore,,,VA,"Frederick County",America/New_York,540,NA,US,39.26,-78.33,2020 +22639,STANDARD,0,Hume,,,VA,"Fauquier County",America/New_York,,NA,US,38.83,-77.99,590 +22640,STANDARD,0,Huntly,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.8,-78.14,310 +22641,STANDARD,0,Strasburg,"Lebanon Ch, Lebanon Church",,VA,"Shenandoah County",America/New_York,540,NA,US,39.09,-78.37,250 +22642,STANDARD,0,Linden,,,VA,"Warren County",America/New_York,540,NA,US,38.9,-78.07,4300 +22643,STANDARD,0,Markham,,,VA,"Fauquier County",America/New_York,540,NA,US,38.9,-78,360 +22644,STANDARD,0,Maurertown,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.98,-78.51,2060 +22645,STANDARD,0,Middletown,,,VA,"Frederick County",America/New_York,,NA,US,39.02,-78.27,3870 +22646,"PO BOX",0,Millwood,,,VA,"Clarke County",America/New_York,540,NA,US,39.06,-78.03,408 +22649,STANDARD,0,Middletown,Reliance,,VA,"Frederick County",America/New_York,540,NA,US,39.02,-78.27,0 +22650,STANDARD,0,Rileyville,,,VA,"Page County",America/New_York,540,NA,US,38.76,-78.38,820 +22652,STANDARD,0,"Fort Valley","Saint Davids Church, Seven Fountains, Seven Fountns, St Davids Ch",,VA,"Shenandoah County",America/New_York,540,NA,US,38.84,-78.42,1290 +22654,STANDARD,0,"Star Tannery",,,VA,"Frederick County",America/New_York,,NA,US,39.08,-78.45,720 +22655,STANDARD,0,"Stephens City",,,VA,"Frederick County",America/New_York,540,NA,US,39.09,-78.22,20880 +22656,STANDARD,0,Stephenson,,,VA,"Frederick County",America/New_York,540,NA,US,39.2,-78.09,4920 +22657,STANDARD,0,Strasburg,,"Lebanon Church",VA,"Shenandoah County",America/New_York,540,NA,US,38.98,-78.35,10630 +22660,STANDARD,0,"Toms Brook",,,VA,"Shenandoah County",America/New_York,540,NA,US,38.94,-78.43,1570 +22663,STANDARD,0,"White Post",,,VA,"Frederick County",America/New_York,540,NA,US,39.05,-78.1,1570 +22664,STANDARD,0,Woodstock,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.87,-78.51,8220 +22701,STANDARD,0,Culpeper,"Raccoon Ford, Winston",Catalpa,VA,"Culpeper County",America/New_York,540,NA,US,38.47,-78,33370 +22709,STANDARD,0,Aroda,,,VA,"Madison County",America/New_York,540,NA,US,38.32,-78.24,910 +22711,STANDARD,0,Banco,,,VA,"Madison County",America/New_York,540,NA,US,38.47,-78.27,119 +22712,STANDARD,0,Bealeton,Morrisville,,VA,"Fauquier County",America/New_York,540,NA,US,38.57,-77.76,9760 +22713,STANDARD,0,Boston,,,VA,"Culpeper County",America/New_York,540,NA,US,38.54,-78.14,1310 +22714,STANDARD,0,"Brandy Station","Brandy Sta",Brandy,VA,"Culpeper County",America/New_York,540,NA,US,38.52,-77.89,970 +22715,STANDARD,0,Brightwood,,,VA,"Madison County",America/New_York,540,NA,US,38.41,-78.16,1080 +22716,STANDARD,0,Castleton,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.6,-78.1,720 +22718,STANDARD,0,Elkwood,,,VA,"Culpeper County",America/New_York,540,NA,US,38.51,-77.85,660 +22719,STANDARD,0,Etlan,Madison,,VA,"Madison County",America/New_York,540,NA,US,38.52,-78.26,280 +22720,STANDARD,0,Goldvein,,,VA,"Fauquier County",America/New_York,540,NA,US,38.44,-77.65,880 +22721,STANDARD,1,"Graves Mill",,,VA,"Madison County",America/New_York,540,NA,US,38.39,-78.28,0 +22722,STANDARD,0,Haywood,,,VA,"Madison County",America/New_York,540,NA,US,38.47,-78.23,176 +22723,STANDARD,0,Hood,,,VA,"Madison County",America/New_York,540,NA,US,38.35,-78.38,196 +22724,STANDARD,0,Jeffersonton,,,VA,"Culpeper County",America/New_York,540,NA,US,38.63,-77.91,2310 +22725,STANDARD,0,Leon,,,VA,"Madison County",America/New_York,540,NA,US,38.45,-78.15,70 +22726,STANDARD,0,Lignum,,,VA,"Culpeper County",America/New_York,540,NA,US,38.41,-77.82,740 +22727,STANDARD,0,Madison,"Banco, Etlan, Graves Mill","Aroda, Aylor, Criglersville, Shelby, Twymans Mill",VA,"Madison County",America/New_York,"434,540",NA,US,38.37,-78.25,4910 +22728,STANDARD,0,Midland,,,VA,"Fauquier County",America/New_York,540,NA,US,38.59,-77.72,2900 +22729,STANDARD,0,Mitchells,,,VA,"Culpeper County",America/New_York,540,NA,US,38.37,-78,172 +22730,STANDARD,0,Oakpark,,,VA,"Madison County",America/New_York,540,NA,US,38.36,-78.16,151 +22731,STANDARD,0,Pratts,,,VA,"Madison County",America/New_York,540,NA,US,38.34,-78.26,210 +22732,STANDARD,0,Radiant,,,VA,"Madison County",America/New_York,540,NA,US,38.31,-78.19,290 +22733,STANDARD,0,Rapidan,,,VA,"Culpeper County",America/New_York,540,NA,US,38.31,-78.06,1200 +22734,STANDARD,0,Remington,,,VA,"Fauquier County",America/New_York,540,NA,US,38.53,-77.8,3160 +22735,STANDARD,0,Reva,,,VA,"Culpeper County",America/New_York,540,NA,US,38.49,-78.13,1980 +22736,STANDARD,0,Richardsville,,,VA,"Culpeper County",America/New_York,540,NA,US,38.4,-77.72,570 +22737,STANDARD,0,Rixeyville,,,VA,"Culpeper County",America/New_York,540,NA,US,38.58,-77.97,3130 +22738,STANDARD,0,Rochelle,Uno,,VA,"Madison County",America/New_York,540,NA,US,38.29,-78.27,950 +22739,"PO BOX",0,Somerville,,,VA,"Fauquier County",America/New_York,,NA,US,38.52,-77.6,63 +22740,STANDARD,0,Sperryville,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.67,-78.25,1090 +22741,STANDARD,0,Stevensburg,,,VA,"Culpeper County",America/New_York,540,NA,US,38.43,-77.87,200 +22742,STANDARD,0,Sumerduck,,,VA,"Fauquier County",America/New_York,,NA,US,38.46,-77.72,1610 +22743,STANDARD,0,Syria,,,VA,"Madison County",America/New_York,540,NA,US,38.48,-78.32,205 +22746,STANDARD,0,Viewtown,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.63,-78.03,269 +22747,STANDARD,0,Washington,,Wash,VA,"Rappahannock County",America/New_York,540,NA,US,38.71,-78.15,1010 +22748,"PO BOX",0,Wolftown,,,VA,"Madison County",America/New_York,540,NA,US,38.35,-78.34,164 +22749,STANDARD,0,Woodville,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.6,-78.17,290 +22801,STANDARD,0,Harrisonburg,Rockingham,Harrisburg,VA,"Harrisonburg city",America/New_York,540,NA,US,38.43,-78.87,28150 +22802,STANDARD,0,Harrisonburg,Rockingham,,VA,"Harrisonburg city",America/New_York,540,NA,US,38.49,-78.86,23930 +22803,"PO BOX",0,Harrisonburg,,,VA,"Harrisonburg City",America/New_York,540,NA,US,38.51,-78.94,987 +22807,UNIQUE,0,Harrisonburg,,"Hburg, James Madison University",VA,"Harrisonburg city",America/New_York,540,NA,US,38.43,-78.87,49 +22810,STANDARD,0,Basye,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.83,-78.8,890 +22811,STANDARD,0,Bergton,,,VA,"Rockingham County",America/New_York,540,NA,US,38.79,-78.96,440 +22812,STANDARD,0,Bridgewater,,,VA,"Rockingham County",America/New_York,540,NA,US,38.38,-78.96,7530 +22815,STANDARD,0,Broadway,,,VA,"Rockingham County",America/New_York,540,NA,US,38.6,-78.79,8370 +22820,STANDARD,0,Criders,,,VA,"Rockingham County",America/New_York,540,NA,US,38.75,-79,180 +22821,STANDARD,0,Dayton,Montezuma,,VA,"Rockingham County",America/New_York,540,NA,US,38.47,-79.08,5390 +22824,STANDARD,0,Edinburg,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.82,-78.56,5550 +22827,STANDARD,0,Elkton,,,VA,"Rockingham County",America/New_York,540,NA,US,38.41,-78.61,9570 +22830,STANDARD,0,"Fulks Run",,,VA,"Rockingham County",America/New_York,540,NA,US,38.63,-78.98,1500 +22831,STANDARD,0,Hinton,,"Rawley Springs, Rawley Sprngs",VA,"Rockingham County",America/New_York,540,NA,US,38.48,-79,730 +22832,STANDARD,0,Keezletown,,,VA,"Rockingham County",America/New_York,540,NA,US,38.45,-78.76,1020 +22833,"PO BOX",0,"Lacey Spring",,,VA,"Rockingham County",America/New_York,540,NA,US,38.54,-78.73,127 +22834,STANDARD,0,Linville,,,VA,"Rockingham County",America/New_York,540,NA,US,38.56,-78.86,1240 +22835,STANDARD,0,Luray,,"Shenandoah National Park, Shndoh Nat Pk",VA,"Page County",America/New_York,540,NA,US,38.66,-78.45,9860 +22840,STANDARD,0,"Mc Gaheysville","Massanutten, Mcgaheysville","Mc Gaheysvlle",VA,"Rockingham County",America/New_York,540,NA,US,38.36,-78.74,4310 +22841,STANDARD,0,"Mount Crawford","Mt Crawford",Crosskeys,VA,"Rockingham County",America/New_York,,NA,US,38.35,-78.94,2650 +22842,STANDARD,0,"Mount Jackson",,"South Jackson",VA,"Shenandoah County",America/New_York,540,NA,US,38.74,-78.63,4530 +22843,STANDARD,0,"Mount Solon",,,VA,"Augusta County",America/New_York,540,NA,US,38.36,-79.16,2170 +22844,STANDARD,0,"New Market",,Alpine,VA,"Shenandoah County",America/New_York,540,NA,US,38.64,-78.67,3920 +22845,STANDARD,0,"Orkney Springs","Orkney Spgs",,VA,"Shenandoah County",America/New_York,540,NA,US,38.79,-78.82,55 +22846,STANDARD,0,"Penn Laird",,,VA,"Rockingham County",America/New_York,540,NA,US,38.36,-78.79,2200 +22847,STANDARD,0,Quicksburg,"Shenandoah Caverns, Shendoah Cvrn",,VA,"Shenandoah County",America/New_York,540,NA,US,38.73,-78.72,900 +22848,"PO BOX",0,"Pleasant Valley","Pleasant Vly",,VA,"Rockingham County",America/New_York,540,NA,US,38.36,-78.87,30 +22849,STANDARD,0,Shenandoah,,,VA,"Page County",America/New_York,540,NA,US,38.48,-78.62,4240 +22850,STANDARD,0,"Singers Glen",,,VA,"Rockingham County",America/New_York,540,NA,US,38.56,-78.92,900 +22851,STANDARD,0,Stanley,,,VA,"Page County",America/New_York,540,NA,US,38.57,-78.5,5000 +22853,STANDARD,0,Timberville,,,VA,"Rockingham County",America/New_York,540,NA,US,38.63,-78.77,4040 +22901,STANDARD,0,Charlottesville,Charlottesvle,Chville,VA,"Albemarle County",America/New_York,434,NA,US,38.09,-78.56,32510 +22902,STANDARD,0,Charlottesville,"Charlottesvle, Monticello",,VA,"Charlottesville city",America/New_York,434,NA,US,38.03,-78.48,19530 +22903,STANDARD,0,Charlottesville,"Charlottesvle, University",,VA,"Charlottesville city",America/New_York,434,NA,US,38.01,-78.6,26010 +22904,STANDARD,0,Charlottesville,Charlottesvle,"Newcomb Hall",VA,"Albemarle County",America/New_York,434,NA,US,38.03,-78.52,179 +22905,"PO BOX",0,Charlottesville,Charlottesvle,,VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,487 +22906,"PO BOX",0,Charlottesville,Charlottesvle,,VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,994 +22907,UNIQUE,0,Charlottesville,Charlottesvle,"Charlottesvile Brm",VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,0 +22908,UNIQUE,0,Charlottesville,Charlottesvle,"Un Va Med Ctr, Univ Of Va Med Ctr",VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,19 +22909,UNIQUE,0,Charlottesville,Charlottesvle,"State Farm Insurance",VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,0 +22910,UNIQUE,0,Charlottesville,Charlottesvle,Embarq,VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,0 +22911,STANDARD,0,Charlottesville,Charlottesvle,,VA,"Albemarle County",America/New_York,434,NA,US,38.1,-78.41,17710 +22920,STANDARD,0,Afton,,,VA,"Nelson County",America/New_York,,NA,US,38.03,-78.83,3630 +22922,STANDARD,0,Arrington,"Lowesville, Tye River",,VA,"Nelson County",America/New_York,434,NA,US,37.68,-78.9,1640 +22923,STANDARD,0,Barboursville,"Burnleys, Eheart",,VA,"Greene County",America/New_York,,NA,US,38.17,-78.28,5410 +22924,"PO BOX",0,Batesville,,,VA,"Albemarle County",America/New_York,,NA,US,38.01,-78.63,349 +22931,STANDARD,0,Covesville,,,VA,"Albemarle County",America/New_York,,NA,US,37.89,-78.7,350 +22932,STANDARD,0,Crozet,"Yancey Mills",,VA,"Albemarle County",America/New_York,434,NA,US,38.06,-78.69,9220 +22935,STANDARD,0,Dyke,"Boonesville, Nortonsville, St George",,VA,"Greene County",America/New_York,,NA,US,38.26,-78.57,940 +22936,STANDARD,0,Earlysville,,,VA,"Albemarle County",America/New_York,,NA,US,38.15,-78.48,5250 +22937,STANDARD,0,Esmont,,,VA,"Albemarle County",America/New_York,,NA,US,37.83,-78.6,1150 +22938,STANDARD,0,Faber,,,VA,"Nelson County",America/New_York,434,NA,US,37.85,-78.75,1130 +22939,STANDARD,0,Fishersville,,,VA,"Augusta County",America/New_York,540,NA,US,38.09,-78.96,5610 +22940,STANDARD,0,"Free Union","Mission Home",,VA,"Albemarle County",America/New_York,,NA,US,38.16,-78.56,1130 +22942,STANDARD,0,Gordonsville,"Zion Crossrds, Zion Crossroads","Boswells Tavern, Zion",VA,"Louisa County",America/New_York,540,NA,US,38.13,-78.18,8380 +22943,STANDARD,0,Greenwood,,,VA,"Albemarle County",America/New_York,540,NA,US,38.05,-78.77,540 +22945,"PO BOX",0,Ivy,,,VA,"Albemarle County",America/New_York,,NA,US,38.05,-78.59,444 +22946,STANDARD,0,Keene,,,VA,"Albemarle County",America/New_York,,NA,US,37.86,-78.57,260 +22947,STANDARD,0,Keswick,"Boyd Tavern, Campbell, Cismont, Cobham, Shadwell",,VA,"Albemarle County",America/New_York,,NA,US,38.02,-78.35,4780 +22948,STANDARD,0,"Locust Dale",,,VA,"Madison County",America/New_York,540,NA,US,38.36,-78.13,230 +22949,STANDARD,0,Lovingston,,,VA,"Nelson County",America/New_York,434,NA,US,37.77,-78.88,1230 +22952,STANDARD,0,Lyndhurst,Sherando,,VA,"Augusta County",America/New_York,540,NA,US,37.96,-78.96,1830 +22957,"PO BOX",0,"Montpelier Station","Mntpelier Sta",,VA,"Orange County",America/New_York,,NA,US,38.19,-78.11,117 +22958,STANDARD,0,Nellysford,,Wintergreen,VA,"Nelson County",America/New_York,434,NA,US,37.9,-78.9,1810 +22959,STANDARD,0,"North Garden",,"South Garden",VA,"Albemarle County",America/New_York,,NA,US,37.94,-78.63,1560 +22960,STANDARD,0,Orange,"Madison Mills, Montford, Nasons, Thornhill",,VA,"Orange County",America/New_York,540,NA,US,38.24,-78.11,9410 +22963,STANDARD,0,Palmyra,"Bybee, Cunningham, Wildwood, Wilmington","Lake Montcelo, Lake Monticello",VA,"Fluvanna County",America/New_York,434,NA,US,37.86,-78.26,15210 +22964,STANDARD,0,"Piney River",,,VA,"Nelson County",America/New_York,434,NA,US,37.71,-79.02,230 +22965,"PO BOX",0,Quinque,,,VA,"Greene County",America/New_York,434,NA,US,38.25,-78.38,268 +22967,STANDARD,0,Roseland,"Lowesville, Massies Mill, Wintergreen Resort, Wintergrn Rst","Massies Ml",VA,"Nelson County",America/New_York,,NA,US,37.8,-79.01,1930 +22968,STANDARD,0,Ruckersville,"Advance Mills",,VA,"Greene County",America/New_York,434,NA,US,38.23,-78.37,10100 +22969,STANDARD,0,Schuyler,,,VA,"Nelson County",America/New_York,434,NA,US,37.79,-78.69,1170 +22971,STANDARD,0,Shipman,Rockfish,,VA,"Nelson County",America/New_York,434,NA,US,37.72,-78.83,1440 +22972,STANDARD,0,Somerset,,"Old Somerset",VA,"Orange County",America/New_York,540,NA,US,38.22,-78.23,380 +22973,STANDARD,0,Stanardsville,,,VA,"Greene County",America/New_York,434,NA,US,38.3,-78.43,5560 +22974,STANDARD,0,Troy,,,VA,"Fluvanna County",America/New_York,,NA,US,37.94,-78.24,4200 +22976,STANDARD,0,Tyro,Roseland,,VA,"Nelson County",America/New_York,,NA,US,37.81,-79.06,240 +22980,STANDARD,0,Waynesboro,,Park,VA,"Waynesboro city",America/New_York,540,NA,US,38.06,-78.9,29230 +22987,"PO BOX",0,"White Hall",,,VA,"Albemarle County",America/New_York,,NA,US,38.11,-78.66,45 +22989,"PO BOX",0,"Woodberry Forest","Woodberry For","Wdberry Forst",VA,"Madison County",America/New_York,,NA,US,38.29,-78.13,195 +23001,"PO BOX",0,Achilles,,,VA,"Gloucester County",America/New_York,804,NA,US,37.28,-76.44,326 +23002,STANDARD,0,"Amelia Court House","Amelia Ct Hse","Amelia, Amelia Ch",VA,"Amelia County",America/New_York,804,NA,US,37.34,-77.96,9690 +23003,"PO BOX",0,Ark,,Akk,VA,"Gloucester County",America/New_York,804,NA,US,37.43,-76.57,810 +23004,STANDARD,0,Arvonia,,Akunia,VA,"Buckingham County",America/New_York,"804,434",NA,US,37.66,-78.41,720 +23005,STANDARD,0,Ashland,,Ashaiiu,VA,"Hanover County",America/New_York,804,NA,US,37.76,-77.47,15360 +23009,STANDARD,0,Aylett,,,VA,"King William County",America/New_York,804,NA,US,37.77,-77.12,6890 +23011,STANDARD,0,Barhamsville,,,VA,"New Kent County",America/New_York,804,NA,US,37.45,-76.84,970 +23014,STANDARD,0,Beaumont,,,VA,"Powhatan County",America/New_York,804,NA,US,37.76,-78.02,0 +23015,STANDARD,0,Beaverdam,,,VA,"Hanover County",America/New_York,804,NA,US,37.93,-77.63,4200 +23018,"PO BOX",0,Bena,,,VA,"Gloucester County",America/New_York,804,NA,US,37.27,-76.45,480 +23021,STANDARD,0,Bohannon,,,VA,"Mathews County",America/New_York,804,NA,US,37.39,-76.35,190 +23022,STANDARD,0,"Bremo Bluff",,,VA,"Fluvanna County",America/New_York,434,NA,US,37.71,-78.29,610 +23023,STANDARD,0,Bruington,,,VA,"King and Queen County",America/New_York,804,NA,US,37.77,-76.93,320 +23024,STANDARD,0,Bumpass,,,VA,"Louisa County",America/New_York,,NA,US,37.96,-77.73,7820 +23025,STANDARD,0,Cardinal,Miles,,VA,"Mathews County",America/New_York,804,NA,US,37.42,-76.37,250 +23027,STANDARD,0,Cartersville,Tamworth,,VA,"Cumberland County",America/New_York,804,NA,US,37.66,-78.1,1200 +23030,STANDARD,0,"Charles City",,,VA,"Charles City County",America/New_York,"804,757",NA,US,37.34,-77.07,4070 +23031,"PO BOX",0,Christchurch,,,VA,"Middlesex County",America/New_York,804,NA,US,37.57,-76.6,93 +23032,STANDARD,0,"Church View",,,VA,"Middlesex County",America/New_York,804,NA,US,37.67,-76.68,240 +23035,STANDARD,0,"Cobbs Creek",Blakes,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.39,1240 +23038,STANDARD,0,Columbia,,,VA,"Goochland County",America/New_York,804,NA,US,37.75,-78.16,1560 +23039,STANDARD,0,Crozier,,,VA,"Goochland County",America/New_York,,NA,US,37.63,-77.79,1040 +23040,STANDARD,0,Cumberland,,,VA,"Cumberland County",America/New_York,804,NA,US,37.49,-78.24,4040 +23043,STANDARD,0,Deltaville,,,VA,"Middlesex County",America/New_York,804,NA,US,37.55,-76.32,1440 +23045,STANDARD,0,Diggs,,,VA,"Mathews County",America/New_York,804,NA,US,37.43,-76.27,87 +23047,STANDARD,0,Doswell,,,VA,"Hanover County",America/New_York,804,NA,US,37.86,-77.46,2010 +23050,STANDARD,0,Dutton,,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.44,710 +23055,STANDARD,0,"Fork Union",,,VA,"Fluvanna County",America/New_York,434,NA,US,37.76,-78.26,940 +23056,STANDARD,0,Foster,Mobjack,,VA,"Mathews County",America/New_York,804,NA,US,37.45,-76.38,330 +23058,"PO BOX",0,"Glen Allen",,"Glenallen, Gln Alln",VA,"Henrico County",America/New_York,804,NA,US,37.66,-77.48,699 +23059,STANDARD,0,"Glen Allen",,"Glenallen, Gln Alln",VA,"Henrico County",America/New_York,804,NA,US,37.7,-77.57,37810 +23060,STANDARD,0,"Glen Allen",,"Glen Allenw, Glenallen, Gln Alln",VA,"Henrico County",America/New_York,804,NA,US,37.66,-77.48,36320 +23061,STANDARD,0,Gloucester,"Bellamy, Naxera, Pinero, Zanoni",,VA,"Gloucester County",America/New_York,804,NA,US,37.43,-76.54,18890 +23062,STANDARD,0,"Gloucester Point","Glou Point, Gloucester Pt","Glouster Point",VA,"Gloucester County",America/New_York,804,NA,US,37.26,-76.49,2420 +23063,STANDARD,0,Goochland,Fife,,VA,"Goochland County",America/New_York,804,NA,US,37.68,-77.88,4510 +23064,"PO BOX",0,Grimstead,,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.3,180 +23065,STANDARD,0,"Gum Spring",,Gumspring,VA,"Goochland County",America/New_York,,NA,US,37.77,-77.89,1470 +23066,"PO BOX",0,Gwynn,,Gwyme,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.28,361 +23067,"PO BOX",0,Hadensville,,,VA,"Goochland County",America/New_York,,NA,US,37.82,-77.99,135 +23068,STANDARD,0,Hallieford,,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.33,230 +23069,STANDARD,0,Hanover,Mangohick,,VA,"Hanover County",America/New_York,804,NA,US,37.76,-77.37,2960 +23070,STANDARD,0,Hardyville,,,VA,"Middlesex County",America/New_York,804,NA,US,37.55,-76.38,370 +23071,STANDARD,0,Hartfield,,,VA,"Middlesex County",America/New_York,804,NA,US,37.55,-76.44,1450 +23072,STANDARD,0,Hayes,,Glass,VA,"Gloucester County",America/New_York,804,NA,US,37.29,-76.45,10210 +23075,STANDARD,0,Henrico,"Highland Spgs, Highland Springs",,VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.32,8850 +23076,STANDARD,0,Hudgins,Redart,,VA,"Mathews County",America/New_York,804,NA,US,37.47,-76.32,650 +23079,STANDARD,0,Jamaica,,,VA,"Middlesex County",America/New_York,804,NA,US,37.71,-76.69,260 +23081,"PO BOX",0,Jamestown,Williamsburg,,VA,"James City County",America/New_York,757,NA,US,37.22,-76.76,0 +23083,STANDARD,0,Jetersville,,,VA,"Amelia County",America/New_York,804,NA,US,37.29,-78.09,1830 +23084,STANDARD,0,"Kents Store",,,VA,"Fluvanna County",America/New_York,540,NA,US,37.87,-78.12,1700 +23085,STANDARD,0,"King And Queen Court House","King Queen Ch","King And Qn C H, Kingqueen Court House",VA,"King and Queen County",America/New_York,804,NA,US,37.72,-76.84,330 +23086,STANDARD,0,"King William",,,VA,"King William County",America/New_York,804,NA,US,37.68,-77.01,3020 +23089,STANDARD,0,Lanexa,,,VA,"New Kent County",America/New_York,804,NA,US,37.42,-76.9,4820 +23090,"PO BOX",0,Lightfoot,,,VA,"James City",America/New_York,757,NA,US,37.34,-76.75,501 +23091,STANDARD,0,"Little Plymouth","Little Plymth",,VA,"King and Queen County",America/New_York,804,NA,US,37.66,-76.8,260 +23092,STANDARD,0,"Locust Hill",,,VA,"Middlesex County",America/New_York,804,NA,US,37.59,-76.5,470 +23093,STANDARD,0,Louisa,,,VA,"Louisa County",America/New_York,540,NA,US,38.01,-77.99,12230 +23101,"PO BOX",1,Macon,,,VA,"Powhatan County",America/New_York,804,NA,US,37.52,-77.96,22 +23102,STANDARD,0,Maidens,Dabneys,,VA,"Goochland County",America/New_York,804,NA,US,37.71,-77.83,2810 +23103,STANDARD,0,"Manakin Sabot",,"Manakin, Sabot",VA,"Goochland County",America/New_York,804,NA,US,37.64,-77.7,5800 +23105,"PO BOX",0,Mannboro,,,VA,"Amelia County",America/New_York,804,NA,US,37.25,-77.82,0 +23106,STANDARD,0,Manquin,,,VA,"King William County",America/New_York,804,NA,US,37.7,-77.15,1130 +23107,"PO BOX",0,Maryus,,,VA,"Gloucester County",America/New_York,804,NA,US,37.27,-76.4,0 +23108,STANDARD,0,Mascot,,,VA,"King and Queen County",America/New_York,804,NA,US,37.62,-76.7,131 +23109,STANDARD,0,Mathews,Beaverlett,,VA,"Mathews County",America/New_York,804,NA,US,37.43,-76.32,1900 +23110,STANDARD,0,Mattaponi,,,VA,"King and Queen County",America/New_York,804,NA,US,37.53,-76.77,580 +23111,STANDARD,0,Mechanicsville,Mechanicsvlle,,VA,"Hanover County",America/New_York,804,NA,US,37.62,-77.35,35560 +23112,STANDARD,0,Midlothian,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.43,-77.66,51730 +23113,STANDARD,0,Midlothian,,"Sycamore Square",VA,"Chesterfield County",America/New_York,804,NA,US,37.54,-77.68,26240 +23114,STANDARD,0,Midlothian,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.48,-77.65,20060 +23115,"PO BOX",0,"Millers Tavern","Millers Tavrn",,VA,"Essex County",America/New_York,804,NA,US,37.81,-76.91,483 +23116,STANDARD,0,Mechanicsville,Mechanicsvlle,,VA,"Hanover County",America/New_York,804,NA,US,37.68,-77.34,31620 +23117,STANDARD,0,Mineral,,,VA,"Louisa County",America/New_York,540,NA,US,38,-77.9,8930 +23119,STANDARD,0,Moon,,,VA,"Mathews County",America/New_York,804,NA,US,37.45,-76.28,260 +23120,STANDARD,0,Moseley,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.41,-77.77,13840 +23123,STANDARD,0,"New Canton",,,VA,"Buckingham County",America/New_York,434,NA,US,37.7,-78.3,1430 +23124,STANDARD,0,"New Kent",,,VA,"New Kent County",America/New_York,804,NA,US,37.51,-76.97,4680 +23125,STANDARD,0,"New Point",,,VA,"Mathews County",America/New_York,804,NA,US,37.34,-76.28,117 +23126,STANDARD,0,Newtown,,,VA,"King and Queen County",America/New_York,804,NA,US,37.91,-77.12,430 +23127,"PO BOX",0,Norge,,,VA,"James City County",America/New_York,757,NA,US,37.36,-76.77,326 +23128,STANDARD,0,North,"James Store",,VA,"Mathews County",America/New_York,804,NA,US,37.44,-76.43,980 +23129,STANDARD,0,Oilville,,,VA,"Goochland County",America/New_York,,NA,US,37.7,-77.78,440 +23130,STANDARD,0,Onemo,,,VA,"Mathews County",America/New_York,804,NA,US,37.39,-76.27,136 +23131,"PO BOX",0,Ordinary,,,VA,"Gloucester County",America/New_York,804,NA,US,37.31,-76.51,235 +23138,STANDARD,0,"Port Haywood","Bavon, Peary",,VA,"Mathews County",America/New_York,804,NA,US,37.38,-76.31,830 +23139,STANDARD,0,Powhatan,Macon,"Powhatand, Powhatano",VA,"Powhatan County",America/New_York,804,NA,US,37.54,-77.92,25560 +23140,STANDARD,0,"Providence Forge","Provdence Frg",,VA,"New Kent County",America/New_York,804,NA,US,37.44,-77.04,5570 +23141,STANDARD,0,Quinton,,,VA,"New Kent County",America/New_York,804,NA,US,37.53,-77.11,8520 +23146,STANDARD,0,Rockville,,,VA,"Hanover County",America/New_York,804,NA,US,37.72,-77.67,3010 +23147,"PO BOX",0,Ruthville,,,VA,"Charles City",America/New_York,804,NA,US,37.36,-77.04,209 +23148,STANDARD,0,"Saint Stephens Church","Cauthornville, Indian Neck, St Stephens Church, St Stephns Ch",,VA,"King and Queen County",America/New_York,804,NA,US,37.8,-77.05,1390 +23149,STANDARD,0,Saluda,,Glenns,VA,"Middlesex County",America/New_York,804,NA,US,37.6,-76.59,2340 +23150,STANDARD,0,Sandston,,,VA,"Henrico County",America/New_York,804,NA,US,37.51,-77.27,11310 +23153,STANDARD,0,"Sandy Hook",,,VA,"Goochland County",America/New_York,804,NA,US,37.75,-77.91,1520 +23154,"PO BOX",0,Schley,,,VA,"Gloucester County",America/New_York,804,NA,US,37.39,-76.44,44 +23155,"PO BOX",0,Severn,,,VA,"Gloucester County",America/New_York,804,NA,US,37.29,-76.41,0 +23156,STANDARD,0,Shacklefords,"Plain View",Plainview,VA,"King and Queen County",America/New_York,804,NA,US,37.54,-76.73,1420 +23160,STANDARD,0,"State Farm",,,VA,"Powhatan County",America/New_York,804,NA,US,37.63,-77.85,19 +23161,STANDARD,0,Stevensville,,,VA,"King and Queen County",America/New_York,804,NA,US,37.72,-76.92,126 +23162,"PO BOX",0,Studley,,,VA,"Hanover County",America/New_York,804,NA,US,37.67,-77.29,215 +23163,STANDARD,0,Susan,Shadow,,VA,"Mathews County",America/New_York,804,NA,US,37.36,-76.31,200 +23168,STANDARD,0,Toano,,,VA,"James City County",America/New_York,757,NA,US,37.37,-76.8,8230 +23169,STANDARD,0,Topping,Syringa,,VA,"Middlesex County",America/New_York,804,NA,US,37.59,-76.46,940 +23170,"PO BOX",0,Trevilians,,,VA,"Louisa County",America/New_York,,NA,US,38.05,-78.07,42 +23173,UNIQUE,0,Richmond,,"Univ Of Rich, University Of Rich, University Of Richmond",VA,"Richmond city",America/New_York,804,NA,US,37.58,-77.54,108 +23175,STANDARD,0,Urbanna,Warner,,VA,"Middlesex County",America/New_York,804,NA,US,37.65,-76.63,1660 +23176,STANDARD,0,Wake,,,VA,"Middlesex County",America/New_York,804,NA,US,37.56,-76.42,570 +23177,STANDARD,0,Walkerton,,,VA,"King and Queen County",America/New_York,804,NA,US,37.72,-77.02,590 +23178,"PO BOX",0,"Ware Neck",,,VA,"Gloucester County",America/New_York,804,NA,US,37.4,-76.45,168 +23180,STANDARD,0,"Water View",,,VA,"Middlesex County",America/New_York,804,NA,US,37.72,-76.61,350 +23181,STANDARD,0,"West Point",Cologne,Eltham,VA,"King William County",America/New_York,804,NA,US,37.55,-76.8,5230 +23183,"PO BOX",0,"White Marsh",,,VA,"Gloucester County",America/New_York,804,NA,US,37.34,-76.52,823 +23184,"PO BOX",0,Wicomico,,,VA,"Gloucester County",America/New_York,804,NA,US,37.29,-76.51,840 +23185,STANDARD,0,Williamsburg,,"Wlmg, Wmsbg",VA,"James City County",America/New_York,757,NA,US,37.27,-76.7,40960 +23186,UNIQUE,0,Williamsburg,,"College Of William & Mary, Wlmg",VA,"Williamsburg City",America/New_York,757,NA,US,37.27,-76.7,48 +23187,"PO BOX",0,Williamsburg,,Wlmg,VA,"Williamsburg city",America/New_York,757,NA,US,37.27,-76.72,1002 +23188,STANDARD,0,Williamsburg,,Wlmg,VA,"James City County",America/New_York,757,NA,US,37.35,-76.77,42290 +23190,"PO BOX",0,"Woods Cross Roads","Woods Crs Rds","Woods Cr Rds, Woods Cross Rds",VA,"Gloucester County",America/New_York,804,NA,US,37.43,-76.54,26 +23192,STANDARD,0,Montpelier,,,VA,"Hanover County",America/New_York,804,NA,US,37.81,-77.67,6460 +23218,"PO BOX",0,Richmond,,Capitol,VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,413 +23219,STANDARD,0,Richmond,,Capitol,VA,"Richmond city",America/New_York,804,NA,US,37.54,-77.44,2860 +23220,STANDARD,0,Richmond,,Saunders,VA,"Richmond city",America/New_York,804,NA,US,37.55,-77.46,18960 +23221,STANDARD,0,Richmond,,Stewart,VA,"Richmond city",America/New_York,804,NA,US,37.55,-77.49,12420 +23222,STANDARD,0,Richmond,,,VA,"Richmond city",America/New_York,804,NA,US,37.58,-77.42,20290 +23223,STANDARD,0,Richmond,,,VA,"Henrico County",America/New_York,804,NA,US,37.56,-77.38,40820 +23224,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield",,VA,"Richmond city",America/New_York,804,NA,US,37.5,-77.47,29150 +23225,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield","Forest Hill",VA,"Richmond city",America/New_York,804,NA,US,37.52,-77.51,32710 +23226,STANDARD,0,Richmond,,,VA,"Richmond city",America/New_York,804,NA,US,37.58,-77.52,15410 +23227,STANDARD,0,Richmond,,,VA,"Henrico County",America/New_York,804,NA,US,37.61,-77.44,20850 +23228,STANDARD,0,Henrico,Richmond,"Staples Mill",VA,"Henrico County",America/New_York,804,NA,US,37.63,-77.49,30520 +23229,STANDARD,0,Henrico,"Regency, Richmond","Tuckahoe, Westbury",VA,"Henrico County",America/New_York,804,NA,US,37.59,-77.57,32120 +23230,STANDARD,0,Richmond,,,VA,"Henrico County",America/New_York,804,NA,US,37.59,-77.49,6390 +23231,STANDARD,0,Henrico,Richmond,"Millers, Montrose, Montrose Heights, Varina",VA,"Henrico County",America/New_York,804,NA,US,37.44,-77.32,32750 +23232,STANDARD,0,Richmond,,,VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,21 +23233,STANDARD,0,Henrico,"Richmond, Ridge",,VA,"Henrico County",America/New_York,804,NA,US,37.65,-77.62,30810 +23234,STANDARD,0,Richmond,"Ampthill, N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.45,-77.47,38340 +23235,STANDARD,0,Richmond,"Bon Air, N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.51,-77.56,30750 +23236,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.48,-77.59,26310 +23237,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.4,-77.45,21770 +23238,STANDARD,0,Henrico,Richmond,,VA,"Henrico County",America/New_York,804,NA,US,37.6,-77.65,23660 +23240,STANDARD,1,Richmond,,,VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23241,"PO BOX",0,Richmond,,"Central Sta, Rich, Richmnd",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,114 +23242,"PO BOX",0,Henrico,Richmond,"Rich, Richmnd",VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,244 +23249,UNIQUE,0,Richmond,,"Mcguire Veterans Hospital",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23250,STANDARD,0,Richmond,"Henrico, Rich Int Ap, Richmond Int Airport","Air Mail Facility, Rich, Richmnd",VA,"Henrico County",America/New_York,804,NA,US,37.5,-77.32,66 +23255,"PO BOX",0,Henrico,Richmond,,VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,414 +23260,"PO BOX",0,Richmond,,"Main Office",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,369 +23261,"PO BOX",0,Richmond,,"Main Office",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,713 +23269,UNIQUE,0,Richmond,,"Div Motor Veh, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23273,UNIQUE,0,Henrico,Richmond,"County Of Henrico",VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,19 +23274,UNIQUE,0,Richmond,,"Dept Public Utilities",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23276,UNIQUE,0,Richmond,,"Capital One",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23278,UNIQUE,0,Richmond,,"Wachovia Bank",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23279,UNIQUE,0,Richmond,,"Anthem/Blue Cross Blue Shiel, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23282,UNIQUE,0,Richmond,,"Va Dept Tax",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23284,"PO BOX",0,Richmond,,"Vcu West",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23285,"PO BOX",0,Richmond,,"Rich, Richmnd",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,66 +23286,UNIQUE,0,Richmond,,"Rich, Richmond Brm",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23288,UNIQUE,0,Henrico,Richmond,"Koger Executive Ctr, Rich",VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,31 +23289,UNIQUE,0,Richmond,,"Internal Revenue Service, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23290,UNIQUE,0,Richmond,,"Dominion Virginia Power",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23291,UNIQUE,0,Richmond,,"Suntrust Bank",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23292,UNIQUE,0,Richmond,,"Bank Of America, Nationsbank Mortgage",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23293,UNIQUE,0,Richmond,,"Richmond Newspapers",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23294,STANDARD,0,Henrico,Richmond,,VA,"Henrico County",America/New_York,804,NA,US,37.63,-77.54,15610 +23295,UNIQUE,0,Richmond,,"Capital One",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.45,0 +23297,UNIQUE,0,Richmond,,"Defense General Supply Ct, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23298,STANDARD,0,Richmond,,"Vcu Mcv East",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,31 +23301,STANDARD,0,Accomac,,,VA,"Accomack County",America/New_York,757,NA,US,37.71,-75.66,1520 +23302,STANDARD,0,Assawoman,,,VA,"Accomack County",America/New_York,757,NA,US,37.87,-75.52,153 +23303,STANDARD,0,Atlantic,,,VA,"Accomack County",America/New_York,757,NA,US,37.9,-75.5,750 +23304,"PO BOX",0,"Battery Park",,,VA,"Isle of Wight County",America/New_York,757,NA,US,37,-76.57,196 +23306,STANDARD,0,"Belle Haven",,,VA,"Accomack County",America/New_York,757,NA,US,37.56,-75.87,970 +23307,STANDARD,0,Birdsnest,,,VA,"Northampton County",America/New_York,757,NA,US,37.43,-75.88,440 +23308,STANDARD,0,Bloxom,,,VA,"Accomack County",America/New_York,757,NA,US,37.83,-75.62,1370 +23310,STANDARD,0,"Cape Charles",,,VA,"Northampton County",America/New_York,757,NA,US,37.27,-76.01,2920 +23313,"PO BOX",0,Capeville,,,VA,"Northampton County",America/New_York,757,NA,US,37.2,-75.95,196 +23314,STANDARD,0,Carrollton,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.94,-76.56,8800 +23315,STANDARD,0,Carrsville,Walters,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.71,-76.82,1320 +23316,"PO BOX",0,Cheriton,,,VA,"Northampton County",America/New_York,757,NA,US,37.28,-75.96,1567 +23320,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.75,-76.22,53330 +23321,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.8,-76.42,35100 +23322,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.62,-76.23,61850 +23323,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.67,-76.3,39150 +23324,STANDARD,0,Chesapeake,"South Norfolk",,VA,"Chesapeake city",America/New_York,757,NA,US,36.8,-76.27,20290 +23325,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.81,-76.24,15540 +23326,UNIQUE,0,Chesapeake,,"Coast Guard Finance Center",VA,"Chesapeake City",America/New_York,757,NA,US,36.67,-76.3,0 +23327,"PO BOX",0,Chesapeake,,,VA,"Chesapeake City",America/New_York,757,NA,US,36.67,-76.3,577 +23328,"PO BOX",0,Chesapeake,,,VA,"Chesapeake City",America/New_York,757,NA,US,36.67,-76.3,478 +23336,STANDARD,0,"Chincoteague Island",Chincoteague,,VA,"Accomack County",America/New_York,757,NA,US,37.95,-75.33,2840 +23337,STANDARD,0,"Wallops Island","Chincoteague, Chincoteague Island, Wallops Is",,VA,"Accomack County",America/New_York,757,NA,US,37.93,-75.49,360 +23341,"PO BOX",0,Craddockville,,,VA,"Accomack County",America/New_York,757,NA,US,37.6,-75.86,218 +23345,STANDARD,0,"Davis Wharf",,,VA,"Accomack County",America/New_York,757,NA,US,37.56,-75.88,0 +23347,"PO BOX",0,Eastville,,,VA,"Northampton County",America/New_York,757,NA,US,37.35,-75.94,1224 +23350,STANDARD,0,Exmore,,,VA,"Northampton County",America/New_York,757,NA,US,37.53,-75.82,2720 +23354,STANDARD,0,Franktown,,Bayford,VA,"Northampton County",America/New_York,757,NA,US,37.46,-75.91,410 +23356,STANDARD,0,Greenbackville,Greenbackvile,,VA,"Accomack County",America/New_York,757,NA,US,38,-75.41,1320 +23357,STANDARD,0,Greenbush,,,VA,"Accomack County",America/New_York,757,NA,US,37.76,-75.67,620 +23358,STANDARD,0,Hacksneck,"Hacks Neck",,VA,"Accomack County",America/New_York,757,NA,US,37.66,-75.86,41 +23359,STANDARD,0,Hallwood,,,VA,"Accomack County",America/New_York,757,NA,US,37.87,-75.58,450 +23389,"PO BOX",0,Harborton,,,VA,"Accomack County",America/New_York,757,NA,US,37.66,-75.84,124 +23395,STANDARD,0,Horntown,,,VA,"Accomack County",America/New_York,757,NA,US,37.97,-75.46,590 +23396,STANDARD,0,"Oak Hall",,,VA,"Accomack County",America/New_York,757,NA,US,37.93,-75.54,0 +23397,"PO BOX",0,"Isle Of Wight",,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.9,-76.7,0 +23398,"PO BOX",0,Jamesville,,,VA,"Northampton County",America/New_York,757,NA,US,37.52,-75.94,281 +23399,STANDARD,0,"Jenkins Bridge","Jenkins Brg",,VA,"Accomack County",America/New_York,757,NA,US,37.91,-75.63,0 +23401,"PO BOX",0,Keller,,,VA,"Accomack County",America/New_York,757,NA,US,37.62,-75.76,372 +23404,STANDARD,0,Locustville,,,VA,"Accomack County",America/New_York,757,NA,US,37.65,-75.67,116 +23405,STANDARD,0,Machipongo,,,VA,"Northampton County",America/New_York,757,NA,US,37.4,-75.9,790 +23407,"PO BOX",0,Mappsville,,,VA,"Accomack County",America/New_York,757,NA,US,37.84,-75.58,551 +23408,"PO BOX",0,Marionville,,,VA,"Northampton County",America/New_York,757,NA,US,37.45,-75.84,115 +23409,STANDARD,0,Mears,,,VA,"Accomack County",America/New_York,757,NA,US,37.89,-75.66,67 +23410,STANDARD,0,Melfa,,,VA,"Accomack County",America/New_York,757,NA,US,37.64,-75.74,1730 +23412,"PO BOX",0,"Modest Town",,,VA,"Accomack County",America/New_York,757,NA,US,37.81,-75.57,68 +23413,"PO BOX",0,Nassawadox,Weirwood,,VA,"Northampton County",America/New_York,757,NA,US,37.47,-75.86,1040 +23414,"PO BOX",0,Nelsonia,,,VA,"Accomack County",America/New_York,757,NA,US,37.81,-75.58,407 +23415,STANDARD,0,"New Church",,,VA,"Accomack County",America/New_York,757,NA,US,37.97,-75.53,1390 +23416,STANDARD,0,"Oak Hall",,,VA,"Accomack County",America/New_York,757,NA,US,37.93,-75.54,410 +23417,STANDARD,0,Onancock,,,VA,"Accomack County",America/New_York,757,NA,US,37.7,-75.74,2940 +23418,STANDARD,0,Onley,,,VA,"Accomack County",America/New_York,757,NA,US,37.69,-75.71,1390 +23419,"PO BOX",0,Oyster,,,VA,"Northampton County",America/New_York,757,NA,US,37.28,-75.92,0 +23420,STANDARD,0,Painter,,,VA,"Accomack County",America/New_York,757,NA,US,37.58,-75.78,1720 +23421,STANDARD,0,Parksley,"Lee Mont",,VA,"Accomack County",America/New_York,757,NA,US,37.78,-75.65,3330 +23422,"PO BOX",0,Pungoteague,,,VA,"Accomack County",America/New_York,757,NA,US,37.62,-75.81,522 +23423,"PO BOX",0,Quinby,,,VA,"Accomack County",America/New_York,757,NA,US,37.55,-75.73,269 +23424,"PO BOX",0,Rescue,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.99,-76.55,222 +23426,STANDARD,0,Sanford,,,VA,"Accomack County",America/New_York,757,NA,US,37.92,-75.66,166 +23427,"PO BOX",0,Saxis,,,VA,"Accomack County",America/New_York,757,NA,US,37.92,-75.72,237 +23429,"PO BOX",0,Seaview,,,VA,"Northampton County",America/New_York,757,NA,US,37.27,-75.95,0 +23430,STANDARD,0,Smithfield,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.98,-76.61,16820 +23431,"PO BOX",0,Smithfield,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.98,-76.61,465 +23432,STANDARD,0,Suffolk,,Chuckatuck,VA,"Suffolk city",America/New_York,757,NA,US,36.88,-76.55,1470 +23433,STANDARD,0,Suffolk,,Crittenden,VA,"Suffolk city",America/New_York,757,NA,US,36.92,-76.46,1250 +23434,STANDARD,0,Suffolk,,,VA,"Suffolk city",America/New_York,757,NA,US,36.7,-76.63,44100 +23435,STANDARD,0,Suffolk,,Driver,VA,"Suffolk city",America/New_York,757,NA,US,36.84,-76.48,29490 +23436,STANDARD,0,Suffolk,,,VA,"Suffolk city",America/New_York,757,NA,US,36.89,-76.51,910 +23437,STANDARD,0,Suffolk,,Holland,VA,"Suffolk city",America/New_York,757,NA,US,36.63,-76.8,3940 +23438,STANDARD,0,Suffolk,,Whaleyville,VA,"Suffolk city",America/New_York,757,NA,US,36.58,-76.7,1690 +23439,"PO BOX",0,Suffolk,,,VA,"Suffolk City",America/New_York,757,NA,US,36.7,-76.63,1016 +23440,"PO BOX",0,Tangier,,,VA,"Accomack County",America/New_York,757,NA,US,37.82,-75.99,512 +23441,"PO BOX",0,Tasley,,,VA,"Accomack County",America/New_York,757,NA,US,37.71,-75.7,555 +23442,STANDARD,0,Temperanceville,Temperancevle,,VA,"Accomack County",America/New_York,757,NA,US,37.89,-75.54,860 +23443,"PO BOX",0,Townsend,,,VA,"Northampton County",America/New_York,757,NA,US,37.18,-75.95,194 +23450,"PO BOX",0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,851 +23451,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.87,-76.01,37610 +23452,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.85,-76.09,52720 +23453,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.78,-76.08,32740 +23454,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.82,-76.03,53080 +23455,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.89,-76.15,43600 +23456,STANDARD,0,"Virginia Beach","Princess Anne, Va Bch, Va Beach, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.73,-76.04,56380 +23457,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.61,-76.02,4270 +23458,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,155 +23459,STANDARD,0,"Virginia Beach","Fort Story, Virginia Bch","Little Creek Naval Amphibiou, Nav Amph Base, Naval Amphib Base, Naval Amphibious Base",VA,"Virginia Beach city",America/New_York,757,NA,US,36.92,-76.02,589 +23460,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.81,-76.03,865 +23461,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.78,-75.96,282 +23462,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.84,-76.15,57250 +23463,UNIQUE,0,"Virginia Beach","Virginia Bch","Chrstn Brdcst Network",VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,57 +23464,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.8,-76.19,68640 +23465,UNIQUE,0,"Virginia Beach","Virginia Bch","Chrstn Brdcst Network, Chrstn Brdcst Ntwrk Brm",VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,74 +23466,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,604 +23467,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,508 +23471,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,824 +23479,UNIQUE,0,"Virginia Beach","Virginia Bch","Lillian Vernon",VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,0 +23480,"PO BOX",0,Wachapreague,,,VA,"Accomack County",America/New_York,757,NA,US,37.62,-75.69,372 +23482,"PO BOX",0,Wardtown,,,VA,"Northampton County",America/New_York,757,NA,US,37.5,-75.87,0 +23483,"PO BOX",0,Wattsville,,,VA,"Accomack County",America/New_York,757,NA,US,37.9,-75.5,80 +23486,"PO BOX",0,"Willis Wharf",,,VA,"Northampton County",America/New_York,757,NA,US,37.51,-75.81,227 +23487,STANDARD,0,Windsor,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.8,-76.73,5740 +23488,STANDARD,0,Withams,,,VA,"Accomack County",America/New_York,757,NA,US,37.95,-75.6,190 +23501,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,893 +23502,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.86,-76.2,17230 +23503,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.95,-76.27,25050 +23504,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.86,-76.27,16000 +23505,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.91,-76.29,22260 +23506,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,0 +23507,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.86,-76.3,4830 +23508,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.88,-76.31,11620 +23509,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.88,-76.26,11170 +23510,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.85,-76.29,5920 +23511,STANDARD,0,Norfolk,"Fleet, Naval Base","Joint Forces Staff College, Naval Communications Area Ma, Norfolk Naval Air Station, Norfolk Naval Public Works C, Norfolk Naval Station",VA,"Norfolk city",America/New_York,757,NA,US,36.91,-76.33,1830 +23512,UNIQUE,1,Norfolk,,"Naval Defense Distrib Ctr",VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,33 +23513,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.89,-76.24,25020 +23514,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,242 +23515,UNIQUE,0,Norfolk,,"Fleet Marine Force Atlantic",VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,59 +23517,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.87,-76.29,4000 +23518,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.92,-76.22,26300 +23519,STANDARD,0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,0 +23520,STANDARD,1,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,0 +23521,STANDARD,1,Norfolk,,,VA,"Virginia Beach City",America/New_York,757,NA,US,36.84,-76.28,1005 +23523,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.84,-76.28,5970 +23529,UNIQUE,0,Norfolk,,"Old Dominion University",VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,14 +23541,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,408 +23551,UNIQUE,0,Norfolk,,Cinclantflt,VA,"Norfolk city",America/New_York,757,NA,US,36.92,-76.29,151 +23601,STANDARD,0,"Newport News",,"N N",VA,"Newport News city",America/New_York,757,NA,US,37.04,-76.48,22350 +23602,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,37.11,-76.52,36660 +23603,STANDARD,0,"Newport News",,"Lee Hall",VA,"Newport News city",America/New_York,757,NA,US,37.19,-76.56,3200 +23604,STANDARD,0,"Fort Eustis","Newport News",,VA,"Newport News city",America/New_York,757,NA,US,37.12,-76.59,3550 +23605,STANDARD,0,"Newport News",Hampton,,VA,"Newport News city",America/New_York,757,NA,US,37.02,-76.44,11200 +23606,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,37.07,-76.51,23570 +23607,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,36.97,-76.42,16210 +23608,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,37.15,-76.54,38960 +23609,"PO BOX",0,"Newport News",,,VA,"Newport News City",America/New_York,757,NA,US,37.07,-76.51,526 +23612,"PO BOX",0,"Newport News",,,VA,"Newport News City",America/New_York,757,NA,US,37.07,-76.51,163 +23628,UNIQUE,0,"Newport News",,"Us Army Trng Support Ctr",VA,"Newport News City",America/New_York,757,NA,US,37.07,-76.51,0 +23630,UNIQUE,0,Hampton,,"Family Fashions By Avon",VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,0 +23651,STANDARD,0,"Fort Monroe",Hampton,,VA,"Hampton city",America/New_York,757,NA,US,37.01,-76.3,440 +23661,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.01,-76.39,11350 +23662,STANDARD,0,Poquoson,Hampton,,VA,"Poquoson city",America/New_York,757,NA,US,37.12,-76.34,11900 +23663,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.03,-76.31,10970 +23664,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.04,-76.29,9040 +23665,STANDARD,0,Hampton,"Langley AFB","Langley, Langley Air Force Base",VA,"York County",America/New_York,757,NA,US,37.08,-76.37,5410 +23666,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.06,-76.41,45360 +23667,UNIQUE,0,Hampton,,"Kecoughtan Veterans Hospital",VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,48 +23668,UNIQUE,0,Hampton,,"Hampton University",VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,55 +23669,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.05,-76.34,32880 +23670,"PO BOX",0,Hampton,,,VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,338 +23681,UNIQUE,0,Hampton,,Nasa,VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,0 +23690,STANDARD,0,Yorktown,,,VA,"York County",America/New_York,757,NA,US,37.23,-76.5,3230 +23691,STANDARD,0,Yorktown,"Nav Wpns Sta, Naval Weapons Station","Naval Weapons Sta, Yorktown Naval Weapons Stati",VA,"York County",America/New_York,757,NA,US,37.26,-76.55,200 +23692,STANDARD,0,Yorktown,Grafton,,VA,"York County",America/New_York,757,NA,US,37.19,-76.46,18680 +23693,STANDARD,0,Yorktown,Tabb,,VA,"York County",America/New_York,757,NA,US,37.12,-76.45,23140 +23694,"PO BOX",0,Lackey,,,VA,"York County",America/New_York,757,NA,US,37.23,-76.54,183 +23696,STANDARD,0,Seaford,,,VA,"York County",America/New_York,757,NA,US,37.19,-76.43,3690 +23701,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.81,-76.37,20390 +23702,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.8,-76.33,9440 +23703,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.89,-76.37,23760 +23704,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.82,-76.31,13930 +23705,"PO BOX",0,Portsmouth,,,VA,"Portsmouth City",America/New_York,757,NA,US,36.83,-76.29,327 +23707,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.84,-76.34,11870 +23708,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.85,-76.31,278 +23709,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.81,-76.31,57 +23801,STANDARD,0,"Fort Lee",Petersburg,,VA,"Prince George County",America/New_York,804,NA,US,37.23,-77.33,5380 +23803,STANDARD,0,Petersburg,"N Dinwiddie, North Dinwiddie, S Chesterfld, South Chesterfield",Matoaca,VA,"Petersburg city",America/New_York,804,NA,US,37.21,-77.5,31780 +23804,"PO BOX",0,Petersburg,,,VA,"Petersburg City",America/New_York,804,NA,US,37.2,-77.39,594 +23805,STANDARD,0,Petersburg,"N Dinwiddie, North Dinwiddie, S Prince Geo, South Prince George","Walnut Hill",VA,"Petersburg city",America/New_York,804,NA,US,37.2,-77.39,16580 +23806,UNIQUE,0,"Virginia State University","Petersburg, Va State Univ","Virginia State Univ",VA,"Chesterfield County",America/New_York,804,NA,US,37.24,-77.42,60 +23821,STANDARD,0,Alberta,,,VA,"Brunswick County",America/New_York,434,NA,US,36.86,-77.88,1290 +23822,"PO BOX",0,Ammon,,,VA,"Amelia County",America/New_York,804,NA,US,37.21,-77.76,0 +23824,STANDARD,0,Blackstone,,,VA,"Nottoway County",America/New_York,434,NA,US,37.07,-78,5740 +23825,"PO BOX",1,Blackstone,,,VA,"Nottoway County",America/New_York,434,NA,US,37.08,-77.99,0 +23827,STANDARD,0,Boykins,,,VA,"Southampton County",America/New_York,757,NA,US,36.57,-77.19,1080 +23828,STANDARD,0,Branchville,,,VA,"Southampton County",America/New_York,,NA,US,36.56,-77.24,350 +23829,STANDARD,0,Capron,,,VA,"Southampton County",America/New_York,434,NA,US,36.71,-77.2,1050 +23830,STANDARD,0,Carson,,,VA,"Prince George County",America/New_York,,NA,US,37.03,-77.4,1550 +23831,STANDARD,0,Chester,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.35,-77.43,33900 +23832,STANDARD,0,Chesterfield,,"Beach, Chesterfld",VA,"Chesterfield County",America/New_York,804,NA,US,37.39,-77.59,36310 +23833,STANDARD,0,"Church Road",,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.15,-77.63,1950 +23834,STANDARD,0,"Colonial Heights","Colonial Hgts, S Chesterfld, South Chesterfield",,VA,"Colonial Heights city",America/New_York,,NA,US,37.26,-77.39,23390 +23836,STANDARD,0,Chester,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.35,-77.35,13280 +23837,STANDARD,0,Courtland,,,VA,"Southampton County",America/New_York,757,NA,US,36.71,-77.06,3520 +23838,STANDARD,0,Chesterfield,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.32,-77.63,16590 +23839,STANDARD,0,Dendron,,,VA,"Surry County",America/New_York,757,NA,US,37.08,-76.92,780 +23840,STANDARD,0,Dewitt,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.03,-77.64,1520 +23841,STANDARD,0,Dinwiddie,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.07,-77.58,3220 +23842,STANDARD,0,Disputanta,,,VA,"Prince George County",America/New_York,804,NA,US,37.12,-77.22,6520 +23843,STANDARD,0,Dolphin,,,VA,"Brunswick County",America/New_York,434,NA,US,36.83,-77.79,470 +23844,STANDARD,0,Drewryville,,,VA,"Southampton County",America/New_York,,NA,US,36.71,-77.3,500 +23845,STANDARD,0,Ebony,,,VA,"Brunswick County",America/New_York,434,NA,US,36.57,-77.99,360 +23846,STANDARD,0,Elberon,,,VA,"Surry County",America/New_York,757,NA,US,37.07,-76.88,750 +23847,STANDARD,0,Emporia,,,VA,"Greensville County",America/New_York,434,NA,US,36.69,-77.53,10020 +23850,STANDARD,0,Ford,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.14,-77.73,850 +23851,STANDARD,0,Franklin,,,VA,"Franklin city",America/New_York,757,NA,US,36.68,-76.93,11270 +23856,STANDARD,0,Freeman,,,VA,"Brunswick County",America/New_York,434,NA,US,36.8,-77.7,850 +23857,STANDARD,0,Gasburg,,,VA,"Brunswick County",America/New_York,434,NA,US,36.56,-77.89,480 +23860,STANDARD,0,Hopewell,"N Prince Geo, North Prince George",,VA,"Hopewell city",America/New_York,804,NA,US,37.29,-77.29,23980 +23866,STANDARD,0,Ivor,,,VA,"Southampton County",America/New_York,757,NA,US,36.9,-76.89,1940 +23867,STANDARD,0,Jarratt,,,VA,"Greensville County",America/New_York,434,NA,US,36.81,-77.47,1920 +23868,STANDARD,0,Lawrenceville,Triplet,,VA,"Brunswick County",America/New_York,434,NA,US,36.75,-77.85,3750 +23870,UNIQUE,0,Jarratt,,"Greenville Correctional Ctr",VA,"Sussex County",America/New_York,434,NA,US,36.81,-77.47,17 +23872,STANDARD,0,"Mc Kenney",,Mckenney,VA,"Dinwiddie County",America/New_York,804,NA,US,36.99,-77.74,2000 +23873,"PO BOX",0,Meredithville,,,VA,"Brunswick County",America/New_York,434,NA,US,36.79,-77.95,0 +23874,STANDARD,0,Newsoms,,Neusons,VA,"Southampton County",America/New_York,,NA,US,36.62,-77.12,870 +23875,STANDARD,0,"Prince George",,,VA,"Prince George County",America/New_York,804,NA,US,37.22,-77.28,10860 +23876,STANDARD,0,Rawlings,,,VA,"Brunswick County",America/New_York,434,NA,US,36.94,-77.77,370 +23878,STANDARD,0,Sedley,,,VA,"Southampton County",America/New_York,,NA,US,36.77,-76.98,1110 +23879,STANDARD,0,Skippers,,,VA,"Greensville County",America/New_York,434,NA,US,36.59,-77.6,550 +23881,STANDARD,0,"Spring Grove",,,VA,"Surry County",America/New_York,757,NA,US,37.16,-76.97,1420 +23882,STANDARD,0,"Stony Creek",,,VA,"Sussex County",America/New_York,434,NA,US,36.94,-77.4,1840 +23883,STANDARD,0,Surry,,,VA,"Surry County",America/New_York,757,NA,US,37.13,-76.83,2010 +23884,"PO BOX",0,Sussex,,,VA,"Sussex County",America/New_York,,NA,US,36.92,-77.28,22 +23885,STANDARD,0,Sutherland,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.19,-77.56,2600 +23887,STANDARD,0,Valentines,,,VA,"Brunswick County",America/New_York,434,NA,US,36.58,-77.83,350 +23888,STANDARD,0,Wakefield,,,VA,"Sussex County",America/New_York,757,NA,US,36.96,-76.98,1900 +23889,STANDARD,0,Warfield,,,VA,"Brunswick County",America/New_York,804,NA,US,36.89,-77.74,490 +23890,STANDARD,0,Waverly,,,VA,"Sussex County",America/New_York,804,NA,US,37.03,-77.09,3160 +23891,UNIQUE,0,Waverly,,"Sussex Correctional Facility",VA,"Sussex County",America/New_York,804,NA,US,37.05,-77.21,17 +23893,STANDARD,0,"White Plains",,,VA,"Brunswick County",America/New_York,434,NA,US,36.63,-77.91,350 +23894,STANDARD,0,Wilsons,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.14,-77.85,600 +23897,STANDARD,0,Yale,,,VA,"Sussex County",America/New_York,,NA,US,36.84,-77.28,450 +23898,STANDARD,0,Zuni,,,VA,"Isle of Wight County",America/New_York,,NA,US,36.86,-76.82,2020 +23899,"PO BOX",0,Claremont,,,VA,"Surry County",America/New_York,757,NA,US,37.22,-76.96,366 +23901,STANDARD,0,Farmville,,,VA,"Prince Edward County",America/New_York,434,NA,US,37.29,-78.39,10430 +23909,UNIQUE,0,Farmville,,"Longwood University",VA,"Prince Edward County",America/New_York,434,NA,US,37.3,-78.4,13 +23915,STANDARD,0,Baskerville,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.68,-78.27,640 +23917,STANDARD,0,Boydton,,"Palmer Springs, Palmersprings",VA,"Mecklenburg County",America/New_York,434,NA,US,36.66,-78.38,2250 +23919,STANDARD,0,Bracey,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.59,-78.14,2080 +23920,STANDARD,0,Brodnax,,,VA,"Brunswick County",America/New_York,434,NA,US,36.7,-78.03,2610 +23921,STANDARD,0,Buckingham,,,VA,"Buckingham County",America/New_York,434,NA,US,37.55,-78.55,1750 +23922,STANDARD,0,Burkeville,,,VA,"Nottoway County",America/New_York,434,NA,US,37.18,-78.2,1720 +23923,STANDARD,0,"Charlotte Court House","Charlotte C H","Charlotte Ch",VA,"Charlotte County",America/New_York,434,NA,US,37.05,-78.63,1890 +23924,STANDARD,0,"Chase City",,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.79,-78.46,4460 +23927,STANDARD,0,Clarksville,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.62,-78.56,3610 +23930,STANDARD,0,Crewe,,,VA,"Nottoway County",America/New_York,434,NA,US,37.18,-78.13,4460 +23934,STANDARD,0,Cullen,,,VA,"Charlotte County",America/New_York,434,NA,US,37.18,-78.63,600 +23936,STANDARD,0,Dillwyn,"Sprouses Corn, Sprouses Corner",Andersonville,VA,"Buckingham County",America/New_York,"804,434",NA,US,37.54,-78.46,4870 +23937,STANDARD,0,"Drakes Branch",,,VA,"Charlotte County",America/New_York,434,NA,US,36.99,-78.6,1370 +23938,STANDARD,0,Dundas,,,VA,"Brunswick County",America/New_York,,NA,US,36.91,-77.99,400 +23939,"PO BOX",0,Evergreen,,,VA,"Appomattox County",America/New_York,434,NA,US,37.3,-78.78,191 +23941,"PO BOX",0,"Fort Mitchell",,,VA,"Lunenburg County",America/New_York,434,NA,US,36.91,-78.48,0 +23942,STANDARD,0,"Green Bay",,Greenbay,VA,"Prince Edward County",America/New_York,434,NA,US,37.13,-78.3,880 +23943,"PO BOX",0,"Hampden Sydney","Farmville, Hmpden Sydney",,VA,"Prince Edward County",America/New_York,434,NA,US,37.25,-78.45,215 +23944,STANDARD,0,Kenbridge,,,VA,"Lunenburg County",America/New_York,434,NA,US,36.96,-78.13,3230 +23947,STANDARD,0,Keysville,,,VA,"Charlotte County",America/New_York,434,NA,US,37.03,-78.48,3360 +23950,STANDARD,0,"La Crosse","Blackridge, Forksville, South Hill","Black Ridge",VA,"Mecklenburg County",America/New_York,434,NA,US,36.69,-78.09,2950 +23952,STANDARD,0,Lunenburg,,,VA,"Lunenburg County",America/New_York,434,NA,US,36.96,-78.26,190 +23954,STANDARD,0,Meherrin,,,VA,"Prince Edward County",America/New_York,,NA,US,37.09,-78.36,1750 +23955,"PO BOX",0,Nottoway,,,VA,"Nottoway County",America/New_York,434,NA,US,37.13,-78.07,70 +23958,STANDARD,0,Pamplin,"Darlingtn Hts, Darlington Heights",,VA,"Appomattox County",America/New_York,434,NA,US,37.26,-78.68,2620 +23959,STANDARD,0,Phenix,,,VA,"Charlotte County",America/New_York,434,NA,US,37.08,-78.74,930 +23960,STANDARD,0,Prospect,,,VA,"Prince Edward County",America/New_York,434,NA,US,37.3,-78.55,1600 +23962,STANDARD,0,Randolph,,,VA,"Charlotte County",America/New_York,434,NA,US,36.97,-78.7,530 +23963,STANDARD,0,"Red House",,,VA,"Charlotte County",America/New_York,434,NA,US,37.18,-78.8,420 +23964,STANDARD,0,"Red Oak",,,VA,"Charlotte County",America/New_York,434,NA,US,36.76,-78.63,860 +23966,STANDARD,0,Rice,,,VA,"Prince Edward County",America/New_York,434,NA,US,37.27,-78.29,1960 +23967,STANDARD,0,Saxe,,,VA,"Charlotte County",America/New_York,434,NA,US,36.93,-78.66,730 +23968,STANDARD,0,Skipwith,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.73,-78.53,630 +23970,STANDARD,0,"South Hill",,"Southill, Union Level",VA,"Mecklenburg County",America/New_York,434,NA,US,36.72,-78.12,6710 +23974,STANDARD,0,Victoria,,,VA,"Lunenburg County",America/New_York,434,NA,US,36.99,-78.22,3040 +23976,STANDARD,0,Wylliesburg,,,VA,"Charlotte County",America/New_York,434,NA,US,36.85,-78.58,210 +24001,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,43 +24002,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,22 +24003,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24004,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24005,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24006,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24007,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,23 +24008,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,66 +24009,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,47 +24010,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,62 +24011,STANDARD,0,Roanoke,,,VA,"Roanoke city",America/New_York,540,NA,US,37.27,-79.94,600 +24012,STANDARD,0,Roanoke,,Bonsack,VA,"Roanoke city",America/New_York,540,NA,US,37.31,-79.9,24290 +24013,STANDARD,0,Roanoke,,,VA,"Roanoke city",America/New_York,540,NA,US,37.27,-79.92,5610 +24014,STANDARD,0,Roanoke,,"Garden City, South Roanoke",VA,"Roanoke city",America/New_York,540,NA,US,37.22,-79.91,14530 +24015,STANDARD,0,Roanoke,,"Grandin Road",VA,"Roanoke city",America/New_York,540,NA,US,37.26,-79.98,13450 +24016,STANDARD,0,Roanoke,,,VA,"Roanoke city",America/New_York,540,NA,US,37.27,-79.95,6230 +24017,STANDARD,0,Roanoke,,Melrose,VA,"Roanoke city",America/New_York,540,NA,US,37.3,-79.99,19030 +24018,STANDARD,0,Roanoke,"Cave Spring","Poages Mill",VA,"Roanoke County",America/New_York,540,NA,US,37.21,-80.04,36340 +24019,STANDARD,0,Roanoke,"Hollins, Hollins Clg",,VA,"Roanoke County",America/New_York,540,NA,US,37.35,-79.95,25590 +24020,"PO BOX",0,Roanoke,"Hollins Clg, Hollins College",,VA,"Roanoke County",America/New_York,540,NA,US,37.36,-79.94,87 +24022,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,178 +24023,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,21 +24024,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,21 +24025,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,26 +24026,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24027,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,19 +24028,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,25 +24029,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,10 +24030,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,22 +24031,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,23 +24032,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,19 +24033,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,20 +24034,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24035,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,18 +24036,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,21 +24037,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,20 +24038,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,113 +24040,UNIQUE,0,Roanoke,,Wachovia,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24042,UNIQUE,0,Roanoke,,"Norfolk Southern",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24043,UNIQUE,0,Roanoke,,"Norfolk Southern Rwy Brm",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24044,UNIQUE,1,Roanoke,,"Appalachian Pwr",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.94,0 +24045,UNIQUE,1,Roanoke,,"Blue Cross Blue Shield",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.94,0 +24048,UNIQUE,1,Roanoke,,"Allstate Ins Co",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.94,0 +24050,UNIQUE,0,Roanoke,,"Hanover Direct",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24053,STANDARD,0,Ararat,,,VA,"Patrick County",America/New_York,276,NA,US,36.6,-80.51,1770 +24054,STANDARD,0,Axton,,,VA,"Henry County",America/New_York,276,NA,US,36.66,-79.71,5260 +24055,STANDARD,0,Bassett,,"Bassett Forks, Oaklevel, Philpott, Sanville",VA,"Henry County",America/New_York,276,NA,US,36.76,-79.98,9310 +24058,"PO BOX",0,Belspring,,,VA,"Pulaski County",America/New_York,540,NA,US,37.19,-80.61,303 +24059,STANDARD,0,"Bent Mountain",,,VA,"Roanoke County",America/New_York,540,NA,US,37.15,-80.11,860 +24060,STANDARD,0,Blacksburg,,,VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,25680 +24061,UNIQUE,0,Blacksburg,,"Virginia Tech",VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,108 +24062,"PO BOX",0,Blacksburg,,,VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,499 +24063,"PO BOX",0,Blacksburg,,,VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,313 +24064,STANDARD,0,"Blue Ridge",,,VA,"Botetourt County",America/New_York,,NA,US,37.38,-79.82,4640 +24065,STANDARD,0,"Boones Mill",,,VA,"Franklin County",America/New_York,540,NA,US,37.11,-79.95,5540 +24066,STANDARD,0,Buchanan,Lithia,,VA,"Botetourt County",America/New_York,540,NA,US,37.52,-79.68,4220 +24067,STANDARD,0,Callaway,,,VA,"Franklin County",America/New_York,540,NA,US,37.01,-80.05,1960 +24068,"PO BOX",0,Christiansburg,Christiansbrg,,VA,"Montgomery County",America/New_York,540,NA,US,37.14,-80.4,980 +24069,STANDARD,0,Cascade,,"Leakesville Junction",VA,"Pittsylvania County",America/New_York,434,NA,US,36.56,-79.66,1450 +24070,STANDARD,0,Catawba,,,VA,"Roanoke County",America/New_York,540,NA,US,37.38,-80.11,1270 +24072,STANDARD,0,Check,Simpsons,,VA,"Floyd County",America/New_York,540,NA,US,37.04,-80.24,1180 +24073,STANDARD,0,Christiansburg,Christiansbrg,"Cambria, Christnsbrg, Prices Fork",VA,"Montgomery County",America/New_York,540,NA,US,37.14,-80.4,26870 +24076,STANDARD,0,Claudville,,,VA,"Patrick County",America/New_York,276,NA,US,36.59,-80.42,810 +24077,STANDARD,0,Cloverdale,,,VA,"Botetourt County",America/New_York,540,NA,US,37.37,-79.9,950 +24078,STANDARD,0,Collinsville,,,VA,"Henry County",America/New_York,276,NA,US,36.72,-79.91,5770 +24079,STANDARD,0,"Copper Hill",,"Kings Store",VA,"Floyd County",America/New_York,540,NA,US,37.08,-80.13,1440 +24082,STANDARD,0,Critz,,,VA,"Patrick County",America/New_York,276,NA,US,36.62,-80.11,370 +24083,STANDARD,0,Daleville,,,VA,"Botetourt County",America/New_York,540,NA,US,37.41,-79.92,3820 +24084,STANDARD,0,Dublin,,,VA,"Pulaski County",America/New_York,540,NA,US,37.1,-80.68,8550 +24085,STANDARD,0,"Eagle Rock",,,VA,"Botetourt County",America/New_York,540,NA,US,37.63,-79.8,1760 +24086,STANDARD,0,Eggleston,,,VA,"Giles County",America/New_York,540,NA,US,37.28,-80.63,190 +24087,STANDARD,0,Elliston,"Ironto, Lafayette",,VA,"Montgomery County",America/New_York,540,NA,US,37.21,-80.23,3030 +24088,STANDARD,0,Ferrum,Charity,Endicott,VA,"Franklin County",America/New_York,540,NA,US,36.92,-80.02,3080 +24089,STANDARD,0,Fieldale,,,VA,"Henry County",America/New_York,276,NA,US,36.7,-79.94,1980 +24090,STANDARD,0,Fincastle,,,VA,"Botetourt County",America/New_York,540,NA,US,37.49,-79.87,4050 +24091,STANDARD,0,Floyd,"Alum Ridge",,VA,"Floyd County",America/New_York,540,NA,US,36.91,-80.31,6290 +24092,STANDARD,0,"Glade Hill",,,VA,"Franklin County",America/New_York,540,NA,US,37,-79.77,2470 +24093,STANDARD,0,"Glen Lyn",,,VA,"Giles County",America/New_York,540,NA,US,37.37,-80.85,184 +24095,STANDARD,0,Goodview,,,VA,"Bedford County",America/New_York,540,NA,US,37.21,-79.71,3750 +24101,STANDARD,0,Hardy,,,VA,"Franklin County",America/New_York,540,NA,US,37.18,-79.8,5650 +24102,STANDARD,0,Henry,,,VA,"Franklin County",America/New_York,540,NA,US,36.83,-80,1200 +24104,STANDARD,0,Huddleston,,,VA,"Bedford County",America/New_York,540,NA,US,37.16,-79.48,3040 +24105,STANDARD,0,"Indian Valley",,,VA,"Floyd County",America/New_York,540,NA,US,36.91,-80.6,380 +24111,"PO BOX",0,"Mc Coy",,,VA,"Pulaski County",America/New_York,540,NA,US,37.23,-80.61,179 +24112,STANDARD,0,Martinsville,,,VA,"Henry County",America/New_York,276,NA,US,36.68,-79.86,23550 +24113,"PO BOX",0,Martinsville,,,VA,"Martinsville City",America/New_York,276,NA,US,36.68,-79.86,143 +24114,"PO BOX",0,Martinsville,,,VA,"Martinsville City",America/New_York,276,NA,US,36.68,-79.86,473 +24115,"PO BOX",0,Martinsville,,,VA,"Martinsville City",America/New_York,276,NA,US,36.68,-79.86,1135 +24120,STANDARD,0,"Meadows Of Dan","Meadows Dan",,VA,"Patrick County",America/New_York,"276,540",NA,US,36.73,-80.41,1510 +24121,STANDARD,0,Moneta,,Scruggs,VA,"Bedford County",America/New_York,540,NA,US,37.18,-79.63,9420 +24122,STANDARD,0,Montvale,,,VA,"Bedford County",America/New_York,,NA,US,37.43,-79.69,1450 +24124,STANDARD,0,Narrows,,,VA,"Giles County",America/New_York,540,NA,US,37.33,-80.8,3600 +24126,"PO BOX",0,Newbern,,,VA,"Pulaski County",America/New_York,540,NA,US,37.04,-80.68,373 +24127,STANDARD,0,"New Castle",,,VA,"Craig County",America/New_York,540,NA,US,37.5,-80.11,3500 +24128,STANDARD,0,Newport,,,VA,"Giles County",America/New_York,540,NA,US,37.29,-80.49,1570 +24129,"PO BOX",0,"New River",,,VA,"Pulaski County",America/New_York,540,NA,US,37.12,-80.57,151 +24130,STANDARD,0,Oriskany,,,VA,"Botetourt County",America/New_York,540,NA,US,37.61,-80,0 +24131,STANDARD,0,"Paint Bank",,,VA,"Craig County",America/New_York,540,NA,US,37.56,-80.28,86 +24132,"PO BOX",0,Parrott,,,VA,"Pulaski County",America/New_York,540,NA,US,37.21,-80.63,399 +24133,STANDARD,0,"Patrick Springs","Patrick Spgs",,VA,"Patrick County",America/New_York,276,NA,US,36.67,-80.13,1990 +24134,STANDARD,0,Pearisburg,,,VA,"Giles County",America/New_York,540,NA,US,37.32,-80.72,4800 +24136,STANDARD,0,Pembroke,,,VA,"Giles County",America/New_York,540,NA,US,37.32,-80.63,2810 +24137,STANDARD,0,Penhook,,,VA,"Franklin County",America/New_York,540,NA,US,36.98,-79.63,2080 +24138,STANDARD,0,Pilot,,,VA,"Montgomery County",America/New_York,540,NA,US,37.05,-80.36,1320 +24139,STANDARD,0,Pittsville,,,VA,"Pittsylvania County",America/New_York,,NA,US,36.98,-79.46,490 +24141,STANDARD,0,Radford,Fairlawn,,VA,"Radford city",America/New_York,540,NA,US,37.12,-80.55,13940 +24142,"PO BOX",0,Radford,,,VA,"Radford city",America/New_York,540,NA,US,37.14,-80.55,53 +24143,"PO BOX",0,Radford,,,VA,"Radford City",America/New_York,540,NA,US,37.12,-80.55,769 +24146,"PO BOX",0,Redwood,,,VA,"Franklin County",America/New_York,540,NA,US,37.01,-79.79,60 +24147,STANDARD,0,"Rich Creek",,,VA,"Giles County",America/New_York,540,NA,US,37.38,-80.82,730 +24148,STANDARD,0,Ridgeway,,,VA,"Henry County",America/New_York,276,NA,US,36.57,-79.85,6220 +24149,STANDARD,0,Riner,,Fairview,VA,"Montgomery County",America/New_York,540,NA,US,37.02,-80.43,3320 +24150,STANDARD,0,Ripplemead,Goldbond,Kimballton,VA,"Giles County",America/New_York,540,NA,US,37.38,-80.63,520 +24151,STANDARD,0,"Rocky Mount",,"Franklin Heights",VA,"Franklin County",America/New_York,540,NA,US,36.99,-79.89,15860 +24153,STANDARD,0,Salem,,"Bennett Springs, Fort Lewis, Glenvar, Hanging Rock, Kesslers Mill, Mason Cove",VA,"Salem city",America/New_York,540,NA,US,37.28,-80.05,32300 +24155,UNIQUE,0,Roanoke,,"Home Shopping Network",VA,"Roanoke City",America/New_York,540,NA,US,37.29,-80.06,0 +24157,UNIQUE,0,Roanoke,,"Home Shopping Network",VA,"Roanoke City",America/New_York,540,NA,US,37.28,-80.05,0 +24161,STANDARD,0,"Sandy Level",,,VA,"Pittsylvania County",America/New_York,434,NA,US,37,-79.55,260 +24162,STANDARD,0,Shawsville,,"Allegany Spring",VA,"Montgomery County",America/New_York,540,NA,US,37.13,-80.25,1810 +24165,STANDARD,0,Spencer,,,VA,"Henry County",America/New_York,276,NA,US,36.61,-80.01,1430 +24167,STANDARD,0,Staffordsville,Staffordsvlle,,VA,"Giles County",America/New_York,540,NA,US,37.26,-80.72,290 +24168,STANDARD,0,Stanleytown,,,VA,"Henry County",America/New_York,276,NA,US,36.73,-79.95,580 +24171,STANDARD,0,Stuart,,,VA,"Patrick County",America/New_York,276,NA,US,36.64,-80.27,6220 +24174,STANDARD,0,Thaxton,,,VA,"Bedford County",America/New_York,540,NA,US,37.35,-79.63,1960 +24175,STANDARD,0,Troutville,,Haymakertown,VA,"Botetourt County",America/New_York,540,NA,US,37.41,-79.87,7500 +24176,STANDARD,0,"Union Hall",,,VA,"Franklin County",America/New_York,540,NA,US,37,-79.68,1250 +24177,"PO BOX",0,Vesta,,,VA,"Patrick County",America/New_York,276,NA,US,36.72,-80.39,92 +24178,"PO BOX",0,Villamont,,,VA,"Bedford County",America/New_York,,NA,US,37.39,-79.74,0 +24179,STANDARD,0,Vinton,,,VA,"Roanoke County",America/New_York,540,NA,US,37.27,-79.88,16510 +24184,STANDARD,0,Wirtz,"Burnt Chimney",,VA,"Franklin County",America/New_York,540,NA,US,37.08,-79.9,4100 +24185,STANDARD,0,Woolwine,,,VA,"Patrick County",America/New_York,"540,276",NA,US,36.78,-80.28,720 +24201,STANDARD,0,Bristol,,,VA,"Bristol city",America/New_York,276,NA,US,36.61,-82.16,11940 +24202,STANDARD,0,Bristol,,,VA,"Washington County",America/New_York,276,NA,US,36.66,-82.21,10180 +24203,"PO BOX",0,Bristol,,,VA,"Bristol City",America/New_York,276,NA,US,36.61,-82.16,257 +24205,UNIQUE,0,Bristol,,"Bristol Merchandise Return",VA,"Bristol City",America/New_York,276,NA,US,36.61,-82.17,0 +24209,"PO BOX",0,Bristol,,,VA,"Bristol City",America/New_York,276,NA,US,36.61,-82.16,492 +24210,STANDARD,0,Abingdon,,Osceola,VA,"Washington County",America/New_York,276,NA,US,36.77,-82.03,12280 +24211,STANDARD,0,Abingdon,,,VA,"Washington County",America/New_York,276,NA,US,36.7,-81.96,8100 +24212,"PO BOX",0,Abingdon,,,VA,"Washington County",America/New_York,276,NA,US,36.7,-81.96,1732 +24215,"PO BOX",0,Andover,,,VA,"Wise County",America/New_York,276,NA,US,36.94,-82.78,111 +24216,STANDARD,0,Appalachia,"Exeter, Stonega",,VA,"Wise County",America/New_York,276,NA,US,36.9,-82.78,1660 +24217,STANDARD,0,Bee,,,VA,"Dickenson County",America/New_York,,NA,US,37.08,-82.19,254 +24218,"PO BOX",0,"Ben Hur",,,VA,"Lee County",America/New_York,276,NA,US,36.73,-83.08,296 +24219,STANDARD,0,"Big Stone Gap",,,VA,"Wise County",America/New_York,276,NA,US,36.86,-82.77,7050 +24220,STANDARD,0,Birchleaf,,,VA,"Dickenson County",America/New_York,276,NA,US,37.15,-82.23,510 +24221,STANDARD,0,Blackwater,,,VA,"Lee County",America/New_York,,NA,US,36.62,-83.05,500 +24224,STANDARD,0,Castlewood,,Dickensonville,VA,"Russell County",America/New_York,276,NA,US,36.87,-82.28,4020 +24225,STANDARD,0,Cleveland,,,VA,"Russell County",America/New_York,276,NA,US,36.94,-82.15,1130 +24226,STANDARD,0,Clinchco,,,VA,"Dickenson County",America/New_York,276,NA,US,37.12,-82.33,980 +24228,STANDARD,0,Clintwood,,Honeycamp,VA,"Dickenson County",America/New_York,276,NA,US,37.15,-82.45,4660 +24230,STANDARD,0,Coeburn,,,VA,"Wise County",America/New_York,276,NA,US,36.94,-82.46,5800 +24236,STANDARD,0,Damascus,,,VA,"Washington County",America/New_York,276,NA,US,36.63,-81.78,2240 +24237,STANDARD,0,Dante,Trammel,,VA,"Dickenson County",America/New_York,276,NA,US,36.98,-82.29,620 +24239,STANDARD,0,Davenport,,,VA,"Buchanan County",America/New_York,276,NA,US,37.12,-82.15,300 +24243,STANDARD,0,Dryden,,,VA,"Lee County",America/New_York,276,NA,US,36.77,-82.94,1620 +24244,STANDARD,0,Duffield,Clinchport,,VA,"Scott County",America/New_York,276,NA,US,36.71,-82.79,3530 +24245,STANDARD,0,Dungannon,,,VA,"Scott County",America/New_York,276,NA,US,36.82,-82.46,690 +24246,"PO BOX",0,"East Stone Gap","E Stone Gap",,VA,"Wise County",America/New_York,276,NA,US,36.87,-82.75,588 +24248,STANDARD,0,Ewing,,"Willow Tree",VA,"Lee County",America/New_York,276,NA,US,36.63,-83.43,1640 +24250,STANDARD,0,"Fort Blackmore","Ft Blackmore",,VA,"Scott County",America/New_York,276,NA,US,36.77,-82.58,780 +24251,STANDARD,0,"Gate City",,Snowflake,VA,"Scott County",America/New_York,276,NA,US,36.63,-82.58,6750 +24256,STANDARD,0,Haysi,,,VA,"Dickenson County",America/New_York,276,NA,US,37.2,-82.29,2020 +24258,STANDARD,0,Hiltons,,,VA,"Scott County",America/New_York,276,NA,US,36.65,-82.46,1050 +24260,STANDARD,0,Honaker,"Council, Elk Garden, Venia",Putnam,VA,"Russell County",America/New_York,276,NA,US,37.01,-81.97,3790 +24263,STANDARD,0,Jonesville,,,VA,"Lee County",America/New_York,276,NA,US,36.68,-83.11,4550 +24265,STANDARD,0,Keokee,,,VA,"Lee County",America/New_York,276,NA,US,36.86,-82.9,420 +24266,STANDARD,0,Lebanon,,"Barnett, Bolton, Carterton, Hansonville",VA,"Russell County",America/New_York,276,NA,US,36.89,-82.07,7390 +24269,STANDARD,0,"Mc Clure",,Mcclure,VA,"Dickenson County",America/New_York,276,NA,US,37.08,-82.38,141 +24270,STANDARD,0,Mendota,,,VA,"Washington County",America/New_York,,NA,US,36.72,-82.25,370 +24271,STANDARD,0,Nickelsville,,,VA,"Scott County",America/New_York,276,NA,US,36.75,-82.41,2000 +24272,STANDARD,0,Nora,,,VA,"Dickenson County",America/New_York,276,NA,US,37.02,-82.34,330 +24273,STANDARD,0,Norton,,Esserville,VA,"Norton city",America/New_York,276,NA,US,36.93,-82.62,4400 +24277,STANDARD,0,"Pennington Gap","Penningtn Gap",Pennington,VA,"Lee County",America/New_York,276,NA,US,36.75,-83.02,3430 +24279,STANDARD,0,Pound,,,VA,"Wise County",America/New_York,276,NA,US,37.12,-82.6,3040 +24280,STANDARD,0,Rosedale,,,VA,"Russell County",America/New_York,276,NA,US,36.95,-81.93,840 +24281,STANDARD,0,"Rose Hill",,,VA,"Lee County",America/New_York,276,NA,US,36.67,-83.36,1520 +24282,STANDARD,0,"Saint Charles",,,VA,"Lee County",America/New_York,276,NA,US,36.8,-83.05,360 +24283,STANDARD,0,"Saint Paul",,,VA,"Wise County",America/New_York,276,NA,US,36.9,-82.31,1780 +24290,STANDARD,0,"Weber City",,,VA,"Scott County",America/New_York,276,NA,US,36.62,-82.56,1160 +24292,STANDARD,0,Whitetop,,,VA,"Grayson County",America/New_York,276,NA,US,36.6,-81.61,260 +24293,STANDARD,0,Wise,,,VA,"Wise County",America/New_York,276,NA,US,36.97,-82.58,7510 +24301,STANDARD,0,Pulaski,,Snowville,VA,"Pulaski County",America/New_York,540,NA,US,37.05,-80.76,10420 +24311,STANDARD,0,Atkins,,,VA,"Smyth County",America/New_York,276,NA,US,36.86,-81.39,1400 +24312,STANDARD,0,Austinville,,,VA,"Carroll County",America/New_York,276,NA,US,36.82,-80.86,1750 +24313,STANDARD,0,"Barren Springs","Barren Spgs",,VA,"Wythe County",America/New_York,276,NA,US,36.91,-80.8,770 +24314,STANDARD,0,Bastian,,"Clearfork, Cove Creek, Grapefield, Hicksville",VA,"Bland County",America/New_York,,NA,US,37.15,-81.15,1040 +24315,STANDARD,0,Bland,,"Bland Correct, Bland Correctional Farm",VA,"Bland County",America/New_York,276,NA,US,37.1,-81.11,2480 +24316,STANDARD,0,Broadford,,,VA,"Tazewell County",America/New_York,276,NA,US,36.96,-81.67,75 +24317,STANDARD,0,Cana,,,VA,"Carroll County",America/New_York,276,NA,US,36.58,-80.66,2680 +24318,STANDARD,0,Ceres,,Nebo,VA,"Bland County",America/New_York,276,NA,US,37.01,-81.35,480 +24319,STANDARD,0,Chilhowie,,,VA,"Smyth County",America/New_York,276,NA,US,36.8,-81.68,5620 +24322,STANDARD,0,"Cripple Creek",,,VA,"Wythe County",America/New_York,276,NA,US,36.81,-81.1,166 +24323,STANDARD,0,Crockett,,,VA,"Wythe County",America/New_York,276,NA,US,36.88,-81.18,580 +24324,STANDARD,0,Draper,,,VA,"Pulaski County",America/New_York,,NA,US,37,-80.76,1800 +24325,STANDARD,0,Dugspur,,,VA,"Carroll County",America/New_York,276,NA,US,36.81,-80.61,730 +24326,STANDARD,0,"Elk Creek",,"Comers Rock",VA,"Grayson County",America/New_York,276,NA,US,36.73,-81.2,830 +24327,"PO BOX",0,Emory,,,VA,"Washington County",America/New_York,276,NA,US,36.75,-81.83,448 +24328,STANDARD,0,"Fancy Gap",,,VA,"Carroll County",America/New_York,276,NA,US,36.66,-80.7,1530 +24330,STANDARD,0,Fries,,"Stevens Creek",VA,"Grayson County",America/New_York,276,NA,US,36.71,-80.97,2420 +24333,STANDARD,0,Galax,,"Dalhart, Meadowcreek",VA,"Galax city",America/New_York,276,NA,US,36.66,-80.91,14020 +24340,STANDARD,0,"Glade Spring",,,VA,"Washington County",America/New_York,276,NA,US,36.79,-81.77,4280 +24343,STANDARD,0,Hillsville,,"Littlevine, Richardson",VA,"Carroll County",America/New_York,276,NA,US,36.76,-80.73,7420 +24347,STANDARD,0,Hiwassee,Allisonia,,VA,"Pulaski County",America/New_York,540,NA,US,36.97,-80.64,1460 +24348,STANDARD,0,Independence,,,VA,"Grayson County",America/New_York,276,NA,US,36.61,-81.15,3200 +24350,STANDARD,0,Ivanhoe,,,VA,"Wythe County",America/New_York,,NA,US,36.83,-80.95,980 +24351,STANDARD,0,Lambsburg,,,VA,"Carroll County",America/New_York,276,NA,US,36.58,-80.76,410 +24352,STANDARD,0,"Laurel Fork",,,VA,"Carroll County",America/New_York,"540,276",NA,US,36.71,-80.51,740 +24354,STANDARD,0,Marion,"Seven Mile Fd, Seven Mile Ford","Stony Battery, The Cedars, Thomas Bridge",VA,"Smyth County",America/New_York,276,NA,US,36.83,-81.51,10910 +24360,STANDARD,0,"Max Meadows","Fort Chiswell, Foster Falls",,VA,"Wythe County",America/New_York,276,NA,US,36.96,-80.93,4760 +24361,STANDARD,0,Meadowview,Clinchburg,,VA,"Washington County",America/New_York,276,NA,US,36.76,-81.85,3760 +24363,STANDARD,0,"Mouth Of Wilson","Mouth Wilson, Volney",,VA,"Grayson County",America/New_York,276,NA,US,36.58,-81.33,930 +24366,STANDARD,0,"Rocky Gap",,,VA,"Bland County",America/New_York,276,NA,US,37.26,-81.12,760 +24368,STANDARD,0,"Rural Retreat",,Grosclose,VA,"Wythe County",America/New_York,276,NA,US,36.89,-81.27,4230 +24370,STANDARD,0,Saltville,,,VA,"Smyth County",America/New_York,276,NA,US,36.87,-81.76,4360 +24374,STANDARD,0,Speedwell,,,VA,"Wythe County",America/New_York,276,NA,US,36.81,-81.16,580 +24375,STANDARD,0,"Sugar Grove",,,VA,"Smyth County",America/New_York,276,NA,US,36.76,-81.4,1140 +24377,STANDARD,0,Tannersville,,,VA,"Tazewell County",America/New_York,276,NA,US,36.97,-81.64,210 +24378,STANDARD,0,Troutdale,,"Trout Dale",VA,"Grayson County",America/New_York,276,NA,US,36.7,-81.43,730 +24380,STANDARD,0,Willis,,,VA,"Floyd County",America/New_York,540,NA,US,36.85,-80.48,2190 +24381,STANDARD,0,Woodlawn,,,VA,"Carroll County",America/New_York,276,NA,US,36.71,-80.81,3190 +24382,STANDARD,0,Wytheville,,"Stones Mill",VA,"Wythe County",America/New_York,276,NA,US,36.95,-81.08,11530 +24401,STANDARD,0,Staunton,,"Staunton Park, Western State Hospital",VA,"Staunton city",America/New_York,540,NA,US,38.15,-79.06,31660 +24402,"PO BOX",0,Staunton,,,VA,"Staunton City",America/New_York,540,NA,US,38.15,-79.06,1013 +24411,"PO BOX",0,"Augusta Springs","Augusta Sprgs","Augusta Spgs",VA,"Augusta County",America/New_York,540,NA,US,38.11,-79.31,145 +24412,"PO BOX",0,Bacova,,,VA,"Bath County",America/New_York,540,NA,US,38.05,-79.82,87 +24413,STANDARD,0,"Blue Grass",,,VA,"Highland County",America/New_York,540,NA,US,38.53,-79.6,200 +24415,"PO BOX",0,Brownsburg,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.92,-79.32,92 +24416,STANDARD,0,"Buena Vista",,,VA,"Buena Vista city",America/New_York,"434,540",NA,US,37.73,-79.35,6900 +24421,STANDARD,0,Churchville,,,VA,"Augusta County",America/New_York,540,NA,US,38.22,-79.16,3290 +24422,STANDARD,0,"Clifton Forge",,,VA,"Alleghany County",America/New_York,540,NA,US,37.82,-79.82,4710 +24426,STANDARD,0,Covington,"Alleghany, Jordan Mines","Camp Appalachia, Cmp Appalchia",VA,"Alleghany County",America/New_York,540,NA,US,37.77,-79.99,11840 +24430,STANDARD,0,Craigsville,,,VA,"Augusta County",America/New_York,540,NA,US,38.08,-79.38,1300 +24431,STANDARD,0,Crimora,,,VA,"Augusta County",America/New_York,540,NA,US,38.16,-78.83,2390 +24432,STANDARD,0,Deerfield,,,VA,"Augusta County",America/New_York,540,NA,US,38.19,-79.4,290 +24433,STANDARD,0,"Doe Hill",,,VA,"Highland County",America/New_York,540,NA,US,38.43,-79.44,141 +24435,STANDARD,0,Fairfield,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.88,-79.3,1610 +24437,STANDARD,0,"Fort Defiance",,,VA,"Augusta County",America/New_York,540,NA,US,38.21,-78.94,860 +24438,"PO BOX",0,"Glen Wilton",,,VA,"Botetourt County",America/New_York,540,NA,US,37.75,-79.81,73 +24439,STANDARD,0,Goshen,,,VA,"Rockbridge County",America/New_York,,NA,US,37.99,-79.5,880 +24440,STANDARD,0,Greenville,,,VA,"Augusta County",America/New_York,540,NA,US,38,-79.15,2310 +24441,STANDARD,0,Grottoes,,,VA,"Rockingham County",America/New_York,540,NA,US,38.26,-78.82,5580 +24442,STANDARD,0,"Head Waters",,,VA,"Highland County",America/New_York,540,NA,US,38.37,-79.38,83 +24445,STANDARD,0,"Hot Springs",,"Bacova Jnctn, Bacova Junction, Falling Spring, Falling Sprng, Healing Sprgs, Healing Springs",VA,"Bath County",America/New_York,540,NA,US,38,-79.83,2170 +24448,"PO BOX",0,"Iron Gate",,,VA,"Alleghany County",America/New_York,540,NA,US,37.8,-79.79,466 +24450,STANDARD,0,Lexington,,"East Lexington, West Lexington",VA,"Rockbridge County",America/New_York,540,NA,US,37.78,-79.44,12380 +24457,"PO BOX",0,"Low Moor",,Lowmoor,VA,"Alleghany County",America/New_York,540,NA,US,37.76,-79.94,315 +24458,STANDARD,0,"Mc Dowell",,Mcdowell,VA,"Highland County",America/New_York,540,NA,US,38.3,-79.52,270 +24459,STANDARD,0,Middlebrook,,,VA,"Augusta County",America/New_York,540,NA,US,38.02,-79.28,680 +24460,STANDARD,0,Millboro,,"Milboro Sprgs, Millboro Springs",VA,"Bath County",America/New_York,540,NA,US,37.96,-79.6,1220 +24463,"PO BOX",0,"Mint Spring",,,VA,"Augusta County",America/New_York,540,NA,US,38.07,-79.1,120 +24464,STANDARD,0,Montebello,,,VA,"Nelson County",America/New_York,434,NA,US,37.86,-79.13,110 +24465,STANDARD,0,Monterey,"Hightown, Mustoe","Mill Gap",VA,"Highland County",America/New_York,540,NA,US,38.41,-79.58,1030 +24467,STANDARD,0,"Mount Sidney",,,VA,"Augusta County",America/New_York,540,NA,US,38.26,-78.97,1990 +24468,STANDARD,1,Mustoe,,,VA,"Highland County",America/New_York,540,NA,US,38.32,-79.64,0 +24469,"PO BOX",0,"New Hope",,,VA,"Augusta County",America/New_York,540,NA,US,38.19,-78.9,223 +24471,STANDARD,0,"Port Republic",,"Pt Republic",VA,"Rockingham County",America/New_York,540,NA,US,38.32,-78.81,1370 +24472,STANDARD,0,Raphine,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.93,-79.23,1940 +24473,STANDARD,0,"Rockbridge Baths","Rockbdge Bath","Rockbrg Baths",VA,"Rockbridge County",America/New_York,540,NA,US,37.9,-79.41,770 +24474,"PO BOX",0,Selma,,,VA,"Alleghany County",America/New_York,540,NA,US,37.81,-79.85,424 +24476,STANDARD,0,"Steeles Tavern","Spottswood, Steeles Tavrn",,VA,"Augusta County",America/New_York,540,NA,US,37.97,-79.23,340 +24477,STANDARD,0,"Stuarts Draft",,,VA,"Augusta County",America/New_York,540,NA,US,38.02,-79.02,10390 +24479,STANDARD,0,Swoope,,,VA,"Augusta County",America/New_York,540,NA,US,38.14,-79.2,1350 +24482,STANDARD,0,Verona,,,VA,"Augusta County",America/New_York,540,NA,US,38.19,-79,4050 +24483,STANDARD,0,Vesuvius,,,VA,"Rockbridge County",America/New_York,,NA,US,37.9,-79.2,480 +24484,STANDARD,0,"Warm Springs",Bolar,,VA,"Bath County",America/New_York,540,NA,US,38.05,-79.78,660 +24485,STANDARD,0,"West Augusta",,,VA,"Augusta County",America/New_York,540,NA,US,38.27,-79.3,340 +24486,STANDARD,0,"Weyers Cave",,"Shenandoah Valley Airport",VA,"Augusta County",America/New_York,540,NA,US,38.28,-78.92,3590 +24487,STANDARD,0,Williamsville,Burnsville,,VA,"Bath County",America/New_York,540,NA,US,38.19,-79.56,220 +24501,STANDARD,0,Lynchburg,,"Miller Park",VA,"Lynchburg city",America/New_York,434,NA,US,37.4,-79.19,19720 +24502,STANDARD,0,Lynchburg,Timberlake,"Fort Hill",VA,"Lynchburg city",America/New_York,434,NA,US,37.36,-79.22,32680 +24503,STANDARD,0,Lynchburg,,Rivermont,VA,"Lynchburg city",America/New_York,434,NA,US,37.45,-79.25,17650 +24504,STANDARD,0,Lynchburg,,,VA,"Lynchburg city",America/New_York,434,NA,US,37.37,-79.05,7360 +24505,"PO BOX",0,Lynchburg,,,VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,558 +24506,"PO BOX",0,Lynchburg,,,VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,705 +24512,UNIQUE,1,Lynchburg,"Clifford And Wills",,VA,"Lynchburg City",America/New_York,434,NA,US,37.45,-79.25,0 +24513,UNIQUE,0,Lynchburg,,"J Crew",VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,0 +24514,UNIQUE,0,Lynchburg,,"Thomas Rd Bapt Church",VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,0 +24515,UNIQUE,0,Lynchburg,,"Liberty University",VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,0 +24517,STANDARD,0,Altavista,,,VA,"Campbell County",America/New_York,434,NA,US,37.12,-79.28,4600 +24520,STANDARD,0,Alton,,,VA,"Halifax County",America/New_York,434,NA,US,36.56,-79,1970 +24521,STANDARD,0,Amherst,,Falconerville,VA,"Amherst County",America/New_York,434,NA,US,37.58,-79.05,8430 +24522,STANDARD,0,Appomattox,,,VA,"Appomattox County",America/New_York,434,NA,US,37.35,-78.82,8850 +24523,STANDARD,0,Bedford,,,VA,"Bedford County",America/New_York,540,NA,US,37.32,-79.52,16080 +24526,STANDARD,0,"Big Island",,Snowden,VA,"Bedford County",America/New_York,434,NA,US,37.53,-79.36,1280 +24527,STANDARD,0,Blairs,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.68,-79.38,2510 +24528,STANDARD,0,Brookneal,,,VA,"Campbell County",America/New_York,434,NA,US,37.05,-78.94,2530 +24529,STANDARD,0,"Buffalo Junction","Buffalo Jct",,VA,"Mecklenburg County",America/New_York,434,NA,US,36.6,-78.63,1260 +24530,STANDARD,0,Callands,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.81,-79.62,850 +24531,STANDARD,0,Chatham,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.81,-79.39,6520 +24533,"PO BOX",0,Clifford,,,VA,"Amherst County",America/New_York,434,NA,US,37.65,-79.03,88 +24534,STANDARD,0,Clover,,,VA,"Halifax County",America/New_York,434,NA,US,36.83,-78.73,1280 +24535,"PO BOX",0,"Cluster Springs","Cluster Spgs",,VA,"Halifax County",America/New_York,434,NA,US,36.61,-78.91,120 +24536,STANDARD,0,"Coleman Falls",,,VA,"Bedford County",America/New_York,,NA,US,37.5,-79.33,240 +24538,STANDARD,0,Concord,,,VA,"Campbell County",America/New_York,434,NA,US,37.35,-78.98,4250 +24539,STANDARD,0,"Crystal Hill",,,VA,"Halifax County",America/New_York,434,NA,US,36.85,-78.91,212 +24540,STANDARD,0,Danville,,,VA,"Danville city",America/New_York,434,NA,US,36.63,-79.43,24870 +24541,STANDARD,0,Danville,,Schoolfield,VA,"Danville city",America/New_York,434,NA,US,36.58,-79.4,20930 +24543,"PO BOX",0,Danville,,,VA,"Danville City",America/New_York,434,NA,US,36.58,-79.4,931 +24544,UNIQUE,1,Danville,"Manufactures Hanover",,VA,"Danville City",America/New_York,434,NA,US,36.58,-79.39,0 +24549,STANDARD,0,"Dry Fork",,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.75,-79.41,3590 +24550,STANDARD,0,Evington,,,VA,"Campbell County",America/New_York,434,NA,US,37.23,-79.28,6700 +24551,STANDARD,0,Forest,,,VA,"Bedford County",America/New_York,,NA,US,37.37,-79.27,23640 +24553,STANDARD,0,Gladstone,,,VA,"Nelson County",America/New_York,434,NA,US,37.54,-78.84,1500 +24554,STANDARD,0,Gladys,,,VA,"Campbell County",America/New_York,434,NA,US,37.16,-79.08,3170 +24555,STANDARD,0,Glasgow,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.63,-79.45,1690 +24556,STANDARD,0,Goode,,,VA,"Bedford County",America/New_York,,NA,US,37.36,-79.38,3080 +24557,STANDARD,0,Gretna,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.95,-79.36,6060 +24558,STANDARD,0,Halifax,,,VA,"Halifax County",America/New_York,434,NA,US,36.76,-78.93,5250 +24562,STANDARD,0,Howardsville,Scottsville,,VA,"Buckingham County",America/New_York,434,NA,US,37.73,-78.64,390 +24563,STANDARD,0,Hurt,,,VA,"Pittsylvania County",America/New_York,434,NA,US,37.09,-79.29,4180 +24565,STANDARD,0,Java,,,VA,"Pittsylvania County",America/New_York,,NA,US,36.83,-79.23,820 +24566,STANDARD,0,Keeling,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.71,-79.3,1200 +24569,STANDARD,0,"Long Island",,,VA,"Pittsylvania County",America/New_York,434,NA,US,37.08,-79.1,760 +24570,STANDARD,0,Lowry,,,VA,"Bedford County",America/New_York,,NA,US,37.35,-79.42,72 +24571,STANDARD,0,"Lynch Station",,,VA,"Campbell County",America/New_York,,NA,US,37.14,-79.36,1520 +24572,STANDARD,0,"Madison Heights","Madison Hts","Wrights Shop",VA,"Amherst County",America/New_York,434,NA,US,37.43,-79.1,14210 +24574,STANDARD,0,Monroe,,,VA,"Amherst County",America/New_York,434,NA,US,37.6,-79.24,3260 +24576,"PO BOX",0,Naruna,,,VA,"Campbell County",America/New_York,434,NA,US,37.13,-78.95,182 +24577,STANDARD,0,Nathalie,"Lennig, Republican Grove, Republicn Grv",,VA,"Halifax County",America/New_York,434,NA,US,36.93,-78.95,3890 +24578,STANDARD,0,"Natural Bridge","Natural Brg",,VA,"Rockbridge County",America/New_York,540,NA,US,37.63,-79.55,850 +24579,STANDARD,0,"Natural Bridge Station","Naturl Br Sta",,VA,"Rockbridge County",America/New_York,540,NA,US,37.58,-79.5,1140 +24580,STANDARD,0,Nelson,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.55,-78.67,470 +24581,STANDARD,0,Norwood,,,VA,"Nelson County",America/New_York,434,NA,US,37.66,-78.81,0 +24586,STANDARD,0,Ringgold,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.6,-79.3,4610 +24588,STANDARD,0,Rustburg,,,VA,"Campbell County",America/New_York,434,NA,US,37.28,-79.1,8220 +24589,STANDARD,0,Scottsburg,,,VA,"Halifax County",America/New_York,434,NA,US,36.75,-78.79,1730 +24590,STANDARD,0,Scottsville,,,VA,"Albemarle County",America/New_York,434,NA,US,37.79,-78.49,6990 +24592,STANDARD,0,"South Boston",Turbeville,,VA,"Halifax County",America/New_York,434,NA,US,36.7,-78.9,10940 +24593,STANDARD,0,"Spout Spring",,,VA,"Appomattox County",America/New_York,434,NA,US,37.35,-78.91,1820 +24594,STANDARD,0,Sutherlin,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.62,-79.18,1350 +24595,"PO BOX",0,"Sweet Briar",,,VA,"Amherst County",America/New_York,434,NA,US,37.56,-79.08,188 +24597,STANDARD,0,"Vernon Hill",Ingram,,VA,"Halifax County",America/New_York,,NA,US,36.79,-79.12,1000 +24598,STANDARD,0,Virgilina,,,VA,"Halifax County",America/New_York,434,NA,US,36.6,-78.79,1450 +24599,STANDARD,0,Wingina,,,VA,"Buckingham County",America/New_York,,NA,US,37.64,-78.73,540 +24601,"PO BOX",0,Amonate,,,VA,"Tazewell County",America/New_York,276,NA,US,37.19,-81.65,50 +24602,STANDARD,0,Bandy,,,VA,"Tazewell County",America/New_York,276,NA,US,37.14,-81.7,500 +24603,STANDARD,0,"Big Rock",Conaway,,VA,"Buchanan County",America/New_York,276,NA,US,37.35,-82.2,620 +24604,"PO BOX",0,Bishop,,,VA,"Tazewell County",America/New_York,276,NA,US,37.21,-81.53,204 +24605,STANDARD,0,Bluefield,Yards,,VA,"Tazewell County",America/New_York,276,NA,US,37.23,-81.26,6710 +24606,"PO BOX",0,Boissevain,,,VA,"Tazewell County",America/New_York,276,NA,US,37.28,-81.39,322 +24607,"PO BOX",0,Breaks,,,VA,"Buchanan County",America/New_York,276,NA,US,37.29,-82.28,308 +24608,"PO BOX",0,"Burkes Garden",Tazewell,,VA,"Tazewell County",America/New_York,276,NA,US,37.1,-81.35,24 +24609,STANDARD,0,"Cedar Bluff",,"Belfast Mills, Indian, Steeleburg, Wardell",VA,"Tazewell County",America/New_York,276,NA,US,37.01,-81.81,4990 +24612,"PO BOX",0,Doran,,,VA,"Tazewell County",America/New_York,276,NA,US,37.09,-81.84,877 +24613,STANDARD,0,"Falls Mills",,,VA,"Tazewell County",America/New_York,276,NA,US,37.26,-81.33,680 +24614,STANDARD,0,Grundy,,"Royal City, Stacy",VA,"Buchanan County",America/New_York,276,NA,US,37.27,-82.1,4840 +24619,"PO BOX",0,Horsepen,,,VA,"McDowell County",America/New_York,,NA,US,37.23,-81.49,63 +24620,STANDARD,0,Hurley,,,VA,"Buchanan County",America/New_York,276,NA,US,37.42,-82.02,1500 +24622,STANDARD,0,"Jewell Ridge","Jewell Valley",,VA,"Buchanan County",America/New_York,276,NA,US,37.18,-81.8,530 +24624,"PO BOX",0,"Keen Mountain",,,VA,"Buchanan County",America/New_York,,NA,US,37.2,-81.95,232 +24627,"PO BOX",0,Mavisdale,,,VA,"Buchanan County",America/New_York,,NA,US,37.19,-82.21,386 +24628,STANDARD,0,Maxie,Harman,,VA,"Buchanan County",America/New_York,276,NA,US,37.31,-82.19,370 +24630,STANDARD,0,"North Tazewell","N Tazewell, Tiptop",,VA,"Tazewell County",America/New_York,276,NA,US,37.16,-81.5,4830 +24631,STANDARD,0,Oakwood,Patterson,,VA,"Buchanan County",America/New_York,276,NA,US,37.21,-81.98,800 +24634,STANDARD,0,"Pilgrims Knob",,,VA,"Buchanan County",America/New_York,276,NA,US,37.29,-81.9,410 +24635,"PO BOX",0,Pocahontas,,,VA,"Tazewell County",America/New_York,276,NA,US,37.3,-81.34,544 +24637,STANDARD,0,"Pounding Mill",,"Paint Lick",VA,"Tazewell County",America/New_York,276,NA,US,37.04,-81.73,2900 +24639,STANDARD,0,Raven,,,VA,"Tazewell County",America/New_York,276,NA,US,37.16,-81.9,2060 +24640,"PO BOX",0,"Red Ash",,,VA,"Tazewell County",America/New_York,276,NA,US,37.12,-81.87,46 +24641,STANDARD,0,Richlands,,,VA,"Tazewell County",America/New_York,276,NA,US,37.09,-81.8,4020 +24646,STANDARD,0,Rowe,,,VA,"Buchanan County",America/New_York,276,NA,US,37.12,-82.03,450 +24647,"PO BOX",0,"Shortt Gap",,,VA,"Buchanan County",America/New_York,,NA,US,37.18,-81.84,62 +24649,STANDARD,0,"Swords Creek",,"Dye, Lynn Spring",VA,"Russell County",America/New_York,276,NA,US,37.08,-81.91,1430 +24651,STANDARD,0,Tazewell,,"Gratton, Maxwell",VA,"Tazewell County",America/New_York,276,NA,US,37.12,-81.51,4410 +24656,STANDARD,0,Vansant,,,VA,"Buchanan County",America/New_York,276,NA,US,37.23,-82.08,2340 +24657,STANDARD,0,Whitewood,,,VA,"Buchanan County",America/New_York,276,NA,US,37.26,-81.88,271 +24658,"PO BOX",0,Wolford,,,VA,"Buchanan County",America/New_York,,NA,US,37.38,-81.99,224 +24701,STANDARD,0,Bluefield,"Bluewell, Green Valley","Ada, Brush Fork, Ceres, Littlesburg, Lorton Lick, Sandlick",WV,"Mercer County",America/New_York,"304,681",NA,US,37.26,-81.21,14750 +24712,STANDARD,0,Athens,,,WV,"Mercer County",America/New_York,304,NA,US,37.42,-81.01,1510 +24714,STANDARD,0,Beeson,,,WV,"Mercer County",America/New_York,304,NA,US,37.48,-81.19,121 +24715,STANDARD,0,Bramwell,,,WV,"Mercer County",America/New_York,304,NA,US,37.34,-81.32,310 +24716,"PO BOX",0,Bud,,,WV,"Wyoming County",America/New_York,304,NA,US,37.52,-81.35,553 +24719,"PO BOX",0,Covel,,,WV,"Wyoming County",America/New_York,304,NA,US,37.49,-81.33,104 +24724,STANDARD,0,Freeman,Coaldale,,WV,"Mercer County",America/New_York,304,NA,US,37.33,-81.3,109 +24726,STANDARD,0,Herndon,,,WV,"Wyoming County",America/New_York,304,NA,US,37.51,-81.36,330 +24729,"PO BOX",0,Hiawatha,,,WV,"Mercer County",America/New_York,304,NA,US,37.45,-81.26,38 +24731,STANDARD,0,Kegley,,,WV,"Mercer County",America/New_York,304,NA,US,37.4,-81.13,340 +24732,"PO BOX",0,Kellysville,,,WV,"Mercer County",America/New_York,304,NA,US,37.34,-80.9,107 +24733,STANDARD,0,Lashmeet,,,WV,"Mercer County",America/New_York,304,NA,US,37.44,-81.21,700 +24736,STANDARD,0,Matoaka,Dott,Giatto,WV,"Mercer County",America/New_York,304,NA,US,37.41,-81.24,450 +24737,"PO BOX",0,Montcalm,,,WV,"Mercer County",America/New_York,304,NA,US,37.35,-81.25,728 +24738,"PO BOX",0,Nemours,,,WV,"Mercer County",America/New_York,304,NA,US,37.3,-81.31,176 +24739,STANDARD,0,Princeton,Oakvale,,WV,"Mercer County",America/New_York,304,NA,US,37.33,-80.96,53 +24740,STANDARD,0,Princeton,"Elgood, Oakvale",,WV,"Mercer County",America/New_York,304,NA,US,37.36,-81.1,12970 +24747,STANDARD,0,Rock,"Duhring, Mc Comas",,WV,"Mercer County",America/New_York,304,NA,US,37.38,-81.23,1830 +24751,"PO BOX",0,Wolfe,,,WV,"Mercer County",America/New_York,304,NA,US,37.29,-81.22,32 +24801,STANDARD,0,Welch,"Capels, Coalwood, Havaco, Hemphill, Skygusty, Superior, Wolf Pen",Maitland,WV,"McDowell County",America/New_York,"304,681",NA,US,37.43,-81.58,2460 +24808,STANDARD,0,Anawalt,Leckie,,WV,"McDowell County",America/New_York,304,NA,US,37.33,-81.44,270 +24811,"PO BOX",0,Avondale,,Garland,WV,"McDowell County",America/New_York,304,NA,US,37.41,-81.8,359 +24813,"PO BOX",0,Bartley,,,WV,"McDowell County",America/New_York,304,NA,US,37.33,-81.73,204 +24815,STANDARD,0,Berwind,"Canebrake, Vallscreek",,WV,"McDowell County",America/New_York,304,NA,US,37.26,-81.66,230 +24816,"PO BOX",0,"Big Sandy",,,WV,"McDowell County",America/New_York,304,NA,US,37.46,-81.71,90 +24817,"PO BOX",0,Bradshaw,,,WV,"McDowell County",America/New_York,304,NA,US,37.35,-81.8,523 +24818,STANDARD,0,Brenton,,,WV,"Wyoming County",America/New_York,304,NA,US,37.6,-81.62,760 +24822,STANDARD,0,"Clear Fork",,,WV,"Wyoming County",America/New_York,304,NA,US,37.64,-81.69,530 +24823,STANDARD,0,"Coal Mountain",,,WV,"Wyoming County",America/New_York,304,NA,US,37.67,-81.73,240 +24826,"PO BOX",0,Cucumber,,,WV,"McDowell County",America/New_York,304,NA,US,37.28,-81.61,73 +24827,STANDARD,0,Cyclone,,,WV,"Wyoming County",America/New_York,304,NA,US,37.74,-81.66,810 +24828,STANDARD,0,Davy,"Asco, Twin Branch",,WV,"McDowell County",America/New_York,"304,681",NA,US,37.47,-81.65,470 +24829,STANDARD,0,Eckman,,,WV,"McDowell County",America/New_York,304,NA,US,37.4,-81.46,118 +24830,STANDARD,0,Elbert,Filbert,,WV,"McDowell County",America/New_York,"304,681",NA,US,37.33,-81.52,111 +24831,STANDARD,0,Elkhorn,,,WV,"McDowell County",America/New_York,304,NA,US,37.39,-81.41,110 +24834,"PO BOX",0,Fanrock,,,WV,"Wyoming County",America/New_York,304,NA,US,37.55,-81.63,148 +24836,"PO BOX",0,Gary,,,WV,"McDowell County",America/New_York,304,NA,US,37.36,-81.53,536 +24839,STANDARD,0,Hanover,,,WV,"Wyoming County",America/New_York,304,NA,US,37.56,-81.81,720 +24842,"PO BOX",1,Hemphill,,,WV,"McDowell County",America/New_York,304,NA,US,37.44,-81.59,0 +24843,"PO BOX",0,Hensley,,,WV,"McDowell County",America/New_York,304,NA,US,37.49,-81.71,85 +24844,STANDARD,0,Iaeger,,Steeles,WV,"McDowell County",America/New_York,304,NA,US,37.46,-81.81,1220 +24845,"PO BOX",0,"Ikes Fork",,,WV,"Wyoming County",America/New_York,304,NA,US,37.53,-81.79,233 +24846,STANDARD,0,Isaban,,,WV,"Mingo County",America/New_York,304,NA,US,37.53,-81.91,144 +24847,"PO BOX",0,Itmann,,,WV,"Wyoming County",America/New_York,304,NA,US,37.58,-81.42,247 +24848,"PO BOX",0,Jenkinjones,,,WV,"McDowell County",America/New_York,304,NA,US,37.28,-81.43,86 +24849,STANDARD,0,Jesse,,,WV,"Wyoming County",America/New_York,304,NA,US,37.66,-81.55,210 +24850,STANDARD,0,Jolo,,,WV,"McDowell County",America/New_York,304,NA,US,37.33,-81.83,580 +24851,"PO BOX",0,Justice,,,WV,"Mingo County",America/New_York,304,NA,US,37.59,-81.84,302 +24853,"PO BOX",0,Kimball,Vivian,,WV,"McDowell County",America/New_York,304,NA,US,37.42,-81.5,632 +24854,"PO BOX",0,Kopperston,,,WV,"Wyoming County",America/New_York,304,NA,US,37.75,-81.56,280 +24855,STANDARD,0,Kyle,,,WV,"McDowell County",America/New_York,304,NA,US,37.4,-81.42,54 +24857,"PO BOX",0,Lynco,,Lillydale,WV,"Wyoming County",America/New_York,304,NA,US,37.67,-81.66,513 +24859,"PO BOX",0,Marianna,Pineville,,WV,"Wyoming County",America/New_York,304,NA,US,37.61,-81.57,0 +24860,STANDARD,0,Matheny,,,WV,"Wyoming County",America/New_York,304,NA,US,37.68,-81.59,390 +24861,"PO BOX",0,Maybeury,,,WV,"McDowell County",America/New_York,304,NA,US,37.37,-81.35,197 +24862,STANDARD,0,Mohawk,,,WV,"McDowell County",America/New_York,304,NA,US,37.47,-81.96,260 +24866,"PO BOX",0,Newhall,,,WV,"McDowell County",America/New_York,304,NA,US,37.26,-81.6,170 +24867,"PO BOX",0,"New Richmond",,,WV,"Wyoming County",America/New_York,304,NA,US,37.6,-81.44,151 +24868,STANDARD,0,Northfork,"Algoma, Ashland, Crumpler, Keystone, Mc Dowell, Powhatan, Worth",,WV,"McDowell County",America/New_York,"304,681",NA,US,37.41,-81.42,780 +24869,STANDARD,0,"North Spring",,,WV,"Wyoming County",America/New_York,304,NA,US,37.56,-81.84,179 +24870,STANDARD,0,Oceana,,"Crany, Hatcher, Rollins Branch, Toneyfork",WV,"Wyoming County",America/New_York,"304,681",NA,US,37.69,-81.63,2800 +24871,"PO BOX",0,Pageton,,,WV,"McDowell County",America/New_York,304,NA,US,37.36,-81.47,165 +24872,STANDARD,0,Panther,,,WV,"McDowell County",America/New_York,304,NA,US,37.49,-81.88,520 +24873,STANDARD,0,Paynesville,,,WV,"McDowell County",America/New_York,"304,681",NA,US,37.37,-81.88,370 +24874,STANDARD,0,Pineville,,,WV,"Wyoming County",America/New_York,304,NA,US,37.58,-81.53,2230 +24878,"PO BOX",0,Premier,,,WV,"McDowell County",America/New_York,304,NA,US,37.43,-81.63,260 +24879,STANDARD,0,Raysal,,Atwell,WV,"McDowell County",America/New_York,304,NA,US,37.31,-81.76,290 +24880,STANDARD,0,"Rock View",,,WV,"Wyoming County",America/New_York,304,NA,US,37.65,-81.53,254 +24881,"PO BOX",0,Roderfield,,,WV,"McDowell County",America/New_York,304,NA,US,37.43,-81.68,432 +24882,STANDARD,0,Simon,,,WV,"Wyoming County",America/New_York,304,NA,US,37.61,-81.76,320 +24884,STANDARD,0,Squire,,,WV,"McDowell County",America/New_York,304,NA,US,37.26,-81.56,206 +24887,"PO BOX",0,Switchback,,,WV,"McDowell County",America/New_York,304,NA,US,37.37,-81.4,44 +24888,"PO BOX",0,Thorpe,,,WV,"McDowell County",America/New_York,304,NA,US,37.39,-81.48,161 +24892,STANDARD,0,War,"Caretta, English, Yukon",,WV,"McDowell County",America/New_York,"304,681",NA,US,37.3,-81.68,730 +24894,"PO BOX",0,Warriormine,,,WV,"McDowell County",America/New_York,304,NA,US,37.27,-81.71,208 +24895,"PO BOX",0,Wilcoe,,,WV,"McDowell County",America/New_York,304,NA,US,37.38,-81.55,117 +24898,STANDARD,0,Wyoming,,,WV,"Wyoming County",America/New_York,304,NA,US,37.59,-81.61,157 +24901,STANDARD,0,Lewisburg,,,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.8,-80.43,7640 +24902,"PO BOX",0,Fairlea,,,WV,"Greenbrier County",America/New_York,304,NA,US,37.77,-80.45,105 +24910,STANDARD,0,Alderson,Dawson,,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.72,-80.64,2960 +24915,STANDARD,0,Arbovale,,,WV,"Pocahontas County",America/New_York,"304,681",NA,US,38.45,-79.75,350 +24916,STANDARD,0,Asbury,Alta,,WV,"Greenbrier County",America/New_York,304,NA,US,37.81,-80.56,310 +24918,STANDARD,0,Ballard,,,WV,"Monroe County",America/New_York,304,NA,US,37.51,-80.75,1160 +24920,STANDARD,0,Bartow,,,WV,"Pocahontas County",America/New_York,304,NA,US,38.58,-79.71,250 +24924,STANDARD,0,Buckeye,,,WV,"Pocahontas County",America/New_York,681,NA,US,38.19,-80.14,340 +24925,STANDARD,0,Caldwell,,,WV,"Greenbrier County",America/New_York,304,NA,US,37.75,-80.34,870 +24927,STANDARD,0,Cass,"Stony Bottom",,WV,"Pocahontas County",America/New_York,"681,304",NA,US,38.45,-79.89,270 +24931,STANDARD,0,Crawley,"Clintonville, Kieffer, Sam Black",,WV,"Greenbrier County",America/New_York,304,NA,US,37.94,-80.61,1340 +24934,STANDARD,0,Dunmore,,,WV,"Pocahontas County",America/New_York,304,NA,US,38.35,-79.82,410 +24935,STANDARD,0,"Forest Hill","Indian Mills",,WV,"Summers County",America/New_York,304,NA,US,37.55,-80.83,400 +24938,STANDARD,0,Frankford,"Anthony, Friars Hill",,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.91,-80.38,1300 +24941,STANDARD,0,"Gap Mills","Sweet Springs",,WV,"Monroe County",America/New_York,304,NA,US,37.56,-80.41,770 +24943,STANDARD,0,"Grassy Meadows","Grassy Mdws",,WV,"Greenbrier County",America/New_York,304,NA,US,37.84,-80.74,118 +24944,STANDARD,0,"Green Bank",,,WV,"Pocahontas County",America/New_York,304,NA,US,38.39,-79.78,510 +24945,STANDARD,0,Greenville,,,WV,"Monroe County",America/New_York,304,NA,US,37.53,-80.66,400 +24946,STANDARD,0,Hillsboro,"Droop, Mill Point, Seebert",,WV,"Pocahontas County",America/New_York,"681,304",NA,US,38.13,-80.21,940 +24951,STANDARD,0,Lindside,,,WV,"Monroe County",America/New_York,304,NA,US,37.45,-80.66,1330 +24954,STANDARD,0,Marlinton,"Minehaha Spgs, Minnehaha Springs",Minnehaha,WV,"Pocahontas County",America/New_York,"681,304",NA,US,38.22,-80.08,2570 +24957,STANDARD,0,Maxwelton,,,WV,"Greenbrier County",America/New_York,304,NA,US,37.89,-80.43,420 +24961,STANDARD,1,"White Sulphur Springs",,,WV,"Greenbrier County",America/New_York,304,NA,US,37.97,-80.11,0 +24962,STANDARD,0,"Pence Springs",,,WV,"Summers County",America/New_York,304,NA,US,37.66,-80.72,136 +24963,STANDARD,0,Peterstown,Bozoo,,WV,"Monroe County",America/New_York,304,NA,US,37.44,-80.76,3170 +24966,STANDARD,0,Renick,"Auto, Falling Sprg",,WV,"Greenbrier County",America/New_York,304,NA,US,37.98,-80.36,970 +24970,STANDARD,0,Ronceverte,"Fort Spring, Organ Cave",,WV,"Greenbrier County",America/New_York,304,NA,US,37.74,-80.47,3320 +24974,STANDARD,0,Secondcreek,,,WV,"Monroe County",America/New_York,304,NA,US,37.64,-80.45,179 +24976,STANDARD,0,"Sinks Grove",Pickaway,,WV,"Monroe County",America/New_York,304,NA,US,37.66,-80.52,910 +24977,STANDARD,0,Smoot,"Meadow Bluff",,WV,"Greenbrier County",America/New_York,304,NA,US,37.9,-80.69,380 +24981,STANDARD,0,Talcott,Ballengee,,WV,"Summers County",America/New_York,304,NA,US,37.65,-80.75,560 +24983,STANDARD,0,Union,"Glace, Sarton, Willow Bend",,WV,"Monroe County",America/New_York,304,NA,US,37.59,-80.54,1800 +24984,STANDARD,0,Waiteville,,,WV,"Monroe County",America/New_York,304,NA,US,37.48,-80.43,90 +24985,STANDARD,0,Wayside,,,WV,"Monroe County",America/New_York,304,NA,US,37.58,-80.7,225 +24986,STANDARD,0,"White Sulphur Springs","Neola, Wht Sphr Spgs, Wht Sulphur S, Wht Sulphur Spgs",,WV,"Greenbrier County",America/New_York,304,NA,US,37.79,-80.29,4050 +24991,STANDARD,0,Williamsburg,Trout,,WV,"Greenbrier County",America/New_York,304,NA,US,38.02,-80.5,330 +24993,STANDARD,0,Wolfcreek,,,WV,"Monroe County",America/New_York,304,NA,US,37.66,-80.63,55 +25002,"PO BOX",0,Alloy,,,WV,"Fayette County",America/New_York,304,NA,US,38.13,-81.24,155 +25003,STANDARD,0,"Alum Creek",,,WV,"Lincoln County",America/New_York,304,NA,US,38.28,-81.84,2080 +25005,STANDARD,0,Amma,,,WV,"Roane County",America/New_York,681,NA,US,38.58,-81.26,260 +25007,STANDARD,0,Arnett,,,WV,"Raleigh County",America/New_York,304,NA,US,37.84,-81.43,360 +25008,STANDARD,0,Artie,,,WV,"Raleigh County",America/New_York,304,NA,US,37.95,-81.34,152 +25009,STANDARD,0,Ashford,,,WV,"Boone County",America/New_York,304,NA,US,38.19,-81.71,750 +25011,"PO BOX",0,Bancroft,,,WV,"Putnam County",America/New_York,304,NA,US,38.51,-81.84,519 +25015,STANDARD,0,Belle,"Diamond, Dupont City, Quincy, Shrewsbury, Witcher",,WV,"Kanawha County",America/New_York,304,NA,US,38.23,-81.53,3300 +25019,STANDARD,0,Bickmore,Fola,,WV,"Clay County",America/New_York,304,NA,US,38.37,-81.1,430 +25021,STANDARD,0,Bim,,,WV,"Boone County",America/New_York,304,NA,US,37.92,-81.68,201 +25022,"PO BOX",0,Blair,,,WV,"Logan County",America/New_York,304,NA,US,37.86,-81.83,143 +25024,STANDARD,0,Bloomingrose,,,WV,"Boone County",America/New_York,304,NA,US,38.15,-81.62,350 +25025,STANDARD,0,Blount,,,WV,"Kanawha County",America/New_York,304,NA,US,38.3,-81.38,143 +25026,"PO BOX",0,"Blue Creek",,,WV,"Kanawha County",America/New_York,304,NA,US,38.47,-81.51,101 +25028,STANDARD,0,"Bob White",,,WV,"Boone County",America/New_York,304,NA,US,37.95,-81.72,328 +25030,STANDARD,0,Bomont,,,WV,"Clay County",America/New_York,304,NA,US,38.45,-81.23,350 +25031,"PO BOX",0,Boomer,,,WV,"Fayette County",America/New_York,304,NA,US,38.15,-81.27,514 +25033,STANDARD,0,Buffalo,,,WV,"Putnam County",America/New_York,304,NA,US,38.61,-81.98,1780 +25035,STANDARD,0,"Cabin Creek",,Chelyan,WV,"Kanawha County",America/New_York,304,NA,US,38.17,-81.52,870 +25036,"PO BOX",0,Cannelton,,,WV,"Fayette County",America/New_York,304,NA,US,38.21,-81.26,495 +25039,STANDARD,0,"Cedar Grove",,,WV,"Kanawha County",America/New_York,304,NA,US,38.22,-81.42,790 +25040,"PO BOX",0,"Charlton Heights","Charlton Hgts",,WV,"Fayette County",America/New_York,304,NA,US,38.13,-81.24,460 +25043,STANDARD,0,Clay,,,WV,"Clay County",America/New_York,304,NA,US,38.46,-81.08,1160 +25044,STANDARD,0,"Clear Creek",,,WV,"Raleigh County",America/New_York,304,NA,US,37.89,-81.31,250 +25045,STANDARD,0,Clendenin,"Clio, Corton, Quick",,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.48,-81.34,3850 +25047,STANDARD,0,Clothier,,,WV,"Logan County",America/New_York,304,NA,US,37.92,-81.77,230 +25048,STANDARD,0,Colcord,,,WV,"Raleigh County",America/New_York,304,NA,US,37.95,-81.44,141 +25049,STANDARD,0,Comfort,,,WV,"Boone County",America/New_York,304,NA,US,38.12,-81.57,550 +25051,STANDARD,0,Costa,,,WV,"Boone County",America/New_York,304,NA,US,38.16,-81.71,174 +25053,STANDARD,0,Danville,,,WV,"Boone County",America/New_York,304,NA,US,38.08,-81.83,3030 +25054,"PO BOX",0,Dawes,,,WV,"Kanawha County",America/New_York,304,NA,US,38.11,-81.49,579 +25057,"PO BOX",0,"Deep Water",,,WV,"Fayette County",America/New_York,304,NA,US,38.12,-81.25,218 +25059,STANDARD,0,Dixie,,,WV,"Fayette County",America/New_York,304,NA,US,38.23,-81.21,430 +25060,STANDARD,0,Dorothy,Ameagle,,WV,"Raleigh County",America/New_York,304,NA,US,37.96,-81.49,280 +25061,"PO BOX",0,Drybranch,,,WV,"Kanawha County",America/New_York,304,NA,US,38.17,-81.44,385 +25062,STANDARD,0,"Dry Creek",,,WV,"Raleigh County",America/New_York,304,NA,US,37.88,-81.43,198 +25063,STANDARD,0,Duck,"Elmira, Harrison, Strange Creek",,WV,"Braxton County",America/New_York,"304,681",NA,US,38.56,-80.97,1070 +25064,STANDARD,0,Dunbar,,,WV,"Kanawha County",America/New_York,304,NA,US,38.36,-81.73,7320 +25067,STANDARD,0,"East Bank","Crown Hill",,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.21,-81.44,810 +25070,"PO BOX",0,Eleanor,,,WV,"Putnam County",America/New_York,304,NA,US,38.53,-81.93,1700 +25071,STANDARD,0,Elkview,Frame,,WV,"Kanawha County",America/New_York,304,NA,US,38.43,-81.47,8760 +25075,STANDARD,0,Eskdale,"Carbon, Decota, Kayford, Leewood, Ohley",,WV,"Kanawha County",America/New_York,304,NA,US,38.06,-81.41,450 +25076,"PO BOX",0,Ethel,,,WV,"Logan County",America/New_York,304,NA,US,37.87,-81.93,354 +25079,STANDARD,0,"Falling Rock",,,WV,"Kanawha County",America/New_York,304,NA,US,38.47,-81.38,160 +25081,STANDARD,0,Foster,,,WV,"Boone County",America/New_York,304,NA,US,38.09,-81.77,900 +25082,STANDARD,0,"Fraziers Bottom","Fraziers Btm, Pliny",,WV,"Putnam County",America/New_York,304,NA,US,38.54,-82.02,1730 +25083,STANDARD,0,Gallagher,"Burnwell, Livingston, Mahan, Standard, Whittaker",,WV,"Kanawha County",America/New_York,304,NA,US,38.07,-81.37,390 +25085,STANDARD,0,"Gauley Bridge",Brownsville,,WV,"Fayette County",America/New_York,304,NA,US,38.17,-81.21,680 +25086,"PO BOX",0,Glasgow,,,WV,"Kanawha County",America/New_York,304,NA,US,38.2,-81.42,714 +25088,STANDARD,0,Glen,,,WV,"Clay County",America/New_York,304,NA,US,38.35,-81.23,91 +25090,"PO BOX",0,"Glen Ferris",,,WV,"Fayette County",America/New_York,304,NA,US,38.16,-81.22,104 +25093,STANDARD,0,Gordon,,,WV,"Boone County",America/New_York,304,NA,US,37.99,-81.68,221 +25102,"PO BOX",0,Handley,,,WV,"Kanawha County",America/New_York,304,NA,US,38.18,-81.36,246 +25103,STANDARD,0,Hansford,,,WV,"Kanawha County",America/New_York,304,NA,US,38.18,-81.38,230 +25106,STANDARD,0,Henderson,,,WV,"Mason County",America/New_York,304,NA,US,38.83,-82.13,480 +25107,STANDARD,0,Hernshaw,,,WV,"Kanawha County",America/New_York,304,NA,US,38.2,-81.61,440 +25108,STANDARD,0,Hewett,,,WV,"Boone County",America/New_York,304,NA,US,37.96,-81.85,510 +25109,"PO BOX",0,Hometown,,,WV,"Putnam County",America/New_York,304,NA,US,38.53,-81.85,410 +25110,"PO BOX",0,Hugheston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.22,-81.31,368 +25111,STANDARD,0,Indore,,,WV,"Clay County",America/New_York,304,NA,US,38.35,-81.16,410 +25112,"PO BOX",0,Institute,,,WV,"Kanawha County",America/New_York,304,NA,US,38.38,-81.77,400 +25113,STANDARD,0,Ivydale,"Big Otter",,WV,"Clay County",America/New_York,"304,681",NA,US,38.52,-81.02,560 +25114,STANDARD,0,Jeffrey,Ramage,,WV,"Boone County",America/New_York,304,NA,US,37.99,-81.79,300 +25115,STANDARD,0,"Kanawha Falls",,,WV,"Fayette County",America/New_York,304,NA,US,38.12,-81.18,22 +25118,STANDARD,0,Kimberly,,,WV,"Fayette County",America/New_York,304,NA,US,38.12,-81.32,390 +25119,STANDARD,0,Kincaid,,,WV,"Fayette County",America/New_York,304,NA,US,38.04,-81.28,370 +25121,STANDARD,0,Lake,,,WV,"Logan County",America/New_York,304,NA,US,37.92,-81.9,490 +25123,STANDARD,0,Leon,"Arbuckle, Grimms Landing, Grimms Lndg, Robertsburg",,WV,"Mason County",America/New_York,304,NA,US,38.74,-81.95,2560 +25124,STANDARD,0,Liberty,,,WV,"Putnam County",America/New_York,304,NA,US,38.63,-81.76,1040 +25125,STANDARD,0,Lizemores,Bentree,,WV,"Clay County",America/New_York,304,NA,US,38.33,-81.16,560 +25126,"PO BOX",0,London,,,WV,"Kanawha County",America/New_York,304,NA,US,38.2,-81.37,210 +25130,STANDARD,0,Madison,,,WV,"Boone County",America/New_York,304,NA,US,38.05,-81.8,2810 +25132,STANDARD,0,Mammoth,,,WV,"Kanawha County",America/New_York,304,NA,US,38.29,-81.34,190 +25133,STANDARD,0,Maysel,,,WV,"Clay County",America/New_York,304,NA,US,38.48,-81.12,500 +25134,"PO BOX",0,Miami,,,WV,"Kanawha County",America/New_York,304,NA,US,38.16,-81.49,399 +25136,STANDARD,0,Montgomery,,,WV,"Fayette County",America/New_York,304,NA,US,38.17,-81.31,970 +25139,STANDARD,0,"Mount Carbon",,,WV,"Fayette County",America/New_York,304,NA,US,38.14,-81.29,420 +25140,STANDARD,0,Naoma,"Montcoal, Stickney, Sundial",,WV,"Raleigh County",America/New_York,304,NA,US,37.89,-81.52,550 +25141,STANDARD,0,Nebo,,,WV,"Clay County",America/New_York,304,NA,US,38.62,-81.02,238 +25142,STANDARD,0,Nellis,,,WV,"Boone County",America/New_York,304,NA,US,38.15,-81.73,270 +25143,STANDARD,0,Nitro,,,WV,"Kanawha County",America/New_York,304,NA,US,38.42,-81.82,7070 +25148,STANDARD,0,Orgas,,,WV,"Boone County",America/New_York,304,NA,US,38.05,-81.56,240 +25149,"PO BOX",0,Ottawa,,,WV,"Boone County",America/New_York,304,NA,US,37.94,-81.76,227 +25152,"PO BOX",0,Page,,,WV,"Fayette County",America/New_York,304,NA,US,38.06,-81.25,222 +25154,STANDARD,0,Peytona,,,WV,"Boone County",America/New_York,304,NA,US,38.12,-81.7,630 +25156,"PO BOX",0,Pinch,,,WV,"Kanawha County",America/New_York,304,NA,US,38.18,-81.34,867 +25159,STANDARD,0,Poca,Lanham,,WV,"Putnam County",America/New_York,304,NA,US,38.47,-81.81,4400 +25160,STANDARD,0,"Pond Gap",,Amelia,WV,"Kanawha County",America/New_York,304,NA,US,38.28,-81.28,210 +25161,STANDARD,0,Powellton,,,WV,"Fayette County",America/New_York,304,NA,US,38.05,-81.32,370 +25162,"PO BOX",0,Pratt,,,WV,"Kanawha County",America/New_York,304,NA,US,38.21,-81.39,529 +25164,STANDARD,0,Procious,"Ovapa, Pigeon",,WV,"Clay County",America/New_York,681,NA,US,38.5,-81.21,890 +25165,STANDARD,0,Racine,,,WV,"Boone County",America/New_York,304,NA,US,38.16,-81.65,470 +25168,STANDARD,0,"Red House",,,WV,"Putnam County",America/New_York,304,NA,US,38.55,-81.89,2450 +25169,STANDARD,0,Ridgeview,,,WV,"Boone County",America/New_York,304,NA,US,38.15,-81.78,250 +25173,STANDARD,0,Robson,"Beards Fork",,WV,"Fayette County",America/New_York,304,NA,US,38.09,-81.24,300 +25174,STANDARD,0,"Rock Creek",,,WV,"Raleigh County",America/New_York,304,NA,US,37.87,-81.41,300 +25177,STANDARD,0,"Saint Albans",Jefferson,,WV,"Kanawha County",America/New_York,304,NA,US,38.37,-81.81,19350 +25180,STANDARD,0,Saxon,,,WV,"Raleigh County",America/New_York,304,NA,US,37.78,-81.43,50 +25181,STANDARD,0,Seth,Prenter,"Williams Mountain",WV,"Boone County",America/New_York,304,NA,US,38.09,-81.64,1060 +25183,"PO BOX",0,Sharples,,,WV,"Logan County",America/New_York,304,NA,US,37.93,-81.8,142 +25185,UNIQUE,0,"Mount Olive",,"Mt Olive Crrctnl Complex",WV,"Fayette County",America/New_York,304,NA,US,38.24,-81.24,69 +25186,"PO BOX",0,Smithers,Longacre,,WV,"Fayette County",America/New_York,304,NA,US,38.17,-81.3,791 +25187,STANDARD,0,Southside,,,WV,"Mason County",America/New_York,304,NA,US,38.7,-81.99,490 +25193,STANDARD,0,Sylvester,,,WV,"Boone County",America/New_York,304,NA,US,38.04,-81.51,250 +25201,"PO BOX",0,Tad,,,WV,"Kanawha County",America/New_York,304,NA,US,38.34,-81.49,344 +25202,STANDARD,0,Tornado,"Upper Falls",,WV,"Kanawha County",America/New_York,304,NA,US,38.33,-81.85,1220 +25203,STANDARD,0,"Turtle Creek",,,WV,"Boone County",America/New_York,304,NA,US,38.02,-81.88,240 +25204,STANDARD,0,Twilight,Bandytown,,WV,"Boone County",America/New_York,304,NA,US,37.92,-81.62,123 +25205,"PO BOX",0,Uneeda,,,WV,"Boone County",America/New_York,304,NA,US,38.02,-81.79,423 +25206,STANDARD,0,Van,,,WV,"Boone County",America/New_York,304,NA,US,37.95,-81.69,380 +25208,STANDARD,0,Wharton,"Bald Knob, Barrett",,WV,"Boone County",America/New_York,304,NA,US,37.9,-81.69,610 +25209,STANDARD,0,Whitesville,"Garrison, Packsville, Pettus",,WV,"Boone County",America/New_York,"304,681",NA,US,37.97,-81.53,730 +25211,"PO BOX",0,Widen,,,WV,"Clay County",America/New_York,304,NA,US,38.45,-80.88,72 +25213,STANDARD,0,Winfield,,,WV,"Putnam County",America/New_York,304,NA,US,38.52,-81.88,5690 +25214,STANDARD,0,Winifrede,,,WV,"Kanawha County",America/New_York,304,NA,US,38.19,-81.54,470 +25231,STANDARD,0,Advent,,,WV,"Jackson County",America/New_York,304,NA,US,38.62,-81.56,43 +25234,STANDARD,0,Arnoldsburg,"Sand Ridge",,WV,"Calhoun County",America/New_York,"304,681",NA,US,38.78,-81.12,680 +25235,STANDARD,0,Chloe,Floe,,WV,"Calhoun County",America/New_York,304,NA,US,38.67,-81.09,730 +25239,STANDARD,0,Cottageville,,,WV,"Jackson County",America/New_York,304,NA,US,38.85,-81.81,1360 +25241,STANDARD,0,Evans,,,WV,"Jackson County",America/New_York,304,NA,US,38.8,-81.8,1550 +25243,STANDARD,0,Gandeeville,Harmony,,WV,"Roane County",America/New_York,304,NA,US,38.69,-81.46,750 +25244,STANDARD,0,Gay,,,WV,"Jackson County",America/New_York,304,NA,US,38.77,-81.55,550 +25245,STANDARD,0,Given,"Rock Castle",,WV,"Jackson County",America/New_York,304,NA,US,38.7,-81.76,850 +25247,"PO BOX",0,Hartford,"Hartford City",,WV,"Mason County",America/New_York,304,NA,US,39.01,-82.01,458 +25248,STANDARD,0,Kenna,"Kentuck, Romance",,WV,"Jackson County",America/New_York,304,NA,US,38.67,-81.66,2630 +25251,STANDARD,0,"Left Hand",,,WV,"Roane County",America/New_York,681,NA,US,38.61,-81.24,300 +25252,STANDARD,0,"Le Roy","Duncan, Liverpool",,WV,"Jackson County",America/New_York,304,NA,US,38.95,-81.51,870 +25253,STANDARD,0,Letart,,,WV,"Mason County",America/New_York,"681,304",NA,US,38.88,-81.97,1570 +25259,STANDARD,0,Looneyville,"Linden, Tariff",,WV,"Roane County",America/New_York,304,NA,US,38.66,-81.29,530 +25260,STANDARD,0,Mason,Clifton,,WV,"Mason County",America/New_York,"304,681",NA,US,39,-82.03,1230 +25261,STANDARD,0,Millstone,,,WV,"Calhoun County",America/New_York,304,NA,US,38.85,-81.07,250 +25262,STANDARD,0,Millwood,,,WV,"Jackson County",America/New_York,304,NA,US,38.9,-81.81,830 +25264,STANDARD,0,"Mount Alto",,,WV,"Jackson County",America/New_York,304,NA,US,38.86,-81.87,300 +25265,"PO BOX",0,"New Haven",,,WV,"Mason County",America/New_York,304,NA,US,38.99,-81.96,1284 +25266,STANDARD,0,Newton,Uler,,WV,"Roane County",America/New_York,304,NA,US,38.59,-81.15,570 +25267,STANDARD,0,Normantown,"Letter Gap, Lockney, Stumptown",,WV,"Gilmer County",America/New_York,304,NA,US,38.89,-80.95,560 +25268,STANDARD,0,Orma,Minnora,,WV,"Calhoun County",America/New_York,304,NA,US,38.74,-81.09,430 +25270,STANDARD,0,Reedy,,,WV,"Roane County",America/New_York,304,NA,US,38.89,-81.42,680 +25271,STANDARD,0,Ripley,"Statts Mills",Fairplain,WV,"Jackson County",America/New_York,"304,681",NA,US,38.82,-81.7,7460 +25275,STANDARD,0,Sandyville,,,WV,"Jackson County",America/New_York,304,NA,US,38.9,-81.64,1840 +25276,STANDARD,0,Spencer,,,WV,"Roane County",America/New_York,304,NA,US,38.8,-81.35,5450 +25285,STANDARD,0,Wallback,"Valley Fork",,WV,"Clay County",America/New_York,304,NA,US,38.54,-81.1,550 +25286,STANDARD,0,Walton,,,WV,"Roane County",America/New_York,304,NA,US,38.6,-81.4,1110 +25287,STANDARD,0,"West Columbia",Lakin,,WV,"Mason County",America/New_York,"304,681",NA,US,38.95,-82.05,560 +25301,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.35,-81.63,1710 +25302,STANDARD,0,Charleston,"Big Chimney",,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.39,-81.6,11460 +25303,STANDARD,0,"South Charleston","Charleston, S Charleston",,WV,"Kanawha County",America/New_York,304,NA,US,38.36,-81.69,6360 +25304,STANDARD,0,Charleston,,"Kanawha City",WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.59,6310 +25305,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.34,-81.61,0 +25306,STANDARD,0,Charleston,Malden,,WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.5,5150 +25309,STANDARD,0,"South Charleston","Charleston, S Charleston",,WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.75,10170 +25311,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.37,-81.56,7030 +25312,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.45,-81.66,7230 +25313,STANDARD,0,Charleston,"Cross Lanes",,WV,"Kanawha County",America/New_York,304,NA,US,38.42,-81.76,10510 +25314,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.64,13070 +25315,STANDARD,0,Charleston,"Chesapeake, Marmet",,WV,"Kanawha County",America/New_York,304,NA,US,38.22,-81.56,2210 +25317,UNIQUE,0,Charleston,,"Wv Dept Of Motor Veh",WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25320,STANDARD,0,Charleston,Sissonville,,WV,"Kanawha County",America/New_York,304,NA,US,38.54,-81.63,4200 +25321,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,108 +25322,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,109 +25323,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,95 +25324,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,77 +25325,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,62 +25326,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,62 +25327,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,78 +25328,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,70 +25329,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,57 +25330,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,72 +25331,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25332,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25333,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25334,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25335,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25336,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25337,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,26 +25338,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25339,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,260 +25350,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25356,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,357 +25357,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,141 +25358,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,125 +25360,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,745 +25361,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,187 +25362,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,549 +25364,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,373 +25365,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,174 +25375,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,137 +25387,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25389,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.35,-81.63,0 +25392,UNIQUE,0,Charleston,,"United Bank",WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25396,UNIQUE,0,Charleston,,Verizon,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25401,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.46,-77.97,11740 +25402,"PO BOX",0,Martinsburg,,,WV,"Berkeley County",America/New_York,304,NA,US,39.46,-77.96,2220 +25403,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.47,-78.01,13860 +25404,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.46,-77.96,19200 +25405,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,304,NA,US,39.41,-77.96,12200 +25410,"PO BOX",0,Bakerton,,,WV,"Washington County",America/New_York,304,NA,US,39.36,-77.76,101 +25411,STANDARD,0,"Berkeley Springs","Berkeley Spgs, Hancock, Unger",,WV,"Morgan County",America/New_York,304,NA,US,39.55,-78.21,10770 +25413,STANDARD,0,"Bunker Hill",,,WV,"Berkeley County",America/New_York,304,NA,US,39.32,-78.05,8450 +25414,STANDARD,0,"Charles Town",,,WV,"Jefferson County",America/New_York,304,NA,US,39.28,-77.85,17310 +25419,STANDARD,0,"Falling Waters","Falling Wtrs",,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.55,-77.89,10620 +25420,STANDARD,0,Gerrardstown,,,WV,"Berkeley County",America/New_York,304,NA,US,39.37,-78.11,3840 +25421,STANDARD,0,Glengary,,,WV,"Berkeley County",America/New_York,304,NA,US,39.38,-78.15,222 +25422,STANDARD,0,"Great Cacapon",,,WV,"Morgan County",America/New_York,304,NA,US,39.62,-78.29,1230 +25423,"PO BOX",0,Halltown,,,WV,"Jefferson County",America/New_York,304,NA,US,39.31,-77.76,195 +25425,STANDARD,0,"Harpers Ferry",Bolivar,,WV,"Jefferson County",America/New_York,304,NA,US,39.32,-77.74,11780 +25427,STANDARD,0,Hedgesville,"Cherry Run, Jones Springs",,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.55,-77.99,14650 +25428,STANDARD,0,Inwood,,,WV,"Berkeley County",America/New_York,304,NA,US,39.35,-78.05,11510 +25429,UNIQUE,1,Martinsburg,"N Thompson Outfitters",,WV,"Berkeley County",America/New_York,304,NA,US,39.32,-77.94,0 +25430,STANDARD,0,Kearneysville,Middleway,,WV,"Jefferson County",America/New_York,304,NA,US,39.38,-77.88,7640 +25431,STANDARD,0,Levels,,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.49,-78.57,240 +25432,STANDARD,0,Millville,,,WV,"Jefferson County",America/New_York,304,NA,US,39.31,-77.78,257 +25434,STANDARD,0,"Paw Paw",,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.53,-78.45,1700 +25437,STANDARD,0,Points,,,WV,"Hampshire County",America/New_York,304,NA,US,39.43,-78.57,400 +25438,STANDARD,0,Ranson,,"Forrester Center",WV,"Jefferson County",America/New_York,304,NA,US,39.32,-77.86,6520 +25440,"PO BOX",0,Ridgeway,,,WV,"Berkeley County",America/New_York,304,NA,US,39.3,-78.07,0 +25441,"PO BOX",0,Rippon,,,WV,"Jefferson County",America/New_York,304,NA,US,39.22,-77.9,317 +25442,STANDARD,0,"Shenandoah Junction","Shendoah Jct",,WV,"Jefferson County",America/New_York,304,NA,US,39.35,-77.84,1690 +25443,STANDARD,0,Shepherdstown,,,WV,"Jefferson County",America/New_York,304,NA,US,39.43,-77.8,6450 +25444,STANDARD,0,Slanesville,,,WV,"Hampshire County",America/New_York,304,NA,US,39.37,-78.52,700 +25446,STANDARD,0,"Summit Point",,,WV,"Jefferson County",America/New_York,304,NA,US,39.24,-77.95,1260 +25501,STANDARD,0,Alkol,,,WV,"Lincoln County",America/New_York,304,NA,US,38.15,-81.97,990 +25502,STANDARD,0,"Apple Grove",,,WV,"Mason County",America/New_York,304,NA,US,38.66,-82.12,910 +25503,STANDARD,0,Ashton,,,WV,"Mason County",America/New_York,304,NA,US,38.61,-82.12,630 +25504,STANDARD,0,Barboursville,,,WV,"Cabell County",America/New_York,304,NA,US,38.4,-82.29,10440 +25505,STANDARD,0,"Big Creek",,,WV,"Logan County",America/New_York,304,NA,US,38.01,-82.03,250 +25506,STANDARD,0,Branchland,"Palermo, Sias",,WV,"Lincoln County",America/New_York,304,NA,US,38.25,-82.25,3220 +25507,"PO BOX",0,Ceredo,,,WV,"Wayne County",America/New_York,304,NA,US,38.4,-82.56,1274 +25508,STANDARD,0,Chapmanville,Shively,,WV,"Logan County",America/New_York,304,NA,US,37.97,-82.01,6410 +25510,STANDARD,0,Culloden,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.06,4310 +25511,STANDARD,0,Dunlow,,,WV,"Wayne County",America/New_York,"681,304",NA,US,38.03,-82.34,650 +25512,STANDARD,0,"East Lynn",,,WV,"Wayne County",America/New_York,304,NA,US,38.19,-82.32,690 +25514,STANDARD,0,"Fort Gay",Glenhayes,,WV,"Wayne County",America/New_York,304,NA,US,38.11,-82.59,2890 +25515,STANDARD,0,"Gallipolis Ferry","Galipolis Fry",,WV,"Mason County",America/New_York,304,NA,US,38.76,-82.11,1630 +25517,STANDARD,0,Genoa,Radnor,,WV,"Wayne County",America/New_York,"304,681",NA,US,38.07,-82.46,1260 +25520,STANDARD,0,Glenwood,,,WV,"Mason County",America/New_York,304,NA,US,38.54,-82.14,1090 +25521,STANDARD,0,Griffithsville,Griffithsvle,,WV,"Lincoln County",America/New_York,304,NA,US,38.24,-81.99,810 +25523,STANDARD,0,Hamlin,Sweetland,,WV,"Lincoln County",America/New_York,"304,681",NA,US,38.27,-82.1,2030 +25524,STANDARD,0,Harts,"Ferrellsburg, Leet",,WV,"Lincoln County",America/New_York,304,NA,US,38.03,-82.13,2480 +25526,STANDARD,0,Hurricane,,,WV,"Putnam County",America/New_York,"304,681",NA,US,38.43,-82.01,19950 +25529,STANDARD,0,Julian,,,WV,"Boone County",America/New_York,304,NA,US,38.13,-81.86,600 +25530,STANDARD,0,Kenova,,,WV,"Wayne County",America/New_York,304,NA,US,38.4,-82.58,4550 +25534,STANDARD,0,Kiahsville,"Cove Gap",,WV,"Wayne County",America/New_York,304,NA,US,38.06,-82.26,132 +25535,STANDARD,0,Lavalette,,,WV,"Wayne County",America/New_York,304,NA,US,38.32,-82.41,2130 +25537,STANDARD,0,Lesage,,,WV,"Cabell County",America/New_York,304,NA,US,38.48,-82.3,1710 +25540,STANDARD,0,Midkiff,,,WV,"Lincoln County",America/New_York,304,NA,US,38.18,-82.16,230 +25541,STANDARD,0,Milton,,,WV,"Cabell County",America/New_York,304,NA,US,38.43,-82.13,8290 +25544,STANDARD,0,Myra,,,WV,"Lincoln County",America/New_York,304,NA,US,38.22,-82.13,34 +25545,STANDARD,0,Ona,,,WV,"Cabell County",America/New_York,304,NA,US,38.48,-82.22,4140 +25547,STANDARD,0,"Pecks Mill",,,WV,"Logan County",America/New_York,304,NA,US,37.92,-81.95,770 +25550,STANDARD,0,"Point Pleasant","Pt Pleasant",,WV,"Mason County",America/New_York,304,NA,US,38.85,-82.13,6780 +25555,STANDARD,0,Prichard,,,WV,"Wayne County",America/New_York,304,NA,US,38.21,-82.56,1770 +25557,STANDARD,0,Ranger,,,WV,"Lincoln County",America/New_York,304,NA,US,38.11,-82.17,950 +25559,STANDARD,0,"Salt Rock",,,WV,"Cabell County",America/New_York,304,NA,US,38.32,-82.24,1860 +25560,STANDARD,0,"Scott Depot",,,WV,"Putnam County",America/New_York,"304,681",NA,US,38.44,-81.89,8580 +25562,"PO BOX",0,Shoals,,,WV,"Wayne County",America/New_York,304,NA,US,38.32,-82.53,127 +25564,STANDARD,0,Sod,,,WV,"Lincoln County",America/New_York,304,NA,US,38.26,-81.88,1070 +25565,STANDARD,0,Spurlockville,Morrisvale,,WV,"Lincoln County",America/New_York,304,NA,US,38.1,-81.96,430 +25567,STANDARD,0,Sumerco,,,WV,"Lincoln County",America/New_York,304,NA,US,38.19,-81.89,670 +25569,"PO BOX",0,Teays,,,WV,"Putnam County",America/New_York,304,NA,US,38.43,-81.89,117 +25570,STANDARD,0,Wayne,,,WV,"Wayne County",America/New_York,304,NA,US,38.22,-82.44,4670 +25571,STANDARD,0,"West Hamlin",,,WV,"Lincoln County",America/New_York,304,NA,US,38.28,-82.19,1940 +25572,STANDARD,0,Woodville,Alkol,,WV,"Lincoln County",America/New_York,304,NA,US,38.15,-81.89,0 +25573,STANDARD,0,Yawkey,,,WV,"Lincoln County",America/New_York,304,NA,US,38.2,-81.95,620 +25601,STANDARD,0,Logan,"Mitchell Hts, Monaville, Rossmore, West Logan",,WV,"Logan County",America/New_York,304,NA,US,37.84,-81.98,3890 +25606,"PO BOX",0,Accoville,,Crown,WV,"Logan County",America/New_York,304,NA,US,37.78,-81.85,803 +25607,STANDARD,0,Amherstdale,Robinette,,WV,"Logan County",America/New_York,304,NA,US,37.8,-81.75,620 +25608,STANDARD,0,Baisden,,,WV,"Mingo County",America/New_York,304,NA,US,37.57,-81.89,470 +25611,"PO BOX",0,Bruno,,,WV,"Logan County",America/New_York,304,NA,US,37.69,-81.88,448 +25612,STANDARD,0,Chauncey,,,WV,"Logan County",America/New_York,304,NA,US,37.76,-81.96,97 +25614,STANDARD,0,Cora,,,WV,"Logan County",America/New_York,304,NA,US,37.83,-82.03,220 +25617,STANDARD,0,Davin,,,WV,"Logan County",America/New_York,304,NA,US,37.71,-81.78,620 +25621,STANDARD,0,Gilbert,Hampden,,WV,"Mingo County",America/New_York,304,NA,US,37.61,-81.86,1730 +25624,"PO BOX",0,Henlawson,,,WV,"Logan County",America/New_York,304,NA,US,37.9,-81.98,368 +25625,STANDARD,0,Holden,,,WV,"Logan County",America/New_York,304,NA,US,37.82,-82.08,960 +25628,"PO BOX",0,Kistler,,,WV,"Logan County",America/New_York,304,NA,US,37.76,-81.85,418 +25630,"PO BOX",0,Lorado,Lundale,,WV,"Logan County",America/New_York,304,NA,US,37.79,-81.7,499 +25632,STANDARD,0,Lyburn,"Earling, Taplin",,WV,"Logan County",America/New_York,304,NA,US,37.74,-81.93,330 +25634,"PO BOX",0,Mallory,,,WV,"Logan County",America/New_York,304,NA,US,37.74,-81.84,631 +25635,STANDARD,0,Man,"Hunt, Landville",,WV,"Logan County",America/New_York,"304,681",NA,US,37.71,-81.89,1430 +25637,"PO BOX",0,"Mount Gay",,,WV,"Logan County",America/New_York,304,NA,US,37.86,-82.03,1055 +25638,STANDARD,0,Omar,Barnabus,,WV,"Logan County",America/New_York,304,NA,US,37.76,-81.99,710 +25639,"PO BOX",0,"Peach Creek",,,WV,"Logan County",America/New_York,304,NA,US,37.87,-81.96,560 +25644,"PO BOX",0,"Sarah Ann",,,WV,"Logan County",America/New_York,304,NA,US,37.72,-82.03,256 +25646,"PO BOX",0,Stollings,"Mc Connell",,WV,"Logan County",America/New_York,304,NA,US,37.84,-81.93,951 +25647,"PO BOX",0,Switzer,,,WV,"Logan County",America/New_York,304,NA,US,37.79,-81.98,672 +25649,"PO BOX",0,Verdunville,,,WV,"Logan County",America/New_York,304,NA,US,37.85,-82.05,1075 +25650,STANDARD,0,Verner,Emmett,,WV,"Mingo County",America/New_York,304,NA,US,37.67,-81.82,240 +25651,STANDARD,0,Wharncliffe,,,WV,"Mingo County",America/New_York,304,NA,US,37.55,-81.97,460 +25652,"PO BOX",0,Whitman,,,WV,"Logan County",America/New_York,304,NA,US,37.81,-82.03,958 +25653,"PO BOX",0,Wilkinson,,,WV,"Logan County",America/New_York,304,NA,US,37.83,-82,364 +25654,STANDARD,0,Yolyn,Dehue,,WV,"Logan County",America/New_York,304,NA,US,37.8,-81.87,81 +25661,STANDARD,0,Williamson,"Nolan, Sprigg",,WV,"Mingo County",America/New_York,304,NA,US,37.67,-82.27,3900 +25665,"PO BOX",0,Borderland,,,WV,"Mingo County",America/New_York,304,NA,US,37.72,-82.28,152 +25666,STANDARD,0,Breeden,,,WV,"Mingo County",America/New_York,304,NA,US,37.92,-82.27,190 +25667,"PO BOX",0,Chattaroy,,,WV,"Mingo County",America/New_York,304,NA,US,37.7,-82.26,507 +25669,STANDARD,0,Crum,,,WV,"Wayne County",America/New_York,304,NA,US,37.93,-82.39,710 +25670,STANDARD,0,Delbarton,"Myrtle, Stirrat",,WV,"Mingo County",America/New_York,"304,681",NA,US,37.7,-82.18,3360 +25671,STANDARD,0,Dingess,,,WV,"Mingo County",America/New_York,304,NA,US,37.87,-82.18,880 +25672,STANDARD,0,Edgarton,"Thacker, Vulcan",,WV,"Mingo County",America/New_York,304,NA,US,37.58,-82.11,266 +25674,STANDARD,0,Kermit,,,WV,"Mingo County",America/New_York,"304,681",NA,US,37.87,-82.35,1890 +25676,STANDARD,0,Lenore,,,WV,"Mingo County",America/New_York,304,NA,US,37.8,-82.27,1090 +25678,STANDARD,0,Matewan,"Blackberry City, Blckberry Cty, Lobata, Meador",,WV,"Mingo County",America/New_York,304,NA,US,37.62,-82.16,1250 +25685,"PO BOX",0,Naugatuck,,,WV,"Martin County",America/New_York,304,NA,US,37.8,-82.33,404 +25686,"PO BOX",0,Newtown,,,WV,"Mingo County",America/New_York,304,NA,US,37.63,-82.06,218 +25688,"PO BOX",0,"North Matewan",,,WV,"Mingo County",America/New_York,304,NA,US,37.62,-82.12,353 +25690,"PO BOX",0,Ragland,,,WV,"Mingo County",America/New_York,304,NA,US,37.69,-82.12,350 +25691,"PO BOX",0,Rawl,,,WV,"Mingo County",America/New_York,304,NA,US,37.65,-82.2,208 +25692,"PO BOX",0,"Red Jacket",,,WV,"Mingo County",America/New_York,304,NA,US,37.64,-82.13,413 +25696,"PO BOX",0,Varney,,,WV,"Mingo County",America/New_York,304,NA,US,37.68,-82.12,593 +25699,STANDARD,0,Wilsondale,,,WV,"Wayne County",America/New_York,"304,681",NA,US,37.95,-82.36,135 +25701,STANDARD,0,Huntington,,,WV,"Cabell County",America/New_York,"304,681",NA,US,38.41,-82.43,15510 +25702,STANDARD,0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.43,-82.31,4920 +25703,STANDARD,0,Huntington,,,WV,"Cabell County",America/New_York,"304,681",NA,US,38.42,-82.42,2080 +25704,STANDARD,0,Huntington,,,WV,"Wayne County",America/New_York,"304,681",NA,US,38.31,-82.49,11620 +25705,STANDARD,0,Huntington,Alltizer,"Beverly Hills",WV,"Cabell County",America/New_York,304,NA,US,38.4,-82.36,16390 +25706,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,41 +25707,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,18 +25708,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25709,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25710,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25711,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,31 +25712,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,49 +25713,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,59 +25714,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,28 +25715,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25716,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,33 +25717,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25718,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25719,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25720,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,22 +25721,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,37 +25722,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25723,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25724,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25725,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25726,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25727,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25728,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25729,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,42 +25755,UNIQUE,0,Huntington,,"Marshall University",WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,34 +25770,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25771,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25772,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,25 +25773,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,21 +25774,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,33 +25775,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,29 +25776,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,25 +25777,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,31 +25778,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,14 +25779,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25801,STANDARD,0,Beckley,,"East Beckley",WV,"Raleigh County",America/New_York,"304,681",NA,US,37.78,-81.18,22750 +25802,"PO BOX",0,Beckley,Sprague,,WV,"Raleigh County",America/New_York,304,NA,US,37.78,-81.18,1372 +25810,"PO BOX",0,"Allen Junction","Allen Jct",,WV,"Wyoming County",America/New_York,304,NA,US,37.59,-81.35,142 +25811,STANDARD,0,Amigo,,,WV,"Wyoming County",America/New_York,304,NA,US,37.56,-81.29,107 +25812,STANDARD,0,Ansted,,,WV,"Fayette County",America/New_York,304,NA,US,38.13,-81.1,1270 +25813,STANDARD,0,Beaver,"Blue Jay, Glen Morgan",,WV,"Raleigh County",America/New_York,304,NA,US,37.74,-81.15,4190 +25817,STANDARD,0,Bolt,,,WV,"Raleigh County",America/New_York,304,NA,US,37.76,-81.41,600 +25818,"PO BOX",0,Bradley,,,WV,"Raleigh County",America/New_York,304,NA,US,37.86,-81.19,1157 +25820,STANDARD,0,"Camp Creek",,,WV,"Mercer County",America/New_York,304,NA,US,37.51,-81.16,320 +25823,STANDARD,0,"Coal City","Jonben, Whitby",,WV,"Raleigh County",America/New_York,681,NA,US,37.67,-81.21,1530 +25825,STANDARD,0,"Cool Ridge",,,WV,"Raleigh County",America/New_York,304,NA,US,37.64,-81.08,1830 +25826,"PO BOX",0,Corinne,,,WV,"Wyoming County",America/New_York,304,NA,US,37.58,-81.36,250 +25827,STANDARD,0,"Crab Orchard",,,WV,"Raleigh County",America/New_York,"304,681",NA,US,37.74,-81.23,2370 +25831,STANDARD,0,Danese,"Clifftop, Maplewood",,WV,"Fayette County",America/New_York,304,NA,US,37.96,-80.93,1000 +25832,STANDARD,0,Daniels,"Glade Springs",,WV,"Raleigh County",America/New_York,304,NA,US,37.72,-81.12,4040 +25833,"PO BOX",0,Dothan,,,WV,"Fayette County",America/New_York,304,NA,US,37.99,-81.21,0 +25836,"PO BOX",0,Eccles,,,WV,"Raleigh County",America/New_York,304,NA,US,37.79,-81.26,413 +25837,STANDARD,0,Edmond,,,WV,"Fayette County",America/New_York,304,NA,US,38.05,-81.03,250 +25839,STANDARD,0,Fairdale,,,WV,"Raleigh County",America/New_York,304,NA,US,37.78,-81.39,1070 +25840,STANDARD,0,Fayetteville,"Beckwith, Cunard, Wriston","Gatewood, Tourison",WV,"Fayette County",America/New_York,304,NA,US,38.05,-81.1,6490 +25841,STANDARD,0,"Flat Top",,,WV,"Mercer County",America/New_York,304,NA,US,37.58,-81.11,460 +25843,STANDARD,0,Ghent,,,WV,"Raleigh County",America/New_York,304,NA,US,37.61,-81.09,800 +25844,STANDARD,0,"Glen Daniel",,,WV,"Raleigh County",America/New_York,"304,681",NA,US,37.77,-81.33,1030 +25845,STANDARD,0,"Glen Fork",,,WV,"Wyoming County",America/New_York,304,NA,US,37.7,-81.53,510 +25846,STANDARD,0,"Glen Jean",,,WV,"Fayette County",America/New_York,304,NA,US,37.93,-81.17,290 +25848,STANDARD,0,"Glen Rogers",,,WV,"Wyoming County",America/New_York,304,NA,US,37.73,-81.44,213 +25849,STANDARD,0,"Glen White",,,WV,"Raleigh County",America/New_York,304,NA,US,37.73,-81.28,227 +25851,"PO BOX",0,Harper,,,WV,"Raleigh County",America/New_York,304,NA,US,37.79,-81.26,367 +25853,"PO BOX",0,Helen,,,WV,"Raleigh County",America/New_York,304,NA,US,37.64,-81.31,153 +25854,STANDARD,0,Hico,,,WV,"Fayette County",America/New_York,304,NA,US,38.11,-80.94,890 +25855,STANDARD,0,Hilltop,,,WV,"Fayette County",America/New_York,304,NA,US,37.94,-81.16,415 +25857,STANDARD,0,Josephine,,,WV,"Raleigh County",America/New_York,304,NA,US,37.64,-81.28,155 +25860,"PO BOX",0,Lanark,,,WV,"Raleigh County",America/New_York,304,NA,US,37.81,-81.12,229 +25862,STANDARD,0,Lansing,,,WV,"Fayette County",America/New_York,304,NA,US,38.09,-81.06,250 +25864,STANDARD,0,Layland,"Lawton, Terry",,WV,"Fayette County",America/New_York,304,NA,US,37.87,-80.99,230 +25865,STANDARD,0,Lester,,,WV,"Raleigh County",America/New_York,304,NA,US,37.73,-81.3,1040 +25866,"PO BOX",0,Lochgelly,,,WV,"Fayette County",America/New_York,304,NA,US,38.03,-81.07,243 +25868,STANDARD,0,Lookout,,,WV,"Fayette County",America/New_York,304,NA,US,38.07,-80.97,490 +25870,STANDARD,0,Maben,,Pierpont,WV,"Wyoming County",America/New_York,304,NA,US,37.63,-81.39,187 +25871,"PO BOX",0,Mabscott,,,WV,"Raleigh County",America/New_York,304,NA,US,37.77,-81.21,870 +25873,"PO BOX",0,"Mac Arthur",,,WV,"Raleigh County",America/New_York,304,NA,US,37.75,-81.21,917 +25875,"PO BOX",0,"Mc Graws",,,WV,"Wyoming County",America/New_York,304,NA,US,37.68,-81.46,251 +25876,STANDARD,0,Saulsville,"Mc Graws",,WV,"Wyoming County",America/New_York,304,NA,US,37.63,-81.44,27 +25878,"PO BOX",0,Midway,Pemberton,,WV,"Raleigh County",America/New_York,304,NA,US,37.72,-81.23,678 +25879,"PO BOX",0,Minden,,,WV,"Fayette County",America/New_York,304,NA,US,37.98,-81.11,336 +25880,STANDARD,0,"Mount Hope",,Kilsyth,WV,"Raleigh County",America/New_York,"304,681",NA,US,37.89,-81.17,4100 +25882,STANDARD,0,Mullens,,,WV,"Wyoming County",America/New_York,"304,681",NA,US,37.57,-81.38,1470 +25888,UNIQUE,0,"Mount Hope",,"Boy Scouts Of America",WV,,America/New_York,,NA,US,37.9,-81.17,0 +25901,STANDARD,0,"Oak Hill","Harvey, Redstar, Summerlee",,WV,"Fayette County",America/New_York,"304,681",NA,US,37.98,-81.14,8330 +25902,STANDARD,0,Odd,,,WV,"Raleigh County",America/New_York,304,NA,US,37.56,-81.23,280 +25904,"PO BOX",0,Pax,,,WV,"Fayette County",America/New_York,304,NA,US,37.93,-81.28,439 +25906,"PO BOX",0,"Piney View",,,WV,"Raleigh County",America/New_York,304,NA,US,37.84,-81.13,436 +25907,"PO BOX",0,Prince,,,WV,"Fayette County",America/New_York,304,NA,US,37.86,-81.09,88 +25908,STANDARD,0,Princewick,"Winding Gulf",,WV,"Raleigh County",America/New_York,681,NA,US,37.68,-81.25,250 +25909,"PO BOX",0,Prosperity,,,WV,"Raleigh County",America/New_York,304,NA,US,37.83,-81.2,745 +25911,"PO BOX",0,Raleigh,,,WV,"Raleigh County",America/New_York,304,NA,US,37.76,-81.17,222 +25913,STANDARD,0,Ravencliff,,,WV,"Wyoming County",America/New_York,304,NA,US,37.69,-81.49,250 +25915,STANDARD,0,Rhodell,"East Gulf, Mead",,WV,"Raleigh County",America/New_York,304,NA,US,37.6,-81.3,269 +25916,"PO BOX",0,Sabine,,,WV,"Wyoming County",America/New_York,304,NA,US,37.67,-81.49,119 +25917,STANDARD,0,Scarbro,Kingston,,WV,"Fayette County",America/New_York,304,NA,US,37.99,-81.22,1390 +25918,STANDARD,0,"Shady Spring",Abraham,,WV,"Raleigh County",America/New_York,304,NA,US,37.7,-81.09,3640 +25919,"PO BOX",0,Skelton,,,WV,"Raleigh County",America/New_York,304,NA,US,37.8,-81.19,177 +25920,STANDARD,0,"Slab Fork",,,WV,"Raleigh County",America/New_York,304,NA,US,37.69,-81.33,175 +25921,"PO BOX",0,Sophia,"Mcalpin, Tams",,WV,"Raleigh County",America/New_York,304,NA,US,37.7,-81.25,1871 +25922,STANDARD,0,Spanishburg,,,WV,"Mercer County",America/New_York,304,NA,US,37.45,-81.11,400 +25926,STANDARD,1,Beckley,Sprague,,WV,"Raleigh County",America/New_York,304,NA,US,37.79,-81.18,0 +25927,"PO BOX",0,Stanaford,,,WV,"Raleigh County",America/New_York,304,NA,US,37.81,-81.15,360 +25928,STANDARD,0,Stephenson,,,WV,"Wyoming County",America/New_York,304,NA,US,37.57,-81.33,260 +25932,STANDARD,0,Surveyor,,,WV,"Raleigh County",America/New_York,304,NA,US,37.75,-81.3,350 +25936,STANDARD,0,Thurmond,,,WV,"Fayette County",America/New_York,304,NA,US,37.96,-81.08,26 +25938,STANDARD,0,Victor,Ramsey,,WV,"Fayette County",America/New_York,304,NA,US,38.14,-81.03,1100 +25942,"PO BOX",0,Winona,,,WV,"Fayette County",America/New_York,304,NA,US,38.02,-80.96,181 +25943,"PO BOX",0,Wyco,,,WV,"Wyoming County",America/New_York,304,NA,US,37.61,-81.34,84 +25951,STANDARD,0,Hinton,"Brooks, True",,WV,"Summers County",America/New_York,304,NA,US,37.66,-80.88,3630 +25958,STANDARD,0,Charmco,"Bingham, Hines, Orient Hill",,WV,"Greenbrier County",America/New_York,304,NA,US,38.02,-80.75,510 +25962,STANDARD,0,Rainelle,"Bellwood, Corliss, Hilton Village, Hilton Vlg, Lilly Park",,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.96,-80.77,2540 +25965,STANDARD,1,Elton,,,WV,"Summers County",America/New_York,304,NA,US,37.83,-80.78,0 +25966,"PO BOX",0,"Green Sulphur Springs","Grn Sphr Spgs, Meadow Bridge",,WV,"Summers County",America/New_York,304,NA,US,37.79,-80.83,109 +25969,STANDARD,0,"Jumping Branch","Jumping Br, Streeter",,WV,"Summers County",America/New_York,304,NA,US,37.65,-80.98,890 +25971,STANDARD,0,Lerona,,,WV,"Mercer County",America/New_York,304,NA,US,37.5,-80.98,890 +25972,"PO BOX",0,Leslie,Bellburn,,WV,"Greenbrier County",America/New_York,304,NA,US,38.03,-80.74,156 +25976,STANDARD,0,"Meadow Bridge","Elton, Lockbridge",,WV,"Fayette County",America/New_York,304,NA,US,37.86,-80.85,1670 +25977,STANDARD,0,"Meadow Creek",,,WV,"Summers County",America/New_York,304,NA,US,37.8,-80.91,68 +25978,STANDARD,0,Nimitz,,,WV,"Summers County",America/New_York,304,NA,US,37.62,-80.93,520 +25979,STANDARD,0,Pipestem,Lovern,,WV,"Summers County",America/New_York,304,NA,US,37.53,-80.96,690 +25981,STANDARD,0,Quinwood,"Crichton, Marfrance",,WV,"Greenbrier County",America/New_York,304,NA,US,38.1,-80.71,580 +25984,STANDARD,0,Rupert,"Duo, Kessler",,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.96,-80.68,1280 +25985,STANDARD,0,Sandstone,,,WV,"Summers County",America/New_York,304,NA,US,37.76,-80.88,330 +25986,"PO BOX",0,"Spring Dale",,,WV,"Fayette County",America/New_York,304,NA,US,37.87,-80.81,133 +25989,STANDARD,0,"White Oak",,,WV,"Raleigh County",America/New_York,304,NA,US,37.68,-81.07,320 +26003,STANDARD,0,Wheeling,"Bethlehem, Elm Grove, Mozart, Overbrook, Warwood",,WV,"Ohio County",America/New_York,304,NA,US,40.07,-80.69,34360 +26030,"PO BOX",0,"Beech Bottom",,,WV,"Brooke County",America/New_York,304,NA,US,40.22,-80.66,568 +26031,STANDARD,0,Benwood,,,WV,"Marshall County",America/New_York,304,NA,US,40.01,-80.73,1540 +26032,STANDARD,0,Bethany,,,WV,"Brooke County",America/New_York,304,NA,US,40.2,-80.56,460 +26033,STANDARD,0,Cameron,,,WV,"Marshall County",America/New_York,"304,681",NA,US,39.82,-80.57,2230 +26034,STANDARD,0,Chester,,,WV,"Hancock County",America/New_York,304,NA,US,40.61,-80.56,3670 +26035,STANDARD,0,Colliers,,,WV,"Brooke County",America/New_York,304,NA,US,40.34,-80.55,2140 +26036,STANDARD,0,Dallas,,,WV,"Marshall County",America/New_York,304,NA,US,39.96,-80.55,440 +26037,STANDARD,0,Follansbee,,,WV,"Brooke County",America/New_York,304,NA,US,40.33,-80.59,5530 +26038,STANDARD,0,"Glen Dale",,,WV,"Marshall County",America/New_York,304,NA,US,39.94,-80.75,2650 +26039,STANDARD,0,"Glen Easton",,,WV,"Marshall County",America/New_York,304,NA,US,39.83,-80.66,800 +26040,STANDARD,0,Mcmechen,,,WV,"Marshall County",America/New_York,304,NA,US,39.98,-80.73,1490 +26041,STANDARD,0,Moundsville,,,WV,"Marshall County",America/New_York,304,NA,US,39.92,-80.74,12520 +26047,STANDARD,0,"New Cumberland","New Cumberlnd","New Cumbrlnd",WV,"Hancock County",America/New_York,304,NA,US,40.49,-80.6,5010 +26050,STANDARD,0,Newell,,,WV,"Hancock County",America/New_York,304,NA,US,40.61,-80.6,1140 +26055,STANDARD,0,Proctor,,,WV,"Marshall County",America/New_York,304,NA,US,39.72,-80.75,1420 +26056,"PO BOX",0,"New Manchester","New Manchestr","New Manchstr",WV,"Hancock County",America/New_York,304,NA,US,40.53,-80.58,520 +26058,"PO BOX",0,"Short Creek",,,WV,"Brooke County",America/New_York,304,NA,US,40.22,-80.58,84 +26059,STANDARD,0,Triadelphia,,,WV,"Ohio County",America/New_York,304,NA,US,40.05,-80.62,2940 +26060,STANDARD,0,"Valley Grove",,,WV,"Ohio County",America/New_York,304,NA,US,40.09,-80.57,1550 +26062,STANDARD,0,Weirton,,,WV,"Hancock County",America/New_York,"304,681",NA,US,40.4,-80.56,18140 +26070,STANDARD,0,Wellsburg,,,WV,"Brooke County",America/New_York,304,NA,US,40.28,-80.6,7010 +26074,"PO BOX",0,"West Liberty",,,WV,"Ohio County",America/New_York,304,NA,US,40.16,-80.59,180 +26075,"PO BOX",0,"Windsor Heights","Windsor Hts",,WV,"Brooke County",America/New_York,304,NA,US,40.19,-80.67,367 +26101,STANDARD,0,Parkersburg,,,WV,"Wood County",America/New_York,"304,681",NA,US,39.26,-81.54,22180 +26102,"PO BOX",0,Parkersburg,,,WV,"Wood County",America/New_York,304,NA,US,39.26,-81.54,636 +26103,"PO BOX",0,Parkersburg,"Fort Neal",,WV,"Wood County",America/New_York,304,NA,US,39.26,-81.54,370 +26104,STANDARD,0,Parkersburg,"N Parkersburg, North Hills, North Parkersburg",,WV,"Wood County",America/New_York,"304,681",NA,US,39.28,-81.48,13400 +26105,STANDARD,0,Vienna,Parkersburg,,WV,"Wood County",America/New_York,"681,304",NA,US,39.32,-81.53,10630 +26106,UNIQUE,0,Parkersburg,,"Bureau Of Public Debt",WV,"Wood County",America/New_York,304,NA,US,39.26,-81.54,0 +26120,UNIQUE,0,"Mineral Wells","Coldwater Creek",,WV,"Wood County",America/New_York,304,NA,US,39.17,-81.53,0 +26121,UNIQUE,0,"Mineral Wells","Coldwater Creek",,WV,"Wood County",America/New_York,304,NA,US,39.17,-81.53,0 +26133,STANDARD,0,Belleville,,,WV,"Wood County",America/New_York,304,NA,US,39.12,-81.67,1220 +26134,STANDARD,0,Belmont,"Eureka, Willow Island",,WV,"Pleasants County",America/New_York,304,NA,US,39.37,-81.29,680 +26136,STANDARD,0,"Big Bend","Five Forks",,WV,"Calhoun County",America/New_York,304,NA,US,38.98,-81.13,390 +26137,STANDARD,0,"Big Springs","Nobe, Tanner",,WV,"Calhoun County",America/New_York,304,NA,US,38.97,-80.99,590 +26138,STANDARD,0,Brohard,,,WV,"Wirt County",America/New_York,304,NA,US,39.02,-81.19,141 +26141,STANDARD,0,Creston,Annamoriah,,WV,"Calhoun County",America/New_York,304,NA,US,38.93,-81.25,330 +26142,STANDARD,0,Davisville,,,WV,"Wood County",America/New_York,304,NA,US,39.21,-81.46,2230 +26143,STANDARD,0,Elizabeth,"Hughes River, Limestone Hill, Limestone Hl, Newark, Spring Valley, Standing Stone, Stndg Stone",,WV,"Wirt County",America/New_York,"304,681",NA,US,39.06,-81.39,3630 +26146,STANDARD,0,Friendly,"Bens Run",,WV,"Tyler County",America/New_York,304,NA,US,39.51,-81.06,940 +26147,STANDARD,0,Grantsville,,,WV,"Calhoun County",America/New_York,"304,681",NA,US,38.92,-81.09,1370 +26148,STANDARD,0,Macfarlan,,,WV,"Ritchie County",America/New_York,304,NA,US,39.07,-81.18,164 +26149,STANDARD,0,Middlebourne,Wick,,WV,"Tyler County",America/New_York,304,NA,US,39.49,-80.9,1900 +26150,STANDARD,0,"Mineral Wells",,,WV,"Wood County",America/New_York,304,NA,US,39.17,-81.53,5260 +26151,STANDARD,0,"Mount Zion",,,WV,"Calhoun County",America/New_York,304,NA,US,38.88,-81.17,320 +26152,STANDARD,0,Munday,,,WV,"Wirt County",America/New_York,304,NA,US,39.01,-81.2,54 +26155,STANDARD,0,"New Martinsville","N Martinsvlle",,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.66,-80.85,6940 +26159,STANDARD,0,"Paden City",,,WV,"Wetzel County",America/New_York,304,NA,US,39.6,-80.93,2200 +26160,STANDARD,0,Palestine,"Blue Goose, Lynncamp, Sanoma, Somervlle Frk, Sommerville Fork, Two Run",,WV,"Wirt County",America/New_York,304,NA,US,38.96,-81.42,760 +26161,STANDARD,0,Petroleum,,,WV,"Ritchie County",America/New_York,304,NA,US,39.18,-81.25,340 +26162,STANDARD,0,"Porters Falls",,,WV,"Wetzel County",America/New_York,304,NA,US,39.57,-80.76,101 +26164,STANDARD,0,Ravenswood,"Murraysville, Sherman",,WV,"Jackson County",America/New_York,304,NA,US,38.95,-81.76,6400 +26167,STANDARD,0,Reader,,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.57,-80.74,730 +26169,STANDARD,0,Rockport,,,WV,"Wood County",America/New_York,"304,681",NA,US,39.07,-81.57,660 +26170,STANDARD,0,"Saint Marys",,,WV,"Pleasants County",America/New_York,"304,681",NA,US,39.4,-81.19,4870 +26175,STANDARD,0,Sistersville,,,WV,"Tyler County",America/New_York,304,NA,US,39.55,-80.99,2550 +26178,STANDARD,0,Smithville,"Burnt House",,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.06,-81.06,420 +26180,STANDARD,0,Walker,Freeport,,WV,"Wood County",America/New_York,304,NA,US,39.18,-81.36,1840 +26181,STANDARD,0,Washington,"New England",,WV,"Wood County",America/New_York,304,NA,US,39.24,-81.67,5630 +26184,STANDARD,0,Waverly,,,WV,"Wood County",America/New_York,304,NA,US,39.3,-81.33,1930 +26187,STANDARD,0,Williamstown,,,WV,"Wood County",America/New_York,304,NA,US,39.4,-81.45,5530 +26201,STANDARD,0,Buckhannon,"Century, Tennerton",Hodgesville,WV,"Upshur County",America/New_York,304,NA,US,38.98,-80.22,15360 +26202,STANDARD,0,Fenwick,,,WV,"Nicholas County",America/New_York,304,NA,US,38.22,-80.64,440 +26203,STANDARD,0,Erbacon,,,WV,"Webster County",America/New_York,304,NA,US,38.54,-80.56,226 +26205,STANDARD,0,Craigsville,Cottle,,WV,"Nicholas County",America/New_York,304,NA,US,38.32,-80.64,2710 +26206,STANDARD,0,Cowen,Boggs,,WV,"Webster County",America/New_York,"304,681",NA,US,38.41,-80.55,1900 +26208,STANDARD,0,"Camden On Gauley","Camden On Gly, Gauley Mills",,WV,"Webster County",America/New_York,304,NA,US,38.36,-80.59,580 +26209,"PO BOX",0,Snowshoe,Slatyfork,,WV,"Pocahontas County",America/New_York,304,NA,US,38.4,-79.99,224 +26210,STANDARD,0,Adrian,,,WV,"Upshur County",America/New_York,304,NA,US,38.91,-80.3,187 +26215,STANDARD,0,Cleveland,"Rock Cave",,WV,"Webster County",America/New_York,304,NA,US,38.71,-80.37,93 +26217,STANDARD,0,Diana,,,WV,"Webster County",America/New_York,304,NA,US,38.58,-80.42,250 +26218,STANDARD,0,"French Creek",Alexander,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.25,2180 +26219,"PO BOX",0,Frenchton,,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.25,0 +26222,STANDARD,0,"Hacker Valley",Replete,,WV,"Webster County",America/New_York,"304,681",NA,US,38.67,-80.39,410 +26224,STANDARD,0,Helvetia,,,WV,"Randolph County",America/New_York,304,NA,US,38.72,-80.18,139 +26228,STANDARD,0,"Kanawha Head",,,WV,"Upshur County",America/New_York,304,NA,US,38.76,-80.37,52 +26229,"PO BOX",0,Lorentz,,,WV,"Upshur County",America/New_York,304,NA,US,38.99,-80.29,0 +26230,STANDARD,0,Pickens,,,WV,"Randolph County",America/New_York,304,NA,US,38.65,-80.19,94 +26234,STANDARD,0,"Rock Cave",,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.34,890 +26236,STANDARD,0,Selbyville,,,WV,"Upshur County",America/New_York,304,NA,US,38.74,-80.23,58 +26237,STANDARD,0,Tallmansville,,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.15,500 +26238,STANDARD,0,Volga,,,WV,"Barbour County",America/New_York,304,NA,US,39.11,-80.17,660 +26241,STANDARD,0,Elkins,,,WV,"Randolph County",America/New_York,"304,681",NA,US,38.92,-79.85,11440 +26250,STANDARD,0,Belington,,,WV,"Barbour County",America/New_York,304,NA,US,39.02,-79.93,4250 +26253,STANDARD,0,Beverly,,,WV,"Randolph County",America/New_York,304,NA,US,38.84,-79.87,2730 +26254,STANDARD,0,Bowden,Wymer,,WV,"Randolph County",America/New_York,304,NA,US,38.94,-79.63,270 +26257,STANDARD,0,Coalton,,,WV,"Randolph County",America/New_York,304,NA,US,38.9,-80,810 +26259,"PO BOX",0,Dailey,,,WV,"Randolph County",America/New_York,304,NA,US,38.8,-79.9,324 +26260,STANDARD,0,Davis,"Canaan Valley",,WV,"Tucker County",America/New_York,"681,304",NA,US,39.13,-79.46,1050 +26261,STANDARD,0,Richwood,,,WV,"Nicholas County",America/New_York,304,NA,US,38.22,-80.53,1510 +26263,STANDARD,0,Dryfork,,,WV,"Randolph County",America/New_York,304,NA,US,38.94,-79.43,360 +26264,STANDARD,0,Durbin,,,WV,"Pocahontas County",America/New_York,304,NA,US,38.54,-79.82,530 +26266,STANDARD,0,Upperglade,,,WV,"Webster County",America/New_York,304,NA,US,38.43,-80.5,230 +26267,STANDARD,0,Ellamore,,,WV,"Randolph County",America/New_York,304,NA,US,38.93,-80.08,440 +26268,STANDARD,0,Glady,,,WV,"Randolph County",America/New_York,304,NA,US,38.75,-79.74,29 +26269,STANDARD,0,Hambleton,,,WV,"Tucker County",America/New_York,681,NA,US,39.08,-79.64,820 +26270,STANDARD,0,Harman,,,WV,"Randolph County",America/New_York,"304,681",NA,US,38.92,-79.52,580 +26271,STANDARD,0,Hendricks,,,WV,"Tucker County",America/New_York,304,NA,US,39.03,-79.56,250 +26273,STANDARD,0,Huttonsville,,,WV,"Randolph County",America/New_York,304,NA,US,38.71,-79.97,730 +26275,"PO BOX",0,Junior,,,WV,"Barbour County",America/New_York,304,NA,US,38.97,-79.95,587 +26276,STANDARD,0,Kerens,,,WV,"Randolph County",America/New_York,304,NA,US,39.02,-79.75,380 +26278,STANDARD,0,Mabie,,,WV,"Randolph County",America/New_York,304,NA,US,38.83,-80.03,470 +26280,STANDARD,0,"Mill Creek",,,WV,"Randolph County",America/New_York,681,NA,US,38.73,-79.97,1530 +26282,STANDARD,0,Monterville,,,WV,"Randolph County",America/New_York,304,NA,US,38.51,-80.16,89 +26283,STANDARD,0,Montrose,,,WV,"Randolph County",America/New_York,304,NA,US,39.06,-79.81,1340 +26285,STANDARD,0,Norton,,,WV,"Randolph County",America/New_York,304,NA,US,38.91,-79.94,270 +26287,STANDARD,0,Parsons,"Saint George",,WV,"Tucker County",America/New_York,"304,681",NA,US,39.09,-79.67,2600 +26288,STANDARD,0,"Webster Springs","Curtin, Parcoal, Webster Spgs",,WV,"Webster County",America/New_York,"304,681",NA,US,38.47,-80.41,2300 +26289,STANDARD,0,"Red Creek",,,WV,"Tucker County",America/New_York,304,NA,US,39,-79.5,70 +26291,STANDARD,0,Slatyfork,,,WV,"Pocahontas County",America/New_York,"304,681",NA,US,38.39,-80.15,380 +26292,STANDARD,0,Thomas,,,WV,"Tucker County",America/New_York,"304,681",NA,US,39.14,-79.49,640 +26293,STANDARD,0,"Valley Bend",,,WV,"Randolph County",America/New_York,304,NA,US,38.78,-79.94,570 +26294,STANDARD,0,"Valley Head",Mingo,,WV,"Randolph County",America/New_York,681,NA,US,38.52,-80.03,520 +26296,"PO BOX",0,Whitmer,Job,,WV,"Randolph County",America/New_York,304,NA,US,38.76,-79.6,132 +26298,STANDARD,0,Bergoo,,,WV,"Webster County",America/New_York,304,NA,US,38.48,-80.24,89 +26301,STANDARD,0,Clarksburg,"Country Club, Dawmont, Laurel Park, Laurel Valley, Nutter Fort, Stonewood",,WV,"Harrison County",America/New_York,"304,681",NA,US,39.28,-80.33,22690 +26302,"PO BOX",0,Clarksburg,,,WV,"Harrison County",America/New_York,304,NA,US,39.28,-80.33,1291 +26306,UNIQUE,0,Clarksburg,,Fbi,WV,"Harrison County",America/New_York,304,NA,US,39.28,-80.33,0 +26320,STANDARD,0,Alma,Wilbur,,WV,"Tyler County",America/New_York,304,NA,US,39.42,-80.82,610 +26321,STANDARD,0,"Alum Bridge",Vadis,,WV,"Lewis County",America/New_York,304,NA,US,39.04,-80.69,260 +26323,"PO BOX",0,Anmoore,,,WV,"Harrison County",America/New_York,304,NA,US,39.26,-80.29,726 +26325,STANDARD,0,Auburn,,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.09,-80.85,227 +26327,STANDARD,0,Berea,,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.13,-80.92,39 +26330,STANDARD,0,Bridgeport,"Brushy Fork, Lake Ridge, Maple Lake",,WV,"Harrison County",America/New_York,"304,681",NA,US,39.29,-80.25,14750 +26335,STANDARD,0,Burnsville,Gem,,WV,"Braxton County",America/New_York,304,NA,US,38.85,-80.65,950 +26337,STANDARD,0,Cairo,,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.2,-81.15,910 +26338,STANDARD,0,Camden,,,WV,"Lewis County",America/New_York,304,NA,US,39.09,-80.61,520 +26339,STANDARD,0,"Center Point",,,WV,"Doddridge County",America/New_York,304,NA,US,39.42,-80.62,142 +26342,STANDARD,0,"Coxs Mills",,,WV,"Gilmer County",America/New_York,"304,681",NA,US,39.03,-80.85,390 +26343,STANDARD,0,Crawford,,,WV,"Lewis County",America/New_York,304,NA,US,38.83,-80.4,420 +26346,STANDARD,0,Ellenboro,Highland,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.29,-81.06,740 +26347,STANDARD,0,Flemington,"Astor, Brownton, Wendel",,WV,"Taylor County",America/New_York,304,NA,US,39.26,-80.12,1870 +26348,STANDARD,0,Folsom,,,WV,"Wetzel County",America/New_York,304,NA,US,39.46,-80.52,220 +26349,"PO BOX",0,Galloway,,,WV,"Barbour County",America/New_York,304,NA,US,39.24,-80.13,130 +26351,STANDARD,0,Glenville,"Baldwin, Gilmer",,WV,"Gilmer County",America/New_York,304,NA,US,38.93,-80.83,2160 +26354,STANDARD,0,Grafton,"Belgium, Harmony Grove, Haymond, White Day",,WV,"Taylor County",America/New_York,304,NA,US,39.34,-80.01,8550 +26361,"PO BOX",0,Gypsy,,,WV,"Harrison County",America/New_York,304,NA,US,39.37,-80.32,373 +26362,STANDARD,0,Harrisville,"Hazelgreen, Mahone, Newberne",,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.21,-81.04,2450 +26366,"PO BOX",0,Haywood,,,WV,"Harrison County",America/New_York,304,NA,US,39.38,-80.33,150 +26369,"PO BOX",0,Hepzibah,,,WV,"Harrison County",America/New_York,304,NA,US,39.33,-80.33,527 +26372,STANDARD,0,Horner,,,WV,"Lewis County",America/New_York,304,NA,US,38.95,-80.36,650 +26374,STANDARD,0,Independence,,,WV,"Preston County",America/New_York,304,NA,US,39.44,-79.88,1230 +26376,STANDARD,0,Ireland,Wildcat,,WV,"Lewis County",America/New_York,304,NA,US,38.75,-80.47,340 +26377,STANDARD,0,Jacksonburg,"Alvy, Lima",,WV,"Wetzel County",America/New_York,304,NA,US,39.53,-80.65,490 +26378,STANDARD,0,"Jane Lew",Kincheloe,,WV,"Lewis County",America/New_York,304,NA,US,39.1,-80.4,3790 +26384,STANDARD,0,Linn,,,WV,"Gilmer County",America/New_York,304,NA,US,38.96,-80.71,330 +26385,STANDARD,0,"Lost Creek",Mcwhorter,,WV,"Harrison County",America/New_York,304,NA,US,39.15,-80.35,3240 +26386,STANDARD,0,Lumberport,Dola,,WV,"Harrison County",America/New_York,304,NA,US,39.37,-80.34,2010 +26404,STANDARD,0,Meadowbrook,,,WV,"Harrison County",America/New_York,304,NA,US,39.34,-80.31,320 +26405,STANDARD,0,Moatsville,Kasson,,WV,"Barbour County",America/New_York,304,NA,US,39.22,-79.9,1000 +26408,STANDARD,0,"Mount Clare",Craigmoore,,WV,"Harrison County",America/New_York,304,NA,US,39.2,-80.31,2540 +26410,STANDARD,0,Newburg,,,WV,"Preston County",America/New_York,304,NA,US,39.4,-79.82,790 +26411,STANDARD,0,"New Milton",,,WV,"Doddridge County",America/New_York,304,NA,US,39.17,-80.71,530 +26412,STANDARD,0,Orlando,,,WV,"Lewis County",America/New_York,304,NA,US,38.87,-80.53,380 +26415,STANDARD,0,Pennsboro,"Greenwood, Mountain, Toll Gate",,WV,"Ritchie County",America/New_York,304,NA,US,39.28,-80.97,2600 +26416,STANDARD,0,Philippi,,,WV,"Barbour County",America/New_York,304,NA,US,39.15,-80.04,5590 +26419,STANDARD,0,"Pine Grove",Hastings,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.56,-80.68,840 +26421,STANDARD,0,Pullman,,,WV,"Ritchie County",America/New_York,304,NA,US,39.18,-80.94,220 +26422,"PO BOX",0,Reynoldsville,,,WV,"Harrison County",America/New_York,304,NA,US,39.29,-80.44,377 +26424,"PO BOX",0,Rosemont,,,WV,"Taylor County",America/New_York,304,NA,US,39.27,-80.17,282 +26425,STANDARD,0,Rowlesburg,Manheim,,WV,"Preston County",America/New_York,304,NA,US,39.28,-79.76,770 +26426,STANDARD,0,Salem,"Bristol, Industrial, Wolf Summit",,WV,"Harrison County",America/New_York,"304,681",NA,US,39.28,-80.56,5400 +26430,STANDARD,0,"Sand Fork","Stouts Mills",,WV,"Gilmer County",America/New_York,304,NA,US,38.87,-80.76,360 +26431,STANDARD,0,Shinnston,"Adamsville, Francis Mine, Owings, Peora, Pine Bluff, Saltwell",,WV,"Harrison County",America/New_York,304,NA,US,39.39,-80.29,5110 +26434,"PO BOX",0,Shirley,,,WV,"Tyler County",America/New_York,304,NA,US,39.4,-80.78,67 +26435,"PO BOX",0,Simpson,,,WV,"Taylor County",America/New_York,304,NA,US,39.27,-80.09,203 +26436,"PO BOX",0,Smithburg,,,WV,"Doddridge County",America/New_York,304,NA,US,39.3,-80.72,162 +26437,STANDARD,0,Smithfield,,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.53,-80.51,340 +26438,"PO BOX",0,Spelter,,,WV,"Harrison County",America/New_York,304,NA,US,39.35,-80.32,295 +26440,STANDARD,0,Thornton,,,WV,"Taylor County",America/New_York,304,NA,US,39.34,-79.93,1040 +26443,STANDARD,0,Troy,,,WV,"Gilmer County",America/New_York,304,NA,US,39.08,-80.75,197 +26444,STANDARD,0,Tunnelton,,,WV,"Preston County",America/New_York,304,NA,US,39.39,-79.74,2550 +26447,STANDARD,0,Walkersville,Roanoke,,WV,"Lewis County",America/New_York,"304,681",NA,US,38.91,-80.48,960 +26448,STANDARD,0,Wallace,,,WV,"Harrison County",America/New_York,304,NA,US,39.4,-80.48,960 +26451,STANDARD,0,"West Milford",,,WV,"Harrison County",America/New_York,304,NA,US,39.2,-80.4,630 +26452,STANDARD,0,Weston,"Valley Chapel",,WV,"Lewis County",America/New_York,"304,681",NA,US,39.04,-80.46,7940 +26456,STANDARD,0,"West Union",Blandville,,WV,"Doddridge County",America/New_York,304,NA,US,39.29,-80.77,2740 +26461,STANDARD,1,Wilsonburg,Clarksburg,,WV,"Harrison County",America/New_York,304,NA,US,39.29,-80.39,0 +26463,"PO BOX",0,Wyatt,,,WV,"Harrison County",America/New_York,304,NA,US,39.43,-80.39,152 +26501,STANDARD,0,Morgantown,Westover,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.63,-80.04,14910 +26502,"PO BOX",0,Morgantown,Westover,,WV,"Monongalia County",America/New_York,304,NA,US,39.63,-79.94,229 +26504,"PO BOX",0,Morgantown,"Star City",,WV,"Monongalia County",America/New_York,304,NA,US,39.63,-79.94,337 +26505,STANDARD,0,Morgantown,"Booth, Everettville, Star City",Sabraton,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.63,-79.94,18700 +26506,STANDARD,0,Morgantown,,,WV,"Monongalia County",America/New_York,"681,304",NA,US,39.63,-79.94,28 +26507,"PO BOX",0,Morgantown,,"Cheat Lake",WV,"Monongalia County",America/New_York,304,NA,US,39.63,-79.94,704 +26508,STANDARD,0,Morgantown,"Little Falls","Cheat Lake, Sabraton",WV,"Monongalia County",America/New_York,"304,681",NA,US,39.6,-79.9,30840 +26519,STANDARD,0,Albright,,,WV,"Preston County",America/New_York,"304,681",NA,US,39.49,-79.63,1450 +26520,"PO BOX",0,Arthurdale,,,WV,"Preston County",America/New_York,304,NA,US,39.49,-79.82,812 +26521,STANDARD,0,Blacksville,,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.71,-80.23,420 +26524,STANDARD,0,Bretz,,,WV,"Preston County",America/New_York,304,NA,US,39.55,-79.81,129 +26525,STANDARD,0,"Bruceton Mills","Brandonville, Bruceton Mls, Cuzzart, Hazelton",,WV,"Preston County",America/New_York,"304,681",NA,US,39.65,-79.64,4630 +26527,"PO BOX",0,Cassville,,,WV,"Monongalia County",America/New_York,304,NA,US,39.66,-80.05,193 +26531,"PO BOX",0,Dellslow,,,WV,"Monongalia County",America/New_York,304,NA,US,39.6,-79.89,1099 +26534,"PO BOX",0,Granville,,,WV,"Monongalia County",America/New_York,304,NA,US,39.64,-79.99,938 +26537,STANDARD,0,Kingwood,,,WV,"Preston County",America/New_York,304,NA,US,39.47,-79.68,4850 +26541,STANDARD,0,Maidsville,Core,,WV,"Monongalia County",America/New_York,"681,304",NA,US,39.7,-79.99,3060 +26542,STANDARD,0,Masontown,Cascade,,WV,"Preston County",America/New_York,681,NA,US,39.55,-79.8,2110 +26543,STANDARD,0,Osage,,,WV,"Monongalia County",America/New_York,304,NA,US,39.66,-80,154 +26544,"PO BOX",0,Pentress,,,WV,"Monongalia County",America/New_York,304,NA,US,39.69,-80.18,247 +26546,STANDARD,0,Pursglove,,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.7,-80.06,500 +26547,STANDARD,0,Reedsville,,,WV,"Preston County",America/New_York,304,NA,US,39.51,-79.8,2480 +26554,STANDARD,0,Fairmont,"Jordan, Monongah, Pleasant Valley, Pleasant Vly, White Hall",Bellview,WV,"Marion County",America/New_York,"304,681",NA,US,39.48,-80.14,33980 +26555,"PO BOX",0,Fairmont,"Monongah, Whitehall","Pleasant Valley",WV,"Marion County",America/New_York,304,NA,US,39.48,-80.14,1076 +26559,"PO BOX",0,Barrackville,,,WV,"Marion County",America/New_York,304,NA,US,39.5,-80.17,1341 +26560,STANDARD,0,Baxter,,,WV,"Marion County",America/New_York,304,NA,US,39.54,-80.15,129 +26561,STANDARD,0,"Big Run",,,WV,"Wetzel County",America/New_York,304,NA,US,39.59,-80.57,0 +26562,STANDARD,0,Burton,Coburn,,WV,"Wetzel County",America/New_York,304,NA,US,39.66,-80.39,520 +26563,"PO BOX",0,Carolina,,,WV,"Marion County",America/New_York,304,NA,US,39.48,-80.27,340 +26566,"PO BOX",0,Colfax,,,WV,"Marion County",America/New_York,304,NA,US,39.43,-80.12,96 +26568,STANDARD,0,Enterprise,,,WV,"Harrison County",America/New_York,304,NA,US,39.42,-80.28,430 +26570,STANDARD,0,Fairview,,,WV,"Monongalia County",America/New_York,304,NA,US,39.59,-80.24,2770 +26571,STANDARD,0,Farmington,,,WV,"Marion County",America/New_York,304,NA,US,39.51,-80.25,1750 +26572,"PO BOX",0,"Four States",,,WV,"Marion County",America/New_York,304,NA,US,39.49,-80.31,183 +26574,"PO BOX",0,"Grant Town",,,WV,"Marion County",America/New_York,304,NA,US,39.59,-80.19,423 +26575,STANDARD,0,Hundred,,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.68,-80.45,640 +26576,"PO BOX",0,Idamay,,,WV,"Marion County",America/New_York,304,NA,US,39.49,-80.26,437 +26578,"PO BOX",0,Kingmont,,,WV,"Marion County",America/New_York,304,NA,US,39.45,-80.15,259 +26581,STANDARD,0,Littleton,"Knob Fork, Wileyville",,WV,"Wetzel County",America/New_York,304,NA,US,39.69,-80.51,730 +26582,STANDARD,0,Mannington,,,WV,"Marion County",America/New_York,304,NA,US,39.52,-80.34,4030 +26585,STANDARD,0,Metz,,,WV,"Marion County",America/New_York,304,NA,US,39.61,-80.43,390 +26586,STANDARD,0,"Montana Mines",,,WV,"Marion County",America/New_York,304,NA,US,39.52,-80.1,155 +26587,STANDARD,0,Rachel,,,WV,"Marion County",America/New_York,304,NA,US,39.52,-80.29,280 +26588,STANDARD,0,Rivesville,,,WV,"Marion County",America/New_York,304,NA,US,39.53,-80.12,2550 +26590,STANDARD,0,Wana,Wadestown,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.7,-80.31,610 +26591,STANDARD,0,Worthington,,,WV,"Marion County",America/New_York,304,NA,US,39.45,-80.26,1240 +26601,STANDARD,0,Sutton,"Centralia, Herold, Newville",,WV,"Braxton County",America/New_York,304,NA,US,38.66,-80.71,3190 +26610,STANDARD,0,"Birch River",,,WV,"Nicholas County",America/New_York,"304,681",NA,US,38.49,-80.75,860 +26611,STANDARD,0,Cedarville,Flower,,WV,"Gilmer County",America/New_York,304,NA,US,38.84,-80.84,239 +26615,STANDARD,0,Copen,,,WV,"Braxton County",America/New_York,304,NA,US,38.84,-80.72,101 +26617,STANDARD,0,Dille,,,WV,"Clay County",America/New_York,"304,681",NA,US,38.5,-80.83,171 +26619,STANDARD,0,Exchange,Riffle,,WV,"Braxton County",America/New_York,304,NA,US,38.79,-80.76,440 +26621,STANDARD,0,Flatwoods,Corley,,WV,"Braxton County",America/New_York,304,NA,US,38.72,-80.65,650 +26623,STANDARD,0,Frametown,"Clem, Glendon, Wilsie",,WV,"Braxton County",America/New_York,304,NA,US,38.62,-80.88,1040 +26624,STANDARD,0,Gassaway,Chapel,,WV,"Braxton County",America/New_York,304,NA,US,38.67,-80.77,2070 +26627,STANDARD,0,Heaters,,,WV,"Braxton County",America/New_York,304,NA,US,38.75,-80.59,360 +26629,STANDARD,0,"Little Birch",Tesla,,WV,"Braxton County",America/New_York,304,NA,US,38.57,-80.7,330 +26631,STANDARD,0,Napier,"Falls Mill",,WV,"Braxton County",America/New_York,304,NA,US,38.77,-80.57,170 +26636,STANDARD,0,Rosedale,"Nicut, Perkins",,WV,"Gilmer County",America/New_York,304,NA,US,38.78,-80.89,390 +26638,STANDARD,0,Shock,,,WV,"Gilmer County",America/New_York,304,NA,US,38.76,-80.99,133 +26651,STANDARD,0,Summersville,,,WV,"Nicholas County",America/New_York,"304,681",NA,US,38.28,-80.84,7190 +26656,STANDARD,0,Belva,,,WV,"Nicholas County",America/New_York,304,NA,US,38.28,-81.16,290 +26660,STANDARD,0,Calvin,,,WV,"Nicholas County",America/New_York,304,NA,US,38.36,-80.7,280 +26662,STANDARD,0,Canvas,,,WV,"Nicholas County",America/New_York,304,NA,US,38.26,-80.73,810 +26667,"PO BOX",0,Drennen,,,WV,"Nicholas County",America/New_York,304,NA,US,38.24,-81.01,184 +26671,"PO BOX",0,Gilboa,,,WV,"Nicholas County",America/New_York,304,NA,US,38.29,-80.96,219 +26675,"PO BOX",0,"Keslers Cross Lanes","Kesler Cr Lns",Poe,WV,"Nicholas County",America/New_York,304,NA,US,38.24,-80.94,103 +26676,STANDARD,0,Leivasy,,,WV,"Nicholas County",America/New_York,304,NA,US,38.16,-80.65,330 +26678,STANDARD,0,"Mount Lookout",,,WV,"Nicholas County",America/New_York,304,NA,US,38.17,-80.9,1010 +26679,STANDARD,0,"Mount Nebo",Runa,,WV,"Nicholas County",America/New_York,304,NA,US,38.19,-80.8,1520 +26680,STANDARD,0,Nallen,Russelville,,WV,"Fayette County",America/New_York,304,NA,US,38.1,-80.88,270 +26681,STANDARD,0,Nettie,,,WV,"Nicholas County",America/New_York,304,NA,US,38.23,-80.73,1310 +26684,STANDARD,0,Pool,,,WV,"Nicholas County",America/New_York,304,NA,US,38.16,-80.85,85 +26690,STANDARD,0,Swiss,Jodie,,WV,"Fayette County",America/New_York,304,NA,US,38.18,-81.09,290 +26691,STANDARD,0,Tioga,,,WV,"Nicholas County",America/New_York,304,NA,US,38.39,-80.67,310 +26704,STANDARD,0,Augusta,,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.3,-78.59,4310 +26705,STANDARD,0,Aurora,Amboy,,WV,"Preston County",America/New_York,304,NA,US,39.29,-79.56,900 +26707,"PO BOX",0,Bayard,Wilson,,WV,"Grant County",America/New_York,304,NA,US,39.26,-79.36,282 +26710,STANDARD,0,Burlington,Medley,,WV,"Mineral County",America/New_York,"304,681",NA,US,39.36,-78.91,1680 +26711,STANDARD,0,"Capon Bridge",,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.28,-78.47,2290 +26714,STANDARD,0,Delray,,,WV,"Hampshire County",America/New_York,304,NA,US,39.19,-78.6,310 +26716,STANDARD,0,Eglon,"Horse Shoe Rn, Horse Shoe Run",,WV,"Preston County",America/New_York,"304,681",NA,US,39.29,-79.51,540 +26717,STANDARD,0,"Elk Garden",,,WV,"Mineral County",America/New_York,304,NA,US,39.38,-79.15,830 +26719,STANDARD,0,"Fort Ashby",,,WV,"Mineral County",America/New_York,304,NA,US,39.49,-78.76,2550 +26720,STANDARD,0,Gormania,,,WV,"Grant County",America/New_York,304,NA,US,39.28,-79.33,184 +26722,STANDARD,0,"Green Spring",,,WV,"Hampshire County",America/New_York,304,NA,US,39.5,-78.64,480 +26726,STANDARD,0,Keyser,"Rocket Center, Scherr, Short Gap",,WV,"Mineral County",America/New_York,"304,681",NA,US,39.43,-78.98,10910 +26731,STANDARD,0,Lahmansville,,,WV,"Grant County",America/New_York,304,NA,US,39.17,-79.07,290 +26739,STANDARD,0,"Mount Storm",,,WV,"Grant County",America/New_York,304,NA,US,39.27,-79.24,680 +26743,STANDARD,0,"New Creek",,,WV,"Mineral County",America/New_York,304,NA,US,39.29,-79.08,1370 +26750,STANDARD,0,Piedmont,,,WV,"Mineral County",America/New_York,304,NA,US,39.48,-79.04,590 +26753,STANDARD,0,Ridgeley,"Carpendale, Patterson Creek, Patterson Crk",,WV,"Mineral County",America/New_York,304,NA,US,39.64,-78.77,5420 +26755,STANDARD,0,Rio,Kirby,,WV,"Hampshire County",America/New_York,304,NA,US,39.17,-78.72,560 +26757,STANDARD,0,Romney,"Three Chrs, Three Churches",,WV,"Hampshire County",America/New_York,304,NA,US,39.34,-78.75,4920 +26761,STANDARD,0,Shanks,,,WV,"Hampshire County",America/New_York,304,NA,US,39.26,-78.7,470 +26763,STANDARD,0,Springfield,,,WV,"Hampshire County",America/New_York,304,NA,US,39.45,-78.69,1390 +26764,STANDARD,0,"Terra Alta","Corinth, Hopemont",,WV,"Preston County",America/New_York,304,NA,US,39.44,-79.54,3400 +26767,STANDARD,0,"Wiley Ford",,,WV,"Mineral County",America/New_York,304,NA,US,39.62,-78.76,570 +26801,STANDARD,0,Baker,,,WV,"Hardy County",America/New_York,304,NA,US,39.04,-78.74,1110 +26802,STANDARD,0,Brandywine,"Fort Seybert","Ft Seybert",WV,"Pendleton County",America/New_York,304,NA,US,38.62,-79.24,920 +26804,STANDARD,0,Circleville,,,WV,"Pendleton County",America/New_York,304,NA,US,38.67,-79.49,510 +26807,STANDARD,0,Franklin,,,WV,"Pendleton County",America/New_York,304,NA,US,38.64,-79.33,2400 +26808,STANDARD,0,"High View",,,WV,"Hampshire County",America/New_York,304,NA,US,39.2,-78.45,710 +26810,STANDARD,0,"Lost City","Lost River",,WV,"Hardy County",America/New_York,304,NA,US,38.99,-78.76,260 +26812,STANDARD,0,Mathias,,,WV,"Hardy County",America/New_York,304,NA,US,38.87,-78.86,1340 +26814,STANDARD,0,Riverton,,,WV,"Pendleton County",America/New_York,304,NA,US,38.74,-79.43,340 +26815,STANDARD,0,"Sugar Grove",Moyers,,WV,"Pendleton County",America/New_York,304,NA,US,38.51,-79.32,540 +26817,STANDARD,0,Bloomery,,,WV,"Hampshire County",America/New_York,304,NA,US,39.38,-78.37,410 +26818,STANDARD,0,Fisher,,,WV,"Hardy County",America/New_York,304,NA,US,39.05,-79,740 +26823,"PO BOX",0,"Capon Springs",,,WV,"Hampshire County",America/New_York,304,NA,US,39.13,-78.48,101 +26833,STANDARD,0,Maysville,,,WV,"Grant County",America/New_York,"304,681",NA,US,39.11,-79.16,1910 +26836,STANDARD,0,Moorefield,Rig,,WV,"Hardy County",America/New_York,"304,681",NA,US,39.06,-78.96,5820 +26838,STANDARD,0,Milam,,,WV,"Hardy County",America/New_York,304,NA,US,38.81,-79.09,26 +26845,STANDARD,0,"Old Fields",,,WV,"Hardy County",America/New_York,304,NA,US,39.14,-78.95,730 +26847,STANDARD,0,Petersburg,"Arthur, Dorcas, Landes Sta, Landes Station",,WV,"Grant County",America/New_York,"304,681",NA,US,38.99,-79.12,5170 +26851,STANDARD,0,Wardensville,,,WV,"Hardy County",America/New_York,"304,681",NA,US,39.07,-78.59,1780 +26852,STANDARD,0,Purgitsville,Junction,,WV,"Hampshire County",America/New_York,304,NA,US,39.23,-78.92,710 +26855,STANDARD,0,Cabins,,,WV,"Grant County",America/New_York,304,NA,US,38.99,-79.2,630 +26865,STANDARD,0,"Yellow Spring",Lehew,,WV,"Hampshire County",America/New_York,304,NA,US,39.18,-78.49,400 +26866,STANDARD,0,"Upper Tract",,,WV,"Pendleton County",America/New_York,304,NA,US,38.79,-79.25,680 +26884,STANDARD,0,"Seneca Rocks",,,WV,"Pendleton County",America/New_York,304,NA,US,38.83,-79.37,520 +26886,"PO BOX",0,Onego,,,WV,"Pendleton County",America/New_York,304,NA,US,38.81,-79.47,110 +27006,STANDARD,0,Advance,"Bermuda Run","Bixby, Fork, Hillsdale, Redland",NC,"Davie County",America/New_York,336,NA,US,35.93,-80.4,13890 +27007,STANDARD,0,Ararat,,"Ash Hill",NC,"Surry County",America/New_York,336,NA,US,36.4,-80.56,1890 +27009,STANDARD,0,"Belews Creek",,"Belew Creek",NC,"Forsyth County",America/New_York,336,NA,US,36.25,-80.06,2600 +27010,"PO BOX",0,Bethania,,,NC,"Forsyth County",America/New_York,336,NA,US,36.14,-80.3,318 +27011,STANDARD,0,Boonville,,"Booneville, Longtown, Richmond Hill",NC,"Yadkin County",America/New_York,336,NA,US,36.23,-80.7,4550 +27012,STANDARD,0,Clemmons,,,NC,"Forsyth County",America/New_York,336,NA,US,36.02,-80.38,27600 +27013,STANDARD,0,Cleveland,Barber,"Amity, Cool Spring, Mount Vernon",NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.73,-80.67,5430 +27014,"PO BOX",0,Cooleemee,,,NC,"Davie County",America/New_York,336,NA,US,35.81,-80.55,1437 +27016,STANDARD,0,Danbury,,Hartman,NC,"Stokes County",America/New_York,336,NA,US,36.45,-80.22,1350 +27017,STANDARD,0,Dobson,,"Copeland, Devotion, Fairview Cross Roads, Rockford, Stony Knoll",NC,"Surry County",America/New_York,336,NA,US,36.39,-80.72,7330 +27018,STANDARD,0,"East Bend",,,NC,"Yadkin County",America/New_York,336,NA,US,36.21,-80.5,6590 +27019,STANDARD,0,Germanton,,,NC,"Stokes County",America/New_York,336,NA,US,36.26,-80.23,3320 +27020,STANDARD,0,Hamptonville,,"Brooks Cross Roads, Buck Shoals, Cycle, Eagle, Marler, Winders Cross Roads",NC,"Yadkin County",America/New_York,336,NA,US,36.11,-80.81,5230 +27021,STANDARD,0,King,,,NC,"Stokes County",America/New_York,336,NA,US,36.27,-80.35,15050 +27022,STANDARD,0,Lawsonville,,"Harts Store",NC,"Stokes County",America/New_York,336,NA,US,36.51,-80.22,1210 +27023,STANDARD,0,Lewisville,,"West Bend",NC,"Forsyth County",America/New_York,336,NA,US,36.09,-80.4,12630 +27024,STANDARD,0,Lowgap,,,NC,"Surry County",America/New_York,336,NA,US,36.52,-80.84,2020 +27025,STANDARD,0,Madison,,Ellisboro,NC,"Rockingham County",America/New_York,336,NA,US,36.38,-79.97,9120 +27027,STANDARD,0,Mayodan,,Ayersville,NC,"Rockingham County",America/New_York,336,NA,US,36.41,-79.97,3070 +27028,STANDARD,0,Mocksville,,Farmington,NC,"Davie County",America/New_York,336,NA,US,35.89,-80.55,22870 +27030,STANDARD,0,"Mount Airy",,"Mt Airy, Round Peak, White Sulphur Springs",NC,"Surry County",America/New_York,336,NA,US,36.5,-80.61,29530 +27031,"PO BOX",0,"Mount Airy",,"Mt Airy",NC,"Surry County",America/New_York,336,NA,US,36.44,-80.63,186 +27040,STANDARD,0,Pfafftown,,"Dosier, Seward, Vienna",NC,"Forsyth County",America/New_York,336,NA,US,36.17,-80.39,11400 +27041,STANDARD,0,"Pilot Mountain","Pilot Mtn","Pilot Mnt, Pilot Mt, Pilot Mts",NC,"Surry County",America/New_York,336,NA,US,36.38,-80.47,6660 +27042,STANDARD,0,"Pine Hall",,,NC,"Stokes County",America/New_York,336,NA,US,36.35,-80.06,600 +27043,STANDARD,0,Pinnacle,,"Dalton, Perch, Shoal",NC,"Stokes County",America/New_York,336,NA,US,36.33,-80.4,5340 +27045,STANDARD,0,"Rural Hall",,Stanleyville,NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,8730 +27046,STANDARD,0,"Sandy Ridge",,,NC,"Stokes County",America/New_York,336,NA,US,36.5,-80.11,1620 +27047,STANDARD,0,Siloam,,,NC,"Surry County",America/New_York,336,NA,US,36.32,-80.57,950 +27048,STANDARD,0,Stoneville,,"Matrimony, Price",NC,"Rockingham County",America/New_York,336,NA,US,36.46,-79.9,6710 +27049,"PO BOX",0,Toast,,,NC,"Surry County",America/New_York,336,NA,US,36.49,-80.63,848 +27050,STANDARD,0,Tobaccoville,,,NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.39,3470 +27051,STANDARD,0,Walkertown,,,NC,"Forsyth County",America/New_York,336,NA,US,36.17,-80.15,7130 +27052,STANDARD,0,"Walnut Cove",,"Brook Cove, Fulp, Meadow",NC,"Stokes County",America/New_York,336,NA,US,36.29,-80.13,8370 +27053,STANDARD,0,Westfield,,"W Field",NC,"Stokes County",America/New_York,336,NA,US,36.47,-80.35,2520 +27054,STANDARD,0,Woodleaf,,,NC,"Rowan County",America/New_York,336,NA,US,35.76,-80.59,2380 +27055,STANDARD,0,Yadkinville,,"Branon, Center, Courtney, Footsville, Lone Hickory, Shacktown",NC,"Yadkin County",America/New_York,336,NA,US,36.13,-80.65,12030 +27094,UNIQUE,0,"Rural Hall",,"Princess House",NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,0 +27098,UNIQUE,0,"Rural Hall",,"Hanes Brands Inc",NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,0 +27099,UNIQUE,0,"Rural Hall",,"Hanes Brands Inc",NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,0 +27101,STANDARD,0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,14790 +27102,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,411 +27103,STANDARD,0,"Winston Salem",,"Ardmore, Hanes, Muddy Creek",NC,"Forsyth County",America/New_York,336,NA,US,36.06,-80.32,30740 +27104,STANDARD,0,"Winston Salem",,"Peace Haven Estates",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.32,26910 +27105,STANDARD,0,"Winston Salem",,"North, Sedges Garden",NC,"Forsyth County",America/New_York,336,NA,US,36.16,-80.23,32260 +27106,STANDARD,0,"Winston Salem",,"Mount Tabor, Oldtown",NC,"Forsyth County",America/New_York,336,NA,US,36.14,-80.32,40470 +27107,STANDARD,0,"Winston Salem",,"Eller, Gumtree, Waughtown",NC,"Forsyth County",America/New_York,336,NA,US,36.01,-80.18,42250 +27108,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,19 +27109,STANDARD,0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.13,-80.28,73 +27110,UNIQUE,0,"Winston Salem",,"Ws State Univ",NC,"Forsyth County",America/New_York,336,NA,US,36.09,-80.22,59 +27111,UNIQUE,0,"Winston Salem",,"Wachovia Bldg Vim",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27113,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,317 +27114,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,420 +27115,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,383 +27116,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,496 +27117,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,393 +27120,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,282 +27127,STANDARD,0,"Winston Salem",,Waughtown,NC,"Forsyth County",America/New_York,336,NA,US,36.02,-80.28,33890 +27130,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,210 +27150,UNIQUE,0,"Winston Salem",,"Wachovia Bank",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,102 +27151,UNIQUE,1,Winston-salem,"Winston Salem","Wachovia Master Chrg",NC,"Forsyth County",America/New_York,336,NA,US,36.11,-80.24,0 +27152,UNIQUE,0,"Winston Salem",,"Integon Corp",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27155,UNIQUE,0,"Winston Salem",,"Veterans Affairs",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27156,UNIQUE,1,Winston-salem,"Winston Salem","Piedmont Aviation",NC,"Forsyth County",America/New_York,336,NA,US,36.14,-80.22,0 +27157,UNIQUE,0,"Winston Salem",,"Bowman Gray School Of Med, Nc Baptist Hospital",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,47 +27198,UNIQUE,0,"Winston Salem",,"Winston Salem Courtesy Reply",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27199,UNIQUE,0,"Winston Salem",,"Winston Salem Brm",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27201,"PO BOX",0,Alamance,,,NC,"Alamance County",America/New_York,,NA,US,36.03,-79.48,439 +27202,"PO BOX",0,Altamahaw,,,NC,"Alamance County",America/New_York,,NA,US,36.17,-79.5,248 +27203,STANDARD,0,Asheboro,,,NC,"Randolph County",America/New_York,336,NA,US,35.71,-79.81,17450 +27204,"PO BOX",0,Asheboro,,,NC,"Randolph County",America/New_York,336,NA,US,35.71,-79.81,2340 +27205,STANDARD,0,Asheboro,,,NC,"Randolph County",America/New_York,336,NA,US,35.65,-79.84,28530 +27207,STANDARD,0,"Bear Creek",,"Harpers Crossroads",NC,"Chatham County",America/New_York,919,NA,US,35.6,-79.36,3090 +27208,STANDARD,0,Bennett,,,NC,"Chatham County",America/New_York,"910,336",NA,US,35.57,-79.52,1390 +27209,STANDARD,0,Biscoe,,,NC,"Montgomery County",America/New_York,910,NA,US,35.36,-79.78,3850 +27212,STANDARD,0,Blanch,,Blanche,NC,"Caswell County",America/New_York,336,NA,US,36.51,-79.28,1170 +27213,"PO BOX",0,Bonlee,,,NC,"Chatham County",America/New_York,,NA,US,35.61,-79.44,233 +27214,STANDARD,0,"Browns Summit",,"Brightwood, Brown Summit, Busick, Monticello, Osceola, Rudd",NC,"Guilford County",America/New_York,336,NA,US,36.21,-79.67,11080 +27215,STANDARD,0,Burlington,"Glen Raven",Burl,NC,"Alamance County",America/New_York,336,NA,US,36.08,-79.44,37790 +27216,"PO BOX",0,Burlington,,,NC,"Alamance County",America/New_York,336,NA,US,36.08,-79.44,1247 +27217,STANDARD,0,Burlington,"Green Level",,NC,"Alamance County",America/New_York,336,NA,US,36.19,-79.38,32500 +27220,UNIQUE,1,Burlington,,"Kayser Roth",NC,"Alamance County",America/New_York,336,NA,US,36.02,-79.48,0 +27228,"PO BOX",0,Bynum,Pittsboro,,NC,"Chatham County",America/New_York,,NA,US,35.77,-79.15,106 +27229,STANDARD,0,Candor,,Canden,NC,"Montgomery County",America/New_York,910,NA,US,35.29,-79.74,3630 +27230,"PO BOX",0,"Cedar Falls",,,NC,"Randolph County",America/New_York,336,NA,US,35.8,-79.72,247 +27231,STANDARD,0,"Cedar Grove",,,NC,"Orange County",America/New_York,919,NA,US,36.2,-79.17,1730 +27233,STANDARD,0,Climax,,,NC,"Randolph County",America/New_York,,NA,US,35.89,-79.71,2980 +27235,STANDARD,0,Colfax,,,NC,"Guilford County",America/New_York,336,NA,US,36.09,-80.01,4600 +27237,"PO BOX",0,Cumnock,Sanford,,NC,"Lee County",America/New_York,919,NA,US,35.54,-79.23,0 +27239,STANDARD,0,Denton,,"Handy, Healing Springs, High Rock, Jacksons Creek, New Hope Academy, Newsom",NC,"Davidson County",America/New_York,336,NA,US,35.63,-80.11,7410 +27242,STANDARD,0,"Eagle Springs",,,NC,"Moore County",America/New_York,,NA,US,35.3,-79.65,1550 +27243,STANDARD,0,Efland,,Buckhorn,NC,"Orange County",America/New_York,919,NA,US,36.06,-79.17,4290 +27244,STANDARD,0,Elon,"Elon College","Ossipee, Stonycreek",NC,"Alamance County",America/New_York,336,NA,US,36.09,-79.51,9970 +27247,"PO BOX",0,Ether,,,NC,"Montgomery County",America/New_York,910,NA,US,35.44,-79.78,218 +27248,STANDARD,0,Franklinville,,"Grays Chapel, Millboro",NC,"Randolph County",America/New_York,336,NA,US,35.74,-79.69,3800 +27249,STANDARD,0,Gibsonville,,,NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.54,11450 +27252,STANDARD,0,Goldston,,,NC,"Chatham County",America/New_York,919,NA,US,35.59,-79.32,1440 +27253,STANDARD,0,Graham,,,NC,"Alamance County",America/New_York,336,NA,US,36.06,-79.39,27030 +27256,"PO BOX",0,Gulf,,,NC,"Chatham County",America/New_York,,NA,US,35.57,-79.28,196 +27258,STANDARD,0,"Haw River",,,NC,"Alamance County",America/New_York,336,NA,US,36.09,-79.36,6380 +27259,"PO BOX",0,Highfalls,,,NC,"Chatham County",America/New_York,,NA,US,35.48,-79.53,158 +27260,STANDARD,0,"High Point",,"Deep River, Freemans Mills, Glenola, H P, High Pnt",NC,"Guilford County",America/New_York,336,NA,US,35.95,-79.99,19500 +27261,"PO BOX",0,"High Point",,,NC,"Guilford County",America/New_York,336,NA,US,35.98,-79.99,1220 +27262,STANDARD,0,"High Point",,Emerywood,NC,"Guilford County",America/New_York,336,NA,US,35.96,-80.04,19100 +27263,STANDARD,0,"High Point",Archdale,"Allen Jay",NC,"Randolph County",America/New_York,336,NA,US,35.91,-79.94,18650 +27264,"PO BOX",0,"High Point",,,NC,"Guilford County",America/New_York,336,NA,US,35.98,-79.99,141 +27265,STANDARD,0,"High Point",,,NC,"Guilford County",America/New_York,336,NA,US,35.98,-79.99,46780 +27268,UNIQUE,0,"High Point",,"High Point University",NC,"Guilford County",America/New_York,,NA,US,35.95,-80.01,0 +27278,STANDARD,0,Hillsborough,,"Hillsboro, West Hillsborough",NC,"Orange County",America/New_York,919,NA,US,36.07,-79.1,25920 +27281,STANDARD,0,"Jackson Springs","Foxfire Village, Foxfire Vlg, Jackson Spgs","Foxfire, Marcus, Wind Blow",NC,"Moore County",America/New_York,,NA,US,35.19,-79.64,2390 +27282,STANDARD,0,Jamestown,,,NC,"Guilford County",America/New_York,336,NA,US,35.99,-79.93,15080 +27283,STANDARD,0,Julian,,,NC,"Guilford County",America/New_York,336,NA,US,35.95,-79.63,2830 +27284,STANDARD,0,Kernersville,,"Guthrie, Matthewstown, Talleys Crossing, Union Cross",NC,"Forsyth County",America/New_York,336,NA,US,36.11,-80.07,50110 +27285,"PO BOX",0,Kernersville,,,NC,"Forsyth County",America/New_York,336,NA,US,36.11,-80.07,940 +27288,STANDARD,0,Eden,,"Boulevard, Draper, Leaksville, Meadow Summit, New Leaksville, Spray",NC,"Rockingham County",America/New_York,336,NA,US,36.5,-79.74,17850 +27289,"PO BOX",0,Eden,,,NC,"Rockingham County",America/New_York,336,NA,US,36.5,-79.74,1111 +27291,STANDARD,0,Leasburg,,"Frogsboro, Osmond",NC,"Caswell County",America/New_York,336,NA,US,36.4,-79.16,1260 +27292,STANDARD,0,Lexington,,"Arcadia, Arnold, Churchland, Cid, Cotton Grove, Enterprise, Feezor, Gordontown, Hannersville, Hedrick Grove, Holly Grove, Lex, Petersville, Reeds Cross Roads, Reedy Creek, Silver Valley, South Lexington, Tyro, Yadkin, Yadkin College",NC,"Davidson County",America/New_York,336,NA,US,35.8,-80.25,31840 +27293,"PO BOX",0,Lexington,,,NC,"Davidson County",America/New_York,336,NA,US,35.8,-80.25,1131 +27294,UNIQUE,0,Lexington,,"National Wholesale Co Inc",NC,"Davidson County",America/New_York,336,NA,US,35.8,-80.25,0 +27295,STANDARD,0,Lexington,,,NC,"Davidson County",America/New_York,336,NA,US,35.87,-80.31,33450 +27298,STANDARD,0,Liberty,,Kimesville,NC,"Randolph County",America/New_York,336,NA,US,35.85,-79.57,9270 +27299,STANDARD,0,Linwood,,,NC,"Davidson County",America/New_York,336,NA,US,35.75,-80.39,4480 +27301,STANDARD,0,"Mc Leansville",,Mcleansville,NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.66,9600 +27302,STANDARD,0,Mebane,,,NC,"Alamance County",America/New_York,919,NA,US,36.09,-79.27,29080 +27305,STANDARD,0,Milton,,Estelle,NC,"Caswell County",America/New_York,336,NA,US,36.53,-79.2,1210 +27306,STANDARD,0,"Mount Gilead",,Wadeville,NC,"Montgomery County",America/New_York,"704,910",NA,US,35.21,-80,5150 +27310,STANDARD,0,"Oak Ridge",,,NC,"Guilford County",America/New_York,336,NA,US,36.17,-79.98,8630 +27311,STANDARD,0,Pelham,,,NC,"Caswell County",America/New_York,336,NA,US,36.5,-79.46,2630 +27312,STANDARD,0,Pittsboro,"Fearrington, Fearrington Village",,NC,"Chatham County",America/New_York,919,NA,US,35.71,-79.17,19740 +27313,STANDARD,0,"Pleasant Garden","Pleasant Gdn","Pleasant Gdns",NC,"Guilford County",America/New_York,336,NA,US,35.96,-79.77,6220 +27314,STANDARD,0,"Prospect Hill",,,NC,"Caswell County",America/New_York,336,NA,US,36.25,-79.2,940 +27315,STANDARD,0,Providence,,,NC,"Caswell County",America/New_York,336,NA,US,36.5,-79.36,1620 +27316,STANDARD,0,Ramseur,Coleridge,"Parks Crossroads",NC,"Randolph County",America/New_York,336,NA,US,35.73,-79.65,5710 +27317,STANDARD,0,Randleman,,"Level Cross, New Salem",NC,"Randolph County",America/New_York,336,NA,US,35.81,-79.8,15080 +27320,STANDARD,0,Reidsville,,"Camp Springs, Cherrygrove, Harrison Cross Roads, Midway, Monroeton",NC,"Rockingham County",America/New_York,336,NA,US,36.34,-79.67,31210 +27321,UNIQUE,1,Reidsville,,"Burlington House",NC,"Rockingham County",America/New_York,336,NA,US,36.35,-79.66,0 +27322,UNIQUE,1,Reidsville,,"Chase Packaging Inc",NC,"Rockingham County",America/New_York,336,NA,US,36.35,-79.66,0 +27323,"PO BOX",0,Reidsville,,,NC,"Rockingham County",America/New_York,336,NA,US,36.34,-79.67,1300 +27325,STANDARD,0,Robbins,Glendon,,NC,"Moore County",America/New_York,910,NA,US,35.43,-79.58,5220 +27326,STANDARD,0,Ruffin,,"Allison, Casville, Oregon Hill, Powells Store, Quick",NC,"Rockingham County",America/New_York,336,NA,US,36.45,-79.55,3020 +27330,STANDARD,0,Sanford,"Buffalo Lake, Colon","Carbonton, Haw Branch, Jonesboro Heights, Osgood, Pine View, Shallowell, Swan Station, Tramway, White Hill",NC,"Lee County",America/New_York,919,NA,US,35.47,-79.18,33820 +27331,"PO BOX",0,Sanford,,,NC,"Lee County",America/New_York,919,NA,US,35.47,-79.18,3264 +27332,STANDARD,0,Sanford,,,NC,"Lee County",America/New_York,919,NA,US,35.36,-79.13,28200 +27340,"PO BOX",0,Saxapahaw,,,NC,"Alamance County",America/New_York,,NA,US,35.95,-79.32,314 +27341,STANDARD,0,Seagrove,,,NC,"Randolph County",America/New_York,"336,910",NA,US,35.54,-79.77,4480 +27342,"PO BOX",0,Sedalia,,,NC,"Guilford County",America/New_York,336,NA,US,36.14,-79.57,266 +27343,STANDARD,0,Semora,,,NC,"Person County",America/New_York,,NA,US,36.49,-79.14,1300 +27344,STANDARD,0,"Siler City",,"Silk Hope",NC,"Chatham County",America/New_York,919,NA,US,35.72,-79.46,15510 +27349,STANDARD,0,"Snow Camp",,"Rock Creek",NC,"Alamance County",America/New_York,336,NA,US,35.86,-79.41,5560 +27350,STANDARD,0,Sophia,,,NC,"Randolph County",America/New_York,336,NA,US,35.81,-79.89,5580 +27351,"PO BOX",0,Southmont,,,NC,"Davidson County",America/New_York,336,NA,US,35.81,-80.26,756 +27355,STANDARD,0,Staley,,"Soapstone Mountain",NC,"Randolph County",America/New_York,336,NA,US,35.79,-79.55,2240 +27356,STANDARD,0,Star,,,NC,"Montgomery County",America/New_York,910,NA,US,35.4,-79.78,2410 +27357,STANDARD,0,Stokesdale,,,NC,"Rockingham County",America/New_York,,NA,US,36.23,-79.98,8600 +27358,STANDARD,0,Summerfield,,,NC,"Guilford County",America/New_York,336,NA,US,36.2,-79.89,14390 +27359,"PO BOX",0,Swepsonville,,,NC,"Alamance County",America/New_York,,NA,US,36.02,-79.35,400 +27360,STANDARD,0,Thomasville,,"Erwin Heights",NC,"Davidson County",America/New_York,336,NA,US,35.88,-80.07,39500 +27361,"PO BOX",0,Thomasville,,,NC,"Davidson County",America/New_York,336,NA,US,35.88,-80.07,1915 +27370,STANDARD,0,Trinity,,,NC,"Randolph County",America/New_York,336,NA,US,35.88,-80.01,13440 +27371,STANDARD,0,Troy,,"Flint Hill, Lovejoy, Moratock, Okeewemee, Ophir, Queen, Uwharie",NC,"Montgomery County",America/New_York,910,NA,US,35.36,-79.89,5940 +27373,"PO BOX",0,Wallburg,,,NC,"Davidson County",America/New_York,336,NA,US,36.01,-80.14,306 +27374,"PO BOX",0,Welcome,,,NC,"Davidson County",America/New_York,336,NA,US,35.91,-80.25,1612 +27375,"PO BOX",0,Wentworth,,,NC,"Rockingham County",America/New_York,336,NA,US,36.4,-79.76,63 +27376,STANDARD,0,"West End","Seven Lakes",,NC,"Moore County",America/New_York,910,NA,US,35.24,-79.53,9130 +27377,STANDARD,0,Whitsett,,"Stoney Creek",NC,"Guilford County",America/New_York,336,NA,US,36.03,-79.59,9570 +27379,STANDARD,0,Yanceyville,,,NC,"Caswell County",America/New_York,336,NA,US,36.4,-79.34,3550 +27395,STANDARD,1,Greensboro,"Greensboro Bmc",,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.79,0 +27401,STANDARD,0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.77,12970 +27402,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,870 +27403,STANDARD,0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,13570 +27404,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,479 +27405,STANDARD,0,Greensboro,,"Hamtown, Mount Zion, Rankin, Summit, Tennessee Acres",NC,"Guilford County",America/New_York,336,NA,US,36.11,-79.74,40490 +27406,STANDARD,0,Greensboro,,"Forest Oaks, South Greensboro, Spring Valley, Vandalia",NC,"Guilford County",America/New_York,336,NA,US,36,-79.76,50590 +27407,STANDARD,0,Greensboro,,"Groomtown, Hilltop, Sedgefield",NC,"Guilford County",America/New_York,336,NA,US,36.01,-79.88,41910 +27408,STANDARD,0,Greensboro,,"Country Park Acres, Guilford Courthouse National, Plaza",NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.81,16310 +27409,STANDARD,0,Greensboro,,"Guilford, Guilford College",NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.94,14710 +27410,STANDARD,0,Greensboro,,"Friendship, Greensboro High Point Winsto, Guilford, Guilford College, Ridgefield",NC,"Guilford County",America/New_York,336,NA,US,36.12,-79.89,48960 +27411,UNIQUE,0,Greensboro,,"A&T State University",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,67 +27412,UNIQUE,0,Greensboro,,"Unc Greensboro",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27413,UNIQUE,0,Greensboro,,"Unc Greensboro",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,115 +27415,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,763 +27416,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,520 +27417,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,634 +27419,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,895 +27420,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,631 +27425,"PO BOX",0,Greensboro,,"A M F Greensboro, Amf G Boro, Amf Greensboro",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,151 +27427,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,73 +27429,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,307 +27435,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,92 +27438,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,387 +27455,STANDARD,0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.18,-79.81,27760 +27480,UNIQUE,1,Greensboro,,"Sears Roebuck",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.79,0 +27495,STANDARD,0,Greensboro,,"Greensboro Ndc",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27497,UNIQUE,0,Greensboro,,"Usps Hr Shared Svcs",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.95,0 +27498,UNIQUE,0,Greensboro,,"Greensboro Courtesy Reply, United States Postal Service",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27499,UNIQUE,0,Greensboro,,"Greensboro Brm",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27501,STANDARD,0,Angier,,,NC,"Harnett County",America/New_York,919,NA,US,35.51,-78.73,18560 +27502,STANDARD,0,Apex,,,NC,"Wake County",America/New_York,919,NA,US,35.72,-78.84,43450 +27503,STANDARD,0,Bahama,,,NC,"Durham County",America/New_York,919,NA,US,36.17,-78.88,3360 +27504,STANDARD,0,Benson,,,NC,"Johnston County",America/New_York,919,NA,US,35.37,-78.54,14280 +27505,STANDARD,0,Broadway,,,NC,"Harnett County",America/New_York,919,NA,US,35.45,-79.05,6210 +27506,"PO BOX",0,"Buies Creek",,,NC,"Harnett County",America/New_York,,NA,US,35.4,-78.74,1115 +27507,STANDARD,0,Bullock,,,NC,"Granville County",America/New_York,919,NA,US,36.5,-78.55,1460 +27508,STANDARD,0,Bunn,,,NC,"Franklin County",America/New_York,,NA,US,35.95,-78.25,1540 +27509,STANDARD,0,Butner,,,NC,"Granville County",America/New_York,919,NA,US,36.13,-78.77,3490 +27510,STANDARD,0,Carrboro,,,NC,"Orange County",America/New_York,919,NA,US,35.91,-79.08,11780 +27511,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.78,-78.79,29930 +27512,"PO BOX",0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.78,-78.79,840 +27513,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.8,-78.8,43980 +27514,STANDARD,0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.92,-79.04,20150 +27515,"PO BOX",0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.92,-79.04,677 +27516,STANDARD,0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.91,-79.15,36160 +27517,STANDARD,0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.84,-79.03,25280 +27518,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.73,-78.77,20670 +27519,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.81,-78.88,62420 +27520,STANDARD,0,Clayton,,"Archer Lodge, Whitley Heights",NC,"Johnston County",America/New_York,919,NA,US,35.64,-78.45,39970 +27521,STANDARD,0,Coats,,,NC,"Harnett County",America/New_York,910,NA,US,35.4,-78.66,5540 +27522,STANDARD,0,Creedmoor,,,NC,"Granville County",America/New_York,919,NA,US,36.12,-78.68,11960 +27523,STANDARD,0,Apex,,,NC,"Wake County",America/New_York,919,NA,US,35.77,-78.94,14170 +27524,STANDARD,0,"Four Oaks",,,NC,"Johnston County",America/New_York,919,NA,US,35.44,-78.42,11250 +27525,STANDARD,0,Franklinton,,,NC,"Franklin County",America/New_York,919,NA,US,36.1,-78.45,14370 +27526,STANDARD,0,"Fuquay Varina",,Duncan,NC,"Wake County",America/New_York,919,NA,US,35.54,-78.83,50630 +27527,STANDARD,0,Clayton,"Archer Lodge",,NC,"Johnston County",America/New_York,919,NA,US,35.63,-78.36,30600 +27528,STANDARD,0,Clayton,,,NC,"Johnston County",America/New_York,919,NA,US,35.65,-78.45,966 +27529,STANDARD,0,Garner,,,NC,"Wake County",America/New_York,919,NA,US,35.69,-78.62,48110 +27530,STANDARD,0,Goldsboro,,"Patetown, Walnut Creek, Webtown",NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.97,30230 +27531,STANDARD,0,Goldsboro,"Seymour Johnson A F B, Seymour Johnson AFB, Sjafb",,NC,"Wayne County",America/New_York,919,NA,US,35.34,-77.96,475 +27532,"PO BOX",0,Goldsboro,,,NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.97,771 +27533,"PO BOX",0,Goldsboro,,,NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.97,949 +27534,STANDARD,0,Goldsboro,,,NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.9,27370 +27536,STANDARD,0,Henderson,,,NC,"Vance County",America/New_York,252,NA,US,36.32,-78.41,13510 +27537,STANDARD,0,Henderson,,,NC,"Vance County",America/New_York,252,NA,US,36.37,-78.37,19400 +27539,STANDARD,0,Apex,,,NC,"Wake County",America/New_York,919,NA,US,35.67,-78.81,25070 +27540,STANDARD,0,"Holly Springs",,,NC,"Wake County",America/New_York,919,NA,US,35.65,-78.83,41370 +27541,STANDARD,0,"Hurdle Mills",,,NC,"Person County",America/New_York,,NA,US,36.25,-79.08,3570 +27542,STANDARD,0,Kenly,,Bagley,NC,"Johnston County",America/New_York,919,NA,US,35.59,-78.12,8280 +27543,"PO BOX",0,Kipling,,,NC,"Harnett County",America/New_York,,NA,US,35.48,-78.81,234 +27544,STANDARD,0,Kittrell,,,NC,"Vance County",America/New_York,252,NA,US,36.22,-78.44,3420 +27545,STANDARD,0,Knightdale,,,NC,"Wake County",America/New_York,919,NA,US,35.79,-78.48,28960 +27546,STANDARD,0,Lillington,,,NC,"Harnett County",America/New_York,910,NA,US,35.39,-78.81,15300 +27549,STANDARD,0,Louisburg,Centerville,,NC,"Franklin County",America/New_York,919,NA,US,36.1,-78.29,19440 +27551,STANDARD,0,Macon,,,NC,"Warren County",America/New_York,252,NA,US,36.43,-78.08,1490 +27552,"PO BOX",0,Mamers,,,NC,"Harnett County",America/New_York,,NA,US,35.41,-78.94,437 +27553,STANDARD,0,Manson,,"Soul City",NC,"Warren County",America/New_York,,NA,US,36.47,-78.29,1720 +27555,"PO BOX",0,Micro,,,NC,"Johnston County",America/New_York,,NA,US,35.56,-78.2,820 +27556,"PO BOX",0,Middleburg,,,NC,"Vance County",America/New_York,252,NA,US,36.41,-78.31,534 +27557,STANDARD,0,Middlesex,,Emit,NC,"Nash County",America/New_York,,NA,US,35.78,-78.2,6700 +27559,STANDARD,0,Moncure,,,NC,"Chatham County",America/New_York,,NA,US,35.62,-79.08,2230 +27560,STANDARD,0,Morrisville,,,NC,"Wake County",America/New_York,919,NA,US,35.83,-78.83,34640 +27562,STANDARD,0,"New Hill",,,NC,"Chatham County",America/New_York,,NA,US,35.64,-78.99,2960 +27563,STANDARD,0,Norlina,,,NC,"Warren County",America/New_York,252,NA,US,36.44,-78.19,3570 +27564,STANDARD,1,Creedmoor,,,NC,"Granville County",America/New_York,919,NA,US,36.11,-78.68,0 +27565,STANDARD,0,Oxford,,,NC,"Granville County",America/New_York,919,NA,US,36.31,-78.58,21140 +27568,"PO BOX",0,"Pine Level",,,NC,"Johnston County",America/New_York,,NA,US,35.51,-78.24,1374 +27569,STANDARD,0,Princeton,,,NC,"Johnston County",America/New_York,919,NA,US,35.46,-78.16,7580 +27570,"PO BOX",0,Ridgeway,,,NC,"Warren County",America/New_York,252,NA,US,36.42,-78.26,221 +27571,STANDARD,0,Rolesville,,,NC,"Wake County",America/New_York,919,NA,US,35.92,-78.45,8200 +27572,STANDARD,0,Rougemont,,,NC,"Person County",America/New_York,,NA,US,36.22,-78.93,6000 +27573,STANDARD,0,Roxboro,,,NC,"Person County",America/New_York,336,NA,US,36.4,-78.98,8740 +27574,STANDARD,0,Roxboro,,,NC,"Person County",America/New_York,"336,919",NA,US,36.41,-78.85,12170 +27576,STANDARD,0,Selma,,,NC,"Johnston County",America/New_York,919,NA,US,35.53,-78.28,14850 +27577,STANDARD,0,Smithfield,,,NC,"Johnston County",America/New_York,919,NA,US,35.5,-78.34,20440 +27581,STANDARD,0,Stem,,,NC,"Granville County",America/New_York,919,NA,US,36.19,-78.72,3400 +27582,"PO BOX",0,Stovall,,,NC,"Granville County",America/New_York,919,NA,US,36.47,-78.58,616 +27583,STANDARD,0,Timberlake,,,NC,"Person County",America/New_York,336,NA,US,36.28,-78.95,6650 +27584,"PO BOX",0,Townsville,,,NC,"Vance County",America/New_York,252,NA,US,36.5,-78.42,664 +27586,"PO BOX",0,Vaughan,,,NC,"Warren County",America/New_York,252,NA,US,36.44,-77.98,80 +27587,STANDARD,0,"Wake Forest",,,NC,"Wake County",America/New_York,919,NA,US,35.97,-78.52,69520 +27588,"PO BOX",0,"Wake Forest",,,NC,"Wake County",America/New_York,919,NA,US,35.97,-78.52,1043 +27589,STANDARD,0,Warrenton,,,NC,"Warren County",America/New_York,252,NA,US,36.4,-78.15,5350 +27591,STANDARD,0,Wendell,"Eagle Rock",,NC,"Wake County",America/New_York,919,NA,US,35.78,-78.36,21930 +27592,STANDARD,0,"Willow Spring",,"Kennebec, Willow Springs",NC,"Wake County",America/New_York,,NA,US,35.54,-78.66,16380 +27593,"PO BOX",0,"Wilsons Mills",,"Wilsons Mill",NC,"Johnston County",America/New_York,,NA,US,35.58,-78.35,608 +27594,"PO BOX",0,Wise,,,NC,"Warren County",America/New_York,252,NA,US,36.48,-78.18,347 +27596,STANDARD,0,Youngsville,,,NC,"Franklin County",America/New_York,919,NA,US,36.02,-78.47,17290 +27597,STANDARD,0,Zebulon,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.31,22890 +27599,UNIQUE,0,"Chapel Hill",,"Unc Chapel Hill Admin, Univ Of Nc, University Of Nc",NC,"Orange County",America/New_York,919,NA,US,35.92,-79.04,64 +27601,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.77,-78.63,6770 +27602,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,404 +27603,STANDARD,0,Raleigh,,Mccullers,NC,"Wake County",America/New_York,919,NA,US,35.66,-78.65,43030 +27604,STANDARD,0,Raleigh,Brentwood,"Wake Crossroads, Wilders Grove",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.56,38590 +27605,STANDARD,0,Raleigh,,"Cameron Village",NC,"Wake County",America/New_York,919,NA,US,35.79,-78.65,4530 +27606,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.74,-78.72,33360 +27607,STANDARD,0,Raleigh,,"Nc State University, Ncsu Student Housing, State University",NC,"Wake County",America/New_York,919,NA,US,35.81,-78.72,16260 +27608,STANDARD,0,Raleigh,,"Five Points",NC,"Wake County",America/New_York,919,NA,US,35.81,-78.65,10860 +27609,STANDARD,0,Raleigh,,"North Hills",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,31800 +27610,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.74,-78.55,61170 +27611,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,971 +27612,STANDARD,0,Raleigh,,"Crabtree Valley, Duraleigh",NC,"Wake County",America/New_York,919,NA,US,35.85,-78.71,34310 +27613,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.93,-78.71,44200 +27614,STANDARD,0,Raleigh,,"North Hills",NC,"Wake County",America/New_York,919,NA,US,35.95,-78.62,33840 +27615,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.9,-78.64,41020 +27616,STANDARD,0,Raleigh,Brentwood,,NC,"Wake County",America/New_York,919,NA,US,35.87,-78.54,49940 +27617,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.91,-78.77,17950 +27619,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,776 +27620,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,849 +27621,"PO BOX",1,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27622,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,456 +27623,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,103 +27624,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,706 +27625,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27626,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,29 +27627,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,318 +27628,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,158 +27629,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,561 +27634,UNIQUE,0,Raleigh,,"Nc Dept Revenue",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27635,UNIQUE,0,Raleigh,,"Nc Library",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27636,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,131 +27640,UNIQUE,0,Raleigh,,"Nc Dept Revenue",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27650,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,126 +27656,UNIQUE,0,Raleigh,,"Nationwide Ins Co",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27658,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,306 +27661,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,222 +27668,UNIQUE,0,Raleigh,,"National Info Syst Supt Cntr",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27675,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,341 +27676,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27690,UNIQUE,0,Raleigh,,"Raleigh Brm",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27695,UNIQUE,0,Raleigh,,"Nc State Univ",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,95 +27697,UNIQUE,0,Raleigh,,"Nc Dept Motor Vehicle",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27698,UNIQUE,0,Raleigh,,"Carolina Power And Light Co",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27699,UNIQUE,0,Raleigh,,"Nc Centralized Mailing",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,92 +27701,STANDARD,0,Durham,,"East Durham",NC,"Durham County",America/New_York,919,NA,US,36,-78.9,16870 +27702,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,932 +27703,STANDARD,0,Durham,,"East Durham",NC,"Durham County",America/New_York,919,NA,US,35.96,-78.81,53400 +27704,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,36.04,-78.83,33370 +27705,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,36.03,-78.98,36620 +27706,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,0 +27707,STANDARD,0,Durham,"Shannon Plaza",,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,37990 +27708,UNIQUE,0,Durham,,"Duke, Duke University",NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,309 +27709,"PO BOX",0,Durham,"Research Triangle Park, Rtp",,NC,"Durham County",America/New_York,919,NA,US,35.92,-78.83,747 +27710,UNIQUE,0,Durham,,"Duke Medical Ctr",NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,22 +27711,UNIQUE,0,Durham,"Research Triangle Park, Rtp","Environ Protect Agency, Research Triangle Pk",NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,0 +27712,STANDARD,0,Durham,"Eno Valley","North Durham",NC,"Durham County",America/New_York,919,NA,US,36.1,-78.9,20560 +27713,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.9,-78.92,47410 +27715,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,675 +27717,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,736 +27722,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,451 +27801,STANDARD,0,"Rocky Mount",,"Dortches, Rocky Mt",NC,"Edgecombe County",America/New_York,252,NA,US,35.91,-77.73,14740 +27802,"PO BOX",0,"Rocky Mount",,,NC,"Nash County",America/New_York,252,NA,US,35.95,-77.81,2175 +27803,STANDARD,0,"Rocky Mount",,,NC,"Nash County",America/New_York,252,NA,US,35.9,-77.86,17130 +27804,STANDARD,0,"Rocky Mount","Wesleyan Col, Wesleyan College",,NC,"Nash County",America/New_York,252,NA,US,35.95,-77.81,24390 +27805,STANDARD,0,Aulander,,,NC,"Hertford County",America/New_York,252,NA,US,36.22,-77.11,2630 +27806,STANDARD,0,Aurora,,Royal,NC,"Beaufort County",America/New_York,252,NA,US,35.3,-76.78,1670 +27807,STANDARD,0,Bailey,,,NC,"Nash County",America/New_York,252,NA,US,35.78,-78.11,6020 +27808,STANDARD,0,Bath,,,NC,"Beaufort County",America/New_York,252,NA,US,35.47,-76.81,2090 +27809,STANDARD,0,Battleboro,,Drake,NC,"Nash County",America/New_York,,NA,US,36.04,-77.75,3870 +27810,STANDARD,0,Belhaven,,,NC,"Beaufort County",America/New_York,252,NA,US,35.54,-76.62,2760 +27811,"PO BOX",0,Bellarthur,,,NC,"Pitt County",America/New_York,252,NA,US,35.57,-77.49,314 +27812,STANDARD,0,Bethel,,,NC,"Pitt County",America/New_York,252,NA,US,35.8,-77.37,1930 +27813,"PO BOX",0,"Black Creek",,,NC,"Wilson County",America/New_York,252,NA,US,35.63,-77.93,858 +27814,STANDARD,0,"Blounts Creek",,,NC,"Beaufort County",America/New_York,252,NA,US,35.36,-76.92,1330 +27815,UNIQUE,0,"Rocky Mount",,Qvc,NC,"Nash County",America/New_York,252,NA,US,35.92,-77.67,0 +27816,STANDARD,0,Castalia,,,NC,"Nash County",America/New_York,,NA,US,36.08,-78.05,2210 +27817,STANDARD,0,Chocowinity,,,NC,"Beaufort County",America/New_York,252,NA,US,35.51,-77.09,6500 +27818,STANDARD,0,Como,,,NC,"Hertford County",America/New_York,252,NA,US,36.49,-77.01,980 +27819,"PO BOX",0,Conetoe,,,NC,"Edgecombe County",America/New_York,252,NA,US,35.81,-77.45,613 +27820,STANDARD,0,Conway,Milwaukee,,NC,"Northampton County",America/New_York,252,NA,US,36.43,-77.22,2080 +27821,STANDARD,0,Edward,,,NC,"Beaufort County",America/New_York,252,NA,US,35.32,-76.89,220 +27822,STANDARD,0,"Elm City",,,NC,"Wilson County",America/New_York,252,NA,US,35.8,-77.86,7300 +27823,STANDARD,0,Enfield,,,NC,"Halifax County",America/New_York,252,NA,US,36.17,-77.66,5230 +27824,STANDARD,0,Engelhard,,,NC,"Hyde County",America/New_York,252,NA,US,35.54,-76.02,990 +27825,"PO BOX",0,Everetts,,,NC,"Martin County",America/New_York,252,NA,US,35.83,-77.17,299 +27826,STANDARD,0,Fairfield,,,NC,"Hyde County",America/New_York,,NA,US,35.57,-76.24,510 +27827,"PO BOX",0,Falkland,,,NC,"Pitt County",America/New_York,252,NA,US,35.7,-77.51,291 +27828,STANDARD,0,Farmville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.59,7210 +27829,STANDARD,0,Fountain,,,NC,"Pitt County",America/New_York,252,NA,US,35.67,-77.63,1440 +27830,STANDARD,0,Fremont,Eureka,,NC,"Wayne County",America/New_York,919,NA,US,35.54,-77.97,3670 +27831,STANDARD,0,Garysburg,Gumberry,,NC,"Northampton County",America/New_York,252,NA,US,36.44,-77.55,2160 +27832,STANDARD,0,Gaston,,,NC,"Northampton County",America/New_York,252,NA,US,36.49,-77.64,2270 +27833,"PO BOX",0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,615 +27834,STANDARD,0,Greenville,,"East Carolina Univ, East Carolina University, Pactolus",NC,"Pitt County",America/New_York,252,NA,US,35.66,-77.38,42820 +27835,"PO BOX",0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,1368 +27836,"PO BOX",0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,604 +27837,STANDARD,0,Grimesland,,,NC,"Pitt County",America/New_York,252,NA,US,35.56,-77.19,5400 +27839,STANDARD,0,Halifax,,,NC,"Halifax County",America/New_York,252,NA,US,36.32,-77.59,2050 +27840,STANDARD,0,Hamilton,,,NC,"Martin County",America/New_York,252,NA,US,35.94,-77.2,420 +27841,"PO BOX",0,Hassell,,,NC,"Martin County",America/New_York,252,NA,US,35.91,-77.28,213 +27842,STANDARD,0,Henrico,,,NC,"Northampton County",America/New_York,252,NA,US,36.53,-77.83,1160 +27843,STANDARD,0,Hobgood,,,NC,"Halifax County",America/New_York,,NA,US,36.02,-77.39,770 +27844,STANDARD,0,Hollister,,Essex,NC,"Halifax County",America/New_York,252,NA,US,36.25,-77.92,2200 +27845,STANDARD,0,Jackson,Lasker,,NC,"Northampton County",America/New_York,252,NA,US,36.39,-77.41,1220 +27846,STANDARD,0,Jamesville,,,NC,"Martin County",America/New_York,252,NA,US,35.81,-76.89,2450 +27847,STANDARD,0,Kelford,,,NC,"Bertie County",America/New_York,252,NA,US,36.18,-77.22,570 +27849,STANDARD,0,"Lewiston Woodville",Lewiston,Woodville,NC,"Bertie County",America/New_York,252,NA,US,36.11,-77.17,1170 +27850,STANDARD,0,Littleton,,,NC,"Halifax County",America/New_York,252,NA,US,36.43,-77.91,5100 +27851,STANDARD,0,Lucama,,Lunana,NC,"Wilson County",America/New_York,252,NA,US,35.64,-78,4540 +27852,STANDARD,0,Macclesfield,,"Old Sparta",NC,"Edgecombe County",America/New_York,252,NA,US,35.75,-77.67,2280 +27853,STANDARD,0,Margarettsville,Margarettsvl,Margaretsville,NC,"Northampton County",America/New_York,252,NA,US,36.53,-77.35,340 +27854,STANDARD,1,Milwaukee,,,NC,"Northampton County",America/New_York,252,NA,US,36.4,-77.23,0 +27855,STANDARD,0,Murfreesboro,,,NC,"Hertford County",America/New_York,252,NA,US,36.44,-77.09,4160 +27856,STANDARD,0,Nashville,Momeyer,,NC,"Nash County",America/New_York,252,NA,US,35.96,-77.95,14740 +27857,STANDARD,0,"Oak City",,,NC,"Martin County",America/New_York,252,NA,US,35.96,-77.3,910 +27858,STANDARD,0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,37920 +27860,STANDARD,0,Pantego,,,NC,"Beaufort County",America/New_York,252,NA,US,35.58,-76.65,1660 +27861,"PO BOX",0,Parmele,,,NC,"Martin County",America/New_York,252,NA,US,35.81,-77.32,129 +27862,STANDARD,0,Pendleton,,,NC,"Northampton County",America/New_York,252,NA,US,36.47,-77.19,540 +27863,STANDARD,0,Pikeville,,,NC,"Wayne County",America/New_York,919,NA,US,35.49,-77.98,11350 +27864,STANDARD,0,Pinetops,,,NC,"Edgecombe County",America/New_York,252,NA,US,35.79,-77.63,3800 +27865,STANDARD,0,Pinetown,,,NC,"Beaufort County",America/New_York,252,NA,US,35.66,-76.85,1570 +27866,STANDARD,0,"Pleasant Hill",,,NC,"Northampton County",America/New_York,252,NA,US,36.51,-77.54,560 +27867,"PO BOX",0,Potecasi,,,NC,"Northampton County",America/New_York,252,NA,US,36.36,-77.23,219 +27868,"PO BOX",0,"Red Oak",,,NC,"Nash County",America/New_York,252,NA,US,36.03,-77.9,528 +27869,STANDARD,0,"Rich Square",,,NC,"Northampton County",America/New_York,252,NA,US,36.27,-77.28,1540 +27870,STANDARD,0,"Roanoke Rapids","Roanoke Rapid, Roanoke Rapids Air Force Sta, Ronok Rpd Afs",,NC,"Halifax County",America/New_York,252,NA,US,36.45,-77.65,21220 +27871,STANDARD,0,Robersonville,,"Bear Grass",NC,"Martin County",America/New_York,252,NA,US,35.82,-77.25,3430 +27872,STANDARD,0,Roxobel,,,NC,"Bertie County",America/New_York,252,NA,US,36.2,-77.23,310 +27873,"PO BOX",0,Saratoga,,,NC,"Wilson County",America/New_York,252,NA,US,35.65,-77.77,574 +27874,STANDARD,0,"Scotland Neck",,,NC,"Halifax County",America/New_York,252,NA,US,36.13,-77.42,3340 +27875,STANDARD,0,Scranton,,,NC,"Hyde County",America/New_York,,NA,US,35.46,-76.5,310 +27876,STANDARD,0,Seaboard,,,NC,"Northampton County",America/New_York,252,NA,US,36.49,-77.44,900 +27877,"PO BOX",0,Severn,,,NC,"Northampton County",America/New_York,252,NA,US,36.51,-77.18,326 +27878,"PO BOX",0,Sharpsburg,,,NC,"Nash County",America/New_York,252,NA,US,35.86,-77.83,2736 +27879,"PO BOX",0,Simpson,,,NC,"Pitt County",America/New_York,252,NA,US,35.57,-77.28,425 +27880,STANDARD,0,Sims,,,NC,"Wilson County",America/New_York,252,NA,US,35.76,-78.05,3120 +27881,"PO BOX",0,Speed,,,NC,"Edgecombe County",America/New_York,252,NA,US,35.98,-77.44,128 +27882,STANDARD,0,"Spring Hope",,,NC,"Nash County",America/New_York,252,NA,US,35.94,-78.1,6360 +27883,STANDARD,0,Stantonsburg,,,NC,"Wilson County",America/New_York,252,NA,US,35.6,-77.82,3050 +27884,STANDARD,0,Stokes,,,NC,"Pitt County",America/New_York,252,NA,US,35.71,-77.27,1290 +27885,STANDARD,0,Swanquarter,,,NC,"Hyde County",America/New_York,252,NA,US,35.4,-76.27,780 +27886,STANDARD,0,Tarboro,"Leggett, Princeville",,NC,"Edgecombe County",America/New_York,252,NA,US,35.9,-77.55,15780 +27887,"PO BOX",0,Tillery,,,NC,"Halifax County",America/New_York,252,NA,US,36.25,-77.48,163 +27888,STANDARD,0,Walstonburg,,,NC,"Greene County",America/New_York,252,NA,US,35.59,-77.69,2140 +27889,STANDARD,0,Washington,,Wash,NC,"Beaufort County",America/New_York,252,NA,US,35.55,-77.05,23160 +27890,STANDARD,0,Weldon,,,NC,"Halifax County",America/New_York,252,NA,US,36.42,-77.6,1760 +27891,STANDARD,0,Whitakers,,,NC,"Nash County",America/New_York,252,NA,US,36.1,-77.71,4190 +27892,STANDARD,0,Williamston,"Bear Grass, Beargrass",,NC,"Martin County",America/New_York,252,NA,US,35.85,-77.05,11550 +27893,STANDARD,0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.73,-77.92,30310 +27894,"PO BOX",0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.73,-77.92,1581 +27895,"PO BOX",0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.73,-77.92,835 +27896,STANDARD,0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.79,-77.98,18950 +27897,STANDARD,0,Woodland,George,,NC,"Northampton County",America/New_York,252,NA,US,36.33,-77.21,1120 +27906,"PO BOX",0,"Elizabeth City","Elizabeth Cty",,NC,"Pasquotank County",America/New_York,252,NA,US,36.29,-76.22,955 +27907,"PO BOX",0,"Elizabeth City","Elizabeth Cty",,NC,"Pasquotank County",America/New_York,252,NA,US,36.29,-76.22,252 +27909,STANDARD,0,"Elizabeth City","Elizabeth Cty","Eliz City, Elizabeth City Coast Guard A",NC,"Pasquotank County",America/New_York,252,NA,US,36.29,-76.22,33100 +27910,STANDARD,0,Ahoskie,,,NC,"Hertford County",America/New_York,252,NA,US,36.28,-76.98,8300 +27915,"PO BOX",0,Avon,,Kinnakeet,NC,"Dare County",America/New_York,252,NA,US,35.43,-75.49,786 +27916,STANDARD,0,Aydlett,,,NC,"Currituck County",America/New_York,252,NA,US,36.32,-75.9,750 +27917,STANDARD,0,Barco,,,NC,"Currituck County",America/New_York,252,NA,US,36.39,-75.97,600 +27919,STANDARD,0,Belvidere,,,NC,"Perquimans County",America/New_York,252,NA,US,36.26,-76.53,990 +27920,"PO BOX",0,Buxton,,"Cape Hatteras Naval Facility",NC,"Dare County",America/New_York,252,NA,US,35.24,-75.53,1518 +27921,STANDARD,0,Camden,,,NC,"Camden County",America/New_York,252,NA,US,36.32,-76.16,4640 +27922,STANDARD,0,Cofield,,,NC,"Hertford County",America/New_York,252,NA,US,36.35,-76.9,630 +27923,STANDARD,0,Coinjock,,,NC,"Currituck County",America/New_York,252,NA,US,36.34,-75.95,550 +27924,STANDARD,0,Colerain,,,NC,"Bertie County",America/New_York,252,NA,US,36.2,-76.76,2200 +27925,STANDARD,0,Columbia,,,NC,"Tyrrell County",America/New_York,252,NA,US,35.91,-76.25,2960 +27926,STANDARD,0,Corapeake,,,NC,"Gates County",America/New_York,252,NA,US,36.53,-76.57,1320 +27927,STANDARD,0,Corolla,,,NC,"Currituck County",America/New_York,252,NA,US,36.37,-75.83,1080 +27928,STANDARD,0,Creswell,,,NC,"Washington County",America/New_York,252,NA,US,35.87,-76.39,1470 +27929,STANDARD,0,Currituck,,,NC,"Currituck County",America/New_York,252,NA,US,36.44,-76.01,1690 +27930,"PO BOX",0,Hertford,,,NC,"Perquimans County",America/New_York,252,NA,US,36.18,-76.33,0 +27932,STANDARD,0,Edenton,,,NC,"Chowan County",America/New_York,252,NA,US,36.05,-76.6,10180 +27935,STANDARD,0,Eure,,,NC,"Gates County",America/New_York,252,NA,US,36.42,-76.85,1260 +27936,"PO BOX",0,Frisco,,,NC,"Dare County",America/New_York,252,NA,US,35.24,-75.58,688 +27937,STANDARD,0,Gates,,,NC,"Gates County",America/New_York,252,NA,US,36.5,-76.76,3130 +27938,STANDARD,0,Gatesville,,,NC,"Gates County",America/New_York,252,NA,US,36.4,-76.75,1090 +27939,STANDARD,0,Grandy,,,NC,"Currituck County",America/New_York,252,NA,US,36.24,-75.87,2370 +27941,STANDARD,0,Harbinger,,,NC,"Currituck County",America/New_York,252,NA,US,36.1,-75.81,540 +27942,STANDARD,0,Harrellsville,,,NC,"Hertford County",America/New_York,252,NA,US,36.3,-76.79,570 +27943,"PO BOX",0,Hatteras,,,NC,"Dare County",America/New_York,252,NA,US,35.22,-75.68,675 +27944,STANDARD,0,Hertford,,,NC,"Perquimans County",America/New_York,252,NA,US,36.18,-76.47,9710 +27946,STANDARD,0,Hobbsville,,,NC,"Gates County",America/New_York,252,NA,US,36.34,-76.6,990 +27947,STANDARD,0,Jarvisburg,,,NC,"Currituck County",America/New_York,252,NA,US,36.2,-75.86,900 +27948,STANDARD,0,"Kill Devil Hills","Kill Devil Hl",,NC,"Dare County",America/New_York,252,NA,US,36.01,-75.66,11180 +27949,STANDARD,0,"Kitty Hawk","Duck, Southern Shores, Southrn Shore",Collington,NC,"Dare County",America/New_York,252,NA,US,36.07,-75.71,8120 +27950,STANDARD,0,"Knotts Island",,Woodleigh,NC,"Currituck County",America/New_York,252,NA,US,36.51,-75.91,1630 +27953,STANDARD,0,"Manns Harbor","East Lake",,NC,"Dare County",America/New_York,252,NA,US,35.81,-75.91,830 +27954,STANDARD,0,Manteo,,"Cape Hatteras National Seash, Fort Raleigh City, Fort Raleigh National Histor, Wright Brothers National Mem",NC,"Dare County",America/New_York,252,NA,US,35.89,-75.66,6040 +27956,STANDARD,0,Maple,,,NC,"Currituck County",America/New_York,252,NA,US,36.41,-76,310 +27957,STANDARD,0,"Merry Hill",,,NC,"Bertie County",America/New_York,252,NA,US,36.01,-76.77,1190 +27958,STANDARD,0,Moyock,,,NC,"Currituck County",America/New_York,252,NA,US,36.48,-76.13,11420 +27959,STANDARD,0,"Nags Head",,,NC,"Dare County",America/New_York,252,NA,US,35.94,-75.62,2810 +27960,"PO BOX",0,Ocracoke,,Portsmouth,NC,"Hyde County",America/New_York,252,NA,US,35.07,-76,827 +27962,STANDARD,0,Plymouth,,,NC,"Washington County",America/New_York,252,NA,US,35.86,-76.74,5520 +27964,STANDARD,0,"Point Harbor",,,NC,"Currituck County",America/New_York,252,NA,US,36.08,-75.8,500 +27965,STANDARD,0,"Poplar Branch",,,NC,"Currituck County",America/New_York,252,NA,US,36.28,-75.89,460 +27966,STANDARD,0,"Powells Point",,,NC,"Currituck County",America/New_York,252,NA,US,36.15,-75.85,1120 +27967,"PO BOX",0,Powellsville,,,NC,"Bertie County",America/New_York,252,NA,US,36.23,-76.9,777 +27968,"PO BOX",0,Rodanthe,,,NC,"Dare County",America/New_York,252,NA,US,35.73,-75.51,435 +27969,"PO BOX",0,Roduco,,,NC,"Gates County",America/New_York,252,NA,US,36.46,-76.81,78 +27970,STANDARD,0,Roper,,,NC,"Washington County",America/New_York,252,NA,US,35.87,-76.61,2430 +27972,"PO BOX",0,Salvo,,,NC,"Dare County",America/New_York,252,NA,US,35.55,-75.47,77 +27973,STANDARD,0,Shawboro,,,NC,"Currituck County",America/New_York,252,NA,US,36.4,-76.09,1430 +27974,STANDARD,0,Shiloh,,,NC,"Camden County",America/New_York,252,NA,US,36.27,-76.08,1030 +27976,STANDARD,0,"South Mills",,,NC,"Camden County",America/New_York,252,NA,US,36.44,-76.32,3540 +27978,STANDARD,0,"Stumpy Point",,,NC,"Dare County",America/New_York,252,NA,US,35.73,-75.74,116 +27979,STANDARD,0,Sunbury,,,NC,"Gates County",America/New_York,252,NA,US,36.44,-76.6,1210 +27980,STANDARD,0,Tyner,,,NC,"Chowan County",America/New_York,252,NA,US,36.25,-76.63,1780 +27981,STANDARD,0,Wanchese,,,NC,"Dare County",America/New_York,252,NA,US,35.83,-75.64,1450 +27982,"PO BOX",0,Waves,,,NC,"Dare County",America/New_York,252,NA,US,35.57,-75.47,56 +27983,STANDARD,0,Windsor,Askewville,,NC,"Bertie County",America/New_York,252,NA,US,36,-76.94,6240 +27985,"PO BOX",0,Winfall,,,NC,"Perquimans County",America/New_York,252,NA,US,36.21,-76.45,380 +27986,STANDARD,0,Winton,,,NC,"Hertford County",America/New_York,252,NA,US,36.38,-76.93,910 +28001,STANDARD,0,Albemarle,,"Millingport, North Albemarle, Palestine, Plyler, River Haven, South Albemarle",NC,"Stanly County",America/New_York,"704,980",NA,US,35.36,-80.19,21510 +28002,"PO BOX",0,Albemarle,,,NC,"Stanly County",America/New_York,704,NA,US,35.36,-80.19,1663 +28006,STANDARD,0,Alexis,,,NC,"Gaston County",America/New_York,,NA,US,35.41,-81.09,1060 +28007,"PO BOX",0,Ansonville,,,NC,"Anson County",America/New_York,704,NA,US,35.1,-80.1,808 +28009,"PO BOX",0,Badin,,"Badin Air National Guard Sta",NC,"Stanly County",America/New_York,704,NA,US,35.4,-80.11,1521 +28010,"PO BOX",0,"Barium Springs","Barium Spngs",,NC,"Iredell County",America/New_York,704,NA,US,35.72,-80.9,219 +28012,STANDARD,0,Belmont,,"Catawba Heights",NC,"Gaston County",America/New_York,"704,980",NA,US,35.24,-81.04,21650 +28016,STANDARD,0,"Bessemer City",,,NC,"Gaston County",America/New_York,"704,980",NA,US,35.28,-81.28,10830 +28017,"PO BOX",0,"Boiling Springs","Boiling Spgs",,NC,"Cleveland County",America/New_York,704,NA,US,35.25,-81.67,1741 +28018,STANDARD,0,Bostic,"Golden Valley","Bostic Yard, Corinth, Golden, Sunshine, Washburn Store",NC,"Rutherford County",America/New_York,828,NA,US,35.36,-81.83,4240 +28019,"PO BOX",0,Caroleen,,,NC,"Rutherford County",America/New_York,828,NA,US,35.28,-81.79,739 +28020,STANDARD,0,Casar,,,NC,"Cleveland County",America/New_York,704,NA,US,35.51,-81.61,2020 +28021,STANDARD,0,Cherryville,,Flay,NC,"Gaston County",America/New_York,704,NA,US,35.38,-81.38,11000 +28023,STANDARD,0,"China Grove",Kannapolis,,NC,"Rowan County",America/New_York,704,NA,US,35.57,-80.58,13740 +28024,"PO BOX",0,Cliffside,,,NC,"Rutherford County",America/New_York,828,NA,US,35.23,-81.77,710 +28025,STANDARD,0,Concord,Kannapolis,"Flowes Store, North Concord, Sidestown, Stonewall Jackson Training S",NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.4,-80.59,49300 +28026,"PO BOX",0,Concord,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.4,-80.59,858 +28027,STANDARD,0,Concord,Kannapolis,,NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.41,-80.68,66820 +28031,STANDARD,0,Cornelius,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.48,-80.86,28180 +28032,STANDARD,0,Cramerton,,,NC,"Gaston County",America/New_York,704,NA,US,35.23,-81.08,2930 +28033,STANDARD,0,Crouse,,,NC,"Lincoln County",America/New_York,704,NA,US,35.42,-81.3,2690 +28034,STANDARD,0,Dallas,,,NC,"Gaston County",America/New_York,704,NA,US,35.31,-81.17,15910 +28035,"PO BOX",0,Davidson,,"Davidson College",NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.5,-80.83,56 +28036,STANDARD,0,Davidson,Kannapolis,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.49,-80.84,18230 +28037,STANDARD,0,Denver,,,NC,"Lincoln County",America/New_York,"704,980",NA,US,35.53,-81.03,23430 +28038,"PO BOX",0,Earl,,,NC,"Cleveland County",America/New_York,704,NA,US,35.19,-81.53,780 +28039,"PO BOX",0,"East Spencer",,,NC,"Rowan County",America/New_York,,NA,US,35.68,-80.44,1104 +28040,STANDARD,0,Ellenboro,,"Dobbinsville, Hollis",NC,"Rutherford County",America/New_York,"704,828,980",NA,US,35.32,-81.75,5880 +28041,"PO BOX",0,Faith,,,NC,"Rowan County",America/New_York,,NA,US,35.58,-80.46,1369 +28042,"PO BOX",0,Fallston,,,NC,"Cleveland County",America/New_York,704,NA,US,35.42,-81.5,1015 +28043,STANDARD,0,"Forest City","Alexander Mills, Alexander Mls",,NC,"Rutherford County",America/New_York,828,NA,US,35.33,-81.86,15930 +28052,STANDARD,0,Gastonia,,"Boogertown, Crowders, Groves, Pinkney, Ridge, Smyre, South Gastonia, Victory",NC,"Gaston County",America/New_York,"704,980",NA,US,35.21,-81.23,28030 +28053,"PO BOX",0,Gastonia,,,NC,"Gaston County",America/New_York,704,NA,US,35.25,-81.17,1072 +28054,STANDARD,0,Gastonia,,"Ragan Village, Ranlo, Spencer Mountain",NC,"Gaston County",America/New_York,"704,980",NA,US,35.25,-81.17,32380 +28055,"PO BOX",0,Gastonia,,,NC,"Gaston County",America/New_York,704,NA,US,35.25,-81.17,404 +28056,STANDARD,0,Gastonia,,,NC,"Gaston County",America/New_York,"704,980",NA,US,35.22,-81.13,30630 +28070,"PO BOX",0,Huntersville,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.41,-80.84,1634 +28071,STANDARD,0,"Gold Hill",,,NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.52,-80.33,2620 +28072,"PO BOX",0,"Granite Quarry","Granite Qry",,NC,"Rowan County",America/New_York,,NA,US,35.61,-80.44,1469 +28073,STANDARD,0,Grover,,,NC,"Cleveland County",America/New_York,704,NA,US,35.17,-81.45,4270 +28074,"PO BOX",0,Harris,,,NC,"Rutherford County",America/New_York,828,NA,US,35.24,-81.87,367 +28075,STANDARD,0,Harrisburg,,,NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.32,-80.66,20740 +28076,"PO BOX",0,Henrietta,,,NC,"Rutherford County",America/New_York,828,NA,US,35.26,-81.79,986 +28077,"PO BOX",0,"High Shoals",,,NC,"Gaston County",America/New_York,704,NA,US,35.4,-81.2,609 +28078,STANDARD,0,Huntersville,,"Caldwell, Hicks Crossroads, Long Creek",NC,"Mecklenburg County",America/New_York,704,NA,US,35.41,-80.84,61680 +28079,STANDARD,0,"Indian Trail","Lake Park","Hemby, Hemby Bridge, Indian Trl",NC,"Union County",America/New_York,704,NA,US,35.07,-80.67,37000 +28080,STANDARD,0,"Iron Station",,,NC,"Lincoln County",America/New_York,704,NA,US,35.44,-81.15,7210 +28081,STANDARD,0,Kannapolis,,"Centerview, Fisher Town, Glass, Royal Oaks, Shady Brook",NC,"Cabarrus County",America/New_York,704,NA,US,35.5,-80.67,24070 +28082,"PO BOX",0,Kannapolis,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.49,-80.62,788 +28083,STANDARD,0,Kannapolis,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.49,-80.62,21620 +28086,STANDARD,0,"Kings Mountain","Kings Mtn",,NC,"Cleveland County",America/New_York,"704,980",NA,US,35.24,-81.34,23510 +28088,STANDARD,0,Landis,,,NC,"Rowan County",America/New_York,,NA,US,35.54,-80.61,2930 +28089,"PO BOX",0,Lattimore,,,NC,"Cleveland County",America/New_York,704,NA,US,35.32,-81.66,469 +28090,STANDARD,0,Lawndale,,"Belwood, Delight, Double Shoals, Toluca",NC,"Cleveland County",America/New_York,704,NA,US,35.41,-81.56,6290 +28091,STANDARD,0,Lilesville,,,NC,"Anson County",America/New_York,704,NA,US,34.96,-79.98,1650 +28092,STANDARD,0,Lincolnton,"Boger City",,NC,"Lincoln County",America/New_York,"704,980",NA,US,35.47,-81.24,32080 +28093,"PO BOX",0,Lincolnton,,,NC,"Lincoln County",America/New_York,704,NA,US,35.47,-81.24,1540 +28097,STANDARD,0,Locust,,"Western Hills",NC,"Stanly County",America/New_York,"704,980",NA,US,35.25,-80.43,6110 +28098,STANDARD,0,Lowell,,,NC,"Gaston County",America/New_York,"704,980",NA,US,35.26,-81.1,3370 +28101,STANDARD,0,"Mc Adenville",,,NC,"Gaston County",America/New_York,704,NA,US,35.26,-81.08,800 +28102,"PO BOX",0,"Mc Farlan",,,NC,"Anson County",America/New_York,704,NA,US,34.81,-79.97,128 +28103,STANDARD,0,Marshville,,"Olive Branch",NC,"Union County",America/New_York,704,NA,US,34.98,-80.36,9120 +28104,STANDARD,0,Matthews,"Stallings, Weddington, Wesley Chapel",,NC,"Union County",America/New_York,"704,980",NA,US,35.06,-80.69,33060 +28105,STANDARD,0,Matthews,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.12,-80.71,40420 +28106,"PO BOX",0,Matthews,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.12,-80.71,1256 +28107,STANDARD,0,Midland,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.22,-80.5,8070 +28108,"PO BOX",0,"Mineral Springs","Mineral Spgs",,NC,"Union County",America/New_York,704,NA,US,34.93,-80.68,579 +28109,"PO BOX",0,Misenheimer,,,NC,"Stanly County",America/New_York,704,NA,US,35.48,-80.28,267 +28110,STANDARD,0,Monroe,Unionville,,NC,"Union County",America/New_York,"704,980",NA,US,35.07,-80.52,48030 +28111,"PO BOX",0,Monroe,,,NC,"Union County",America/New_York,704,NA,US,34.98,-80.54,2008 +28112,STANDARD,0,Monroe,,,NC,"Union County",America/New_York,"704,980",NA,US,34.98,-80.54,23430 +28114,STANDARD,0,Mooresboro,,,NC,"Rutherford County",America/New_York,"704,828",NA,US,35.23,-81.75,5280 +28115,STANDARD,0,Mooresville,,"Doolie, Mayhew, Mazeppa",NC,"Iredell County",America/New_York,"704,980",NA,US,35.57,-80.81,38130 +28117,STANDARD,0,Mooresville,,,NC,"Iredell County",America/New_York,"704,980",NA,US,35.57,-80.9,42630 +28119,STANDARD,0,Morven,,,NC,"Anson County",America/New_York,704,NA,US,34.86,-80,2000 +28120,STANDARD,0,"Mount Holly","Mt Holly",,NC,"Gaston County",America/New_York,704,NA,US,35.3,-81.03,20840 +28123,"PO BOX",0,"Mount Mourne",Mooresville,"Mt Mourne",NC,"Iredell County",America/New_York,704,NA,US,35.53,-80.86,360 +28124,STANDARD,0,"Mount Pleasant","Mt Pleasant",,NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.4,-80.43,6200 +28125,STANDARD,0,"Mount Ulla",,"Bear Poplar, Mt Ulla",NC,"Rowan County",America/New_York,,NA,US,35.65,-80.72,2430 +28126,"PO BOX",0,Newell,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.27,-80.73,280 +28127,STANDARD,0,"New London","Badin Lake","Nw London",NC,"Stanly County",America/New_York,"336,704",NA,US,35.44,-80.21,5600 +28128,STANDARD,0,Norwood,,"Aquadale, Cottonville, Porter",NC,"Stanly County",America/New_York,"980,704",NA,US,35.22,-80.12,6230 +28129,STANDARD,0,Oakboro,"Red Cross","Frog Pond",NC,"Stanly County",America/New_York,704,NA,US,35.22,-80.32,4930 +28130,"PO BOX",0,"Paw Creek",,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.27,-80.93,360 +28133,STANDARD,0,Peachland,,"Fountain Hill, White Store",NC,"Anson County",America/New_York,704,NA,US,34.99,-80.26,2200 +28134,STANDARD,0,Pineville,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.08,-80.88,10760 +28135,STANDARD,0,Polkton,,,NC,"Anson County",America/New_York,"704,980",NA,US,35,-80.2,2950 +28136,"PO BOX",0,Polkville,Shelby,,NC,"Cleveland County",America/New_York,704,NA,US,35.41,-81.64,767 +28137,STANDARD,0,Richfield,,Pooletown,NC,"Stanly County",America/New_York,"336,704",NA,US,35.47,-80.25,2540 +28138,STANDARD,0,Rockwell,,,NC,"Rowan County",America/New_York,"704,980",NA,US,35.55,-80.4,9250 +28139,STANDARD,0,Rutherfordton,,"Gilkey, Logan Station, Ruth, Shingle Hollow, Westminster",NC,"Rutherford County",America/New_York,828,NA,US,35.36,-81.96,15520 +28144,STANDARD,0,Salisbury,"East Spencer","Correll Park",NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.66,-80.48,18790 +28145,"PO BOX",0,Salisbury,,,NC,"Rowan County",America/New_York,704,NA,US,35.66,-80.48,1801 +28146,STANDARD,0,Salisbury,"Granite Qry, Granite Quarry",,NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.62,-80.39,24600 +28147,STANDARD,0,Salisbury,,,NC,"Rowan County",America/New_York,"704,980",NA,US,35.68,-80.56,21550 +28150,STANDARD,0,Shelby,Kingstown,"Patterson Springs",NC,"Cleveland County",America/New_York,"704,980",NA,US,35.28,-81.54,22270 +28151,"PO BOX",0,Shelby,,,NC,"Cleveland County",America/New_York,704,NA,US,35.28,-81.54,2055 +28152,STANDARD,0,Shelby,,,NC,"Cleveland County",America/New_York,"980,704",NA,US,35.24,-81.6,19640 +28159,STANDARD,0,Spencer,,,NC,"Rowan County",America/New_York,336,NA,US,35.69,-80.43,2600 +28160,STANDARD,0,Spindale,,,NC,"Rutherford County",America/New_York,828,NA,US,35.36,-81.92,2970 +28163,STANDARD,0,Stanfield,,,NC,"Stanly County",America/New_York,704,NA,US,35.23,-80.42,4660 +28164,STANDARD,0,Stanley,,Lowesville,NC,"Gaston County",America/New_York,"704,980",NA,US,35.35,-81.09,13500 +28166,STANDARD,0,Troutman,,"Bells Cross Roads",NC,"Iredell County",America/New_York,"704,980",NA,US,35.7,-80.89,9180 +28167,STANDARD,0,"Union Mills",,,NC,"Rutherford County",America/New_York,828,NA,US,35.49,-81.96,1980 +28168,STANDARD,0,Vale,,,NC,"Lincoln County",America/New_York,704,NA,US,35.53,-81.39,8860 +28169,"PO BOX",0,Waco,,,NC,"Cleveland County",America/New_York,704,NA,US,35.36,-81.42,776 +28170,STANDARD,0,Wadesboro,,,NC,"Anson County",America/New_York,"704,980",NA,US,34.96,-80.06,8820 +28173,STANDARD,0,Waxhaw,Marvin,,NC,"Union County",America/New_York,704,NA,US,34.92,-80.74,61240 +28174,STANDARD,0,Wingate,,,NC,"Union County",America/New_York,704,NA,US,34.98,-80.44,6980 +28201,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,32 +28202,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.23,-80.84,11310 +28203,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.21,-80.86,15000 +28204,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.21,-80.83,6970 +28205,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.22,-80.79,38300 +28206,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.26,-80.82,10640 +28207,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,8590 +28208,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.23,-80.91,31580 +28209,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.18,-80.85,19870 +28210,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.13,-80.86,39700 +28211,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.17,-80.8,28280 +28212,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.74,33220 +28213,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.29,-80.73,35970 +28214,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.28,-80.97,37580 +28215,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.24,-80.69,52790 +28216,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.31,-80.89,47540 +28217,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.17,-80.91,23470 +28218,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,290 +28219,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,302 +28220,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,406 +28221,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,273 +28222,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,363 +28223,UNIQUE,0,Charlotte,,"Unc Charlotte",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,86 +28224,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,675 +28226,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.1,-80.82,37170 +28227,STANDARD,0,Charlotte,"Mint Hill",,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.65,51710 +28228,UNIQUE,0,Charlotte,,"United States Postal Service",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,43 +28229,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,556 +28230,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,150 +28231,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,131 +28232,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,162 +28233,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,202 +28234,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,129 +28235,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,105 +28236,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,153 +28237,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,75 +28241,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,1082 +28242,UNIQUE,0,Charlotte,,"Duke Power Co",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28243,UNIQUE,0,Charlotte,,AT&T,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28244,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.22,-80.84,0 +28246,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.83,0 +28247,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,620 +28250,UNIQUE,1,Charlotte,,"Charlotte Water Dept",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28253,UNIQUE,0,Charlotte,,Gmac,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28254,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28255,UNIQUE,0,Charlotte,,"Bank Of America, Nc Natl Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,249 +28256,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,876 +28258,UNIQUE,0,Charlotte,,"Branch Bank And Trust (Bb&T)",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28260,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28262,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.32,-80.74,33580 +28263,UNIQUE,0,Charlotte,,"First Citizens Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.21,-80.69,17 +28265,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28266,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,475 +28269,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.34,-80.8,72430 +28270,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.11,-80.76,32450 +28271,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.22,-80.84,417 +28272,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28273,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.13,-80.95,35190 +28274,UNIQUE,0,Charlotte,,"Queens College",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,26 +28275,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28277,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.05,-80.82,69800 +28278,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.13,-81.01,29310 +28280,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.23,-80.84,0 +28281,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.83,0 +28282,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.22,-80.85,54 +28284,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28285,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.83,0 +28287,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28288,UNIQUE,0,Charlotte,,"Wachovia Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,241 +28289,UNIQUE,0,Charlotte,,"Branch Bank And Trust (Bb&T)",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28290,UNIQUE,0,Charlotte,,"Jp Morgan Chase",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28296,UNIQUE,0,Charlotte,,"Wachovia Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28297,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,314 +28299,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,244 +28301,STANDARD,0,Fayetteville,"E Fayetteville, E Fayettevlle, East Fayetteville","E Fayettevill, Eastover, Fay, Vander",NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.87,11260 +28302,"PO BOX",0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.87,1007 +28303,STANDARD,0,Fayetteville,,Eutaw,NC,"Cumberland County",America/New_York,910,NA,US,35.09,-78.96,26200 +28304,STANDARD,0,Fayetteville,,Lafayette,NC,"Cumberland County",America/New_York,910,NA,US,35.03,-78.99,31330 +28305,STANDARD,0,Fayetteville,,Haymount,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.91,5230 +28306,STANDARD,0,Fayetteville,,"Fayetteville Municipal Airpo, Lakedale",NC,"Bladen County",America/New_York,910,NA,US,34.96,-78.9,39020 +28307,STANDARD,0,"Fort Bragg",Fayetteville,,NC,"Cumberland County",America/New_York,910,NA,US,35.13,-79,13540 +28308,STANDARD,0,"Pope Army Airfield","Fayetteville, Pope Army Af",,NC,"Cumberland County",America/New_York,910,NA,US,35.17,-79.02,705 +28309,"PO BOX",0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.87,694 +28310,UNIQUE,0,"Fort Bragg",,"Fort Bragg Military",NC,"Cumberland County",America/New_York,,NA,US,35.16,-79.04,6506 +28311,STANDARD,0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.17,-78.89,30690 +28312,STANDARD,0,Fayetteville,Eastover,,NC,"Cumberland County",America/New_York,910,NA,US,34.93,-78.72,17050 +28314,STANDARD,0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-79.03,48330 +28315,STANDARD,0,Aberdeen,,,NC,"Moore County",America/New_York,910,NA,US,35.13,-79.42,11140 +28318,STANDARD,0,Autryville,,,NC,"Sampson County",America/New_York,910,NA,US,34.99,-78.64,3990 +28319,"PO BOX",0,Barnesville,,,NC,"Robeson County",America/New_York,910,NA,US,34.4,-79.04,54 +28320,STANDARD,0,Bladenboro,Butters,,NC,"Bladen County",America/New_York,910,NA,US,34.53,-78.79,6200 +28323,STANDARD,0,Bunnlevel,,,NC,"Harnett County",America/New_York,,NA,US,35.31,-78.83,4010 +28325,"PO BOX",0,Calypso,,,NC,"Duplin County",America/New_York,910,NA,US,35.15,-78.1,580 +28326,STANDARD,0,Cameron,,,NC,"Harnett County",America/New_York,919,NA,US,35.32,-79.25,22370 +28327,STANDARD,0,Carthage,"Whisper Pnes, Whispering Pines",,NC,"Moore County",America/New_York,910,NA,US,35.34,-79.41,16320 +28328,STANDARD,0,Clinton,,,NC,"Sampson County",America/New_York,910,NA,US,35,-78.33,21010 +28329,"PO BOX",0,Clinton,,,NC,"Sampson County",America/New_York,910,NA,US,35,-78.33,2914 +28330,"PO BOX",0,Cordova,,,NC,"Richmond County",America/New_York,910,NA,US,34.91,-79.82,875 +28331,"PO BOX",0,Cumberland,,,NC,"Cumberland County",America/New_York,910,NA,US,35.03,-79.01,434 +28332,"PO BOX",0,Dublin,,,NC,"Bladen County",America/New_York,910,NA,US,34.66,-78.74,800 +28333,STANDARD,0,Dudley,,,NC,"Wayne County",America/New_York,919,NA,US,35.27,-78.03,9420 +28334,STANDARD,0,Dunn,,,NC,"Sampson County",America/New_York,910,NA,US,35.31,-78.61,19890 +28335,"PO BOX",0,Dunn,,,NC,"Harnett County",America/New_York,910,NA,US,35.31,-78.61,1695 +28337,STANDARD,0,Elizabethtown,,"White Lake",NC,"Bladen County",America/New_York,910,NA,US,34.62,-78.61,7890 +28338,STANDARD,0,Ellerbe,,,NC,"Richmond County",America/New_York,910,NA,US,35.07,-79.76,3300 +28339,STANDARD,0,Erwin,,,NC,"Harnett County",America/New_York,910,NA,US,35.32,-78.67,5440 +28340,STANDARD,0,Fairmont,,Raynham,NC,"Robeson County",America/New_York,910,NA,US,34.49,-79.11,7560 +28341,STANDARD,0,Faison,,,NC,"Duplin County",America/New_York,910,NA,US,35.11,-78.13,3540 +28342,"PO BOX",0,Falcon,,,NC,"Cumberland County",America/New_York,910,NA,US,35.19,-78.64,411 +28343,STANDARD,0,Gibson,,,NC,"Scotland County",America/New_York,910,NA,US,34.75,-79.6,1200 +28344,STANDARD,0,Godwin,,,NC,"Sampson County",America/New_York,910,NA,US,35.21,-78.68,2720 +28345,STANDARD,0,Hamlet,,,NC,"Richmond County",America/New_York,910,NA,US,34.88,-79.7,9610 +28347,STANDARD,0,Hoffman,,,NC,"Richmond County",America/New_York,910,NA,US,35.03,-79.54,730 +28348,STANDARD,0,"Hope Mills",,,NC,"Cumberland County",America/New_York,910,NA,US,34.97,-78.95,33880 +28349,STANDARD,0,Kenansville,,,NC,"Duplin County",America/New_York,910,NA,US,34.96,-77.96,2930 +28350,"PO BOX",0,Lakeview,,,NC,"Moore County",America/New_York,,NA,US,35.24,-79.31,577 +28351,STANDARD,0,"Laurel Hill",,,NC,"Scotland County",America/New_York,910,NA,US,34.8,-79.54,3800 +28352,STANDARD,0,Laurinburg,,"E Laurinburg, East Laurinburg",NC,"Scotland County",America/New_York,910,NA,US,34.76,-79.47,17700 +28353,"PO BOX",0,Laurinburg,,,NC,"Scotland County",America/New_York,910,NA,US,34.76,-79.47,2202 +28355,"PO BOX",0,"Lemon Springs",,,NC,"Lee County",America/New_York,919,NA,US,35.38,-79.2,673 +28356,STANDARD,0,Linden,,,NC,"Harnett County",America/New_York,910,NA,US,35.25,-78.74,4770 +28357,STANDARD,0,"Lumber Bridge",,,NC,"Robeson County",America/New_York,,NA,US,34.88,-79.07,2200 +28358,STANDARD,0,Lumberton,,"Biggs Park",NC,"Robeson County",America/New_York,910,NA,US,34.63,-79.01,25780 +28359,"PO BOX",0,Lumberton,,,NC,"Robeson County",America/New_York,910,NA,US,34.63,-79.01,4827 +28360,STANDARD,0,Lumberton,,,NC,"Robeson County",America/New_York,910,NA,US,34.67,-79.07,9910 +28362,"PO BOX",0,Marietta,,,NC,"Robeson County",America/New_York,910,NA,US,34.36,-79.12,259 +28363,STANDARD,0,Marston,,,NC,"Richmond County",America/New_York,910,NA,US,34.96,-79.55,940 +28364,STANDARD,0,Maxton,,,NC,"Robeson County",America/New_York,910,NA,US,34.73,-79.35,10460 +28365,STANDARD,0,"Mount Olive",,,NC,"Wayne County",America/New_York,919,NA,US,35.19,-78.06,13000 +28366,STANDARD,0,"Newton Grove",,,NC,"Sampson County",America/New_York,910,NA,US,35.25,-78.35,4750 +28367,"PO BOX",0,Norman,,,NC,"Richmond County",America/New_York,910,NA,US,35.17,-79.72,311 +28368,"PO BOX",0,Olivia,,,NC,"Harnett County",America/New_York,,NA,US,35.37,-79.11,788 +28369,STANDARD,0,Orrum,,,NC,"Robeson County",America/New_York,910,NA,US,34.46,-79.01,1780 +28370,"PO BOX",0,Pinehurst,,,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.46,1707 +28371,STANDARD,0,Parkton,,,NC,"Robeson County",America/New_York,910,NA,US,34.9,-79.01,6130 +28372,STANDARD,0,Pembroke,,,NC,"Robeson County",America/New_York,910,NA,US,34.68,-79.19,10500 +28373,STANDARD,0,Pinebluff,,,NC,"Moore County",America/New_York,910,NA,US,35.1,-79.47,2160 +28374,STANDARD,0,Pinehurst,,,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.46,17430 +28375,"PO BOX",0,Proctorville,,,NC,"Robeson County",America/New_York,910,NA,US,34.48,-79.04,347 +28376,STANDARD,0,Raeford,,,NC,"Hoke County",America/New_York,910,NA,US,34.97,-79.22,38540 +28377,STANDARD,0,"Red Springs",,,NC,"Robeson County",America/New_York,910,NA,US,34.81,-79.18,9440 +28378,"PO BOX",0,Rex,,,NC,"Robeson County",America/New_York,910,NA,US,34.85,-79.05,231 +28379,STANDARD,0,Rockingham,,,NC,"Richmond County",America/New_York,910,NA,US,34.93,-79.76,19170 +28380,"PO BOX",0,Rockingham,,,NC,"Richmond County",America/New_York,910,NA,US,34.93,-79.76,1741 +28382,STANDARD,0,Roseboro,,,NC,"Sampson County",America/New_York,910,NA,US,34.95,-78.51,6030 +28383,STANDARD,0,Rowland,Raynham,,NC,"Robeson County",America/New_York,910,NA,US,34.53,-79.29,5650 +28384,STANDARD,0,"Saint Pauls",,,NC,"Bladen County",America/New_York,910,NA,US,34.8,-78.97,9550 +28385,STANDARD,0,Salemburg,,,NC,"Sampson County",America/New_York,910,NA,US,35.01,-78.5,2810 +28386,STANDARD,0,Shannon,Rennert,,NC,"Robeson County",America/New_York,,NA,US,34.83,-79.11,4800 +28387,STANDARD,0,"Southern Pines","Southern Pnes",,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.4,13730 +28388,"PO BOX",0,"Southern Pines","Southern Pnes",,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.4,1735 +28390,STANDARD,0,"Spring Lake",,"Olde Farm",NC,"Harnett County",America/New_York,,NA,US,35.17,-78.98,19750 +28391,STANDARD,0,Stedman,,,NC,"Cumberland County",America/New_York,910,NA,US,35.01,-78.69,4960 +28392,STANDARD,0,"Tar Heel",,,NC,"Bladen County",America/New_York,910,NA,US,34.73,-78.79,1470 +28393,STANDARD,0,Turkey,,,NC,"Sampson County",America/New_York,910,NA,US,34.99,-78.18,1710 +28394,STANDARD,0,Vass,,,NC,"Moore County",America/New_York,910,NA,US,35.25,-79.28,4750 +28395,STANDARD,0,Wade,,,NC,"Cumberland County",America/New_York,910,NA,US,35.16,-78.73,2320 +28396,STANDARD,0,Wagram,,,NC,"Scotland County",America/New_York,910,NA,US,34.88,-79.36,2160 +28398,STANDARD,0,Warsaw,Bowdens,,NC,"Duplin County",America/New_York,910,NA,US,34.99,-78.08,5840 +28399,STANDARD,0,"White Oak",,,NC,"Bladen County",America/New_York,910,NA,US,34.74,-78.7,1400 +28401,STANDARD,0,Wilmington,"Cape Fear",Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.27,-77.96,16190 +28402,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,1269 +28403,STANDARD,0,Wilmington,,"University Of Nc, Wilm",NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,24360 +28404,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,330 +28405,STANDARD,0,Wilmington,,"New Hanover County Airport, Wilm",NC,"New Hanover County",America/New_York,910,NA,US,34.26,-77.87,27130 +28406,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,1102 +28407,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,55 +28408,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,507 +28409,STANDARD,0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.15,-77.86,32550 +28410,UNIQUE,0,Wilmington,,"Bedford Fair Industries, Willow Ridge, Wilm",NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,0 +28411,STANDARD,0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.3,-77.79,34620 +28412,STANDARD,0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.14,-77.93,36290 +28420,STANDARD,0,Ash,,,NC,"Brunswick County",America/New_York,910,NA,US,34.07,-78.47,2890 +28421,STANDARD,0,Atkinson,,,NC,"Pender County",America/New_York,910,NA,US,34.52,-78.17,1240 +28422,STANDARD,0,Bolivia,,"Sunset Harbor",NC,"Brunswick County",America/New_York,910,NA,US,34.07,-78.14,6850 +28423,STANDARD,0,Bolton,,,NC,"Columbus County",America/New_York,910,NA,US,34.31,-78.4,1670 +28424,"PO BOX",0,Brunswick,,,NC,"Columbus County",America/New_York,910,NA,US,34.29,-78.7,382 +28425,STANDARD,0,Burgaw,"Saint Helena",,NC,"Pender County",America/New_York,910,NA,US,34.55,-77.92,8640 +28428,STANDARD,0,"Carolina Beach","Carolina Bch",,NC,"New Hanover County",America/New_York,910,NA,US,34.04,-77.89,6170 +28429,STANDARD,0,"Castle Hayne",,,NC,"New Hanover County",America/New_York,910,NA,US,34.35,-77.9,7460 +28430,STANDARD,0,"Cerro Gordo",,,NC,"Columbus County",America/New_York,910,NA,US,34.32,-78.92,1410 +28431,STANDARD,0,Chadbourn,,,NC,"Columbus County",America/New_York,910,NA,US,34.32,-78.82,5410 +28432,STANDARD,0,Clarendon,,,NC,"Columbus County",America/New_York,910,NA,US,34.17,-78.76,1690 +28433,STANDARD,0,Clarkton,,Emerson,NC,"Bladen County",America/New_York,910,NA,US,34.48,-78.65,3580 +28434,STANDARD,0,Council,,,NC,"Bladen County",America/New_York,910,NA,US,34.42,-78.46,840 +28435,STANDARD,0,Currie,,"Moores Creek National Battle",NC,"Pender County",America/New_York,910,NA,US,34.46,-78.1,1960 +28436,STANDARD,0,Delco,,,NC,"Columbus County",America/New_York,910,NA,US,34.28,-78.27,1800 +28438,STANDARD,0,Evergreen,Boardman,,NC,"Columbus County",America/New_York,910,NA,US,34.4,-78.9,1330 +28439,STANDARD,0,"Fair Bluff",,,NC,"Columbus County",America/New_York,910,NA,US,34.31,-79.03,980 +28441,STANDARD,0,Garland,Ingold,,NC,"Sampson County",America/New_York,910,NA,US,34.78,-78.39,2740 +28442,STANDARD,0,Hallsboro,,,NC,"Columbus County",America/New_York,910,NA,US,34.29,-78.59,1250 +28443,STANDARD,0,Hampstead,,,NC,"Pender County",America/New_York,910,NA,US,34.36,-77.71,23030 +28444,STANDARD,0,Harrells,,,NC,"Sampson County",America/New_York,910,NA,US,34.72,-78.2,1800 +28445,STANDARD,0,"Holly Ridge","Surf City, Topsail Beach",,NC,"Onslow County",America/New_York,910,NA,US,34.49,-77.55,8580 +28447,STANDARD,0,Ivanhoe,,,NC,"Sampson County",America/New_York,910,NA,US,34.6,-78.25,930 +28448,STANDARD,0,Kelly,,,NC,"Bladen County",America/New_York,910,NA,US,34.46,-78.32,680 +28449,STANDARD,0,"Kure Beach",,"Fort Fisher Air Force Statio",NC,"New Hanover County",America/New_York,910,NA,US,33.99,-77.91,1830 +28450,STANDARD,0,"Lake Waccamaw",,,NC,"Columbus County",America/New_York,910,NA,US,34.31,-78.51,1820 +28451,STANDARD,0,Leland,"Belville, Navassa, Northwest",,NC,"Brunswick County",America/New_York,910,NA,US,34.24,-78,34070 +28452,STANDARD,0,Longwood,,,NC,"Brunswick County",America/New_York,910,NA,US,34,-78.54,600 +28453,STANDARD,0,Magnolia,,,NC,"Duplin County",America/New_York,,NA,US,34.89,-78.05,3110 +28454,STANDARD,0,"Maple Hill",,,NC,"Onslow County",America/New_York,,NA,US,34.66,-77.69,2660 +28455,STANDARD,0,Nakina,,,NC,"Columbus County",America/New_York,910,NA,US,34.13,-78.66,1460 +28456,STANDARD,0,Riegelwood,"East Arcadia, Sandyfield","Acme, Northwest",NC,"Columbus County",America/New_York,910,NA,US,34.34,-78.26,2920 +28457,STANDARD,0,"Rocky Point",,,NC,"Pender County",America/New_York,910,NA,US,34.43,-77.88,9850 +28458,STANDARD,0,"Rose Hill",Greenevers,,NC,"Duplin County",America/New_York,910,NA,US,34.82,-78.02,4740 +28459,"PO BOX",0,Shallotte,,,NC,"Brunswick County",America/New_York,910,NA,US,33.97,-78.38,3161 +28460,STANDARD,0,"Sneads Ferry","N Topsail Bch, N Topsail Beach",,NC,"Onslow County",America/New_York,910,NA,US,34.55,-77.37,11210 +28461,STANDARD,0,Southport,"Bald Head Isl, Bald Head Island, Blng Spg Lks, Boiling Spring Lakes, Oak Island, Saint James","Bald Head, Bling Spr Lks",NC,"Brunswick County",America/New_York,910,NA,US,33.92,-78.02,19750 +28462,STANDARD,0,Supply,"Holden Beach",,NC,"Brunswick County",America/New_York,910,NA,US,34.01,-78.26,10410 +28463,STANDARD,0,"Tabor City",,,NC,"Columbus County",America/New_York,910,NA,US,34.14,-78.87,5860 +28464,STANDARD,0,Teachey,,,NC,"Duplin County",America/New_York,910,NA,US,34.78,-78.02,1830 +28465,STANDARD,0,"Oak Island","Caswell Beach","Fort Caswell, Ft Caswell, Long Beach, Sunny Point Mil Ocean, Sunny Point Military Ocean T, Yaupon Beach",NC,"Brunswick County",America/New_York,910,NA,US,33.91,-78.1,7110 +28466,STANDARD,0,Wallace,,,NC,"Duplin County",America/New_York,910,NA,US,34.73,-77.99,7570 +28467,STANDARD,0,Calabash,"Carolina Shor, Carolina Shores, Ocean Isl Bch, Ocean Isle Beach",,NC,"Brunswick County",America/New_York,910,NA,US,33.89,-78.57,9860 +28468,STANDARD,0,"Sunset Beach",Shallotte,"Sunset Bch",NC,"Brunswick County",America/New_York,910,NA,US,33.87,-78.51,4390 +28469,STANDARD,0,"Ocean Isle Beach","Ocean Isl Bch, Shallotte","Ocean Isle",NC,"Brunswick County",America/New_York,910,NA,US,33.93,-78.47,7550 +28470,STANDARD,0,Shallotte,"S Brunswick, South Brunswick",,NC,"Brunswick County",America/New_York,910,NA,US,33.95,-78.39,8410 +28472,STANDARD,0,Whiteville,,,NC,"Columbus County",America/New_York,910,NA,US,34.32,-78.7,14420 +28478,STANDARD,0,Willard,Watha,,NC,"Pender County",America/New_York,,NA,US,34.69,-77.98,3720 +28479,STANDARD,0,Winnabow,,,NC,"Brunswick County",America/New_York,910,NA,US,34.1,-78.02,5440 +28480,STANDARD,0,"Wrightsville Beach","Writsvlle Bch",,NC,"New Hanover County",America/New_York,910,NA,US,34.23,-77.8,2470 +28501,STANDARD,0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.27,-77.59,13460 +28502,"PO BOX",0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.27,-77.59,1303 +28503,"PO BOX",0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.27,-77.59,802 +28504,STANDARD,0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.22,-77.63,16970 +28508,STANDARD,0,Albertson,,,NC,"Duplin County",America/New_York,252,NA,US,35.11,-77.85,2090 +28509,"PO BOX",0,Alliance,,,NC,"Pamlico County",America/New_York,252,NA,US,35.14,-76.8,485 +28510,STANDARD,0,Arapahoe,"Minnesott Bch, Minnesott Beach",,NC,"Pamlico County",America/New_York,252,NA,US,35.01,-76.82,1370 +28511,STANDARD,0,Atlantic,,,NC,"Carteret County",America/New_York,252,NA,US,34.89,-76.33,450 +28512,STANDARD,0,"Atlantic Beach","Atlantic Bch, Indian Beach, Pine Knoll Shores, Pks, Salter Path","Atlanticbeach, Fort Macon Coast Guard Base",NC,"Carteret County",America/New_York,,NA,US,34.7,-76.73,2950 +28513,STANDARD,0,Ayden,,,NC,"Pitt County",America/New_York,252,NA,US,35.47,-77.42,8080 +28515,STANDARD,0,Bayboro,Mesic,,NC,"Pamlico County",America/New_York,252,NA,US,35.18,-76.7,1600 +28516,STANDARD,0,Beaufort,,"Cape Lookout National Seasho",NC,"Carteret County",America/New_York,252,NA,US,34.72,-76.65,9390 +28518,STANDARD,0,Beulaville,,,NC,"Duplin County",America/New_York,910,NA,US,34.92,-77.77,6930 +28519,"PO BOX",0,Bridgeton,,,NC,"Craven County",America/New_York,252,NA,US,35.12,-77.02,1121 +28520,STANDARD,0,"Cedar Island",,,NC,"Carteret County",America/New_York,252,NA,US,35,-76.32,210 +28521,STANDARD,0,Chinquapin,,,NC,"Duplin County",America/New_York,910,NA,US,34.82,-77.74,1780 +28522,"PO BOX",0,Comfort,,,NC,"Jones County",America/New_York,,NA,US,35.01,-77.49,133 +28523,STANDARD,0,"Cove City",,,NC,"Craven County",America/New_York,252,NA,US,35.18,-77.32,2180 +28524,STANDARD,0,Davis,,,NC,"Carteret County",America/New_York,,NA,US,34.79,-76.47,290 +28525,STANDARD,0,"Deep Run",,,NC,"Lenoir County",America/New_York,252,NA,US,35.15,-77.69,2890 +28526,STANDARD,0,Dover,,"Fort Barnwell",NC,"Craven County",America/New_York,252,NA,US,35.21,-77.43,1840 +28527,STANDARD,0,Ernul,,,NC,"Craven County",America/New_York,252,NA,US,35.29,-77.03,1040 +28528,STANDARD,0,Gloucester,,,NC,"Carteret County",America/New_York,,NA,US,34.72,-76.54,510 +28529,STANDARD,0,Grantsboro,,"Kennells Beach",NC,"Pamlico County",America/New_York,252,NA,US,35.07,-76.85,1730 +28530,STANDARD,0,Grifton,,,NC,"Pitt County",America/New_York,252,NA,US,35.37,-77.43,5960 +28531,STANDARD,0,"Harkers Island","Harkers Is",,NC,"Carteret County",America/New_York,,NA,US,34.69,-76.55,1010 +28532,STANDARD,0,Havelock,,,NC,"Craven County",America/New_York,252,NA,US,34.9,-76.89,19250 +28533,STANDARD,0,"Cherry Point",Havelock,"Cherry Point Marine Corps Ai, Mcas Cherry Point",NC,"Craven County",America/New_York,252,NA,US,34.9,-76.9,2306 +28537,STANDARD,0,Hobucken,,,NC,"Pamlico County",America/New_York,252,NA,US,35.26,-76.53,141 +28538,STANDARD,0,Hookerton,,,NC,"Greene County",America/New_York,,NA,US,35.42,-77.58,1900 +28539,STANDARD,0,Hubert,,,NC,"Onslow County",America/New_York,910,NA,US,34.66,-77.23,15080 +28540,STANDARD,0,Jacksonville,,"New River Marine Corps Air S",NC,"Onslow County",America/New_York,910,NA,US,34.76,-77.4,42380 +28541,"PO BOX",0,Jacksonville,,,NC,"Onslow County",America/New_York,910,NA,US,34.76,-77.4,877 +28542,"PO BOX",0,"Camp Lejeune",Jacksonville,"Cp Lejeune Mcb, Cp Lejeunemcb, Lejeune",NC,"Onslow County",America/New_York,910,NA,US,34.68,-77.34,7332 +28543,STANDARD,0,"Tarawa Terrace","Jacksonville, Tarawa Ter","Tarawa, Tarawa Tr",NC,"Onslow County",America/New_York,910,NA,US,34.73,-77.37,3870 +28544,STANDARD,0,"Midway Park",Jacksonville,,NC,"Onslow County",America/New_York,910,NA,US,34.73,-77.3,4240 +28545,STANDARD,0,"Mccutcheon Field","Jacksonville, Mccutchn Fld","Mc Cutcheon Field",NC,"Onslow County",America/New_York,910,NA,US,34.67,-77.52,1177 +28546,STANDARD,0,Jacksonville,,,NC,"Onslow County",America/New_York,910,NA,US,34.8,-77.36,42290 +28547,STANDARD,0,"Camp Lejeune",,"Naval Hos, Naval Hospital",NC,"Onslow County",America/New_York,910,NA,US,34.68,-77.34,6710 +28551,STANDARD,0,"La Grange",,,NC,"Lenoir County",America/New_York,252,NA,US,35.3,-77.78,11090 +28552,STANDARD,0,Lowland,,,NC,"Pamlico County",America/New_York,252,NA,US,35.3,-76.57,152 +28553,STANDARD,0,Marshallberg,,,NC,"Carteret County",America/New_York,252,NA,US,34.73,-76.51,340 +28554,"PO BOX",0,Maury,,,NC,"Greene County",America/New_York,252,NA,US,35.48,-77.59,568 +28555,STANDARD,0,Maysville,,,NC,"Onslow County",America/New_York,910,NA,US,34.9,-77.23,4480 +28556,STANDARD,0,Merritt,,,NC,"Pamlico County",America/New_York,252,NA,US,35.11,-76.69,680 +28557,STANDARD,0,"Morehead City",,,NC,"Carteret County",America/New_York,252,NA,US,34.72,-76.73,13160 +28560,STANDARD,0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,23520 +28561,"PO BOX",0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,1645 +28562,STANDARD,0,"New Bern","Trent Woods",,NC,"Craven County",America/New_York,252,NA,US,35.08,-77.13,35480 +28563,"PO BOX",0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,694 +28564,"PO BOX",0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,350 +28570,STANDARD,0,Newport,Bogue,,NC,"Carteret County",America/New_York,252,NA,US,34.78,-76.86,18810 +28571,STANDARD,0,Oriental,,,NC,"Pamlico County",America/New_York,252,NA,US,35.03,-76.68,2200 +28572,STANDARD,0,"Pink Hill",,,NC,"Duplin County",America/New_York,252,NA,US,35.05,-77.74,5260 +28573,STANDARD,0,Pollocksville,,,NC,"Jones County",America/New_York,252,NA,US,35,-77.22,1750 +28574,STANDARD,0,Richlands,,,NC,"Onslow County",America/New_York,910,NA,US,34.89,-77.54,16560 +28575,"PO BOX",0,"Salter Path",,,NC,"Carteret County",America/New_York,,NA,US,34.71,-76.88,381 +28577,STANDARD,0,Sealevel,,,NC,"Carteret County",America/New_York,252,NA,US,34.89,-76.39,210 +28578,STANDARD,0,"Seven Springs",,,NC,"Wayne County",America/New_York,252,NA,US,35.22,-77.84,4920 +28579,STANDARD,0,Smyrna,Williston,,NC,"Carteret County",America/New_York,,NA,US,34.76,-76.51,470 +28580,STANDARD,0,"Snow Hill",,,NC,"Greene County",America/New_York,252,NA,US,35.45,-77.67,8140 +28581,STANDARD,0,Stacy,Sealevel,,NC,"Carteret County",America/New_York,252,NA,US,34.85,-76.41,170 +28582,STANDARD,0,Stella,,,NC,"Onslow County",America/New_York,252,NA,US,34.77,-77.12,1900 +28583,"PO BOX",0,Stonewall,,,NC,"Pamlico County",America/New_York,252,NA,US,35.13,-76.74,232 +28584,STANDARD,0,Swansboro,"Cape Carteret, Cedar Point, Peletier",,NC,"Carteret County",America/New_York,"252,910",NA,US,34.69,-77.12,12630 +28585,STANDARD,0,Trenton,,,NC,"Jones County",America/New_York,252,NA,US,35.06,-77.35,2950 +28586,STANDARD,0,Vanceboro,,,NC,"Craven County",America/New_York,252,NA,US,35.3,-77.15,5730 +28587,STANDARD,0,Vandemere,,,NC,"Pamlico County",America/New_York,252,NA,US,35.18,-76.66,210 +28589,"PO BOX",0,Williston,,,NC,"Carteret County",America/New_York,,NA,US,34.8,-76.49,148 +28590,STANDARD,0,Winterville,,,NC,"Pitt County",America/New_York,252,NA,US,35.52,-77.39,25660 +28594,STANDARD,0,"Emerald Isle",,,NC,"Carteret County",America/New_York,252,NA,US,34.69,-76.97,3970 +28601,STANDARD,0,Hickory,,"Bethlehem, Lenoir Rhyne, Longview, View Mont",NC,"Catawba County",America/New_York,828,NA,US,35.77,-81.33,44580 +28602,STANDARD,0,Hickory,,"Long View, Longview, Mountain View, Mt View",NC,"Catawba County",America/New_York,828,NA,US,35.73,-81.32,24150 +28603,"PO BOX",0,Hickory,,,NC,"Catawba County",America/New_York,828,NA,US,35.73,-81.32,3286 +28604,STANDARD,0,"Banner Elk","Beech Mountain, Beech Mtn, Seven Devils, Sugar Mountain, Sugar Mtn","Balm, Elk Valley, Foscoe, Grandfather, Kellersville, Matney, Norwood Hollow, Rominger, White Rock",NC,"Watauga County",America/New_York,828,NA,US,36.16,-81.87,5260 +28605,STANDARD,0,"Blowing Rock",,"Aho, Bamboo, Mayview Park",NC,"Watauga County",America/New_York,828,NA,US,36.12,-81.67,3420 +28606,STANDARD,0,Boomer,,,NC,"Wilkes County",America/New_York,336,NA,US,36.05,-81.32,1670 +28607,STANDARD,0,Boone,,"Adams, Deerfield, Grandview Heights, Hillcrest, Hodges Gap, Laxon, Meat Camp, Perkinsville, Rutherwood, Sands, Shulls Mills",NC,"Watauga County",America/New_York,828,NA,US,36.2,-81.66,18950 +28608,UNIQUE,0,Boone,,"Appalachian State Univ",NC,"Watauga County",America/New_York,828,NA,US,36.2,-81.66,273 +28609,STANDARD,0,Catawba,Longisland,,NC,"Catawba County",America/New_York,828,NA,US,35.7,-81.07,5370 +28610,STANDARD,0,Claremont,,,NC,"Catawba County",America/New_York,828,NA,US,35.71,-81.15,9000 +28611,STANDARD,0,Collettsville,,,NC,"Caldwell County",America/New_York,828,NA,US,36.01,-81.74,590 +28612,STANDARD,0,"Connelly Springs","Connelly Spg",,NC,"Burke County",America/New_York,828,NA,US,35.65,-81.54,9040 +28613,STANDARD,0,Conover,,,NC,"Catawba County",America/New_York,828,NA,US,35.7,-81.21,20600 +28615,STANDARD,0,Creston,,"Ashland, Fig, Grayson, Parker",NC,"Ashe County",America/New_York,336,NA,US,36.44,-81.65,1450 +28616,"PO BOX",0,Crossnore,,,NC,"Avery County",America/New_York,828,NA,US,36.02,-81.93,640 +28617,STANDARD,0,Crumpler,,"Chestnut Hill, Nathans Creek, Shatley Springs, Weaversford",NC,"Ashe County",America/New_York,336,NA,US,36.47,-81.37,1680 +28618,STANDARD,0,"Deep Gap",Triplett,"Meadow Creek, Stony Fork",NC,"Watauga County",America/New_York,828,NA,US,36.23,-81.51,2140 +28619,"PO BOX",0,Drexel,,,NC,"Burke County",America/New_York,828,NA,US,35.75,-81.6,2613 +28621,STANDARD,0,Elkin,,,NC,"Surry County",America/New_York,336,NA,US,36.25,-80.84,8200 +28622,STANDARD,0,"Elk Park",,"Cranberry, Darkridge, Flat Springs, Heaton, Whaley",NC,"Avery County",America/New_York,828,NA,US,36.15,-81.98,1790 +28623,STANDARD,0,Ennice,,"Barrett, Saddle",NC,"Alleghany County",America/New_York,336,NA,US,36.55,-81,1280 +28624,STANDARD,0,Ferguson,,"Champion, Darby, Denny, Hendrix",NC,"Wilkes County",America/New_York,336,NA,US,36.13,-81.41,1200 +28625,STANDARD,0,Statesville,,,NC,"Iredell County",America/New_York,"980,704",NA,US,35.87,-80.89,33090 +28626,STANDARD,0,Fleetwood,,,NC,"Ashe County",America/New_York,336,NA,US,36.3,-81.51,2060 +28627,STANDARD,0,"Glade Valley",,"Cherry Lane, Hare",NC,"Alleghany County",America/New_York,336,NA,US,36.48,-81.05,1030 +28628,"PO BOX",0,"Glen Alpine",,,NC,"Burke County",America/New_York,828,NA,US,35.73,-81.79,1641 +28629,STANDARD,0,"Glendale Springs","Glendale Spgs",,NC,"Ashe County",America/New_York,336,NA,US,36.35,-81.37,233 +28630,STANDARD,0,"Granite Falls",Sawmills,"Baton, Dudley Shoals, Grace Chapel",NC,"Caldwell County",America/New_York,828,NA,US,35.8,-81.42,16180 +28631,STANDARD,0,"Grassy Creek",,"Helton, Sussex",NC,"Ashe County",America/New_York,336,NA,US,36.56,-81.4,510 +28633,UNIQUE,0,Lenoir,,"Broyhill Furniture",NC,"Caldwell County",America/New_York,828,NA,US,35.9,-81.53,0 +28634,STANDARD,0,Harmony,,"Countyline, Houstonville",NC,"Iredell County",America/New_York,"336,704,980",NA,US,35.95,-80.77,4270 +28635,STANDARD,0,Hays,,Hayes,NC,"Wilkes County",America/New_York,336,NA,US,36.24,-81.11,3000 +28636,STANDARD,0,Hiddenite,,Vashti,NC,"Alexander County",America/New_York,704,NA,US,35.9,-81.09,4330 +28637,STANDARD,0,Hildebran,,,NC,"Burke County",America/New_York,"704,828",NA,US,35.71,-81.42,1930 +28638,STANDARD,0,Hudson,,,NC,"Caldwell County",America/New_York,828,NA,US,35.84,-81.48,10260 +28640,STANDARD,0,Jefferson,,"Orion, Rhine, Theta, Wagoner",NC,"Ashe County",America/New_York,336,NA,US,36.42,-81.46,3840 +28641,"PO BOX",0,"Jonas Ridge",,,NC,"Avery County",America/New_York,828,NA,US,35.97,-81.89,225 +28642,STANDARD,0,Jonesville,,Arlington,NC,"Yadkin County",America/New_York,336,NA,US,36.23,-80.84,4280 +28643,STANDARD,0,Lansing,Husk,"Apple Grove, Ball, Bly, Brandon, Comet, Dolinger, Farmers Store, Little Horse Creek, Sturgills, Tuckerdale",NC,"Ashe County",America/New_York,336,NA,US,36.49,-81.5,2390 +28644,STANDARD,0,"Laurel Springs","Laurel Spgs",,NC,"Alleghany County",America/New_York,,NA,US,36.44,-81.25,1160 +28645,STANDARD,0,Lenoir,"Boone, Cajahs Mountain, Cajahs Mtn, Cedar Rock","Brown Mountain Beach, Edgemont, Gamewell, Joyceton, Kings Creek, Laytown, Mortimer, Upton, Valmead, Warrior",NC,"Caldwell County",America/New_York,828,NA,US,35.9,-81.53,36150 +28646,"PO BOX",0,Linville,,,NC,"Avery County",America/New_York,828,NA,US,36.08,-81.85,827 +28647,"PO BOX",0,"Linville Falls","Linville Fls",,NC,"Avery County",America/New_York,828,NA,US,35.94,-81.97,248 +28649,STANDARD,0,"Mc Grady",,"Halls Mills, Mcgrady, Radical",NC,"Wilkes County",America/New_York,336,NA,US,36.33,-81.23,750 +28650,STANDARD,0,Maiden,,,NC,"Catawba County",America/New_York,828,NA,US,35.57,-81.2,11460 +28651,STANDARD,0,"Millers Creek",Wilbar,,NC,"Wilkes County",America/New_York,336,NA,US,36.18,-81.23,5370 +28652,"PO BOX",0,Minneapolis,,"Carpenter Bottom",NC,"Avery County",America/New_York,828,NA,US,36.1,-81.99,221 +28653,"PO BOX",0,Montezuma,,,NC,"Avery County",America/New_York,828,NA,US,36.05,-81.9,258 +28654,STANDARD,0,"Moravian Falls","Moravian Fls",,NC,"Wilkes County",America/New_York,336,NA,US,36.1,-81.18,2990 +28655,STANDARD,0,Morganton,,"Bridgewater, Brindle Town, Burkemont, Calvin, Enola, Joy, Oak Hill, Petersburg, Pleasant Grove, Sunnyside",NC,"Burke County",America/New_York,828,NA,US,35.74,-81.69,41630 +28656,UNIQUE,0,"North Wilkesboro","N Wilkesboro","Lowes Co Inc",NC,"Wilkes County",America/New_York,336,NA,US,36.16,-81.14,0 +28657,STANDARD,0,Newland,,"Altamont, Beech Bottom, Chestnut Dale, Cranberry Gap, Hughes, Ingalls, Pyatte, Roaring Creek, Senia, Spear, Stamey Branch, Three Mile, Valley",NC,"Avery County",America/New_York,828,NA,US,36.08,-81.92,6660 +28658,STANDARD,0,Newton,,"Blackburn, Drums Crossroads, Duan, Olivers Crossroads, Propst Crossroads, South Newton, Startown",NC,"Catawba County",America/New_York,"704,828,980",NA,US,35.66,-81.21,23140 +28659,STANDARD,0,"North Wilkesboro","N Wilkesboro","Call, Cricket, Fairplains, Hunting Creek, Mulberry, Quarry, Spurgeon, Windy Gap",NC,"Wilkes County",America/New_York,336,NA,US,36.16,-81.14,16000 +28660,STANDARD,0,Olin,,,NC,"Iredell County",America/New_York,704,NA,US,35.95,-80.85,1910 +28661,"PO BOX",0,Patterson,,"Happy Valley",NC,"Caldwell County",America/New_York,828,NA,US,36.03,-81.58,634 +28662,"PO BOX",0,Pineola,,,NC,"Avery County",America/New_York,828,NA,US,36.02,-81.9,424 +28663,STANDARD,0,"Piney Creek",,,NC,"Alleghany County",America/New_York,336,NA,US,36.55,-81.3,500 +28664,"PO BOX",0,Plumtree,,,NC,"Avery County",America/New_York,828,NA,US,35.98,-82,443 +28665,STANDARD,0,Purlear,,"Maple Springs, Parsonville, Walsh",NC,"Wilkes County",America/New_York,336,NA,US,36.21,-81.38,2010 +28666,"PO BOX",0,Icard,,,NC,"Burke County",America/New_York,828,NA,US,35.73,-81.47,1608 +28667,"PO BOX",0,Rhodhiss,,Rhodhizz,NC,"Caldwell County",America/New_York,,NA,US,35.77,-81.43,753 +28668,STANDARD,0,"Roaring Gap",,,NC,"Alleghany County",America/New_York,336,NA,US,36.4,-80.98,290 +28669,STANDARD,0,"Roaring River",,Lomax,NC,"Wilkes County",America/New_York,336,NA,US,36.21,-81,2320 +28670,STANDARD,0,Ronda,,"Clingman, Dimmette",NC,"Wilkes County",America/New_York,336,NA,US,36.22,-80.94,2280 +28671,"PO BOX",0,"Rutherford College","Rutherfrd Clg, Rutherfrd Col",,NC,"Burke County",America/New_York,828,NA,US,35.75,-81.53,1219 +28672,STANDARD,0,Scottville,,"Peden, Topia",NC,"Ashe County",America/New_York,336,NA,US,36.48,-81.33,50 +28673,STANDARD,0,"Sherrills Ford","Sherrills Frd",,NC,"Catawba County",America/New_York,828,NA,US,35.57,-80.99,6110 +28674,UNIQUE,1,"North Wilkesboro","N Wilkesboro","Northwestern Bank",NC,"Wilkes County",America/New_York,336,NA,US,36.15,-81.14,0 +28675,STANDARD,0,Sparta,Whitehead,"Edwards Crossroads, Stratford, Twin Oaks",NC,"Alleghany County",America/New_York,336,NA,US,36.5,-81.13,4990 +28676,STANDARD,0,"State Road",,"Kapps Mill, Mountain Park, State Rd",NC,"Surry County",America/New_York,336,NA,US,36.33,-80.85,3010 +28677,STANDARD,0,Statesville,,"Bradfords Cross Roads, Celeste Hinkle, Charles, East Monbo, Elmwood, Eufola, Loray, Love Valley, Sharon, Statesville West",NC,"Iredell County",America/New_York,"704,980",NA,US,35.78,-80.88,29860 +28678,STANDARD,0,"Stony Point",,,NC,"Alexander County",America/New_York,704,NA,US,35.86,-81.04,4250 +28679,STANDARD,0,"Sugar Grove",,"Amantha, Beech Creek, Peoria, Sweetwater",NC,"Watauga County",America/New_York,828,NA,US,36.26,-81.83,1650 +28680,"PO BOX",0,Morganton,,,NC,"Burke County",America/New_York,828,NA,US,35.74,-81.69,3560 +28681,STANDARD,0,Taylorsville,,"All Healing Springs, Ellendale, Kilby, Liledown, Little River, Paynes Store",NC,"Alexander County",America/New_York,828,NA,US,35.92,-81.17,20340 +28682,STANDARD,0,Terrell,,,NC,"Catawba County",America/New_York,828,NA,US,35.58,-80.97,1180 +28683,STANDARD,0,Thurmond,,Doughton,NC,"Surry County",America/New_York,336,NA,US,36.36,-80.94,1350 +28684,STANDARD,0,Todd,,"Brownwood, Tamarack, Toliver, Woodford",NC,"Ashe County",America/New_York,,NA,US,36.3,-81.6,1600 +28685,STANDARD,0,Traphill,,"Abshers, Dockery, Joynes, Moxley",NC,"Wilkes County",America/New_York,336,NA,US,36.35,-81.03,1360 +28687,"PO BOX",0,Statesville,,,NC,"Iredell County",America/New_York,704,NA,US,35.78,-80.88,2114 +28688,"PO BOX",0,Turnersburg,,,NC,"Iredell County",America/New_York,704,NA,US,35.9,-80.8,147 +28689,STANDARD,0,"Union Grove",,Osbornville,NC,"Iredell County",America/New_York,"336,704",NA,US,36.02,-80.86,1740 +28690,STANDARD,0,Valdese,,,NC,"Burke County",America/New_York,828,NA,US,35.74,-81.55,7530 +28691,"PO BOX",0,"Valle Crucis","Banner Elk",,NC,"Watauga County",America/New_York,828,NA,US,36.21,-81.78,281 +28692,STANDARD,0,Vilas,,"Reese, Sherwood",NC,"Watauga County",America/New_York,828,NA,US,36.27,-81.81,3390 +28693,STANDARD,0,Warrensville,,Clifton,NC,"Ashe County",America/New_York,336,NA,US,36.46,-81.55,1130 +28694,STANDARD,0,"West Jefferson","W Jefferson","Baldwin, Beaver Creek, Idlewild, Index, Smethport, Treetop",NC,"Ashe County",America/New_York,336,NA,US,36.39,-81.49,6590 +28697,STANDARD,0,Wilkesboro,,Goshen,NC,"Wilkes County",America/New_York,336,NA,US,36.14,-81.16,10420 +28698,STANDARD,0,Zionville,,"Mabel, Silverstone",NC,"Watauga County",America/New_York,828,NA,US,36.32,-81.74,1650 +28699,"PO BOX",0,Scotts,,,NC,"Alexander County",America/New_York,704,NA,US,35.84,-81,247 +28701,STANDARD,0,Alexander,,,NC,"Buncombe County",America/New_York,828,NA,US,35.7,-82.63,3580 +28702,STANDARD,0,Almond,,,NC,"Graham County",America/New_York,828,NA,US,35.41,-83.61,350 +28704,STANDARD,0,Arden,,"Oak Park, Royal Pines, West Haven",NC,"Buncombe County",America/New_York,828,NA,US,35.46,-82.58,19900 +28705,STANDARD,0,Bakersville,,,NC,"Mitchell County",America/New_York,828,NA,US,36.01,-82.15,4710 +28707,"PO BOX",0,Balsam,,,NC,"Jackson County",America/New_York,828,NA,US,35.42,-83.08,455 +28708,STANDARD,0,"Balsam Grove",,,NC,"Transylvania County",America/New_York,828,NA,US,35.22,-82.87,460 +28709,STANDARD,0,Barnardsville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.77,-82.45,1790 +28710,"PO BOX",0,"Bat Cave",,,NC,"Henderson County",America/New_York,828,NA,US,35.45,-82.28,254 +28711,STANDARD,0,"Black Mountain","Black Mtn",,NC,"Buncombe County",America/New_York,828,NA,US,35.61,-82.33,11260 +28712,STANDARD,0,Brevard,,,NC,"Transylvania County",America/New_York,828,NA,US,35.23,-82.73,14800 +28713,STANDARD,0,"Bryson City",,"Alarka, Ela, Needmore",NC,"Swain County",America/New_York,828,NA,US,35.42,-83.44,7310 +28714,STANDARD,0,Burnsville,,,NC,"Yancey County",America/New_York,828,NA,US,35.91,-82.29,12580 +28715,STANDARD,0,Candler,"Biltmore Lake",,NC,"Buncombe County",America/New_York,828,NA,US,35.53,-82.69,23420 +28716,STANDARD,0,Canton,,,NC,"Haywood County",America/New_York,828,NA,US,35.54,-82.84,15020 +28717,STANDARD,0,Cashiers,,,NC,"Jackson County",America/New_York,828,NA,US,35.1,-83.09,2240 +28718,STANDARD,0,"Cedar Mountain","Cedar Mtn",,NC,"Transylvania County",America/New_York,828,NA,US,35.14,-82.64,530 +28719,STANDARD,0,Cherokee,,"Ocono Lufty",NC,"Jackson County",America/New_York,828,NA,US,35.47,-83.31,7670 +28720,"PO BOX",0,"Chimney Rock",,,NC,"Rutherford County",America/New_York,828,NA,US,35.45,-82.25,127 +28721,STANDARD,0,Clyde,,,NC,"Haywood County",America/New_York,828,NA,US,35.53,-82.91,8940 +28722,STANDARD,0,Columbus,,,NC,"Polk County",America/New_York,828,NA,US,35.24,-82.2,5360 +28723,STANDARD,0,Cullowhee,,"East Laport, Erastus, Norton, Speedwell",NC,"Jackson County",America/New_York,828,NA,US,35.31,-83.17,4710 +28724,"PO BOX",0,Dana,,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.37,2199 +28725,"PO BOX",0,Dillsboro,,,NC,"Jackson County",America/New_York,828,NA,US,35.37,-83.26,1039 +28726,STANDARD,0,"East Flat Rock","E Flat Rock",,NC,"Henderson County",America/New_York,828,NA,US,35.28,-82.41,2950 +28727,"PO BOX",0,Edneyville,,,NC,"Henderson County",America/New_York,828,NA,US,35.39,-82.32,1031 +28728,"PO BOX",0,Enka,,"Enka Village",NC,"Buncombe County",America/New_York,828,NA,US,35.56,-82.65,1484 +28729,STANDARD,0,Etowah,,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.6,3370 +28730,STANDARD,0,Fairview,,,NC,"Buncombe County",America/New_York,828,NA,US,35.52,-82.4,8670 +28731,STANDARD,0,"Flat Rock",,,NC,"Henderson County",America/New_York,828,NA,US,35.27,-82.44,7820 +28732,STANDARD,0,Fletcher,"Mills River","Carolina Hills",NC,"Henderson County",America/New_York,828,NA,US,35.43,-82.5,17290 +28733,STANDARD,0,"Fontana Dam",,,NC,"Graham County",America/New_York,828,NA,US,35.43,-83.81,64 +28734,STANDARD,0,Franklin,,"Burningtown, Cartoogechaye, Cowee, Cullasaja, East Franklin, Ellijay, Hickory Knoll, Higdonville, Iotla, Prentiss, Riverside, Union, Watauga",NC,"Macon County",America/New_York,828,NA,US,35.18,-83.38,22120 +28735,STANDARD,0,Gerton,,,NC,"Henderson County",America/New_York,828,NA,US,35.48,-82.35,230 +28736,STANDARD,0,Glenville,,,NC,"Jackson County",America/New_York,828,NA,US,35.19,-83.08,540 +28737,"PO BOX",0,Glenwood,Marion,,NC,"McDowell County",America/New_York,828,NA,US,35.6,-81.97,63 +28738,"PO BOX",0,Hazelwood,,,NC,"Haywood County",America/New_York,828,NA,US,35.47,-83,595 +28739,STANDARD,0,Hendersonville,"Hendersonvlle, Laurel Park",,NC,"Henderson County",America/New_York,828,NA,US,35.26,-82.55,17120 +28740,STANDARD,0,"Green Mountain","Green Mtn","Double Island, Green Mt, Greenmountain, Grn Mountain, Lower Pig Pen, Pleasant Gap, Relief, Upper Pig Pen",NC,"Yancey County",America/New_York,828,NA,US,36.09,-82.27,1800 +28741,STANDARD,0,Highlands,,,NC,"Macon County",America/New_York,828,NA,US,35.05,-83.19,3030 +28742,STANDARD,0,"Horse Shoe",,,NC,"Henderson County",America/New_York,828,NA,US,35.39,-82.64,2830 +28743,STANDARD,0,"Hot Springs",,"Bluff, Joe, Luck, Paint Rock, Spring Creek, Trust",NC,"Madison County",America/New_York,828,NA,US,35.8,-82.88,1520 +28744,"PO BOX",0,Franklin,,,NC,"Macon County",America/New_York,828,NA,US,35.18,-83.38,2031 +28745,STANDARD,0,"Lake Junaluska","Lk Junaluska",Assembly,NC,"Haywood County",America/New_York,828,NA,US,35.52,-82.97,1220 +28746,STANDARD,0,"Lake Lure",,,NC,"Rutherford County",America/New_York,828,NA,US,35.44,-82.2,2190 +28747,STANDARD,0,"Lake Toxaway",,,NC,"Transylvania County",America/New_York,828,NA,US,35.13,-82.93,1550 +28748,STANDARD,0,Leicester,,,NC,"Buncombe County",America/New_York,828,NA,US,35.65,-82.68,10860 +28749,"PO BOX",0,"Little Switzerland","Ltl Switzrlnd",,NC,"McDowell County",America/New_York,828,NA,US,35.84,-82.1,352 +28750,"PO BOX",0,Lynn,,,NC,"Polk County",America/New_York,828,NA,US,35.23,-82.25,354 +28751,STANDARD,0,"Maggie Valley",,,NC,"Haywood County",America/New_York,828,NA,US,35.51,-83.09,3380 +28752,STANDARD,0,Marion,,,NC,"McDowell County",America/New_York,828,NA,US,35.68,-82,23990 +28753,STANDARD,0,Marshall,,,NC,"Madison County",America/New_York,828,NA,US,35.79,-82.68,9080 +28754,STANDARD,0,"Mars Hill",,,NC,"Madison County",America/New_York,828,NA,US,35.82,-82.55,6510 +28755,"PO BOX",0,Micaville,,,NC,"Yancey County",America/New_York,828,NA,US,35.9,-82.21,661 +28756,STANDARD,0,"Mill Spring",,,NC,"Polk County",America/New_York,828,NA,US,35.29,-82.16,3470 +28757,"PO BOX",0,Montreat,,,NC,"Buncombe County",America/New_York,828,NA,US,35.65,-82.31,532 +28758,"PO BOX",0,"Mountain Home","Hendersonville, Hendersonvlle",,NC,"Henderson County",America/New_York,828,NA,US,35.36,-82.5,1617 +28759,STANDARD,0,"Mills River",,,NC,"Henderson County",America/New_York,828,NA,US,35.39,-82.57,6820 +28760,"PO BOX",0,Naples,,,NC,"Henderson County",America/New_York,828,NA,US,35.4,-82.47,570 +28761,STANDARD,0,Nebo,,,NC,"McDowell County",America/New_York,828,NA,US,35.71,-81.93,6680 +28762,STANDARD,0,"Old Fort",,,NC,"McDowell County",America/New_York,828,NA,US,35.63,-82.17,5780 +28763,STANDARD,0,Otto,,,NC,"Macon County",America/New_York,828,NA,US,35.06,-83.38,2290 +28765,"PO BOX",0,Penland,,,NC,"Mitchell County",America/New_York,828,NA,US,35.96,-82.12,128 +28766,STANDARD,0,Penrose,,,NC,"Transylvania County",America/New_York,828,NA,US,35.25,-82.62,1400 +28768,STANDARD,0,"Pisgah Forest",,,NC,"Transylvania County",America/New_York,828,NA,US,35.27,-82.67,5850 +28770,"PO BOX",0,Ridgecrest,,,NC,"Buncombe County",America/New_York,828,NA,US,35.59,-82.3,351 +28771,STANDARD,0,Robbinsville,"Lake Santeetlah, Lk Santeetlah, Tapoco",,NC,"Graham County",America/New_York,828,NA,US,35.32,-83.8,6490 +28772,STANDARD,0,Rosman,,,NC,"Transylvania County",America/New_York,828,NA,US,35.12,-82.83,1570 +28773,STANDARD,0,Saluda,,,NC,"Polk County",America/New_York,828,NA,US,35.23,-82.34,2710 +28774,STANDARD,0,Sapphire,,,NC,"Transylvania County",America/New_York,828,NA,US,35.1,-83,910 +28775,STANDARD,0,"Scaly Mountain","Scaly Mtn",,NC,"Macon County",America/New_York,828,NA,US,35.01,-83.31,480 +28776,"PO BOX",0,Skyland,,,NC,"Buncombe County",America/New_York,828,NA,US,35.48,-82.52,1104 +28777,STANDARD,0,"Spruce Pine",,,NC,"Mitchell County",America/New_York,828,NA,US,35.91,-82.06,7170 +28778,STANDARD,0,Swannanoa,,,NC,"Buncombe County",America/New_York,828,NA,US,35.6,-82.39,8530 +28779,STANDARD,0,Sylva,,,NC,"Jackson County",America/New_York,828,NA,US,35.37,-83.22,12400 +28781,STANDARD,0,Topton,Aquone,,NC,"Macon County",America/New_York,,NA,US,35.22,-83.64,650 +28782,STANDARD,0,Tryon,,,NC,"Polk County",America/New_York,828,NA,US,35.2,-82.23,4700 +28783,STANDARD,0,Tuckasegee,,,NC,"Jackson County",America/New_York,828,NA,US,35.27,-83.12,1120 +28784,"PO BOX",0,Tuxedo,,,NC,"Henderson County",America/New_York,828,NA,US,35.22,-82.42,209 +28785,STANDARD,0,Waynesville,,,NC,"Haywood County",America/New_York,828,NA,US,35.63,-83.02,6420 +28786,STANDARD,0,Waynesville,Hazelwood,,NC,"Haywood County",America/New_York,828,NA,US,35.48,-82.99,16960 +28787,STANDARD,0,Weaverville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.69,-82.55,19390 +28788,"PO BOX",0,Webster,,,NC,"Jackson County",America/New_York,828,NA,US,35.35,-83.21,776 +28789,STANDARD,0,Whittier,,,NC,"Jackson County",America/New_York,828,NA,US,35.43,-83.27,4910 +28790,STANDARD,0,Zirconia,,,NC,"Henderson County",America/New_York,828,NA,US,35.2,-82.48,2640 +28791,STANDARD,0,Hendersonville,Hendersonvlle,,NC,"Henderson County",America/New_York,828,NA,US,35.36,-82.51,12460 +28792,STANDARD,0,Hendersonville,Hendersonvlle,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.46,27100 +28793,"PO BOX",0,Hendersonville,Hendersonvlle,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.46,2318 +28801,STANDARD,0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.59,-82.56,10200 +28802,"PO BOX",0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,1439 +28803,STANDARD,0,Asheville,"Biltmore Forest, Biltmore Frst",,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,27610 +28804,STANDARD,0,Asheville,Woodfin,,NC,"Buncombe County",America/New_York,828,NA,US,35.65,-82.56,18260 +28805,STANDARD,0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.63,-82.48,15340 +28806,STANDARD,0,Asheville,,"West Ashville",NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.61,35610 +28810,STANDARD,0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,0 +28813,"PO BOX",0,Asheville,,Biltmor,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,653 +28814,"PO BOX",0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,748 +28815,"PO BOX",0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,1007 +28816,"PO BOX",0,Asheville,,"W Asheville",NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,1505 +28901,STANDARD,0,Andrews,,,NC,"Cherokee County",America/New_York,828,NA,US,35.19,-83.82,3990 +28902,STANDARD,0,Brasstown,,,NC,"Clay County",America/New_York,828,NA,US,35.02,-83.96,1150 +28903,"PO BOX",0,Culberson,,,NC,"Cherokee County",America/New_York,828,NA,US,34.99,-84.16,118 +28904,STANDARD,0,Hayesville,,,NC,"Clay County",America/New_York,828,NA,US,35.04,-83.81,7130 +28905,STANDARD,0,Marble,,,NC,"Cherokee County",America/New_York,828,NA,US,35.17,-83.92,2380 +28906,STANDARD,0,Murphy,,,NC,"Cherokee County",America/New_York,828,NA,US,35.09,-84.02,15360 +28909,STANDARD,0,Warne,,,NC,"Clay County",America/New_York,828,NA,US,34.99,-83.9,780 +29001,STANDARD,0,Alcolu,,,SC,"Clarendon County",America/New_York,803,NA,US,33.76,-80.15,1630 +29002,"PO BOX",0,Ballentine,,,SC,"Richland County",America/New_York,,NA,US,34.14,-81.06,218 +29003,STANDARD,0,Bamberg,,Midway,SC,"Bamberg County",America/New_York,803,NA,US,33.29,-81.03,4860 +29006,STANDARD,0,Batesburg,"Batesburg Leesville, Batsbrg Levil","Holtson Crossroads, Kneece, New Holland Crossroads, Samaria, Summerland",SC,"Lexington County",America/New_York,803,NA,US,33.9,-81.54,7770 +29009,STANDARD,0,Bethune,,,SC,"Kershaw County",America/New_York,843,NA,US,34.41,-80.34,1920 +29010,STANDARD,0,Bishopville,Wisacky,"Alcot, Ashland, Lucknow, Manville, Mccutchen Crossroads, Mechanicsville, Stokes Bridge",SC,"Lee County",America/New_York,803,NA,US,34.21,-80.24,8440 +29014,STANDARD,0,Blackstock,,"Cornwell, Douglass, Stover, Woodward",SC,"Chester County",America/New_York,,NA,US,34.55,-81.15,1420 +29015,STANDARD,0,Blair,,,SC,"Fairfield County",America/New_York,803,NA,US,34.49,-81.35,1240 +29016,STANDARD,0,Blythewood,,,SC,"Richland County",America/New_York,803,NA,US,34.21,-80.97,23970 +29018,STANDARD,0,Bowman,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.34,-80.68,2810 +29020,STANDARD,0,Camden,,"Antioch, Dusty Bend, Kirkland, Kirkwood, Red Hill, Shamokin",SC,"Kershaw County",America/New_York,803,NA,US,34.26,-80.61,19590 +29021,"PO BOX",0,Camden,,"Antioch, Dusty Bend, Kirkland, Kirkwood, Red Hill, Shamokin",SC,"Kershaw County",America/New_York,803,NA,US,34.56,-80.58,314 +29030,STANDARD,0,Cameron,"Lone Star",Creston,SC,"Calhoun County",America/New_York,803,NA,US,33.55,-80.71,1490 +29031,STANDARD,0,Carlisle,,"Leeds, Tuckertown",SC,"Union County",America/New_York,,NA,US,34.59,-81.46,970 +29032,STANDARD,0,Cassatt,,,SC,"Kershaw County",America/New_York,,NA,US,34.34,-80.47,3530 +29033,STANDARD,0,Cayce,"West Columbia","Cayce W Cola",SC,"Lexington County",America/New_York,803,NA,US,33.95,-81.06,9640 +29036,STANDARD,0,Chapin,,"Lake Murray",SC,"Lexington County",America/New_York,803,NA,US,34.16,-81.34,25440 +29037,STANDARD,0,Chappells,,Bigcreek,SC,"Newberry County",America/New_York,864,NA,US,34.18,-81.87,710 +29038,STANDARD,0,Cope,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.37,-81,2100 +29039,STANDARD,0,Cordova,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.43,-80.92,3040 +29040,STANDARD,0,Dalzell,,"Gaillard Crossroads, Woodrow",SC,"Sumter County",America/New_York,803,NA,US,34.03,-80.45,7810 +29041,"PO BOX",0,"Davis Station",,,SC,"Clarendon County",America/New_York,,NA,US,33.6,-80.22,169 +29042,STANDARD,0,Denmark,,,SC,"Bamberg County",America/New_York,803,NA,US,33.31,-81.13,3180 +29044,STANDARD,0,Eastover,"Mcentire Jngb","Congaree, Mcentire Air National Guard, Wateree",SC,"Richland County",America/New_York,803,NA,US,33.87,-80.69,4070 +29045,STANDARD,0,Elgin,,Pontiac,SC,"Kershaw County",America/New_York,803,NA,US,34.16,-80.79,24610 +29046,"PO BOX",0,Elliott,,,SC,"Lee County",America/New_York,803,NA,US,34.1,-80.15,312 +29047,STANDARD,0,Elloree,,Felderville,SC,"Orangeburg County",America/New_York,803,NA,US,33.52,-80.57,2720 +29048,STANDARD,0,Eutawville,,"Eutaw Springs",SC,"Orangeburg County",America/New_York,"843,803",NA,US,33.39,-80.34,3750 +29051,STANDARD,0,Gable,,,SC,"Sumter County",America/New_York,803,NA,US,33.86,-80.13,680 +29052,STANDARD,0,Gadsden,,Kingville,SC,"Richland County",America/New_York,803,NA,US,33.84,-80.74,1420 +29053,STANDARD,0,Gaston,,,SC,"Lexington County",America/New_York,803,NA,US,33.81,-81.1,15570 +29054,STANDARD,0,Gilbert,,,SC,"Lexington County",America/New_York,803,NA,US,33.92,-81.39,9710 +29055,STANDARD,0,"Great Falls",,Beckhamville,SC,"Chester County",America/New_York,803,NA,US,34.57,-80.9,3260 +29056,STANDARD,0,Greeleyville,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.57,-79.98,1650 +29058,STANDARD,0,"Heath Springs",,"Pleasant Hill, Stoneboro",SC,"Lancaster County",America/New_York,803,NA,US,34.59,-80.67,3880 +29059,STANDARD,0,"Holly Hill",,Bowyer,SC,"Orangeburg County",America/New_York,803,NA,US,33.32,-80.41,4750 +29061,STANDARD,0,Hopkins,,"Horrel Hill",SC,"Richland County",America/New_York,803,NA,US,33.88,-80.84,11930 +29062,"PO BOX",0,Horatio,,,SC,"Sumter County",America/New_York,803,NA,US,34,-80.61,206 +29063,STANDARD,0,Irmo,,,SC,"Richland County",America/New_York,,NA,US,34.09,-81.18,34750 +29065,STANDARD,0,Jenkinsville,Monticello,,SC,"Fairfield County",America/New_York,803,NA,US,34.25,-81.26,580 +29067,STANDARD,0,Kershaw,,"Abney, Spring Mills, Taxahaw, White Bluff",SC,"Lancaster County",America/New_York,803,NA,US,34.54,-80.58,7260 +29069,STANDARD,0,Lamar,,"Cypress Crossroads, Oats",SC,"Darlington County",America/New_York,843,NA,US,34.16,-80.06,4070 +29070,STANDARD,0,Leesville,"Batesburg Leesville, Batsbrg Levil","Delmar, Fairview Crossroads, Lake Murray Shores, Steedman, Summit",SC,"Lexington County",America/New_York,803,NA,US,33.91,-81.51,13550 +29071,"PO BOX",0,Lexington,,,SC,"Lexington County",America/New_York,803,NA,US,33.98,-81.22,1112 +29072,STANDARD,0,Lexington,,"Barr, Edmund, Macedon, Red Bank",SC,"Lexington County",America/New_York,803,NA,US,33.98,-81.22,59300 +29073,STANDARD,0,Lexington,,,SC,"Lexington County",America/New_York,803,NA,US,33.89,-81.24,42410 +29074,"PO BOX",0,"Liberty Hill",,,SC,"Kershaw County",America/New_York,,NA,US,34.47,-80.8,259 +29075,STANDARD,0,"Little Mountain","Little Mtn",,SC,"Newberry County",America/New_York,803,NA,US,34.19,-81.41,2780 +29078,STANDARD,0,Lugoff,,,SC,"Kershaw County",America/New_York,803,NA,US,34.22,-80.68,14880 +29079,"PO BOX",0,Lydia,,,SC,"Darlington County",America/New_York,843,NA,US,34.29,-80.11,477 +29080,STANDARD,0,Lynchburg,,"Atkins, Motbridge, Shiloh, South Lynchburg",SC,"Lee County",America/New_York,803,NA,US,34.05,-80.07,2250 +29081,STANDARD,0,Ehrhardt,,,SC,"Bamberg County",America/New_York,803,NA,US,33.09,-81.01,870 +29082,STANDARD,0,Lodge,,,SC,"Colleton County",America/New_York,843,NA,US,33.06,-80.95,450 +29101,STANDARD,0,"Mc Bee",,"Clyde, Mcbee, Robinson",SC,"Chesterfield County",America/New_York,843,NA,US,34.46,-80.25,2540 +29102,STANDARD,0,Manning,Paxville,"Bloomville, Foreston, Jordan, Wilson",SC,"Clarendon County",America/New_York,803,NA,US,33.69,-80.21,14030 +29104,STANDARD,0,Mayesville,"Saint Charles",Scottsville,SC,"Sumter County",America/New_York,803,NA,US,33.98,-80.2,1190 +29105,STANDARD,0,Monetta,,"Hibernia, Jones Crossroads, Watsonia",SC,"Aiken County",America/New_York,803,NA,US,33.84,-81.61,1330 +29107,STANDARD,0,Neeses,Livingston,,SC,"Orangeburg County",America/New_York,803,NA,US,33.53,-81.12,2260 +29108,STANDARD,0,Newberry,,,SC,"Newberry County",America/New_York,803,NA,US,34.27,-81.61,16060 +29111,STANDARD,0,"New Zion",,"Oak Dale, Oakdale, Union Crossroads, Workman",SC,"Clarendon County",America/New_York,,NA,US,33.77,-80.01,1230 +29112,STANDARD,0,North,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.61,-81.1,3590 +29113,STANDARD,0,Norway,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.44,-81.12,1150 +29114,STANDARD,0,Olanta,,"Mckenzie Crossroads",SC,"Florence County",America/New_York,843,NA,US,33.93,-79.93,1660 +29115,STANDARD,0,Orangeburg,,"Bolen Town, Jamison, Pecan Way Terrace",SC,"Orangeburg County",America/New_York,803,NA,US,33.49,-80.86,20080 +29116,"PO BOX",0,Orangeburg,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.49,-80.86,2147 +29117,UNIQUE,0,Orangeburg,,"Sc State University",SC,"Orangeburg County",America/New_York,803,NA,US,33.5,-80.85,221 +29118,STANDARD,0,Orangeburg,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.57,-80.89,12250 +29122,"PO BOX",0,Peak,,,SC,"Newberry County",America/New_York,,NA,US,34.24,-81.33,72 +29123,STANDARD,0,Pelion,,Thor,SC,"Lexington County",America/New_York,803,NA,US,33.78,-81.24,6080 +29125,STANDARD,0,Pinewood,Rimini,"Millford, Panola",SC,"Sumter County",America/New_York,803,NA,US,33.73,-80.46,2200 +29126,STANDARD,0,Pomaria,,Glympville,SC,"Newberry County",America/New_York,,NA,US,34.26,-81.41,2180 +29127,STANDARD,0,Prosperity,,"Slighs, Stockman, Stoney Hill",SC,"Newberry County",America/New_York,803,NA,US,34.21,-81.53,8130 +29128,STANDARD,0,Rembert,Borden,"Boykin, Dunkins Mill, Hagood, Pisgah, Spring Hill",SC,"Sumter County",America/New_York,,NA,US,34.09,-80.51,3540 +29129,STANDARD,0,"Ridge Spring",,,SC,"Aiken County",America/New_York,803,NA,US,33.84,-81.66,2520 +29130,STANDARD,0,Ridgeway,,"Longtown, Smallwood",SC,"Fairfield County",America/New_York,803,NA,US,34.3,-80.96,5340 +29132,"PO BOX",0,Rion,,,SC,"Fairfield County",America/New_York,803,NA,US,34.3,-81.16,59 +29133,STANDARD,0,Rowesville,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.37,-80.83,750 +29135,STANDARD,0,"Saint Matthews","Fort Motte, St Matthews","Hammond Crossroads, Singleton",SC,"Calhoun County",America/New_York,803,NA,US,33.66,-80.77,6750 +29137,STANDARD,0,Salley,Perry,"Berlin, Kitchings Mill",SC,"Aiken County",America/New_York,803,NA,US,33.56,-81.3,2040 +29138,STANDARD,0,Saluda,,"Emory, Fruit Hill, Richland Springs",SC,"Saluda County",America/New_York,864,NA,US,34,-81.77,8740 +29142,STANDARD,0,Santee,,Parlers,SC,"Orangeburg County",America/New_York,803,NA,US,33.48,-80.48,4000 +29143,"PO BOX",0,Sardinia,,,SC,"Clarendon County",America/New_York,,NA,US,33.77,-80.01,0 +29145,STANDARD,0,Silverstreet,,,SC,"Newberry County",America/New_York,,NA,US,34.21,-81.71,660 +29146,STANDARD,0,Springfield,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.49,-81.27,1290 +29147,"PO BOX",0,"State Park",,,SC,"Richland County",America/New_York,803,NA,US,34.09,-80.97,78 +29148,STANDARD,0,Summerton,,"Davis Crossroads, Goat Island Resort, St Paul",SC,"Clarendon County",America/New_York,803,NA,US,33.6,-80.35,4570 +29150,STANDARD,0,Sumter,Oswego,"Bon Air, Brogdon, Frens, Highway Four Forty One, Hoyt Heights, Stateburg",SC,"Sumter County",America/New_York,803,NA,US,33.94,-80.39,32190 +29151,"PO BOX",0,Sumter,,,SC,"Sumter County",America/New_York,803,NA,US,33.94,-80.39,2316 +29152,STANDARD,0,"Shaw AFB",,,SC,"Sumter County",America/New_York,803,NA,US,33.97,-80.45,2330 +29153,STANDARD,0,Sumter,,,SC,"Sumter County",America/New_York,803,NA,US,33.96,-80.31,12670 +29154,STANDARD,0,Sumter,,,SC,"Sumter County",America/New_York,803,NA,US,33.88,-80.44,26170 +29160,STANDARD,0,Swansea,,,SC,"Lexington County",America/New_York,803,NA,US,33.73,-81.1,6540 +29161,STANDARD,0,Timmonsville,,"Cartersville, Peniel Crossroads, Sardis",SC,"Florence County",America/New_York,843,NA,US,34.13,-79.94,8810 +29162,STANDARD,0,Turbeville,,,SC,"Clarendon County",America/New_York,843,NA,US,33.89,-80.01,2090 +29163,STANDARD,0,Vance,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.43,-80.42,1560 +29164,STANDARD,0,Wagener,,"Bethcar, H L Crossroads, New Holland, Rocky Springs, Seivern",SC,"Aiken County",America/New_York,803,NA,US,33.65,-81.36,3600 +29166,STANDARD,0,Ward,,,SC,"Saluda County",America/New_York,,NA,US,33.85,-81.73,680 +29168,STANDARD,0,Wedgefield,,,SC,"Sumter County",America/New_York,803,NA,US,33.89,-80.54,2670 +29169,STANDARD,0,"West Columbia",,"Cayce, Dixiana, Kathwood, Pineridge, Saluda Gardens, Saluda Terrace, South Congaree, Springdale, Westover Acres",SC,"Lexington County",America/New_York,803,NA,US,33.99,-81.08,16810 +29170,STANDARD,0,"West Columbia",,Cayce,SC,"Lexington County",America/New_York,803,NA,US,33.94,-81.15,19380 +29171,"PO BOX",0,"West Columbia",Cayce,,SC,"Lexington County",America/New_York,803,NA,US,33.99,-81.08,1117 +29172,STANDARD,0,"West Columbia",Cayce,,SC,"Lexington County",America/New_York,803,NA,US,33.91,-81.08,7660 +29175,STANDARD,0,Westville,,"De Kalb, Dekalb",SC,"Kershaw County",America/New_York,,NA,US,34.45,-80.58,260 +29177,"PO BOX",0,"White Rock",,,SC,"Richland County",America/New_York,,NA,US,34.14,-81.06,330 +29178,STANDARD,0,Whitmire,,,SC,"Newberry County",America/New_York,803,NA,US,34.5,-81.61,2450 +29180,STANDARD,0,Winnsboro,"White Oak","Greenbrier, Winnsboro Mills",SC,"Fairfield County",America/New_York,803,NA,US,34.37,-81.08,10510 +29201,STANDARD,0,Columbia,,"Market Center, Olympia, State Hospital",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,8300 +29202,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,33.99,-81.03,1631 +29203,STANDARD,0,Columbia,,"Bendale, Crafts Farrow, Crane Forest, Denny Terrace, Eau Claire, Fairfield Terrace, Farrow Terrace, Greenview, Haskell Heights, Hollywood Hills, Killian, Lincolnshire, Ridgewood, Stark Terrace",SC,"Richland County",America/New_York,803,NA,US,34.1,-81.04,29930 +29204,STANDARD,0,Columbia,,"Bayview, Edgewood",SC,"Richland County",America/New_York,803,NA,US,34.03,-81,13160 +29205,STANDARD,0,Columbia,,"Five Points",SC,"Richland County",America/New_York,803,NA,US,33.99,-81,16970 +29206,STANDARD,0,Columbia,,"Arcadia Lakes, Forest Acres, Forest Lake, Ravenwood, Sandwood",SC,"Richland County",America/New_York,803,NA,US,34.03,-80.96,18530 +29207,"PO BOX",0,Columbia,,"Fort Jackson",SC,"Richland County",America/New_York,803,NA,US,34.04,-80.85,467 +29208,UNIQUE,0,Columbia,,"University Of Sc, Usc",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,132 +29209,STANDARD,0,Columbia,,"Bluff Estates, Capitol View, Cedar Terrace, Eastmont, Galaxy, Hazelwood Acres, Leesburg, Mountain Brook, Twin Lake Hill",SC,"Richland County",America/New_York,803,NA,US,33.93,-80.95,28920 +29210,STANDARD,0,Columbia,,"Dutch Fork",SC,"Richland County",America/New_York,803,NA,US,34.05,-81.11,27230 +29211,"PO BOX",0,Columbia,,Capitol,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,416 +29212,STANDARD,0,Columbia,,Harbison,SC,"Lexington County",America/New_York,803,NA,US,34.08,-81.2,26330 +29214,UNIQUE,0,Columbia,,"Sc Tax Comm",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29215,UNIQUE,0,Columbia,,"Bell South",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29216,UNIQUE,0,Columbia,,"Sc Dept Of Motor Vehicles",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29217,UNIQUE,0,Columbia,,"City Of Columbia",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29218,UNIQUE,0,Columbia,,"Sc Electric And Gas",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29219,UNIQUE,0,Columbia,,"Blue Cross Blue Shield Of Sc",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,14 +29220,UNIQUE,0,Columbia,,"Baptist Medical Center",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,30 +29221,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,961 +29222,STANDARD,0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29223,STANDARD,0,Columbia,,"North Pointe, Northeast",SC,"Richland County",America/New_York,803,NA,US,34.09,-80.92,44200 +29224,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,974 +29225,UNIQUE,0,Columbia,,"Univ Of Sc Students Mail",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,97 +29226,UNIQUE,0,Columbia,,"Wells Fargo",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,26 +29227,UNIQUE,0,Columbia,,"Wells Fargo",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29228,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,157 +29229,STANDARD,0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34.14,-80.89,48540 +29230,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,677 +29240,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,359 +29250,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,417 +29260,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,442 +29290,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,611 +29292,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29301,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.01,28230 +29302,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.88,-81.84,14620 +29303,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,35,-81.96,17470 +29304,"PO BOX",0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,2180 +29305,"PO BOX",0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,518 +29306,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,12780 +29307,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.98,-81.83,15550 +29316,STANDARD,0,"Boiling Springs","Boiling Spgs, Spartanburg",,SC,"Spartanburg County",America/New_York,864,NA,US,35.04,-81.98,26240 +29318,STANDARD,1,"Boiling Springs","Boiling Spgs",Spartanburg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,55 +29319,UNIQUE,0,Spartanburg,,"Dennys Corporation, Sptbg",SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,0 +29320,"PO BOX",0,Arcadia,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.96,-81.99,644 +29321,STANDARD,0,Buffalo,,,SC,"Union County",America/New_York,864,NA,US,34.72,-81.68,2080 +29322,STANDARD,0,Campobello,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.11,-82.14,8070 +29323,STANDARD,0,Chesnee,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.14,-81.86,13740 +29324,"PO BOX",0,Clifton,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.98,-81.83,250 +29325,STANDARD,0,Clinton,,,SC,"Laurens County",America/New_York,864,NA,US,34.47,-81.86,11020 +29329,"PO BOX",0,Converse,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.99,-81.84,406 +29330,STANDARD,0,Cowpens,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.01,-81.8,6910 +29331,"PO BOX",0,"Cross Anchor",,,SC,"Spartanburg County",America/New_York,864,NA,US,34.65,-81.84,248 +29332,STANDARD,0,"Cross Hill",,,SC,"Laurens County",America/New_York,864,NA,US,34.3,-81.98,2040 +29333,"PO BOX",0,Drayton,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.97,-81.91,583 +29334,STANDARD,0,Duncan,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.13,14110 +29335,STANDARD,0,Enoree,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.65,-81.96,3730 +29336,"PO BOX",0,Fairforest,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-81.99,699 +29338,"PO BOX",0,Fingerville,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.14,-82,192 +29340,STANDARD,0,Gaffney,,,SC,"Cherokee County",America/New_York,864,NA,US,35.07,-81.65,16000 +29341,STANDARD,0,Gaffney,,,SC,"Cherokee County",America/New_York,864,NA,US,35.11,-81.71,16540 +29342,"PO BOX",0,Gaffney,,,SC,"Cherokee County",America/New_York,864,NA,US,35.07,-81.65,1747 +29346,"PO BOX",0,Glendale,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-81.84,347 +29348,"PO BOX",0,Gramling,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.07,-82.16,293 +29349,STANDARD,0,Inman,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.05,-82.09,31220 +29351,STANDARD,0,Joanna,,,SC,"Laurens County",America/New_York,864,NA,US,34.41,-81.81,1160 +29353,STANDARD,0,Jonesville,,,SC,"Union County",America/New_York,864,NA,US,34.83,-81.67,3220 +29355,STANDARD,0,Kinards,,,SC,"Laurens County",America/New_York,,NA,US,34.29,-81.83,620 +29356,STANDARD,0,Landrum,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.17,-82.18,7400 +29360,STANDARD,0,Laurens,,,SC,"Laurens County",America/New_York,864,NA,US,34.5,-82.02,16920 +29364,"PO BOX",0,Lockhart,,,SC,"Union County",America/New_York,864,NA,US,34.79,-81.46,569 +29365,STANDARD,0,Lyman,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-82.12,11980 +29368,"PO BOX",0,Mayo,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.08,-81.86,917 +29369,STANDARD,0,Moore,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.87,-82.02,14650 +29370,STANDARD,0,Mountville,,,SC,"Laurens County",America/New_York,864,NA,US,34.33,-81.95,820 +29372,STANDARD,0,Pacolet,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.89,-81.76,3630 +29373,"PO BOX",0,"Pacolet Mills",,,SC,"Spartanburg County",America/New_York,864,NA,US,34.92,-81.75,539 +29374,STANDARD,0,Pauline,"Glenn Springs",,SC,"Spartanburg County",America/New_York,,NA,US,34.83,-81.87,3180 +29375,"PO BOX",0,Reidville,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.86,-82.11,446 +29376,STANDARD,0,Roebuck,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.87,-81.96,7230 +29377,"PO BOX",0,Startex,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.09,707 +29378,"PO BOX",0,Una,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.97,-81.97,1394 +29379,STANDARD,0,Union,,,SC,"Union County",America/New_York,864,NA,US,34.72,-81.62,13820 +29384,STANDARD,0,Waterloo,,,SC,"Laurens County",America/New_York,864,NA,US,34.35,-82.05,3260 +29385,STANDARD,0,Wellford,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-82.09,7360 +29386,"PO BOX",0,"White Stone",,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-81.85,133 +29388,STANDARD,0,Woodruff,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.74,-82.03,13550 +29390,UNIQUE,1,Duncan,"Bmg Columbia Hse Video Club",,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.14,0 +29391,UNIQUE,1,Duncan,"Bmg Columbia House Acs",,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.14,0 +29395,UNIQUE,0,Jonesville,,"Disney Direct Marketing",SC,"Union County",America/New_York,864,NA,US,34.84,-81.68,0 +29401,STANDARD,0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.93,5720 +29402,"PO BOX",0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,626 +29403,STANDARD,0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.81,-79.94,13520 +29404,STANDARD,0,"Charleston AFB","Charleston, Chas AFB, Joint Base Charleston, Jt Base Chas","Chas, N Charleston, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.9,-80.06,1910 +29405,STANDARD,0,"North Charleston","Charleston, N Charleston","Chas, Chas Hgts, No Chas, Pinehaven",SC,"Charleston County",America/New_York,843,NA,US,32.86,-79.98,19460 +29406,STANDARD,0,Charleston,"N Charleston, North Charleston","Chas, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.94,-80.04,22430 +29407,STANDARD,0,Charleston,,"Chas, Saint Andrews, St Andrews",SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,29890 +29409,UNIQUE,0,Charleston,,"Chas, The Citadel",SC,"Charleston County",America/New_York,843,NA,US,32.8,-79.96,227 +29410,STANDARD,0,Hanahan,"Charleston, N Charleston, North Charleston",Chas,SC,"Berkeley County",America/New_York,843,NA,US,32.91,-80.01,17030 +29412,STANDARD,0,Charleston,,"Chas, James Island",SC,"Charleston County",America/New_York,843,NA,US,32.71,-79.95,34530 +29413,"PO BOX",0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,962 +29414,STANDARD,0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.84,-80.09,39010 +29415,"PO BOX",0,"North Charleston","Charleston, N Charleston",Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,802 +29416,"PO BOX",0,Charleston,,,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,501 +29417,"PO BOX",0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,941 +29418,STANDARD,0,"North Charleston","Charleston, N Charleston","Ch Hgts, Charleston Heights, Charleston Hts, Chas, Chas Hgts, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.91,-80.09,19970 +29419,"PO BOX",0,"North Charleston","Charleston, N Charleston","Chas, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.93,-80.1,1139 +29420,STANDARD,0,"North Charleston","Charleston, N Charleston","Chas, No Chas",SC,"Dorchester County",America/New_York,843,NA,US,32.93,-80.1,20650 +29422,"PO BOX",0,Charleston,,,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,758 +29423,"PO BOX",0,Charleston,"N Charleston, North Charleston",Chas,SC,"Charleston County",America/New_York,843,NA,US,32.98,-80.07,818 +29424,UNIQUE,0,Charleston,,"Chas, The College Of Charleston",SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.94,64 +29425,UNIQUE,0,Charleston,,"Chas, Medical University Of Sc",SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,0 +29426,STANDARD,0,"Adams Run",Jericho,Osborn,SC,"Charleston County",America/New_York,,NA,US,32.8,-80.37,1380 +29429,STANDARD,0,Awendaw,"Mount Pleasant, Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,33.03,-79.61,3710 +29430,"PO BOX",1,Bethera,"Moncks Corner",,SC,"Berkeley County",America/New_York,843,NA,US,33.2,-79.78,0 +29431,STANDARD,0,Bonneau,,,SC,"Berkeley County",America/New_York,843,NA,US,33.3,-79.95,5360 +29432,STANDARD,0,Branchville,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.25,-80.81,2100 +29433,"PO BOX",0,Canadys,,,SC,"Colleton County",America/New_York,843,NA,US,33.05,-80.62,49 +29434,STANDARD,0,Cordesville,,,SC,"Berkeley County",America/New_York,843,NA,US,33.13,-79.88,470 +29435,STANDARD,0,Cottageville,,,SC,"Colleton County",America/New_York,843,NA,US,32.93,-80.47,3280 +29436,STANDARD,0,Cross,,,SC,"Berkeley County",America/New_York,843,NA,US,33.32,-80.14,3440 +29437,STANDARD,0,Dorchester,,,SC,"Dorchester County",America/New_York,843,NA,US,33.13,-80.39,1920 +29438,STANDARD,0,"Edisto Island",Edisto,"Edisto Beach",SC,"Charleston County",America/New_York,843,NA,US,32.56,-80.28,2460 +29439,"PO BOX",0,"Folly Beach",,,SC,"Charleston County",America/New_York,843,NA,US,32.65,-79.95,1979 +29440,STANDARD,0,Georgetown,,Maryville,SC,"Georgetown County",America/New_York,843,NA,US,33.36,-79.29,21740 +29442,"PO BOX",0,Georgetown,,,SC,"Georgetown County",America/New_York,843,NA,US,33.36,-79.29,2591 +29445,STANDARD,0,"Goose Creek",,,SC,"Berkeley County",America/New_York,843,NA,US,32.98,-79.99,51940 +29446,STANDARD,0,"Green Pond",Greenpond,,SC,"Colleton County",America/New_York,843,NA,US,32.73,-80.61,850 +29447,"PO BOX",0,Grover,,,SC,"Dorchester County",America/New_York,843,NA,US,33.1,-80.59,63 +29448,STANDARD,0,Harleyville,,,SC,"Dorchester County",America/New_York,843,NA,US,33.21,-80.44,2010 +29449,STANDARD,0,Hollywood,"Meggett, Yonges Island",Rantowels,SC,"Charleston County",America/New_York,843,NA,US,32.75,-80.2,7090 +29450,STANDARD,0,Huger,,,SC,"Berkeley County",America/New_York,843,NA,US,33.09,-79.8,2760 +29451,STANDARD,0,"Isle Of Palms","Dewees Island",,SC,"Charleston County",America/New_York,843,NA,US,32.8,-79.75,4280 +29452,"PO BOX",0,Jacksonboro,,,SC,"Colleton County",America/New_York,843,NA,US,32.77,-80.45,451 +29453,STANDARD,0,Jamestown,Shulerville,,SC,"Berkeley County",America/New_York,843,NA,US,33.28,-79.69,970 +29455,STANDARD,0,"Johns Island","Kiawah Island, Seabrook Isl, Seabrook Island",,SC,"Charleston County",America/New_York,843,NA,US,32.72,-80.07,23600 +29456,STANDARD,0,Ladson,,"College Park",SC,"Dorchester County",America/New_York,843,NA,US,33,-80.1,31030 +29457,"PO BOX",0,"Johns Island",,,SC,"Charleston County",America/New_York,843,NA,US,32.72,-80.07,1005 +29458,STANDARD,0,"Mc Clellanville",Mcclellanvle,Mcclellanville,SC,"Charleston County",America/New_York,843,NA,US,33.08,-79.46,2080 +29461,STANDARD,0,"Moncks Corner",,,SC,"Berkeley County",America/New_York,843,NA,US,33.19,-79.99,36210 +29464,STANDARD,0,"Mount Pleasant","Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,32.82,-79.86,45370 +29465,"PO BOX",0,"Mount Pleasant","Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,32.82,-79.86,1175 +29466,STANDARD,0,"Mount Pleasant","Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,32.88,-79.79,39500 +29468,STANDARD,0,Pineville,,,SC,"Berkeley County",America/New_York,843,NA,US,33.42,-80.02,1420 +29469,STANDARD,0,Pinopolis,,,SC,"Berkeley County",America/New_York,843,NA,US,33.26,-80.06,780 +29470,STANDARD,0,Ravenel,,,SC,"Charleston County",America/New_York,843,NA,US,32.77,-80.22,3910 +29471,STANDARD,0,Reevesville,,,SC,"Dorchester County",America/New_York,843,NA,US,33.2,-80.64,1290 +29472,STANDARD,0,Ridgeville,,,SC,"Dorchester County",America/New_York,,NA,US,33.08,-80.3,7580 +29474,STANDARD,0,"Round O",,,SC,"Colleton County",America/New_York,843,NA,US,32.93,-80.54,1850 +29475,STANDARD,0,Ruffin,,,SC,"Colleton County",America/New_York,843,NA,US,33,-80.81,2190 +29476,"PO BOX",0,Russellville,,,SC,"Berkeley County",America/New_York,843,NA,US,33.39,-79.97,157 +29477,STANDARD,0,"Saint George",,"St George",SC,"Dorchester County",America/New_York,843,NA,US,33.18,-80.58,5310 +29479,STANDARD,0,"Saint Stephen",Alvin,,SC,"Berkeley County",America/New_York,843,NA,US,33.4,-79.92,5290 +29481,STANDARD,0,Smoaks,,,SC,"Colleton County",America/New_York,843,NA,US,33.08,-80.81,1370 +29482,STANDARD,0,"Sullivans Island","Sullivans Is",,SC,"Charleston County",America/New_York,843,NA,US,32.76,-79.85,1850 +29483,STANDARD,0,Summerville,Knightsville,,SC,"Dorchester County",America/New_York,843,NA,US,33.05,-80.19,49760 +29484,"PO BOX",0,Summerville,,Summ,SC,"Dorchester County",America/New_York,843,NA,US,33,-80.17,2060 +29485,STANDARD,0,Summerville,"Ladson, Lincolnville",Summ,SC,"Dorchester County",America/New_York,843,NA,US,33,-80.17,51600 +29486,STANDARD,0,Summerville,,"Carnes Crossroads, Carnes Xrds",SC,"Berkeley County",America/New_York,,NA,US,33.02,-80.18,25250 +29487,STANDARD,0,"Wadmalaw Island","Wadmalaw Is",,SC,"Charleston County",America/New_York,843,NA,US,32.68,-80.16,2280 +29488,STANDARD,0,Walterboro,Ritter,,SC,"Colleton County",America/New_York,843,NA,US,32.9,-80.67,18370 +29492,STANDARD,0,Charleston,"Cainhoy, Daniel Island, Wando",,SC,"Berkeley County",America/New_York,843,NA,US,32.9,-79.91,17340 +29493,"PO BOX",0,Williams,,,SC,"Colleton County",America/New_York,843,NA,US,33.03,-80.84,165 +29501,STANDARD,0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,38910 +29502,"PO BOX",0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,1833 +29503,"PO BOX",0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,876 +29504,"PO BOX",0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,1095 +29505,STANDARD,0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.13,-79.69,21420 +29506,STANDARD,0,Florence,Quinby,,SC,"Florence County",America/New_York,843,NA,US,34.21,-79.65,14830 +29510,STANDARD,0,Andrews,,,SC,"Georgetown County",America/New_York,843,NA,US,33.44,-79.56,8630 +29511,STANDARD,0,Aynor,,,SC,"Horry County",America/New_York,843,NA,US,33.99,-79.2,4850 +29512,STANDARD,0,Bennettsville,,,SC,"Marlboro County",America/New_York,843,NA,US,34.63,-79.68,12580 +29516,STANDARD,0,Blenheim,,,SC,"Marlboro County",America/New_York,843,NA,US,34.51,-79.65,620 +29518,STANDARD,0,Cades,,Hebron,SC,"Williamsburg County",America/New_York,843,NA,US,33.79,-79.85,970 +29519,"PO BOX",0,Centenary,,,SC,"Marion County",America/New_York,843,NA,US,34.03,-79.35,373 +29520,STANDARD,0,Cheraw,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.69,-79.89,11030 +29525,STANDARD,0,Clio,,,SC,"Marlboro County",America/New_York,843,NA,US,34.57,-79.54,1640 +29526,STANDARD,0,Conway,,,SC,"Horry County",America/New_York,843,NA,US,33.83,-79.04,37020 +29527,STANDARD,0,Conway,Bucksport,,SC,"Horry County",America/New_York,843,NA,US,33.79,-79.15,21210 +29528,"PO BOX",0,Conway,,,SC,"Horry County",America/New_York,843,NA,US,33.83,-79.04,1759 +29530,STANDARD,0,Coward,,,SC,"Florence County",America/New_York,843,NA,US,33.97,-79.74,2310 +29532,STANDARD,0,Darlington,,,SC,"Darlington County",America/New_York,843,NA,US,34.29,-79.87,15550 +29536,STANDARD,0,Dillon,"Floyd Dale","Floyd Dl",SC,"Dillon County",America/New_York,843,NA,US,34.42,-79.36,13120 +29540,STANDARD,0,Darlington,,,SC,"Darlington County",America/New_York,843,NA,US,34.38,-79.85,4770 +29541,STANDARD,0,Effingham,,,SC,"Florence County",America/New_York,843,NA,US,34.06,-79.74,7850 +29543,STANDARD,0,Fork,,,SC,"Dillon County",America/New_York,843,NA,US,34.28,-79.27,410 +29544,STANDARD,0,"Galivants Ferry","Aynor, Galivants Fry",,SC,"Horry County",America/New_York,843,NA,US,34.05,-79.24,5440 +29545,STANDARD,0,"Green Sea",,,SC,"Horry County",America/New_York,843,NA,US,34.16,-78.97,1390 +29546,STANDARD,0,Gresham,"Brittons Neck",,SC,"Marion County",America/New_York,843,NA,US,33.93,-79.41,1910 +29547,STANDARD,0,Hamer,"S Of Border, South Of The Border",,SC,"Dillon County",America/New_York,843,NA,US,34.5,-79.33,2270 +29550,STANDARD,0,Hartsville,,,SC,"Darlington County",America/New_York,843,NA,US,34.36,-80.08,24690 +29551,"PO BOX",0,Hartsville,,,SC,"Darlington County",America/New_York,843,NA,US,34.36,-80.08,2034 +29554,STANDARD,0,Hemingway,,Stuckey,SC,"Williamsburg County",America/New_York,843,NA,US,33.75,-79.44,7020 +29555,STANDARD,0,Johnsonville,Poston,,SC,"Florence County",America/New_York,843,NA,US,33.81,-79.44,4940 +29556,STANDARD,0,Kingstree,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.66,-79.82,9300 +29560,STANDARD,0,"Lake City",,,SC,"Florence County",America/New_York,843,NA,US,33.86,-79.75,10450 +29563,STANDARD,0,"Lake View",,,SC,"Dillon County",America/New_York,843,NA,US,34.34,-79.16,2010 +29564,STANDARD,0,Lane,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.52,-79.88,740 +29565,STANDARD,0,Latta,,,SC,"Dillon County",America/New_York,843,NA,US,34.33,-79.43,5590 +29566,STANDARD,0,"Little River",,,SC,"Horry County",America/New_York,843,NA,US,33.87,-78.63,18480 +29567,STANDARD,0,"Little Rock",,,SC,"Dillon County",America/New_York,843,NA,US,34.56,-79.43,630 +29568,STANDARD,0,Longs,,,SC,"Horry County",America/New_York,843,NA,US,33.93,-78.73,13520 +29569,STANDARD,0,Loris,,,SC,"Horry County",America/New_York,843,NA,US,34.05,-78.89,14720 +29570,STANDARD,0,"Mc Coll",,Mccoll,SC,"Marlboro County",America/New_York,843,NA,US,34.66,-79.54,2980 +29571,STANDARD,0,Marion,,,SC,"Marion County",America/New_York,843,NA,US,34.17,-79.4,12040 +29572,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.77,-78.78,9730 +29573,"PO BOX",1,Minturn,,,SC,"Dillon County",America/New_York,843,NA,US,34.51,-79.47,92 +29574,STANDARD,0,Mullins,,,SC,"Marion County",America/New_York,843,NA,US,34.2,-79.25,8480 +29575,STANDARD,0,"Myrtle Beach","Surfside Bch, Surfside Beach",Surfside,SC,"Horry County",America/New_York,843,NA,US,33.63,-78.97,15880 +29576,STANDARD,0,"Murrells Inlet","Murrells Inlt","Garden City, Garden City Beach",SC,"Horry County",America/New_York,843,NA,US,33.55,-79.05,28360 +29577,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.69,-78.89,28000 +29578,"PO BOX",0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.69,-78.89,2789 +29579,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.75,-78.92,43590 +29580,STANDARD,0,Nesmith,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.65,-79.51,910 +29581,STANDARD,0,Nichols,,,SC,"Horry County",America/New_York,843,NA,US,34.23,-79.14,3250 +29582,STANDARD,0,"North Myrtle Beach","Atlantic Bch, Atlantic Beach, Cherry Grove, Cherry Grove Beach, N Myrtle Bch, Ocean Drive","Crescent Beach, N Myrtle Beach, Ocean Dr Beach, Ocean Drive Beach",SC,"Horry County",America/New_York,843,NA,US,33.82,-78.67,15880 +29583,STANDARD,0,Pamplico,,,SC,"Florence County",America/New_York,843,NA,US,33.99,-79.56,3960 +29584,STANDARD,0,Patrick,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.57,-80.04,1810 +29585,STANDARD,0,"Pawleys Island","Litchfield, N Litchfield, Pawleys Isl","Pawleys Is",SC,"Georgetown County",America/New_York,843,NA,US,33.52,-79.14,15430 +29587,"PO BOX",0,"Myrtle Beach","Surfside Bch, Surfside Beach",,SC,"Horry County",America/New_York,843,NA,US,33.69,-78.89,1450 +29588,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.63,-79.02,41460 +29589,"PO BOX",0,Rains,,,SC,"Marion County",America/New_York,843,NA,US,34.09,-79.31,459 +29590,STANDARD,0,Salters,Trio,,SC,"Williamsburg County",America/New_York,843,NA,US,33.59,-79.85,1730 +29591,STANDARD,0,Scranton,,,SC,"Florence County",America/New_York,843,NA,US,33.91,-79.74,3730 +29592,STANDARD,0,Sellers,,,SC,"Dillon County",America/New_York,843,NA,US,34.28,-79.47,870 +29593,STANDARD,0,"Society Hill",,,SC,"Darlington County",America/New_York,843,NA,US,34.5,-79.85,1440 +29594,"PO BOX",0,Tatum,,,SC,"Marlboro County",America/New_York,843,NA,US,34.64,-79.58,226 +29596,STANDARD,0,Wallace,,,SC,"Marlboro County",America/New_York,843,NA,US,34.72,-79.84,1790 +29597,"PO BOX",0,"North Myrtle Beach","N Myrtle Bch",,SC,"Horry County",America/New_York,843,NA,US,33.82,-78.67,1107 +29598,"PO BOX",0,"North Myrtle Beach","N Myrtle Bch",,SC,"Horry County",America/New_York,843,NA,US,33.82,-78.67,528 +29601,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.85,-82.4,9000 +29602,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,1004 +29603,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,139 +29604,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,659 +29605,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.77,-82.38,30830 +29606,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,1115 +29607,STANDARD,0,Greenville,,"Batesville, Gville",SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,36610 +29608,"PO BOX",0,Greenville,,"Gville, Park Place",SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,805 +29609,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.39,26000 +29610,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,762 +29611,STANDARD,0,Greenville,Powdersville,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.46,24860 +29612,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,68 +29613,UNIQUE,0,Greenville,,"Furman University, Gville",SC,"Greenville County",America/New_York,864,NA,US,34.92,-82.44,64 +29614,UNIQUE,0,Greenville,,"Bob Jones University, Gville",SC,"Greenville County",America/New_York,864,NA,US,34.87,-82.36,368 +29615,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.86,-82.3,33490 +29616,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,752 +29617,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.47,22210 +29620,STANDARD,0,Abbeville,,,SC,"Abbeville County",America/New_York,864,NA,US,34.17,-82.37,10660 +29621,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.51,-82.64,36900 +29622,"PO BOX",0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.51,-82.64,2111 +29623,"PO BOX",0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.51,-82.64,397 +29624,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.44,-82.62,11210 +29625,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.56,-82.76,23310 +29626,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.46,-82.76,10920 +29627,STANDARD,0,Belton,,,SC,"Anderson County",America/New_York,864,NA,US,34.52,-82.49,15500 +29628,STANDARD,0,"Calhoun Falls",,,SC,"Abbeville County",America/New_York,864,NA,US,34.09,-82.59,1810 +29630,STANDARD,0,Central,,,SC,"Pickens County",America/New_York,864,NA,US,34.72,-82.78,10250 +29631,STANDARD,0,Clemson,,,SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.81,8120 +29632,UNIQUE,0,Clemson,,"Clemson University",SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.81,103 +29633,"PO BOX",0,Clemson,,,SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.81,763 +29634,UNIQUE,0,Clemson,,"Clemson University",SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.84,34 +29635,STANDARD,0,Cleveland,,,SC,"Greenville County",America/New_York,864,NA,US,35.08,-82.63,1220 +29636,"PO BOX",0,Conestee,,,SC,"Greenville County",America/New_York,864,NA,US,34.78,-82.4,441 +29638,STANDARD,0,Donalds,"Shoals Jct, Shoals Junction",,SC,"Abbeville County",America/New_York,864,NA,US,34.37,-82.34,2300 +29639,STANDARD,0,"Due West",,,SC,"Abbeville County",America/New_York,864,NA,US,34.33,-82.38,1080 +29640,STANDARD,0,Easley,,,SC,"Pickens County",America/New_York,864,NA,US,34.88,-82.58,26080 +29641,"PO BOX",0,Easley,,,SC,"Pickens County",America/New_York,864,NA,US,34.82,-82.58,1757 +29642,STANDARD,0,Easley,Powdersville,,SC,"Pickens County",America/New_York,864,NA,US,34.82,-82.58,31740 +29643,STANDARD,0,"Fair Play",,,SC,"Oconee County",America/New_York,864,NA,US,34.51,-82.98,2560 +29644,STANDARD,0,"Fountain Inn",,,SC,"Greenville County",America/New_York,864,NA,US,34.69,-82.2,18810 +29645,STANDARD,0,"Gray Court",,Ora,SC,"Laurens County",America/New_York,864,NA,US,34.6,-82.11,8830 +29646,STANDARD,0,Greenwood,,Gwd,SC,"Greenwood County",America/New_York,864,NA,US,34.19,-82.15,20940 +29647,UNIQUE,0,Greenwood,,"Gwd, Park Seed Co",SC,"Greenwood County",America/New_York,864,NA,US,34.19,-82.15,0 +29648,"PO BOX",0,Greenwood,,Gwd,SC,"Greenwood County",America/New_York,864,NA,US,34.19,-82.15,1182 +29649,STANDARD,0,Greenwood,,Gwd,SC,"Greenwood County",America/New_York,864,NA,US,34.24,-82.15,21770 +29650,STANDARD,0,Greer,,,SC,"Greenville County",America/New_York,864,NA,US,34.9,-82.26,34280 +29651,STANDARD,0,Greer,Duncan,,SC,"Greenville County",America/New_York,864,NA,US,34.93,-82.23,44010 +29652,"PO BOX",0,Greer,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.23,1385 +29653,STANDARD,0,Hodges,,,SC,"Greenwood County",America/New_York,864,NA,US,34.28,-82.24,4050 +29654,STANDARD,0,"Honea Path",,,SC,"Anderson County",America/New_York,864,NA,US,34.44,-82.39,8430 +29655,STANDARD,0,Iva,,,SC,"Anderson County",America/New_York,864,NA,US,34.3,-82.66,5850 +29656,"PO BOX",0,"La France",,,SC,"Anderson County",America/New_York,864,NA,US,34.62,-82.73,392 +29657,STANDARD,0,Liberty,,,SC,"Pickens County",America/New_York,864,NA,US,34.79,-82.69,12950 +29658,STANDARD,0,"Long Creek",,,SC,"Oconee County",America/New_York,864,NA,US,34.77,-83.25,290 +29659,"PO BOX",0,Lowndesville,,,SC,"Abbeville County",America/New_York,864,NA,US,34.21,-82.64,245 +29661,STANDARD,0,Marietta,,,SC,"Greenville County",America/New_York,,NA,US,35.03,-82.49,4610 +29662,STANDARD,0,Mauldin,,,SC,"Greenville County",America/New_York,864,NA,US,34.78,-82.3,13440 +29664,STANDARD,0,"Mountain Rest",,,SC,"Oconee County",America/New_York,864,NA,US,34.86,-83.15,1320 +29665,"PO BOX",0,Newry,,,SC,"Oconee County",America/New_York,864,NA,US,34.73,-82.91,158 +29666,STANDARD,0,"Ninety Six",,,SC,"Greenwood County",America/New_York,864,NA,US,34.17,-82.02,5740 +29667,STANDARD,0,Norris,Cateechee,,SC,"Pickens County",America/New_York,864,NA,US,34.76,-82.75,350 +29669,STANDARD,0,Pelzer,,,SC,"Anderson County",America/New_York,864,NA,US,34.64,-82.46,10980 +29670,STANDARD,0,Pendleton,,,SC,"Anderson County",America/New_York,864,NA,US,34.65,-82.78,7640 +29671,STANDARD,0,Pickens,,,SC,"Pickens County",America/New_York,864,NA,US,34.88,-82.7,15540 +29672,STANDARD,0,Seneca,,,SC,"Oconee County",America/New_York,864,NA,US,34.75,-82.93,10820 +29673,STANDARD,0,Piedmont,Powdersville,,SC,"Greenville County",America/New_York,864,NA,US,34.71,-82.46,25570 +29675,"PO BOX",0,Richland,,,SC,"Oconee County",America/New_York,864,NA,US,34.7,-83.02,116 +29676,STANDARD,0,Salem,,,SC,"Oconee County",America/New_York,864,NA,US,34.89,-82.97,4980 +29677,"PO BOX",0,"Sandy Springs",,,SC,"Anderson County",America/New_York,864,NA,US,34.59,-82.75,641 +29678,STANDARD,0,Seneca,,,SC,"Oconee County",America/New_York,864,NA,US,34.68,-82.95,17680 +29679,"PO BOX",0,Seneca,,,SC,"Oconee County",America/New_York,864,NA,US,34.68,-82.95,1185 +29680,STANDARD,0,Simpsonville,,,SC,"Greenville County",America/New_York,864,NA,US,34.69,-82.29,31890 +29681,STANDARD,0,Simpsonville,,,SC,"Greenville County",America/New_York,864,NA,US,34.73,-82.25,59040 +29682,STANDARD,0,"Six Mile",,,SC,"Pickens County",America/New_York,864,NA,US,34.8,-82.81,3570 +29683,"PO BOX",0,Slater,,,SC,"Greenville County",America/New_York,864,NA,US,35.03,-82.49,389 +29684,STANDARD,0,Starr,,,SC,"Anderson County",America/New_York,864,NA,US,34.37,-82.69,4070 +29685,STANDARD,0,Sunset,,,SC,"Pickens County",America/New_York,864,NA,US,34.99,-82.84,1500 +29686,STANDARD,0,Tamassee,,,SC,"Oconee County",America/New_York,864,NA,US,34.96,-83.05,790 +29687,STANDARD,0,Taylors,,,SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.31,39060 +29688,"PO BOX",0,Tigerville,,,SC,"Greenville County",America/New_York,864,NA,US,35.07,-82.37,298 +29689,STANDARD,0,Townville,,,SC,"Anderson County",America/New_York,864,NA,US,34.56,-82.89,3660 +29690,STANDARD,0,"Travelers Rest","Travelers Rst",,SC,"Greenville County",America/New_York,864,NA,US,34.96,-82.43,19050 +29691,STANDARD,0,Walhalla,,,SC,"Oconee County",America/New_York,864,NA,US,34.77,-83.06,8930 +29692,STANDARD,0,"Ware Shoals",,,SC,"Laurens County",America/New_York,864,NA,US,34.39,-82.24,3680 +29693,STANDARD,0,Westminster,Madison,,SC,"Oconee County",America/New_York,864,NA,US,34.66,-83.09,11940 +29695,UNIQUE,0,Hodges,,"Wayside Nurseries",SC,"Greenwood County",America/New_York,864,NA,US,34.28,-82.24,0 +29696,STANDARD,0,"West Union",,,SC,"Oconee County",America/New_York,864,NA,US,34.76,-83.04,4270 +29697,STANDARD,0,Williamston,,,SC,"Anderson County",America/New_York,864,NA,US,34.61,-82.47,11560 +29698,UNIQUE,1,Greenville,,"Bmg Columbia Hse Music Club",SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.09,0 +29702,STANDARD,0,Blacksburg,"Cherokee Falls, Cherokee Fls, Kings Creek",,SC,"Cherokee County",America/New_York,864,NA,US,35.12,-81.51,8010 +29703,"PO BOX",0,"Bowling Green",,,SC,"York County",America/New_York,803,NA,US,35.1,-81.22,389 +29704,STANDARD,0,Catawba,,,SC,"York County",America/New_York,803,NA,US,34.85,-80.91,3220 +29706,STANDARD,0,Chester,,,SC,"Chester County",America/New_York,803,NA,US,34.7,-81.21,16030 +29707,STANDARD,0,"Fort Mill","Indian Land","Ft Mill",SC,"Lancaster County",America/New_York,803,NA,US,34.99,-80.86,30080 +29708,STANDARD,0,"Fort Mill","Tega Cay","Ft Mill",SC,"York County",America/New_York,803,NA,US,35.05,-80.99,37990 +29709,STANDARD,0,Chesterfield,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.73,-80.08,4980 +29710,STANDARD,0,Clover,"Lake Wylie, River Hills","Lk Wylie",SC,"York County",America/New_York,803,NA,US,35.11,-81.22,35170 +29712,STANDARD,0,Edgemoor,,,SC,"Chester County",America/New_York,803,NA,US,34.8,-81.01,2100 +29714,STANDARD,0,"Fort Lawn",,"Ft Lawn",SC,"Chester County",America/New_York,803,NA,US,34.7,-80.89,2420 +29715,STANDARD,0,"Fort Mill",,,SC,"York County",America/New_York,803,NA,US,35,-80.94,37350 +29716,"PO BOX",0,"Fort Mill",,,SC,"York County",America/New_York,803,NA,US,35,-80.94,889 +29717,STANDARD,0,"Hickory Grove",,,SC,"York County",America/New_York,803,NA,US,34.98,-81.41,1170 +29718,STANDARD,0,Jefferson,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.65,-80.38,3040 +29720,STANDARD,0,Lancaster,,,SC,"Lancaster County",America/New_York,803,NA,US,34.72,-80.77,41640 +29721,"PO BOX",0,Lancaster,,,SC,"Lancaster County",America/New_York,803,NA,US,34.72,-80.77,3087 +29722,UNIQUE,0,Lancaster,,"Hosiery Corp Of America",SC,"Lancaster County",America/New_York,803,NA,US,34.72,-80.77,0 +29724,"PO BOX",0,Lando,,,SC,"Chester County",America/New_York,803,NA,US,34.77,-81.01,55 +29726,STANDARD,0,"Mc Connells",,Mcconnells,SC,"York County",America/New_York,803,NA,US,34.86,-81.22,1620 +29727,STANDARD,0,"Mount Croghan",,,SC,"Chesterfield County",America/New_York,843,NA,US,34.76,-80.22,1230 +29728,STANDARD,0,Pageland,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.77,-80.38,7460 +29729,STANDARD,0,Richburg,Lando,,SC,"Chester County",America/New_York,803,NA,US,34.71,-81.02,2040 +29730,STANDARD,0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.93,-81.02,47710 +29731,"PO BOX",0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.93,-81.02,1492 +29732,STANDARD,0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.97,-81.08,53030 +29733,UNIQUE,0,"Rock Hill",,"Winthrop University, Withrop College",SC,"York County",America/New_York,803,NA,US,34.94,-81.03,119 +29734,STANDARD,0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.93,-81.02,0 +29741,STANDARD,0,Ruby,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.74,-80.17,1490 +29742,STANDARD,0,Sharon,,,SC,"York County",America/New_York,"803,864",NA,US,34.95,-81.34,2060 +29743,STANDARD,0,Smyrna,,,SC,"York County",America/New_York,"864,803",NA,US,35.04,-81.41,1130 +29744,"PO BOX",0,"Van Wyck",,,SC,"Lancaster County",America/New_York,803,NA,US,34.91,-80.84,370 +29745,STANDARD,0,York,,,SC,"York County",America/New_York,803,NA,US,34.99,-81.23,28710 +29801,STANDARD,0,Aiken,Vaucluse,,SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,21060 +29802,"PO BOX",0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,2023 +29803,STANDARD,0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.49,-81.76,35700 +29804,"PO BOX",0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,671 +29805,STANDARD,0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.65,-81.6,5140 +29808,UNIQUE,0,Aiken,,"Ei Dupont Corp",SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,0 +29809,STANDARD,0,"New Ellenton",,,SC,"Aiken County",America/New_York,803,NA,US,33.41,-81.68,2020 +29810,STANDARD,0,Allendale,,Seigling,SC,"Allendale County",America/New_York,803,NA,US,33,-81.3,3270 +29812,STANDARD,0,Barnwell,Kline,Snelling,SC,"Barnwell County",America/New_York,803,NA,US,33.24,-81.36,9100 +29813,"PO BOX",0,Hilda,,,SC,"Barnwell County",America/New_York,803,NA,US,33.27,-81.24,75 +29816,"PO BOX",0,Bath,,,SC,"Aiken County",America/New_York,803,NA,US,33.5,-81.87,1309 +29817,STANDARD,0,Blackville,,,SC,"Barnwell County",America/New_York,803,NA,US,33.36,-81.28,3240 +29819,STANDARD,0,Bradley,,"Callison, Promised Land",SC,"Greenwood County",America/New_York,864,NA,US,34.04,-82.21,1190 +29821,STANDARD,0,"Clarks Hill",,,SC,"McCormick County",America/New_York,864,NA,US,33.63,-82.14,1190 +29822,"PO BOX",0,Clearwater,,,SC,"Aiken County",America/New_York,803,NA,US,33.5,-81.9,1588 +29824,STANDARD,0,Edgefield,,"Cleora, Meeting Street, Pleasant Lane",SC,"Edgefield County",America/New_York,803,NA,US,33.78,-81.93,4980 +29826,"PO BOX",0,Elko,,,SC,"Barnwell County",America/New_York,803,NA,US,33.39,-81.36,253 +29827,STANDARD,0,Fairfax,,Barton,SC,"Allendale County",America/New_York,803,NA,US,32.95,-81.23,2130 +29828,STANDARD,0,Gloverville,,,SC,"Aiken County",America/New_York,803,NA,US,33.52,-81.83,710 +29829,STANDARD,0,Graniteville,,,SC,"Aiken County",America/New_York,803,NA,US,33.56,-81.81,10630 +29831,STANDARD,0,Jackson,,"Dunbarton, Savannah River Plant",SC,"Aiken County",America/New_York,803,NA,US,33.32,-81.79,3170 +29832,STANDARD,0,Johnston,,,SC,"Edgefield County",America/New_York,803,NA,US,33.83,-81.8,4300 +29834,"PO BOX",0,Langley,,"Breeze Hill",SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.86,1409 +29835,STANDARD,0,"Mc Cormick",,"Bordeaux, Britts, Willington",SC,"McCormick County",America/New_York,864,NA,US,33.91,-82.29,5070 +29836,STANDARD,0,Martin,,,SC,"Allendale County",America/New_York,803,NA,US,33.06,-81.47,300 +29838,STANDARD,0,Modoc,,Colliers,SC,"Edgefield County",America/New_York,864,NA,US,33.75,-82.15,460 +29839,"PO BOX",0,Montmorenci,,,SC,"Aiken County",America/New_York,803,NA,US,33.52,-81.63,484 +29840,STANDARD,0,"Mount Carmel",,,SC,"McCormick County",America/New_York,864,NA,US,34,-82.5,190 +29841,STANDARD,0,"North Augusta","Beech Island, Belvedere, Clearwater",,SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.95,27170 +29842,STANDARD,0,"Beech Island",Clearwater,,SC,"Aiken County",America/New_York,803,NA,US,33.48,-81.89,6330 +29843,STANDARD,0,Olar,,,SC,"Bamberg County",America/New_York,803,NA,US,33.18,-81.18,860 +29844,"PO BOX",0,Parksville,,,SC,"McCormick County",America/New_York,864,NA,US,33.78,-82.21,145 +29845,STANDARD,0,"Plum Branch",Parksville,,SC,"McCormick County",America/New_York,864,NA,US,33.84,-82.25,880 +29846,"PO BOX",0,Sycamore,,,SC,"Allendale County",America/New_York,803,NA,US,33.03,-81.22,115 +29847,STANDARD,0,Trenton,,Eureka,SC,"Edgefield County",America/New_York,,NA,US,33.74,-81.84,4040 +29848,STANDARD,0,Troy,,,SC,"Greenwood County",America/New_York,864,NA,US,33.97,-82.08,650 +29849,STANDARD,0,Ulmer,,,SC,"Allendale County",America/New_York,803,NA,US,33.09,-81.2,260 +29850,"PO BOX",0,Vaucluse,,,SC,"Aiken County",America/New_York,803,NA,US,33.61,-81.82,169 +29851,STANDARD,0,Warrenville,,"Burnettown, Mixville, Stiefeltown",SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.82,6760 +29853,STANDARD,0,Williston,,"White Pond",SC,"Barnwell County",America/New_York,803,NA,US,33.4,-81.42,5040 +29856,STANDARD,0,Windsor,,,SC,"Aiken County",America/New_York,803,NA,US,33.48,-81.51,2260 +29860,STANDARD,0,"North Augusta",,,SC,"Edgefield County",America/New_York,803,NA,US,33.61,-81.98,14830 +29861,"PO BOX",0,"North Augusta",,,SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.95,1547 +29899,UNIQUE,0,"Mc Cormick",,"Mccormick Correctional Inst",SC,"McCormick County",America/New_York,864,NA,US,33.93,-82.25,0 +29901,"PO BOX",0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.42,-80.68,1623 +29902,STANDARD,0,Beaufort,,"Laurel Bay, Naval Hospital",SC,"Beaufort County",America/New_York,843,NA,US,32.33,-80.68,12420 +29903,"PO BOX",0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.42,-80.68,1428 +29904,"PO BOX",0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.46,-80.72,420 +29905,"PO BOX",0,"Parris Island",Beaufort,,SC,"Beaufort County",America/New_York,843,NA,US,32.35,-80.68,240 +29906,STANDARD,0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.45,-80.75,18510 +29907,STANDARD,0,Beaufort,"Ladys Island","Ladies Island",SC,"Beaufort County",America/New_York,843,NA,US,32.43,-80.64,12410 +29909,STANDARD,0,Okatie,Bluffton,"Callawassie Island, Spring Island, Sun City",SC,"Beaufort County",America/New_York,843,NA,US,32.3,-80.92,20520 +29910,STANDARD,0,Bluffton,,"Brighton Beach, Pritchardville",SC,"Beaufort County",America/New_York,843,NA,US,32.23,-80.86,44260 +29911,STANDARD,0,Brunson,,,SC,"Hampton County",America/New_York,803,NA,US,32.92,-81.18,1240 +29912,STANDARD,0,Coosawhatchie,,,SC,"Jasper County",America/New_York,843,NA,US,32.58,-80.93,18 +29913,"PO BOX",0,Crocketville,,,SC,"Hampton County",America/New_York,803,NA,US,32.91,-81.07,0 +29914,"PO BOX",0,Dale,,,SC,"Beaufort County",America/New_York,843,NA,US,32.55,-80.69,31 +29915,STANDARD,0,"Daufuskie Island","Daufuskie Is",,SC,"Beaufort County",America/New_York,843,NA,US,32.12,-80.86,440 +29916,STANDARD,0,"Early Branch",,"Barkersville, Fechtig, Grays",SC,"Hampton County",America/New_York,843,NA,US,32.74,-80.92,1150 +29918,STANDARD,0,Estill,,Nixville,SC,"Hampton County",America/New_York,803,NA,US,32.75,-81.24,3310 +29920,STANDARD,0,"Saint Helena Island","Fripp Island, St Helena Is","Dataw Island, Frogmore, Harbor Isl",SC,"Beaufort County",America/New_York,843,NA,US,32.38,-80.56,8110 +29921,"PO BOX",0,Furman,,,SC,"Hampton County",America/New_York,803,NA,US,32.68,-81.18,244 +29922,STANDARD,0,Garnett,,"Brighton, Robertville, Shirley",SC,"Hampton County",America/New_York,803,NA,US,32.6,-81.24,730 +29923,"PO BOX",0,Gifford,,,SC,"Hampton County",America/New_York,803,NA,US,32.86,-81.23,313 +29924,STANDARD,0,Hampton,,,SC,"Hampton County",America/New_York,803,NA,US,32.86,-81.1,3400 +29925,"PO BOX",0,"Hilton Head Island","Hilton Head",,SC,"Beaufort County",America/New_York,843,NA,US,32.19,-80.74,1988 +29926,STANDARD,0,"Hilton Head Island","Hilton Head",,SC,"Beaufort County",America/New_York,843,NA,US,32.19,-80.74,22420 +29927,STANDARD,0,Hardeeville,,"Bellinger, Harbville, Limehouse, Purysburgh",SC,"Jasper County",America/New_York,843,NA,US,32.27,-81.07,7440 +29928,STANDARD,0,"Hilton Head Island","Hilton Head",Fairfield,SC,"Beaufort County",America/New_York,843,NA,US,32.16,-80.76,13550 +29929,STANDARD,0,Islandton,,"Ashton, Moselle",SC,"Colleton County",America/New_York,843,NA,US,32.9,-80.93,900 +29931,"PO BOX",0,Lobeco,,,SC,"Beaufort County",America/New_York,843,NA,US,32.55,-80.74,467 +29932,STANDARD,0,Luray,,,SC,"Hampton County",America/New_York,803,NA,US,32.82,-81.35,230 +29933,"PO BOX",0,Miley,,,SC,"Hampton County",America/New_York,803,NA,US,32.94,-81.03,0 +29934,STANDARD,0,Pineland,,,SC,"Jasper County",America/New_York,,NA,US,32.6,-81.15,800 +29935,STANDARD,0,"Port Royal",,,SC,"Beaufort County",America/New_York,843,NA,US,32.38,-80.69,3240 +29936,STANDARD,0,Ridgeland,Coosawhatchie,"Gillisonville, Mitchellville, Switzerland",SC,"Jasper County",America/New_York,843,NA,US,32.48,-80.98,11120 +29938,"PO BOX",0,"Hilton Head Island","Hilton Head",,SC,"Beaufort County",America/New_York,843,NA,US,32.19,-80.74,1784 +29939,"PO BOX",0,Scotia,Estill,,SC,"Hampton County",America/New_York,803,NA,US,32.68,-81.24,122 +29940,STANDARD,0,Seabrook,,Coosaw,SC,"Beaufort County",America/New_York,843,NA,US,32.56,-80.73,2910 +29941,STANDARD,0,Sheldon,,,SC,"Beaufort County",America/New_York,843,NA,US,32.55,-80.81,530 +29943,STANDARD,0,Tillman,,Tarboro,SC,"Jasper County",America/New_York,843,NA,US,32.46,-81.1,470 +29944,STANDARD,0,Varnville,,,SC,"Hampton County",America/New_York,803,NA,US,32.85,-81.08,3810 +29945,STANDARD,0,Yemassee,,"Blake, Gardens Corner, Pocataligo, Salkehatchie, White Hall, Whitehall",SC,"Hampton County",America/New_York,843,NA,US,32.69,-80.85,3370 +30002,STANDARD,0,"Avondale Estates","Avondale Est",,GA,"DeKalb County",America/New_York,"404,678",NA,US,33.77,-84.26,5640 +30003,"PO BOX",0,Norcross,,Rockbridge,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,551 +30004,STANDARD,0,Alpharetta,Milton,,GA,"Fulton County",America/New_York,678,NA,US,34.14,-84.29,64590 +30005,STANDARD,0,Alpharetta,"Johns Creek",,GA,"Fulton County",America/New_York,678,NA,US,34.09,-84.22,36680 +30006,"PO BOX",0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,1112 +30007,"PO BOX",0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,259 +30008,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.9,-84.59,25700 +30009,STANDARD,0,Alpharetta,Milton,,GA,"Fulton County",America/New_York,678,NA,US,34.08,-84.31,18080 +30010,"PO BOX",0,Norcross,"Peachtree Cor, Peachtree Corners",,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,784 +30011,STANDARD,0,Auburn,Carl,,GA,"Barrow County",America/New_York,678,NA,US,34.01,-83.83,16340 +30012,STANDARD,0,Conyers,,,GA,"Rockdale County",America/New_York,"470,678,770",NA,US,33.66,-84.01,23960 +30013,STANDARD,0,Conyers,,,GA,"Rockdale County",America/New_York,"470,678,770",NA,US,33.65,-83.97,25020 +30014,STANDARD,0,Covington,Porterdale,"Walnut Grove",GA,"Newton County",America/New_York,"470,678,770",NA,US,33.6,-83.85,31960 +30015,"PO BOX",0,Covington,,,GA,"Newton County",America/New_York,678,NA,US,33.6,-83.85,1785 +30016,STANDARD,0,Covington,Porterdale,,GA,"Newton County",America/New_York,"470,678,770",NA,US,33.52,-83.93,50420 +30017,STANDARD,0,Grayson,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.89,-83.95,23440 +30018,"PO BOX",0,Jersey,,,GA,"Walton County",America/New_York,678,NA,US,33.71,-83.8,286 +30019,STANDARD,0,Dacula,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.98,-83.88,47410 +30021,STANDARD,0,Clarkston,,,GA,"DeKalb County",America/New_York,"404,678",NA,US,33.81,-84.24,21900 +30022,STANDARD,0,Alpharetta,"Johns Creek",,GA,"Fulton County",America/New_York,678,NA,US,34.06,-84.27,62820 +30023,"PO BOX",0,Alpharetta,,,GA,"Fulton County",America/New_York,678,NA,US,34.06,-84.27,643 +30024,STANDARD,0,Suwanee,"Johns Creek",,GA,"Gwinnett County",America/New_York,"470,678",NA,US,34.05,-84.07,81610 +30025,STANDARD,0,"Social Circle",,,GA,"Walton County",America/New_York,"470,678,770",NA,US,33.65,-83.71,9120 +30026,"PO BOX",0,"North Metro",Duluth,,GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,15 +30028,STANDARD,0,Cumming,,,GA,"Forsyth County",America/New_York,"470,678,770",NA,US,34.29,-84.18,28660 +30029,"PO BOX",0,"North Metro",Duluth,,GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,0 +30030,STANDARD,0,Decatur,,,GA,"DeKalb County",America/New_York,404,NA,US,33.77,-84.29,27450 +30031,"PO BOX",0,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.77,-84.29,1305 +30032,STANDARD,0,Decatur,,"Belvedere, Dunaire",GA,"DeKalb County",America/New_York,404,NA,US,33.74,-84.26,34620 +30033,STANDARD,0,Decatur,,"North Decatur, Vista Grove",GA,"DeKalb County",America/New_York,404,NA,US,33.81,-84.28,25790 +30034,STANDARD,0,Decatur,,,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.69,-84.25,37900 +30035,STANDARD,0,Decatur,,Snapfinger,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.72,-84.2,18260 +30036,"PO BOX",0,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.77,-84.29,839 +30037,"PO BOX",0,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.77,-84.29,1054 +30038,STANDARD,0,Lithonia,Stonecrest,,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.67,-84.14,34630 +30039,STANDARD,0,Snellville,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.8,-84.03,44310 +30040,STANDARD,0,Cumming,,,GA,"Forsyth County",America/New_York,"470,678,770",NA,US,34.2,-84.13,75040 +30041,STANDARD,0,Cumming,,,GA,"Forsyth County",America/New_York,"470,678,770",NA,US,34.2,-84.1,68880 +30042,"PO BOX",0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-83.99,737 +30043,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34,-84.01,79510 +30044,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.92,-84.07,83580 +30045,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,33.94,-83.93,39190 +30046,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,470,NA,US,33.94,-83.99,34780 +30047,STANDARD,0,Lilburn,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.88,-84.13,62210 +30048,"PO BOX",0,Lilburn,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.88,-84.13,1316 +30049,"PO BOX",0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.64,-84.26,725 +30052,STANDARD,0,Loganville,"Walnut Grove",,GA,"Walton County",America/New_York,,NA,US,33.83,-83.89,67170 +30054,STANDARD,0,Oxford,,,GA,"Newton County",America/New_York,678,NA,US,33.62,-83.87,10390 +30055,STANDARD,0,Mansfield,,,GA,"Jasper County",America/New_York,,NA,US,33.51,-83.73,3230 +30056,STANDARD,0,Newborn,,,GA,"Jasper County",America/New_York,,NA,US,33.51,-83.69,2300 +30058,STANDARD,0,Lithonia,Stonecrest,,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.71,-84.1,48920 +30060,STANDARD,0,Marietta,,"Atlanta Naval Air Station, Dobbins AFB, Dobbins Air Force Base",GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.95,-84.54,31060 +30061,"PO BOX",0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,1272 +30062,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"678,770",NA,US,34,-84.47,62910 +30063,UNIQUE,0,Marietta,,Lockheed,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,41 +30064,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.94,-84.61,46240 +30065,"PO BOX",0,Marietta,,Mreta,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,611 +30066,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,34.03,-84.51,54720 +30067,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"678,770",NA,US,33.93,-84.46,38460 +30068,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"678,770",NA,US,33.97,-84.43,33330 +30069,UNIQUE,0,Marietta,"Dobbins AFB","Dobbins Air Force Base",GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,41 +30070,"PO BOX",0,Porterdale,,,GA,"Newton County",America/New_York,678,NA,US,33.57,-83.89,1069 +30071,STANDARD,0,Norcross,"Berkeley Lake, Peachtree Cor, Peachtree Corners",,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,22320 +30072,"PO BOX",0,"Pine Lake",,,GA,"DeKalb County",America/New_York,678,NA,US,33.79,-84.21,1132 +30073,STANDARD,1,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.7,-84.25,206 +30074,"PO BOX",0,Redan,Lithonia,,GA,"Dekalb County",America/New_York,678,NA,US,33.73,-84.15,503 +30075,STANDARD,0,Roswell,"Mountain Park","Sandy Plains",GA,"Fulton County",America/New_York,678,NA,US,34.03,-84.35,53880 +30076,STANDARD,0,Roswell,,,GA,"Fulton County",America/New_York,678,NA,US,34.03,-84.31,39820 +30077,"PO BOX",0,Roswell,,,GA,"Fulton County",America/New_York,678,NA,US,34.03,-84.35,937 +30078,STANDARD,0,Snellville,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.85,-84,35210 +30079,STANDARD,0,Scottdale,,,GA,"DeKalb County",America/New_York,"404,678",NA,US,33.79,-84.26,2820 +30080,STANDARD,0,Smyrna,,,GA,"Cobb County",America/New_York,678,NA,US,33.86,-84.51,44280 +30081,"PO BOX",0,Smyrna,,,GA,"Cobb County",America/New_York,678,NA,US,33.86,-84.51,1158 +30082,STANDARD,0,Smyrna,,,GA,"Cobb County",America/New_York,678,NA,US,33.85,-84.54,24780 +30083,STANDARD,0,"Stone Mountain","Stone Mtn","Memorial Square, St Mountain, St Mtn",GA,"DeKalb County",America/New_York,"678,770,404",NA,US,33.8,-84.17,47380 +30084,STANDARD,0,Tucker,,,GA,"DeKalb County",America/New_York,678,NA,US,33.85,-84.22,35060 +30085,"PO BOX",0,Tucker,,,GA,"Dekalb County",America/New_York,678,NA,US,33.85,-84.22,828 +30086,"PO BOX",0,"Stone Mountain","Stone Mtn","St Mountain",GA,"Dekalb County",America/New_York,404,NA,US,33.8,-84.17,1204 +30087,STANDARD,0,"Stone Mountain","Smoke Rise, Stone Mtn",,GA,"DeKalb County",America/New_York,"404,678,770",NA,US,33.81,-84.13,34590 +30088,STANDARD,0,"Stone Mountain","Stone Mtn",,GA,"DeKalb County",America/New_York,"404,678,770",NA,US,33.76,-84.18,22840 +30090,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.95,-84.54,0 +30091,"PO BOX",0,Norcross,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,903 +30092,STANDARD,0,"Peachtree Corners","Berkeley Lake, Norcross, Peachtree Cor",Parkway,GA,"Gwinnett County",America/New_York,678,NA,US,33.97,-84.23,32090 +30093,STANDARD,0,Norcross,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.91,-84.18,44520 +30094,STANDARD,0,Conyers,,,GA,"Rockdale County",America/New_York,"770,470,678",NA,US,33.61,-84.05,28310 +30095,"PO BOX",0,Duluth,,,GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,747 +30096,STANDARD,0,Duluth,"Berkeley Lake, Peachtree Cor, Peachtree Corners",,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34,-84.15,60360 +30097,STANDARD,0,Duluth,"Johns Creek, Peachtree Cor, Peachtree Corners",,GA,"Fulton County",America/New_York,"470,678,770",NA,US,34.03,-84.15,46340 +30098,UNIQUE,0,Duluth,,"State Farm Insurance Co",GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,28 +30099,UNIQUE,0,Duluth,,"Primerica Financial Services",GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,0 +30101,STANDARD,0,Acworth,,"Oak Grove",GA,"Cobb County",America/New_York,"678,770",NA,US,34.05,-84.67,57910 +30102,STANDARD,0,Acworth,,,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.1,-84.63,38510 +30103,STANDARD,0,Adairsville,,,GA,"Bartow County",America/New_York,"470,678,770",NA,US,34.36,-84.91,13110 +30104,STANDARD,0,Aragon,,,GA,"Polk County",America/New_York,678,NA,US,34.04,-85.05,4040 +30105,STANDARD,0,Armuchee,,,GA,"Floyd County",America/New_York,706,NA,US,34.47,-85.21,2110 +30106,STANDARD,0,Austell,,,GA,"Cobb County",America/New_York,"770,678",NA,US,33.82,-84.64,19140 +30107,STANDARD,0,"Ball Ground",,,GA,"Cherokee County",America/New_York,"770,678",NA,US,34.33,-84.37,14670 +30108,STANDARD,0,Bowdon,,,GA,"Carroll County",America/New_York,"470,678,770",NA,US,33.53,-85.25,6690 +30109,"PO BOX",0,"Bowdon Junction","Bowdon Jct",,GA,"Carroll County",America/New_York,678,NA,US,33.65,-85.13,151 +30110,STANDARD,0,Bremen,,,GA,"Haralson County",America/New_York,"678,770",NA,US,33.7,-85.15,11820 +30111,"PO BOX",0,Clarkdale,,,GA,"Cobb County",America/New_York,678,NA,US,33.82,-84.65,314 +30112,"PO BOX",0,Carrollton,,,GA,"Carroll County",America/New_York,678,NA,US,33.58,-85.08,1616 +30113,STANDARD,0,Buchanan,,,GA,"Haralson County",America/New_York,"678,770",NA,US,33.8,-85.18,5090 +30114,STANDARD,0,Canton,"Holly Springs",,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.24,-84.49,51740 +30115,STANDARD,0,Canton,"Holly Springs",,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.2,-84.4,44680 +30116,STANDARD,0,Carrollton,,,GA,"Carroll County",America/New_York,"678,770",NA,US,33.54,-85,20630 +30117,STANDARD,0,Carrollton,,"University Of West Georgia",GA,"Carroll County",America/New_York,"678,770",NA,US,33.58,-85.07,27610 +30118,UNIQUE,0,Carrollton,,"University Of West Georgia",GA,"Carroll County",America/New_York,678,NA,US,33.57,-85.1,101 +30119,UNIQUE,0,Carrollton,,Southwire,GA,"Carroll County",America/New_York,678,NA,US,33.58,-85.07,0 +30120,STANDARD,0,Cartersville,Euharlee,"North Corners",GA,"Bartow County",America/New_York,"470,678,770",NA,US,34.16,-84.8,37530 +30121,STANDARD,0,Cartersville,Emerson,,GA,"Bartow County",America/New_York,"470,678,770",NA,US,34.21,-84.78,19900 +30122,STANDARD,0,"Lithia Springs","Lithia Spgs",,GA,"Douglas County",America/New_York,678,NA,US,33.77,-84.64,20410 +30123,"PO BOX",0,Cassville,,,GA,"Bartow County",America/New_York,,NA,US,34.23,-84.84,906 +30124,STANDARD,0,"Cave Spring",,,GA,"Floyd County",America/New_York,706,NA,US,34.1,-85.33,2440 +30125,STANDARD,0,Cedartown,,,GA,"Polk County",America/New_York,"470,678,770",NA,US,34.01,-85.25,20320 +30126,STANDARD,0,Mableton,Smyrna,,GA,"Cobb County",America/New_York,678,NA,US,33.81,-84.56,35960 +30127,STANDARD,0,"Powder Springs","Powder Spgs",,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.86,-84.68,63510 +30129,"PO BOX",0,Coosa,,,GA,"Floyd County",America/New_York,706,NA,US,34.22,-85.39,434 +30132,STANDARD,0,Dallas,,,GA,"Paulding County",America/New_York,"678,770",NA,US,33.91,-84.83,40960 +30133,"PO BOX",0,Douglasville,,,GA,"Douglas County",America/New_York,678,NA,US,33.74,-84.74,1123 +30134,STANDARD,0,Douglasville,,,GA,"Douglas County",America/New_York,"678,770",NA,US,33.74,-84.74,40210 +30135,STANDARD,0,Douglasville,,,GA,"Douglas County",America/New_York,"678,770",NA,US,33.67,-84.73,60000 +30137,STANDARD,0,Emerson,,,GA,"Bartow County",America/New_York,,NA,US,34.12,-84.76,1450 +30138,"PO BOX",0,"Esom Hill",,,GA,"Cleburne County",America/New_York,678,NA,US,33.93,-85.37,75 +30139,STANDARD,0,Fairmount,,,GA,"Gordon County",America/New_York,"706,770",NA,US,34.44,-84.7,3670 +30140,"PO BOX",0,Felton,,,GA,"Haralson County",America/New_York,678,NA,US,33.88,-85.21,118 +30141,STANDARD,0,Hiram,,,GA,"Paulding County",America/New_York,678,NA,US,33.86,-84.77,21110 +30142,"PO BOX",0,"Holly Springs",,,GA,"Cherokee County",America/New_York,678,NA,US,34.17,-84.49,574 +30143,STANDARD,0,Jasper,"Big Canoe",,GA,"Pickens County",America/New_York,"678,770,706",NA,US,34.46,-84.42,21460 +30144,STANDARD,0,Kennesaw,,"Barrett Parkway",GA,"Cobb County",America/New_York,678,NA,US,34.02,-84.61,44120 +30145,STANDARD,0,Kingston,Euharlee,,GA,"Bartow County",America/New_York,"678,770",NA,US,34.23,-84.94,7180 +30146,"PO BOX",0,Lebanon,,,GA,"Cherokee County",America/New_York,678,NA,US,34.21,-84.44,259 +30147,STANDARD,0,Lindale,,,GA,"Floyd County",America/New_York,706,NA,US,34.18,-85.18,3780 +30148,STANDARD,0,"Marble Hill",,Marblehill,GA,"Pickens County",America/New_York,"678,770,706",NA,US,34.46,-84.26,610 +30149,"PO BOX",0,"Mount Berry",Rome,,GA,"Floyd County",America/New_York,706,NA,US,34.31,-85.23,347 +30150,"PO BOX",0,"Mount Zion",,,GA,"Carroll County",America/New_York,678,NA,US,33.63,-85.18,197 +30151,"PO BOX",0,Nelson,,,GA,"Pickens County",America/New_York,,NA,US,34.38,-84.37,402 +30152,STANDARD,0,Kennesaw,,,GA,"Cobb County",America/New_York,678,NA,US,33.99,-84.65,41190 +30153,STANDARD,0,Rockmart,Braswell,,GA,"Polk County",America/New_York,"470,678,770",NA,US,34,-85.04,16400 +30154,"PO BOX",0,Douglasville,,,GA,"Douglas County",America/New_York,678,NA,US,33.74,-84.74,744 +30156,"PO BOX",0,Kennesaw,,,GA,"Cobb County",America/New_York,678,NA,US,33.99,-84.65,872 +30157,STANDARD,0,Dallas,,,GA,"Paulding County",America/New_York,"678,770",NA,US,33.88,-84.87,45250 +30160,"PO BOX",0,Kennesaw,,,GA,"Cobb County",America/New_York,678,NA,US,33.99,-84.65,372 +30161,STANDARD,0,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.24,-85.17,27600 +30162,"PO BOX",0,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.26,-85.18,1153 +30163,"PO BOX",1,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.26,-85.18,0 +30164,"PO BOX",0,Rome,,,GA,"Newton County",America/New_York,706,NA,US,33.4,-83.83,965 +30165,STANDARD,0,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.26,-85.18,35040 +30168,STANDARD,0,Austell,,,GA,"Cobb County",America/New_York,"678,770",NA,US,33.78,-84.59,22540 +30169,"PO BOX",0,Canton,,,GA,"Cherokee County",America/New_York,678,NA,US,34.14,-84.3,843 +30170,STANDARD,0,Roopville,,Ephesus,GA,"Carroll County",America/New_York,"678,770",NA,US,33.45,-85.13,2690 +30171,STANDARD,0,Rydal,,,GA,"Bartow County",America/New_York,,NA,US,34.37,-84.7,3330 +30172,"PO BOX",0,Shannon,,,GA,"Floyd County",America/New_York,706,NA,US,34.33,-85.08,1257 +30173,STANDARD,0,"Silver Creek",,,GA,"Floyd County",America/New_York,706,NA,US,34.13,-85.13,5460 +30175,STANDARD,0,"Talking Rock",,"White Stone",GA,"Pickens County",America/New_York,706,NA,US,34.5,-84.5,5430 +30176,STANDARD,0,Tallapoosa,,,GA,"Haralson County",America/New_York,"470,678,770",NA,US,33.75,-85.29,5780 +30177,STANDARD,0,Tate,,,GA,"Pickens County",America/New_York,"678,706,770",NA,US,34.41,-84.38,530 +30178,STANDARD,0,Taylorsville,,,GA,"Bartow County",America/New_York,,NA,US,34.08,-84.98,3680 +30179,STANDARD,0,Temple,,,GA,"Carroll County",America/New_York,"470,678,770",NA,US,33.73,-85.03,15770 +30180,STANDARD,0,"Villa Rica",,,GA,"Carroll County",America/New_York,"678,770",NA,US,33.73,-84.92,33850 +30182,STANDARD,0,Waco,,,GA,"Carroll County",America/New_York,,NA,US,33.7,-85.18,2260 +30183,STANDARD,0,Waleska,,"Lake Arrowhead",GA,"Cherokee County",America/New_York,678,NA,US,34.31,-84.55,5260 +30184,STANDARD,0,White,,,GA,"Bartow County",America/New_York,,NA,US,34.28,-84.74,6570 +30185,STANDARD,0,Whitesburg,,,GA,"Carroll County",America/New_York,,NA,US,33.49,-84.91,3480 +30187,STANDARD,0,Winston,,,GA,"Douglas County",America/New_York,678,NA,US,33.65,-84.86,8640 +30188,STANDARD,0,Woodstock,"Holly Springs, Mountain Park",,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.1,-84.51,61190 +30189,STANDARD,0,Woodstock,,,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.12,-84.57,35810 +30204,STANDARD,0,Barnesville,Aldora,,GA,"Lamar County",America/New_York,"470,678,770",NA,US,33.05,-84.15,9900 +30205,STANDARD,0,Brooks,,,GA,"Fayette County",America/New_York,,NA,US,33.29,-84.45,3320 +30206,STANDARD,0,Concord,,,GA,"Pike County",America/New_York,"678,770",NA,US,33.09,-84.43,2750 +30212,"PO BOX",0,Experiment,,,GA,"Spalding County",America/New_York,678,NA,US,33.27,-84.27,717 +30213,STANDARD,0,Fairburn,,,GA,"Fulton County",America/New_York,770,NA,US,33.56,-84.58,34710 +30214,STANDARD,0,Fayetteville,Woolsey,,GA,"Fayette County",America/New_York,"770,678",NA,US,33.49,-84.49,29280 +30215,STANDARD,0,Fayetteville,,,GA,"Fayette County",America/New_York,"678,770",NA,US,33.44,-84.46,34640 +30216,STANDARD,0,Flovilla,,"Indian Springs",GA,"Butts County",America/New_York,678,NA,US,33.25,-83.89,1700 +30217,STANDARD,0,Franklin,"Centralhatchee, Ctrlhatchee",,GA,"Heard County",America/New_York,706,NA,US,33.28,-85.09,7050 +30218,STANDARD,0,Gay,,,GA,"Meriwether County",America/New_York,706,NA,US,33.09,-84.57,1710 +30219,"PO BOX",1,Glenn,,,GA,"Heard County",America/New_York,706,NA,US,33.28,-85.12,0 +30220,STANDARD,0,Grantville,"Lone Oak",,GA,"Coweta County",America/New_York,"470,678,770",NA,US,33.23,-84.82,4630 +30222,STANDARD,0,Greenville,Stovall,,GA,"Meriwether County",America/New_York,706,NA,US,33.02,-84.71,3510 +30223,STANDARD,0,Griffin,,,GA,"Spalding County",America/New_York,"770,470,678",NA,US,33.29,-84.28,29970 +30224,STANDARD,0,Griffin,,,GA,"Spalding County",America/New_York,"470,678,770",NA,US,33.24,-84.27,22150 +30228,STANDARD,0,Hampton,,,GA,"Henry County",America/New_York,770,NA,US,33.38,-84.28,42490 +30229,"PO BOX",0,Haralson,,,GA,"Coweta County",America/New_York,678,NA,US,33.22,-84.57,193 +30230,STANDARD,0,Hogansville,"Lone Oak",,GA,"Troup County",America/New_York,706,NA,US,33.16,-84.9,7470 +30233,STANDARD,0,Jackson,,,GA,"Butts County",America/New_York,"470,678,770",NA,US,33.29,-83.96,20040 +30234,STANDARD,0,Jenkinsburg,,,GA,"Butts County",America/New_York,678,NA,US,33.32,-84.03,1790 +30236,STANDARD,0,Jonesboro,"Lake Spivey",,GA,"Clayton County",America/New_York,"770,678",NA,US,33.52,-84.35,41100 +30237,"PO BOX",0,Jonesboro,,,GA,"Clayton County",America/New_York,678,NA,US,33.52,-84.35,1145 +30238,STANDARD,0,Jonesboro,,,GA,"Clayton County",America/New_York,"678,770",NA,US,33.49,-84.38,35500 +30240,STANDARD,0,Lagrange,,,GA,"Troup County",America/New_York,"706,762",NA,US,33.04,-85.12,24550 +30241,STANDARD,0,Lagrange,,,GA,"Troup County",America/New_York,"762,706",NA,US,33.03,-84.98,20680 +30248,STANDARD,0,"Locust Grove",,,GA,"Henry County",America/New_York,"678,770",NA,US,33.34,-84.1,25740 +30250,"PO BOX",0,Lovejoy,,,GA,"Clayton County",America/New_York,678,NA,US,33.44,-84.31,362 +30251,STANDARD,0,Luthersville,,,GA,"Meriwether County",America/New_York,"470,678,770",NA,US,33.2,-84.74,1860 +30252,STANDARD,0,Mcdonough,,,GA,"Henry County",America/New_York,"678,770",NA,US,33.47,-84.06,44530 +30253,STANDARD,0,Mcdonough,,"Mc Donough",GA,"Henry County",America/New_York,"678,770",NA,US,33.45,-84.14,54170 +30256,STANDARD,0,Meansville,,,GA,"Pike County",America/New_York,,NA,US,33.04,-84.3,2380 +30257,STANDARD,0,Milner,,,GA,"Lamar County",America/New_York,678,NA,US,33.11,-84.19,4020 +30258,STANDARD,0,Molena,,,GA,"Pike County",America/New_York,678,NA,US,33.01,-84.5,2260 +30259,STANDARD,0,Moreland,,,GA,"Coweta County",America/New_York,678,NA,US,33.28,-84.77,3340 +30260,STANDARD,0,Morrow,"Lake City",,GA,"Clayton County",America/New_York,404,NA,US,33.57,-84.34,22520 +30261,"PO BOX",0,Lagrange,Mountville,,GA,"Troup County",America/New_York,706,NA,US,33.03,-84.98,31 +30263,STANDARD,0,Newnan,Raymond,,GA,"Coweta County",America/New_York,"470,678,770",NA,US,33.37,-84.78,50790 +30264,"PO BOX",0,Newnan,,,GA,"Coweta County",America/New_York,678,NA,US,33.37,-84.78,1068 +30265,STANDARD,0,Newnan,,Shenandoah,GA,"Coweta County",America/New_York,"470,678,770",NA,US,33.41,-84.71,33560 +30266,"PO BOX",0,"Orchard Hill",,,GA,"Spalding County",America/New_York,678,NA,US,33.18,-84.21,459 +30268,STANDARD,0,Palmetto,"Chatt Hills, Chattahoochee Hills",,GA,"Fulton County",America/New_York,678,NA,US,33.52,-84.66,9460 +30269,STANDARD,0,"Peachtree City","Peachtree Cty",,GA,"Fayette County",America/New_York,"678,770",NA,US,33.39,-84.56,37400 +30270,UNIQUE,0,"Peachtree City","Fayetteville, Peachtree Cty","Peachtree City Parcel Return",GA,"Fayette County",America/New_York,678,NA,US,33.4,-84.6,0 +30271,"PO BOX",0,Newnan,,,GA,"Coweta County",America/New_York,678,NA,US,33.37,-84.78,961 +30272,"PO BOX",0,"Red Oak",,,GA,"Fulton County",America/New_York,678,NA,US,33.62,-84.53,642 +30273,STANDARD,0,Rex,,,GA,"Clayton County",America/New_York,678,NA,US,33.58,-84.27,16270 +30274,STANDARD,0,Riverdale,,,GA,"Clayton County",America/New_York,"678,770",NA,US,33.56,-84.4,29150 +30275,"PO BOX",0,Sargent,,,GA,"Coweta County",America/New_York,678,NA,US,33.44,-84.87,253 +30276,STANDARD,0,Senoia,,,GA,"Coweta County",America/New_York,"678,770",NA,US,33.31,-84.55,16820 +30277,STANDARD,0,Sharpsburg,,,GA,"Coweta County",America/New_York,678,NA,US,33.38,-84.65,20990 +30281,STANDARD,0,Stockbridge,,,GA,"Henry County",America/New_York,"678,770",NA,US,33.54,-84.24,60480 +30284,"PO BOX",0,"Sunny Side",,,GA,"Spalding County",America/New_York,678,NA,US,33.34,-84.29,497 +30285,STANDARD,0,"The Rock",,,GA,"Upson County",America/New_York,,NA,US,32.96,-84.24,630 +30286,STANDARD,0,Thomaston,,,GA,"Upson County",America/New_York,706,NA,US,32.89,-84.32,18400 +30287,"PO BOX",0,Morrow,,,GA,"Clayton County",America/New_York,404,NA,US,33.57,-84.34,239 +30288,STANDARD,0,Conley,,,GA,"Clayton County",America/New_York,,NA,US,33.65,-84.33,7370 +30289,"PO BOX",0,Turin,,,GA,"Coweta County",America/New_York,678,NA,US,33.32,-84.63,242 +30290,STANDARD,0,Tyrone,,,GA,"Fayette County",America/New_York,"678,770",NA,US,33.46,-84.59,9000 +30291,STANDARD,0,"Union City",,,GA,"Fulton County",America/New_York,678,NA,US,33.57,-84.54,19980 +30292,STANDARD,0,Williamson,,,GA,"Pike County",America/New_York,"678,770",NA,US,33.18,-84.36,5690 +30293,STANDARD,0,Woodbury,,,GA,"Meriwether County",America/New_York,706,NA,US,32.98,-84.58,2230 +30294,STANDARD,0,Ellenwood,,,GA,"DeKalb County",America/New_York,,NA,US,33.63,-84.26,37600 +30295,STANDARD,0,Zebulon,,,GA,"Pike County",America/New_York,"470,678,770",NA,US,33.1,-84.34,4070 +30296,STANDARD,0,Riverdale,,,GA,"Clayton County",America/New_York,678,NA,US,33.56,-84.44,24560 +30297,STANDARD,0,"Forest Park","Fort Gillem, Gillem Enclave, Gillem Enclv",,GA,"Clayton County",America/New_York,404,NA,US,33.62,-84.37,23090 +30298,"PO BOX",0,"Forest Park",,Forest,GA,"Clayton County",America/New_York,404,NA,US,33.61,-84.35,875 +30301,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.85,-84.39,1009 +30302,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,774 +30303,STANDARD,0,Atlanta,,"Atl, Georgia State University",GA,"Fulton County",America/New_York,"470,404,678",NA,US,33.75,-84.39,1800 +30304,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30305,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"678,404,470,770",NA,US,33.83,-84.38,22750 +30306,STANDARD,0,Atlanta,,"Atl, North Highland Finance",GA,"Fulton County",America/New_York,404,NA,US,33.78,-84.34,20460 +30307,STANDARD,0,Atlanta,,"Atl, Little Five Points Pstl Str",GA,"DeKalb County",America/New_York,404,NA,US,33.76,-84.33,17540 +30308,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678",NA,US,33.77,-84.37,13770 +30309,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"678,404",NA,US,33.78,-84.38,22880 +30310,STANDARD,0,Atlanta,,"Atl, Fort Mcpherson",GA,"Fulton County",America/New_York,"404,678",NA,US,33.72,-84.42,19900 +30311,STANDARD,0,Atlanta,"South Fulton",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.72,-84.48,25150 +30312,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"470,404,678,770",NA,US,33.74,-84.38,17770 +30313,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,470,678",NA,US,33.76,-84.4,2940 +30314,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.42,11130 +30315,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"678,404",NA,US,33.7,-84.38,24320 +30316,STANDARD,0,Atlanta,,Atl,GA,"DeKalb County",America/New_York,404,NA,US,33.72,-84.32,26920 +30317,STANDARD,0,Atlanta,,Atl,GA,"DeKalb County",America/New_York,404,NA,US,33.75,-84.32,11610 +30318,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.78,-84.44,39770 +30319,STANDARD,0,Atlanta,"Brookhaven, Sandy Spgs, Sandy Springs","Atl, North Atlanta",GA,"DeKalb County",America/New_York,"678,770",NA,US,33.87,-84.33,36360 +30320,"PO BOX",0,Atlanta,,"Atl, Logistics & Distribution Ctr",GA,"Clayton County",America/New_York,404,NA,US,33.63,-84.43,312 +30321,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,1247 +30322,UNIQUE,0,Atlanta,,"Atl, Emory University",GA,"DeKalb County",America/New_York,678,NA,US,33.79,-84.33,252 +30324,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.81,-84.36,23340 +30325,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.44,475 +30326,STANDARD,0,Atlanta,Brookhaven,Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.85,-84.36,6150 +30327,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.86,-84.42,21940 +30328,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.93,-84.38,34380 +30329,STANDARD,0,Atlanta,Brookhaven,"Atl, Briarcliff",GA,"DeKalb County",America/New_York,"404,470",NA,US,33.82,-84.32,23410 +30330,UNIQUE,1,Atlanta,"Fort Mcpherson, Ft Mcpherson",Atl,GA,"Fulton County",America/New_York,678,NA,US,33.7,-84.43,121 +30331,STANDARD,0,Atlanta,"South Fulton",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.71,-84.53,46720 +30332,UNIQUE,0,Atlanta,,"Atl, Georgia Tech",GA,"Fulton County",America/New_York,404,NA,US,33.78,-84.4,793 +30333,"PO BOX",0,Atlanta,,"Atl, Druid Hills",GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.32,198 +30334,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678,770,470",NA,US,33.75,-84.39,257 +30336,STANDARD,0,Atlanta,"South Fulton","Atl, Industrial",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.57,1370 +30337,STANDARD,0,Atlanta,"College Park, South Fulton",Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.64,-84.46,8580 +30338,STANDARD,0,Atlanta,"Dunwoody, Sandy Spgs, Sandy Springs","Atl, North Springs",GA,"DeKalb County",America/New_York,"404,470,678,770",NA,US,33.94,-84.31,34840 +30339,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs, Vinings","Atl, Cumberland, Overlook Sru, Vinnings",GA,"Cobb County",America/New_York,"404,470,678,770",NA,US,33.86,-84.47,25130 +30340,STANDARD,0,Atlanta,Doraville,Atl,GA,"DeKalb County",America/New_York,"678,470,770",NA,US,33.89,-84.25,25050 +30341,STANDARD,0,Atlanta,Chamblee,Atl,GA,"DeKalb County",America/New_York,"404,470,770,678",NA,US,33.9,-84.3,27350 +30342,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs","Atl, Tuxedo",GA,"Fulton County",America/New_York,"470,678,770,404",NA,US,33.88,-84.37,27680 +30343,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,260 +30344,STANDARD,0,Atlanta,"East Point",Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.68,-84.46,26670 +30345,STANDARD,0,Atlanta,,Atl,GA,"DeKalb County",America/New_York,"770,470,678",NA,US,33.85,-84.28,21850 +30346,STANDARD,0,Atlanta,Dunwoody,Atl,GA,"DeKalb County",America/New_York,"404,770,470,678",NA,US,33.92,-84.34,4870 +30347,STANDARD,1,Atlanta,"Atl, Executive Park",,GA,"Fulton County",America/New_York,404,NA,US,33.82,-84.33,242 +30348,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.83,-84.38,41 +30349,STANDARD,0,Atlanta,"College Park, South Fulton",Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.61,-84.49,66560 +30350,STANDARD,0,Atlanta,"Dunwoody, Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,"404,770,678",NA,US,33.97,-84.32,28970 +30353,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30354,STANDARD,0,Atlanta,Hapeville,Atl,GA,"Fulton County",America/New_York,"770,404,678",NA,US,33.66,-84.39,12290 +30355,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.83,-84.36,836 +30356,"PO BOX",0,Atlanta,Dunwoody,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.94,-84.33,418 +30357,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.38,646 +30358,"PO BOX",0,Atlanta,"Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,702 +30359,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.82,-84.32,549 +30360,STANDARD,0,Atlanta,"Doraville, Dunwoody","Atl, Winters Chapel",GA,"DeKalb County",America/New_York,"470,404,678,770",NA,US,33.93,-84.27,13510 +30361,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.78,-84.38,58 +30362,"PO BOX",0,Atlanta,Doraville,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,981 +30363,STANDARD,0,Atlanta,,,GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.4,2240 +30364,"PO BOX",0,Atlanta,"East Point",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.67,-84.46,880 +30366,"PO BOX",0,Atlanta,Chamblee,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.88,-84.29,375 +30368,UNIQUE,0,Atlanta,,"Atl, Suntrust",GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30369,STANDARD,0,Atlanta,,,GA,"Fulton County",America/New_York,"678,404,470",NA,US,33.8,-84.47,0 +30370,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30371,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30374,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.57,-84.39,0 +30375,UNIQUE,0,Atlanta,,"Atl, Att Bellsouth",GA,"Fulton County",America/New_York,404,NA,US,33.77,-84.38,0 +30376,STANDARD,1,Atlanta,Atl,,GA,"Fulton County",America/New_York,404,NA,US,33.81,-84.35,0 +30377,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,286 +30378,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30379,STANDARD,1,Atlanta,Atl,,GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30380,UNIQUE,0,Atlanta,,"Atl, Atlanta Postal Credit Union",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30384,UNIQUE,0,Atlanta,,"Atl, Bank America",GA,"Fulton County",America/New_York,404,NA,US,33.89,-84.45,0 +30385,UNIQUE,0,Atlanta,,"Atl, Att Bellsouth",GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30386,UNIQUE,1,Atlanta,Atl,"Sears Roebuck Co",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30387,UNIQUE,1,Atlanta,Atl,"J C Penney",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30388,UNIQUE,0,Atlanta,,"Atl, Avon",GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30389,UNIQUE,1,Atlanta,Atl,"Atlanta Gas Light",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30390,UNIQUE,1,Atlanta,Atl,"J C Penney",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30392,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30394,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30396,UNIQUE,0,Atlanta,,"Atl, Georgia Power",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30398,UNIQUE,0,Atlanta,,"Atl, Bank America",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30399,UNIQUE,1,Atlanta,Atl,"Bankamerica Corporation",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30401,STANDARD,0,Swainsboro,"Covena, Summertown","Blun, Blundale, Dellwood, Gary, Kemp, Lexsy, Modoc, Wesley",GA,"Emanuel County",America/New_York,"478,912",NA,US,32.59,-82.33,10560 +30410,STANDARD,0,Ailey,,"Higgston, Mcgregor",GA,"Montgomery County",America/New_York,912,NA,US,32.18,-82.57,1280 +30411,STANDARD,0,Alamo,,,GA,"Wheeler County",America/New_York,"912,478",NA,US,32.14,-82.77,2020 +30412,"PO BOX",0,Alston,,,GA,"Montgomery County",America/New_York,912,NA,US,32.08,-82.49,150 +30413,STANDARD,0,Bartow,,,GA,"Jefferson County",America/New_York,478,NA,US,32.88,-82.47,1190 +30414,"PO BOX",0,Bellville,,,GA,"Evans County",America/New_York,912,NA,US,32.15,-81.97,193 +30415,STANDARD,0,Brooklet,,"Akin, Arcola, Denmark, Hubert, Ivanhoe, Mcgregor, Stilson",GA,"Bulloch County",America/New_York,912,NA,US,32.38,-81.66,6780 +30417,STANDARD,0,Claxton,,,GA,"Evans County",America/New_York,912,NA,US,32.16,-81.9,7900 +30420,STANDARD,0,Cobbtown,,Aline,GA,"Tattnall County",America/New_York,912,NA,US,32.28,-82.13,1410 +30421,STANDARD,0,Collins,,,GA,"Tattnall County",America/New_York,912,NA,US,32.18,-82.1,2400 +30423,"PO BOX",0,Daisy,,,GA,"Evans County",America/New_York,912,NA,US,32.15,-81.83,337 +30424,"PO BOX",0,Dover,,,GA,"Screven County",America/New_York,912,NA,US,32.57,-81.71,77 +30425,STANDARD,0,Garfield,,,GA,"Emanuel County",America/New_York,478,NA,US,32.65,-82.09,1110 +30426,STANDARD,0,Girard,,,GA,"Burke County",America/New_York,912,NA,US,33.04,-81.71,790 +30427,STANDARD,0,Glennville,,Mendes,GA,"Tattnall County",America/New_York,912,NA,US,31.93,-81.93,8800 +30428,STANDARD,0,Glenwood,,,GA,"Wheeler County",America/New_York,912,NA,US,32.18,-82.67,1770 +30429,"PO BOX",0,Hagan,,,GA,"Evans County",America/New_York,912,NA,US,32.17,-81.94,1364 +30434,STANDARD,0,Louisville,,"Grange, Rosier, Vidette",GA,"Jefferson County",America/New_York,478,NA,US,32.99,-82.4,4390 +30436,STANDARD,0,Lyons,"Oak Park","Cedar Crossing, Ohoopee, Santa Claus",GA,"Toombs County",America/New_York,912,NA,US,32.2,-82.32,9150 +30438,"PO BOX",0,Manassas,,,GA,"Tattnall County",America/New_York,912,NA,US,32.17,-82.02,71 +30439,STANDARD,0,Metter,,Excelsior,GA,"Candler County",America/New_York,912,NA,US,32.39,-82.06,7890 +30441,STANDARD,0,Midville,,"Coleman Lake, Colemans Lake, Green Way, Greenway, Herndon",GA,"Emanuel County",America/New_York,478,NA,US,32.82,-82.23,1620 +30442,STANDARD,0,Millen,Perkins,"Birdsville, Butts, Emmalane, Scarboro, Thrift",GA,"Jenkins County",America/New_York,478,NA,US,32.8,-81.94,5780 +30445,STANDARD,0,"Mount Vernon",,,GA,"Montgomery County",America/New_York,912,NA,US,32.18,-82.59,2090 +30446,STANDARD,0,Newington,,,GA,"Screven County",America/New_York,912,NA,US,32.58,-81.5,1230 +30447,"PO BOX",0,Norristown,,,GA,"Emanuel County",America/New_York,478,NA,US,32.56,-82.55,0 +30448,"PO BOX",0,Nunez,,,GA,"Emanuel County",America/New_York,478,NA,US,32.49,-82.36,190 +30449,"PO BOX",0,Oliver,,,GA,"Screven County",America/New_York,912,NA,US,32.52,-81.53,171 +30450,STANDARD,0,Portal,,Aaron,GA,"Bulloch County",America/New_York,912,NA,US,32.53,-81.93,2170 +30451,"PO BOX",0,Pulaski,,,GA,"Candler County",America/New_York,912,NA,US,32.39,-81.95,325 +30452,STANDARD,0,Register,,,GA,"Bulloch County",America/New_York,912,NA,US,32.36,-81.88,1250 +30453,STANDARD,0,Reidsville,,,GA,"Tattnall County",America/New_York,912,NA,US,32.08,-82.11,5070 +30454,STANDARD,0,Rockledge,,,GA,"Laurens County",America/New_York,478,NA,US,32.44,-82.73,580 +30455,STANDARD,0,"Rocky Ford",,,GA,"Screven County",America/New_York,912,NA,US,32.66,-81.82,510 +30456,STANDARD,0,Sardis,,,GA,"Burke County",America/New_York,"478,912",NA,US,32.97,-81.76,1570 +30457,STANDARD,0,Soperton,,,GA,"Treutlen County",America/New_York,912,NA,US,32.37,-82.59,4480 +30458,STANDARD,0,Statesboro,,,GA,"Bulloch County",America/New_York,912,NA,US,32.44,-81.77,24520 +30459,"PO BOX",0,Statesboro,,,GA,"Bulloch County",America/New_York,912,NA,US,32.44,-81.77,2235 +30460,UNIQUE,0,Statesboro,,"Ga Southern University",GA,"Bulloch County",America/New_York,912,NA,US,32.42,-81.78,254 +30461,STANDARD,0,Statesboro,,,GA,"Bulloch County",America/New_York,912,NA,US,32.51,-81.72,13240 +30464,"PO BOX",0,Stillmore,,,GA,"Emanuel County",America/New_York,478,NA,US,32.44,-82.22,518 +30467,STANDARD,0,Sylvania,Hiltonia,,GA,"Screven County",America/New_York,912,NA,US,32.75,-81.63,9330 +30470,STANDARD,0,Tarrytown,,,GA,"Montgomery County",America/New_York,912,NA,US,32.31,-82.55,770 +30471,STANDARD,0,"Twin City",,Canoochee,GA,"Emanuel County",America/New_York,"478,912",NA,US,32.58,-82.15,3370 +30473,STANDARD,0,Uvalda,,,GA,"Montgomery County",America/New_York,912,NA,US,32.03,-82.5,2050 +30474,STANDARD,0,Vidalia,,"Center, Charles, Kibbee, Normantown, Petross",GA,"Toombs County",America/New_York,912,NA,US,32.21,-82.4,12500 +30475,"PO BOX",0,Vidalia,,,GA,"Toombs County",America/New_York,912,NA,US,32.22,-82.37,2406 +30477,STANDARD,0,Wadley,,Moxley,GA,"Jefferson County",America/New_York,478,NA,US,32.86,-82.4,2440 +30499,UNIQUE,0,Reidsville,,"Georgia State Penitentiary",GA,"Tattnall County",America/New_York,912,NA,US,32.08,-82.11,0 +30501,STANDARD,0,Gainesville,,Westside,GA,"Hall County",America/New_York,"470,678,770",NA,US,34.29,-83.83,24830 +30502,"PO BOX",0,"Chestnut Mountain","Chestnut Mtn, Oakwood",,GA,"Hall County",America/New_York,678,NA,US,34.19,-83.85,384 +30503,"PO BOX",0,Gainesville,,,GA,"Hall County",America/New_York,678,NA,US,34.29,-83.83,2112 +30504,STANDARD,0,Gainesville,,,GA,"Hall County",America/New_York,"470,678,770",NA,US,34.27,-83.89,25280 +30506,STANDARD,0,Gainesville,,,GA,"Hall County",America/New_York,678,NA,US,34.35,-83.9,40210 +30507,STANDARD,0,Gainesville,,,GA,"Hall County",America/New_York,"770,470,678",NA,US,34.25,-83.77,28330 +30510,STANDARD,0,Alto,,,GA,"Habersham County",America/New_York,,NA,US,34.47,-83.57,5680 +30511,STANDARD,0,Baldwin,,,GA,"Banks County",America/New_York,,NA,US,34.48,-83.53,3150 +30512,STANDARD,0,Blairsville,,,GA,"Union County",America/New_York,706,NA,US,34.87,-83.95,16590 +30513,STANDARD,0,"Blue Ridge",,,GA,"Fannin County",America/New_York,"762,706",NA,US,34.86,-84.32,9610 +30514,"PO BOX",0,Blairsville,,,GA,"Union County",America/New_York,706,NA,US,34.87,-83.95,2962 +30515,"PO BOX",0,Buford,,,GA,"Gwinnett County",America/New_York,678,NA,US,34.11,-83.99,1072 +30516,STANDARD,0,Bowersville,,,GA,"Hart County",America/New_York,706,NA,US,34.37,-83.08,1630 +30517,STANDARD,0,Braselton,,,GA,"Jackson County",America/New_York,"706,762",NA,US,34.13,-83.8,15720 +30518,STANDARD,0,Buford,"Rest Haven, Sugar Hill",Sugarhill,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34.11,-83.99,50830 +30519,STANDARD,0,Buford,,,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34.09,-83.94,48280 +30520,STANDARD,0,Canon,,,GA,"Franklin County",America/New_York,,NA,US,34.34,-83.11,3530 +30521,STANDARD,0,Carnesville,,,GA,"Franklin County",America/New_York,706,NA,US,34.36,-83.23,4330 +30522,STANDARD,0,"Cherry Log",,,GA,"Gilmer County",America/New_York,"706,762",NA,US,34.8,-84.34,950 +30523,STANDARD,0,Clarkesville,,,GA,"Habersham County",America/New_York,"706,762",NA,US,34.6,-83.52,11230 +30525,STANDARD,0,Clayton,,,GA,"Rabun County",America/New_York,706,NA,US,34.87,-83.4,7120 +30527,STANDARD,0,Clermont,,,GA,"Hall County",America/New_York,"678,770",NA,US,34.47,-83.77,4300 +30528,STANDARD,0,Cleveland,,,GA,"White County",America/New_York,706,NA,US,34.59,-83.76,19740 +30529,STANDARD,0,Commerce,,,GA,"Jackson County",America/New_York,"706,762",NA,US,34.2,-83.46,10310 +30530,STANDARD,0,Commerce,,,GA,"Banks County",America/New_York,"706,762",NA,US,34.22,-83.39,5610 +30531,STANDARD,0,Cornelia,,,GA,"Habersham County",America/New_York,706,NA,US,34.51,-83.52,10010 +30533,STANDARD,0,Dahlonega,,,GA,"Lumpkin County",America/New_York,706,NA,US,34.53,-83.98,19880 +30534,STANDARD,0,Dawsonville,,,GA,"Dawson County",America/New_York,706,NA,US,34.42,-84.11,26510 +30535,STANDARD,0,Demorest,,,GA,"Habersham County",America/New_York,706,NA,US,34.56,-83.54,6190 +30536,STANDARD,0,Ellijay,,,GA,"Gilmer County",America/New_York,706,NA,US,34.66,-84.33,6430 +30537,STANDARD,0,Dillard,"Sky Valley",,GA,"Rabun County",America/New_York,706,NA,US,34.97,-83.38,1110 +30538,STANDARD,0,Eastanollee,,,GA,"Stephens County",America/New_York,706,NA,US,34.49,-83.25,2630 +30539,"PO BOX",0,"East Ellijay",,,GA,"Gilmer County",America/New_York,706,NA,US,34.68,-84.47,2028 +30540,STANDARD,0,Ellijay,"East Ellijay",,GA,"Gilmer County",America/New_York,706,NA,US,34.69,-84.48,16020 +30541,STANDARD,0,Epworth,,,GA,"Fannin County",America/New_York,706,NA,US,34.92,-84.51,1530 +30542,STANDARD,0,"Flowery Branch","Flowery Br",,GA,"Hall County",America/New_York,"470,678,770",NA,US,34.18,-83.92,34450 +30543,STANDARD,0,Gillsville,,,GA,"Hall County",America/New_York,678,NA,US,34.31,-83.63,4470 +30544,"PO BOX",1,Habersham,Demorest,,GA,"Habersham County",America/New_York,706,NA,US,34.56,-83.54,0 +30545,STANDARD,0,Helen,,,GA,"White County",America/New_York,706,NA,US,34.7,-83.72,990 +30546,STANDARD,0,Hiawassee,,,GA,"Towns County",America/New_York,706,NA,US,34.94,-83.75,6390 +30547,STANDARD,0,Homer,,,GA,"Banks County",America/New_York,706,NA,US,34.33,-83.49,3000 +30548,STANDARD,0,Hoschton,,,GA,"Jackson County",America/New_York,706,NA,US,34.09,-83.76,20520 +30549,STANDARD,0,Jefferson,Arcade,,GA,"Jackson County",America/New_York,706,NA,US,34.13,-83.59,25150 +30552,STANDARD,0,Lakemont,,,GA,"Rabun County",America/New_York,706,NA,US,34.78,-83.41,1370 +30553,STANDARD,0,Lavonia,,,GA,"Franklin County",America/New_York,706,NA,US,34.43,-83.1,6550 +30554,STANDARD,0,Lula,,,GA,"Hall County",America/New_York,"678,770",NA,US,34.39,-83.66,7040 +30555,STANDARD,0,"Mc Caysville",,"Fry, Mccaysville",GA,"Fannin County",America/New_York,706,NA,US,34.98,-84.37,1750 +30557,STANDARD,0,Martin,Avalon,,GA,"Stephens County",America/New_York,,NA,US,34.48,-83.18,4010 +30558,STANDARD,0,Maysville,,,GA,"Jackson County",America/New_York,706,NA,US,34.25,-83.55,4510 +30559,STANDARD,0,"Mineral Bluff",,,GA,"Fannin County",America/New_York,706,NA,US,34.91,-84.27,3640 +30560,STANDARD,0,Morganton,,,GA,"Fannin County",America/New_York,706,NA,US,34.87,-84.24,3910 +30562,"PO BOX",0,"Mountain City",,,GA,"Rabun County",America/New_York,706,NA,US,34.91,-83.38,997 +30563,STANDARD,0,"Mount Airy",,,GA,"Habersham County",America/New_York,706,NA,US,34.51,-83.5,4890 +30564,STANDARD,0,Murrayville,,,GA,"Hall County",America/New_York,678,NA,US,34.44,-83.89,4150 +30565,STANDARD,0,Nicholson,,,GA,"Jackson County",America/New_York,706,NA,US,34.11,-83.43,4290 +30566,STANDARD,0,Oakwood,,,GA,"Hall County",America/New_York,678,NA,US,34.23,-83.88,7980 +30567,STANDARD,0,Pendergrass,,,GA,"Jackson County",America/New_York,706,NA,US,34.16,-83.67,3750 +30568,STANDARD,0,"Rabun Gap",,,GA,"Rabun County",America/New_York,706,NA,US,34.95,-83.39,1710 +30571,STANDARD,0,"Sautee Nacoochee","Saute Nacoche, Sautee",,GA,"White County",America/New_York,706,NA,US,34.74,-83.71,2720 +30572,STANDARD,0,Suches,,,GA,"Union County",America/New_York,"762,706",NA,US,34.73,-84.06,860 +30573,"PO BOX",0,"Tallulah Falls","Tallulah Fls",,GA,"Rabun County",America/New_York,,NA,US,34.75,-83.42,209 +30575,STANDARD,0,Talmo,,,GA,"Jackson County",America/New_York,706,NA,US,34.21,-83.71,1470 +30576,STANDARD,0,Tiger,,,GA,"Rabun County",America/New_York,706,NA,US,34.84,-83.43,2190 +30577,STANDARD,0,Toccoa,,Avalon,GA,"Stephens County",America/New_York,706,NA,US,34.57,-83.32,17570 +30580,"PO BOX",0,Turnerville,,,GA,"Habersham County",America/New_York,706,NA,US,34.68,-83.42,398 +30581,"PO BOX",0,Wiley,,,GA,"Rabun County",America/New_York,706,NA,US,34.8,-83.42,339 +30582,STANDARD,0,"Young Harris",,,GA,"Towns County",America/New_York,"706,762",NA,US,34.93,-83.84,4030 +30596,UNIQUE,1,Alto,,"Ga Industrial Institute",GA,"Habersham County",America/New_York,706,NA,US,34.44,-83.59,0 +30597,UNIQUE,0,Dahlonega,,"North Georgia College",GA,"Lumpkin County",America/New_York,706,NA,US,34.53,-83.98,44 +30598,"PO BOX",0,"Toccoa Falls",,,GA,"Stephens County",America/New_York,706,NA,US,34.57,-83.32,285 +30599,UNIQUE,0,Commerce,,Baker-Taylor,GA,"Jackson County",America/New_York,706,NA,US,34.2,-83.46,0 +30601,STANDARD,0,Athens,,,GA,"Clarke County",America/New_York,"706,762",NA,US,34,-83.34,14460 +30602,UNIQUE,0,Athens,,"University Of Georgia",GA,"Clarke County",America/New_York,706,NA,US,33.94,-83.37,77 +30603,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,624 +30604,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,1230 +30605,STANDARD,0,Athens,,,GA,"Clarke County",America/New_York,762,NA,US,33.91,-83.32,24080 +30606,STANDARD,0,Athens,,"Navy Supply Corps School",GA,"Clarke County",America/New_York,"706,762,678,770",NA,US,33.95,-83.39,33630 +30607,STANDARD,0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,34.02,-83.45,9500 +30608,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,990 +30609,UNIQUE,0,Athens,,"University Of Georgia",GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.38,110 +30612,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,94 +30619,STANDARD,0,Arnoldsville,,,GA,"Oglethorpe County",America/New_York,706,NA,US,33.91,-83.21,1390 +30620,STANDARD,0,Bethlehem,,,GA,"Barrow County",America/New_York,678,NA,US,33.93,-83.76,13930 +30621,STANDARD,0,Bishop,"N High Shoals, North High Shoals",,GA,"Oconee County",America/New_York,706,NA,US,33.81,-83.43,5690 +30622,STANDARD,0,Bogart,,,GA,"Oconee County",America/New_York,"470,678,770",NA,US,33.94,-83.53,10200 +30623,"PO BOX",0,Bostwick,,,GA,"Morgan County",America/New_York,,NA,US,33.73,-83.54,491 +30624,STANDARD,0,Bowman,,,GA,"Elbert County",America/New_York,706,NA,US,34.2,-83.02,2190 +30625,STANDARD,0,Buckhead,,,GA,"Morgan County",America/New_York,,NA,US,33.56,-83.36,2170 +30627,STANDARD,0,Carlton,,,GA,"Oglethorpe County",America/New_York,706,NA,US,34.04,-83.03,1840 +30628,STANDARD,0,Colbert,,,GA,"Madison County",America/New_York,706,NA,US,34.03,-83.21,6150 +30629,STANDARD,0,Comer,,,GA,"Madison County",America/New_York,706,NA,US,34.06,-83.12,4050 +30630,STANDARD,0,Crawford,,,GA,"Oglethorpe County",America/New_York,706,NA,US,33.88,-83.15,2100 +30631,STANDARD,0,Crawfordville,,,GA,"Taliaferro County",America/New_York,706,NA,US,33.55,-82.89,1140 +30633,STANDARD,0,Danielsville,,,GA,"Madison County",America/New_York,706,NA,US,34.12,-83.22,7020 +30634,STANDARD,0,"Dewy Rose",,,GA,"Elbert County",America/New_York,706,NA,US,34.16,-82.95,2010 +30635,STANDARD,0,Elberton,,,GA,"Elbert County",America/New_York,706,NA,US,34.1,-82.86,12490 +30638,"PO BOX",0,Farmington,,,GA,"Oconee County",America/New_York,706,NA,US,33.81,-83.4,241 +30639,"PO BOX",0,"Franklin Springs","Franklin Spgs",,GA,"Franklin County",America/New_York,706,NA,US,34.28,-83.14,425 +30641,STANDARD,0,"Good Hope",,,GA,"Walton County",America/New_York,,NA,US,33.78,-83.6,1700 +30642,STANDARD,0,Greensboro,,"Reynolds Plantation",GA,"Greene County",America/New_York,"706,762",NA,US,33.57,-83.18,11990 +30643,STANDARD,0,Hartwell,,,GA,"Hart County",America/New_York,706,NA,US,34.35,-82.93,13380 +30645,"PO BOX",0,"High Shoals",,,GA,,America/New_York,,NA,US,33.81,-83.5,195 +30646,STANDARD,0,Hull,,,GA,"Madison County",America/New_York,706,NA,US,34.01,-83.29,6860 +30647,"PO BOX",0,Ila,,,GA,"Madison County",America/New_York,706,NA,US,34.17,-83.29,670 +46792,STANDARD,0,Warren,,"Buckeye, Dillman, Meth Mem Home, Methodist Mem Home, Methodist Memorial Home, Mount Zion, Pleasant Plain, Plum Tree, Salamonie",IN,"Huntington County",America/Indiana/Indianapolis,260,NA,US,40.68,-85.42,3470 +46793,STANDARD,0,Waterloo,,Sedan,IN,"DeKalb County",America/Indiana/Indianapolis,260,NA,US,41.43,-85.02,3920 +46794,STANDARD,0,Wawaka,Brimfield,"Brimfld, Cosperville, Diamond Lake, Waldron Lake",IN,"Noble County",America/Indiana/Indianapolis,260,NA,US,41.48,-85.48,1230 +46795,STANDARD,0,Wolcottville,,"Adams Lake, Lakeside, Pretty Lake, Shady Nook, Timberhurst, Witmer Manor, Woodland Park, Woodruff",IN,"LaGrange County",America/Indiana/Indianapolis,260,NA,US,41.52,-85.36,5850 +46796,"PO BOX",0,Wolflake,,"Wolf Lake",IN,"Noble County",America/Indiana/Indianapolis,260,NA,US,41.32,-85.48,210 +46797,STANDARD,0,Woodburn,,"Edgerton, Maumee",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.12,-84.85,3820 +46798,STANDARD,0,Yoder,,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,40.93,-85.2,1220 +46799,"PO BOX",0,Zanesville,,,IN,"Wells County",America/Indiana/Indianapolis,260,NA,US,40.91,-85.29,526 +46801,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,44 +46802,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.17,7200 +46803,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,7840 +46804,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.05,-85.24,26630 +46805,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.1,-85.12,17330 +46806,STANDARD,0,"Fort Wayne",,"Diplomat, Diplomat Plaza, Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.05,-85.09,21420 +46807,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.04,-85.15,14750 +46808,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.1,-85.18,16570 +46809,STANDARD,0,"Fort Wayne",,"Ft Wayne, Waynedale",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41,-85.21,7720 +46814,STANDARD,0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.05,-85.3,16210 +46815,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.1,-85.06,25180 +46816,STANDARD,0,"Fort Wayne",,"Diplomat, Ft Wayne, Maples, Southtown, Southtown Mall",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41,-85.04,16270 +46818,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.16,-85.25,19630 +46819,STANDARD,0,"Fort Wayne",,"Ft Wayne, Poe, Waynedale",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,40.97,-85.13,8020 +46825,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.15,-85.13,25750 +46835,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.15,-85.04,33110 +46845,STANDARD,0,"Fort Wayne",,"Ft Wayne, Hazelwood",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.21,-85.11,27850 +46850,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,28 +46851,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,35 +46852,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,38 +46853,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,58 +46854,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,50 +46855,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,59 +46856,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,20 +46857,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46858,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46859,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,76 +46860,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46861,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46862,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,34 +46863,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,35 +46864,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,50 +46865,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,65 +46866,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,101 +46867,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,65 +46868,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,58 +46869,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,56 +46885,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,236 +46895,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,164 +46896,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,243 +46897,UNIQUE,0,"Fort Wayne",,"Business Reply, Fort Wayne Brm",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46898,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,283 +46899,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,172 +46901,STANDARD,0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.53,-86.17,32550 +46902,STANDARD,0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.47,-86.13,32490 +46903,"PO BOX",0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.47,-86.13,392 +46904,"PO BOX",0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.47,-86.13,778 \ No newline at end of file diff --git a/quarkus-modules/quarkus-vs-springboot/jmeter/zip_code_database.csv b/quarkus-modules/quarkus-vs-springboot/jmeter/zip_code_database.csv new file mode 100644 index 0000000000..e1fcdaca8d --- /dev/null +++ b/quarkus-modules/quarkus-vs-springboot/jmeter/zip_code_database.csv @@ -0,0 +1,12079 @@ +zip,type,decommissioned,primary_city,acceptable_cities,unacceptable_cities,state,county,timezone,area_codes,world_region,country,latitude,longitude,irs_estimated_population +00501,UNIQUE,0,Holtsville,,"Internal Revenue Service",NY,"Suffolk County",America/New_York,631,NA,US,40.81,-73.04,562 +00544,UNIQUE,0,Holtsville,,"Internal Revenue Service",NY,"Suffolk County",America/New_York,631,NA,US,40.81,-73.04,0 +00601,STANDARD,0,Adjuntas,,"Colinas Del Gigante, Jard De Adjuntas, Urb San Joaquin",PR,"Adjuntas Municipio",America/Puerto_Rico,"787,939",NA,US,18.16,-66.72,0 +00602,STANDARD,0,Aguada,,"Alts De Aguada, Bo Guaniquilla, Comunidad Las Flores, Ext Los Robles, Sect Juan Ramirez, Sect La Ceiba, Sect Mariano Concepcion, Urb Isabel La Catolica",PR,"Aguada Municipio",America/Puerto_Rico,"787,939",NA,US,18.38,-67.18,0 +00603,STANDARD,0,Aguadilla,Ramey,"Bda Caban, Bda Esteves, Bo Borinquen, Bo Ceiba Baja, Brisas Del Paraiso, Ext El Prado, Ext Marbella, Jard De Borinquen, Las Brisas, Repto Jimenez, Repto Juan Aguiar, Repto Lopez, Repto Tres Palmas, Sect Las Villas, Urb Borinquen, Urb Cristal, Urb El Prado, Urb Esteves, Urb Garcia, Urb Las Americas, Urb Las Casitas Country Club, Urb Maleza Gdns, Urb Marbella, Urb Ramey, Urb Rubianes, Urb San Carlos, Urb Santa Marta, Urb Victoria, Villa Alegria, Villa Linda, Villa Lydia, Villa Universitaria, Villas De Almeria, Vista Alegre, Vista Verde",PR,"Aguadilla Municipio",America/Puerto_Rico,787,NA,US,18.43,-67.15,0 +00604,"PO BOX",0,Aguadilla,Ramey,,PR,,America/Puerto_Rico,,NA,US,18.43,-67.15,0 +00605,"PO BOX",0,Aguadilla,,,PR,,America/Puerto_Rico,,NA,US,18.43,-67.15,0 +00606,STANDARD,0,Maricao,,"Urb San Juan Bautista",PR,"Maricao Municipio",America/Puerto_Rico,"787,939",NA,US,18.18,-66.98,0 +00610,STANDARD,0,Anasco,,"Brisas De Anasco, Est De Valle Verde, Jard De Anasco, Paseo Del Valle, Repto Daguey, Sect Sanchez, Urb Los Arboles, Urb San Antonio, Urb Valle Real",PR,"Anasco Municipio",America/Puerto_Rico,787,NA,US,18.28,-67.14,0 +00611,"PO BOX",0,Angeles,,,PR,,America/Puerto_Rico,,NA,US,18.28,-66.79,0 +00612,STANDARD,0,Arecibo,,"Alt De Juncos, Alt De San Felipe, Bda Duhamel, Bo El Pasaje, Bo Islote, Bo Islote Ii, Bo Jarealitos, Bo Obrero, Bo Santana, Ciudad Atlantis, Comunidad Buenos Aires, Est De Arecibo, Est De Balseiro, Ext Marisol, Ext Tanama, Ext Villa Los Santos I, Ext Villa Los Santos Ii, Hacienda Toledo, Jard De Arecibo, Jard De San Rafael, Parc Mattey, Parc Navas, Parc Perez, Parc Rodriguez Olmo, Parq De Jardines, Paseo De La Reina, Paseo Del Prado, Paseos Reales, Repto Diosesano, Repto Marquez, Repto San Jose, Repto San Juan, Rpto Capitolio, Sect Abra, Sect El Cano, Sect Las Animas, Sect Muelle, Urb Arecibo Gdns, Urb Brisas Del Mar Ii, Urb College Park, Urb Costas Del Atlantico, Urb El Paraiso, Urb Factor, Urb Garcia, Urb Garden View, Urb La Mucura, Urb Las Brisas, Urb Los Aires, Urb Los Corales, Urb Los Llanos, Urb Los Pinos, Urb Los Pinos Ii, Urb Marisol, Urb Martell, Urb Ocean Vw, Urb Paseos Del Prado, Urb Radioville, Urb Regional, Urb San Daniel, Urb San Felipe, Urb San Lorenzo, Urb Tanama, Urb University Gdns, Urb Vict",PR,"Arecibo Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.73,0 +00613,"PO BOX",0,Arecibo,,,PR,,America/Puerto_Rico,,NA,US,18.45,-66.73,0 +00614,"PO BOX",0,Arecibo,,,PR,,America/Puerto_Rico,,NA,US,18.45,-66.73,0 +00616,STANDARD,0,Bajadero,,"Brisas Del Valle",PR,"Arecibo Municipio",America/Puerto_Rico,787,NA,US,18.42,-66.67,0 +00617,STANDARD,0,Barceloneta,,"Atlantic View Village, Bda Catalana, Brisas De Llanadas, Brisas Del Monte, Est De Barceloneta, Est De Florida, Ext Est De Imbery, Ext Parc Punta Palmas, Isla De Roque Estates, Parc Garrochales, Parc Imbery, Parc Magueyes, Parc Palenque, Parc Punta Palmas, Parc Tiburon, Repto Las Llanadas, Urb Cataluna, Urb Cimarrona Ct, Urb City Paradise, Urb Las Delicias, Urb Las Praderas, Urb Las Praderas Ii, Urb Ortega, Urb Palmeras, Urb Plazuela Estates, Urb Sol Naciente, Villa Barcelona, Villa Central, Villa Georgetti, Villas De La Sabana",PR,"Barceloneta Municipio",America/Puerto_Rico,787,NA,US,18.45,-66.56,0 +00622,STANDARD,0,Boqueron,,"Villa Taina",PR,"Cabo Rojo Municipio",America/Puerto_Rico,787,NA,US,17.99,-67.15,0 +00623,STANDARD,0,"Cabo Rojo",,"Alts De Joyuda, Alts Del Mar, Bo Ballaja, Bo Monte Grande, Est De Miramar, Est Reales, Ext Elizabeth, Ext La Concepcion, Ext Parc Elizabeth, Ext Sierra Linda, Finquita Betances, Haciendas De Belvedere, Haciendas De Cabo Rojo, Haciendas De Miramar, Jard Del Puerto, Mans De Cabo Rojo, Mansiones, Parc Betances, Parc Elizabeth, Parc Las 35, Parc Las Margaritas, Parc Puerto Real, Paseos De Plan Bonito, Qtas De Cabo Rojo, Qtas De Miradero, Qtas Del Deportivo, Repto Miradero, Repto Oliveras, Urb Alta Vista, Urb Ana Maria, Urb Borinquen, Urb El Retiro, Urb Elizabeth, Urb Joyuda Coast, Urb Kofresi, Urb La Concepcion, Urb Las Vistas, Urb Monte Grande, Urb Monte Rio, Urb Montesol, Urb Ramirez, Urb Remanso De Cabo Rojo, Urb San Miguel, Urb Sierra Linda, Villa Aida, Villa Del Carmen, Villa Luisa, Villas De Plan Bonito",PR,"Cabo Rojo Municipio",America/Puerto_Rico,787,NA,US,18.08,-67.14,0 +00624,STANDARD,0,Penuelas,,"Alt De Penuelas Ii, Alts De Penuelas, Brisas De Guayanes, Colinas De Penuelas, Ext Alts De Penuelas Ii, Jard De Penuelas, Mans De Puerto Galexda, Portales De Vista Bahia, Repto Kennedy, Sect Mal Paso, Urb El Madrigal, Urb El Penon, Urb Guayanes, Urb Llanos De Sabana Palma, Urb Monte Verde, Urb Penuelas Valley, Urb Rio Sol, Urb Riverside, Urb Sagrado Corazon, Valle Alto, Villa Esmeralda, Vista Bahia",PR,"Penuelas Municipio",America/Puerto_Rico,787,NA,US,18.06,-66.72,0 +00692,STANDARD,0,"Vega Alta",,"Alts De Cerro Gordo 1&2, Alts De Cerro Gordo 3&4, Bda Corea, Bo Brenas, Comunidad Manantial, Est Cerro Gordo, Est Del Valle, Est San Nicolas, Ext La Esperanza, Ext La Inmaculada, Ext Sanchez, Ext Santa Ana, Ext Santa Maria, Ext Santa Rita, Hacienda El Molino, Parc Carmen, Parc Ponderosa, Urb Cerro Gordo Hls, Urb Cielo Dorado, Urb Golden Vlg, Urb Grand Palm Ii, Urb Isomar, Urb La Esperanza, Urb La Inmaculada, Urb La Inmaculada Ct, Urb Las Colinas, Urb Las Palmas Cerro Gordo, Urb Puesta Del Sol, Urb Santa Ana, Urb Santa Rita, Urb Sierra Maestra, Urb Treasure Pt, Urb Vega Dorada, Urb Velomas, Villa Linares, Vistas De La Vega",PR,"Vega Alta Municipio",America/Puerto_Rico,787,NA,US,18.41,-66.32,0 +00693,STANDARD,0,"Vega Baja",,"Alt De Vega Baja, Bda Collazo, Bda Sandin, Bo Algarrobo, Bo Carmelita, Bo La Trocha, Bo Las Granjas, Bo Ojo De Agua, Bo Pueblo Nuevo, Bo Yeguada, Brisas De Tortuguero, Brisas Del Mar, Ceiba Sabana, Ciudad Real, Colinas Del Marquez, Comunidad Bethel, Est De Tortuguero, Ext Ocean Front, Hacienda La Arboleda, Haciendas De Monteverde, Jard De Vega Baja, Los Naranjos, Ocean Park, Parc Amadeo, Qtas De Tortuguero, Repto Sobrino, Sect Arenales, Sect Brisas Del Rosario, Sect El Lido, Sect Lomba, Sect Miraflores, Urb Alborada, Urb Atlantic View, Urb Brasilia, Urb Cabo Caribe, Urb Camino Del Sol, Urb Ciara Del Sol, Urb El Rosario, Urb El Verde, Urb Guarico, Urb La Cruv, Urb Las Delicias, Urb Las Flores, Urb Las Terrenas, Urb Los Almendros, Urb Los Hucares, Urb Monte Carlo, Urb Ocean Front, Urb San Agustin, Urb San Demetrio, Urb San Vicente, Urb Vega Baja Lakes, Urb Vega Serena, Villa Del Rosario, Villa Los Pescadores, Villa Pinares, Villa Real, Villa Rosa 2, Villas De La Playa, Vista Verde",PR,"Vega Baja Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.39,0 +00694,"PO BOX",0,"Vega Baja",,,PR,"Vega Baja Municipio",America/Puerto_Rico,,NA,US,18.48,-66.39,0 +00698,STANDARD,0,Yauco,,"Alts De Yauco, Alts Del Cafetal, Bda Galarza, Bda Las Delicias, Bda Lluberas, Bo Alto De Cuba, Bo Palomas, Colinas De Yauco, Est De Yauco, Est De Yodimar, Ext Alts De Yauco, Ext Alts De Yauco Ii, Hacienda Mariani, Haciendas Florida, Jard De Borinquen, Jard De Montblanc, Jard M Blanco, Qtas De Valle Verde, Repto Esperanza, Res Barinas, Sect La Vega, Sect Las Pelas, Sect Pueblo Nuevo, Urb Barinas, Urb Buena Vista, Urb Costa Sur, Urb El Rocio, Urb El Rosario, Urb Hill View, Urb La Quinta, Urb Los Angeles, Urb Los Pinos, Urb Luchetti, Urb Mifedo, Urb Monteverde, Urb Roosevelt, Urb San Francisco, Urb Turnkey, Veredas De Yauco, Villa Milagros, Villa Olimpia, Villas Del Cafetal, Villas Del Cafetal Ii, Vista Real, Vistas De Monte Sol, Vistas Del Palmar",PR,"Yauco Municipio",America/Puerto_Rico,787,NA,US,18.03,-66.86,0 +00703,STANDARD,0,"Aguas Buenas",,"Est Del Rio, Mans De Aguas Buenas, Urb San Antonio",PR,"Aguas Buenas Municipio",America/Puerto_Rico,787,NA,US,18.25,-66.1,0 +00704,STANDARD,0,Aguirre,,"Est De Trinitaria, Ext El Coqui, Parc Cabasa, Parc Parque, Paseo Costa Del Sur, Sect Lanausse, Urb Eugene Rice, Urb Gonzalez, Urb La Fabrica, Urb Monte Soria 2, Villas Del Coqui",PR,"Salinas Municipio",America/Puerto_Rico,,NA,US,17.96,-66.22,0 +00705,STANDARD,0,Aibonito,,"Bda San Luis, Bo Llanos, Brisas De Aibonito, Colinas De San Francisco, Est Del Llano, Ext Bella Vista, Ext San Luis, Ext Villa Rosales, Praderas De Aibonito, Repto Robles, Urb Bella Vista, Urb Buena Vista, Urb Golden Vlg Iv, Urb La Providencia, Villa De La Rosa, Villa Rosales, Villas Del Coqui",PR,"Aibonito Municipio",America/Puerto_Rico,787,NA,US,18.14,-66.26,0 +00707,STANDARD,0,Maunabo,,"Brisas De Emajaguas, Jard Los Almendros, Urb San Pedro, Villa Alegre, Villas De Maunabo",PR,"Maunabo Municipio",America/Puerto_Rico,"787,939",NA,US,18,-65.9,0 +00714,STANDARD,0,Arroyo,,"Brisas Del Mar, Calle Estancias De Mirasol, Ext Jard De Arroyo, Jard De Arroyo, Jard De Lafayette, Parq De Guasimas, Qtas De Guasima, Repto Bello Mar, Urb Arroyo Del Mar, Urb Belinda, URB LAS 500, Urb Miramar 1, Urb Palmar 2, Urb San Antonio, Villas De Arroyo, Villas De Lafayette",PR,"Arroyo Municipio",America/Puerto_Rico,"787,939",NA,US,17.97,-66.06,0 +00715,STANDARD,0,Mercedita,Ponce,"Bo Calzada, Bo La Cuarta, Brisas De Maravilla, Central Mercedita",PR,"Ponce Municipio",America/Puerto_Rico,787,NA,US,18.01,-66.56,0 +00716,STANDARD,0,Ponce,Mercedita,"Bo Bucana, Bo Campo Alegre, Bo Sabanetas, Bo Tenerias, Comunidad Tabaiba, Est Del Carmen, Ext Alhambra, Ext Alta Vista, Ext Villa Del Carmen, Hillcrest Village, Jard Alhambra, Jard Fagot, Parc Amalia Marin, Parc Sabanetas, Parq Del Rio, Repto Anaida, Repto Sabanetas, Sect Los Potes, Sect Playita, Sect Salistral, Urb Alhambra, Urb Alhambra Ct, Urb Alta Vista, Urb Anaida, Urb Bella Vista, Urb Camino Del Sur, Urb Costa Caribe, Urb Costa Sabana, Urb El Monte, Urb Flamboyanes, Urb Las Monjitas, Urb Los Almendros, Urb Los Caobos, Urb Sagrado Corazon, Urb San Tomas, Urb Santa Clara, Valle Real, Valle Verde, Villa De Juan, Villa Del Carmen, Villa Del Sagrado Corazon, Villa Esperanza, Villa Flores, Villa Pampanos, Villa Tabaiba, Vista Point, Vistas Del Mar",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,17.98,-66.6,0 +00717,STANDARD,0,Ponce,,"Bda Belgica, Bda Mariani, Bda Salazar, Bda Santa Rosa, Bo Caracoles, Bo Cuatro Calles, Bo San Anton, Ext Salazar, Repto Universitario, Urb Buena Vista, Urb Constancia, Urb Constancia Gdns, Urb El Bosque, Urb Los Maestros, Urb Mariani, Urb Mercedita, Urb Patio Laboy, Urb Perla Del Sur, Urb San Antonio, Urb San Jorge, Urb Santa Maria, Urb Starlight, Villa Grillasca, Vista Alegre",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,18,-66.61,0 +00718,STANDARD,0,Naguabo,,"Bo Mariana, Brisas De Naguabo, Hacienda Grande, Jard De Esperanza, Jard De La Via, Jard Del Este, Mans Playa Hucares, Repto Santiago, Urb Casabella, Urb City Palace, Urb Diplo, Urb Juan Mendoza, Urb Promised Land, Urb Ramon Rivero, Urb Santo Tomas, Villa Del Rosario",PR,"Naguabo Municipio",America/Puerto_Rico,787,NA,US,18.21,-65.73,0 +00719,STANDARD,0,Naranjito,,"Jard De Naranjito, Sect Chevres",PR,"Naranjito Municipio",America/Puerto_Rico,787,NA,US,18.3,-66.24,0 +00720,STANDARD,0,Orocovis,,"Alt De Orocovis, Urb Santa Teresita, Villas De Orocovix I, Villas De Orocovix Ii",PR,"Orocovis Municipio",America/Puerto_Rico,"787,939",NA,US,18.22,-66.39,0 +00721,"PO BOX",0,Palmer,"Rio Grande",,PR,,America/Puerto_Rico,,NA,US,18.37,-65.77,0 +00723,STANDARD,0,Patillas,,"Jard De Mamey, Jard De Patillas, Parq Del Sol, Portales De Jacaboa, Urb El Paraiso, Urb Mariani, Urb San Benito, Urb San Jose, Urb San Martin, Urb Solimar, Valle Alto, Valle De La Providencia, Villas De Patillas",PR,"Patillas Municipio",America/Puerto_Rico,,NA,US,18,-66.01,0 +00725,STANDARD,0,Caguas,,"Alt De Caguas, Alt Del Turabo, Bda Morales, Bosques De La Sierra, Brisas Del Parque I, Brisas Del Parque Ii, Est El Verde, Ext Caguax, Ext El Verde, Ext La Granja, Ext Villa Blanca, Hacienda Borinquen, Jard Pla, Lomas De La Serrania, Parq Las Mercedes, Paseo Del Rio, Qtas De San Luis 1, Qtas De San Luis 2, Qtas De Villa Blanca, Repto Caguax, Repto Solano, Res Bairoa, Terr De Borinquen, Urb Balcones Las Catalinas, Urb Batista, Urb Billy Suarez, Urb Bonneville Gardens, Urb Bonneville Gdns, Urb Bonneville Terr, Urb Borinquen Valley, Urb Borinquen Valley 2, Urb Brooklyn, Urb Bunker, Urb Caguas Milenio, Urb Caguas Milenio Ii, Urb Caguas Norte, Urb Caribe Gardens, Urb Caribe Gdns, Urb Condado Moderno, Urb Condado Viejo, Urb El Retiro, Urb El Rincon De La Serrania, Urb El Verde, Urb Grillo, Urb Jose Delgado, Urb Jose Mercado, Urb La Granja, Urb La Hacienda, Urb La Meseta, Urb Machin, Urb Mariolga, Urb Montefiori, Urb Monticielo, Urb Myrlena, Urb Nazario, Urb Notre Dame, Urb Paradise, Urb San Alfonso, Urb San Antonio",PR,"Caguas Municipio",America/Puerto_Rico,"787,939",NA,US,18.23,-66.03,0 +00726,"PO BOX",0,Caguas,,,PR,,America/Puerto_Rico,,NA,US,18.23,-66.03,0 +00727,STANDARD,0,Caguas,,"Alt De La Fuente, Alt Villa Del Rey, Bosque Verde, Chalets De Bairoa, Ciudad Jardin De Bairoa, Est De Bairoa, Est Degetau, Est Del Turabo, Hacienda San Jose, Jard De Caguas, La Cima I, Mans De Ciudad Jardin Bairoa, Mans El Paraiso, Parq Del Monte, Parq Del Monte 2, Parq Del Rio, Parq Las Haciendas, Repto San Jose, Sect Altos De La Fuente, Urb Altomonte, Urb Altos De La Fuente, Urb Arbolada, Urb Asomante, Urb Bairoa Golden Gate Ii, Urb Bairoa Golden Gates, Urb Bairoa Park, Urb Bonneville Hts, Urb Bonneville Manor, Urb Bonneville Vly, Urb Cautiva, Urb Diamond Vlg, Urb El Valle, Urb Idamaris Gardens, Urb Idamaris Gdns, Urb La Estancia, Urb La Reserva, Urb Las Nubes, Urb Mirador De Bairoa, Urb Palmas Del Turabo, Urb Sanjuanera, Urb Surena, Urb Terralinda, Urb Turabo Gardens, Urb Turabo Gdns, Valle Tolima, Valle Verde, Villa Caliz, Villa Caribe, Villa Del Rey 3, Villa Del Rey 4, Villa Del Rey 5, Villa Esperanza, Villa Hermosa, Villa Nueva",PR,"Caguas Municipio",America/Puerto_Rico,"787,939",NA,US,18.22,-66.07,0 +00728,STANDARD,0,Ponce,,"Bda Baldorioty, Bo Magueyes, Bosque Senorial, Brisas Del Mar, Comunidad Punta Diamante, Ext Jard Del Caribe, Ext Las Delicias 2, Ext Punto Oro, Ext Villa Paraiso, Hacienda La Matilde, Hacienda Las Lomas, Jard Del Caribe, Jard Del Caribe 5, Parc El Tuque, Parc Magueyes, Parc Nueva Vida, Parc Nuevas Magueyes, Parc Quebrada Limon, Qtas Del Sur, Res Canas Housing, Res Perla Del Bucana, Sect La Cotorra, Sect Las Batatas, Sect Las Cucharas, Sect Playita, Urb Baldorioty, Urb Baramaya, Urb Bello Horizonte, Urb Canas, Urb Casa Mia, Urb La Providencia, Urb Las Delicias, Urb Las Margaritas, Urb Morell Campos, Urb Punto Oro, Urb Rio Canas, Urb San Antonio, Urb San Jose, Valle Altamira, Valle De Andalucia, Valle Del Rey, Villa Delicias, Villa Paraiso, Villa Rio Canas",PR,"Ponce Municipio",America/Puerto_Rico,,NA,US,17.99,-66.66,0 +00729,STANDARD,0,Canovanas,,"Brisas De Canovanas, Brisas De Loiza, Ciudad Jardin De Canovanas, Est Del Rio, Ext Villas De Loiza, Haciendas De Canovanas, Jard De Canovanas, Jard De Palmarejo, Las Quintas De Altamira, Parc Central, Parc Monteverde, Parc San Isidro, Parc Villa Delicias, Qtas De Canovanas, Qtas Jard De Parmarejo, Urb Country View, Urb Country View Loiza, Urb Del Pilar, Urb Forest Plantation, Urb Las Haciendas Canovanas, Urb Las Vegas, Urb Loiza Valley, Urb Los Eucaliptos, Urb Pueblo Indio, Urb River Gdns, Urb River Plantation, Urb River Valley, Urb River Valley Pk, Urb Town Pk, Urb Usubal, Villas De Loiza, Villas Del Este, Villas Doradas",PR,"Canovanas Municipio",America/Puerto_Rico,787,NA,US,18.37,-65.9,0 +00730,STANDARD,0,Ponce,,"Alt De Jacaranda, Alt Del Madrigal, Bda Borinquen, Bda Clausells, Bda Ferran, Bda Tamarindo, Bo La Ponderosa, Bo Magueyes, Bo Pueblito Nuevo, Bo Tamarindo, Comunidad Playita Ferry, Est Del Golf Club, Ext El Madrigal, Ext La Guadalupe, Ext Qtas De Monserrate, Ext Santa Teresita, Ext Valle Alto, Jard De Ponce, Lomas De Country Club, Qtas De Monserrate, Sect Clausell, Sect La Ponderosa, Sect Las Canitas, Sect Playita, Urb El Madrigal, Urb Ferry Barranca, Urb Glenview Gdns, Urb Jacaranda, Urb Jaime L Drew, Urb La Guadalupe, Urb La Lula, Urb La Rambla, Urb Las Monjitas, Urb Morell Campos, Urb Nuevo Mameyes, Urb Santa Teresita, Urb Tibes, Valle Alto, Villa Dos Rios",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,18.03,-66.62,0 +00731,STANDARD,0,Ponce,,"Urb Riberas De Bucana, Urb Terra Senorial",PR,"Ponce Municipio",America/Puerto_Rico,787,NA,US,18.11,-66.63,0 +00732,"PO BOX",0,Ponce,,,PR,,America/Puerto_Rico,,NA,US,17.98,-66.6,0 +00733,"PO BOX",0,Ponce,,,PR,,America/Puerto_Rico,,NA,US,17.98,-66.6,0 +00734,"PO BOX",0,Ponce,,,PR,,America/Puerto_Rico,,NA,US,17.98,-66.6,0 +00735,STANDARD,0,Ceiba,"Roosevelt Rds, Roosevelt Roads","Brisas De Ceiba, Ext Villa Del Pilar, Jard Avila, Jard De Ceiba, Jard De Ceiba Ii, Parc Calderonas, Parc Calderonas Nuevas, Paseo De La Costa, Paseos De Ceiba, Res La Ceiba, Urb Celina, Urb Roosevelt Gdns, Urb Santa Maria, Urb Vegas De Ceiba, Villa Del Pilar, Villa Flores",PR,"Ceiba Municipio",America/Puerto_Rico,787,NA,US,18.25,-65.68,0 +00736,STANDARD,0,Cayey,,"Bda Buena Vista, Bda Cantera, Bda Nueva, Bda Polvorin, Bda Vieques, Bo Beatriz, Bo Carite, Bo Cedro, Bo Farallon, Bo Guavate, Bo Las Parras, Bo Mogote, Bo Montellano, Bo Pedro Avila, Bo Vegas, Chalets Las Muesas, Colinas De Cayey, Colinas View, Comunidad San Tomas, Est De Las Brumas, Est De Monte Rio, Hacienda Vistas Del Plata, Jard De Cayey, Jard Del Caribe, Mans De Los Cedros, Mans Monte Verde, Parc El Polvorin, Paseo De Las Brumas, Praderas Del Plata, Repto Ana Luisa, Repto Montellano, Sect Pepe Hoyo, Sect Sanchez, Urb Aponte, Urb Bosch, Urb Carrasquillo, Urb El Remanso, Urb El Rocio, Urb El Torito, Urb Fullana, Urb La Planicie, Urb La Plata, Urb Las Muesas, Urb Minima, Urb Mirador Echevarri, Urb Mirador Universitario, Urb Miradores De Cayey, Urb San Cristobal, Urb San Martin, Valle Alto, Villa Verde",PR,"Cayey Municipio",America/Puerto_Rico,"787,939",NA,US,18.11,-66.16,0 +00737,"PO BOX",0,Cayey,,,PR,,America/Puerto_Rico,,NA,US,18.11,-66.16,0 +00738,STANDARD,0,Fajardo,,"Alts De Monte Brisas, Alts De San Pedro, Bda Obrera, Bda Roosevelt, Bo Jerusalen, Bo Proyecto Fema, Bo Proyecto Veve Calzada 3, Bo Vega Baja, Ext Melendez, Ext Veve Calzada, Jard De Monte Brisas, La Costa Apts, Mans Punta Del Este, Qtas De Fajardo, Terr Demajagua, Terr Demajagua 2, Urb Alhambra, Urb Altamira, Urb Baralt, Urb Batey, Urb Fajardo Gdns, Urb Garcia Ponce, Urb La Costa Gdns Homes, Urb Marines, Urb Melendez, Urb Monte Brisas 1, Urb Monte Brisas 2, Urb Monte Brisas 3, Urb Monte Brisas 5, Urb Monte Vista, Urb Montemar, Urb Naranjo Valley, Urb Puertas Del Sol, Urb Rafael Bermudez, Urb San Pedro, Urb Santa Isidra 1, Urb Santa Isidra 2, Urb Santa Isidra 3, Urb Santa Isidra 4, Urb Veve Calzada, Urb Viera, Valle Verde, Villa Clarita, Villa Marina, Vistas Del Convento, Vistas Del Mar",PR,"Fajardo Municipio",America/Puerto_Rico,"787,939",NA,US,18.33,-65.65,0 +00739,STANDARD,0,Cidra,,"Bosque Real, Ciudad Primavera, Est Del Bosque, Hacienda Primavera, Jard De Rabanal, Jard Treasure Island, Parc Gandara, Parc Gandara Ii, Sect Campobello, Sect Lozada, Urb Campo Bello, Urb Campo Lago, Urb Campo Primavera, Urb Domingo Alejandro, Urb Domingo Rodriguez, Urb Ferrer, Urb Freire, Urb Monte Primavera, Urb Sabanera, Urb Treasure Vly, Villa Del Carmen, Villas De San Ignacio, Vista Monte, Vistas De Sabanera",PR,"Cidra Municipio",America/Puerto_Rico,787,NA,US,18.17,-66.15,0 +00740,STANDARD,0,"Puerto Real",,"Valle Puerto Real",PR,"Fajardo Municipio",America/Puerto_Rico,,NA,US,18.33,-65.63,0 +00741,STANDARD,0,"Punta Santiago","Punta Stgo","Urb Verdemar, Villa Palmira",PR,"Humacao Municipio",America/Puerto_Rico,,NA,US,18.16,-65.75,0 +00742,STANDARD,0,"Roosevelt Roads","Ceiba, Roosevelt Rds",,PR,,America/Puerto_Rico,,NA,US,18.27,-65.65,0 +00744,"PO BOX",0,"Rio Blanco",,,PR,,America/Puerto_Rico,,NA,US,18.22,-65.79,0 +00745,STANDARD,0,"Rio Grande",,"Alt Rio Grande, Bda Shangai, Est Del Sol, Ext Est Del Sol, Hacienda Las Garzas, Jard Rio Grande, Parc La Dolores, Repto Costa Del Sol, Urb Cambalache I, Urb Cambalache Ii, Urb Casa Verde, Urb Coco Beach, Urb Galateo, Urb Jose H Ramirez, Urb Jose Ph Hernandez, Urb Los Arboles, Urb Los Maestros, Urb Miramelinda Estate, Urb Pedregales, Urb Ponderosa, Urb Rio Grande Est, Urb Rio Grande Hls, Urb Sra Del Carmen, Villa Realidad, Villa Vizcay, Villas De Rio Grande, Vistas De Rio Grande I, Vistas De Rio Grande Ii, Vistas Del Mar",PR,"Rio Grande Municipio",America/Puerto_Rico,787,NA,US,18.38,-65.83,0 +00751,STANDARD,0,Salinas,,"Bo Coco Nuevo, Bo Coco Viejo, Bo Playita, Bo Santa Ana I, Bo Santa Ana Iii, Brisas De Evelymar, Est De Evelymar, Ext Carmen, Ext Monserrate, Jard De Salinas, Sect Campito, Urb Corales Del Mar, Urb La Arboleda, Urb La Carmen, Urb La Providencia, Urb Las Antillas, Urb Las Mercedes, Urb Llanos De Providencia, Urb Marbella, Urb Monserrate, Urb Salimar, Villa Cofresi, Villa Natalia",PR,"Salinas Municipio",America/Puerto_Rico,787,NA,US,17.97,-66.29,0 +00754,STANDARD,0,"San Lorenzo",,"Alt De San Lorenzo, Bda Roosevelt, Bosque Llano, Ciudad Masso, Ext Alt De San Lorenzo, Ext Bda Roosevelt, Ext Jard De San Lorenzo, Ext Tamarindo, Hacienda Florida, Jard De Cerro Gordo, Jard De San Lorenzo, Mans De Monte Sereno, Paseo De Las Flores, Paseo De San Lorenzo, Urb Los Caminos, Urb Los Flamboyanes, Urb Masso, Urb Monte Rey, Urb Munoz Marin, Urb Portal Del Sol, Urb San Lorenzo Valley, Urb Santa Clara, Urb Savannah Real, Urb Tamarindo 1, Urb Valentina, Urb Valentina 2, Villas Del Hato, Vistas De San Lorenzo",PR,"San Lorenzo Municipio",America/Puerto_Rico,787,NA,US,18.19,-65.96,0 +00757,STANDARD,0,"Santa Isabel",,"Alt De Santa Isabel, Bda Felicia 1, Bda San Felipe, Brisas Del Prado, Est De Santa Isabel, Ext Bda Monserrate, Hacienda Concordia, Hacienda Condcordia 2, Hacienda Isabel, Jard De Santa Isabel, Paseo Jacaranda, Portal De La Reina, Praderas Del Sur, Sect Villa Del Mar, Urb Alborada, Urb Buenos Aires, Urb Santiago Apostol, Valle Costero, Villa Camarero, Villa Retiro Sur, Villa Serena",PR,"Santa Isabel Municipio",America/Puerto_Rico,787,NA,US,17.97,-66.4,0 +00765,STANDARD,0,Vieques,,"Bo Coffi, Bo Tortuguero, Urb Isabel Ii, Urb Lucila Franco",PR,"Vieques Municipio",America/Puerto_Rico,787,NA,US,18.13,-65.44,0 +00766,STANDARD,0,Villalba,,"Alt De Villalba, Alts Del Alba, Bo Camarones, Est De Mayoral, Est De Santa Rosa, Ext Est De Mayoral, Portales Del Alba, Qtas Del Alba, Urb La Vega, Urb Las Alondras, Urb Luceros De Villalba, Urb Tierra Santa, Villa Alba, Villa Laura, Vista Alegre, Vista Bella",PR,"Villalba Municipio",America/Puerto_Rico,"787,939",NA,US,18.13,-66.48,0 +00767,STANDARD,0,Yabucoa,,"Alts De Terralinda, Ext Villas De Buenaventura, Jard De Yabucoa, Parq Ind Juan Martin, Repto Horizonte, Sect Piedra Azul, Urb Calvario, Urb Jaime C Rodriguez, Urb Los Angeles, Urb Mendez, Urb Santa Elena, Urb Santa Maria, Valles De Yabucoa, Villa El Recreo, Villa Hilda, Villas De Buenaventura",PR,"Yabucoa Municipio",America/Puerto_Rico,787,NA,US,18.04,-65.87,0 +00769,STANDARD,0,Coamo,,"Alts De Coamo, Bda San Antonio, Est De Coamo, Est De Hucar, Ext Jard De Coamo, Hacienda Del Rio, Hacienda Miraflores, Haciendas Monterrey, Jard De Coamo, Jard De Santa Ana, Mans De Coamo, Parc Niagara, Parq De Las Flores, Paseo Real, Qtas De Coamo, Urb Bella Vista Est, Urb Coamo Gdns, Urb El Bosque, Urb El Eden, Urb El Mirador, Urb La Arboleda, Urb Las Aguilas, Urb Las Fuentes De Coamo, Urb Monte Flores, Urb Monte Real, Urb Mountain Vw, Urb Paraiso De Coamo, Urb Provincias Del Rio 1, Urb Provincias Del Rio 2, Urb San Antonio, Urb Vistamar, Valle Abajo, Valle Arriba, Valle Escondido, Villa Cristina, Villa Madrid, Villa Santa Catalina, Villa Tropical, Vista Del Sol, Vistas De Coamo",PR,"Coamo Municipio",America/Puerto_Rico,787,NA,US,18.08,-66.36,0 +00771,STANDARD,0,"Las Piedras",,"Colinas De San Agustin, Est De Los Artesanos, Est Del Rocio, Ext La Inmaculada, Ext Las Mercedes, Jard De Oriente, Mans De Las Piedras, Mans De Los Artesanos, Olympic Hls, Paseo De Los Artesanos, Paseo Samaritano, Portales De Las Piedras, Repto Arenales, Urb April Gdns, Urb Camino Sereno, Urb Campo Real, Urb La Estancia, Urb La Inmaculada, Urb Las Campinas I, Urb Las Campinas Ii, Urb Las Campinas Iii, Urb Olimpic Cts, Urb Olimpic Pk, Urb Olivia Pk, Urb Olympic Ville, Urb Oriente, Urb Palma Royale, Urb Park Hurst, Valle Piedras, Villa Las Mercedes, Villas De San Cristobal, Villas De San Cristobal Ii, Vistas Del Rio",PR,"Las Piedras Municipio",America/Puerto_Rico,787,NA,US,18.18,-65.86,0 +00772,STANDARD,0,Loiza,,"Jard De Loiza, Sect Villa Canona, Urb Santiago, Vistas Del Oceano",PR,"Loiza Municipio",America/Puerto_Rico,,NA,US,18.43,-65.88,0 +00773,STANDARD,0,Luquillo,,"Brisas De Luquillo, Brisas Del Mar, Est Del Atlantico, Hacienda Margarita, Hacienda Paloma, Hacienda Paloma Ii, Urb Alamar, Urb Costa Azul, Urb Los Paisajes, Urb Luquillo Lomas, Urb Luquillo Mar, Urb Paisaje Del Lago, Urb Paisajes Del Rio, Urb River Edge Hl, Urb Solimar, Urb Vilomar, Villa Angelina, Vistas De Luquillo, Vistas De Luquillo Ii",PR,"Luquillo Municipio",America/Puerto_Rico,"787,939",NA,US,18.37,-65.71,0 +00775,"PO BOX",0,Culebra,,,PR,"Culebra Municipio",America/Puerto_Rico,,NA,US,18.33,-65.3,0 +00777,STANDARD,0,Juncos,,"Bda Flores, Brisas Del Prado, Ciudad Jardin Juncos, Colinas De Juncos, Colinas Del Este, Est De Juncos, Est De La Ceiba, Ext Jard De Barcelona, Haciendas De Juncos, Haciendas De Tena, Jard De Barcelona, Jard De Ceiba Norte, Jard Del Valenciano, Mans De Juncos, Paseo De La Ceiba, Paseo Palma Real, Portales De Juncos, Repto Valenciano, Sect Canales, Sect Cuatro Calles, Urb Cerro Ceiba, Urb Diamaris, Urb El Cid, Urb El Encanto, Urb La Ceiba, Urb Lirios, Urb Lirios Cala, Urb Lirios Cala Ii, Urb Loma Alta, Urb Los Almendros, Urb Madrid, Urb Senderos De Juncos, Urb Valencia 1, Urb Valencia 2, Urb Virginia Vly, Villa Ana, Villa Graciela, Villas Central Victoria",PR,"Juncos Municipio",America/Puerto_Rico,787,NA,US,18.22,-65.91,0 +00778,STANDARD,0,Gurabo,,"Alt De Montebrisas, Alts De Hato Nuevo, Bda Campamento, Bda Nueva, Ciudad Jardin, Est De Gran Vista, Est De Santa Barbara, Est Siervas De Maria, Ext Llanos De Gurabo, Ext Villa Marina, Jard De Gurabo, Lomas Del Sol, Mans De Navarro, Mans De Santa Barbara, Parc Nuevas, Parq Las Americas, Paseo De Santa Barbara, Praderas De Navarro, Repto San Jose, Senderos De Gurabo, Turabo Industrial Park, Urb Altapaz, Urb Bajo Costo, Urb Campinas De Navarro, Urb El Vivero, Urb Gran Vista I, Urb Gran Vista Ii, Urb Heavenly Vw Est, Urb Horizonte, Urb Llanos De Gurabo, Urb Los Flamboyanes, Urb Los Paisajes, Urb Los Robles, Urb Los Suenos, Urb Monte Alto, Urb Monte Subacio, Urb Oreilly, Urb Paraiso De Gurabo, Urb Preciosa, Urb Reina De Los Angeles, Urb Sabanera Del Rio, Urb Veredas, Valle De Ensueno, Valle De Santa Barbara, Valle Del Tesoro, Villa Alegre, Villa Marina, Villas De Gurabo, Villas Del Carmen, Vista Lago",PR,"Gurabo Municipio",America/Puerto_Rico,787,NA,US,18.25,-65.97,0 +00780,STANDARD,0,"Coto Laurel",Ponce,"Bo Verdum, Brisas De Juliana, Brisas Del Laurel, Est Del Laurel, Est Del Monte, Ext Lago Horizonte, Hacienda Juliana, Haciendas Del Monte, Mans Del Lago, Mans Del Sur, Mans Real, Urb El Laurel, Urb Lago Horizonte, Urb Laurel Sur, Urb Llanos Del Sur, Urb Santa America, Urb Santa Rita, Urb Santa Rita 2, Urb Santa Rita 3, Urb Sombras Del Real, Villas Del Laurel 1, Villas Del Laurel 2, Villas Del Turey",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,18.09,-66.57,0 +00782,STANDARD,0,Comerio,,"Urb Ariel, Urb La Hacienda, Urb La Plata, Urb Pasarell, Urb Rio Plata, Urb Sabana Del Palmar",PR,"Comerio Municipio",America/Puerto_Rico,787,NA,US,18.22,-66.22,0 +00783,STANDARD,0,Corozal,,"Bda Sostre, Bo Pueblo, Colinas De Corozal, Ext Sylvia, Loma Linda, Sect Cienagueta, Urb Cerromonte, Urb Cibuco, Urb El Centro, Urb Las Brisas, Urb Maria Del Carmen, Urb Monterey, Urb Monteverde, Urb San Feliz, Urb Sobrino, Urb Sylvia, Valle De Aramana",PR,"Corozal Municipio",America/Puerto_Rico,787,NA,US,18.34,-66.31,0 +00784,STANDARD,0,Guayama,,"Alts Del Olimpo, Bda Blondet, Bda Borinquen, Bda Marin, Bda Santa Ana, Bo Corazon, Bo Machete, Bo Olimpo, Brisas Del Mar, Chalets De Brisas Del Mar, Comunidad Miramar, Comunidad Puente Jobos, Comunidad San Martin, Hacienda Guamani, Hacienda Jazmin, Hacienda Los Recreos, Jard De Guamani, Jard De Monte Olivo, Jardines De La Reina, Parc Nueva Olimpo, Urb Algarrobos, Urb Bello Horizonte, Urb Camino De La Princesa, Urb Caribe Mar, Urb Costa Azul, Urb Dorado, Urb El Legado Golf Resort, Urb Green Hls, Urb Guayama Valley, Urb La Hacienda, Urb La Pradera, Urb Rexmanor, Urb Villamar, Urb Vistamar, Urb Vistamar 3, Urb Vives, Valles De Guayama, Villa Rosa, Villa Rosa 1, Villa Rosa 2, Villa Rosa 3, Villa Universitaria",PR,"Guayama Municipio",America/Puerto_Rico,"787,939",NA,US,17.97,-66.11,0 +00785,"PO BOX",0,Guayama,,,PR,,America/Puerto_Rico,,NA,US,17.97,-66.11,0 +00786,"PO BOX",0,"La Plata",,,PR,"Aibonito Municipio",America/Puerto_Rico,,NA,US,18.16,-66.23,0 +00791,STANDARD,0,Humacao,,"Alts De San Benito, Bda Azucena, Bda Obrera, Bda Praa, Ciudad Cristiana, Colinas Del Este, Est De La Loma, Ext Cotto Mabu, Ext Roig, Ext San Antonio, Jard Central, Jard De Humacao, Mans Del Caribe, Parq De Candelero, Plaza Del Mar, Qtas De Humacao, Repto San Felipe, Urb Arboleda, Urb Buzo, Urb El Paraiso, Urb El Recreo, Urb La Estancia, Urb La Patagonia, Urb Las Leandras, Urb Los Maestros, Urb Los Rosales, Urb Los Sauces, Urb Mabu, Urb Miradero, Urb Palacios Del Sol, Urb Palmanova, Urb Palmas Plantation, Urb Palmas Reales, Urb Pereyo, Urb Rivera Donato, Urb San Antonio, Urb San Francisco, Urb Sunrise, Villa Franca 2, Villa Humacao, Villa Oriente, Villa Universitaria, Villas De Candelero, Villas Del Rio, Vista Alegre, Vista Hermosa",PR,"Humacao Municipio",America/Puerto_Rico,787,NA,US,18.15,-65.81,0 +00792,"PO BOX",0,Humacao,,,PR,,America/Puerto_Rico,,NA,US,18.15,-65.81,0 +00794,STANDARD,0,Barranquitas,,"Bda Alemania, Urb Campo Cristal, Urb San Cristobal, Vistas De Montecielo",PR,"Barranquitas Municipio",America/Puerto_Rico,787,NA,US,18.18,-66.3,0 +00795,STANDARD,0,"Juana Diaz",,"Alts De Rosandramar, Alts Del Encanto, Brisas Del Sur, Brisas Del Valle, Colinas De San Martin, Colinas De Verde Azul, Colinas Del Prado, Comunidad Monte Cristo, Est De Juana Diaz, Est Del Rio, Est El Guayabal, Ext Del Carmen, Ext Jacaguax, Ext La Fe, Ext Las Flores, Ext Las Marias, Hacienda Casa Blanca, Hacienda Las Vegas, Jard De Santo Domingo, Mans Camino Real, Mans En Paseo De Reyes, Paseo Del Parque, Paseo Sol Y Mar, Portal Del Valle, Qtas De Altamira, Sect Las Flores, Urb Camino Real, Urb Del Carmen, Urb Hermanos Santiago, Urb Jacaguax, Urb La Esperanza, Urb Las Flores, Urb Las Marias, Urb Las Quintas, Urb Los Reyes, Urb Monte Sol, Urb Palacios Del Prado, Urb San Martin, Urb San Martin Ii, Urb Santa Rita 4, Urb Tomas Carrion Maduro, Valle Hucares, Valle Sereno, Villa El Encanto, Villa Norma, Villas Del Prado, Villas Del Sol",PR,"Juana Diaz Municipio",America/Puerto_Rico,"939,787",NA,US,18.05,-66.5,0 +00801,"PO BOX",0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,,NA,US,18.35,-64.93,0 +00802,STANDARD,0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,340,NA,US,18.35,-64.93,0 +00803,"PO BOX",0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,,NA,US,18.35,-64.93,0 +00804,"PO BOX",0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,,NA,US,18.35,-64.93,0 +00805,"PO BOX",0,"St Thomas",,,VI,,America/St_Thomas,,NA,US,18.34,-64.93,0 +00820,STANDARD,0,Christiansted,"St Croix",,VI,,America/St_Thomas,340,NA,US,17.74,-64.7,0 +00821,"PO BOX",0,Christiansted,,,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00822,"PO BOX",0,Christiansted,,,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00823,"PO BOX",0,Christiansted,"St Croix",,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00824,"PO BOX",0,Christiansted,"St Croix",,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00830,STANDARD,0,"St John","Cruz Bay",,VI,,America/St_Thomas,,NA,US,18.33,-64.79,0 +00831,"PO BOX",0,"St John","Cruz Bay",,VI,,America/St_Thomas,,NA,US,18.33,-64.79,0 +00840,STANDARD,0,Frederiksted,,,VI,,America/St_Thomas,340,NA,US,17.71,-64.88,0 +00841,"PO BOX",0,Frederiksted,,,VI,,America/St_Thomas,,NA,US,17.71,-64.88,0 +00850,STANDARD,0,Kingshill,,,VI,,America/St_Thomas,340,NA,US,17.76,-64.82,0 +00851,"PO BOX",0,Kingshill,,,VI,,America/St_Thomas,,NA,US,17.73,-64.8,0 +00901,STANDARD,0,"San Juan","Old San Juan, Viejo San Juan, Viejo Sn Juan",,PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.47,-66.1,0 +00902,"PO BOX",0,"San Juan","Old San Juan, Viejo San Juan, Viejo Sn Juan",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00906,"PO BOX",0,"San Juan","Pta De Tierra, Puerta De Tierra",,PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.46,-66.09,0 +00907,STANDARD,0,"San Juan","Condado, Miramar, Santurce","Bda Figueroa",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.08,0 +00908,"PO BOX",0,"San Juan",,"Santurce, Santurce Station",PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00909,STANDARD,0,"San Juan","Fdez Juncos, Fernandez Juncos, Minillas, Santurce","Urb Hipodromo",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.44,-66.07,0 +00910,"PO BOX",0,"San Juan","Fdez Juncos, Fernandez Juncos",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00911,STANDARD,0,"San Juan",Santurce,"Loiza Street",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.06,0 +00912,STANDARD,0,"San Juan",Santurce,,PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.06,0 +00913,STANDARD,0,"San Juan","Isla Verde, Santurce",,PR,"San Juan Municipio",America/Puerto_Rico,"939,787",NA,US,18.45,-66.04,0 +00914,"PO BOX",0,"San Juan",Santurce,"Loiza Street",PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00915,STANDARD,0,"San Juan","Barrio Obrero, Bo Obrero, Santurce","Bda Buena Vista, Sect Cantera, Sect La Playita",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.05,0 +00916,"PO BOX",0,"San Juan","Barrio Obrero, Santurce",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00917,STANDARD,0,"San Juan","Hato Rey","Bda Bitumul, Bda Buena Vista, Bda Israel, Bda Las Monjas, Sect El Relincho, Urb Davila & Llenza, Urb El Prado, Urb Floral Park, Urb Perez Morris, Urb Pinero, Urb Quintana, Urb Umpierre",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.42,-66.05,0 +00918,STANDARD,0,"San Juan",,"Bda Tokio, Ext Roosevelt, Parq Central, Urb Baldrich, Urb El Vedado, Urb Hyde Pk, Urb Jb Huyke, Urb Los Ingenieros, Urb Los Maestros, Urb Roosevelt, Villa Pica",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.42,-66.07,0 +00919,"PO BOX",0,"San Juan","Hato Rey",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00920,STANDARD,0,"San Juan","Caparra, Caparra Hills, Caparra Ter, Caparra Terrace, Pto Nuevo, Puerto Nuevo","Bechara Ind Park, Mario Julia Ind Park, Monterrey Ind Park, Rio Piedras, San Miguel Ind Park, Urb Altamira, Urb Caparra Hts, Urb Puerto Nuevo, Urb San Patricio, Urb Summit Hls, Villa Borinquen",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-66.09,0 +00921,STANDARD,0,"San Juan","College Park, Pto Nuevo, Puerto Nuevo, Rio Piedras","Ext College Park, Parq De San Ignacio, Repto Landrau, Repto Metropolitano, Urb Altamesa, Urb Caparra Terr, Urb College Park, Urb Coop V Borinquen, Urb La Riviera, Urb La Riviera Ind Park, Urb Las Americas, Urb Las Lomas, Urb Puerto Nuevo, Urb Santiago Iglesias, Villa El Salvador, Villa Magna",PR,"San Juan Municipio",America/Puerto_Rico,939,NA,US,18.39,-66.09,0 +00922,"PO BOX",0,"San Juan","Caparra, Caparra Hills, Caparra Ter, Caparra Terrace",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00923,STANDARD,0,"San Juan",,"65th Infantry, Bo Capetillo, Repto America, Repto San Jose, Urb Casas Yoyo, Urb Del Carmen, Urb Dos Pinos, Urb Dos Pinos Townhouse, Urb Embalse San Jose, Urb Los Maestros, Urb Matienzo Cintron, Urb Open Land, Urb San Agustin, Urb San Jose, Urb Santa Barbara, Urb Valencia, Urb Victoria, Valle Universitario, Villa Dos Pinos, Villa Granada, Vista Del Cano",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.41,-66.04,0 +00924,STANDARD,0,"San Juan","Rio Piedras","65th Infantry, Alt De Berwind, Bda El Polvorin, Bda Hernandez, Bda Santo Domingo, Ciudad Central I, Colinas De Monte Carlo, Colinas Verde, Ext Colinas Verde, Ext Town Park, Mans De San Martin, Parc Falu, Parc Hill Brothers, Sect Los Penas, Urb Berwind Est, Urb Club Manor, Urb Country Club, Urb Delicias, Urb El Cemi, Urb El Comandante, Urb Gonzalez Seijo, Urb Highland Pk, Urb La Vista, Urb Las Virtudes, Urb Luarca, Urb Monte Carlo, Urb Sabana Llana, Urb San Martin, Urb Sevilla, Urb Town Pk, Urb Vosburg, Villa Capri, Villa Navarra, Villa Olimpica, Villa Prades, Villa Rosales, Vista Del Atlantico",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.4,-66.01,0 +00925,STANDARD,0,"San Juan","Rio Piedras","Bda Blondet, University Station, Urb Cabrera, Urb Gonzalez, Urb Santa Rita",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.4,-66.05,0 +00926,STANDARD,0,"San Juan","Cupey, Rio Piedras","Alts Del Remanso, Alturas De Borinquen Gdns, Bda Vista Alegre, Bo Buen Consejo, Bo Canejas, Bo Carraizo, Bo Dulce, Bo Quebrada Arena, Bo Tortugo, Bo Venezuela, Camino Del Bosque, Ciudad Senorial, Colinas De Cupey, Est De San Geraldo, Ext Alameda, Ext Mans De Vilanova, Ext Milaville, Hacienda De Carraizo, Hacienda Las Ceibas, Ind Victor Fernandez, Jard Botanico Sur, Jard De Caldas, Las Flores De Montehiedra, Los Arboles De Montehiedra, Mans Colinas De Cupey, Mans De Caldas, Mans De Park Gdns, Mans De Rio Piedras, Mans De Romany, Mans De Villanova, Palmares De Monteverde, Palmas De Carraizo, Parq Ind Quebrada Arenas, Parq Senorial, Paseo Alto, Paseo De La Fuente, Paseo Del Parque, Paseo Del Prado, Paseo Las Brisas, Paseo Las Vistas, Paseo Mayor, Paseo Real, Paseo San Juan, Qtas De Cupey, Repto Contemporaneo, Repto De Diego, Repto Oyola, Repto Universitario, Repto Veterano, Sect Betancourt, Sect Hoyo, Sect La Corte, Sect La Marina, Sect Paracochero, Senderos Estate, Urb Alamein, Urb Beverly Hills Ct, Urb Borinqu",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.35,-66.05,0 +00927,STANDARD,0,"San Juan","Rio Piedras","Bda Villamil, Ext Santa Maria, Jard De Vedruna, Jard Metropolitano, Parq De Santa Maria, University Gardens, Urb Antonsanti, Urb Belisa, Urb Caribe, Urb Hyde Pk, Urb San Francisco, Urb San Ignacio, Urb Santa Ana, Urb Santa Maria, Urb University Gardens, Urb University Gdns, Villa Los Olmos, Villa Nevarez, Villas De Palma Real, Villas De San Francisco, Villas De San Ignacio",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.4,-66.06,0 +00928,"PO BOX",0,"San Juan","Rio Piedras",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00929,"PO BOX",0,"San Juan","Rio Piedras","65th Infantry",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00930,"PO BOX",0,"San Juan","Rio Piedras, San Jose",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00931,"PO BOX",0,"San Juan","Rio Piedras",,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00933,"PO BOX",0,"San Juan",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00934,STANDARD,0,"Fort Buchanan",,"Urb Coconut Grove, Urb Coqui Gdns, Urb Las Colinas",PR,"Guaynabo Municipio",America/Puerto_Rico,787,NA,US,18.41,-66.12,0 +00935,UNIQUE,0,"San Juan",,"Centro Medico Metropolitano",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00936,"PO BOX",0,"San Juan","Barrio Obrero, Caparra, Cupey, Minillas, Old San Juan, Rio Piedras, San Jose, Santurce","65th Infantry, Gpo, Loiza Street, Santurce Station",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.4,-66.07,0 +00937,"PO BOX",0,"San Juan",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00939,UNIQUE,0,"San Juan",,"Unique Brm",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00940,"PO BOX",0,"San Juan","Minillas, Santurce",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00949,STANDARD,0,"Toa Baja",Levittown,"Alt Hacienda Dorada, Alts De Covadonga, Bo Campanilla, Bo Candelaria, Bo Palo Seco, Brisas De Campanero, Brisas De Campanero Ii, Comunidad Punta Salinas, Ext La Inmaculada, Ext Lagos De Plata, Hacienda Del Norte, Hacienda Del Norte 2, Mans Del Lago, Mans Del Mar, Mans Del Norte, Mans Del Sur, Parq Punta Salinas, Pradera, Pradera Norte, Qta Real, Repto Anamar, Res Campanilla, Sect La Pra, Urb Almira, Urb Altagracia, Urb Camino Del Mar, Urb Campanillas, Urb Covadonga, Urb Dos Rios, Urb El Naranjal, Urb El Plantio, Urb La Inmaculada, Urb La Rosaleda I, Urb La Rosaleda Ii, Urb Lagos De Plata, Urb Las Colinas, Urb Las Gaviotas, Urb Levittown, Urb Levittown Lakes, Urb Levittville, Urb Pabellones, Urb San Pedro, Urb Santa Maria, Urb Toaville, Urb Valparaiso, Villa De Levittown, Vista Del Lago",PR,"Toa Baja Municipio",America/Puerto_Rico,"787,939",NA,US,18.44,-66.25,0 +00950,"PO BOX",0,"Toa Baja",,,PR,"Dorado Municipio",America/Puerto_Rico,,NA,US,18.46,-66.23,0 +00951,"PO BOX",0,"Toa Baja",,,PR,"Toa Baja Municipio",America/Puerto_Rico,,NA,US,18.43,-66.25,0 +00952,STANDARD,0,"Sabana Seca",,"Mans Del Sol",PR,"Toa Baja Municipio",America/Puerto_Rico,,NA,US,18.42,-66.19,0 +00953,STANDARD,0,"Toa Alta",,"Alt De Bucarabones, Alts De Montecasino, Alts Del Toa, Brisas De Montecasino, Ciudad Jardin I, Ciudad Jardin Ii, Ciudad Jardin Iii, Colinas De Plata, Est De La Fuente, Hacienda Del Toa, Hacienda El Paraiso, Hacienda El Pilar, Haciendas De Borinquen, Jard De Casablanca, Jard De Escorial, Jard De La Fuente, Jard De Mediterraneo, Jard De Toa Alta, Mans De Montecasino I, Mans De Montecasino Ii, Mans Del Toa, Plaza De La Fuente, Praderas Del Rio, Qtas De Plaza Aquarium, Repto San Jose, Sect Los Rodriguez, Terr Del Toa, Urb Casitas De La Fuente, Urb Fuentebella, Urb Gran Vista, Urb La Providencia, Urb Las Cascadas, Urb Las Cascadas Ii, Urb Los Arboles, Urb Madelaine, Urb Monte Lago Est, Urb Monte Sol, Urb Monte Verde, Urb Montecasino, Urb Montecasino Hts, Urb Palacio Imperial, Urb Palacios De Marbella, Urb Palacios De Versalles, Urb Palacios Del Monte, Urb Palacios Del Rio I, Urb Palacios Del Rio Ii, Urb Palacios Reales, Urb Portobello, Urb San Fernando, Urb Toa Alta Hts, Urb Toalinda, Urb Town Hls, Urb Veredas Del",PR,"Toa Alta Municipio",America/Puerto_Rico,"939,787",NA,US,18.39,-66.25,0 +00954,"PO BOX",0,"Toa Alta",,,PR,"Toa Alta",America/Puerto_Rico,,NA,US,18.39,-66.25,0 +00955,"PO BOX",0,"San Juan",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00956,STANDARD,0,Bayamon,,"Alts De Bayamon, Bosque De Las Flores, Bosque De Las Palmas, Bosque De Los Pinos, Ciudad Interamericana, Est Del Bosque, Ext Campo Alegre, Ext Oller, Ext Santa Juanita, Ext Vista Bella, Haciendas El Zorzal, Jard De Bayamonte, Lomas Verdes, Mans De Sierra Taina, Urb Agustin Stahl, Urb Aventura, Urb Bayamon Hls, Urb Campo Alegre, Urb Country Est, Urb El Cortijo, Urb Forest View, Urb Francisco Oller, Urb Golden Hls, Urb Irlanda Hts, Urb Lomas Verde, Urb Los Faroles, Urb Magnolia Gardens, Urb Magnolia Gdns, Urb Royal Palm, Urb Royal Town, Urb Santa Juanita, Urb Sunny Hls, Valle Bello Chalets, Villa Contessa, Villas De Buena Vista, Villas De Santa Juanita, Villas Del Caribe, Vista Bella",PR,"Bayamon Municipio",America/Puerto_Rico,"939,787",NA,US,18.32,-66.17,0 +00957,STANDARD,0,Bayamon,,"Alt De Cana, Alt De Sans Souci, Bda Calderon, Bo Los Angeles, Colinas De Bayoan, Est De Cerro Gordo, Ext Rexville, Parc Van Scoy, Urb Alhambra, Urb Bayamon Gdns, Urb Bella Vista, Urb Cana, Urb Flamingo Hls, Urb Flamingo Ter, Urb Los Dominicos, Urb May Fair, Urb Miraflores, Urb Montanez, Urb Panorama, Urb Panorama Estates, Urb Panorama Vlg, Urb Patio De Rexville, Urb Rexville, Urb Royal Gdns, Urb San Fernando, Urb Sans Souci, Urb Santa Catalina, Urb Santa Elena, Urb Santa Elenita, Urb Santa Monica, Urb Sierra Linda, Valle De Cerro Gordo, Villa Arrieta, Vista Alta",PR,"Bayamon Municipio",America/Puerto_Rico,"787,939",NA,US,18.37,-66.19,0 +00958,"PO BOX",0,Bayamon,,,PR,Bayamon,America/Puerto_Rico,,NA,US,18.28,-66.13,0 +00959,STANDARD,0,Bayamon,,"Alt De Flamboyan, Alt Del Rio, Bda Pesquera, Bo Cerro Gordo, Bo Hato Tejas, Colinas Vista Alegre, Ext Forest Hls, Ext Hnas Davila, Ext La Milagrosa, Ext Villa Rica, Flamboyan Gardens, Ind Minillas, Jard De Caparra, Parc Juan Sanchez, Parq De Torrimar, Parq Flamingo, Parq San Miguel, Parq Valencia, Qtas De Flamingo, Qtas Del Norte, Repto Davila, Repto Flamingo, Repto Rivera, Repto Valencia, Urb Altos De Torrimar, Urb Braulio Dueno, Urb Casa Linda Ct, Urb Flamboyan Gardens, Urb Flamboyan Gdns, Urb Forest Hls, Urb Hnas Davila, Urb La Milagrosa, Urb Las Americas, Urb Riberas Del Rio, Urb Riviera Court, Urb Riviera Village, Urb San Rafael Est, Urb San Rafael Est Ii, Urb Santa Rosa, Urb Tortuguero, Urb Versalles, Urb Victoria Hts, Villa Betania, Villa De San Agustin, Villa Del Rio Bayamon, Villa Rica, Villa Verde, Villas De Caparra, Villas De San Miguel, Vista Alegre",PR,"Bayamon Municipio",America/Puerto_Rico,"939,787",NA,US,18.39,-66.15,0 +00960,"PO BOX",0,Bayamon,,,PR,"Bayamon Municipio",America/Puerto_Rico,,NA,US,18.42,-66.15,0 +00961,STANDARD,0,Bayamon,,"Bda La Cambija, Bo Hato Tejas, Bo Volcan, Bo Volcan Arenas, Brisas De Corea, Comunidad El Volcan, Ind Corujo, Ind Luchetti, Qta Del Rio, Qtas De Boulevar, Repto Teresita, Sect Punta Brava, Urb Campo Verde, Urb El Coqui, Urb Enramada, Urb Estancias, Urb Fronteras, Urb Los Almendros, Urb Mirabella Vlg, Urb Monte Claro, Urb Rio Hondo 1, Urb Rio Hondo 2, Urb Rio Hondo 3, Urb Rio Hondo 4, Urb Rio Plantation, Urb River Vw, Urb Riverside Park, Urb Santa Cruz, Urb Sierra Bayamon, Urb Veredas, Valle Verde 1, Valle Verde 2, Valle Verde 3, Villa Espana",PR,"Bayamon Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-66.17,0 +00962,STANDARD,0,Catano,,"Bda Vietnam, Bo Juana Matos, Bo Palmas, Jard De Catano I, Jard De Catano Ii, Parc William Fuertes, Repto Paraiso, Sect La Puntilla, Urb Bahia, Urb Bajo Costo, Urb Bay View, Urb Catano Pueblo, Urb El Coqui 2, Urb Las Vegas, Urb Marina Bahia, Urb Proyecto 141, Villa Aurora, Vista Del Morro",PR,"Catano Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.15,0 +00963,"PO BOX",0,Catano,,,PR,Catano,America/Puerto_Rico,,NA,US,18.43,-66.11,0 +00965,STANDARD,0,Guaynabo,,"Bda Vietnam, Bo Amelia, Bo Sabana, Urb Sunset Harbor, Villa Concepcion 1, Villa Concepcion 2",PR,"Guaynabo Municipio",America/Puerto_Rico,787,NA,US,18.43,-66.11,0 +00966,STANDARD,0,Guaynabo,,"Alt De Torrimar, Bda Buen Samaritano, Bda San Miguel, Bo Buen Samaritano, Bo Juan Domingo, Chalet De La Reina, Est De Torrimar, Ext Victor Braeger, Ext Villa Caparra, Mans De Tintillo, Mans Garden Hls, Parq De Villa Caparra, Parq Mediterraneo, Repto Santana, Terrs De Tintillo, Urb Arboleda, Urb Garden Ct, Urb Garden Hls, Urb Garden Hls Est, Urb Garden Hls Villas, Urb Gardenville, Urb Las Ramblas, Urb Los Frailes Norte, Urb Martin Ct, Urb Novas Ct, Urb Prado Alto, Urb Sevilla Biltmore, Urb Suchville, Urb Susan Ct, Urb Susan Ct Chalets, Urb Tintillo Gdns, Urb Tintillo Hls, Urb Tintilo Gardens, Urb Torrimar, Urb Victor Braeger, Villa Caparra, Villa Verde, Villas De Caparra, Villas De Prado Alto, Villas De Tintillos, Villas De Trujillo",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.4,-66.12,0 +00968,STANDARD,0,Guaynabo,,"Alt De San Patricio, Amelia Ind Park, Caparra Hls Ind Park, Ext Alts De San Patricio, Metro Office Park, Parq San Patricio, Rexco Ind Park, Urb Caparra Hls, Urb Golden Gate, Urb Parkside, Urb San Patricio, Urb San Patricio Meadows",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-66.1,0 +00969,STANDARD,0,Guaynabo,,"Alt De Santa Maria, Alt De Torrimar, Alt De Torrimar Este, Bosque De Los Frailes, Chalets De Altavista, Chalets De Santa Clara, Colinas De Guaynabo, Colinas De Parkville, Colinas Metropolitana, Est Del Parque, Est Reales, Ext Parkville, Ext Santa Paula, Ext Terrs De Guaynabo, Mans De Alejandrino, Mans De Guaynabo, Mans De Santa Paula, Mans Reales, Parq De Bucare, Parq De Bucare Ii, Parq San Ramon, Parq Torremolinos, Qtas Reales, Repto La Esperanza, Terrs De Guaynabo, Urb Alto Apolo, Urb Alto Apolo States, Urb Apolo, Urb Baldwin Mansions, Urb Baldwin Park, Urb Bellomonte, Urb Bucare, Urb Bucare Gdns, Urb Cerro Real, Urb Colimar, Urb Collegeville, Urb El Alamo, Urb El Jard De Guaynabo, Urb El Palmar De Torrimar, Urb Frailes Sur, Urb Highland Gardens, Urb Highland Gdns, Urb Juan Ponce De Leon, Urb La Colina, Urb La Lomita, Urb La Villa De Torrimar, Urb Las Ramblas, Urb Los Frailes Sur, Urb Mallorca, Urb Monte Alvernia, Urb Monte Olimpo, Urb Munoz Rivera, Urb Oasis Gardens, Urb Oasis Gdns, Urb Palma Real, Urb Par",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.38,-66.11,0 +00970,"PO BOX",0,Guaynabo,,,PR,,America/Puerto_Rico,,NA,US,18.38,-66.11,0 +00971,STANDARD,0,Guaynabo,,"Bel Air, Finca Elena, Urb Artesia Residences, Urb Camino Del Monte, Urb La Fontana De Torrimar, Urb Riverside",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.32,-66.12,0 +00975,UNIQUE,0,"San Juan",,"Bureau Of Census",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00976,STANDARD,0,"Trujillo Alto",Trujillo,"Alt De Fairview, Alt Interamericana, Bda Gonzalez, Bosque Del Lago, Ciudad Universitaria, Colinas De Fairview, Jard De Trujillo, Lomas De Trujillo, Mans San Rafael, Parc Saint Just, Parq Del Monte, Parq Del Rio, Parq Ind Saint Just, Parq Montebello, Repto San Rafael, Saint Just, Sect La Pra, Terr De Cupey, Urb Altavilla, Urb Antillana, Urb Corrientes, Urb El Conquistador, Urb Entrerios, Urb Golden Hls, Urb Interamericana Gdn, Urb La Cima, Urb Lago Alto, Urb Lantigua, Urb Lourdes, Urb Monte Trujillo, Urb Montebello Est, Urb Pacifica, Urb Primavera, Urb Riachuelo, Urb Rincon Espanol, Urb Rio Cristal, Urb Riverwalk, Urb Round Hls, Urb San Rafael Vlg, Urb Sunville, Urb Wonderville, Valle San Juan, Villa Blanca, Villa De Caney, Villas Del Sol",PR,"Trujillo Alto Municipio",America/Puerto_Rico,"787,939",NA,US,18.36,-66.01,0 +00977,"PO BOX",0,"Trujillo Alto",Trujillo,,PR,,America/Puerto_Rico,,NA,US,18.36,-66.01,0 +00978,"PO BOX",0,"Saint Just",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.37,-66.01,0 +00979,STANDARD,0,Carolina,,"Ext Villamar, Isla Verde, Parq De Isla Verde, Urb Atlantic View, Urb Biascochea, Urb Cape Sea Vlg, Urb La Marina, Urb Los Angeles, Urb Palmar Norte, Urb Palmar Sur, Urb Villamar, Villa La Marina",PR,"Carolina Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.03,0 +00981,"PO BOX",0,Carolina,,"Isla Verde",PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +00982,STANDARD,0,Carolina,,"Alt De Villa Fontana, Isla Verde, Qtas De Country Club, Urb Country Club, Urb El Comandante, Villa Flores",PR,"Carolina Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-65.99,0 +00983,STANDARD,0,Carolina,,"Isla Verde, Jard De Country Club, La Ceramica Ind Park, Mans De Vistamar Marina, Urb Bahia Vistamar, Urb Castellana Garden, Urb Castellana Gdn, Urb Eduardo J Saldana, Urb Sabana Gardens, Urb Sabana Gdns, Urb Vistamar, Urb Vistamar Marina, Valle Arriba Hts, Villa Asturias, Villa Fontana, Villa Fontana Pk, Villa Venecia",PR,"Carolina Municipio",America/Puerto_Rico,787,NA,US,18.4,-65.98,0 +00984,"PO BOX",0,Carolina,,,PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +00985,STANDARD,0,Carolina,,"Bda Buena Vista, Bo Buena Vista, Bo Villa Caridad, Bo Villa Esperanza, Bo Villa Justicia, Est De San Fernando, Isla Verde, Jard De Borinquen, Jard De Buena Vista, Urb Jose S Quinones, Urb Rosa Maria, Villa Carolina, Villa Cooperativa, Villas Del Sol",PR,"Carolina Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-65.95,0 +00986,"PO BOX",0,Carolina,,,PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +00987,STANDARD,0,Carolina,,"Alt De Parq Ecuestre, Bo Buenaventura, Bo Colo, Bo Martin Gonzalez, Brisas De Metropolis, Chalets De La Fuente Ii, Ciudad Central Ii, Ciudad Centro, Ciudad Jardin, Est Del Parque, Ext Parq Ecuestre, Hacienda Real, Isla Verde, Jard De Carolina, Loma Alta, Lomas De Carolina, Mans De Carolina, Parq Ecuestre, Parq Ind Jn Matos, Paseo De La Alhambra, Paseo Del Prado, Qtas De Campeche, Sect Barraza 3, Sect Barrazas, Terrs De Carolina, Urb Carolina Alta, Urb Colinitas De Cacao, Urb Los Arboles, Urb Los Caciques, Urb Los Colobos, Urb Metropolis, Urb Mountain Vw, Urb Paraiso De Carolina, Urb Remanzo Taino, Urb Rolling Hls, Valle Escondido, Villa De San Anton, Villa Del Madrigal",PR,"Carolina Municipio",America/Puerto_Rico,"787,939",NA,US,18.34,-65.94,0 +00988,"PO BOX",0,Carolina,,,PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +01001,STANDARD,0,Agawam,,,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.61,15240 +01002,STANDARD,0,Amherst,"Cushman, Pelham","South Amherst",MA,"Hampshire County",America/New_York,413,NA,US,42.37,-72.52,16070 +01003,STANDARD,0,Amherst,,,MA,"Hampshire County",America/New_York,413,NA,US,42.39,-72.52,184 +01004,"PO BOX",0,Amherst,,,MA,"Hampshire County",America/New_York,413,NA,US,42.37,-72.52,794 +01005,STANDARD,0,Barre,,,MA,"Worcester County",America/New_York,978,NA,US,42.42,-72.1,4420 +01007,STANDARD,0,Belchertown,,,MA,"Hampshire County",America/New_York,413,NA,US,42.27,-72.4,14520 +01008,STANDARD,0,Blandford,,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.93,1160 +01009,"PO BOX",0,Bondsville,,,MA,"Hampden County",America/New_York,413,NA,US,42.2,-72.34,1238 +01010,STANDARD,0,Brimfield,,"East Brimfield",MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.2,3560 +01011,STANDARD,0,Chester,,,MA,"Hampden County",America/New_York,413,NA,US,42.28,-72.98,1050 +01012,STANDARD,0,Chesterfield,,,MA,"Hampshire County",America/New_York,413,NA,US,42.4,-72.85,630 +01013,STANDARD,0,Chicopee,Willimansett,,MA,"Hampden County",America/New_York,413,NA,US,42.15,-72.6,19020 +01014,"PO BOX",0,Chicopee,,,MA,"Hampden County",America/New_York,413,NA,US,42.17,-72.57,354 +01020,STANDARD,0,Chicopee,,,MA,"Hampden County",America/New_York,413,NA,US,42.17,-72.57,25700 +01021,"PO BOX",0,Chicopee,,,MA,"Hampden County",America/New_York,413,NA,US,42.17,-72.57,566 +01022,STANDARD,0,Chicopee,"Westover AFB",,MA,"Hampden County",America/New_York,413,NA,US,42.2,-72.54,1720 +01026,STANDARD,0,Cummington,,"West Cummington",MA,"Hampshire County",America/New_York,413,NA,US,42.46,-72.9,840 +01027,STANDARD,0,Easthampton,"E Hampton, Mount Tom, Westhampton",Loudville,MA,"Hampshire County",America/New_York,413,NA,US,42.26,-72.68,16210 +01028,STANDARD,0,"East Longmeadow","E Longmeadow",,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.51,15560 +01029,"PO BOX",0,"East Otis",,"Big Pond, E Otis",MA,"Berkshire County",America/New_York,413,NA,US,42.17,-73.03,557 +01030,STANDARD,0,"Feeding Hills",,,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.67,10880 +01031,STANDARD,0,Gilbertville,,"Old Furnace",MA,"Worcester County",America/New_York,413,NA,US,42.33,-72.2,990 +01032,STANDARD,0,Goshen,,Lithia,MA,"Hampshire County",America/New_York,413,NA,US,42.46,-72.81,470 +01033,STANDARD,0,Granby,,,MA,"Hampshire County",America/New_York,413,NA,US,42.26,-72.52,5760 +01034,STANDARD,0,Granville,Tolland,"Granville Center, West Granville",MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.86,1810 +01035,STANDARD,0,Hadley,,"North Hadley",MA,"Hampshire County",America/New_York,413,NA,US,42.35,-72.58,4650 +01036,STANDARD,0,Hampden,,Hampton,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.41,4700 +01037,"PO BOX",0,Hardwick,,,MA,"Worcester County",America/New_York,,NA,US,42.35,-72.2,779 +01038,STANDARD,0,Hatfield,,"West Hatfield",MA,"Hampshire County",America/New_York,413,NA,US,42.37,-72.6,2300 +01039,STANDARD,0,Haydenville,"West Whately",,MA,"Hampshire County",America/New_York,,NA,US,42.39,-72.7,1320 +01040,STANDARD,0,Holyoke,,Halyoke,MA,"Hampden County",America/New_York,413,NA,US,42.21,-72.64,29720 +01041,"PO BOX",0,Holyoke,,Halyoke,MA,"Hampden County",America/New_York,413,NA,US,42.21,-72.64,1408 +01050,STANDARD,0,Huntington,Montgomery,"Crescent Mills, Hntgtn, Knightville, North Chester, South Worthington",MA,"Hampshire County",America/New_York,413,NA,US,42.23,-72.88,2270 +01053,STANDARD,0,Leeds,,,MA,"Hampshire County",America/New_York,413,NA,US,42.35,-72.71,1520 +01054,STANDARD,0,Leverett,,"East Leverett, North Leverett",MA,"Franklin County",America/New_York,,NA,US,42.45,-72.5,1680 +01056,STANDARD,0,Ludlow,,,MA,"Hampden County",America/New_York,413,NA,US,42.16,-72.48,18100 +01057,STANDARD,0,Monson,,,MA,"Hampden County",America/New_York,413,NA,US,42.09,-72.31,7520 +01059,"PO BOX",0,"North Amherst",Amherst,,MA,"Hampshire County",America/New_York,413,NA,US,42.4,-72.52,70 +01060,STANDARD,0,Northampton,,"North Hampton",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.63,11010 +01061,"PO BOX",0,Northampton,,"North Hampton",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.67,469 +01062,STANDARD,0,Florence,"Bay State Village, Bay State Vlg, Northampton","North Hampton",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.67,10010 +01063,UNIQUE,0,Northampton,,"North Hampton, Smith College",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.64,177 +01066,"PO BOX",0,"North Hatfield","N Hatfield","No Hatfield",MA,"Hampshire County",America/New_York,413,NA,US,42.41,-72.66,402 +01068,STANDARD,0,Oakham,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.35,-72.05,1790 +01069,STANDARD,0,Palmer,,,MA,"Hampden County",America/New_York,413,NA,US,42.16,-72.32,6950 +01070,STANDARD,0,Plainfield,,,MA,"Hampshire County",America/New_York,413,NA,US,42.51,-72.91,530 +01071,STANDARD,0,Russell,,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.85,1440 +01072,STANDARD,0,Shutesbury,,,MA,"Franklin County",America/New_York,,NA,US,42.45,-72.4,1390 +01073,STANDARD,0,Southampton,,,MA,"Hampshire County",America/New_York,413,NA,US,42.23,-72.73,6050 +01074,"PO BOX",0,"South Barre",,,MA,"Worcester County",America/New_York,351,NA,US,42.39,-72.09,655 +01075,STANDARD,0,"South Hadley",,"S Hadley, So Hadley, South Hadley Falls",MA,"Hampshire County",America/New_York,413,NA,US,42.26,-72.56,14610 +01077,STANDARD,0,Southwick,,,MA,"Hampden County",America/New_York,413,NA,US,42.05,-72.76,8880 +01079,"PO BOX",0,Thorndike,,,MA,"Hampden County",America/New_York,413,NA,US,42.2,-72.33,992 +01080,STANDARD,0,"Three Rivers",,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.37,1960 +01081,STANDARD,0,Wales,,,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.21,1520 +01082,STANDARD,0,Ware,Hardwick,,MA,"Hampshire County",America/New_York,413,NA,US,42.25,-72.24,8920 +01083,"PO BOX",0,Warren,,,MA,"Worcester County",America/New_York,,NA,US,42.21,-72.19,3037 +01084,STANDARD,0,"West Chesterfield","W Chesterfld",,MA,"Hampshire County",America/New_York,413,NA,US,42.39,-72.88,137 +01085,STANDARD,0,Westfield,Montgomery,,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.75,34400 +01086,"PO BOX",0,Westfield,,,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.79,886 +01088,STANDARD,0,"West Hatfield","W Hatfield",,MA,"Hampshire County",America/New_York,413,NA,US,42.39,-72.64,530 +01089,STANDARD,0,"West Springfield","W Springfield","West Springfld",MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.65,25250 +01090,"PO BOX",0,"West Springfield","W Springfield",,MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.65,510 +01092,"PO BOX",0,"West Warren",,"W Warren",MA,"Worcester County",America/New_York,,NA,US,42.19,-72.24,1332 +01093,"PO BOX",0,Whately,,,MA,"Franklin County",America/New_York,,NA,US,42.44,-72.65,516 +01094,"PO BOX",0,Wheelwright,,,MA,"Worcester County",America/New_York,,NA,US,42.35,-72.14,340 +01095,STANDARD,0,Wilbraham,,,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.43,14200 +01096,STANDARD,0,Williamsburg,,"S Chesterfield, South Chesterfield",MA,"Hampshire County",America/New_York,413,NA,US,42.4,-72.76,2260 +01097,"PO BOX",0,Woronoco,,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.83,88 +01098,STANDARD,0,Worthington,,,MA,"Hampshire County",America/New_York,413,NA,US,42.41,-72.93,1090 +01101,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,2038 +01102,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01103,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.59,1660 +01104,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.57,19740 +01105,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.58,7930 +01106,STANDARD,0,Longmeadow,Springfield,,MA,"Hampden County",America/New_York,413,NA,US,42.04,-72.57,15310 +01107,STANDARD,0,Springfield,,"Brightwood, Spfld",MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.61,8170 +01108,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.08,-72.56,22420 +01109,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,22080 +01111,UNIQUE,0,Springfield,,"Mass Mutual Life Ins Co",MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01115,"PO BOX",0,Springfield,,"Bay State W Tower",MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,25 +01116,"PO BOX",0,Longmeadow,"E Longmeadow, East Longmeadow",,MA,"Hampden County",America/New_York,413,NA,US,42.04,-72.57,82 +01118,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.09,-72.53,13060 +01119,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.51,10910 +01128,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.09,-72.49,2560 +01129,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.49,6490 +01133,UNIQUE,1,Springfield,,"Monarch Life Ins Co",MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.59,0 +01138,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,688 +01139,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,467 +01144,STANDARD,0,Springfield,,,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01151,STANDARD,0,"Indian Orchard","Indian Orch, Springfield",Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.15,-72.51,7700 +01152,STANDARD,0,Springfield,,,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01195,STANDARD,1,Springfield,"Springfield Bmc",,MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.58,0 +01199,UNIQUE,0,Springfield,,"Baystate Medical, Spfld",MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.6,0 +01201,STANDARD,0,Pittsfield,,Allendale,MA,"Berkshire County",America/New_York,413,NA,US,42.45,-73.26,37180 +01202,"PO BOX",0,Pittsfield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.45,-73.26,1387 +01203,"PO BOX",0,Pittsfield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.45,-73.26,0 +01220,STANDARD,0,Adams,,,MA,"Berkshire County",America/New_York,413,NA,US,42.62,-73.11,7100 +01222,STANDARD,0,"Ashley Falls",,,MA,"Berkshire County",America/New_York,413,NA,US,42.05,-73.33,720 +01223,STANDARD,0,Becket,Washington,"Becket Corners, Sherwood Forest",MA,"Berkshire County",America/New_York,413,NA,US,42.33,-73.07,2010 +01224,STANDARD,0,Berkshire,Lanesborough,,MA,"Berkshire County",America/New_York,413,NA,US,42.51,-73.2,160 +01225,STANDARD,0,Cheshire,,,MA,"Berkshire County",America/New_York,413,NA,US,42.55,-73.15,2930 +01226,STANDARD,0,Dalton,,,MA,"Berkshire County",America/New_York,413,NA,US,42.47,-73.16,5710 +01227,"PO BOX",0,Dalton,,,MA,"Berkshire County",America/New_York,413,NA,US,42.47,-73.16,262 +01229,"PO BOX",0,Glendale,,,MA,"Berkshire County",America/New_York,413,NA,US,42.28,-73.34,163 +01230,STANDARD,0,"Great Barrington","Egremont, Gt Barrington, N Egremont, New Marlboro, New Marlborou, New Marlborough, North Egremont, Simons Rock","Alford, Berkshire Heights, Hartsville, Risingdale, Van Deusenville",MA,"Berkshire County",America/New_York,413,NA,US,42.19,-73.35,6170 +01235,STANDARD,0,Hinsdale,Peru,,MA,"Berkshire County",America/New_York,413,NA,US,42.42,-73.07,2470 +01236,STANDARD,0,Housatonic,,,MA,"Berkshire County",America/New_York,413,NA,US,42.27,-73.38,1420 +01237,STANDARD,0,Lanesborough,"Hancock, New Ashford",,MA,"Berkshire County",America/New_York,413,NA,US,42.51,-73.22,2700 +01238,STANDARD,0,Lee,,"W Becket",MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.25,5090 +01240,STANDARD,0,Lenox,,,MA,"Berkshire County",America/New_York,413,NA,US,42.35,-73.28,4030 +01242,"PO BOX",0,"Lenox Dale",,,MA,"Berkshire County",America/New_York,413,NA,US,42.33,-73.25,559 +01243,"PO BOX",0,Middlefield,,,MA,"Hampshire County",America/New_York,413,NA,US,42.35,-73.01,315 +01244,"PO BOX",0,"Mill River",,,MA,"Berkshire County",America/New_York,413,NA,US,42.12,-73.26,328 +01245,STANDARD,0,Monterey,"West Otis",,MA,"Berkshire County",America/New_York,413,NA,US,42.18,-73.21,660 +01247,STANDARD,0,"North Adams","Clarksburg, Florida","N Adams, No Adams",MA,"Berkshire County",America/New_York,413,NA,US,42.68,-73.11,11340 +01252,STANDARD,0,"North Egremont","N Egremont","No Egremont",MA,"Berkshire County",America/New_York,413,NA,US,42.17,-73.44,281 +01253,STANDARD,0,Otis,,"Cold Spring, North Otis",MA,"Berkshire County",America/New_York,413,NA,US,42.21,-73.11,720 +01254,STANDARD,0,Richmond,,,MA,"Berkshire County",America/New_York,413,NA,US,42.37,-73.36,1000 +01255,STANDARD,0,Sandisfield,,"South Sandisfield",MA,"Berkshire County",America/New_York,413,NA,US,42.11,-73.13,610 +01256,STANDARD,0,Savoy,,,MA,"Berkshire County",America/New_York,413,NA,US,42.56,-73.02,600 +01257,STANDARD,0,Sheffield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.1,-73.34,2080 +01258,"PO BOX",0,"South Egremont","Mount Washington, Mt Washington, S Egremont","So Egremont",MA,"Berkshire County",America/New_York,413,NA,US,42.11,-73.46,580 +01259,STANDARD,0,Southfield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.07,-73.23,430 +01260,"PO BOX",0,"South Lee",,,MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.34,254 +01262,"PO BOX",0,Stockbridge,,,MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.32,1342 +01263,UNIQUE,0,Stockbridge,,"Assoc Of Marian Helpers, Marian Helpers, Marion Fathers",MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.32,0 +01264,"PO BOX",0,Tyringham,Lee,,MA,"Berkshire County",America/New_York,413,NA,US,42.24,-73.19,198 +01266,STANDARD,0,"West Stockbridge","Alford, W Stockbridge","Interlaken, West Stockbridge Center",MA,"Berkshire County",America/New_York,413,NA,US,42.31,-73.39,1190 +01267,STANDARD,0,Williamstown,,"Williamstn, Wmstown",MA,"Berkshire County",America/New_York,413,NA,US,42.7,-73.2,5220 +01270,STANDARD,0,Windsor,,"East Windsor",MA,"Berkshire County",America/New_York,413,NA,US,42.51,-73.04,700 +01301,STANDARD,0,Greenfield,Leyden,,MA,"Franklin County",America/New_York,413,NA,US,42.58,-72.59,13940 +01302,"PO BOX",0,Greenfield,,,MA,"Franklin County",America/New_York,413,NA,US,42.58,-72.59,502 +01330,STANDARD,0,Ashfield,,"South Ashfield",MA,"Franklin County",America/New_York,413,NA,US,42.53,-72.78,1280 +01331,STANDARD,0,Athol,Phillipston,,MA,"Worcester County",America/New_York,978,NA,US,42.59,-72.23,11340 +01337,STANDARD,0,Bernardston,Leyden,,MA,"Franklin County",America/New_York,413,NA,US,42.66,-72.55,2470 +01338,STANDARD,0,Buckland,,,MA,"Franklin County",America/New_York,413,NA,US,42.57,-72.82,210 +01339,STANDARD,0,Charlemont,Hawley,"West Hawley",MA,"Franklin County",America/New_York,,NA,US,42.63,-72.88,1200 +01340,STANDARD,0,Colrain,Shattuckville,,MA,"Franklin County",America/New_York,413,NA,US,42.66,-72.68,1510 +01341,STANDARD,0,Conway,,,MA,"Franklin County",America/New_York,413,NA,US,42.51,-72.68,1470 +01342,STANDARD,0,Deerfield,,"East Deerfield, West Deerfield",MA,"Franklin County",America/New_York,413,NA,US,42.55,-72.6,1320 +01343,STANDARD,0,Drury,,,MA,"Berkshire County",America/New_York,413,NA,US,42.66,-72.98,153 +01344,STANDARD,0,Erving,,"Farley, Stoneville",MA,"Franklin County",America/New_York,,NA,US,42.6,-72.4,1420 +01346,STANDARD,0,Heath,Charlemont,,MA,"Franklin County",America/New_York,413,NA,US,42.66,-72.83,330 +01347,"PO BOX",0,"Lake Pleasant",,,MA,"Franklin County",America/New_York,,NA,US,42.56,-72.52,165 +01349,STANDARD,0,"Millers Falls",,,MA,"Franklin County",America/New_York,413,NA,US,42.56,-72.48,750 +01350,"PO BOX",0,"Monroe Bridge",Monroe,,MA,"Franklin County",America/New_York,,NA,US,42.72,-72.98,35 +01351,STANDARD,0,Montague,,,MA,"Franklin County",America/New_York,413,NA,US,42.53,-72.53,2080 +01354,STANDARD,0,Gill,"Mount Hermon, Mt Hermon, Northfield Mount Hermon, Northfield Mt Hermon",,MA,"Franklin County",America/New_York,413,NA,US,42.62,-72.51,1410 +01355,STANDARD,0,"New Salem",,,MA,"Franklin County",America/New_York,978,NA,US,42.5,-72.33,850 +01360,STANDARD,0,Northfield,,"N Field, No Field",MA,"Franklin County",America/New_York,413,NA,US,42.7,-72.43,2690 +01364,STANDARD,0,Orange,Warwick,"Blissville, Eagleville, Lake Mattawa, N Orange, North Orange",MA,"Franklin County",America/New_York,978,NA,US,42.59,-72.3,6330 +01366,STANDARD,0,Petersham,,,MA,"Worcester County",America/New_York,978,NA,US,42.48,-72.18,1090 +01367,STANDARD,0,Rowe,,"Hoosac Tunnel, Zoar",MA,"Franklin County",America/New_York,413,NA,US,42.7,-72.9,410 +01368,STANDARD,0,Royalston,"S Royalston",,MA,"Worcester County",America/New_York,978,NA,US,42.68,-72.18,1090 +01370,STANDARD,0,"Shelburne Falls","Shelburne Fls","Baptist Corner, East Charlemont, Shelburne",MA,"Franklin County",America/New_York,413,NA,US,42.6,-72.74,3500 +01373,STANDARD,0,"South Deerfield","S Deerfield","So Deerfield",MA,"Franklin County",America/New_York,413,NA,US,42.47,-72.59,4030 +01375,STANDARD,0,Sunderland,,,MA,"Franklin County",America/New_York,413,NA,US,42.46,-72.58,2750 +01376,STANDARD,0,"Turners Falls",,,MA,"Franklin County",America/New_York,413,NA,US,42.59,-72.55,4270 +01378,STANDARD,0,Warwick,Orange,,MA,"Franklin County",America/New_York,978,NA,US,42.68,-72.33,650 +01379,STANDARD,0,Wendell,,,MA,"Franklin County",America/New_York,,NA,US,42.55,-72.4,690 +01380,STANDARD,0,"Wendell Depot",,,MA,"Franklin County",America/New_York,,NA,US,42.58,-72.37,81 +01420,STANDARD,0,Fitchburg,,,MA,"Worcester County",America/New_York,"978,508",NA,US,42.58,-71.81,34250 +01430,STANDARD,0,Ashburnham,,"South Ashburnham",MA,"Worcester County",America/New_York,978,NA,US,42.63,-71.9,5850 +01431,STANDARD,0,Ashby,,,MA,"Middlesex County",America/New_York,978,NA,US,42.68,-71.81,2920 +01432,STANDARD,0,Ayer,,"Devens, Fort Devens, Ft Devens",MA,"Middlesex County",America/New_York,978,NA,US,42.56,-71.58,7440 +01434,STANDARD,0,Devens,Ayer,,MA,"Worcester County",America/New_York,,NA,US,42.53,-71.61,420 +01436,STANDARD,0,Baldwinville,,"Otter River",MA,"Worcester County",America/New_York,,NA,US,42.6,-72.07,2570 +01438,"PO BOX",0,"East Templeton","E Templeton",,MA,"Worcester County",America/New_York,,NA,US,42.56,-72.03,704 +01440,STANDARD,0,Gardner,,,MA,"Worcester County",America/New_York,978,NA,US,42.58,-71.98,16810 +01441,UNIQUE,0,Westminster,,Tyco,MA,"Worcester County",America/New_York,351,NA,US,42.58,-71.98,0 +01450,STANDARD,0,Groton,,,MA,"Middlesex County",America/New_York,978,NA,US,42.6,-71.57,10850 +01451,STANDARD,0,Harvard,,,MA,"Worcester County",America/New_York,978,NA,US,42.5,-71.58,5320 +01452,STANDARD,0,Hubbardston,,,MA,"Worcester County",America/New_York,978,NA,US,42.48,-72.01,4160 +01453,STANDARD,0,Leominster,,,MA,"Worcester County",America/New_York,"508,978",NA,US,42.51,-71.77,38370 +01460,STANDARD,0,Littleton,,Pingryville,MA,"Middlesex County",America/New_York,"508,781,978",NA,US,42.53,-71.47,9820 +01462,STANDARD,0,Lunenburg,,,MA,"Worcester County",America/New_York,"508,978",NA,US,42.59,-71.72,11070 +01463,STANDARD,0,Pepperell,,"E Pepperell, East Pepperell",MA,"Middlesex County",America/New_York,"351,978",NA,US,42.66,-71.58,10910 +01464,STANDARD,0,Shirley,"Shirley Center, Shirley Ctr",,MA,"Middlesex County",America/New_York,978,NA,US,42.54,-71.65,5650 +01467,"PO BOX",0,"Still River",,,MA,"Worcester County",America/New_York,,NA,US,42.49,-71.61,318 +01468,STANDARD,0,Templeton,,,MA,"Worcester County",America/New_York,978,NA,US,42.55,-72.06,4130 +01469,STANDARD,0,Townsend,,,MA,"Middlesex County",America/New_York,978,NA,US,42.66,-71.7,6810 +01470,UNIQUE,0,Groton,,"New England Business Brm",MA,"Middlesex County",America/New_York,351,NA,US,42.6,-71.57,0 +01471,UNIQUE,0,Groton,,"New England Business Svc Inc",MA,"Middlesex County",America/New_York,351,NA,US,42.6,-71.57,0 +01472,"PO BOX",0,"West Groton",,"W Groton",MA,"Middlesex County",America/New_York,,NA,US,42.61,-71.62,352 +01473,STANDARD,0,Westminster,,,MA,"Worcester County",America/New_York,978,NA,US,42.55,-71.9,7940 +01474,STANDARD,0,"West Townsend","Townsend, W Townsend",,MA,"Middlesex County",America/New_York,978,NA,US,42.66,-71.74,1880 +01475,STANDARD,0,Winchendon,,,MA,"Worcester County",America/New_York,978,NA,US,42.68,-72.04,8850 +01477,"PO BOX",1,"Winchendon Springs","Winchdon Spgs",,MA,"Worcester County",America/New_York,351,NA,US,42.69,-72.01,214 +01501,STANDARD,0,Auburn,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.2,-71.83,15780 +01503,STANDARD,0,Berlin,,,MA,"Worcester County",America/New_York,978,NA,US,42.38,-71.63,3000 +01504,STANDARD,0,Blackstone,,"E Blackstone, East Blackstone, Millerville",MA,"Worcester County",America/New_York,"508,774",NA,US,42.04,-71.53,8490 +01505,STANDARD,0,Boylston,,Morningdale,MA,"Worcester County",America/New_York,"508,774",NA,US,42.35,-71.73,4630 +01506,STANDARD,0,Brookfield,,,MA,"Worcester County",America/New_York,413,NA,US,42.21,-72.1,3020 +01507,STANDARD,0,Charlton,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.13,-71.96,12310 +01508,"PO BOX",0,"Charlton City",,"Richardson Corners",MA,"Worcester County",America/New_York,,NA,US,42.13,-71.96,958 +01509,"PO BOX",0,"Charlton Depot","Charlton Dept, Charlton Dpt",,MA,"Worcester County",America/New_York,,NA,US,42.13,-71.96,52 +01510,STANDARD,0,Clinton,,,MA,"Worcester County",America/New_York,978,NA,US,42.41,-71.68,13190 +01515,STANDARD,0,"East Brookfield","E Brookfield",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.22,-72.04,2140 +01516,STANDARD,0,Douglas,"East Douglas",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.05,-71.73,8470 +01517,"PO BOX",1,"East Princeton","E Princeton",,MA,"Worcester County",America/New_York,,NA,US,42.46,-71.89,0 +01518,STANDARD,0,Fiskdale,Sturbridge,,MA,"Worcester County",America/New_York,"774,508",NA,US,42.12,-72.11,3120 +01519,STANDARD,0,Grafton,,"Hassanamisco Indian Reservat",MA,"Worcester County",America/New_York,"508,774",NA,US,42.2,-71.68,7030 +01520,STANDARD,0,Holden,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.35,-71.85,15860 +01521,STANDARD,0,Holland,Fiskdale,Halland,MA,"Hampden County",America/New_York,508,NA,US,42.05,-72.15,2260 +01522,STANDARD,0,Jefferson,,,MA,"Worcester County",America/New_York,,NA,US,42.38,-71.87,3310 +01523,STANDARD,0,Lancaster,,"North Lancaster",MA,"Worcester County",America/New_York,,NA,US,42.45,-71.66,6030 +01524,STANDARD,0,Leicester,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.25,-71.9,6090 +01525,"PO BOX",0,Linwood,,,MA,"Worcester County",America/New_York,,NA,US,42.11,-71.63,1058 +01526,"PO BOX",0,Manchaug,,,MA,"Worcester County",America/New_York,,NA,US,42.12,-71.76,534 +01527,STANDARD,0,Millbury,,"East Millbury",MA,"Worcester County",America/New_York,"508,774",NA,US,42.19,-71.76,12730 +01529,STANDARD,0,Millville,,,MA,"Worcester County",America/New_York,,NA,US,42.03,-71.58,3020 +01531,STANDARD,0,"New Braintree",,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.31,-72.13,930 +01532,STANDARD,0,Northborough,,Northboro,MA,"Worcester County",America/New_York,"508,774",NA,US,42.31,-71.64,15150 +01534,STANDARD,0,Northbridge,,Rockdale,MA,"Worcester County",America/New_York,,NA,US,42.15,-71.65,5800 +01535,STANDARD,0,"North Brookfield","N Brookfield",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.27,-72.08,4140 +01536,STANDARD,0,"North Grafton",,"N Grafton, No Grafton",MA,"Worcester County",America/New_York,,NA,US,42.23,-71.69,6930 +01537,STANDARD,0,"North Oxford",,,MA,"Worcester County",America/New_York,508,NA,US,42.16,-71.88,2040 +01538,"PO BOX",0,"North Uxbridge","N Uxbridge",,MA,"Worcester County",America/New_York,,NA,US,42.05,-71.64,584 +01540,STANDARD,0,Oxford,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.11,-71.87,10280 +01541,STANDARD,0,Princeton,,,MA,"Worcester County",America/New_York,978,NA,US,42.45,-71.86,3420 +01542,STANDARD,0,Rochdale,,,MA,"Worcester County",America/New_York,,NA,US,42.2,-71.9,2100 +01543,STANDARD,0,Rutland,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.36,-71.95,8730 +01545,STANDARD,0,Shrewsbury,,Edgemere,MA,"Worcester County",America/New_York,"508,774",NA,US,42.3,-71.71,36410 +01546,UNIQUE,0,Shrewsbury,,"Central Mass P & D Ctr",MA,"Worcester County",America/New_York,508,NA,US,42.3,-71.71,0 +01550,STANDARD,0,Southbridge,,"Globe Village, Sandersdale",MA,"Worcester County",America/New_York,"508,774",NA,US,42.08,-72.03,15000 +01560,STANDARD,0,"South Grafton",,Saundersville,MA,"Worcester County",America/New_York,,NA,US,42.17,-71.68,4420 +01561,"PO BOX",0,"South Lancaster","S Lancaster","So Lancaster",MA,"Worcester County",America/New_York,,NA,US,42.44,-71.69,1100 +01562,STANDARD,0,Spencer,,"Lambs Grove",MA,"Worcester County",America/New_York,"508,774",NA,US,42.24,-71.99,10200 +01564,STANDARD,0,Sterling,,"Sterling Junction",MA,"Worcester County",America/New_York,978,NA,US,42.43,-71.75,7790 +01566,STANDARD,0,Sturbridge,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.09,-72.06,6430 +01568,STANDARD,0,Upton,,"W Upton, West Upton",MA,"Worcester County",America/New_York,"508,774",NA,US,42.17,-71.61,7640 +01569,STANDARD,0,Uxbridge,,,MA,"Worcester County",America/New_York,"774,508",NA,US,42.08,-71.6,13130 +01570,STANDARD,0,Webster,"Dudley Hill",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.04,-71.87,15140 +01571,STANDARD,0,Dudley,,,MA,"Worcester County",America/New_York,,NA,US,42.05,-71.93,10480 +01580,UNIQUE,1,Westborough,,"Emc, Westboro",MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.61,0 +01581,STANDARD,0,Westborough,,Westboro,MA,"Worcester County",America/New_York,"508,774",NA,US,42.26,-71.61,20030 +01582,UNIQUE,1,Westborough,,"National Grid Co, Westboro",MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.61,0 +01583,STANDARD,0,"West Boylston",,"Oakdale, Westboylston",MA,"Worcester County",America/New_York,,NA,US,42.36,-71.78,6770 +01585,STANDARD,0,"West Brookfield","W Brookfield",Westbrookfield,MA,"Worcester County",America/New_York,"508,413",NA,US,42.23,-72.14,3850 +01586,"PO BOX",0,"West Millbury",Millbury,,MA,"Worcester County",America/New_York,,NA,US,42.19,-71.76,0 +01588,STANDARD,0,Whitinsville,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.11,-71.67,9140 +01590,STANDARD,0,Sutton,"Wilkinsonvile, Wilkinsonville",,MA,"Worcester County",America/New_York,,NA,US,42.15,-71.76,8810 +01601,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,322 +01602,STANDARD,0,Worcester,,"West Side",MA,"Worcester County",America/New_York,,NA,US,42.27,-71.85,20370 +01603,STANDARD,0,Worcester,,"Webster Square",MA,"Worcester County",America/New_York,508,NA,US,42.24,-71.84,17210 +01604,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.25,-71.77,31160 +01605,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.29,-71.79,22130 +01606,STANDARD,0,Worcester,,Greendale,MA,"Worcester County",America/New_York,508,NA,US,42.32,-71.8,18170 +01607,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.23,-71.79,7610 +01608,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"774,978,508",NA,US,42.26,-71.8,3020 +01609,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"508,774,978",NA,US,42.29,-71.83,12920 +01610,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.25,-71.81,16760 +01611,STANDARD,0,"Cherry Valley",,,MA,"Worcester County",America/New_York,,NA,US,42.23,-71.87,1990 +01612,STANDARD,0,Paxton,Worcester,,MA,"Worcester County",America/New_York,,NA,US,42.31,-71.93,4400 +01613,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,1369 +01614,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,68 +01615,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,13 +01653,UNIQUE,0,Worcester,,Allmerica,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,0 +01654,UNIQUE,1,Worcester,,Verizon,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,0 +01655,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"508,774,978",NA,US,42.26,-71.8,0 +01701,STANDARD,0,Framingham,,"Framingham Center, Framingham So, Saxonville",MA,"Middlesex County",America/New_York,"508,774,781,978",NA,US,42.3,-71.43,30960 +01702,STANDARD,0,Framingham,,,MA,"Middlesex County",America/New_York,"508,774,781,978",NA,US,42.28,-71.44,27520 +01703,"PO BOX",0,Framingham,,,MA,"Middlesex County",America/New_York,508,NA,US,42.3,-71.43,160 +01704,"PO BOX",0,Framingham,,,MA,"Middlesex County",America/New_York,508,NA,US,42.3,-71.43,385 +01705,"PO BOX",0,Framingham,,,MA,"Middlesex County",America/New_York,508,NA,US,42.3,-71.43,71 +01718,STANDARD,0,Acton,,,MA,"Middlesex County",America/New_York,"508,978,781",NA,US,42.52,-71.43,650 +01719,STANDARD,0,Boxborough,"Acton, Boxboro",,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.5,-71.5,5310 +01720,STANDARD,0,Acton,,"W Acton, West Acton",MA,"Middlesex County",America/New_York,"781,508,978",NA,US,42.48,-71.46,22480 +01721,STANDARD,0,Ashland,,,MA,"Middlesex County",America/New_York,,NA,US,42.25,-71.46,17680 +01730,STANDARD,0,Bedford,,,MA,"Middlesex County",America/New_York,"781,857",NA,US,42.48,-71.26,13720 +01731,STANDARD,0,"Hanscom AFB",Bedford,,MA,"Middlesex County",America/New_York,"857,781",NA,US,42.46,-71.28,2340 +01740,STANDARD,0,Bolton,,,MA,"Worcester County",America/New_York,978,NA,US,42.43,-71.6,5580 +01741,STANDARD,0,Carlisle,,,MA,"Middlesex County",America/New_York,,NA,US,42.53,-71.35,5260 +01742,STANDARD,0,Concord,,"W Concord, West Concord",MA,"Middlesex County",America/New_York,978,NA,US,42.45,-71.35,17320 +01745,STANDARD,0,Fayville,Southborough,Southboro,MA,"Worcester County",America/New_York,,NA,US,42.29,-71.5,420 +01746,STANDARD,0,Holliston,,,MA,"Middlesex County",America/New_York,"508,774",NA,US,42.2,-71.43,14680 +01747,STANDARD,0,Hopedale,,,MA,"Worcester County",America/New_York,,NA,US,42.12,-71.54,5710 +01748,STANDARD,0,Hopkinton,,,MA,"Middlesex County",America/New_York,"508,774",NA,US,42.22,-71.52,18000 +01749,STANDARD,0,Hudson,,,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.39,-71.56,18500 +01752,STANDARD,0,Marlborough,,Marlboro,MA,"Middlesex County",America/New_York,"508,774,978",NA,US,42.34,-71.54,36140 +01754,STANDARD,0,Maynard,,,MA,"Middlesex County",America/New_York,978,NA,US,42.42,-71.45,9820 +01756,STANDARD,0,Mendon,,,MA,"Worcester County",America/New_York,,NA,US,42.1,-71.55,6220 +01757,STANDARD,0,Milford,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.14,-71.51,26240 +01760,STANDARD,0,Natick,,"N Natick, No Natick, North Natick, S Natick, So Natick, South Natick",MA,"Middlesex County",America/New_York,"508,774",NA,US,42.28,-71.35,34390 +01770,STANDARD,0,Sherborn,,,MA,"Middlesex County",America/New_York,,NA,US,42.23,-71.36,4320 +01772,STANDARD,0,Southborough,,Southboro,MA,"Worcester County",America/New_York,"508,978",NA,US,42.3,-71.51,10070 +01773,STANDARD,0,Lincoln,,"Lincoln Center",MA,"Middlesex County",America/New_York,781,NA,US,42.41,-71.3,5370 +01775,STANDARD,0,Stow,,,MA,"Middlesex County",America/New_York,,NA,US,42.43,-71.5,7240 +01776,STANDARD,0,Sudbury,,"N Sudbury, North Sudbury",MA,"Middlesex County",America/New_York,978,NA,US,42.36,-71.4,18920 +01778,STANDARD,0,Wayland,,Cochituate,MA,"Middlesex County",America/New_York,"508,774",NA,US,42.36,-71.36,14070 +01784,"PO BOX",0,Woodville,,,MA,"Middlesex County",America/New_York,,NA,US,42.23,-71.55,150 +01801,STANDARD,0,Woburn,,,MA,"Middlesex County",America/New_York,"339,617,781,978",NA,US,42.48,-71.15,37040 +01803,STANDARD,0,Burlington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.5,-71.2,25140 +01805,UNIQUE,0,Burlington,,"Lahey Clinic Med Ctr",MA,"Middlesex County",America/New_York,339,NA,US,42.5,-71.2,0 +01806,UNIQUE,1,Woburn,At&t,,MA,"Middlesex County",America/New_York,339,NA,US,42.47,-71.15,0 +01807,UNIQUE,1,Woburn,,"National Grid",MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,0 +01808,UNIQUE,1,Woburn,,At&t,MA,"Middlesex County",America/New_York,339,NA,US,42.5,-71.12,0 +01810,STANDARD,0,Andover,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.65,-71.14,34300 +01812,UNIQUE,0,Andover,,"Internal Revenue Service",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,0 +01813,UNIQUE,0,Woburn,,"Mellon Financial Services",MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,0 +01815,UNIQUE,0,Woburn,,"Bank Of America",MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,0 +01821,STANDARD,0,Billerica,,,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.55,-71.26,29760 +01822,"PO BOX",0,Billerica,,,MA,"Middlesex County",America/New_York,351,NA,US,42.55,-71.26,0 +01824,STANDARD,0,Chelmsford,"Kates Corner, S Chelmsford",,MA,"Middlesex County",America/New_York,,NA,US,42.59,-71.36,25670 +01826,STANDARD,0,Dracut,,,MA,"Middlesex County",America/New_York,,NA,US,42.68,-71.3,30570 +01827,STANDARD,0,Dunstable,,,MA,"Middlesex County",America/New_York,,NA,US,42.66,-71.48,3370 +01830,STANDARD,0,Haverhill,,,MA,"Essex County",America/New_York,978,NA,US,42.78,-71.08,22530 +01831,"PO BOX",0,Haverhill,,,MA,"Essex County",America/New_York,351,NA,US,42.78,-71.08,992 +01832,STANDARD,0,Haverhill,,,MA,"Essex County",America/New_York,978,NA,US,42.79,-71.13,22060 +01833,STANDARD,0,Georgetown,Haverhill,,MA,"Essex County",America/New_York,"351,978",NA,US,42.73,-70.98,8160 +01834,STANDARD,0,Groveland,,,MA,"Essex County",America/New_York,,NA,US,42.75,-71.03,6500 +01835,STANDARD,0,Haverhill,"Bradford, Ward Hill",,MA,"Essex County",America/New_York,978,NA,US,42.75,-71.09,13410 +01840,STANDARD,0,Lawrence,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.71,-71.16,4860 +01841,STANDARD,0,Lawrence,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.71,-71.16,45810 +01842,"PO BOX",0,Lawrence,,,MA,"Essex County",America/New_York,351,NA,US,42.7,-71.16,1297 +01843,STANDARD,0,Lawrence,,"S Lawrence, South Lawrence",MA,"Essex County",America/New_York,"508,978",NA,US,42.7,-71.16,24610 +01844,STANDARD,0,Methuen,,,MA,"Essex County",America/New_York,,NA,US,42.74,-71.18,48180 +01845,STANDARD,0,"North Andover",,"N Andover",MA,"Essex County",America/New_York,,NA,US,42.7,-71.11,28090 +01850,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,"781,978",NA,US,42.66,-71.3,13800 +01851,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,"781,978",NA,US,42.63,-71.32,28740 +01852,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,"781,978",NA,US,42.63,-71.3,29640 +01853,"PO BOX",0,Lowell,,,MA,"Middlesex County",America/New_York,351,NA,US,42.63,-71.32,1641 +01854,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,978,NA,US,42.65,-71.35,20230 +01860,STANDARD,0,Merrimac,,,MA,"Essex County",America/New_York,978,NA,US,42.83,-71,6300 +01862,STANDARD,0,"North Billerica","N Billerica",,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.58,-71.3,9640 +01863,STANDARD,0,"North Chelmsford","N Chelmsford",,MA,"Middlesex County",America/New_York,,NA,US,42.63,-71.39,8700 +01864,STANDARD,0,"North Reading",,"N Reading",MA,"Middlesex County",America/New_York,978,NA,US,42.58,-71.08,15130 +01865,"PO BOX",0,"Nutting Lake",,"Nuttings Lake",MA,"Middlesex County",America/New_York,,NA,US,42.54,-71.25,397 +01866,"PO BOX",0,Pinehurst,,,MA,"Middlesex County",America/New_York,,NA,US,42.53,-71.23,178 +01867,STANDARD,0,Reading,,,MA,"Middlesex County",America/New_York,781,NA,US,42.53,-71.1,24830 +01876,STANDARD,0,Tewksbury,,,MA,"Middlesex County",America/New_York,,NA,US,42.61,-71.23,28800 +01879,STANDARD,0,Tyngsboro,,Tyngsborough,MA,"Middlesex County",America/New_York,978,NA,US,42.68,-71.41,11800 +01880,STANDARD,0,Wakefield,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.5,-71.06,25390 +01885,"PO BOX",0,"West Boxford",,,MA,"Essex County",America/New_York,,NA,US,42.67,-71.03,331 +01886,STANDARD,0,Westford,,"Forge Village, Nabnasset",MA,"Middlesex County",America/New_York,"508,978",NA,US,42.58,-71.43,24610 +01887,STANDARD,0,Wilmington,,,MA,"Middlesex County",America/New_York,978,NA,US,42.55,-71.16,22600 +01888,"PO BOX",0,Woburn,,,MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,242 +01889,UNIQUE,0,"North Reading",,"Massachusetts District, N Reading",MA,"Middlesex County",America/New_York,351,NA,US,42.56,-71.06,0 +01890,STANDARD,0,Winchester,,,MA,"Middlesex County",America/New_York,781,NA,US,42.45,-71.14,22370 +01899,UNIQUE,0,Andover,,"Bar Coded Irs",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,0 +01901,STANDARD,0,Lynn,,,MA,"Essex County",America/New_York,"339,781",NA,US,42.46,-70.95,1680 +01902,STANDARD,0,Lynn,,,MA,"Essex County",America/New_York,"339,781",NA,US,42.47,-70.94,41340 +01903,"PO BOX",0,Lynn,,,MA,"Essex County",America/New_York,339,NA,US,42.47,-70.96,1107 +01904,STANDARD,0,Lynn,"East Lynn",,MA,"Essex County",America/New_York,"508,978",NA,US,42.47,-70.96,18870 +01905,STANDARD,0,Lynn,"West Lynn",,MA,"Essex County",America/New_York,"617,339,781",NA,US,42.47,-70.98,24070 +01906,STANDARD,0,Saugus,,,MA,"Essex County",America/New_York,"339,617,781",NA,US,42.46,-71.01,25750 +01907,STANDARD,0,Swampscott,,,MA,"Essex County",America/New_York,,NA,US,42.47,-70.91,14120 +01908,STANDARD,0,Nahant,,,MA,"Essex County",America/New_York,,NA,US,42.43,-70.93,3160 +01910,UNIQUE,0,Lynn,,"General Elec Co",MA,"Essex County",America/New_York,339,NA,US,42.47,-70.96,0 +01913,STANDARD,0,Amesbury,,,MA,"Essex County",America/New_York,978,NA,US,42.85,-70.92,15210 +01915,STANDARD,0,Beverly,,"Beverly Farms",MA,"Essex County",America/New_York,"508,978",NA,US,42.57,-70.87,35240 +01921,STANDARD,0,Boxford,,,MA,"Essex County",America/New_York,,NA,US,42.67,-70.98,8150 +01922,STANDARD,0,Byfield,Newbury,,MA,"Essex County",America/New_York,,NA,US,42.75,-70.93,3040 +01923,STANDARD,0,Danvers,,,MA,"Essex County",America/New_York,"351,978",NA,US,42.57,-70.95,26050 +01929,STANDARD,0,Essex,,,MA,"Essex County",America/New_York,978,NA,US,42.63,-70.77,3380 +01930,STANDARD,0,Gloucester,,Magnolia,MA,"Essex County",America/New_York,"508,978",NA,US,42.62,-70.66,25740 +01931,"PO BOX",0,Gloucester,,,MA,"Essex County",America/New_York,351,NA,US,42.62,-70.66,554 +01936,"PO BOX",0,Hamilton,,,MA,"Essex County",America/New_York,,NA,US,42.61,-70.86,361 +01937,"PO BOX",0,Hathorne,,,MA,"Essex County",America/New_York,,NA,US,42.59,-70.98,375 +01938,STANDARD,0,Ipswich,,,MA,"Essex County",America/New_York,978,NA,US,42.67,-70.83,12880 +01940,STANDARD,0,Lynnfield,,"South Lynnfield",MA,"Essex County",America/New_York,781,NA,US,42.53,-71.04,13070 +01944,STANDARD,0,Manchester,"Manchester By The Sea",,MA,"Essex County",America/New_York,"508,978",NA,US,42.56,-70.76,5070 +01945,STANDARD,0,Marblehead,,Mhead,MA,"Essex County",America/New_York,781,NA,US,42.5,-70.85,20130 +01949,STANDARD,0,Middleton,,,MA,"Essex County",America/New_York,,NA,US,42.6,-71.01,8340 +01950,STANDARD,0,Newburyport,,"Plum Island",MA,"Essex County",America/New_York,978,NA,US,42.81,-70.88,16930 +01951,STANDARD,0,Newbury,Newburyport,"Plum Island",MA,"Essex County",America/New_York,978,NA,US,42.77,-70.85,3400 +01952,STANDARD,0,Salisbury,"Salisbury Bch, Salisbury Beach",,MA,"Essex County",America/New_York,,NA,US,42.83,-70.84,7780 +01960,STANDARD,0,Peabody,,"West Peabody",MA,"Essex County",America/New_York,"508,978",NA,US,42.53,-70.97,48300 +01961,"PO BOX",0,Peabody,,,MA,"Essex County",America/New_York,351,NA,US,42.53,-70.97,315 +01965,"PO BOX",0,"Prides Crossing","Prides Xing",,MA,"Essex County",America/New_York,351,NA,US,42.56,-70.86,428 +01966,STANDARD,0,Rockport,,"Pigeon Cove",MA,"Essex County",America/New_York,"508,351,978",NA,US,42.64,-70.61,6420 +01969,STANDARD,0,Rowley,,,MA,"Essex County",America/New_York,978,NA,US,42.72,-70.89,5980 +01970,STANDARD,0,Salem,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.51,-70.9,36430 +01971,"PO BOX",0,Salem,,,MA,"Essex County",America/New_York,351,NA,US,42.51,-70.89,356 +01982,STANDARD,0,"South Hamilton","S Hamilton",,MA,"Essex County",America/New_York,978,NA,US,42.62,-70.86,6970 +01983,STANDARD,0,Topsfield,,,MA,"Essex County",America/New_York,978,NA,US,42.63,-70.95,6330 +01984,STANDARD,0,Wenham,,,MA,"Essex County",America/New_York,,NA,US,42.6,-70.88,3670 +01985,STANDARD,0,"West Newbury",,,MA,"Essex County",America/New_York,978,NA,US,42.8,-71,4440 +02018,"PO BOX",0,Accord,Hingham,,MA,"Plymouth County",America/New_York,339,NA,US,42.17,-70.88,123 +02019,STANDARD,0,Bellingham,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.09,-71.47,15950 +02020,"PO BOX",0,"Brant Rock",,,MA,"Plymouth County",America/New_York,,NA,US,42.08,-70.64,759 +02021,STANDARD,0,Canton,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.15,-71.13,22440 +02025,STANDARD,0,Cohasset,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.23,-70.8,8160 +02026,STANDARD,0,Dedham,,,MA,"Norfolk County",America/New_York,"617,781",NA,US,42.24,-71.17,23360 +02027,"PO BOX",0,Dedham,,,MA,"Norfolk County",America/New_York,339,NA,US,42.24,-71.17,183 +02030,STANDARD,0,Dover,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.24,-71.27,5950 +02031,STANDARD,1,"East Mansfield","Mansfield, E Mansfield",,MA,"Bristol County",America/New_York,508,NA,US,42.02,-71.17,0 +02032,STANDARD,0,"East Walpole",,"E Walpole",MA,"Norfolk County",America/New_York,"508,774,339,781",NA,US,42.15,-71.21,4680 +02035,STANDARD,0,Foxboro,Foxborough,,MA,"Norfolk County",America/New_York,"781,508,774",NA,US,42.06,-71.24,17420 +02038,STANDARD,0,Franklin,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.08,-71.38,31300 +02040,"PO BOX",0,Greenbush,Scituate,,MA,"Plymouth County",America/New_York,339,NA,US,42.19,-70.76,122 +02041,"PO BOX",0,"Green Harbor",,,MA,"Plymouth County",America/New_York,,NA,US,42.1,-70.71,843 +02043,STANDARD,0,Hingham,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.23,-70.88,23520 +02044,UNIQUE,0,Hingham,,"Shared Firm Zip Code",MA,"Plymouth County",America/New_York,339,NA,US,42.23,-70.88,0 +02045,STANDARD,0,Hull,,"Nantasket Beach",MA,"Plymouth County",America/New_York,781,NA,US,42.3,-70.9,9010 +02047,"PO BOX",0,Humarock,,,MA,"Plymouth County",America/New_York,339,NA,US,42.13,-70.69,649 +02048,STANDARD,0,Mansfield,,,MA,"Bristol County",America/New_York,"508,774",NA,US,42.02,-71.21,22930 +02050,STANDARD,0,Marshfield,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.09,-70.7,22610 +02051,"PO BOX",0,"Marshfield Hills","Marshfld Hls",,MA,"Plymouth County",America/New_York,,NA,US,42.15,-70.73,752 +02052,STANDARD,0,Medfield,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.18,-71.3,12950 +02053,STANDARD,0,Medway,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.16,-71.43,12770 +02054,STANDARD,0,Millis,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.16,-71.35,8050 +02055,"PO BOX",0,Minot,Scituate,,MA,"Plymouth County",America/New_York,339,NA,US,42.19,-70.76,77 +02056,STANDARD,0,Norfolk,,,MA,"Norfolk County",America/New_York,,NA,US,42.11,-71.31,10160 +02059,"PO BOX",0,"North Marshfield","N Marshfield",,MA,"Plymouth County",America/New_York,,NA,US,42.1,-70.71,363 +02060,"PO BOX",0,"North Scituate","N Scituate, Scituate",,MA,"Plymouth County",America/New_York,339,NA,US,42.21,-70.76,237 +02061,STANDARD,0,Norwell,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.16,-70.78,11240 +02062,STANDARD,0,Norwood,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.18,-71.19,27960 +02065,"PO BOX",0,"Ocean Bluff",Marshfield,,MA,"Plymouth County",America/New_York,,NA,US,42.1,-70.71,447 +02066,STANDARD,0,Scituate,,"Scituate Center, Scituate Harbor",MA,"Plymouth County",America/New_York,"339,781",NA,US,42.18,-70.73,17810 +02067,STANDARD,0,Sharon,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.11,-71.18,18280 +02070,"PO BOX",0,Sheldonville,,,MA,"Norfolk County",America/New_York,,NA,US,42.05,-71.35,182 +02071,STANDARD,0,"South Walpole",,"S Walpole",MA,"Norfolk County",America/New_York,"508,774,781",NA,US,42.1,-71.27,1010 +02072,STANDARD,0,Stoughton,,,MA,"Norfolk County",America/New_York,781,NA,US,42.11,-71.1,26430 +02081,STANDARD,0,Walpole,,,MA,"Norfolk County",America/New_York,"781,508,774",NA,US,42.13,-71.24,19030 +02090,STANDARD,0,Westwood,,Islington,MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.21,-71.21,15880 +02093,STANDARD,0,Wrentham,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.06,-71.33,11410 +02108,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,857,339",NA,US,42.36,-71.06,3770 +02109,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.37,-71.05,3820 +02110,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"508,774,617,781,857,978",NA,US,42.36,-71.05,3660 +02111,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,781,978,339,857",NA,US,42.35,-71.06,5950 +02112,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,574 +02113,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"781,617",NA,US,42.37,-71.06,5090 +02114,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,339,857",NA,US,42.36,-71.07,10610 +02115,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.34,-71.1,9770 +02116,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"508,617,781,978,857",NA,US,42.35,-71.08,14920 +02117,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,443 +02118,STANDARD,0,Boston,Roxbury,,MA,"Suffolk County",America/New_York,"857,617",NA,US,42.34,-71.07,21420 +02119,STANDARD,0,Roxbury,Boston,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.32,-71.09,22500 +02120,STANDARD,0,"Roxbury Crossing","Boston, Mission Hill, Roxbury, Roxbury Xing",,MA,"Suffolk County",America/New_York,"857,617",NA,US,42.33,-71.1,7340 +02121,STANDARD,0,Dorchester,"Boston, Grove Hall",,MA,"Suffolk County",America/New_York,"617,781,857",NA,US,42.31,-71.09,23330 +02122,STANDARD,0,Dorchester,Boston,,MA,"Suffolk County",America/New_York,"781,617,857",NA,US,42.29,-71.04,20730 +02123,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,449 +02124,STANDARD,0,"Dorchester Center","Boston, Dorchester, Dorchestr Ctr",,MA,"Suffolk County",America/New_York,617,NA,US,42.29,-71.07,43660 +02125,STANDARD,0,Dorchester,"Boston, Uphams Corner",,MA,"Suffolk County",America/New_York,"617,857,781",NA,US,42.32,-71.06,27640 +02126,STANDARD,0,Mattapan,Boston,"Hyde Park",MA,"Suffolk County",America/New_York,617,NA,US,42.27,-71.1,20480 +02127,STANDARD,0,"South Boston",Boston,"S Boston",MA,"Suffolk County",America/New_York,"617,774,781,978,857",NA,US,42.33,-71.04,29350 +02128,STANDARD,0,"East Boston",Boston,"E Boston",MA,"Suffolk County",America/New_York,"617,857",NA,US,42.36,-71.01,33980 +02129,STANDARD,0,Charlestown,Boston,,MA,"Suffolk County",America/New_York,"857,617,781",NA,US,42.38,-71.06,16480 +02130,STANDARD,0,"Jamaica Plain",Boston,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.3,-71.11,30960 +02131,STANDARD,0,Roslindale,Boston,,MA,"Suffolk County",America/New_York,617,NA,US,42.28,-71.13,27520 +02132,STANDARD,0,"West Roxbury",Boston,"W Roxbury",MA,"Suffolk County",America/New_York,"617,781",NA,US,42.28,-71.16,25120 +02133,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"339,508,781,857,978,617",NA,US,42.35,-71.06,0 +02134,STANDARD,0,Allston,Boston,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.35,-71.13,12700 +02135,STANDARD,0,Brighton,Boston,"Jamaica Plain",MA,"Suffolk County",America/New_York,"617,857",NA,US,42.35,-71.15,30670 +02136,STANDARD,0,"Hyde Park","Boston, Readville",,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.26,-71.13,32270 +02137,"PO BOX",0,Readville,"Boston, Hyde Park",,MA,"Suffolk County",America/New_York,617,NA,US,42.25,-71.12,180 +02138,STANDARD,0,Cambridge,,,MA,"Middlesex County",America/New_York,"508,617,857",NA,US,42.38,-71.14,22070 +02139,STANDARD,0,Cambridge,,"Cambridgeport, Inman Square",MA,"Middlesex County",America/New_York,"339,781,978,508,617,857",NA,US,42.37,-71.11,26870 +02140,STANDARD,0,Cambridge,"N Cambridge, North Cambridge","Porter Square",MA,"Middlesex County",America/New_York,617,NA,US,42.39,-71.13,17780 +02141,STANDARD,0,Cambridge,"E Cambridge, East Cambridge",,MA,"Middlesex County",America/New_York,"339,617,508,781,857,978",NA,US,42.37,-71.08,10580 +02142,STANDARD,0,Cambridge,,"Kendall Square",MA,"Middlesex County",America/New_York,"508,781,857,978,339,617",NA,US,42.36,-71.08,2550 +02143,STANDARD,0,Somerville,,"E Somerville, East Somerville",MA,"Middlesex County",America/New_York,"617,857",NA,US,42.38,-71.1,20810 +02144,STANDARD,0,Somerville,"W Somerville, West Somerville",,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.4,-71.12,19420 +02145,STANDARD,0,Somerville,"Winter Hill",,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.39,-71.1,22130 +02148,STANDARD,0,Malden,,,MA,"Middlesex County",America/New_York,"857,339,617,781",NA,US,42.43,-71.05,54910 +02149,STANDARD,0,Everett,,,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.4,-71.05,39200 +02150,STANDARD,0,Chelsea,,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.39,-71.03,32690 +02151,STANDARD,0,Revere,,"Beachmont, Revere Beach",MA,"Suffolk County",America/New_York,"617,339,781",NA,US,42.41,-70.99,49600 +02152,STANDARD,0,Winthrop,,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.37,-70.98,16070 +02153,"PO BOX",0,Medford,"Tufts Univ, Tufts University",,MA,"Middlesex County",America/New_York,617,NA,US,42.42,-71.1,0 +02155,STANDARD,0,Medford,,,MA,"Middlesex County",America/New_York,"617,339,781",NA,US,42.42,-71.1,49560 +02156,"PO BOX",0,"West Medford",,"W Medford",MA,"Middlesex County",America/New_York,339,NA,US,42.42,-71.13,20 +02163,STANDARD,0,Boston,Cambridge,"Soldiers Field",MA,"Suffolk County",America/New_York,"339,781,978,508,617,857",NA,US,42.37,-71.12,520 +02169,STANDARD,0,Quincy,,"Houghs Neck, Quincy Center, South Quincy, West Quincy",MA,"Norfolk County",America/New_York,"617,857",NA,US,42.26,-71,50500 +02170,STANDARD,0,Quincy,Wollaston,,MA,"Norfolk County",America/New_York,"617,857",NA,US,42.27,-71.02,18130 +02171,STANDARD,0,Quincy,"North Quincy, Squantum","Marina Bay, N Quincy, No Quincy, Norfolk Downs",MA,"Norfolk County",America/New_York,"617,857",NA,US,42.29,-71.02,16970 +02176,STANDARD,0,Melrose,,,MA,"Middlesex County",America/New_York,"339,617,781",NA,US,42.45,-71.05,27490 +02180,STANDARD,0,Stoneham,,,MA,"Middlesex County",America/New_York,"617,781",NA,US,42.47,-71.09,21610 +02184,STANDARD,0,Braintree,,"Braintree Highlands, Braintree Hld, E Braintree, East Braintree",MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.2,-71,36360 +02185,"PO BOX",0,Braintree,,,MA,"Norfolk County",America/New_York,339,NA,US,42.2,-71,257 +02186,STANDARD,0,Milton,,"East Milton",MA,"Norfolk County",America/New_York,617,NA,US,42.24,-71.08,26500 +02187,"PO BOX",0,"Milton Village","Milton Vlg",,MA,"Norfolk County",America/New_York,617,NA,US,42.26,-71.08,63 +02188,STANDARD,0,Weymouth,,"Weymouth Lndg",MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.2,-70.96,13550 +02189,STANDARD,0,"East Weymouth",Weymouth,,MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.2,-70.94,13410 +02190,STANDARD,0,"South Weymouth","S Weymouth, Weymouth","Weymouth Nas",MA,"Norfolk County",America/New_York,,NA,US,42.17,-70.95,17100 +02191,STANDARD,0,"North Weymouth","N Weymouth, Weymouth",,MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.24,-70.94,7630 +02196,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,793 +02199,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"339,857,978,508,617,781",NA,US,42.35,-71.08,1240 +02201,UNIQUE,0,Boston,,"Boston City Hall",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,15 +02203,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,857,NA,US,42.36,-71.06,0 +02204,UNIQUE,0,Boston,,"Mass Tax, Massachusetts Tax",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02205,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,1678 +02206,UNIQUE,0,Boston,,"State Street Corporation",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02207,UNIQUE,1,Boston,,"Bell Atlantic Telephone Co",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.05,0 +02210,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,774,781,857,978",NA,US,42.35,-71.04,4340 +02211,UNIQUE,0,Boston,,"Bank Of America",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02212,UNIQUE,0,Boston,,"Bank Of America",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02215,STANDARD,0,Boston,,"Boston University, Kenmore",MA,"Suffolk County",America/New_York,"617,857",NA,US,42.35,-71.1,7510 +02216,UNIQUE,1,Boston,,"John Hancock P O Box 192",MA,"Suffolk County",America/New_York,617,NA,US,42.34,-71.07,17 +02217,UNIQUE,0,Boston,,"John Hancock P O Box 505",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02222,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"857,617,781",NA,US,42.35,-71.06,0 +02228,"PO BOX",1,"East Boston",Boston,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,93 +02238,"PO BOX",0,Cambridge,"Harvard Sq, Harvard Square",,MA,"Middlesex County",America/New_York,617,NA,US,42.37,-71.11,534 +02239,UNIQUE,1,Cambridge,"Com/energy Services",,MA,"Middlesex County",America/New_York,617,NA,US,42.36,-71.1,0 +02241,UNIQUE,0,Boston,,"Bank Of America, Fleet Bank Boston",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02266,UNIQUE,1,Boston,,"Boston Financial Data Servic",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02269,"PO BOX",0,Quincy,,,MA,"Norfolk County",America/New_York,617,NA,US,42.26,-71,478 +02283,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,"617,781,978,508,857",NA,US,42.35,-71.06,0 +02284,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,"508,617,781,857,978",NA,US,42.35,-71.06,0 +02293,UNIQUE,0,Boston,,"Fidelity Service Company",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02295,UNIQUE,1,Boston,,"John Hancock Mutual Ins",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02297,UNIQUE,0,Boston,,"Cash Management",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02298,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.34,-71.05,0 +02301,STANDARD,0,Brockton,,,MA,"Plymouth County",America/New_York,"508,774,781",NA,US,42.08,-71.02,57670 +02302,STANDARD,0,Brockton,,,MA,"Plymouth County",America/New_York,"508,774,781",NA,US,42.09,-71,31920 +02303,"PO BOX",0,Brockton,,,MA,"Plymouth County",America/New_York,508,NA,US,42.08,-71.02,1583 +02304,"PO BOX",0,Brockton,,,MA,"Plymouth County",America/New_York,508,NA,US,42.08,-71.02,323 +02305,"PO BOX",0,Brockton,,,MA,"Plymouth County",America/New_York,508,NA,US,42.08,-71.02,464 +02322,STANDARD,0,Avon,,,MA,"Norfolk County",America/New_York,,NA,US,42.13,-71.05,4480 +02324,STANDARD,0,Bridgewater,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.98,-70.97,22530 +02325,UNIQUE,0,Bridgewater,,"Bridgewater State College",MA,"Plymouth County",America/New_York,508,NA,US,41.98,-70.97,10 +02327,"PO BOX",0,Bryantville,,,MA,"Plymouth County",America/New_York,,NA,US,42.06,-70.8,613 +02330,STANDARD,0,Carver,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.88,-70.76,10460 +02331,"PO BOX",0,Duxbury,,,MA,"Plymouth County",America/New_York,339,NA,US,42.04,-70.67,1883 +02332,STANDARD,0,Duxbury,,,MA,"Plymouth County",America/New_York,781,NA,US,42.04,-70.67,14590 +02333,STANDARD,0,"East Bridgewater","E Bridgewater, E Bridgewtr",,MA,"Plymouth County",America/New_York,"508,774",NA,US,42.03,-70.95,13580 +02334,"PO BOX",0,Easton,,,MA,"Bristol County",America/New_York,508,NA,US,42.03,-71.1,375 +02337,"PO BOX",0,Elmwood,,,MA,"Plymouth County",America/New_York,,NA,US,42.01,-70.96,119 +02338,STANDARD,0,Halifax,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,41.98,-70.86,7450 +02339,STANDARD,0,Hanover,,"Assinippi, West Hanover",MA,"Plymouth County",America/New_York,781,NA,US,42.11,-70.81,14590 +02340,UNIQUE,1,Hanover,,Wearguard,MA,"Plymouth County",America/New_York,339,NA,US,42.11,-70.81,0 +02341,STANDARD,0,Hanson,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.06,-70.85,9950 +02343,STANDARD,0,Holbrook,,,MA,"Norfolk County",America/New_York,,NA,US,42.14,-71,10240 +02344,UNIQUE,0,Middleboro,Middleborough,"Aetna Life & Casualty Co",MA,"Plymouth County",America/New_York,508,NA,US,41.86,-70.9,0 +02345,"PO BOX",0,Manomet,,,MA,"Plymouth County",America/New_York,,NA,US,41.92,-70.56,1470 +02346,STANDARD,0,Middleboro,,Middleborough,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.86,-70.9,21890 +02347,STANDARD,0,Lakeville,,,MA,"Plymouth County",America/New_York,774,NA,US,41.85,-70.95,10840 +02348,UNIQUE,0,Lakeville,"Middleboro, Middleborough",Talbots,MA,"Plymouth County",America/New_York,508,NA,US,41.86,-70.9,0 +02349,UNIQUE,0,Middleboro,Middleborough,"Ocean Spray",MA,"Plymouth County",America/New_York,508,NA,US,41.86,-70.9,0 +02350,"PO BOX",0,Monponsett,,,MA,"Plymouth County",America/New_York,,NA,US,42.02,-70.84,494 +02351,STANDARD,0,Abington,,"North Abington",MA,"Plymouth County",America/New_York,,NA,US,42.11,-70.95,15540 +02355,"PO BOX",0,"North Carver",,"East Carver",MA,"Plymouth County",America/New_York,,NA,US,41.91,-70.79,409 +02356,STANDARD,0,"North Easton",,"N Easton, No Easton",MA,"Bristol County",America/New_York,"508,774",NA,US,42.05,-71.1,12020 +02357,UNIQUE,0,"North Easton","Stonehill Clg","Stonehill Coll, Stonehill College",MA,"Bristol County",America/New_York,508,NA,US,42.06,-71.08,14 +02358,"PO BOX",0,"North Pembroke","N Pembroke",,MA,"Plymouth County",America/New_York,,NA,US,42.09,-70.78,282 +02359,STANDARD,0,Pembroke,,"East Pembroke",MA,"Plymouth County",America/New_York,"339,781",NA,US,42.06,-70.8,16960 +02360,STANDARD,0,Plymouth,,Cedarville,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.95,-70.66,52730 +02361,"PO BOX",0,Plymouth,,,MA,"Plymouth County",America/New_York,508,NA,US,41.95,-70.66,252 +02362,"PO BOX",0,Plymouth,,,MA,"Plymouth County",America/New_York,508,NA,US,41.95,-70.66,981 +02364,STANDARD,0,Kingston,,"Rocky Nook, Silver Lake",MA,"Plymouth County",America/New_York,"339,617,781",NA,US,41.99,-70.71,12540 +02366,"PO BOX",0,"South Carver",,,MA,"Plymouth County",America/New_York,,NA,US,41.85,-70.66,385 +02367,STANDARD,0,Plympton,,,MA,"Plymouth County",America/New_York,,NA,US,41.95,-70.81,2840 +02368,STANDARD,0,Randolph,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.17,-71.05,31550 +02370,STANDARD,0,Rockland,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.13,-70.91,16180 +02375,STANDARD,0,"South Easton",,"S Easton, So Easton",MA,"Bristol County",America/New_York,"508,774",NA,US,42.03,-71.1,9890 +02379,STANDARD,0,"West Bridgewater","W Bridgewater",,MA,"Plymouth County",America/New_York,508,NA,US,42.01,-71,7030 +02381,"PO BOX",0,"White Horse Beach","Wht Horse Bch",,MA,"Plymouth County",America/New_York,,NA,US,41.93,-70.59,383 +02382,STANDARD,0,Whitman,,,MA,"Plymouth County",America/New_York,781,NA,US,42.08,-70.93,13990 +02420,STANDARD,0,Lexington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.46,-71.22,15380 +02421,STANDARD,0,Lexington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.44,-71.23,17920 +02445,STANDARD,0,Brookline,,,MA,"Norfolk County",America/New_York,"617,857",NA,US,42.32,-71.14,17750 +02446,STANDARD,0,Brookline,,,MA,"Norfolk County",America/New_York,"617,857",NA,US,42.34,-71.12,22940 +02447,"PO BOX",0,"Brookline Village","Brookline Vlg",,MA,"Norfolk County",America/New_York,617,NA,US,42.33,-71.13,120 +02451,STANDARD,0,Waltham,"North Waltham",,MA,"Middlesex County",America/New_York,"339,617,781,508,978",NA,US,42.38,-71.24,16060 +02452,STANDARD,0,Waltham,"North Waltham",,MA,"Middlesex County",America/New_York,"508,978,339,617,781",NA,US,42.39,-71.22,10680 +02453,STANDARD,0,Waltham,"South Waltham",,MA,"Middlesex County",America/New_York,"508,978,339,617,781",NA,US,42.37,-71.24,23010 +02454,"PO BOX",0,Waltham,,,MA,"Middlesex County",America/New_York,339,NA,US,42.38,-71.24,543 +02455,"PO BOX",0,"North Waltham",,,MA,"Middlesex County",America/New_York,339,NA,US,42.39,-71.22,81 +02456,"PO BOX",0,"New Town",,Newton,MA,"Middlesex County",America/New_York,617,NA,US,42.33,-71.2,28 +02457,"PO BOX",0,"Babson Park",,,MA,"Norfolk County",America/New_York,339,NA,US,42.3,-71.27,105 +02458,STANDARD,0,Newton,Newtonville,Riverside,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.35,-71.19,11450 +02459,STANDARD,0,"Newton Center","Newton, Newton Centre","Newton Cntr, Newton Ctr",MA,"Middlesex County",America/New_York,617,NA,US,42.31,-71.19,17470 +02460,STANDARD,0,Newtonville,Newton,,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.35,-71.2,8840 +02461,STANDARD,0,"Newton Highlands","Newton, Newton Hlds",,MA,"Middlesex County",America/New_York,617,NA,US,42.32,-71.21,7020 +02462,STANDARD,0,"Newton Lower Falls","Newton, Newton L F, Newtonville",,MA,"Middlesex County",America/New_York,617,NA,US,42.33,-71.26,1310 +02464,STANDARD,0,"Newton Upper Falls","Newton, Newton U F",,MA,"Middlesex County",America/New_York,617,NA,US,42.31,-71.22,2920 +02465,STANDARD,0,"West Newton",Newton,"W Newton",MA,"Middlesex County",America/New_York,"617,857",NA,US,42.35,-71.22,11680 +02466,STANDARD,0,Auburndale,,Newton,MA,"Middlesex County",America/New_York,617,NA,US,42.34,-71.24,6530 +02467,STANDARD,0,"Chestnut Hill","Boston Clg, Boston College",Newton,MA,"Norfolk County",America/New_York,"857,617",NA,US,42.31,-71.16,14500 +02468,STANDARD,0,Waban,,Newton,MA,"Middlesex County",America/New_York,"617,781",NA,US,42.32,-71.23,5630 +02471,"PO BOX",0,Watertown,,,MA,"Middlesex County",America/New_York,617,NA,US,42.36,-71.17,273 +02472,STANDARD,0,Watertown,"E Watertown, East Watertown",,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.37,-71.18,30230 +02474,STANDARD,0,Arlington,"E Arlington, East Arlington",,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.42,-71.16,26310 +02475,"PO BOX",0,"Arlington Heights","Arlington Hts",,MA,"Middlesex County",America/New_York,339,NA,US,42.41,-71.18,19 +02476,STANDARD,0,Arlington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.41,-71.16,16460 +02477,UNIQUE,0,Watertown,,"Field Premium Inc",MA,"Middlesex County",America/New_York,617,NA,US,42.36,-71.17,0 +02478,STANDARD,0,Belmont,,,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.39,-71.18,25340 +02479,"PO BOX",0,Waverley,,,MA,"Middlesex County",America/New_York,,NA,US,42.39,-71.17,39 +02481,STANDARD,0,"Wellesley Hills","Wellesley, Wellesley Hls","Wellesley Fms",MA,"Norfolk County",America/New_York,"508,774,339,781",NA,US,42.31,-71.27,14710 +02482,STANDARD,0,Wellesley,,,MA,"Norfolk County",America/New_York,"339,781,508,774",NA,US,42.29,-71.3,10310 +02492,STANDARD,0,Needham,,"Needham Jct",MA,"Norfolk County",America/New_York,"508,617,774,857,339,781",NA,US,42.28,-71.24,20810 +02493,STANDARD,0,Weston,,"Cherry Brook, Hastings, Kendal Green, Silver Hill, Stony Brook",MA,"Middlesex County",America/New_York,,NA,US,42.36,-71.3,10490 +02494,STANDARD,0,"Needham Heights","Needham, Needham Hgts",,MA,"Norfolk County",America/New_York,"339,781,508,617,774,857",NA,US,42.3,-71.23,10100 +02495,"PO BOX",0,Nonantum,Newton,,MA,"Middlesex County",America/New_York,617,NA,US,42.33,-71.2,30 +02532,STANDARD,0,"Buzzards Bay",Bourne,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.75,-70.61,10210 +02534,"PO BOX",0,Cataumet,,,MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.61,916 +02535,STANDARD,0,Chilmark,"Aquinnah, Gay Head",,MA,"Dukes County",America/New_York,508,NA,US,41.34,-70.74,1190 +02536,STANDARD,0,"East Falmouth","E Falmouth, Ea Falmouth, Hatchville, Teaticket, Waquoit",,MA,"Barnstable County",America/New_York,508,NA,US,41.56,-70.55,18110 +02537,STANDARD,0,"East Sandwich","E Sandwich",,MA,"Barnstable County",America/New_York,508,NA,US,41.73,-70.43,5730 +02538,STANDARD,0,"East Wareham","E Wareham",,MA,"Plymouth County",America/New_York,774,NA,US,41.78,-70.65,4140 +02539,STANDARD,0,Edgartown,,"Chappaquiddick Island",MA,"Dukes County",America/New_York,"508,774",NA,US,41.38,-70.53,5020 +02540,STANDARD,0,Falmouth,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.56,-70.62,6280 +02541,"PO BOX",0,Falmouth,,,MA,"Barnstable County",America/New_York,508,NA,US,41.54,-70.6,594 +02542,STANDARD,0,"Buzzards Bay","Otis Angb","Otis AFB, Otis Air National Guard, Otis Ang",MA,"Barnstable County",America/New_York,"508,774",NA,US,41.71,-70.55,500 +02543,STANDARD,0,"Woods Hole",Falmouth,Woodshole,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.52,-70.66,700 +02552,"PO BOX",0,Menemsha,,,MA,"Dukes County",America/New_York,,NA,US,41.34,-70.73,46 +02553,"PO BOX",0,"Monument Beach","Monument Bch",,MA,"Barnstable County",America/New_York,508,NA,US,41.71,-70.62,1171 +02554,STANDARD,0,Nantucket,,,MA,"Nantucket County",America/New_York,"508,774",NA,US,41.27,-70.1,10410 +02556,STANDARD,0,"North Falmouth","N Falmouth",,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.64,-70.63,3280 +02557,"PO BOX",0,"Oak Bluffs",,,MA,"Dukes County",America/New_York,,NA,US,41.45,-70.56,2660 +02558,"PO BOX",0,Onset,,,MA,"Plymouth County",America/New_York,508,NA,US,41.74,-70.66,2189 +02559,STANDARD,0,Pocasset,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.69,-70.63,2930 +02561,"PO BOX",0,Sagamore,,,MA,"Barnstable County",America/New_York,508,NA,US,41.77,-70.53,884 +02562,STANDARD,0,"Sagamore Beach","Sagamore Bch",,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.79,-70.53,3090 +02563,STANDARD,0,Sandwich,,,MA,"Barnstable County",America/New_York,"774,508",NA,US,41.75,-70.49,9720 +02564,"PO BOX",0,Siasconset,Nantucket,Sconset,MA,"Nantucket County",America/New_York,508,NA,US,41.27,-70,423 +02565,"PO BOX",1,"Silver Beach","N Falmouth, North Falmouth",,MA,"Barnstable County",America/New_York,508,NA,US,41.63,-70.64,0 +02568,STANDARD,0,"Vineyard Haven","Vineyard Hvn","North Tisbury, Tisbury",MA,"Dukes County",America/New_York,"508,774",NA,US,41.45,-70.6,7250 +02571,STANDARD,0,Wareham,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.76,-70.71,9350 +02573,"PO BOX",1,"West Chop","Vineyard Haven, Vineyard Hvn",Tisbury,MA,"Dukes County",America/New_York,,NA,US,41.45,-70.6,0 +02574,"PO BOX",0,"West Falmouth","W Falmouth",,MA,"Barnstable County",America/New_York,508,NA,US,41.6,-70.64,1104 +02575,"PO BOX",0,"West Tisbury",,Tisbury,MA,"Dukes County",America/New_York,,NA,US,41.38,-70.67,1679 +02576,STANDARD,0,"West Wareham",,"W Wareham",MA,"Plymouth County",America/New_York,"508,774",NA,US,41.78,-70.75,3650 +02584,"PO BOX",0,Nantucket,,,MA,"Nantucket County",America/New_York,508,NA,US,41.26,-70.01,1904 +02601,STANDARD,0,Hyannis,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.65,-70.29,13830 +02630,STANDARD,0,Barnstable,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.7,-70.3,1930 +02631,STANDARD,0,Brewster,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.76,-70.08,9040 +02632,STANDARD,0,Centerville,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.66,-70.34,10100 +02633,STANDARD,0,Chatham,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.67,-69.96,3620 +02634,"PO BOX",0,Centerville,,,MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.34,19 +02635,STANDARD,0,Cotuit,,,MA,"Barnstable County",America/New_York,508,NA,US,41.62,-70.44,3350 +02636,STANDARD,1,Centerville,,,MA,"Barnstable County",America/New_York,508,NA,US,41.64,-70.34,0 +02637,"PO BOX",0,Cummaquid,,,MA,"Barnstable County",America/New_York,508,NA,US,41.71,-70.27,564 +02638,STANDARD,0,Dennis,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.73,-70.2,2800 +02639,STANDARD,0,"Dennis Port",Dennisport,,MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.13,2790 +02641,"PO BOX",0,"East Dennis",,"E Dennis",MA,"Barnstable County",America/New_York,508,NA,US,41.75,-70.15,1542 +02642,STANDARD,0,Eastham,,,MA,"Barnstable County",America/New_York,508,NA,US,41.83,-69.96,3680 +02643,"PO BOX",0,"East Orleans",,,MA,"Barnstable County",America/New_York,508,NA,US,41.8,-69.94,1113 +02644,STANDARD,0,Forestdale,,,MA,"Barnstable County",America/New_York,508,NA,US,41.68,-70.5,4190 +02645,STANDARD,0,Harwich,"E Harwich, East Harwich",Hardwich,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.69,-70.07,9340 +02646,STANDARD,0,"Harwich Port",,Harwichport,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.07,1740 +02647,"PO BOX",0,"Hyannis Port",,,MA,"Barnstable County",America/New_York,508,NA,US,41.63,-70.31,393 +02648,STANDARD,0,"Marstons Mills","Marstons Mls",,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.4,7320 +02649,STANDARD,0,Mashpee,,"New Seabury, South Mashpee",MA,"Barnstable County",America/New_York,508,NA,US,41.65,-70.48,13810 +02650,STANDARD,0,"North Chatham",,"N Chatham",MA,"Barnstable County",America/New_York,508,NA,US,41.7,-69.95,820 +02651,"PO BOX",0,"North Eastham",,,MA,"Barnstable County",America/New_York,508,NA,US,41.87,-70,1610 +02652,"PO BOX",0,"North Truro",,,MA,"Barnstable County",America/New_York,508,NA,US,42.04,-70.09,766 +02653,STANDARD,0,Orleans,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.79,-70,4730 +02655,STANDARD,0,Osterville,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.62,-70.38,3330 +02657,STANDARD,0,Provincetown,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,42.06,-70.2,3250 +02659,STANDARD,0,"South Chatham",,,MA,"Barnstable County",America/New_York,508,NA,US,41.68,-70.02,1090 +02660,STANDARD,0,"South Dennis",,"S Dennis",MA,"Barnstable County",America/New_York,508,NA,US,41.7,-70.15,5650 +02661,"PO BOX",0,"South Harwich",,,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.04,365 +02662,"PO BOX",0,"South Orleans",,,MA,"Barnstable County",America/New_York,508,NA,US,41.75,-69.99,862 +02663,"PO BOX",0,"South Wellfleet","S Wellfleet",,MA,"Barnstable County",America/New_York,508,NA,US,41.89,-70.01,611 +02664,STANDARD,0,"South Yarmouth","Bass River, S Yarmouth","So Yarmouth",MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.2,8740 +02666,"PO BOX",0,Truro,,,MA,"Barnstable County",America/New_York,508,NA,US,42,-70.06,1057 +02667,STANDARD,0,Wellfleet,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.93,-70.03,2550 +02668,STANDARD,0,"West Barnstable","W Barnstable",,MA,"Barnstable County",America/New_York,508,NA,US,41.7,-70.37,3150 +02669,"PO BOX",0,"West Chatham",,,MA,"Barnstable County",America/New_York,508,NA,US,41.68,-69.99,812 +02670,STANDARD,0,"West Dennis",,"W Dennis",MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.16,1270 +02671,STANDARD,0,"West Harwich",,,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.11,1060 +02672,"PO BOX",0,"West Hyannisport","W Hyannisport",,MA,"Barnstable County",America/New_York,508,NA,US,41.64,-70.31,577 +02673,STANDARD,0,"West Yarmouth","W Yarmouth",,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.65,-70.24,7930 +02675,STANDARD,0,"Yarmouth Port",,Yarmouthport,MA,"Barnstable County",America/New_York,508,NA,US,41.7,-70.22,6170 +02702,STANDARD,0,Assonet,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.78,-71.06,4030 +02703,STANDARD,0,Attleboro,"S Attleboro, South Attleboro",,MA,"Bristol County",America/New_York,"508,774",NA,US,41.93,-71.29,41160 +02712,"PO BOX",0,Chartley,,,MA,"Bristol County",America/New_York,508,NA,US,41.97,-71.18,272 +02713,"PO BOX",0,Cuttyhunk,,,MA,"Dukes County",America/New_York,,NA,US,41.44,-70.9,32 +02714,"PO BOX",0,Dartmouth,,,MA,"Bristol County",America/New_York,508,NA,US,41.56,-71,47 +02715,STANDARD,0,Dighton,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.82,-71.16,3790 +02717,STANDARD,0,"East Freetown",,,MA,"Bristol County",America/New_York,508,NA,US,41.75,-70.97,4760 +02718,STANDARD,0,"East Taunton",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.87,-71.01,6480 +02719,STANDARD,0,Fairhaven,,,MA,"Bristol County",America/New_York,508,NA,US,41.63,-70.9,13970 +02720,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.73,-71.12,24700 +02721,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.68,-71.15,20650 +02722,"PO BOX",0,"Fall River",,,MA,"Bristol County",America/New_York,508,NA,US,41.71,-71.1,738 +02723,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.69,-71.13,11830 +02724,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,508,NA,US,41.68,-71.18,13340 +02725,STANDARD,0,Somerset,,,MA,"Bristol County",America/New_York,508,NA,US,41.72,-71.19,2330 +02726,STANDARD,0,Somerset,,,MA,"Bristol County",America/New_York,508,NA,US,41.73,-71.15,14570 +02738,STANDARD,0,Marion,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.7,-70.76,5010 +02739,STANDARD,0,Mattapoisett,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.66,-70.8,6240 +02740,STANDARD,0,"New Bedford",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.64,-70.94,33850 +02741,"PO BOX",0,"New Bedford",,,MA,"Bristol County",America/New_York,508,NA,US,41.66,-70.93,157 +02742,"PO BOX",0,"New Bedford",,,MA,"Bristol County",America/New_York,508,NA,US,41.66,-70.93,334 +02743,STANDARD,0,Acushnet,"New Bedford",,MA,"Bristol County",America/New_York,508,NA,US,41.68,-70.9,9700 +02744,STANDARD,0,"New Bedford",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.61,-70.91,9960 +02745,STANDARD,0,"New Bedford",Acushnet,,MA,"Bristol County",America/New_York,508,NA,US,41.7,-70.95,21260 +02746,STANDARD,0,"New Bedford",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.66,-70.93,12450 +02747,STANDARD,0,"North Dartmouth","Dartmouth, N Dartmouth",,MA,"Bristol County",America/New_York,508,NA,US,41.64,-71,16930 +02748,STANDARD,0,"South Dartmouth","Dartmouth, Nonquitt, S Dartmouth",,MA,"Bristol County",America/New_York,508,NA,US,41.55,-70.98,10350 +02760,STANDARD,0,"North Attleboro","N Attleboro","No Attleboro",MA,"Bristol County",America/New_York,"508,774",NA,US,41.97,-71.33,26290 +02761,"PO BOX",0,"North Attleboro","N Attleboro",,MA,"Bristol County",America/New_York,508,NA,US,41.97,-71.33,356 +02762,STANDARD,0,Plainville,,"N Attleboro",MA,"Norfolk County",America/New_York,,NA,US,42,-71.33,9110 +02763,STANDARD,0,"Attleboro Falls","Attleboro Fls, N Attleboro, North Attleboro",,MA,"Bristol County",America/New_York,"508,774",NA,US,41.97,-71.31,2140 +02764,STANDARD,0,"North Dighton","N Dighton",,MA,"Bristol County",America/New_York,508,NA,US,41.85,-71.15,3880 +02766,STANDARD,0,Norton,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.96,-71.18,16650 +02767,STANDARD,0,Raynham,,,MA,"Bristol County",America/New_York,508,NA,US,41.93,-71.04,14220 +02768,"PO BOX",0,"Raynham Center","Raynham Ctr",,MA,"Bristol County",America/New_York,508,NA,US,41.93,-71.04,502 +02769,STANDARD,0,Rehoboth,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.83,-71.26,12030 +02770,STANDARD,0,Rochester,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.73,-70.81,5560 +02771,STANDARD,0,Seekonk,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.81,-71.33,14630 +02777,STANDARD,0,Swansea,,,MA,"Bristol County",America/New_York,508,NA,US,41.75,-71.18,15680 +02779,STANDARD,0,Berkley,,,MA,"Bristol County",America/New_York,508,NA,US,41.85,-71.08,6380 +02780,STANDARD,0,Taunton,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.9,-71.09,44760 +02783,UNIQUE,1,Taunton,,Chadwicks,MA,"Bristol County",America/New_York,508,NA,US,41.9,-71.09,0 +02790,STANDARD,0,Westport,,"Horseneck Beach",MA,"Bristol County",America/New_York,"508,774",NA,US,41.66,-71.1,15150 +02791,"PO BOX",0,"Westport Point","Westport Pt",,MA,"Bristol County",America/New_York,508,NA,US,41.52,-71.07,388 +02801,"PO BOX",0,Adamsville,,,RI,"Newport County",America/New_York,401,NA,US,41.51,-71.16,299 +02802,"PO BOX",0,Albion,,,RI,"Providence County",America/New_York,401,NA,US,41.95,-71.46,770 +02804,STANDARD,0,Ashaway,,,RI,"Washington County",America/New_York,401,NA,US,41.42,-71.78,2630 +02806,STANDARD,0,Barrington,,,RI,"Bristol County",America/New_York,401,NA,US,41.73,-71.31,16780 +02807,"PO BOX",0,"Block Island","New Shoreham",,RI,"Washington County",America/New_York,401,NA,US,41.16,-71.58,1213 +02808,STANDARD,0,Bradford,,,RI,"Washington County",America/New_York,401,NA,US,41.39,-71.75,2150 +02809,STANDARD,0,Bristol,,,RI,"Bristol County",America/New_York,401,NA,US,41.67,-71.27,17200 +02812,STANDARD,0,Carolina,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.47,-71.64,1280 +02813,STANDARD,0,Charlestown,,,RI,"Washington County",America/New_York,401,NA,US,41.38,-71.65,7160 +02814,STANDARD,0,Chepachet,,Glocester,RI,"Providence County",America/New_York,401,NA,US,41.91,-71.7,7060 +02815,STANDARD,0,Clayville,,Scituate,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.66,240 +02816,STANDARD,0,Coventry,,,RI,"Kent County",America/New_York,401,NA,US,41.68,-71.66,29910 +02817,STANDARD,0,"West Greenwich","W Greenwich",,RI,"Kent County",America/New_York,401,NA,US,41.63,-71.65,6070 +02818,STANDARD,0,"East Greenwich","E Greenwich",,RI,"Kent County",America/New_York,401,NA,US,41.63,-71.5,18190 +02822,STANDARD,0,Exeter,Escoheag,,RI,"Washington County",America/New_York,401,NA,US,41.56,-71.68,5590 +02823,"PO BOX",0,Fiskeville,,,RI,"Providence County",America/New_York,401,NA,US,41.73,-71.54,302 +02824,"PO BOX",0,Forestdale,,,RI,"Providence County",America/New_York,401,NA,US,41.97,-71.55,394 +02825,STANDARD,0,Foster,,Scituate,RI,"Providence County",America/New_York,401,NA,US,41.85,-71.76,5050 +02826,"PO BOX",0,Glendale,,Burrillville,RI,"Providence County",America/New_York,401,NA,US,41.98,-71.65,880 +02827,STANDARD,0,Greene,Coventry,,RI,"Kent County",America/New_York,401,NA,US,41.69,-71.74,2080 +02828,STANDARD,0,Greenville,,Smithfield,RI,"Providence County",America/New_York,401,NA,US,41.87,-71.55,6780 +02829,"PO BOX",0,Harmony,,Glocester,RI,"Providence County",America/New_York,401,NA,US,41.88,-71.61,405 +02830,STANDARD,0,Harrisville,Burrillville,,RI,"Providence County",America/New_York,401,NA,US,41.96,-71.67,5850 +02831,STANDARD,0,Hope,,Scituate,RI,"Providence County",America/New_York,401,NA,US,41.75,-71.56,3910 +02832,STANDARD,0,"Hope Valley",Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.51,-71.72,4470 +02833,STANDARD,0,Hopkinton,,,RI,"Washington County",America/New_York,401,NA,US,41.48,-71.77,540 +02835,STANDARD,0,Jamestown,,,RI,"Newport County",America/New_York,401,NA,US,41.48,-71.36,5130 +02836,STANDARD,0,Kenyon,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.62,91 +02837,STANDARD,0,"Little Compton","L Compton",,RI,"Newport County",America/New_York,401,NA,US,41.5,-71.16,3070 +02838,STANDARD,0,Manville,,Lincoln,RI,"Providence County",America/New_York,401,NA,US,41.96,-71.47,3000 +02839,STANDARD,0,Mapleville,,Burrillville,RI,"Providence County",America/New_York,401,NA,US,41.94,-71.64,1690 +02840,STANDARD,0,Newport,,,RI,"Newport County",America/New_York,401,NA,US,41.47,-71.3,17300 +02841,STANDARD,0,Newport,,Netc,RI,"Newport County",America/New_York,401,NA,US,41.51,-71.33,353 +02842,STANDARD,0,Middletown,,,RI,"Newport County",America/New_York,401,NA,US,41.51,-71.27,14800 +02852,STANDARD,0,"North Kingstown","N Kingstown","Davisville, Wickford",RI,"Washington County",America/New_York,401,NA,US,41.55,-71.46,21920 +02854,STANDARD,1,"North Kingstown","N Kingstown",,RI,"Washington County",America/New_York,401,NA,US,41.59,-71.45,0 +02857,STANDARD,0,"North Scituate","N Scituate, Scituate",Glocester,RI,"Providence County",America/New_York,401,NA,US,41.83,-71.63,8080 +02858,STANDARD,0,Oakland,,Burrillville,RI,"Providence County",America/New_York,401,NA,US,41.97,-71.65,570 +02859,STANDARD,0,Pascoag,,Glocester,RI,"Providence County",America/New_York,401,NA,US,41.95,-71.7,5860 +02860,STANDARD,0,Pawtucket,,,RI,"Providence County",America/New_York,401,NA,US,41.87,-71.37,38550 +02861,STANDARD,0,Pawtucket,,Darlington,RI,"Providence County",America/New_York,401,NA,US,41.88,-71.35,24060 +02862,"PO BOX",0,Pawtucket,,,RI,"Providence County",America/New_York,401,NA,US,41.87,-71.37,912 +02863,STANDARD,0,"Central Falls",,,RI,"Providence County",America/New_York,401,NA,US,41.89,-71.39,15820 +02864,STANDARD,0,Cumberland,,,RI,"Providence County",America/New_York,401,NA,US,41.94,-71.41,33430 +02865,STANDARD,0,Lincoln,,,RI,"Providence County",America/New_York,401,NA,US,41.91,-71.45,16870 +02871,STANDARD,0,Portsmouth,,,RI,"Newport County",America/New_York,401,NA,US,41.6,-71.25,16630 +02872,"PO BOX",0,"Prudence Island","Prudence Isl",,RI,"Newport County",America/New_York,401,NA,US,41.6,-71.31,160 +02873,"PO BOX",0,Rockville,,,RI,"Washington County",America/New_York,401,NA,US,41.53,-71.78,301 +02874,STANDARD,0,Saunderstown,,,RI,"Washington County",America/New_York,401,NA,US,41.51,-71.44,5870 +02875,STANDARD,0,Shannock,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.46,-71.64,310 +02876,STANDARD,0,Slatersville,,,RI,"Providence County",America/New_York,401,NA,US,41.99,-71.59,1120 +02877,STANDARD,0,Slocum,,,RI,"Washington County",America/New_York,401,NA,US,41.52,-71.54,106 +02878,STANDARD,0,Tiverton,,,RI,"Newport County",America/New_York,401,NA,US,41.65,-71.2,14610 +02879,STANDARD,0,Wakefield,"Narragansett, Peace Dale, S Kingstown, South Kingstown","East Matunuck, Green Hill, Jerusalem, Matunuck",RI,"Washington County",America/New_York,401,NA,US,41.45,-71.51,18690 +02880,"PO BOX",0,Wakefield,,,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.51,684 +02881,STANDARD,0,Kingston,,,RI,"Washington County",America/New_York,401,NA,US,41.48,-71.52,1920 +02882,STANDARD,0,Narragansett,"Point Judith","Bonnet Shores, Galilee",RI,"Washington County",America/New_York,401,NA,US,41.39,-71.48,9960 +02883,"PO BOX",0,"Peace Dale","S Kingstown, South Kingstown",,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.5,217 +02885,STANDARD,0,Warren,,,RI,"Bristol County",America/New_York,401,NA,US,41.72,-71.26,9290 +02886,STANDARD,0,Warwick,,,RI,"Kent County",America/New_York,401,NA,US,41.7,-71.46,25970 +02887,"PO BOX",0,Warwick,,,RI,"Kent County",America/New_York,401,NA,US,41.7,-71.42,344 +02888,STANDARD,0,Warwick,,,RI,"Kent County",America/New_York,401,NA,US,41.75,-71.41,17970 +02889,STANDARD,0,Warwick,,Conimicut,RI,"Kent County",America/New_York,401,NA,US,41.7,-71.42,25580 +02891,STANDARD,0,Westerly,,"Misquamicut, Watch Hill",RI,"Washington County",America/New_York,401,NA,US,41.37,-71.81,19510 +02892,STANDARD,0,"West Kingston",Richmond,"South Kingstown",RI,"Washington County",America/New_York,401,NA,US,41.5,-71.59,5090 +02893,STANDARD,0,"West Warwick",,"W Warwick",RI,"Kent County",America/New_York,401,NA,US,41.69,-71.51,26110 +02894,STANDARD,0,"Wood River Junction","Wood River Jt",,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.7,780 +02895,STANDARD,0,Woonsocket,,,RI,"Providence County",America/New_York,401,NA,US,41.99,-71.5,34010 +02896,STANDARD,0,"North Smithfield","N Smithfield",,RI,"Providence County",America/New_York,401,NA,US,41.95,-71.55,9630 +02898,STANDARD,0,Wyoming,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.52,-71.67,1940 +02901,"PO BOX",0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,299 +02902,UNIQUE,0,Providence,,"Providence Journal",RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,69 +02903,STANDARD,0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,5430 +02904,STANDARD,0,Providence,"N Providence, North Providence","No Providence",RI,"Providence County",America/New_York,401,NA,US,41.86,-71.44,25300 +02905,STANDARD,0,Providence,Cranston,,RI,"Providence County",America/New_York,401,NA,US,41.78,-71.4,21710 +02906,STANDARD,0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.84,-71.39,19060 +02907,STANDARD,0,Providence,Cranston,,RI,"Providence County",America/New_York,401,NA,US,41.8,-71.42,25630 +02908,STANDARD,0,Providence,"N Providence, North Providence",,RI,"Providence County",America/New_York,401,NA,US,41.84,-71.44,30170 +02909,STANDARD,0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.45,36880 +02910,STANDARD,0,Cranston,Providence,,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.44,20050 +02911,STANDARD,0,"North Providence","N Providence, Providence","Centerdale, Centredale, No Providence",RI,"Providence County",America/New_York,401,NA,US,41.85,-71.47,13830 +02912,UNIQUE,0,Providence,,"Brown Station, Brown University",RI,"Providence County",America/New_York,401,NA,US,41.83,-71.4,375 +02914,STANDARD,0,"East Providence","E Providence",,RI,"Providence County",America/New_York,401,NA,US,41.81,-71.37,18280 +02915,STANDARD,0,Riverside,,,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.35,14650 +02916,STANDARD,0,Rumford,,,RI,"Providence County",America/New_York,401,NA,US,41.84,-71.35,7790 +02917,STANDARD,0,Smithfield,,Esmond,RI,"Providence County",America/New_York,401,NA,US,41.9,-71.53,10870 +02918,UNIQUE,0,Providence,,"Friar Station, Providence College",RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,36 +02919,STANDARD,0,Johnston,Providence,,RI,"Providence County",America/New_York,401,NA,US,41.83,-71.52,26290 +02920,STANDARD,0,Cranston,,,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.47,31420 +02921,STANDARD,0,Cranston,,,RI,"Providence County",America/New_York,401,NA,US,41.76,-71.48,11770 +02940,"PO BOX",0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,1143 +03031,STANDARD,0,Amherst,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.86,-71.61,11740 +03032,STANDARD,0,Auburn,,,NH,"Rockingham County",America/New_York,603,NA,US,43,-71.34,5800 +03033,STANDARD,0,Brookline,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.73,-71.66,5500 +03034,STANDARD,0,Candia,,,NH,"Rockingham County",America/New_York,603,NA,US,43.07,-71.27,3920 +03036,STANDARD,0,Chester,,,NH,"Rockingham County",America/New_York,603,NA,US,42.95,-71.25,5240 +03037,STANDARD,0,Deerfield,,,NH,"Rockingham County",America/New_York,603,NA,US,43.14,-71.21,4600 +03038,STANDARD,0,Derry,Londonderry,,NH,"Rockingham County",America/New_York,603,NA,US,42.89,-71.28,31700 +03040,"PO BOX",0,"East Candia",,"E Candia",NH,"Rockingham County",America/New_York,603,NA,US,43.05,-71.27,25 +03041,"PO BOX",0,"East Derry",,"E Derry",NH,"Rockingham County",America/New_York,603,NA,US,42.88,-71.27,256 +03042,STANDARD,0,Epping,,,NH,"Rockingham County",America/New_York,603,NA,US,43.03,-71.07,6750 +03043,STANDARD,0,Francestown,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.98,-71.8,1500 +03044,STANDARD,0,Fremont,,,NH,"Rockingham County",America/New_York,603,NA,US,42.99,-71.14,4410 +03045,STANDARD,0,Goffstown,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.01,-71.6,12890 +03046,STANDARD,0,Dunbarton,,,NH,"Merrimack County",America/New_York,603,NA,US,43.1,-71.59,2980 +03047,STANDARD,0,Greenfield,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.95,-71.85,1490 +03048,STANDARD,0,Greenville,Mason,,NH,"Hillsborough County",America/New_York,603,NA,US,42.76,-71.79,3040 +03049,STANDARD,0,Hollis,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.73,-71.58,8400 +03051,STANDARD,0,Hudson,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.76,-71.43,24140 +03052,STANDARD,0,Litchfield,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.83,-71.46,8340 +03053,STANDARD,0,Londonderry,,,NH,"Rockingham County",America/New_York,603,NA,US,42.85,-71.36,24850 +03054,STANDARD,0,Merrimack,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.85,-71.52,25830 +03055,STANDARD,0,Milford,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.83,-71.66,14900 +03057,STANDARD,0,"Mont Vernon",,"Mount Vernon, Mt Vernon",NH,"Hillsborough County",America/New_York,603,NA,US,42.9,-71.66,2560 +03060,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.74,-71.46,25680 +03061,"PO BOX",0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.74,-71.49,931 +03062,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.74,-71.49,27150 +03063,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.78,-71.52,14990 +03064,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.78,-71.47,13400 +03070,STANDARD,0,"New Boston",,,NH,"Hillsborough County",America/New_York,603,NA,US,42.96,-71.68,6020 +03071,STANDARD,0,"New Ipswich",,,NH,"Hillsborough County",America/New_York,603,NA,US,42.75,-71.85,4970 +03073,"PO BOX",0,"North Salem",,"N Salem, No Salem",NH,"Rockingham County",America/New_York,603,NA,US,42.83,-71.22,396 +03076,STANDARD,0,Pelham,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.73,-71.31,13740 +03077,STANDARD,0,Raymond,,,NH,"Rockingham County",America/New_York,603,NA,US,43.03,-71.17,9930 +03079,STANDARD,0,Salem,,,NH,"Rockingham County",America/New_York,603,NA,US,42.78,-71.2,28170 +03082,STANDARD,0,Lyndeborough,,Lyndeboro,NH,"Hillsborough County",America/New_York,603,NA,US,42.9,-71.75,1440 +03084,STANDARD,0,Temple,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.81,-71.83,1200 +03086,STANDARD,0,Wilton,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.84,-71.73,3790 +03087,STANDARD,0,Windham,,,NH,"Rockingham County",America/New_York,603,NA,US,42.8,-71.3,15550 +03101,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.47,2500 +03102,STANDARD,0,Manchester,,Pinardville,NH,"Hillsborough County",America/New_York,603,NA,US,43.01,-71.49,26650 +03103,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,32080 +03104,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.01,-71.44,28070 +03105,"PO BOX",0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,670 +03106,STANDARD,0,Hooksett,Manchester,,NH,"Merrimack County",America/New_York,603,NA,US,43.09,-71.45,13500 +03107,UNIQUE,1,Manchester,,"Nh Insurance",NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,0 +03108,"PO BOX",0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,936 +03109,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.96,-71.4,9820 +03110,STANDARD,0,Bedford,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.95,-71.5,22780 +03111,UNIQUE,0,Manchester,,"Shared Firm Zip",NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,0 +03215,"PO BOX",0,"Waterville Valley","Watervl Vly","Waterville Vly",NH,"Grafton County",America/New_York,603,NA,US,43.95,-71.5,314 +03216,STANDARD,0,Andover,,,NH,"Merrimack County",America/New_York,603,NA,US,43.43,-71.82,2000 +03217,STANDARD,0,Ashland,,,NH,"Grafton County",America/New_York,603,NA,US,43.69,-71.63,1900 +03218,STANDARD,0,Barnstead,,,NH,"Belknap County",America/New_York,603,NA,US,43.33,-71.29,1080 +03220,STANDARD,0,Belmont,,,NH,"Belknap County",America/New_York,603,NA,US,43.44,-71.47,6580 +03221,STANDARD,0,Bradford,,Sutton,NH,"Merrimack County",America/New_York,603,NA,US,43.27,-71.96,2050 +03222,STANDARD,0,Bristol,Alexandria,Bridgewater,NH,"Grafton County",America/New_York,603,NA,US,43.6,-71.74,4950 +03223,STANDARD,0,Campton,"Ellsworth, Thornton",,NH,"Grafton County",America/New_York,603,NA,US,43.86,-71.63,3830 +03224,STANDARD,0,Canterbury,,,NH,"Merrimack County",America/New_York,603,NA,US,43.33,-71.56,2300 +03225,STANDARD,0,"Center Barnstead","Ctr Barnstead",,NH,"Belknap County",America/New_York,603,NA,US,43.33,-71.23,3470 +03226,STANDARD,0,"Center Harbor",,"Centre Harbor, Ctr Harbor",NH,"Belknap County",America/New_York,603,NA,US,43.71,-71.52,1800 +03227,STANDARD,0,"Center Sandwich","Ctr Sandwich, Sandwich",,NH,"Carroll County",America/New_York,603,NA,US,43.83,-71.47,920 +03229,STANDARD,0,Contoocook,Hopkinton,,NH,"Merrimack County",America/New_York,603,NA,US,43.22,-71.71,5830 +03230,STANDARD,0,Danbury,,,NH,"Merrimack County",America/New_York,603,NA,US,43.52,-71.86,1140 +03231,"PO BOX",0,"East Andover",,"E Andover",NH,"Merrimack County",America/New_York,603,NA,US,43.48,-71.76,328 +03233,STANDARD,0,Elkins,,,NH,"Merrimack County",America/New_York,603,NA,US,43.42,-71.93,330 +03234,STANDARD,0,Epsom,,,NH,"Merrimack County",America/New_York,603,NA,US,43.22,-71.33,4460 +03235,STANDARD,0,Franklin,,"W Franklin, West Franklin",NH,"Merrimack County",America/New_York,603,NA,US,43.45,-71.66,7400 +03237,STANDARD,0,Gilmanton,,,NH,"Belknap County",America/New_York,603,NA,US,43.42,-71.41,2420 +03238,"PO BOX",0,Glencliff,,,NH,"Grafton County",America/New_York,603,NA,US,43.98,-71.91,153 +03240,STANDARD,0,Grafton,,,NH,"Grafton County",America/New_York,603,NA,US,43.55,-71.94,1150 +03241,STANDARD,0,Hebron,"East Hebron","E Hebron, Groton",NH,"Grafton County",America/New_York,603,NA,US,43.69,-71.8,770 +03242,STANDARD,0,Henniker,,,NH,"Merrimack County",America/New_York,603,NA,US,43.17,-71.81,3780 +03243,STANDARD,0,Hill,,,NH,"Merrimack County",America/New_York,603,NA,US,43.52,-71.7,900 +03244,STANDARD,0,Hillsborough,"Deering, Hillsboro, Windsor",,NH,"Hillsborough County",America/New_York,603,NA,US,43.12,-71.92,7060 +03245,STANDARD,0,Holderness,,,NH,"Grafton County",America/New_York,603,NA,US,43.73,-71.58,1690 +03246,STANDARD,0,Laconia,,"Lakeport, Weirs Beach",NH,"Belknap County",America/New_York,603,NA,US,43.56,-71.48,13600 +03247,"PO BOX",0,Laconia,,"Gilford, Lakeport, Weirs Beach",NH,"Belknap County",America/New_York,603,NA,US,43.56,-71.48,1611 +03249,STANDARD,0,Gilford,,Guilford,NH,"Belknap County",America/New_York,603,NA,US,43.53,-71.38,6770 +03251,STANDARD,0,Lincoln,,,NH,"Grafton County",America/New_York,603,NA,US,44.04,-71.67,1440 +03252,"PO BOX",0,Lochmere,,,NH,"Belknap County",America/New_York,603,NA,US,43.47,-71.56,205 +03253,STANDARD,0,Meredith,,,NH,"Belknap County",America/New_York,603,NA,US,43.65,-71.5,6030 +03254,STANDARD,0,Moultonborough,Moultonboro,,NH,"Carroll County",America/New_York,603,NA,US,43.75,-71.39,3750 +03255,STANDARD,0,Newbury,"Mount Sunapee","Mt Sunapee",NH,"Merrimack County",America/New_York,603,NA,US,43.32,-72.03,1910 +03256,STANDARD,0,"New Hampton",,,NH,"Belknap County",America/New_York,603,NA,US,43.6,-71.65,2180 +03257,STANDARD,0,"New London",,Sutton,NH,"Merrimack County",America/New_York,603,NA,US,43.41,-71.98,4050 +03258,STANDARD,0,Chichester,,"North Chichester",NH,"Merrimack County",America/New_York,603,NA,US,43.25,-71.39,2480 +03259,STANDARD,0,"North Sandwich","N Sandwich",,NH,"Carroll County",America/New_York,603,NA,US,43.86,-71.38,310 +03260,"PO BOX",0,"North Sutton",,"N Sutton",NH,"Merrimack County",America/New_York,603,NA,US,43.36,-71.94,633 +03261,STANDARD,0,Northwood,,,NH,"Rockingham County",America/New_York,603,NA,US,43.19,-71.15,4340 +03262,STANDARD,0,"North Woodstock","N Woodstock",,NH,"Grafton County",America/New_York,603,NA,US,44.01,-71.73,1070 +03263,STANDARD,0,Pittsfield,,,NH,"Merrimack County",America/New_York,603,NA,US,43.3,-71.33,3550 +03264,STANDARD,0,Plymouth,,Bridgewater,NH,"Grafton County",America/New_York,603,NA,US,43.73,-71.69,4060 +03266,STANDARD,0,Rumney,Dorchester,"Ellsworth, Groton",NH,"Grafton County",America/New_York,603,NA,US,43.8,-71.81,1840 +03268,STANDARD,0,Salisbury,,,NH,"Merrimack County",America/New_York,603,NA,US,43.38,-71.71,1190 +03269,STANDARD,0,Sanbornton,,,NH,"Belknap County",America/New_York,603,NA,US,43.52,-71.6,2780 +03272,"PO BOX",0,"South Newbury",,"S Newbury",NH,"Merrimack County",America/New_York,603,NA,US,43.29,-72,34 +03273,"PO BOX",0,"South Sutton",,"S Sutton",NH,"Merrimack County",America/New_York,603,NA,US,43.31,-71.92,300 +03274,"PO BOX",1,"Stinson Lake",,,NH,"Grafton County",America/New_York,603,NA,US,43.86,-71.8,0 +03275,STANDARD,0,Suncook,"Allenstown, Pembroke",,NH,"Merrimack County",America/New_York,603,NA,US,43.13,-71.45,10610 +03276,STANDARD,0,Tilton,Northfield,,NH,"Merrimack County",America/New_York,603,NA,US,43.44,-71.58,7560 +03278,STANDARD,0,Warner,,Sutton,NH,"Merrimack County",America/New_York,603,NA,US,43.28,-71.81,2850 +03279,STANDARD,0,Warren,,,NH,"Grafton County",America/New_York,603,NA,US,43.92,-71.89,640 +03280,STANDARD,0,Washington,,,NH,"Sullivan County",America/New_York,603,NA,US,43.17,-72.09,1050 +03281,STANDARD,0,Weare,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.1,-71.73,8740 +03282,STANDARD,0,Wentworth,,,NH,"Grafton County",America/New_York,603,NA,US,43.87,-71.91,820 +03284,STANDARD,0,Springfield,,"W Springfield, West Springfield",NH,"Sullivan County",America/New_York,603,NA,US,43.49,-72.03,780 +03285,STANDARD,0,Thornton,,,NH,"Grafton County",America/New_York,603,NA,US,43.93,-71.62,1530 +03287,STANDARD,0,Wilmot,,"Sutton, Wilmot Flat",NH,"Merrimack County",America/New_York,603,NA,US,43.45,-71.91,1210 +03289,"PO BOX",0,Winnisquam,,,NH,"Belknap County",America/New_York,603,NA,US,43.5,-71.49,444 +03290,STANDARD,0,Nottingham,,,NH,"Rockingham County",America/New_York,603,NA,US,43.11,-71.1,4900 +03291,STANDARD,0,"West Nottingham","W Nottingham",,NH,"Rockingham County",America/New_York,603,NA,US,43.18,-71.14,180 +03293,"PO BOX",0,Woodstock,,,NH,"Grafton County",America/New_York,603,NA,US,43.97,-71.68,189 +03298,UNIQUE,0,Tilton,,"Brm J Jill, J Jill, J Jill Brm",NH,"Belknap County",America/New_York,603,NA,US,43.44,-71.58,0 +03299,UNIQUE,0,Tilton,,"J Jill",NH,"Belknap County",America/New_York,603,NA,US,43.44,-71.58,0 +03301,STANDARD,0,Concord,,,NH,"Merrimack County",America/New_York,603,NA,US,43.23,-71.56,27400 +03302,"PO BOX",0,Concord,,,NH,"Merrimack County",America/New_York,603,NA,US,43.23,-71.56,1295 +03303,STANDARD,0,Concord,"Boscawen, Penacook, Webster",,NH,"Merrimack County",America/New_York,603,NA,US,43.31,-71.67,13830 +03304,STANDARD,0,Bow,,,NH,"Merrimack County",America/New_York,603,NA,US,43.13,-71.54,8160 +03305,UNIQUE,0,Concord,,"Nh Dept Of Safety",NH,"Merrimack County",America/New_York,603,NA,US,43.23,-71.56,0 +03307,STANDARD,0,Loudon,,,NH,"Merrimack County",America/New_York,603,NA,US,43.28,-71.46,5390 +03431,STANDARD,0,Keene,"North Swanzey, Roxbury, Surry","N Swanzey",NH,"Cheshire County",America/New_York,603,NA,US,42.95,-72.29,19230 +03435,UNIQUE,0,Keene,,"Keene State College",NH,"Cheshire County",America/New_York,603,NA,US,42.95,-72.29,11 +03440,STANDARD,0,Antrim,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.03,-71.94,2460 +03441,STANDARD,0,Ashuelot,,,NH,"Cheshire County",America/New_York,603,NA,US,42.78,-72.45,350 +03442,STANDARD,0,Bennington,,,NH,"Hillsborough County",America/New_York,603,NA,US,43,-71.93,1260 +03443,STANDARD,0,Chesterfield,,,NH,"Cheshire County",America/New_York,603,NA,US,42.88,-72.46,710 +03444,STANDARD,0,Dublin,,,NH,"Cheshire County",America/New_York,603,NA,US,42.91,-72.06,1380 +03445,STANDARD,0,Sullivan,,"E Sullivan, East Sullivan, Nelson",NH,"Cheshire County",America/New_York,603,NA,US,43.01,-72.21,650 +03446,STANDARD,0,Swanzey,,"E Swanzey, East Swanzey, Swanzey Center, Swanzey Ctr",NH,"Cheshire County",America/New_York,603,NA,US,42.86,-72.28,5500 +03447,STANDARD,0,Fitzwilliam,,,NH,"Cheshire County",America/New_York,603,NA,US,42.78,-72.15,2190 +03448,STANDARD,0,Gilsum,,,NH,"Cheshire County",America/New_York,603,NA,US,43.05,-72.26,690 +03449,STANDARD,0,Hancock,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.96,-71.98,1680 +03450,STANDARD,0,Harrisville,,,NH,"Cheshire County",America/New_York,603,NA,US,42.95,-72.1,870 +03451,STANDARD,0,Hinsdale,,,NH,"Cheshire County",America/New_York,603,NA,US,42.78,-72.48,3530 +03452,STANDARD,0,Jaffrey,,,NH,"Cheshire County",America/New_York,603,NA,US,42.81,-72.02,4920 +03455,STANDARD,0,Marlborough,,,NH,"Cheshire County",America/New_York,603,NA,US,42.9,-72.21,1910 +03456,STANDARD,0,Marlow,,,NH,"Cheshire County",America/New_York,603,NA,US,43.11,-72.2,710 +03457,STANDARD,0,Nelson,Munsonville,,NH,"Cheshire County",America/New_York,603,NA,US,42.99,-72.12,670 +03458,STANDARD,0,Peterborough,Sharon,,NH,"Hillsborough County",America/New_York,603,NA,US,42.87,-71.96,6200 +03461,STANDARD,0,Rindge,,,NH,"Cheshire County",America/New_York,603,NA,US,42.75,-72.01,5170 +03462,STANDARD,0,Spofford,,,NH,"Cheshire County",America/New_York,603,NA,US,42.9,-72.4,1590 +03464,STANDARD,0,Stoddard,,,NH,"Cheshire County",America/New_York,603,NA,US,43.08,-72.1,1000 +03465,STANDARD,0,Troy,,,NH,"Cheshire County",America/New_York,603,NA,US,42.83,-72.18,1940 +03466,STANDARD,0,"West Chesterfield","W Chesterfld","W Chesterfield",NH,"Cheshire County",America/New_York,603,NA,US,42.87,-72.51,1240 +03467,STANDARD,0,Westmoreland,,,NH,"Cheshire County",America/New_York,603,NA,US,42.96,-72.45,1530 +03468,"PO BOX",0,"West Peterborough","W Peterboro","W Peterborough",NH,"Hillsborough County",America/New_York,603,NA,US,42.85,-71.96,214 +03469,"PO BOX",0,"West Swanzey",,"W Swanzey",NH,"Cheshire County",America/New_York,603,NA,US,42.87,-72.32,902 +03470,STANDARD,0,Winchester,Richmond,,NH,"Cheshire County",America/New_York,603,NA,US,42.77,-72.38,4220 +03561,STANDARD,0,Littleton,,,NH,"Grafton County",America/New_York,603,NA,US,44.31,-71.76,5420 +03570,STANDARD,0,Berlin,,,NH,"Coos County",America/New_York,603,NA,US,44.48,-71.25,6760 +03574,STANDARD,0,Bethlehem,,,NH,"Grafton County",America/New_York,603,NA,US,44.28,-71.68,2270 +03575,"PO BOX",0,"Bretton Woods",,,NH,"Coos County",America/New_York,603,NA,US,44.31,-71.4,123 +03576,STANDARD,0,Colebrook,"Dixville, Stewartstown","Columbia, Dixville Notch",NH,"Coos County",America/New_York,603,NA,US,44.89,-71.49,2440 +03579,STANDARD,0,Errol,"Wentworths Location, Wntwrths Lctn",,NH,"Coos County",America/New_York,603,NA,US,44.78,-71.13,290 +03580,STANDARD,0,Franconia,Easton,,NH,"Grafton County",America/New_York,603,NA,US,44.22,-71.74,1330 +03581,STANDARD,0,Gorham,Shelburne,,NH,"Coos County",America/New_York,603,NA,US,44.39,-71.18,2760 +03582,STANDARD,0,Groveton,"Northumberland, Northumberlnd, Stark",,NH,"Coos County",America/New_York,603,NA,US,44.59,-71.51,2000 +03583,STANDARD,0,Jefferson,,Northumberland,NH,"Coos County",America/New_York,603,NA,US,44.41,-71.47,960 +03584,STANDARD,0,Lancaster,,Northumberland,NH,"Coos County",America/New_York,603,NA,US,44.48,-71.56,3070 +03585,STANDARD,0,Lisbon,"Landaff, Lyman",,NH,"Grafton County",America/New_York,603,NA,US,44.21,-71.9,2310 +03586,STANDARD,0,"Sugar Hill",,,NH,"Grafton County",America/New_York,603,NA,US,44.23,-71.78,480 +03588,STANDARD,0,Milan,Dummer,,NH,"Coos County",America/New_York,603,NA,US,44.57,-71.18,1460 +03589,"PO BOX",0,"Mount Washington","Mt Washington",,NH,"Coos County",America/New_York,603,NA,US,44.27,-71.3,0 +03590,STANDARD,0,"North Stratford","N Stratford, Stratford","Columbia, No Stratford",NH,"Coos County",America/New_York,603,NA,US,44.76,-71.58,690 +03592,STANDARD,0,Pittsburg,Clarksville,,NH,"Coos County",America/New_York,603,NA,US,45.05,-71.39,860 +03593,STANDARD,0,Randolph,,,NH,"Coos County",America/New_York,603,NA,US,44.37,-71.25,280 +03595,"PO BOX",0,"Twin Mountain",,,NH,"Coos County",America/New_York,603,NA,US,44.3,-71.5,637 +03597,"PO BOX",0,"West Stewartstown","W Stewartstwn","W Stewartstown",NH,"Coos County",America/New_York,603,NA,US,44.74,-71.38,647 +03598,STANDARD,0,Whitefield,"Carroll, Dalton",,NH,"Coos County",America/New_York,603,NA,US,44.37,-71.61,2990 +03601,STANDARD,0,Acworth,,,NH,"Sullivan County",America/New_York,603,NA,US,43.24,-72.29,390 +03602,STANDARD,0,Alstead,Langdon,"Alstead Center, East Alstead",NH,"Cheshire County",America/New_York,603,NA,US,43.15,-72.36,2400 +03603,STANDARD,0,Charlestown,,Unity,NH,"Sullivan County",America/New_York,603,NA,US,43.23,-72.42,4500 +03604,"PO BOX",0,Drewsville,,,NH,"Cheshire County",America/New_York,603,NA,US,43.13,-72.38,177 +03605,STANDARD,0,Lempster,"East Lempster","E Lempster",NH,"Sullivan County",America/New_York,603,NA,US,43.23,-72.21,910 +03607,STANDARD,0,"South Acworth",,"S Acworth, So Acworth",NH,"Sullivan County",America/New_York,603,NA,US,43.18,-72.32,240 +03608,STANDARD,0,Walpole,,,NH,"Cheshire County",America/New_York,603,NA,US,43.08,-72.43,2540 +03609,STANDARD,0,"North Walpole",,"N Walpole, No Walpole",NH,"Cheshire County",America/New_York,603,NA,US,43.14,-72.44,660 +03740,STANDARD,0,Bath,,,NH,"Grafton County",America/New_York,603,NA,US,44.16,-71.96,980 +03741,STANDARD,0,Canaan,Orange,,NH,"Grafton County",America/New_York,603,NA,US,43.64,-72.01,3700 +03743,STANDARD,0,Claremont,,Unity,NH,"Sullivan County",America/New_York,603,NA,US,43.37,-72.33,11370 +03745,STANDARD,0,Cornish,,,NH,"Sullivan County",America/New_York,603,NA,US,43.48,-72.32,1140 +03746,"PO BOX",0,"Cornish Flat",,,NH,"Sullivan County",America/New_York,603,NA,US,43.49,-72.27,501 +03748,STANDARD,0,Enfield,,,NH,"Grafton County",America/New_York,603,NA,US,43.64,-72.14,4130 +03749,"PO BOX",0,"Enfield Center","Enfield Ctr",,NH,"Grafton County",America/New_York,603,NA,US,43.57,-72.11,209 +03750,STANDARD,0,Etna,,,NH,"Grafton County",America/New_York,603,NA,US,43.71,-72.19,1060 +03751,"PO BOX",0,"Georges Mills",,,NH,"Sullivan County",America/New_York,603,NA,US,43.45,-72.09,538 +03752,STANDARD,0,Goshen,,,NH,"Sullivan County",America/New_York,603,NA,US,43.3,-72.14,720 +03753,STANDARD,0,Grantham,,,NH,"Sullivan County",America/New_York,603,NA,US,43.48,-72.13,3530 +03754,"PO BOX",0,Guild,,,NH,"Sullivan County",America/New_York,603,NA,US,43.38,-72.14,213 +03755,STANDARD,0,Hanover,,,NH,"Grafton County",America/New_York,603,NA,US,43.7,-72.27,6250 +03756,STANDARD,0,Lebanon,,"Dartmouth Hitchcock Med Ctr",NH,"Grafton County",America/New_York,603,NA,US,43.63,-72.25,0 +03765,STANDARD,0,Haverhill,,,NH,"Grafton County",America/New_York,603,NA,US,44.03,-72.06,450 +03766,STANDARD,0,Lebanon,,,NH,"Grafton County",America/New_York,603,NA,US,43.63,-72.25,8680 +03768,STANDARD,0,Lyme,,,NH,"Grafton County",America/New_York,603,NA,US,43.8,-72.15,1640 +03769,"PO BOX",0,"Lyme Center",,,NH,"Grafton County",America/New_York,603,NA,US,43.83,-72.1,118 +03770,STANDARD,0,Meriden,,,NH,"Sullivan County",America/New_York,603,NA,US,43.52,-72.27,700 +03771,STANDARD,0,Monroe,,,NH,"Grafton County",America/New_York,603,NA,US,44.28,-72.01,790 +03773,STANDARD,0,Newport,Croydon,Unity,NH,"Sullivan County",America/New_York,603,NA,US,43.37,-72.17,6530 +03774,STANDARD,0,"North Haverhill","N Haverhill","No Haverhill",NH,"Grafton County",America/New_York,603,NA,US,44.09,-71.99,1560 +03777,STANDARD,0,Orford,,,NH,"Grafton County",America/New_York,603,NA,US,43.89,-72.06,1080 +03779,STANDARD,0,Piermont,,,NH,"Grafton County",America/New_York,603,NA,US,43.96,-72.08,670 +03780,STANDARD,0,Pike,,Benton,NH,"Grafton County",America/New_York,603,NA,US,44.05,-71.99,380 +03781,STANDARD,0,Plainfield,,,NH,"Sullivan County",America/New_York,603,NA,US,43.53,-72.35,1590 +03782,STANDARD,0,Sunapee,,,NH,"Sullivan County",America/New_York,603,NA,US,43.38,-72.08,2740 +03784,STANDARD,0,"West Lebanon",,"W Lebanon",NH,"Grafton County",America/New_York,603,NA,US,43.64,-72.31,3520 +03785,STANDARD,0,Woodsville,Benton,"Easton, Landaff",NH,"Grafton County",America/New_York,603,NA,US,44.14,-72.02,1890 +03801,STANDARD,0,Portsmouth,Newington,,NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,20250 +03802,"PO BOX",0,Portsmouth,,,NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,1102 +03803,UNIQUE,0,Portsmouth,,"Air National Guard",NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,0 +03804,"PO BOX",0,Portsmouth,,,NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,93 +03805,STANDARD,1,Newington,Portsmouth,,NH,"Rockingham County",America/New_York,603,NA,US,43.23,-70.82,0 +03809,STANDARD,0,Alton,,,NH,"Belknap County",America/New_York,603,NA,US,43.45,-71.21,3650 +03810,STANDARD,0,"Alton Bay",,"West Alton",NH,"Belknap County",America/New_York,603,NA,US,43.48,-71.24,1700 +03811,STANDARD,0,Atkinson,,,NH,"Rockingham County",America/New_York,603,NA,US,42.83,-71.14,7020 +03812,STANDARD,0,Bartlett,"Harts Lctn, Harts Location",,NH,"Carroll County",America/New_York,603,NA,US,44.08,-71.27,480 +03813,STANDARD,0,"Center Conway",Chatham,"North Chatham, South Chatham",NH,"Carroll County",America/New_York,603,NA,US,43.97,-71.04,2960 +03814,STANDARD,0,"Center Ossipee","Ctr Ossipee",,NH,"Carroll County",America/New_York,603,NA,US,43.76,-71.12,2020 +03815,"PO BOX",0,"Center Strafford","Ctr Strafford",,NH,"Strafford County",America/New_York,603,NA,US,43.26,-71.11,111 +03816,STANDARD,0,"Center Tuftonboro","Ctr Tuftnboro","Ctr Tuftonboro, Tuftonboro",NH,"Carroll County",America/New_York,603,NA,US,43.71,-71.25,1080 +03817,STANDARD,0,Chocorua,,,NH,"Carroll County",America/New_York,603,NA,US,43.89,-71.24,540 +03818,STANDARD,0,Conway,Albany,,NH,"Carroll County",America/New_York,603,NA,US,43.97,-71.12,3530 +03819,STANDARD,0,Danville,,"S Danville, So Danville, South Danville",NH,"Rockingham County",America/New_York,603,NA,US,42.91,-71.12,4100 +03820,STANDARD,0,Dover,,,NH,"Strafford County",America/New_York,603,NA,US,43.19,-70.87,27980 +03821,"PO BOX",0,Dover,,,NH,"Strafford County",America/New_York,603,NA,US,43.19,-70.87,849 +03822,UNIQUE,0,Dover,,"Liberty Mutual Insurance",NH,"Strafford County",America/New_York,603,NA,US,43.19,-70.87,0 +03823,STANDARD,0,Madbury,,,NH,"Strafford County",America/New_York,603,NA,US,43.17,-70.93,1870 +03824,STANDARD,0,Durham,Lee,,NH,"Strafford County",America/New_York,603,NA,US,43.13,-70.92,5850 +03825,STANDARD,0,Barrington,,,NH,"Strafford County",America/New_York,603,NA,US,43.22,-71.04,9030 +03826,STANDARD,0,"East Hampstead","E Hampstead",,NH,"Rockingham County",America/New_York,603,NA,US,42.88,-71.13,2690 +03827,STANDARD,0,"East Kingston","South Hampton","E Kingston, S Hampton, So Hampton",NH,"Rockingham County",America/New_York,603,NA,US,42.92,-71.01,3200 +03830,STANDARD,0,"East Wakefield","E Wakefield",Wakefield,NH,"Carroll County",America/New_York,603,NA,US,43.61,-70.99,1360 +03832,"PO BOX",0,"Eaton Center",,"Eaton, Eaton Ctr",NH,"Carroll County",America/New_York,603,NA,US,43.9,-71.06,308 +03833,STANDARD,0,Exeter,"Brentwood, Kensington",,NH,"Rockingham County",America/New_York,603,NA,US,42.97,-70.94,21210 +03835,STANDARD,0,Farmington,,,NH,"Strafford County",America/New_York,603,NA,US,43.4,-71.07,5940 +03836,STANDARD,0,Freedom,,,NH,"Carroll County",America/New_York,603,NA,US,43.81,-71.03,1320 +03837,STANDARD,0,"Gilmanton Iron Works","Gilmanton Iw",,NH,"Belknap County",America/New_York,603,NA,US,43.43,-71.34,1240 +03838,STANDARD,0,Glen,,,NH,"Carroll County",America/New_York,603,NA,US,44.11,-71.23,1190 +03839,STANDARD,0,Rochester,,Gonic,NH,"Strafford County",America/New_York,603,NA,US,43.26,-70.99,3700 +03840,STANDARD,0,Greenland,,,NH,"Rockingham County",America/New_York,603,NA,US,43.03,-70.83,4210 +03841,STANDARD,0,Hampstead,,,NH,"Rockingham County",America/New_York,603,NA,US,42.87,-71.18,6270 +03842,STANDARD,0,Hampton,,"Hampton Beach",NH,"Rockingham County",America/New_York,603,NA,US,42.94,-70.82,14570 +03843,"PO BOX",0,Hampton,,"Hampton Beach",NH,"Rockingham County",America/New_York,603,NA,US,42.94,-70.82,998 +03844,STANDARD,0,"Hampton Falls",,,NH,"Rockingham County",America/New_York,603,NA,US,42.91,-70.86,2430 +03845,STANDARD,0,Intervale,,,NH,"Carroll County",America/New_York,603,NA,US,44.1,-71.12,1180 +03846,STANDARD,0,Jackson,,,NH,"Carroll County",America/New_York,603,NA,US,44.14,-71.18,840 +03847,"PO BOX",0,Kearsarge,,,NH,"Carroll County",America/New_York,603,NA,US,44.07,-71.12,345 +03848,STANDARD,0,Kingston,,,NH,"Rockingham County",America/New_York,603,NA,US,42.93,-71.05,5930 +03849,STANDARD,0,Madison,,,NH,"Carroll County",America/New_York,603,NA,US,43.89,-71.14,1270 +03850,"PO BOX",0,"Melvin Village","Melvin Vlg",,NH,"Carroll County",America/New_York,603,NA,US,43.69,-71.3,550 +03851,STANDARD,0,Milton,,,NH,"Strafford County",America/New_York,603,NA,US,43.44,-71.03,3620 +03852,STANDARD,0,"Milton Mills",,,NH,"Strafford County",America/New_York,603,NA,US,43.5,-70.97,570 +03853,STANDARD,0,"Mirror Lake",,,NH,"Carroll County",America/New_York,603,NA,US,43.63,-71.28,580 +03854,"PO BOX",0,"New Castle",,Newcastle,NH,"Rockingham County",America/New_York,603,NA,US,43.06,-70.72,1012 +03855,STANDARD,0,"New Durham",,,NH,"Strafford County",America/New_York,603,NA,US,43.43,-71.17,2580 +03856,STANDARD,0,Newfields,,,NH,"Rockingham County",America/New_York,603,NA,US,43.04,-70.97,1790 +03857,STANDARD,0,Newmarket,,,NH,"Rockingham County",America/New_York,603,NA,US,43.07,-70.94,8420 +03858,STANDARD,0,Newton,,,NH,"Rockingham County",America/New_York,603,NA,US,42.86,-71.03,4550 +03859,"PO BOX",0,"Newton Junction","Newton Jct",,NH,"Rockingham County",America/New_York,603,NA,US,42.86,-71.04,241 +03860,STANDARD,0,"North Conway","Hales Lctn, Hales Location","N Conway, No Conway",NH,"Carroll County",America/New_York,603,NA,US,44.05,-71.12,3900 +03861,STANDARD,0,Lee,,,NH,"Strafford County",America/New_York,603,NA,US,43.1,-71.01,4270 +03862,STANDARD,0,"North Hampton",,"N Hampton, No Hampton",NH,"Rockingham County",America/New_York,603,NA,US,42.97,-70.83,4640 +03864,STANDARD,0,Ossipee,,,NH,"Carroll County",America/New_York,603,NA,US,43.68,-71.11,1470 +03865,STANDARD,0,Plaistow,,,NH,"Rockingham County",America/New_York,603,NA,US,42.83,-71.09,7610 +03866,"PO BOX",0,Rochester,,,NH,"Strafford County",America/New_York,603,NA,US,43.3,-70.97,1032 +03867,STANDARD,0,Rochester,,,NH,"Strafford County",America/New_York,603,NA,US,43.3,-70.97,19000 +03868,STANDARD,0,Rochester,,"E Rochester, East Rochester",NH,"Strafford County",America/New_York,603,NA,US,43.32,-70.94,5470 +03869,STANDARD,0,Rollinsford,,,NH,"Strafford County",America/New_York,603,NA,US,43.23,-70.82,2450 +03870,STANDARD,0,Rye,,,NH,"Rockingham County",America/New_York,603,NA,US,43.01,-70.77,4950 +03871,"PO BOX",0,"Rye Beach",,,NH,"Rockingham County",America/New_York,603,NA,US,42.98,-70.78,571 +03872,STANDARD,0,Sanbornville,Brookfield,,NH,"Carroll County",America/New_York,603,NA,US,43.56,-71.01,3670 +03873,STANDARD,0,Sandown,,,NH,"Rockingham County",America/New_York,603,NA,US,42.92,-71.18,6300 +03874,STANDARD,0,Seabrook,,,NH,"Rockingham County",America/New_York,603,NA,US,42.89,-70.87,8110 +03875,STANDARD,0,"Silver Lake",,,NH,"Carroll County",America/New_York,603,NA,US,43.87,-71.19,780 +03878,STANDARD,0,Somersworth,,,NH,"Strafford County",America/New_York,603,NA,US,43.25,-70.88,10700 +03882,STANDARD,0,Effingham,,"S Effingham, So Effingham, South Effingham",NH,"Carroll County",America/New_York,603,NA,US,43.71,-71,1220 +03883,STANDARD,0,"South Tamworth","S Tamworth","So Tamworth",NH,"Carroll County",America/New_York,603,NA,US,43.81,-71.32,170 +03884,STANDARD,0,Strafford,,,NH,"Strafford County",America/New_York,603,NA,US,43.32,-71.18,4060 +03885,STANDARD,0,Stratham,,,NH,"Rockingham County",America/New_York,603,NA,US,43.02,-70.91,7790 +03886,STANDARD,0,Tamworth,,,NH,"Carroll County",America/New_York,603,NA,US,43.85,-71.26,1470 +03887,STANDARD,0,Union,Middleton,,NH,"Strafford County",America/New_York,603,NA,US,43.5,-71.07,2020 +03890,STANDARD,0,"West Ossipee",,"W Ossipee",NH,"Carroll County",America/New_York,603,NA,US,43.8,-71.2,790 +03894,STANDARD,0,Wolfeboro,,Tuftonboro,NH,"Carroll County",America/New_York,603,NA,US,43.58,-71.2,5410 +03896,"PO BOX",0,"Wolfeboro Falls","Wolfeboro Fls",,NH,"Carroll County",America/New_York,603,NA,US,43.59,-71.24,1311 +03897,STANDARD,0,Wonalancet,,,NH,"Carroll County",America/New_York,603,NA,US,43.87,-71.28,56 +03901,STANDARD,0,Berwick,,,ME,"York County",America/New_York,207,NA,US,43.3,-70.84,7380 +03902,STANDARD,0,"Cape Neddick",,,ME,"York County",America/New_York,207,NA,US,43.21,-70.63,2230 +03903,STANDARD,0,Eliot,,,ME,"York County",America/New_York,207,NA,US,43.15,-70.8,6420 +03904,STANDARD,0,Kittery,,,ME,"York County",America/New_York,207,NA,US,43.09,-70.73,7160 +03905,STANDARD,0,"Kittery Point",,,ME,"York County",America/New_York,207,NA,US,43.08,-70.69,1660 +03906,STANDARD,0,"North Berwick",,"N Berwick, No Berwick",ME,"York County",America/New_York,207,NA,US,43.3,-70.73,4630 +03907,STANDARD,0,Ogunquit,,,ME,"York County",America/New_York,207,NA,US,43.24,-70.59,1450 +03908,STANDARD,0,"South Berwick",,"S Berwick, So Berwick",ME,"York County",America/New_York,207,NA,US,43.23,-70.81,7030 +03909,STANDARD,0,York,,,ME,"York County",America/New_York,207,NA,US,43.14,-70.65,9350 +03910,"PO BOX",0,"York Beach",,,ME,"York County",America/New_York,207,NA,US,43.19,-70.6,1334 +03911,"PO BOX",0,"York Harbor",,,ME,"York County",America/New_York,207,NA,US,43.14,-70.63,756 +04001,STANDARD,0,Acton,,,ME,"York County",America/New_York,207,NA,US,43.53,-70.91,2340 +04002,STANDARD,0,Alfred,Lyman,,ME,"York County",America/New_York,207,NA,US,43.47,-70.71,6900 +04003,STANDARD,0,"Bailey Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-69.99,290 +04004,"PO BOX",0,"Bar Mills",,,ME,"York County",America/New_York,207,NA,US,43.61,-70.54,618 +04005,STANDARD,0,Biddeford,Dayton,,ME,"York County",America/New_York,207,NA,US,43.46,-70.44,19280 +04006,"PO BOX",0,"Biddeford Pool","Biddeford Pl",,ME,"York County",America/New_York,207,NA,US,43.44,-70.34,214 +04007,"PO BOX",0,Biddeford,,,ME,"York County",America/New_York,207,NA,US,43.46,-70.44,61 +04008,STANDARD,0,Bowdoinham,,,ME,"Sagadahoc County",America/New_York,207,NA,US,44.01,-69.89,2820 +04009,STANDARD,0,Bridgton,,,ME,"Cumberland County",America/New_York,207,NA,US,44.06,-70.72,4290 +04010,STANDARD,0,Brownfield,,,ME,"Oxford County",America/New_York,207,NA,US,43.93,-70.9,1420 +04011,STANDARD,0,Brunswick,"Birch Island, Cundys Harbor, Mere Point","Nas Brunswick",ME,"Cumberland County",America/New_York,207,NA,US,43.91,-69.96,17730 +04013,STANDARD,0,"Bustins Island","Bustins Is, S Freeport, South Freeport",,ME,"Cumberland County",America/New_York,207,NA,US,43.79,-70.07,0 +04014,"PO BOX",0,"Cape Porpoise",,,ME,"York County",America/New_York,207,NA,US,43.37,-70.43,391 +04015,STANDARD,0,Casco,,,ME,"Cumberland County",America/New_York,207,NA,US,44,-70.52,2970 +04016,"PO BOX",0,"Center Lovell",,,ME,"Oxford County",America/New_York,207,NA,US,44.17,-70.87,172 +04017,STANDARD,0,"Chebeague Island","Chebeague Is",,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-70.11,380 +04019,"PO BOX",0,"Cliff Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.1,51 +04020,STANDARD,0,Cornish,,,ME,"York County",America/New_York,207,NA,US,43.8,-70.8,1400 +04021,STANDARD,0,"Cumberland Center","Cumberland, Cumberlnd Ctr",,ME,"Cumberland County",America/New_York,207,NA,US,43.8,-70.25,6740 +04022,STANDARD,0,Denmark,,,ME,"Oxford County",America/New_York,207,NA,US,43.97,-70.8,1100 +04024,STANDARD,0,"East Baldwin",,,ME,"Cumberland County",America/New_York,207,NA,US,43.84,-70.69,510 +04027,STANDARD,0,Lebanon,,,ME,"York County",America/New_York,207,NA,US,43.39,-70.85,5720 +04028,"PO BOX",0,"East Parsonsfield","E Parsonfield",,ME,"York County",America/New_York,207,NA,US,43.72,-70.91,102 +04029,STANDARD,0,Sebago,,"E Sebago, East Sebago",ME,"Cumberland County",America/New_York,207,NA,US,43.89,-70.64,1680 +04030,STANDARD,0,"East Waterboro","E Waterboro",,ME,"York County",America/New_York,207,NA,US,43.6,-70.69,1930 +04032,STANDARD,0,Freeport,,,ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.1,7720 +04033,UNIQUE,0,Freeport,,"Ll Bean Co",ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.1,0 +04034,UNIQUE,0,Freeport,,"Ll Bean Co",ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.1,0 +04037,STANDARD,0,Fryeburg,"N Fryeburg, North Fryeburg, Stow",,ME,"Oxford County",America/New_York,207,NA,US,44.01,-70.97,3170 +04038,STANDARD,0,Gorham,,,ME,"Cumberland County",America/New_York,207,NA,US,43.68,-70.44,16190 +04039,STANDARD,0,Gray,,,ME,"Cumberland County",America/New_York,207,NA,US,43.88,-70.33,7570 +04040,STANDARD,0,Harrison,Sweden,,ME,"Cumberland County",America/New_York,207,NA,US,44.11,-70.67,2470 +04041,STANDARD,0,Hiram,,,ME,"Oxford County",America/New_York,207,NA,US,43.87,-70.8,1190 +04042,STANDARD,0,"Hollis Center",,,ME,"York County",America/New_York,207,NA,US,43.59,-70.6,4290 +04043,STANDARD,0,Kennebunk,,,ME,"York County",America/New_York,207,NA,US,43.38,-70.54,10510 +04046,STANDARD,0,Kennebunkport,Arundel,,ME,"York County",America/New_York,207,NA,US,43.35,-70.46,7040 +04047,STANDARD,0,Parsonsfield,"Kezar Falls",Maplewood,ME,"York County",America/New_York,207,NA,US,43.72,-70.92,1660 +04048,STANDARD,0,Limerick,,,ME,"York County",America/New_York,207,NA,US,43.68,-70.79,2770 +04049,STANDARD,0,Limington,,,ME,"York County",America/New_York,207,NA,US,43.73,-70.71,3400 +04050,STANDARD,0,"Long Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.15,200 +04051,STANDARD,0,Lovell,,,ME,"Oxford County",America/New_York,207,NA,US,44.12,-70.89,900 +04054,"PO BOX",0,Moody,,,ME,"York County",America/New_York,207,NA,US,43.3,-70.59,664 +04055,STANDARD,0,Naples,,,ME,"Cumberland County",America/New_York,207,NA,US,43.97,-70.6,3670 +04056,"PO BOX",0,Newfield,,,ME,"York County",America/New_York,207,NA,US,43.66,-70.88,269 +04057,"PO BOX",0,"North Bridgton","N Bridgton",,ME,"Cumberland County",America/New_York,207,NA,US,44.1,-70.7,313 +04061,STANDARD,0,"North Waterboro","N Waterboro",,ME,"York County",America/New_York,207,NA,US,43.63,-70.73,3240 +04062,STANDARD,0,Windham,"N Windham, No Windham, North Windham",,ME,"Cumberland County",America/New_York,207,NA,US,43.79,-70.4,17120 +04063,"PO BOX",0,"Ocean Park",,,ME,"York County",America/New_York,207,NA,US,43.5,-70.39,451 +04064,STANDARD,0,"Old Orchard Beach","Old Orchd Bch",,ME,"York County",America/New_York,207,NA,US,43.52,-70.38,7410 +04066,STANDARD,0,"Orrs Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.77,-69.96,550 +04068,STANDARD,0,Porter,,,ME,"Oxford County",America/New_York,207,NA,US,43.79,-70.93,1120 +04069,STANDARD,0,Pownal,,,ME,"Cumberland County",America/New_York,207,NA,US,43.89,-70.18,1540 +04070,"PO BOX",0,Scarborough,,,ME,"Cumberland County",America/New_York,207,NA,US,43.59,-70.33,1320 +04071,STANDARD,0,Raymond,"Frye Island",,ME,"Cumberland County",America/New_York,207,NA,US,43.9,-70.47,4640 +04072,STANDARD,0,Saco,,,ME,"York County",America/New_York,207,NA,US,43.53,-70.45,18590 +04073,STANDARD,0,Sanford,,,ME,"York County",America/New_York,207,NA,US,43.44,-70.78,14670 +04074,STANDARD,0,Scarborough,"Pine Point",,ME,"Cumberland County",America/New_York,207,NA,US,43.59,-70.33,19670 +04075,STANDARD,1,"Sebago Lake",Standish,,ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.63,0 +04076,STANDARD,0,Shapleigh,"N Shapleigh, North Shapleigh",,ME,"York County",America/New_York,207,NA,US,43.54,-70.84,2490 +04077,"PO BOX",0,"South Casco",,,ME,"Cumberland County",America/New_York,207,NA,US,43.87,-70.51,583 +04078,"PO BOX",0,"South Freeport","S Freeport",,ME,"Cumberland County",America/New_York,207,NA,US,43.86,-70.1,562 +04079,STANDARD,0,Harpswell,"S Harpswell, South Harpswell",,ME,"Cumberland County",America/New_York,207,NA,US,43.8,-69.98,3580 +04082,"PO BOX",0,"South Windham",Windham,,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-70.42,133 +04083,STANDARD,0,Springvale,,,ME,"York County",America/New_York,207,NA,US,43.46,-70.8,4090 +04084,STANDARD,0,Standish,"Sebago Lake",,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-70.55,7020 +04085,STANDARD,0,"Steep Falls",,,ME,"Cumberland County",America/New_York,207,NA,US,43.76,-70.64,1750 +04086,STANDARD,0,Topsham,Pejepscot,,ME,"Sagadahoc County",America/New_York,207,NA,US,43.93,-69.94,8990 +04087,STANDARD,0,Waterboro,,,ME,"York County",America/New_York,207,NA,US,43.53,-70.71,2250 +04088,STANDARD,0,Waterford,,"South Waterford",ME,"Oxford County",America/New_York,207,NA,US,44.18,-70.71,1240 +04090,STANDARD,0,Wells,"Wells Beach",,ME,"York County",America/New_York,207,NA,US,43.32,-70.58,10110 +04091,STANDARD,0,"West Baldwin",,,ME,"Cumberland County",America/New_York,207,NA,US,43.83,-70.77,860 +04092,STANDARD,0,Westbrook,,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.35,16640 +04093,STANDARD,0,Buxton,,"West Buxton",ME,"York County",America/New_York,207,NA,US,43.64,-70.54,7610 +04094,"PO BOX",0,"West Kennebunk","W Kennebunk",,ME,"York County",America/New_York,207,NA,US,43.41,-70.62,565 +04095,STANDARD,0,"West Newfield",,,ME,"York County",America/New_York,207,NA,US,43.64,-70.92,1170 +04096,STANDARD,0,Yarmouth,,,ME,"Cumberland County",America/New_York,207,NA,US,43.79,-70.2,8750 +04097,STANDARD,0,"North Yarmouth","N Yarmouth",,ME,"Cumberland County",America/New_York,207,NA,US,43.84,-70.21,3960 +04098,"PO BOX",0,Westbrook,,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.35,665 +04101,STANDARD,0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,12980 +04102,STANDARD,0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.3,14440 +04103,STANDARD,0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.29,26700 +04104,"PO BOX",0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,2334 +04105,STANDARD,0,Falmouth,Portland,"Falmouth Foreside",ME,"Cumberland County",America/New_York,207,NA,US,43.72,-70.24,12010 +04106,STANDARD,0,"South Portland","Portland, S Portland","So Portland",ME,"Cumberland County",America/New_York,207,NA,US,43.63,-70.28,22980 +04107,STANDARD,0,"Cape Elizabeth","Cape Eliz, Pond Cove, Portland",,ME,"Cumberland County",America/New_York,207,NA,US,43.56,-70.2,9170 +04108,STANDARD,0,"Peaks Island",Portland,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.18,860 +04109,STANDARD,0,Portland,"Cushing Is, Cushing Island, Diamond Cove, Diamond Is, Diamond Island, Great Diamond Island, Grt Dia Is, Little Diamond Island, Ltle Dia Is",,ME,"Cumberland County",America/New_York,207,NA,US,43.64,-70.17,55 +04110,STANDARD,0,"Cumberland Foreside","Cumb Foreside, Portland",,ME,"Cumberland County",America/New_York,207,NA,US,43.75,-70.2,1680 +04112,"PO BOX",0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,904 +04116,"PO BOX",0,"South Portland","Portland, S Portland",,ME,"Cumberland County",America/New_York,207,NA,US,43.63,-70.28,332 +04122,UNIQUE,0,Portland,,"Union Mutual Life Ins",ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,0 +04123,UNIQUE,0,Portland,,"Union Mutual Life Ins",ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,0 +04124,UNIQUE,0,Portland,,"Union Mutual Life Ins",ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,0 +04210,STANDARD,0,Auburn,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.24,18770 +04211,"PO BOX",0,Auburn,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.24,614 +04212,"PO BOX",0,Auburn,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.24,665 +04216,STANDARD,0,Andover,,,ME,"Oxford County",America/New_York,207,NA,US,44.63,-70.75,520 +04217,STANDARD,0,Bethel,"Albany Twp, Gilead, Mason Twp",,ME,"Oxford County",America/New_York,207,NA,US,44.4,-70.79,2920 +04219,STANDARD,0,"Bryant Pond","Milton Twp",Woodstock,ME,"Oxford County",America/New_York,207,NA,US,44.37,-70.64,1230 +04220,STANDARD,0,Buckfield,Hartford,,ME,"Oxford County",America/New_York,207,NA,US,44.28,-70.36,2680 +04221,STANDARD,0,Canton,,,ME,"Oxford County",America/New_York,207,NA,US,44.44,-70.31,790 +04222,STANDARD,0,Durham,,,ME,"Androscoggin County",America/New_York,207,NA,US,43.92,-70.12,3860 +04223,"PO BOX",0,Danville,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.03,-70.27,104 +04224,STANDARD,0,Dixfield,Carthage,,ME,"Oxford County",America/New_York,207,NA,US,44.53,-70.45,2250 +04225,"PO BOX",0,Dryden,,,ME,"Franklin County",America/New_York,207,NA,US,44.62,-70.25,215 +04226,STANDARD,0,"East Andover",,,ME,"Oxford County",America/New_York,207,NA,US,44.6,-70.68,179 +04227,"PO BOX",0,"East Dixfield",,,ME,"Oxford County",America/New_York,207,NA,US,44.57,-70.29,250 +04228,"PO BOX",0,"East Livermore","E Livermore",,ME,"Androscoggin County",America/New_York,207,NA,US,44.43,-70.12,102 +04230,"PO BOX",0,"East Poland",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.06,-70.33,152 +04231,STANDARD,0,Stoneham,"E Stoneham",,ME,"Oxford County",America/New_York,207,NA,US,44.25,-70.81,240 +04234,"PO BOX",0,"East Wilton",,,ME,"Franklin County",America/New_York,207,NA,US,44.62,-70.19,361 +04236,STANDARD,0,Greene,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.18,-70.14,3980 +04237,STANDARD,0,Hanover,,,ME,"Oxford County",America/New_York,207,NA,US,44.49,-70.73,280 +04238,STANDARD,0,Hebron,,,ME,"Oxford County",America/New_York,207,NA,US,44.19,-70.4,1180 +04239,STANDARD,0,Jay,,,ME,"Franklin County",America/New_York,207,NA,US,44.5,-70.21,3880 +04240,STANDARD,0,Lewiston,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.17,27630 +04241,"PO BOX",0,Lewiston,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.17,568 +04243,"PO BOX",0,Lewiston,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.17,1083 +04250,STANDARD,0,Lisbon,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.01,-70.12,4010 +04252,STANDARD,0,"Lisbon Falls",Lisbon,,ME,"Androscoggin County",America/New_York,207,NA,US,44,-70.05,4240 +04253,STANDARD,0,Livermore,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.4,-70.22,1870 +04254,STANDARD,0,"Livermore Falls","Livermore Fls",,ME,"Androscoggin County",America/New_York,207,NA,US,44.47,-70.18,2350 +04255,STANDARD,0,Greenwood,,,ME,"Oxford County",America/New_York,207,NA,US,44.4,-70.7,620 +04256,STANDARD,0,"Mechanic Falls","Mechanic Fls",,ME,"Androscoggin County",America/New_York,207,NA,US,44.11,-70.39,2650 +04257,STANDARD,0,Mexico,,,ME,"Oxford County",America/New_York,207,NA,US,44.56,-70.54,2010 +04258,STANDARD,0,Minot,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.14,-70.34,2640 +04259,STANDARD,0,Monmouth,,,ME,"Kennebec County",America/New_York,207,NA,US,44.23,-70.01,2860 +04260,STANDARD,0,"New Gloucester","New Gloucestr",,ME,"Cumberland County",America/New_York,207,NA,US,43.96,-70.28,5330 +04261,STANDARD,0,Newry,Upton,,ME,"Oxford County",America/New_York,207,NA,US,44.5,-70.96,390 +04262,"PO BOX",0,"North Jay",,,ME,"Franklin County",America/New_York,207,NA,US,44.53,-70.21,81 +04263,STANDARD,0,Leeds,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.3,-70.12,1940 +04265,STANDARD,0,"North Monmouth","N Monmouth",,ME,"Kennebec County",America/New_York,207,NA,US,44.27,-70.05,780 +04266,"PO BOX",0,"North Turner",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.33,-70.25,368 +04267,"PO BOX",0,"North Waterford","N Waterford",,ME,"Oxford County",America/New_York,207,NA,US,44.21,-70.79,121 +04268,STANDARD,0,Norway,,,ME,"Oxford County",America/New_York,207,NA,US,44.21,-70.55,4100 +04270,STANDARD,0,Oxford,Otisfield,,ME,"Oxford County",America/New_York,207,NA,US,44.14,-70.5,5180 +04271,"PO BOX",0,Paris,,"Paris Hill",ME,"Oxford County",America/New_York,207,NA,US,44.26,-70.5,182 +04274,STANDARD,0,Poland,"Poland Spring",,ME,"Androscoggin County",America/New_York,207,NA,US,44.06,-70.39,5100 +04275,STANDARD,0,Roxbury,Byron,Frye,ME,"Oxford County",America/New_York,207,NA,US,44.66,-70.59,390 +04276,STANDARD,0,Rumford,"Rumford Center, Rumford Ctr, Rumford Point",,ME,"Oxford County",America/New_York,207,NA,US,44.54,-70.56,4320 +04280,STANDARD,0,Sabattus,Wales,,ME,"Androscoggin County",America/New_York,207,NA,US,44.11,-70.1,6210 +04281,STANDARD,0,"South Paris",,,ME,"Oxford County",America/New_York,207,NA,US,44.21,-70.51,4020 +04282,STANDARD,0,Turner,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.25,-70.25,5190 +04284,STANDARD,0,Wayne,,,ME,"Kennebec County",America/New_York,207,NA,US,44.34,-70.06,1080 +04285,STANDARD,0,Weld,,,ME,"Franklin County",America/New_York,207,NA,US,44.69,-70.42,330 +04286,"PO BOX",0,"West Bethel",,,ME,"Oxford County",America/New_York,207,NA,US,44.4,-70.87,111 +04287,STANDARD,0,Bowdoin,"W Bowdoin","West Bowdoin",ME,"Sagadahoc County",America/New_York,207,NA,US,44.04,-70.02,2770 +04288,"PO BOX",0,"West Minot",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.17,-70.33,50 +04289,STANDARD,0,"West Paris",,,ME,"Oxford County",America/New_York,207,NA,US,44.32,-70.57,1550 +04290,STANDARD,0,Peru,,"West Peru",ME,"Oxford County",America/New_York,207,NA,US,44.5,-70.4,1280 +04291,"PO BOX",0,"West Poland",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.05,-70.45,226 +04292,STANDARD,0,Sumner,,,ME,"Oxford County",America/New_York,207,NA,US,44.39,-70.43,800 +04294,STANDARD,0,Wilton,"Perkins Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.59,-70.23,3030 +04330,STANDARD,0,Augusta,"Chelsea, Sidney",Togus,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,21200 +04332,"PO BOX",0,Augusta,,,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,964 +04333,UNIQUE,0,Augusta,,"Me State Agencies",ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,637 +04336,UNIQUE,0,Augusta,,"Central Me Power Co",ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,0 +04338,"PO BOX",0,Augusta,,,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,228 +04341,"PO BOX",0,"Coopers Mills",,,ME,"Lincoln County",America/New_York,207,NA,US,44.27,-69.49,320 +04342,STANDARD,0,Dresden,,,ME,"Lincoln County",America/New_York,207,NA,US,44.1,-69.72,1480 +04343,"PO BOX",0,"East Winthrop",,,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.89,354 +04344,STANDARD,0,Farmingdale,,,ME,"Kennebec County",America/New_York,207,NA,US,44.25,-69.78,2610 +04345,STANDARD,0,Gardiner,"Pittston, West Gardiner",,ME,"Kennebec County",America/New_York,207,NA,US,44.19,-69.78,10380 +04346,STANDARD,0,Randolph,,,ME,"Kennebec County",America/New_York,207,NA,US,44.23,-69.75,1470 +04347,STANDARD,0,Hallowell,,,ME,"Kennebec County",America/New_York,207,NA,US,44.29,-69.81,2290 +04348,STANDARD,0,Jefferson,Somerville,,ME,"Lincoln County",America/New_York,207,NA,US,44.2,-69.45,2770 +04349,STANDARD,0,"Kents Hill",Fayette,,ME,"Kennebec County",America/New_York,207,NA,US,44.43,-70.07,1220 +04350,STANDARD,0,Litchfield,,,ME,"Kennebec County",America/New_York,207,NA,US,44.13,-69.96,3160 +04351,STANDARD,0,Manchester,,,ME,"Kennebec County",America/New_York,207,NA,US,44.32,-69.86,2490 +04352,STANDARD,0,"Mount Vernon",,"Mt Vernon",ME,"Kennebec County",America/New_York,207,NA,US,44.5,-69.98,1520 +04353,STANDARD,0,Whitefield,,,ME,"Lincoln County",America/New_York,207,NA,US,44.17,-69.62,2050 +04354,STANDARD,0,Palermo,,,ME,"Waldo County",America/New_York,207,NA,US,44.4,-69.47,1410 +04355,STANDARD,0,Readfield,,,ME,"Kennebec County",America/New_York,207,NA,US,44.38,-69.96,2400 +04357,STANDARD,0,Richmond,,,ME,"Sagadahoc County",America/New_York,207,NA,US,44.12,-69.83,3080 +04358,STANDARD,0,"South China","China, Weeks Mills",,ME,"Kennebec County",America/New_York,207,NA,US,44.39,-69.58,3670 +04359,"PO BOX",0,"South Gardiner","S Gardiner",,ME,"Kennebec County",America/New_York,207,NA,US,44.18,-69.76,538 +04360,STANDARD,0,Vienna,,,ME,"Kennebec County",America/New_York,207,NA,US,44.53,-69.98,530 +04363,STANDARD,0,Windsor,,,ME,"Kennebec County",America/New_York,207,NA,US,44.31,-69.58,2420 +04364,STANDARD,0,Winthrop,,,ME,"Kennebec County",America/New_York,207,NA,US,44.31,-69.96,5310 +04401,STANDARD,0,Bangor,"Glenburn, Hermon, Veazie",,ME,"Penobscot County",America/New_York,207,NA,US,44.83,-68.78,35140 +04402,"PO BOX",0,Bangor,,,ME,"Penobscot County",America/New_York,207,NA,US,44.83,-68.78,1831 +04406,STANDARD,0,Abbot,"Blanchard Twp",,ME,"Piscataquis County",America/New_York,207,NA,US,45.18,-69.45,570 +04408,STANDARD,0,Aurora,"Great Pond",,ME,"Hancock County",America/New_York,207,NA,US,44.85,-68.32,197 +04410,STANDARD,0,Bradford,,,ME,"Penobscot County",America/New_York,207,NA,US,45.06,-68.93,980 +04411,STANDARD,0,Bradley,,,ME,"Penobscot County",America/New_York,207,NA,US,44.92,-68.62,1350 +04412,STANDARD,0,Brewer,,,ME,"Penobscot County",America/New_York,207,NA,US,44.77,-68.73,8490 +04413,STANDARD,0,Brookton,"Forest City Twp, Forest Twp, Frst City Twp",,ME,"Washington County",America/New_York,207,NA,US,45.52,-67.76,192 +04414,STANDARD,0,Brownville,"Barnard Twp, Ebeemee Twp, Wiliamsbg Twp, Williamsburg Twp",,ME,"Piscataquis County",America/New_York,207,NA,US,45.3,-69.03,1010 +04415,"PO BOX",0,"Brownville Junction","Brownvlle Jct",,ME,"Piscataquis County",America/New_York,207,NA,US,45.4,-69.06,337 +04416,STANDARD,0,Bucksport,"Verona Island",,ME,"Hancock County",America/New_York,207,NA,US,44.6,-68.79,4760 +04417,STANDARD,0,Burlington,,,ME,"Penobscot County",America/New_York,207,NA,US,45.2,-68.42,300 +04418,STANDARD,0,Greenbush,"Cardville, Costigan, Greenfield Twp, Greenfld Twp, Olamon",,ME,"Penobscot County",America/New_York,207,NA,US,45.08,-68.59,1320 +04419,STANDARD,0,Carmel,,,ME,"Penobscot County",America/New_York,207,NA,US,44.79,-69.05,2650 +04420,UNIQUE,0,Castine,,"Maine Maritime Academy",ME,"Hancock County",America/New_York,207,NA,US,44.38,-68.8,14 +04421,STANDARD,0,Castine,,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.81,600 +04422,STANDARD,0,Charleston,,,ME,"Penobscot County",America/New_York,207,NA,US,45.08,-69.04,1010 +04424,STANDARD,0,Danforth,Weston,,ME,"Washington County",America/New_York,207,NA,US,45.66,-67.86,620 +04426,STANDARD,0,"Dover Foxcroft","Atkinson, Bowerbank, Dovr Foxcroft, Dvr Foxcroft, Sebec",,ME,"Piscataquis County",America/New_York,207,NA,US,45.21,-69.18,3860 +04427,STANDARD,0,Corinth,,"East Corinth",ME,"Penobscot County",America/New_York,207,NA,US,44.98,-69.01,2580 +04428,STANDARD,0,Eddington,Clifton,,ME,"Penobscot County",America/New_York,207,NA,US,44.82,-68.69,2670 +04429,STANDARD,0,Holden,"Dedham, East Holden",,ME,"Penobscot County",America/New_York,207,NA,US,44.75,-68.67,4620 +04430,STANDARD,0,"East Millinocket","E Millinocket",,ME,"Penobscot County",America/New_York,207,NA,US,45.62,-68.57,1200 +04431,"PO BOX",0,"East Orland",,,ME,"Hancock County",America/New_York,207,NA,US,44.56,-68.67,342 +04434,STANDARD,0,Etna,,,ME,"Penobscot County",America/New_York,207,NA,US,44.82,-69.11,1110 +04435,STANDARD,0,Exeter,,,ME,"Penobscot County",America/New_York,207,NA,US,44.97,-69.14,760 +04438,STANDARD,0,Frankfort,,,ME,"Waldo County",America/New_York,207,NA,US,44.6,-68.87,1010 +04441,STANDARD,0,Greenville,"Beaver Cove, Frenchtown Twp, Frenchtwn Twp, Lily Bay Twp, Shirley",,ME,"Piscataquis County",America/New_York,207,NA,US,45.46,-69.59,1210 +04442,STANDARD,0,"Greenville Junction","Greenvlle Jct",,ME,"Piscataquis County",America/New_York,207,NA,US,45.47,-69.69,509 +04443,STANDARD,0,Guilford,"Eliotsvle Twp, Elliottsville Twp, Parkman, Willimantic",,ME,"Piscataquis County",America/New_York,207,NA,US,45.23,-69.35,1820 +04444,STANDARD,0,Hampden,Newburgh,,ME,"Penobscot County",America/New_York,207,NA,US,44.73,-68.95,8800 +04448,STANDARD,0,Howland,"Edinburg, Seboeis Plt",,ME,"Penobscot County",America/New_York,207,NA,US,45.25,-68.66,1040 +04449,STANDARD,0,Hudson,,,ME,"Penobscot County",America/New_York,207,NA,US,45,-68.88,1170 +04450,STANDARD,0,Kenduskeag,,,ME,"Penobscot County",America/New_York,207,NA,US,44.91,-68.93,1190 +04451,STANDARD,0,Kingman,"Kingman Twp, Macwahoc Plt",,ME,"Penobscot County",America/New_York,207,NA,US,45.54,-68.2,256 +04453,STANDARD,0,Lagrange,Maxfield,,ME,"Penobscot County",America/New_York,207,NA,US,45.16,-68.84,570 +04454,"PO BOX",0,"Lambert Lake",,,ME,"Washington County",America/New_York,207,NA,US,45.54,-67.52,66 +04455,STANDARD,0,Lee,,,ME,"Penobscot County",America/New_York,207,NA,US,45.36,-68.28,750 +04456,STANDARD,0,Levant,,,ME,"Penobscot County",America/New_York,207,NA,US,44.86,-68.93,2640 +04457,STANDARD,0,Lincoln,"Chester, Lincoln Center, Lincoln Ctr, Mattamisc Twp, Mattamiscontis Twp, Woodville",,ME,"Penobscot County",America/New_York,207,NA,US,45.36,-68.5,4710 +04459,STANDARD,0,Mattawamkeag,"Molunkus Twp",,ME,"Penobscot County",America/New_York,207,NA,US,45.51,-68.35,530 +04460,STANDARD,0,Medway,"Grindstone, Grindstone Twp, Soldiertown, Soldiertown Twp",,ME,"Penobscot County",America/New_York,207,NA,US,45.6,-68.53,1010 +04461,STANDARD,0,Milford,,,ME,"Penobscot County",America/New_York,207,NA,US,44.94,-68.64,2590 +04462,STANDARD,0,Millinocket,"Cedar Lake, Cedar Lake Twp, Indian Purch, Indian Purchase Twp, Long A Twp",,ME,"Penobscot County",America/New_York,207,NA,US,45.65,-68.69,3400 +04463,STANDARD,0,Milo,"Derby, Lake View Plt, Medford, Orneville Twp",,ME,"Piscataquis County",America/New_York,207,NA,US,45.25,-68.98,2130 +04464,STANDARD,0,Monson,,,ME,"Piscataquis County",America/New_York,207,NA,US,45.28,-69.5,510 +04467,"PO BOX",1,Olamon,,,ME,"Penobscot County",America/New_York,207,NA,US,45.12,-68.61,0 +04468,STANDARD,0,"Old Town","Alton, Argyle Twp, Indian Island",,ME,"Penobscot County",America/New_York,207,NA,US,44.95,-68.73,6890 +04469,UNIQUE,0,Orono,,"University Of Maine",ME,"Penobscot County",America/New_York,207,NA,US,44.9,-68.67,100 +04471,STANDARD,0,Orient,"Amity, Cary Plt","North Amity",ME,"Aroostook County",America/New_York,207,NA,US,45.81,-67.84,400 +04472,STANDARD,0,Orland,,,ME,"Hancock County",America/New_York,207,NA,US,44.57,-68.73,1740 +04473,STANDARD,0,Orono,,,ME,"Penobscot County",America/New_York,207,NA,US,44.88,-68.68,4290 +04474,STANDARD,0,Orrington,,,ME,"Penobscot County",America/New_York,207,NA,US,44.73,-68.82,3530 +04475,STANDARD,0,Passadumkeag,,,ME,"Penobscot County",America/New_York,207,NA,US,45.18,-68.61,280 +04476,STANDARD,0,Penobscot,,,ME,"Hancock County",America/New_York,207,NA,US,44.46,-68.71,950 +04478,STANDARD,0,Rockwood,"Little W Twp, Pittstn Acdmy, Pittston Academy Grant Twp, Plymouth Twp, Seboomook Twp, Tomhegan Twp",,ME,"Somerset County",America/New_York,207,NA,US,45.67,-69.74,240 +04479,STANDARD,0,Sangerville,,,ME,"Piscataquis County",America/New_York,207,NA,US,45.16,-69.35,1010 +04481,STANDARD,0,Sebec,Brownville,,ME,"Piscataquis County",America/New_York,207,NA,US,45.27,-69.11,510 +04485,"PO BOX",0,"Shirley Mills",Greenville,Shirley,ME,"Piscataquis County",America/New_York,207,NA,US,45.35,-69.63,124 +04487,STANDARD,0,Springfield,"Carroll Plt, Lakeville, Prentiss Twp, Webster Plt",,ME,"Penobscot County",America/New_York,207,NA,US,45.39,-68.13,530 +04488,STANDARD,0,Stetson,,,ME,"Penobscot County",America/New_York,207,NA,US,44.89,-69.14,1010 +04489,"PO BOX",0,Stillwater,,,ME,"Penobscot County",America/New_York,207,NA,US,44.91,-68.69,468 +04490,STANDARD,0,Topsfield,"Codyville Plt, Waite",,ME,"Washington County",America/New_York,207,NA,US,45.41,-67.73,210 +04491,"PO BOX",0,Vanceboro,,,ME,"Washington County",America/New_York,207,NA,US,45.56,-67.43,176 +04492,STANDARD,0,Waite,Talmadge,,ME,"Washington County",America/New_York,207,NA,US,45.32,-67.69,141 +04493,STANDARD,0,"West Enfield","Enfield, Lowell",,ME,"Penobscot County",America/New_York,207,NA,US,45.26,-68.58,1580 +04495,STANDARD,0,Winn,,,ME,"Penobscot County",America/New_York,207,NA,US,45.48,-68.37,280 +04496,STANDARD,0,Winterport,,,ME,"Waldo County",America/New_York,207,NA,US,44.65,-68.85,3410 +04497,STANDARD,0,Wytopitlock,"Bancroft, Drew Plt, Glenwood Plt, Haynesville, Reed Plt",,ME,"Aroostook County",America/New_York,207,NA,US,45.64,-68.07,210 +04530,STANDARD,0,Bath,"Arrowsic, West Bath",,ME,"Sagadahoc County",America/New_York,207,NA,US,43.93,-69.83,9740 +04535,STANDARD,0,Alna,,,ME,"Lincoln County",America/New_York,207,NA,US,44.1,-69.6,720 +04537,STANDARD,0,Boothbay,,,ME,"Lincoln County",America/New_York,207,NA,US,43.88,-69.62,1890 +04538,STANDARD,0,"Boothbay Harbor","Boothbay Hbr, Capitol Is, Capitol Island",,ME,"Lincoln County",America/New_York,207,NA,US,43.85,-69.62,1570 +04539,STANDARD,0,Bristol,,,ME,"Lincoln County",America/New_York,207,NA,US,43.95,-69.5,1100 +04541,STANDARD,0,Chamberlain,,,ME,"Lincoln County",America/New_York,207,NA,US,43.88,-69.49,75 +04543,STANDARD,0,Damariscotta,,,ME,"Lincoln County",America/New_York,207,NA,US,44.03,-69.51,2050 +04544,STANDARD,0,"East Boothbay",,,ME,"Lincoln County",America/New_York,207,NA,US,43.82,-69.59,650 +04547,STANDARD,0,Friendship,,,ME,"Knox County",America/New_York,207,NA,US,43.98,-69.33,1030 +04548,STANDARD,0,Georgetown,"Mac Mahan","Five Islands",ME,"Sagadahoc County",America/New_York,207,NA,US,43.8,-69.74,910 +04549,STANDARD,0,"Isle Of Springs","Boothbay, Is Of Springs",,ME,"Lincoln County",America/New_York,207,NA,US,43.89,-69.62,0 +04551,STANDARD,0,Bremen,Medomak,,ME,"Lincoln County",America/New_York,207,NA,US,44,-69.42,700 +04553,STANDARD,0,Newcastle,,,ME,"Lincoln County",America/New_York,207,NA,US,44.05,-69.57,1890 +04554,STANDARD,0,"New Harbor",,,ME,"Lincoln County",America/New_York,207,NA,US,43.85,-69.5,620 +04555,STANDARD,0,Nobleboro,,,ME,"Lincoln County",America/New_York,207,NA,US,44.07,-69.48,1640 +04556,STANDARD,0,Edgecomb,,,ME,"Lincoln County",America/New_York,207,NA,US,43.95,-69.63,1130 +04558,STANDARD,0,Pemaquid,"New Harbor",,ME,"Lincoln County",America/New_York,207,NA,US,43.89,-69.52,240 +04562,STANDARD,0,Phippsburg,,,ME,"Sagadahoc County",America/New_York,207,NA,US,43.82,-69.81,1830 +04563,STANDARD,0,Cushing,,,ME,"Knox County",America/New_York,207,NA,US,44.01,-69.24,1270 +04564,STANDARD,0,"Round Pond",,,ME,"Lincoln County",America/New_York,207,NA,US,43.91,-69.46,440 +04565,"PO BOX",0,"Sebasco Estates","Sebasco Ests",,ME,"Sagadahoc County",America/New_York,207,NA,US,43.77,-69.84,162 +04568,STANDARD,0,"South Bristol",,,ME,"Lincoln County",America/New_York,207,NA,US,43.86,-69.56,330 +04570,"PO BOX",0,"Squirrel Island","Boothbay Harbor, Boothbay Hbr, Squirrel Is",,ME,"Lincoln County",America/New_York,207,NA,US,43.81,-69.63,0 +04571,STANDARD,0,Trevett,,,ME,"Lincoln County",America/New_York,207,NA,US,43.89,-69.67,250 +04572,STANDARD,0,Waldoboro,,,ME,"Lincoln County",America/New_York,207,NA,US,44.09,-69.38,4400 +04573,STANDARD,0,Walpole,,,ME,"Lincoln County",America/New_York,207,NA,US,43.94,-69.55,480 +04574,STANDARD,0,Washington,,,ME,"Knox County",America/New_York,207,NA,US,44.27,-69.36,1340 +04575,"PO BOX",0,"West Boothbay Harbor","W Boothbay Ha, W Boothbay Harbor, W Boothby Hbr",,ME,"Lincoln County",America/New_York,207,NA,US,43.85,-69.65,260 +04576,STANDARD,0,Southport,Newagen,,ME,"Lincoln County",America/New_York,207,NA,US,43.81,-69.66,540 +04578,STANDARD,0,Wiscasset,"Westport Is, Westport Island",,ME,"Lincoln County",America/New_York,207,NA,US,44.01,-69.67,3920 +04579,STANDARD,0,Woolwich,,,ME,"Sagadahoc County",America/New_York,207,NA,US,43.96,-69.78,2940 +04605,STANDARD,0,Ellsworth,"Amherst, Fletchers Landing Twp, Fletchers Ldg, Lamoine, Mariaville, Osborn, Otis, Trenton, Waltham",,ME,"Hancock County",America/New_York,207,NA,US,44.58,-68.49,12070 +04606,STANDARD,0,Addison,,,ME,"Washington County",America/New_York,207,NA,US,44.54,-67.71,950 +04607,STANDARD,0,Gouldsboro,"S Gouldsboro, South Gouldsboro",,ME,"Hancock County",America/New_York,207,NA,US,44.47,-68.03,980 +04609,STANDARD,0,"Bar Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.38,-68.21,4230 +04611,"PO BOX",0,Beals,,,ME,"Washington County",America/New_York,207,NA,US,44.48,-67.58,585 +04612,STANDARD,0,Bernard,"West Tremont",,ME,"Hancock County",America/New_York,207,NA,US,44.24,-68.35,420 +04613,STANDARD,0,"Birch Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.38,-68.04,200 +04614,STANDARD,0,"Blue Hill",,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.58,2560 +04616,STANDARD,0,Brooklin,,,ME,"Hancock County",America/New_York,207,NA,US,44.26,-68.56,740 +04617,STANDARD,0,Brooksville,,,ME,"Hancock County",America/New_York,207,NA,US,44.35,-68.76,660 +04619,STANDARD,0,Calais,,,ME,"Washington County",America/New_York,207,NA,US,45.13,-67.2,2540 +04622,STANDARD,0,Cherryfield,"Beddington, Deblois",,ME,"Washington County",America/New_York,207,NA,US,44.6,-67.92,970 +04623,STANDARD,0,"Columbia Falls","Centerville, Columbia, Columbia Fls",,ME,"Washington County",America/New_York,207,NA,US,44.65,-67.72,780 +04624,STANDARD,0,Corea,,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-67.99,159 +04625,"PO BOX",0,"Cranberry Isles","Cranberry Is",,ME,"Hancock County",America/New_York,207,NA,US,44.24,-68.26,49 +04626,STANDARD,0,Cutler,,,ME,"Washington County",America/New_York,207,NA,US,44.69,-67.21,430 +04627,STANDARD,0,"Deer Isle",,,ME,"Hancock County",America/New_York,207,NA,US,44.22,-68.67,1410 +04628,STANDARD,0,Dennysville,"Edmunds Twp, Marion Twp",,ME,"Washington County",America/New_York,207,NA,US,44.9,-67.22,520 +04629,"PO BOX",0,"East Blue Hill","E Blue Hill, Surry",,ME,"Hancock County",America/New_York,207,NA,US,44.42,-68.51,56 +04630,STANDARD,0,"East Machias",,,ME,"Washington County",America/New_York,207,NA,US,44.73,-67.39,1230 +04631,STANDARD,0,Eastport,,,ME,"Washington County",America/New_York,207,NA,US,44.91,-67.01,960 +04634,STANDARD,0,Franklin,Eastbrook,,ME,"Hancock County",America/New_York,207,NA,US,44.58,-68.23,1590 +04635,"PO BOX",0,Frenchboro,,,ME,"Hancock County",America/New_York,207,NA,US,44.11,-68.36,64 +04637,"PO BOX",0,"Grand Lake Stream","Grand Lk Strm",,ME,"Washington County",America/New_York,207,NA,US,45.17,-67.77,136 +04640,STANDARD,0,Hancock,,,ME,"Hancock County",America/New_York,207,NA,US,44.52,-68.25,2040 +04642,STANDARD,0,Harborside,,,ME,"Hancock County",America/New_York,207,NA,US,44.33,-68.81,143 +04643,STANDARD,0,Harrington,,,ME,"Washington County",America/New_York,207,NA,US,44.61,-67.81,850 +04644,"PO BOX",0,"Hulls Cove",,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.25,330 +04645,"PO BOX",0,"Isle Au Haut",Stonington,,ME,"Knox County",America/New_York,207,NA,US,44.04,-68.62,65 +04646,"PO BOX",0,Islesford,,,ME,"Hancock County",America/New_York,207,NA,US,44.25,-68.22,92 +04648,STANDARD,0,Jonesboro,,,ME,"Washington County",America/New_York,207,NA,US,44.66,-67.57,510 +04649,STANDARD,0,Jonesport,,,ME,"Washington County",America/New_York,207,NA,US,44.53,-67.59,1000 +04650,STANDARD,0,"Little Deer Isle","Ltl Deer Is",,ME,"Hancock County",America/New_York,207,NA,US,44.28,-68.71,240 +04652,STANDARD,0,Lubec,"Trescott Twp",,ME,"Washington County",America/New_York,207,NA,US,44.79,-67.11,1230 +04653,STANDARD,0,"Bass Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.21,-68.33,480 +04654,STANDARD,0,Machias,"Day Block Twp, Marshfield, Northfield, Roque Bluffs, Whitneyville",,ME,"Washington County",America/New_York,207,NA,US,44.7,-67.47,2470 +04655,STANDARD,0,Machiasport,"Bucks Harbor",,ME,"Washington County",America/New_York,207,NA,US,44.69,-67.39,760 +04657,STANDARD,0,Meddybemps,"Cathance Twp, Cooper",,ME,"Washington County",America/New_York,207,NA,US,45.03,-67.35,250 +04658,STANDARD,0,Milbridge,,,ME,"Washington County",America/New_York,207,NA,US,44.52,-67.88,1170 +04660,STANDARD,0,"Mount Desert","Otter Creek",,ME,"Hancock County",America/New_York,207,NA,US,44.34,-68.35,1350 +04662,"PO BOX",0,"Northeast Harbor","Ne Harbor",,ME,"Hancock County",America/New_York,207,NA,US,44.3,-68.29,518 +04664,STANDARD,0,Sullivan,"N Sullivan, North Sullivan",,ME,"Hancock County",America/New_York,207,NA,US,44.53,-68.15,1020 +04666,STANDARD,0,Pembroke,Charlotte,,ME,"Washington County",America/New_York,207,NA,US,44.95,-67.16,930 +04667,STANDARD,0,Perry,"Pleasant Point, Pleasant Pt",,ME,"Washington County",America/New_York,207,NA,US,44.97,-67.07,1180 +04668,STANDARD,0,Princeton,"Big Lake Twp, Grand Lake Stream, Grand Lk Strm, Greenlaw Chop, Greenlaw Chopping Twp, Indian Twp",,ME,"Washington County",America/New_York,207,NA,US,45.22,-67.57,1350 +04669,STANDARD,0,"Prospect Harbor","Prospect Hbr",,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.02,280 +04671,STANDARD,0,Robbinston,,,ME,"Washington County",America/New_York,207,NA,US,45.06,-67.16,510 +04672,"PO BOX",0,"Salsbury Cove",,,ME,"Hancock County",America/New_York,207,NA,US,44.43,-68.32,159 +04673,STANDARD,0,Sargentville,,,ME,"Hancock County",America/New_York,207,NA,US,44.31,-68.68,107 +04674,STANDARD,0,"Seal Cove",,,ME,"Hancock County",America/New_York,207,NA,US,44.3,-68.41,340 +04675,"PO BOX",0,"Seal Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.29,-68.24,276 +04676,STANDARD,0,Sedgwick,,,ME,"Hancock County",America/New_York,207,NA,US,44.35,-68.63,790 +04677,STANDARD,0,Sorrento,,,ME,"Hancock County",America/New_York,207,NA,US,44.49,-68.18,240 +04679,STANDARD,0,"Southwest Harbor","Southwest Hbr",,ME,"Hancock County",America/New_York,207,NA,US,44.27,-68.33,1670 +04680,STANDARD,0,Steuben,,,ME,"Washington County",America/New_York,207,NA,US,44.51,-67.96,990 +04681,STANDARD,0,Stonington,,,ME,"Hancock County",America/New_York,207,NA,US,44.18,-68.67,960 +04683,STANDARD,0,Sunset,,,ME,"Hancock County",America/New_York,207,NA,US,44.25,-68.79,132 +04684,STANDARD,0,Surry,,,ME,"Hancock County",America/New_York,207,NA,US,44.49,-68.5,1430 +04685,STANDARD,0,"Swans Island",Minturn,,ME,"Hancock County",America/New_York,207,NA,US,44.14,-68.45,330 +04686,STANDARD,0,Wesley,Machias,,ME,"Washington County",America/New_York,207,NA,US,44.95,-67.66,108 +04691,STANDARD,0,Whiting,,,ME,"Washington County",America/New_York,207,NA,US,44.76,-67.26,350 +04693,STANDARD,0,"Winter Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.39,-68.08,420 +04694,STANDARD,0,Baileyville,"Alexander, Baring Plt, Crawford, Woodland Washington County",,ME,"Washington County",America/New_York,207,NA,US,45.09,-67.46,1910 +04730,STANDARD,0,Houlton,"Hammond, Hodgdon, Linneus, Littleton, Ludlow",,ME,"Aroostook County",America/New_York,207,NA,US,46.11,-67.83,8050 +04732,STANDARD,0,Ashland,"Garfield Plt, Masardis, Nashville Plt, Sheridan",,ME,"Aroostook County",America/New_York,207,NA,US,46.63,-68.4,1320 +04733,STANDARD,0,Benedicta,,,ME,"Aroostook County",America/New_York,207,NA,US,45.8,-68.41,210 +04734,"PO BOX",0,Blaine,,,ME,"Aroostook County",America/New_York,207,NA,US,46.5,-67.86,530 +04735,STANDARD,0,Bridgewater,,,ME,"Aroostook County",America/New_York,207,NA,US,46.42,-67.84,430 +04736,STANDARD,0,Caribou,"Connor Twp, Woodland",,ME,"Aroostook County",America/New_York,207,NA,US,46.86,-67.99,7460 +04737,"PO BOX",0,"Clayton Lake",,,ME,"Aroostook County",America/New_York,207,NA,US,46.61,-69.52,0 +04738,"PO BOX",0,Crouseville,,,ME,"Aroostook County",America/New_York,207,NA,US,46.76,-68.08,148 +04739,STANDARD,0,"Eagle Lake","Quimby, Winterville Plt, Wntervlle Plt",,ME,"Aroostook County",America/New_York,207,NA,US,47.04,-68.59,700 +04740,STANDARD,0,Easton,,,ME,"Aroostook County",America/New_York,207,NA,US,46.64,-67.91,1070 +04741,"PO BOX",0,"Estcourt Station","Estcourt Sta",,ME,"Aroostook County",America/New_York,207,NA,US,47.45,-69.22,0 +04742,STANDARD,0,"Fort Fairfield","Ft Fairfield",,ME,"Aroostook County",America/New_York,207,NA,US,46.76,-67.83,2700 +04743,STANDARD,0,"Fort Kent","New Canada, St John Plt",,ME,"Aroostook County",America/New_York,207,NA,US,47.26,-68.57,3650 +04744,"PO BOX",0,"Fort Kent Mills","Ft Kent Mls",,ME,"Aroostook County",America/New_York,207,NA,US,47.23,-68.58,351 +04745,STANDARD,0,Frenchville,"Upper Frenchville, Upper Frnchvl",,ME,"Aroostook County",America/New_York,207,NA,US,47.28,-68.38,880 +04746,STANDARD,0,"Grand Isle",Lille,,ME,"Aroostook County",America/New_York,207,NA,US,47.3,-68.15,280 +04747,STANDARD,0,"Island Falls","Crystal, Dyer Brook",,ME,"Aroostook County",America/New_York,207,NA,US,46,-68.27,980 +04750,STANDARD,0,Limestone,"Caswell, Loring Cm Ctr",,ME,"Aroostook County",America/New_York,207,NA,US,46.91,-67.83,1440 +04751,UNIQUE,0,Limestone,,"Defense Finance Accounting",ME,"Aroostook County",America/New_York,207,NA,US,46.91,-67.83,0 +04756,STANDARD,0,Madawaska,,,ME,"Aroostook County",America/New_York,207,NA,US,47.34,-68.33,2480 +04757,STANDARD,0,Mapleton,"Castle Hill, Chapman",,ME,"Aroostook County",America/New_York,207,NA,US,46.68,-68.16,2410 +04758,STANDARD,0,"Mars Hill",,,ME,"Aroostook County",America/New_York,207,NA,US,46.51,-67.86,1380 +04760,STANDARD,0,Monticello,,,ME,"Aroostook County",America/New_York,207,NA,US,46.3,-67.84,590 +04761,STANDARD,0,"New Limerick",Houlton,,ME,"Aroostook County",America/New_York,207,NA,US,46.1,-67.96,480 +04762,STANDARD,0,"New Sweden",,,ME,"Aroostook County",America/New_York,207,NA,US,46.94,-68.12,450 +04763,STANDARD,0,Oakfield,,,ME,"Aroostook County",America/New_York,207,NA,US,46.09,-68.15,600 +04764,STANDARD,0,Oxbow,,,ME,"Aroostook County",America/New_York,207,NA,US,46.41,-68.49,56 +04765,STANDARD,0,Patten,"Mount Chase",,ME,"Penobscot County",America/New_York,207,NA,US,45.99,-68.44,870 +04766,STANDARD,0,Perham,,,ME,"Aroostook County",America/New_York,207,NA,US,46.84,-68.19,340 +04768,STANDARD,0,Portage,"Portage Lake",,ME,"Aroostook County",America/New_York,207,NA,US,46.76,-68.47,300 +04769,STANDARD,0,"Presque Isle",,,ME,"Aroostook County",America/New_York,207,NA,US,46.68,-67.98,7490 +04772,STANDARD,0,"Saint Agatha",,,ME,"Aroostook County",America/New_York,207,NA,US,47.24,-68.31,570 +04773,STANDARD,0,"Saint David",,,ME,"Aroostook County",America/New_York,207,NA,US,47.31,-68.22,580 +04774,STANDARD,0,"Saint Francis",Allagash,,ME,"Aroostook County",America/New_York,207,NA,US,47.17,-68.89,440 +04775,"PO BOX",0,Sheridan,,,ME,"Aroostook County",America/New_York,207,NA,US,46.66,-68.41,32 +04776,STANDARD,0,Sherman,"Sherman Mills, Silver Ridge, Silver Ridge Twp",,ME,"Aroostook County",America/New_York,207,NA,US,45.81,-68.31,670 +04777,STANDARD,0,Stacyville,"Herseytown Twp, Hrsytown Twp, Sherman Sta, Sherman Station",,ME,"Penobscot County",America/New_York,207,NA,US,45.89,-68.43,260 +04779,STANDARD,0,Sinclair,"Cross Lake Twp, Cross Lke Twp",,ME,"Aroostook County",America/New_York,207,NA,US,47.16,-68.3,310 +04780,STANDARD,0,"Smyrna Mills","Hersey, Merrill, Moro Plt",,ME,"Aroostook County",America/New_York,207,NA,US,46.24,-68.29,560 +04781,STANDARD,0,Wallagrass,,"Soldier Pond",ME,"Aroostook County",America/New_York,207,NA,US,47.15,-68.57,450 +04783,STANDARD,0,Stockholm,Westmanland,,ME,"Aroostook County",America/New_York,207,NA,US,47.04,-68.14,370 +04785,STANDARD,0,"Van Buren","Cyr Plt, Hamlin",,ME,"Aroostook County",America/New_York,207,NA,US,47.16,-67.95,1600 +04786,STANDARD,0,Washburn,Wade,,ME,"Aroostook County",America/New_York,207,NA,US,46.79,-68.15,1380 +04787,STANDARD,0,Westfield,,,ME,"Aroostook County",America/New_York,207,NA,US,46.57,-67.92,350 +04841,STANDARD,0,Rockland,,,ME,"Knox County",America/New_York,207,NA,US,44.12,-69.13,5830 +04843,STANDARD,0,Camden,,,ME,"Knox County",America/New_York,207,NA,US,44.2,-69.06,4570 +04846,"PO BOX",1,"Glen Cove",,,ME,"Knox County",America/New_York,207,NA,US,44.11,-69.08,158 +04847,STANDARD,0,Hope,Camden,,ME,"Knox County",America/New_York,207,NA,US,44.26,-69.15,1490 +04848,STANDARD,0,Islesboro,,,ME,"Waldo County",America/New_York,207,NA,US,44.3,-68.9,480 +04849,STANDARD,0,Lincolnville,Northport,,ME,"Waldo County",America/New_York,207,NA,US,44.28,-69,3320 +04850,"PO BOX",0,"Lincolnville Center","Lincolnvl Ctr",,ME,"Waldo County",America/New_York,207,NA,US,44.3,-69.07,181 +04851,"PO BOX",0,Matinicus,,,ME,"Knox County",America/New_York,207,NA,US,43.86,-68.88,49 +04852,"PO BOX",0,Monhegan,,,ME,"Lincoln County",America/New_York,207,NA,US,43.76,-69.32,67 +04853,STANDARD,0,"North Haven",,,ME,"Knox County",America/New_York,207,NA,US,44.15,-68.86,380 +04854,STANDARD,0,"Owls Head",,,ME,"Knox County",America/New_York,207,NA,US,44.08,-69.05,1360 +04855,"PO BOX",0,"Port Clyde",,,ME,"Knox County",America/New_York,207,NA,US,43.93,-69.25,294 +04856,STANDARD,0,Rockport,,,ME,"Knox County",America/New_York,207,NA,US,44.18,-69.07,3420 +04858,STANDARD,0,"South Thomaston","S Thomaston",,ME,"Knox County",America/New_York,207,NA,US,44.05,-69.12,1340 +04859,STANDARD,0,"Spruce Head","Tenants Harbor, Tenants Hbr",,ME,"Knox County",America/New_York,207,NA,US,44.01,-69.17,610 +04860,STANDARD,0,"Tenants Harbor","Saint George, Tenants Hbr",,ME,"Knox County",America/New_York,207,NA,US,43.95,-69.23,1450 +04861,STANDARD,0,Thomaston,,,ME,"Knox County",America/New_York,207,NA,US,44.08,-69.18,2350 +04862,STANDARD,0,Union,Appleton,,ME,"Knox County",America/New_York,207,NA,US,44.21,-69.27,3350 +04863,STANDARD,0,Vinalhaven,,,ME,"Knox County",America/New_York,207,NA,US,44.04,-68.83,1080 +04864,STANDARD,0,Warren,,,ME,"Knox County",America/New_York,207,NA,US,44.12,-69.24,3540 +04865,"PO BOX",0,"West Rockport",,,ME,"Knox County",America/New_York,207,NA,US,44.19,-69.15,301 +04901,STANDARD,0,Waterville,"Benton, Winslow",,ME,"Kennebec County",America/New_York,207,NA,US,44.56,-69.55,19610 +04903,"PO BOX",0,Waterville,,,ME,"Kennebec County",America/New_York,207,NA,US,44.54,-69.66,1125 +04910,STANDARD,0,Albion,,,ME,"Kennebec County",America/New_York,207,NA,US,44.53,-69.44,1760 +04911,STANDARD,0,Anson,Starks,,ME,"Somerset County",America/New_York,207,NA,US,44.77,-69.97,1610 +04912,STANDARD,0,Athens,"Brighton Plt",,ME,"Somerset County",America/New_York,207,NA,US,44.92,-69.67,840 +04915,STANDARD,0,Belfast,"Swanville, Waldo",,ME,"Waldo County",America/New_York,207,NA,US,44.42,-69.02,7500 +04917,STANDARD,0,Belgrade,,,ME,"Kennebec County",America/New_York,207,NA,US,44.44,-69.83,2730 +04918,STANDARD,0,"Belgrade Lakes","Belgrade Lks",,ME,"Kennebec County",America/New_York,207,NA,US,44.52,-69.87,350 +04920,STANDARD,0,Bingham,"Concord Twp, Moscow, Pleasant Ridge Plt, Plsnt Rdg Plt",,ME,"Somerset County",America/New_York,207,NA,US,45.05,-69.87,1120 +04921,STANDARD,0,Brooks,Jackson,,ME,"Waldo County",America/New_York,207,NA,US,44.55,-69.12,1370 +04922,STANDARD,0,Burnham,,,ME,"Waldo County",America/New_York,207,NA,US,44.69,-69.42,910 +04923,STANDARD,0,Cambridge,,,ME,"Somerset County",America/New_York,207,NA,US,45.02,-69.47,340 +04924,STANDARD,0,Canaan,,,ME,"Somerset County",America/New_York,207,NA,US,44.76,-69.56,1770 +04925,STANDARD,0,Caratunk,,,ME,"Somerset County",America/New_York,207,NA,US,45.23,-69.99,71 +04926,"PO BOX",0,"China Village","China Vlg",,ME,"Kennebec County",America/New_York,207,NA,US,44.48,-69.51,498 +04927,STANDARD,0,Clinton,,,ME,"Kennebec County",America/New_York,207,NA,US,44.63,-69.5,2930 +04928,STANDARD,0,Corinna,,,ME,"Penobscot County",America/New_York,207,NA,US,44.92,-69.26,1810 +04929,STANDARD,0,Detroit,,,ME,"Somerset County",America/New_York,207,NA,US,44.79,-69.29,730 +04930,STANDARD,0,Dexter,Ripley,,ME,"Penobscot County",America/New_York,207,NA,US,45.01,-69.29,3310 +04932,STANDARD,0,Dixmont,,,ME,"Penobscot County",America/New_York,207,NA,US,44.68,-69.16,1080 +04933,"PO BOX",0,"East Newport",,,ME,"Penobscot County",America/New_York,207,NA,US,44.82,-69.23,118 +04935,"PO BOX",0,"East Vassalboro","E Vassalboro",,ME,"Kennebec County",America/New_York,207,NA,US,44.44,-69.6,136 +04936,STANDARD,0,Eustis,"Chain Of Pnds, Chain Of Ponds Twp, Coburn Gore, Jim Pond Twp",,ME,"Franklin County",America/New_York,207,NA,US,45.21,-70.47,220 +04937,STANDARD,0,Fairfield,,,ME,"Somerset County",America/New_York,207,NA,US,44.59,-69.6,5370 +04938,STANDARD,0,Farmington,"Chesterville, Industry",,ME,"Franklin County",America/New_York,207,NA,US,44.66,-70.14,6500 +04939,STANDARD,0,Garland,,,ME,"Penobscot County",America/New_York,207,NA,US,45.03,-69.16,860 +04940,STANDARD,0,"Farmington Falls","Farmingtn Fls",,ME,"Franklin County",America/New_York,207,NA,US,44.62,-70.08,284 +04941,STANDARD,0,Freedom,Montville,,ME,"Waldo County",America/New_York,207,NA,US,44.47,-69.29,1450 +04942,STANDARD,0,Harmony,"Kingsbury Plt, Mayfield Twp, Wellington",,ME,"Somerset County",America/New_York,207,NA,US,44.97,-69.54,840 +04943,STANDARD,0,Hartland,,,ME,"Somerset County",America/New_York,207,NA,US,44.88,-69.45,1470 +04944,"PO BOX",0,Hinckley,,,ME,"Somerset County",America/New_York,207,NA,US,44.69,-69.65,131 +04945,STANDARD,0,Jackman,"Dennistown, Jhnsn Mtn Twp, Johnson Mountain Twp, Long Pond Twp, Moose River, Parlin Pd Twp, Parlin Pond Twp, Sandy Bay Twp",,ME,"Somerset County",America/New_York,207,NA,US,45.62,-70.25,1040 +04947,STANDARD,0,Kingfield,"Carabaset Vly, Carrabassett Valley",,ME,"Franklin County",America/New_York,207,NA,US,44.95,-70.15,1530 +04949,STANDARD,0,Liberty,,,ME,"Waldo County",America/New_York,207,NA,US,44.38,-69.3,920 +04950,STANDARD,0,Madison,,,ME,"Somerset County",America/New_York,207,NA,US,44.79,-69.88,3610 +04951,STANDARD,0,Monroe,,,ME,"Waldo County",America/New_York,207,NA,US,44.61,-69.01,800 +04952,STANDARD,0,Morrill,Belmont,,ME,"Waldo County",America/New_York,207,NA,US,44.44,-69.14,1760 +04953,STANDARD,0,Newport,,,ME,"Penobscot County",America/New_York,207,NA,US,44.83,-69.26,2640 +04954,"PO BOX",0,"New Portland","N New Portlnd, North New Portland",,ME,"Somerset County",America/New_York,207,NA,US,44.88,-70.09,147 +04955,STANDARD,0,"New Sharon",,,ME,"Franklin County",America/New_York,207,NA,US,44.63,-70.01,1320 +04956,STANDARD,0,"New Vineyard",,,ME,"Franklin County",America/New_York,207,NA,US,44.8,-70.12,640 +04957,STANDARD,0,Norridgewock,Mercer,,ME,"Somerset County",America/New_York,207,NA,US,44.71,-69.79,3340 +04958,STANDARD,0,"North Anson",Embden,,ME,"Somerset County",America/New_York,207,NA,US,44.95,-69.94,1460 +04961,STANDARD,0,"New Portland","Carrying Place Town Twp, Caryng Pl Twp, Dead River Twp, Dead Rvr Twp, Highland Plt, Lexington Twp, N New Portland, N New Portlnd, North New Portland, Pierce Pond, Pierce Pond Twp",,ME,"Somerset County",America/New_York,207,NA,US,45.01,-70.08,760 +04962,"PO BOX",0,"North Vassalboro","N Vassalboro",,ME,"Kennebec County",America/New_York,207,NA,US,44.49,-69.63,392 +04963,STANDARD,0,Oakland,Rome,,ME,"Kennebec County",America/New_York,207,NA,US,44.55,-69.71,6390 +04964,"PO BOX",0,Oquossoc,"Adamstown Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.96,-70.77,268 +04965,STANDARD,0,Palmyra,,,ME,"Somerset County",America/New_York,207,NA,US,44.84,-69.35,1620 +04966,STANDARD,0,Phillips,"Avon, Madrid Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.82,-70.34,1250 +04967,STANDARD,0,Pittsfield,,,ME,"Somerset County",America/New_York,207,NA,US,44.77,-69.38,3340 +04969,STANDARD,0,Plymouth,,,ME,"Penobscot County",America/New_York,207,NA,US,44.76,-69.21,1140 +04970,STANDARD,0,Rangeley,"Coplin Plt, Dallas Plt, Lang Twp, Sandy River Plt, Sandy Rvr Plt",,ME,"Franklin County",America/New_York,207,NA,US,44.96,-70.64,1410 +04971,STANDARD,0,"Saint Albans",,,ME,"Somerset County",America/New_York,207,NA,US,44.91,-69.41,1650 +04972,"PO BOX",0,"Sandy Point",,,ME,"Waldo County",America/New_York,207,NA,US,44.52,-68.84,57 +04973,STANDARD,0,Searsmont,,,ME,"Waldo County",America/New_York,207,NA,US,44.36,-69.19,1230 +04974,STANDARD,0,Searsport,,,ME,"Waldo County",America/New_York,207,NA,US,44.46,-68.91,2340 +04975,"PO BOX",0,Shawmut,,,ME,"Somerset County",America/New_York,207,NA,US,44.63,-69.59,280 +04976,STANDARD,0,Skowhegan,Cornville,,ME,"Somerset County",America/New_York,207,NA,US,44.77,-69.71,7870 +04978,STANDARD,0,Smithfield,,,ME,"Somerset County",America/New_York,207,NA,US,44.63,-69.8,890 +04979,STANDARD,0,Solon,,,ME,"Somerset County",America/New_York,207,NA,US,44.94,-69.85,840 +04981,STANDARD,0,"Stockton Springs","Prospect, Stockton Spgs",,ME,"Waldo County",America/New_York,207,NA,US,44.48,-68.85,1890 +04982,STANDARD,0,Stratton,,,ME,"Franklin County",America/New_York,207,NA,US,45.14,-70.44,540 +04983,STANDARD,0,Strong,"Freeman Twp, Salem Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.8,-70.22,1400 +04984,STANDARD,0,Temple,,,ME,"Franklin County",America/New_York,207,NA,US,44.68,-70.22,420 +04985,STANDARD,0,"West Forks","E Moxie Twp, East Moxie Twp, Indian Stream, Indian Stream Twp, Moxie Gore, Moxie Gore Twp, The Forks Plt",,ME,"Somerset County",America/New_York,207,NA,US,45.37,-69.93,116 +04986,STANDARD,0,Thorndike,Knox,,ME,"Waldo County",America/New_York,207,NA,US,44.57,-69.27,1330 +04987,STANDARD,0,Troy,,,ME,"Waldo County",America/New_York,207,NA,US,44.66,-69.24,860 +04988,STANDARD,0,Unity,,,ME,"Waldo County",America/New_York,207,NA,US,44.61,-69.33,1490 +04989,STANDARD,0,Vassalboro,,,ME,"Kennebec County",America/New_York,207,NA,US,44.45,-69.67,3790 +04992,"PO BOX",0,"West Farmington","W Farmington",,ME,"Franklin County",America/New_York,207,NA,US,44.66,-70.16,603 +05001,STANDARD,0,"White River Junction","White Riv Jct","Lyman, Russtown",VT,"Windsor County",America/New_York,802,NA,US,43.65,-72.32,6530 +05009,UNIQUE,0,"White River Junction","White Riv Jct","Veterans Administration",VT,"Windsor County",America/New_York,802,NA,US,43.65,-72.32,0 +05030,"PO BOX",0,Ascutney,,,VT,"Windsor County",America/New_York,802,NA,US,43.41,-72.42,792 +05031,"PO BOX",0,Barnard,,,VT,"Windsor County",America/New_York,802,NA,US,43.7,-72.59,418 +05032,STANDARD,0,Bethel,,"East Bethel, Lillieville, Olympus",VT,"Windsor County",America/New_York,802,NA,US,43.83,-72.63,2180 +05033,STANDARD,0,Bradford,,"Lower Plain, South Corinth",VT,"Orange County",America/New_York,802,NA,US,43.99,-72.12,2690 +05034,STANDARD,0,Bridgewater,,"Brgwtr, W Bridgewater, West Bridgewater",VT,"Windsor County",America/New_York,802,NA,US,43.58,-72.63,280 +05035,STANDARD,0,"Bridgewater Corners","Brdgewtr Cors, Bridgewtr Cor","Brgwtr Cors, Bridgewater Center, Bridgewater Corn, Bridgewtr Ct, W Bridgewater, West Bridgewater",VT,"Windsor County",America/New_York,802,NA,US,43.6,-72.68,510 +05036,STANDARD,0,Brookfield,,"Brookfield Center",VT,"Orange County",America/New_York,802,NA,US,44.05,-72.6,850 +05037,STANDARD,0,Brownsville,,,VT,"Windsor County",America/New_York,802,NA,US,43.45,-72.49,770 +05038,STANDARD,0,Chelsea,,,VT,"Orange County",America/New_York,802,NA,US,43.98,-72.47,1160 +05039,STANDARD,0,Corinth,,"Cookville, Corinth Center, Corinth Corners, Goose Green, West Corinth",VT,"Orange County",America/New_York,802,NA,US,44.02,-72.23,790 +05040,STANDARD,0,"East Corinth",,,VT,"Orange County",America/New_York,802,NA,US,44.09,-72.22,520 +05041,STANDARD,0,"East Randolph",,"East Brookfield, North Randolph",VT,"Orange County",America/New_York,802,NA,US,43.93,-72.55,240 +05042,STANDARD,0,"East Ryegate",Ryegate,"Mosquitoville, Ryegate Corner",VT,"Caledonia County",America/New_York,802,NA,US,44.19,-72.07,500 +05043,STANDARD,0,"East Thetford",,"E Thetford",VT,"Orange County",America/New_York,802,NA,US,43.81,-72.19,800 +05045,STANDARD,0,Fairlee,,"Ely, Lake Morey",VT,"Orange County",America/New_York,802,NA,US,43.91,-72.19,1310 +05046,STANDARD,0,Groton,,,VT,"Caledonia County",America/New_York,802,NA,US,44.22,-72.2,1080 +05047,"PO BOX",0,Hartford,,,VT,"Windsor County",America/New_York,802,NA,US,43.65,-72.32,778 +05048,STANDARD,0,Hartland,,,VT,"Windsor County",America/New_York,802,NA,US,43.55,-72.4,2280 +05049,"PO BOX",0,"Hartland Four Corners","Hartland Cors",,VT,"Windsor County",America/New_York,802,NA,US,43.54,-72.42,168 +05050,"PO BOX",0,"Mc Indoe Falls","Mc Indoe Fls, Mcindoe Falls",,VT,"Caledonia County",America/New_York,802,NA,US,44.26,-72.06,163 +05051,STANDARD,0,Newbury,,"South Newbury",VT,"Orange County",America/New_York,802,NA,US,44.08,-72.06,900 +05052,STANDARD,0,"North Hartland","N Hartland",,VT,"Windsor County",America/New_York,802,NA,US,43.59,-72.35,320 +05053,STANDARD,0,"North Pomfret",Pomfret,,VT,"Windsor County",America/New_York,802,NA,US,43.72,-72.49,290 +05054,"PO BOX",0,"North Thetford","N Thetford",,VT,"Orange County",America/New_York,802,NA,US,43.85,-72.26,145 +05055,STANDARD,0,Norwich,,,VT,"Windsor County",America/New_York,802,NA,US,43.72,-72.3,3410 +05056,STANDARD,0,Plymouth,,"Plymouth Kingdom, Plymouth Union",VT,"Windsor County",America/New_York,802,NA,US,43.53,-72.73,310 +05058,STANDARD,0,"Post Mills",,,VT,"Orange County",America/New_York,802,NA,US,43.89,-72.26,350 +05059,"PO BOX",0,Quechee,,,VT,"Windsor County",America/New_York,802,NA,US,43.64,-72.43,1420 +05060,STANDARD,0,Randolph,"Braintree, W Brookfield, West Brookfield","East Roxbury",VT,"Orange County",America/New_York,802,NA,US,43.92,-72.67,4130 +05061,STANDARD,0,"Randolph Center","Randolph Ctr",,VT,"Orange County",America/New_York,802,NA,US,43.93,-72.58,1220 +05062,STANDARD,0,Reading,,"Felchville, Hammondsville, Reading Center",VT,"Windsor County",America/New_York,802,NA,US,43.47,-72.55,630 +05065,STANDARD,0,Sharon,,,VT,"Windsor County",America/New_York,802,NA,US,43.78,-72.45,1080 +05067,STANDARD,0,"South Pomfret",Pomfret,,VT,"Windsor County",America/New_York,802,NA,US,43.68,-72.51,260 +05068,STANDARD,0,"South Royalton","Pomfret, S Royalton","East Barnard, Royalton",VT,"Windsor County",America/New_York,802,NA,US,43.82,-72.52,2610 +05069,STANDARD,0,"South Ryegate",,"Newbury Center, Swamp Rd",VT,"Caledonia County",America/New_York,,NA,US,44.2,-72.13,600 +05070,STANDARD,0,"South Strafford","S Strafford","So Strafford",VT,"Orange County",America/New_York,802,NA,US,43.83,-72.37,540 +05071,STANDARD,0,"South Woodstock","S Woodstock",,VT,"Windsor County",America/New_York,802,NA,US,43.56,-72.55,300 +05072,STANDARD,0,Strafford,,,VT,"Orange County",America/New_York,802,NA,US,43.87,-72.38,400 +05073,STANDARD,0,Taftsville,,,VT,"Windsor County",America/New_York,802,NA,US,43.62,-72.46,131 +05074,"PO BOX",0,Thetford,,"Thetford Hill",VT,"Orange County",America/New_York,802,NA,US,43.82,-72.23,234 +05075,STANDARD,0,"Thetford Center","Thetford Ctr","Rices Mills, Thet Ctr",VT,"Orange County",America/New_York,802,NA,US,43.82,-72.27,1200 +05076,STANDARD,0,Topsham,"East Corinth","Topsham Four Corners",VT,"Orange County",America/New_York,802,NA,US,44.14,-72.23,460 +05077,STANDARD,0,Tunbridge,,"North Tunbridge",VT,"Orange County",America/New_York,802,NA,US,43.88,-72.5,1010 +05079,STANDARD,0,Vershire,,,VT,"Orange County",America/New_York,802,NA,US,43.97,-72.32,580 +05081,STANDARD,0,"Wells River",,,VT,"Orange County",America/New_York,802,NA,US,44.15,-72.06,710 +05083,STANDARD,0,"West Fairlee",,"W Fairlee",VT,"Orange County",America/New_York,802,NA,US,43.92,-72.27,240 +05084,STANDARD,0,"West Hartford",Pomfret,,VT,"Windsor County",America/New_York,802,NA,US,43.73,-72.45,240 +05085,"PO BOX",0,"West Newbury",,,VT,"Orange County",America/New_York,802,NA,US,44.06,-72.12,186 +05086,STANDARD,0,"West Topsham","East Orange","Waits River",VT,"Orange County",America/New_York,802,NA,US,44.11,-72.3,700 +05088,"PO BOX",0,Wilder,,,VT,"Windsor County",America/New_York,802,NA,US,43.67,-72.31,1399 +05089,STANDARD,0,Windsor,"West Windsor","Fieldsville, Jenneville, Sheddsville",VT,"Windsor County",America/New_York,802,NA,US,43.48,-72.42,3710 +05091,STANDARD,0,Woodstock,,"W Woodstock, West Woodstock, Wood Stock",VT,"Windsor County",America/New_York,802,NA,US,43.62,-72.51,2980 +05101,STANDARD,0,"Bellows Falls",,"Gageville, North Westminster, Rockingham",VT,"Windham County",America/New_York,802,NA,US,43.13,-72.45,3370 +05141,STANDARD,0,Cambridgeport,,,VT,"Windham County",America/New_York,802,NA,US,43.15,-72.56,154 +05142,STANDARD,0,Cavendish,,,VT,"Windsor County",America/New_York,802,NA,US,43.38,-72.62,630 +05143,STANDARD,0,Chester,"Andover, Athens, Baltimore","Bartonsville, Brockways Mills, Middletown, North Windham, Peaseville, Reedville, Simonsville",VT,"Windsor County",America/New_York,802,NA,US,43.26,-72.59,3980 +05144,"PO BOX",1,"Chester Depot",Chester,"Gassetts, Spoonerville",VT,"Windsor County",America/New_York,802,NA,US,43.28,-72.63,0 +05146,STANDARD,0,Grafton,,,VT,"Windham County",America/New_York,802,NA,US,43.16,-72.61,520 +05148,STANDARD,0,Londonderry,Landgrove,"Bromley Mtn",VT,"Windham County",America/New_York,802,NA,US,43.23,-72.79,1210 +05149,STANDARD,0,Ludlow,,"Grahamville, Lake Rescue, Smithville, Tyson",VT,"Windsor County",America/New_York,802,NA,US,43.39,-72.69,1860 +05150,STANDARD,0,"North Springfield","N Springfield","N Springfld",VT,"Windsor County",America/New_York,802,NA,US,43.33,-72.53,860 +05151,STANDARD,0,Perkinsville,,"Greenbush, Weathersfield, Weathersfield Center",VT,"Windsor County",America/New_York,802,NA,US,43.36,-72.51,1100 +05152,STANDARD,0,Peru,,,VT,"Bennington County",America/New_York,802,NA,US,43.23,-72.89,360 +05153,STANDARD,0,Proctorsville,"South Reading",,VT,"Windsor County",America/New_York,802,NA,US,43.42,-72.64,690 +05154,STANDARD,0,"Saxtons River",,,VT,"Windham County",America/New_York,802,NA,US,43.14,-72.55,730 +05155,STANDARD,0,"South Londonderry","S Londonderry, Stratton Mnt, Stratton Mountain, Stratton Mtn",Rawsonville,VT,"Windham County",America/New_York,802,NA,US,43.09,-72.92,880 +05156,STANDARD,0,Springfield,,"Maple Dell, Orchard Lane, Pedden Acres, Weathersfield",VT,"Windsor County",America/New_York,802,NA,US,43.28,-72.47,7410 +05158,STANDARD,0,Westminster,,"West Minster",VT,"Windham County",America/New_York,802,NA,US,43.07,-72.45,1550 +05159,"PO BOX",0,"Westminster Station","Westmnstr Sta",Grout,VT,"Windham County",America/New_York,802,NA,US,43.04,-72.48,272 +05161,STANDARD,0,Weston,,"Weston Priory",VT,"Windsor County",America/New_York,802,NA,US,43.28,-72.8,560 +05201,STANDARD,0,Bennington,Woodford,"Bennington College, Old Bennington",VT,"Bennington County",America/New_York,802,NA,US,42.87,-73.18,12350 +05250,STANDARD,0,Arlington,"Sandgate, Sunderland, West Arlingtn, West Arlington","Arlington Center, Chiselville",VT,"Bennington County",America/New_York,802,NA,US,43.06,-73.15,3050 +05251,STANDARD,0,Dorset,,"S Dorset, So Dorset, South Dorset",VT,"Bennington County",America/New_York,802,NA,US,43.25,-73.09,1220 +05252,STANDARD,0,"East Arlington","E Arlington","Chiselville, Kansas, Sunderland",VT,"Bennington County",America/New_York,802,NA,US,43.06,-73.13,350 +05253,STANDARD,0,"East Dorset",,"E Dorset, Lake Emerald",VT,"Bennington County",America/New_York,802,NA,US,43.24,-72.99,540 +05254,"PO BOX",0,Manchester,,"Bromley Mountain, Manchester Village",VT,"Bennington County",America/New_York,802,NA,US,43.16,-73.07,926 +05255,STANDARD,0,"Manchester Center","Manchestr Ctr","Barnumville, Manchster Ctr",VT,"Bennington County",America/New_York,802,NA,US,43.17,-73.04,3660 +05257,STANDARD,0,"North Bennington","N Bennington","Barnumsville, No Bennington, Paper Mill Village, Sodom, Wolumsak",VT,"Bennington County",America/New_York,802,NA,US,42.92,-73.24,2170 +05260,STANDARD,0,"North Pownal",,"N Pownal, No Pownal",VT,"Bennington County",America/New_York,802,NA,US,42.81,-73.27,320 +05261,STANDARD,0,Pownal,,"Pownal Center, South Pownal",VT,"Bennington County",America/New_York,802,NA,US,42.76,-73.23,2100 +05262,STANDARD,0,Shaftsbury,,"North Shaftsbury, Shaftsbury Center, So Shaftsbury, South Shaftsbury",VT,"Bennington County",America/New_York,802,NA,US,42.98,-73.2,2180 +05301,STANDARD,0,Brattleboro,"Dummerston, Guilford, W Brattleboro, West Brattleboro","Brattleboro Center, Gilford, Green River, Guilford Center, Halifax, Harrisville",VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,12380 +05302,"PO BOX",0,Brattleboro,,,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,797 +05303,"PO BOX",0,Brattleboro,,,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,487 +05304,"PO BOX",0,Brattleboro,,,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,141 +05340,STANDARD,0,Bondville,Winhall,,VT,"Bennington County",America/New_York,802,NA,US,43.16,-72.93,730 +05341,STANDARD,0,"East Dover",Dover,,VT,"Windham County",America/New_York,802,NA,US,42.96,-72.78,400 +05342,STANDARD,0,Jacksonville,,,VT,"Windham County",America/New_York,802,NA,US,42.79,-72.82,580 +05343,STANDARD,0,Jamaica,,"East Jamaica, Pikes Falls",VT,"Windham County",America/New_York,802,NA,US,43.1,-72.8,650 +05344,"PO BOX",0,Marlboro,,"Marlboro College",VT,"Windham County",America/New_York,802,NA,US,42.86,-72.72,449 +05345,STANDARD,0,Newfane,Brookline,,VT,"Windham County",America/New_York,802,NA,US,42.98,-72.65,1470 +05346,STANDARD,0,Putney,"E Dummerston, East Dummerston, Westminster W, Westminster West","East Putney",VT,"Windham County",America/New_York,802,NA,US,42.97,-72.52,3830 +05350,STANDARD,0,Readsboro,,Heartwellville,VT,"Bennington County",America/New_York,802,NA,US,42.77,-72.94,620 +05351,STANDARD,0,"South Newfane",,,VT,"Windham County",America/New_York,802,NA,US,42.94,-72.7,341 +05352,STANDARD,0,Stamford,Readsboro,,VT,"Bennington County",America/New_York,802,NA,US,42.81,-73.08,730 +05353,STANDARD,0,Townshend,,"Harmonyville, Mary Meyer, Simpsonville",VT,"Windham County",America/New_York,802,NA,US,43.04,-72.66,940 +05354,STANDARD,0,Vernon,,,VT,"Windham County",America/New_York,802,NA,US,42.78,-72.52,1980 +05355,STANDARD,0,Wardsboro,,"South Wardsboro, Wardsborough",VT,"Windham County",America/New_York,802,NA,US,43.02,-72.8,370 +05356,STANDARD,0,"West Dover","Mount Snow","Dover, Mt Snow, W Dover",VT,"Windham County",America/New_York,802,NA,US,42.96,-72.91,1070 +05357,"PO BOX",0,"West Dummerston","W Dummerston",,VT,"Windham County",America/New_York,802,NA,US,42.92,-72.61,163 +05358,STANDARD,0,"West Halifax",,Halifax,VT,"Windham County",America/New_York,802,NA,US,42.76,-72.72,350 +05359,STANDARD,0,"West Townshend","W Townshend, Windham","South Windham",VT,"Windham County",America/New_York,802,NA,US,43.13,-72.71,490 +05360,STANDARD,0,"West Wardsboro","Stratton, W Wardsboro",,VT,"Windham County",America/New_York,802,NA,US,43,-72.95,370 +05361,STANDARD,0,Whitingham,,,VT,"Windham County",America/New_York,802,NA,US,42.78,-72.87,660 +05362,STANDARD,0,Williamsville,,,VT,"Windham County",America/New_York,802,NA,US,42.94,-72.65,260 +05363,STANDARD,0,Wilmington,"Searsburg, West Marlboro",Medburyville,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.87,1930 +05401,STANDARD,0,Burlington,,"Btv, Burl, Burlingtn, Burlngtn",VT,"Chittenden County",America/New_York,802,NA,US,44.48,-73.22,18260 +05402,"PO BOX",0,Burlington,,,VT,"Chittenden County",America/New_York,802,NA,US,44.48,-73.22,854 +05403,STANDARD,0,"South Burlington","S Burlington","Queen City, Queen City Park, S Btv, S Burl, So Burlington",VT,"Chittenden County",America/New_York,802,NA,US,44.44,-73.21,17920 +05404,STANDARD,0,Winooski,,,VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.18,6220 +05405,UNIQUE,0,Burlington,,"Univ Of Vermont, Uvm",VT,"Chittenden County",America/New_York,802,NA,US,44.47,-73.2,127 +05406,"PO BOX",0,Burlington,,,VT,"Chittenden County",America/New_York,802,NA,US,44.48,-73.22,334 +05407,"PO BOX",0,"South Burlington","S Burlington","So Burlington",VT,"Chittenden County",America/New_York,802,NA,US,44.44,-73.21,388 +05408,STANDARD,0,Burlington,,"Burl, Burlngtn, N Burlington, North Burlington",VT,"Chittenden County",America/New_York,802,NA,US,44.51,-73.25,9390 +05439,UNIQUE,0,Colchester,,"St Michaels College",VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.16,16 +05440,STANDARD,0,Alburgh,Alburg,,VT,"Grand Isle County",America/New_York,802,NA,US,44.97,-73.3,1810 +05441,STANDARD,0,Bakersfield,,,VT,"Franklin County",America/New_York,802,NA,US,44.78,-72.8,600 +05442,STANDARD,0,"Belvidere Center","Belvidere Ctr","Belvidere, Belvidere Corners",VT,"Lamoille County",America/New_York,802,NA,US,44.75,-72.68,300 +05443,STANDARD,0,Bristol,Lincoln,"Downingville, Jerusalem, Rocky Dale, South Lincoln, West Lincoln",VT,"Addison County",America/New_York,802,NA,US,44.13,-73.08,5780 +05444,STANDARD,0,Cambridge,,"Binghamville, Cambridgeboro, Cloverdale, Fletcher, Pleasant Valley",VT,"Franklin County",America/New_York,,NA,US,44.63,-72.88,1820 +05445,STANDARD,0,Charlotte,,"Cedar Beach",VT,"Chittenden County",America/New_York,802,NA,US,44.3,-73.25,3730 +05446,STANDARD,0,Colchester,,"Camp Johnson, Smc, St Michaels College",VT,"Chittenden County",America/New_York,802,NA,US,44.53,-73.15,15040 +05447,STANDARD,0,"East Berkshire","E Berkshire",Berkshire,VT,"Franklin County",America/New_York,802,NA,US,44.93,-72.7,180 +05448,STANDARD,0,"East Fairfield","E Fairfield",,VT,"Franklin County",America/New_York,802,NA,US,44.8,-72.91,1100 +05449,"PO BOX",0,Colchester,,,VT,"Chittenden County",America/New_York,802,NA,US,44.53,-73.15,0 +05450,STANDARD,0,"Enosburg Falls","Enosburg Fls","Berkshire Center, Bordoville, East Enosburg, East Sheldon, Enosburg, Enosburg Center, Herrick, Hill West, S Franklin, Samsonville, So Franklin, West Berkshire, West Enosburg, Woodpecker Village",VT,"Franklin County",America/New_York,802,NA,US,44.9,-72.8,4520 +05451,"PO BOX",0,Essex,,"Essex Center",VT,"Chittenden County",America/New_York,802,NA,US,44.52,-73.05,475 +05452,STANDARD,0,"Essex Junction","Essex Jct","Brookside, Essex, Essex Ctr, Pinewood",VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.11,20510 +05453,"PO BOX",0,"Essex Junction","Essex Jct",,VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.11,509 +05454,STANDARD,0,Fairfax,,Georgia,VT,"Franklin County",America/New_York,802,NA,US,44.67,-73.02,4990 +05455,STANDARD,0,Fairfield,Sheldon,,VT,"Franklin County",America/New_York,802,NA,US,44.8,-72.95,1190 +05456,STANDARD,0,Ferrisburgh,,Ferrisburg,VT,"Addison County",America/New_York,802,NA,US,44.2,-73.25,1110 +05457,STANDARD,0,Franklin,,"E Franklin, East Franklin, Lake Carmi, Morses Line, Shawville",VT,"Franklin County",America/New_York,802,NA,US,44.98,-72.92,1410 +05458,STANDARD,0,"Grand Isle",,"Adams Landing, Pearl, Point Farm",VT,"Grand Isle County",America/New_York,802,NA,US,44.72,-73.3,1980 +05459,STANDARD,0,"Highgate Center","Highgate Ctr","Beaulieus Corner, East Highgate, Highgate, Highgate Falls, Rixford",VT,"Franklin County",America/New_York,802,NA,US,44.95,-72.99,1650 +05460,"PO BOX",0,"Highgate Springs","Highgate Sprg","Highgate Spgs",VT,"Franklin County",America/New_York,802,NA,US,44.97,-73.1,132 +05461,STANDARD,0,Hinesburg,,"Lake Iroquois, Mechanicsburg",VT,"Chittenden County",America/New_York,802,NA,US,44.33,-73.12,4700 +05462,STANDARD,0,Huntington,,"Huntingtn Ctr, Huntington Center, Huntington Lower Village",VT,"Chittenden County",America/New_York,802,NA,US,44.33,-72.98,1910 +05463,STANDARD,0,"Isle La Motte",,,VT,"Grand Isle County",America/New_York,802,NA,US,44.87,-73.33,480 +05464,STANDARD,0,Jeffersonville,Jeffersonvlle,Madonna,VT,"Lamoille County",America/New_York,802,NA,US,44.64,-72.82,2700 +05465,STANDARD,0,Jericho,"Jericho Center, Jericho Ctr","West Bolton",VT,"Chittenden County",America/New_York,802,NA,US,44.5,-72.98,5600 +05466,"PO BOX",0,Jonesville,,,VT,"Chittenden County",America/New_York,802,NA,US,44.39,-72.99,178 +05468,STANDARD,0,Milton,,"Georgia, West Milton",VT,"Chittenden County",America/New_York,802,NA,US,44.63,-73.11,13060 +05469,"PO BOX",0,Monkton,,,VT,"Addison County",America/New_York,802,NA,US,44.23,-73.15,230 +05470,"PO BOX",0,Montgomery,,,VT,"Franklin County",America/New_York,802,NA,US,44.9,-72.63,285 +05471,STANDARD,0,"Montgomery Center","Montgomry Ctr","Alpine Haven, Hectorville, Hutchins",VT,"Franklin County",America/New_York,,NA,US,44.86,-72.59,720 +05472,STANDARD,0,"New Haven",,"Barnumtown, Brookville, New Haven Jct, New Haven Junction, New Haven Mills",VT,"Addison County",America/New_York,802,NA,US,44.12,-73.15,1740 +05473,STANDARD,0,"North Ferrisburgh","N Ferrisburgh","Kimballs, Long Point, Monkton Ridge, Mount Philo, Mt Philo, No Ferrisburgh, The Hollow",VT,"Addison County",America/New_York,802,NA,US,44.24,-73.19,1300 +05474,STANDARD,0,"North Hero",,"Abnaki, Birdland, Knights Point, Lagrange, No Hero",VT,"Grand Isle County",America/New_York,802,NA,US,44.82,-73.28,940 +05476,STANDARD,0,Richford,,,VT,"Franklin County",America/New_York,802,NA,US,44.99,-72.67,2470 +05477,STANDARD,0,Richmond,"Bolton Valley",,VT,"Chittenden County",America/New_York,802,NA,US,44.4,-73,4340 +05478,STANDARD,0,"Saint Albans",,"Georgia, St Albans",VT,"Franklin County",America/New_York,802,NA,US,44.81,-73.08,13930 +05479,UNIQUE,0,"Essex Junction","Essex Jct","Eastern Reg Serv Ctr, Us Citizenship & Immigration",VT,"Franklin County",America/New_York,802,NA,US,44.81,-73.08,0 +05481,"PO BOX",0,"Saint Albans Bay","St Albans Bay",,VT,"Franklin County",America/New_York,802,NA,US,44.77,-73.21,532 +05482,STANDARD,0,Shelburne,,,VT,"Chittenden County",America/New_York,802,NA,US,44.38,-73.23,7390 +05483,STANDARD,0,Sheldon,,"Crow Hill, Fairfield Pond, Fairground, Fairgrounds, Saint Rocks, Sheldon Creek, Sheldon Junction, St Rocks, Sweek Hollow",VT,"Franklin County",America/New_York,802,NA,US,44.88,-72.95,1400 +05485,"PO BOX",0,"Sheldon Springs","Sheldon Spgs",,VT,"Franklin County",America/New_York,802,NA,US,44.9,-72.97,302 +05486,STANDARD,0,"South Hero",,"Keeler Bay, Keelers Bay, S Hero, So Hero",VT,"Grand Isle County",America/New_York,802,NA,US,44.64,-73.31,1670 +05487,STANDARD,0,Starksboro,,"Buels Gore, South Starksboro",VT,"Addison County",America/New_York,802,NA,US,44.22,-72.99,1370 +05488,STANDARD,0,Swanton,,"Fonda, Fonda Jct, Green Corner, Hog Island, Lakewood, Maquam, Popsquash, W Swanton, West Swanton",VT,"Franklin County",America/New_York,802,NA,US,44.92,-73.12,6940 +05489,STANDARD,0,Underhill,,"Underhill Flats",VT,"Chittenden County",America/New_York,802,NA,US,44.57,-72.9,3150 +05490,"PO BOX",0,"Underhill Center","Underhill Ctr",,VT,"Chittenden County",America/New_York,802,NA,US,44.52,-72.89,407 +05491,STANDARD,0,Vergennes,"Addison, Panton","Arnold Bay, Basin Harbor, Button Bay, Chimney Point, Crown Point, Mile Point, Owls Head Harbor, Potash Bay, Potash Point, Summer Point, Waltham, West Addison, West Ferrisburgh",VT,"Addison County",America/New_York,802,NA,US,44.16,-73.25,5550 +05492,STANDARD,0,Waterville,,"Belvidere Center, Belvidere Junction",VT,"Lamoille County",America/New_York,802,NA,US,44.71,-72.75,720 +05494,STANDARD,0,Westford,,Brookside,VT,"Chittenden County",America/New_York,802,NA,US,44.62,-73.02,1660 +05495,STANDARD,0,Williston,"Saint George, St George",,VT,"Chittenden County",America/New_York,802,NA,US,44.43,-73.07,10760 +05501,UNIQUE,0,Andover,,"Internal Revenue Service",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,510 +05544,UNIQUE,1,Andover,,"Irs Service Center",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,0 +05601,"PO BOX",0,Montpelier,,,VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,801 +05602,STANDARD,0,Montpelier,"Berlin, Middlesex, Middlesex Center, Middlesex Ctr","East Montpelier Center, Gould Hill, Jones Brook, Montpelier Jct, Montpelier Junction",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,10720 +05603,UNIQUE,0,Montpelier,,"Dept Motor Vehicles",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05604,UNIQUE,0,Montpelier,,"National Life Ins",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,16 +05609,UNIQUE,0,Montpelier,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05620,UNIQUE,0,Montpelier,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05633,UNIQUE,0,Montpelier,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05640,STANDARD,0,Adamant,,"Bliss Pond",VT,"Washington County",America/New_York,802,NA,US,44.35,-72.5,168 +05641,STANDARD,0,Barre,Orange,"Barre Jct, Barre Junction, Berlin, Boutswells, East Hill, Lower Websterville, Trow Hill",VT,"Washington County",America/New_York,802,NA,US,44.2,-72.5,13880 +05647,STANDARD,0,Cabot,,"East Cabot",VT,"Washington County",America/New_York,802,NA,US,44.4,-72.31,950 +05648,STANDARD,0,Calais,,,VT,"Washington County",America/New_York,802,NA,US,44.38,-72.49,460 +05649,STANDARD,0,"East Barre",,,VT,"Orange County",America/New_York,802,NA,US,44.17,-72.35,940 +05650,STANDARD,0,"East Calais",,"North Calais, South Woodbury",VT,"Washington County",America/New_York,802,NA,US,44.35,-72.44,890 +05651,STANDARD,0,"East Montpelier","E Montpelier",,VT,"Washington County",America/New_York,802,NA,US,44.28,-72.49,1560 +05652,STANDARD,0,Eden,,,VT,"Lamoille County",America/New_York,802,NA,US,44.7,-72.55,780 +05653,STANDARD,0,"Eden Mills",Eden,,VT,"Lamoille County",America/New_York,802,NA,US,44.69,-72.48,380 +05654,STANDARD,0,Graniteville,,,VT,"Washington County",America/New_York,802,NA,US,44.15,-72.47,1100 +05655,STANDARD,0,"Hyde Park",,,VT,"Lamoille County",America/New_York,802,NA,US,44.59,-72.61,2640 +05656,STANDARD,0,Johnson,,"East Johnson",VT,"Lamoille County",America/New_York,802,NA,US,44.63,-72.67,2660 +05657,"PO BOX",0,"Lake Elmore",,"Lk Elmore",VT,"Lamoille County",America/New_York,802,NA,US,44.54,-72.53,286 +05658,STANDARD,0,Marshfield,,"Lower Cabot",VT,"Washington County",America/New_York,802,NA,US,44.35,-72.35,1370 +05660,STANDARD,0,Moretown,"South Duxbury","N Fayston, No Fayston, North Fayston",VT,"Washington County",America/New_York,802,NA,US,44.25,-72.75,1740 +05661,STANDARD,0,Morrisville,"Elmore, Morristown","Cadys Falls, Cleveland Corner, Garfield, Lake Lamoille, Morrisvl, Morrisvle, Mud City",VT,"Lamoille County",America/New_York,802,NA,US,44.55,-72.59,5160 +05662,"PO BOX",0,Moscow,,,VT,"Lamoille County",America/New_York,802,NA,US,44.44,-72.71,59 +05663,STANDARD,0,Northfield,"Riverton, West Berlin","Norwich University",VT,"Washington County",America/New_York,802,NA,US,44.15,-72.65,3910 +05664,"PO BOX",0,"Northfield Falls","Northfield Fl, Northfld Fls",,VT,"Washington County",America/New_York,802,NA,US,44.17,-72.65,656 +05665,"PO BOX",0,"North Hyde Park","N Hyde Park",,VT,"Lamoille County",America/New_York,802,NA,US,44.66,-72.57,153 +05666,STANDARD,0,"North Montpelier","N Montpelier","No Montpelier",VT,"Washington County",America/New_York,802,NA,US,44.25,-72.48,148 +05667,STANDARD,0,Plainfield,,Pekin,VT,"Washington County",America/New_York,802,NA,US,44.28,-72.43,1950 +05669,STANDARD,0,Roxbury,"W Braintree, West Braintree","E Granville, East Granville, Roxbury Flat",VT,"Washington County",America/New_York,802,NA,US,44.1,-72.73,460 +05670,"PO BOX",0,"South Barre",,,VT,"Washington County",America/New_York,802,NA,US,44.16,-72.5,719 +05671,UNIQUE,0,Waterbury,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.33,-72.75,0 +05672,STANDARD,0,Stowe,,,VT,"Lamoille County",America/New_York,802,NA,US,44.46,-72.68,5030 +05673,STANDARD,0,Waitsfield,,"Fayston, Irasville, Mad River Glen, Waitsfield Common",VT,"Washington County",America/New_York,802,NA,US,44.18,-72.82,2590 +05674,STANDARD,0,Warren,,"East Warren",VT,"Washington County",America/New_York,802,NA,US,44.12,-72.85,1370 +05675,STANDARD,0,Washington,,"Sky Acres, South Washington, Washgtin, Washing, Washingtn",VT,"Orange County",America/New_York,802,NA,US,44.1,-72.43,890 +05676,STANDARD,0,Waterbury,,"Bolton, Colbyville, Duxbury, North Duxbury",VT,"Washington County",America/New_York,802,NA,US,44.33,-72.75,4770 +05677,STANDARD,0,"Waterbury Center","Waterbury Ctr",,VT,"Washington County",America/New_York,802,NA,US,44.38,-72.7,2230 +05678,"PO BOX",0,Websterville,,,VT,"Washington County",America/New_York,802,NA,US,44.16,-72.48,280 +05679,STANDARD,0,Williamstown,,,VT,"Orange County",America/New_York,802,NA,US,44.12,-72.53,2910 +05680,STANDARD,0,Wolcott,,"Branch, East Elmore, North Wolcott, Pottersville",VT,"Lamoille County",America/New_York,802,NA,US,44.55,-72.47,1880 +05681,STANDARD,0,Woodbury,,"Lake Valley",VT,"Washington County",America/New_York,802,NA,US,44.44,-72.4,320 +05682,STANDARD,0,Worcester,"N Middlesex, North Middlesex",,VT,"Washington County",America/New_York,802,NA,US,44.37,-72.55,1170 +05701,STANDARD,0,Rutland,"Mendon, S Chittenden, South Chittenden","Clementwood, East Pittsford, Glen, Heartwell, Mill Village, Rutland Town",VT,"Rutland County",America/New_York,802,NA,US,43.6,-72.97,16690 +05702,"PO BOX",0,Rutland,,,VT,"Rutland County",America/New_York,802,NA,US,43.6,-72.97,945 +05730,STANDARD,0,Belmont,,,VT,"Rutland County",America/New_York,802,NA,US,43.42,-72.81,370 +05731,"PO BOX",0,Benson,,,VT,"Rutland County",America/New_York,802,NA,US,43.72,-73.32,157 +05732,STANDARD,0,Bomoseen,,"Crystal Beach, Neshobe Beach",VT,"Rutland County",America/New_York,802,NA,US,43.63,-73.2,890 +05733,STANDARD,0,Brandon,"Goshen, Leicester, Sudbury",,VT,"Rutland County",America/New_York,802,NA,US,43.8,-73.08,5170 +05734,STANDARD,0,Bridport,,,VT,"Addison County",America/New_York,802,NA,US,43.98,-73.32,1100 +05735,STANDARD,0,Castleton,,"Castleton State College, East Hubbardton, Hubbardton",VT,"Rutland County",America/New_York,802,NA,US,43.62,-73.18,2510 +05736,STANDARD,0,"Center Rutland","Ctr Rutland",,VT,"Rutland County",America/New_York,802,NA,US,43.61,-73.01,450 +05737,STANDARD,0,Chittenden,,,VT,"Rutland County",America/New_York,802,NA,US,43.72,-72.95,630 +05738,STANDARD,0,Cuttingsville,Shrewsbury,"North Shrewsbury, Russellville",VT,"Rutland County",America/New_York,802,NA,US,43.53,-72.86,980 +05739,STANDARD,0,Danby,"Mount Tabor","Chipman Lake, Danby Corners, Scottsville, South End",VT,"Rutland County",America/New_York,802,NA,US,43.35,-73,1140 +05740,"PO BOX",0,"East Middlebury","E Middlebury",,VT,"Addison County",America/New_York,802,NA,US,43.97,-73.11,991 +05741,"PO BOX",0,"East Poultney",Poultney,,VT,"Rutland County",America/New_York,802,NA,US,43.54,-73.13,29 +05742,STANDARD,0,"East Wallingford","E Wallingford",Bowlsville,VT,"Rutland County",America/New_York,802,NA,US,43.43,-72.87,440 +05743,STANDARD,0,"Fair Haven","Benson, West Haven","Benson Landing, Fairhaven, West Castleton",VT,"Rutland County",America/New_York,802,NA,US,43.59,-73.27,3630 +05744,STANDARD,0,Florence,,,VT,"Rutland County",America/New_York,802,NA,US,43.7,-73.08,470 +05745,"PO BOX",0,"Forest Dale",,Forestdale,VT,"Rutland County",America/New_York,802,NA,US,43.82,-73.05,284 +05746,"PO BOX",0,Gaysville,,,VT,"Windsor County",America/New_York,802,NA,US,43.73,-72.74,159 +05747,STANDARD,0,Granville,,"Lower Granville",VT,"Addison County",America/New_York,802,NA,US,43.98,-72.85,200 +05748,STANDARD,0,Hancock,,,VT,"Addison County",America/New_York,802,NA,US,43.93,-72.83,290 +05750,"PO BOX",0,Hydeville,,,VT,"Rutland County",America/New_York,802,NA,US,43.6,-73.21,284 +05751,STANDARD,0,Killington,,,VT,"Rutland County",America/New_York,802,NA,US,43.67,-72.77,1180 +05753,STANDARD,0,Middlebury,"Cornwall, Weybridge","Weybridge Hill",VT,"Addison County",America/New_York,802,NA,US,44,-73.15,7460 +05757,STANDARD,0,"Middletown Springs","Middletwn Spg",,VT,"Rutland County",America/New_York,802,NA,US,43.48,-73.12,840 +05758,STANDARD,0,"Mount Holly",,"Healdville, Hortonville, Lake Hinevah, Summit",VT,"Rutland County",America/New_York,802,NA,US,43.45,-72.76,690 +05759,STANDARD,0,"North Clarendon","N Clarendon",Clarendon,VT,"Rutland County",America/New_York,802,NA,US,43.53,-72.96,1750 +05760,STANDARD,0,Orwell,,"Chipmans Point, Lake Hortonia, North Orwell",VT,"Addison County",America/New_York,802,NA,US,43.8,-73.3,1050 +05761,STANDARD,0,Pawlet,,"Brimstone Corners, East Rupert, N Pawlet, North Pawlet, North Rupert, Spankerton",VT,"Rutland County",America/New_York,802,NA,US,43.35,-73.18,1000 +05762,STANDARD,0,Pittsfield,,,VT,"Rutland County",America/New_York,802,NA,US,43.78,-72.82,430 +05763,STANDARD,0,Pittsford,"N Chittenden, North Chittenden","Fredetteville, Pittsford Mills",VT,"Rutland County",America/New_York,802,NA,US,43.7,-73.03,2480 +05764,STANDARD,0,Poultney,,"Blissville, Lake St Catherine, Rareville, South Poultney",VT,"Rutland County",America/New_York,802,NA,US,43.51,-73.23,2610 +05765,STANDARD,0,Proctor,,"True Blue",VT,"Rutland County",America/New_York,802,NA,US,43.65,-73.03,1580 +05766,STANDARD,0,Ripton,,,VT,"Addison County",America/New_York,802,NA,US,43.98,-73,410 +05767,STANDARD,0,Rochester,,,VT,"Windsor County",America/New_York,802,NA,US,43.88,-72.82,950 +05768,"PO BOX",0,Rupert,,,VT,"Bennington County",America/New_York,802,NA,US,43.26,-73.22,124 +05769,STANDARD,0,Salisbury,,"Lake Dunmore, West Salisbury",VT,"Addison County",America/New_York,802,NA,US,43.9,-73.1,1090 +05770,STANDARD,0,Shoreham,,,VT,"Addison County",America/New_York,802,NA,US,43.9,-73.32,990 +05772,STANDARD,0,Stockbridge,,,VT,"Windsor County",America/New_York,802,NA,US,43.78,-72.77,450 +05773,STANDARD,0,Wallingford,Tinmouth,"S Wallingford, South Wallingford",VT,"Rutland County",America/New_York,802,NA,US,43.48,-72.97,1880 +05774,STANDARD,0,Wells,,,VT,"Rutland County",America/New_York,802,NA,US,43.42,-73.2,1050 +05775,STANDARD,0,"West Pawlet",,,VT,"Rutland County",America/New_York,802,NA,US,43.36,-73.22,530 +05776,STANDARD,0,"West Rupert",,,VT,"Bennington County",America/New_York,802,NA,US,43.26,-73.19,230 +05777,STANDARD,0,"West Rutland","Clarendn Spgs, Clarendon Springs","Chippenhook, Ira",VT,"Rutland County",America/New_York,802,NA,US,43.59,-73.04,3020 +05778,STANDARD,0,Whiting,"West Cornwall",,VT,"Addison County",America/New_York,802,NA,US,43.87,-73.21,640 +05819,STANDARD,0,"Saint Johnsbury","St Johnsbury, Waterford","Johnsbury, West Waterford",VT,"Caledonia County",America/New_York,802,NA,US,44.41,-71.97,7020 +05820,STANDARD,0,Albany,,,VT,"Orleans County",America/New_York,802,NA,US,44.73,-72.38,360 +05821,STANDARD,0,Barnet,,"Barnet Center, Inwood, South Peacham, West Barnet",VT,"Caledonia County",America/New_York,802,NA,US,44.3,-72.05,1010 +05822,STANDARD,0,Barton,,Westmore,VT,"Orleans County",America/New_York,802,NA,US,44.74,-72.17,1740 +05823,"PO BOX",0,"Beebe Plain",,,VT,"Orleans County",America/New_York,802,NA,US,45,-72.14,142 +05824,STANDARD,0,Concord,,"Concord Corner, Kirby, Ralston Corner",VT,"Essex County",America/New_York,802,NA,US,44.43,-71.88,1000 +05825,"PO BOX",0,Coventry,,,VT,"Orleans County",America/New_York,802,NA,US,44.86,-72.25,219 +05826,STANDARD,0,Craftsbury,,"East Craftsbury",VT,"Orleans County",America/New_York,802,NA,US,44.63,-72.37,770 +05827,STANDARD,0,"Craftsbury Common","Craftsbry Cmn, Craftsbury Cm","Mill Village",VT,"Orleans County",America/New_York,802,NA,US,44.68,-72.36,480 +05828,STANDARD,0,Danville,,"Danville Center",VT,"Caledonia County",America/New_York,802,NA,US,44.42,-72.13,1840 +05829,STANDARD,0,Derby,,,VT,"Orleans County",America/New_York,802,NA,US,44.92,-72.12,2190 +05830,STANDARD,0,"Derby Line",,Holland,VT,"Orleans County",America/New_York,802,NA,US,45,-72.1,1300 +05832,STANDARD,0,"East Burke",,"Burke Mountain, E Burke",VT,"Caledonia County",America/New_York,802,NA,US,44.6,-71.92,900 +05833,STANDARD,0,"East Charleston","E Charleston",,VT,"Orleans County",America/New_York,802,NA,US,44.83,-72,190 +05836,STANDARD,0,"East Hardwick",,,VT,"Caledonia County",America/New_York,802,NA,US,44.52,-72.3,950 +05837,STANDARD,0,"East Haven",,,VT,"Essex County",America/New_York,,NA,US,44.66,-71.81,300 +05838,"PO BOX",0,"East Saint Johnsbury","E St Johnsbry",,VT,"Caledonia County",America/New_York,802,NA,US,44.44,-71.95,102 +05839,STANDARD,0,Glover,Barton,,VT,"Orleans County",America/New_York,802,NA,US,44.7,-72.18,690 +05840,"PO BOX",0,Granby,,,VT,"Essex County",America/New_York,,NA,US,44.57,-71.77,85 +05841,STANDARD,0,Greensboro,,Greensborough,VT,"Orleans County",America/New_York,802,NA,US,44.58,-72.28,280 +05842,STANDARD,0,"Greensboro Bend","Greensbro Bnd, Grnsboro Bend",Stannard,VT,"Orleans County",America/New_York,,NA,US,44.54,-72.21,530 +05843,STANDARD,0,Hardwick,,"Mackville, South Walden",VT,"Caledonia County",America/New_York,802,NA,US,44.5,-72.37,2350 +05845,STANDARD,0,Irasburg,,"Albany Center, East Albany",VT,"Orleans County",America/New_York,802,NA,US,44.81,-72.28,1100 +05846,STANDARD,0,"Island Pond",Ferdinand,Brighton,VT,"Essex County",America/New_York,,NA,US,44.81,-71.88,1020 +05847,STANDARD,0,Lowell,,,VT,"Orleans County",America/New_York,802,NA,US,44.8,-72.45,740 +05848,"PO BOX",0,"Lower Waterford","Lwr Waterford",,VT,"Caledonia County",America/New_York,802,NA,US,44.35,-71.92,114 +05849,"PO BOX",0,Lyndon,,"Lyndon Corners",VT,"Caledonia County",America/New_York,802,NA,US,44.5,-71.97,364 +05850,STANDARD,0,"Lyndon Center",,,VT,"Caledonia County",America/New_York,802,NA,US,44.54,-72.01,450 +05851,STANDARD,0,Lyndonville,,"East Lyndon, Red Village, South Wheelock, Wheelock",VT,"Caledonia County",America/New_York,802,NA,US,44.53,-72,4740 +05853,STANDARD,0,Morgan,"Morgan Ctr",,VT,"Orleans County",America/New_York,802,NA,US,44.89,-71.96,450 +05855,STANDARD,0,Newport,,"Eagle Point, Indian Point, Lake Park, Newport City, North Derby, The Bluffs, West Derby",VT,"Orleans County",America/New_York,802,NA,US,44.93,-72.2,5870 +05857,STANDARD,0,"Newport Center","Newport Ctr",,VT,"Orleans County",America/New_York,802,NA,US,44.95,-72.3,1240 +05858,STANDARD,0,"North Concord",Victory,"Gallup Mills, Granby Valley, Miles Pond",VT,"Essex County",America/New_York,802,NA,US,44.56,-71.77,230 +05859,STANDARD,0,"North Troy","Jay, Jay Peak",,VT,"Orleans County",America/New_York,802,NA,US,44.99,-72.4,1640 +05860,STANDARD,0,Orleans,Brownington,"Evansville, Westmore",VT,"Orleans County",America/New_York,802,NA,US,44.81,-72.2,2260 +05861,"PO BOX",0,Passumpsic,,"Morses Mills",VT,"Caledonia County",America/New_York,802,NA,US,44.38,-72.03,215 +05862,STANDARD,0,Peacham,,"East Peacham",VT,"Caledonia County",America/New_York,802,NA,US,44.33,-72.17,300 +05863,"PO BOX",0,"Saint Johnsbury Center","St Jhnsbry Ct",,VT,"Caledonia County",America/New_York,802,NA,US,44.47,-72,300 +05866,STANDARD,0,Sheffield,,"Sheffield Square",VT,"Caledonia County",America/New_York,802,NA,US,44.6,-72.12,550 +05867,STANDARD,0,Sutton,,"East Sutton Ridge",VT,"Caledonia County",America/New_York,802,NA,US,44.66,-72.03,620 +05868,STANDARD,0,Troy,,,VT,"Orleans County",America/New_York,802,NA,US,44.9,-72.38,310 +05871,STANDARD,0,"West Burke",,"Burke, Newark, Newark Hollow",VT,"Caledonia County",America/New_York,802,NA,US,44.64,-71.98,1330 +05872,STANDARD,0,"West Charleston","W Charleston",Charleston,VT,"Orleans County",America/New_York,802,NA,US,44.86,-72.05,640 +05873,STANDARD,0,"West Danville",,"Joes Pond, Walden",VT,"Caledonia County",America/New_York,802,NA,US,44.46,-72.22,650 +05874,STANDARD,0,Westfield,,,VT,"Orleans County",America/New_York,802,NA,US,44.88,-72.42,540 +05875,STANDARD,0,Barton,"West Glover",,VT,"Orleans County",America/New_York,802,NA,US,44.69,-72.26,450 +05901,"PO BOX",0,Averill,Canaan,,VT,"Essex County",America/New_York,,NA,US,44.94,-71.66,0 +05902,STANDARD,0,"Beecher Falls",,,VT,"Essex County",America/New_York,802,NA,US,45.01,-71.49,226 +05903,STANDARD,0,Canaan,Lemington,,VT,"Essex County",America/New_York,802,NA,US,45,-71.53,720 +05904,STANDARD,0,Gilman,,,VT,"Essex County",America/New_York,802,NA,US,44.42,-71.71,190 +05905,STANDARD,0,Guildhall,"Bloomfield, Brunswick, Maidstone","Ferdinand, Lemington",VT,"Essex County",America/New_York,802,NA,US,44.7,-71.68,600 +05906,STANDARD,0,Lunenburg,"East Concord","South Lunenburg",VT,"Essex County",America/New_York,802,NA,US,44.47,-71.68,990 +05907,STANDARD,0,Norton,,,VT,"Essex County",America/New_York,802,NA,US,45,-71.8,178 +06001,STANDARD,0,Avon,,,CT,"Hartford County",America/New_York,860,NA,US,41.8,-72.83,18690 +06002,STANDARD,0,Bloomfield,,,CT,"Hartford County",America/New_York,860,NA,US,41.81,-72.73,19330 +06006,UNIQUE,0,Windsor,,"Northeast Area",CT,"Hartford County",America/New_York,860,NA,US,41.85,-72.65,0 +06010,STANDARD,0,Bristol,,Forestville,CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.94,52790 +06011,"PO BOX",0,Bristol,,,CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.94,861 +06013,STANDARD,0,Burlington,Unionville,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.96,9200 +06016,STANDARD,0,"Broad Brook","Melrose, Windsorville",,CT,"Hartford County",America/New_York,860,NA,US,41.9,-72.54,5680 +06018,STANDARD,0,Canaan,,"No Canaan, North Canaan",CT,"Litchfield County",America/New_York,860,NA,US,42.03,-73.33,2290 +06019,STANDARD,0,Canton,Collinsville,,CT,"Hartford County",America/New_York,860,NA,US,41.86,-72.9,9210 +06020,"PO BOX",0,"Canton Center",,"Cherry Brook",CT,"Hartford County",America/New_York,860,NA,US,41.83,-72.93,183 +06021,STANDARD,0,Colebrook,,Colbrook,CT,"Litchfield County",America/New_York,,NA,US,42.02,-73.1,1180 +06022,"PO BOX",0,Collinsville,,,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.93,162 +06023,STANDARD,0,"East Berlin",,,CT,"Hartford County",America/New_York,860,NA,US,41.61,-72.72,1230 +06024,STANDARD,0,"East Canaan",,,CT,"Litchfield County",America/New_York,,NA,US,42,-73.28,500 +06025,"PO BOX",0,"East Glastonbury","E Glastonbury","E Glstnbry",CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.54,123 +06026,STANDARD,0,"East Granby",,,CT,"Hartford County",America/New_York,860,NA,US,41.93,-72.71,4970 +06027,STANDARD,0,"East Hartland",,,CT,"Hartford County",America/New_York,860,NA,US,42,-72.94,1340 +06028,"PO BOX",0,"East Windsor Hill","E Windsor Hl",,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.67,65 +06029,STANDARD,0,Ellington,,,CT,"Tolland County",America/New_York,860,NA,US,41.9,-72.46,15510 +06030,UNIQUE,0,Farmington,,"University Of Ct Health Ctr",CT,"Hartford County",America/New_York,860,NA,US,41.71,-72.83,0 +06031,STANDARD,0,"Falls Village",,"South Canaan",CT,"Litchfield County",America/New_York,860,NA,US,41.95,-73.36,960 +06032,STANDARD,0,Farmington,,"Talcott Village, The Exchange At Talcott Vill, West Farms Mall",CT,"Hartford County",America/New_York,860,NA,US,41.71,-72.83,17520 +06033,STANDARD,0,Glastonbury,,,CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.6,28620 +06034,"PO BOX",0,Farmington,,,CT,"Hartford County",America/New_York,860,NA,US,41.71,-72.83,291 +06035,STANDARD,0,Granby,,,CT,"Hartford County",America/New_York,860,NA,US,41.95,-72.78,7130 +06037,STANDARD,0,Berlin,Kensington,Kenington,CT,"Hartford County",America/New_York,860,NA,US,41.62,-72.77,18140 +06039,STANDARD,0,Lakeville,,"Hotchkiss School",CT,"Litchfield County",America/New_York,860,NA,US,41.94,-73.43,1890 +06040,STANDARD,0,Manchester,,,CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.51,31400 +06041,UNIQUE,0,Manchester,,"Jc Penney Co",CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.51,29 +06042,STANDARD,0,Manchester,,,CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.53,21640 +06043,STANDARD,0,Bolton,,,CT,"Tolland County",America/New_York,860,NA,US,41.76,-72.43,4720 +06045,"PO BOX",0,Manchester,,,CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.51,676 +06050,"PO BOX",0,"New Britain",,,CT,"Hartford County",America/New_York,860,NA,US,41.67,-72.78,1273 +06051,STANDARD,0,"New Britain",,"New Brit",CT,"Hartford County",America/New_York,860,NA,US,41.67,-72.78,24870 +06052,STANDARD,0,"New Britain",,,CT,"Hartford County",America/New_York,860,NA,US,41.66,-72.8,6740 +06053,STANDARD,0,"New Britain",,,CT,"Hartford County",America/New_York,860,NA,US,41.69,-72.79,27750 +06057,STANDARD,0,"New Hartford",,"Bakersville, Nepaug",CT,"Litchfield County",America/New_York,,NA,US,41.87,-72.97,6320 +06058,STANDARD,0,Norfolk,,,CT,"Litchfield County",America/New_York,860,NA,US,41.99,-73.19,1430 +06059,"PO BOX",0,"North Canton",,,CT,"Litchfield County",America/New_York,860,NA,US,41.96,-72.94,138 +06060,STANDARD,0,"North Granby",,,CT,"Hartford County",America/New_York,860,NA,US,42.01,-72.84,2540 +06061,"PO BOX",0,"Pine Meadow",,,CT,"Litchfield County",America/New_York,,NA,US,41.88,-72.97,290 +06062,STANDARD,0,Plainville,,,CT,"Hartford County",America/New_York,860,NA,US,41.67,-72.86,15900 +06063,STANDARD,0,Barkhamsted,"Pleasant Valley, Pleasant Vly, Winsted",,CT,"Litchfield County",America/New_York,860,NA,US,41.93,-72.97,3170 +06064,"PO BOX",0,Poquonock,,,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.67,201 +06065,STANDARD,0,Riverton,,,CT,"Hartford County",America/New_York,,NA,US,41.95,-73.02,670 +06066,STANDARD,0,"Vernon Rockville","Vernon, Vernon Rockvl","Rockville, Talcottville, Turnpike",CT,"Tolland County",America/New_York,860,NA,US,41.84,-72.45,26130 +06067,STANDARD,0,"Rocky Hill",,,CT,"Hartford County",America/New_York,860,NA,US,41.66,-72.63,19330 +06068,STANDARD,0,Salisbury,,,CT,"Litchfield County",America/New_York,,NA,US,42.01,-73.42,1150 +06069,STANDARD,0,Sharon,,"Sharon Valley, West Woods",CT,"Litchfield County",America/New_York,860,NA,US,41.87,-73.47,1750 +06070,STANDARD,0,Simsbury,,Simbury,CT,"Hartford County",America/New_York,860,NA,US,41.88,-72.81,15100 +06071,STANDARD,0,Somers,,"Connecticut State Prison",CT,"Tolland County",America/New_York,860,NA,US,41.98,-72.45,8710 +06072,"PO BOX",0,Somersville,,,CT,"Tolland County",America/New_York,860,NA,US,41.99,-72.45,371 +06073,STANDARD,0,"South Glastonbury","S Glastonbury",,CT,"Hartford County",America/New_York,860,NA,US,41.65,-72.56,5730 +06074,STANDARD,0,"South Windsor",,"Bissell, Wapping",CT,"Hartford County",America/New_York,860,NA,US,41.81,-72.61,25910 +06075,"PO BOX",0,Stafford,,,CT,"Tolland County",America/New_York,860,NA,US,41.98,-72.28,183 +06076,STANDARD,0,"Stafford Springs","Stafford Spgs, Union","Stafford Sp, West Stafford",CT,"Tolland County",America/New_York,860,NA,US,41.95,-72.3,10610 +06077,"PO BOX",0,Staffordville,,,CT,"Tolland County",America/New_York,860,NA,US,41.98,-72.31,175 +06078,STANDARD,0,Suffield,,,CT,"Hartford County",America/New_York,860,NA,US,41.98,-72.65,9700 +06079,"PO BOX",0,Taconic,,"Twin Lakes",CT,"Litchfield County",America/New_York,860,NA,US,42.03,-73.4,111 +06080,UNIQUE,0,Suffield,,"Mcdougal Correctional Fclty",CT,"Hartford County",America/New_York,860,NA,US,41.98,-72.65,10 +06081,STANDARD,0,Tariffville,,,CT,"Hartford County",America/New_York,860,NA,US,41.91,-72.77,1240 +06082,STANDARD,0,Enfield,,"Hazardville, North Thompsonville, Scitico, Thompsonville",CT,"Hartford County",America/New_York,860,NA,US,41.96,-72.56,35820 +06083,"PO BOX",0,Enfield,,,CT,"Hartford County",America/New_York,860,NA,US,41.96,-72.56,586 +06084,STANDARD,0,Tolland,,,CT,"Tolland County",America/New_York,860,NA,US,41.88,-72.36,14100 +06085,STANDARD,0,Unionville,,"Lake Garda",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.88,6900 +06087,UNIQUE,1,Unionville,,"Accr A Data",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.88,0 +06088,STANDARD,0,"East Windsor",,"Scantic, Warehouse Point",CT,"Hartford County",America/New_York,860,NA,US,41.91,-72.59,4320 +06089,STANDARD,0,Weatogue,,,CT,"Hartford County",America/New_York,860,NA,US,41.84,-72.82,3310 +06090,STANDARD,0,"West Granby",,,CT,"Hartford County",America/New_York,860,NA,US,41.95,-72.86,1120 +06091,STANDARD,0,"West Hartland",,,CT,"Hartford County",America/New_York,860,NA,US,42,-72.97,178 +06092,STANDARD,0,"West Simsbury",,,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.84,4330 +06093,STANDARD,0,"West Suffield",,"W Suffield",CT,"Hartford County",America/New_York,860,NA,US,42,-72.72,3370 +06094,"PO BOX",0,"Winchester Center","Winchestr Ctr",Winchester,CT,"Litchfield County",America/New_York,,NA,US,41.92,-73.1,260 +06095,STANDARD,0,Windsor,,Wilson,CT,"Hartford County",America/New_York,860,NA,US,41.85,-72.65,27630 +06096,STANDARD,0,"Windsor Locks",,"Bradley International Airpor",CT,"Hartford County",America/New_York,860,NA,US,41.92,-72.65,11600 +06098,STANDARD,0,Winsted,"Winchester Center, Winchestr Ctr",Winchester,CT,"Litchfield County",America/New_York,860,NA,US,41.92,-73.06,8650 +06101,STANDARD,0,Hartford,,"Htd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06102,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06103,STANDARD,0,Hartford,,Central,CT,"Hartford County",America/New_York,860,NA,US,41.77,-72.67,1780 +06104,"PO BOX",0,Hartford,,"Main Office",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06105,STANDARD,0,Hartford,"West Hartford","Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.77,-72.71,13180 +06106,STANDARD,0,Hartford,,Htfd,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,28370 +06107,STANDARD,0,"West Hartford","Hartford, West Hartfrd","W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,18480 +06108,STANDARD,0,"East Hartford",Hartford,"E Hartford, East Htfd, Forbes Village, Hartfrd, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.62,21010 +06109,STANDARD,0,Wethersfield,Hartford,"Hfd, Htfd, Weathersfield, Weth, Wethersfld",CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.67,25700 +06110,STANDARD,0,"West Hartford","Hartford, West Hartfrd","Corbins Corner, Elmwood, W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.73,-72.73,11650 +06111,STANDARD,0,Newington,Hartford,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.73,28480 +06112,STANDARD,0,Hartford,,"Blue Hills, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.7,16990 +06114,STANDARD,0,Hartford,,"Barry Square, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.74,-72.67,21600 +06115,"PO BOX",0,Hartford,,"Hfd, Htfd, Main Office",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,35 +06117,STANDARD,0,"West Hartford","Hartford, West Hartfrd","W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.76,14360 +06118,STANDARD,0,"East Hartford",Hartford,"E Hartford, E Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.61,24120 +06119,STANDARD,0,"West Hartford","Hartford, West Hartfrd","W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.73,12470 +06120,STANDARD,0,Hartford,,"Unity Plaza",CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.66,9030 +06123,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,268 +06126,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,931 +06127,"PO BOX",0,"West Hartford","Hartford, West Hartfrd","W Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,257 +06128,"PO BOX",0,"East Hartford",Hartford,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.61,266 +06129,"PO BOX",0,Wethersfield,Hartford,"Weathersfield, Wethersfld",CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.67,201 +06131,"PO BOX",0,Newington,Hartford,,CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.73,278 +06132,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,414 +06133,"PO BOX",0,"West Hartford","Hartford, West Hartfrd","Elmwood, W Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,396 +06134,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,254 +06137,"PO BOX",0,"West Hartford","Bishops Cor, Bishops Corner, Hartford, West Hartfrd","W Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,120 +06138,"PO BOX",0,"East Hartford","Hartford, Silver Lane","E Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.61,342 +06140,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,78 +06141,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,153 +06142,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,45 +06143,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,159 +06144,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,149 +06145,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,18 +06146,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,99 +06147,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,224 +06150,UNIQUE,0,Hartford,,"Bank Of America, Hartford Natl Bank, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06151,UNIQUE,0,Hartford,,"Bank Of America, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06152,STANDARD,0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06153,UNIQUE,0,Hartford,,"Allstate, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06154,UNIQUE,0,Hartford,,"C T Mutual Insurance Co, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06155,UNIQUE,0,Hartford,,"Hartford Insurance Group, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06156,UNIQUE,0,Hartford,,"Aetna Life, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06160,UNIQUE,0,Hartford,,"Aetna Insurance, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.77,-72.69,0 +06161,UNIQUE,0,Hartford,Wethersfield,"Ct Dept Of Motor Vehicles",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06167,UNIQUE,0,Hartford,,"A A R P Pharmacy, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06176,UNIQUE,0,Hartford,,"Hfd, Htfd, Irs",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06180,UNIQUE,0,Hartford,,"Bank Of America, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06183,UNIQUE,0,Hartford,,"Hfd, Htfd, Travelers Ins",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06199,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06226,STANDARD,0,Willimantic,,"Chestnut Hill, Conantville, Perkins Corner",CT,"Windham County",America/New_York,860,NA,US,41.71,-72.21,12970 +06230,"PO BOX",0,Abington,,,CT,"Windham County",America/New_York,860,NA,US,41.85,-72.01,113 +06231,STANDARD,0,Amston,,,CT,"Tolland County",America/New_York,860,NA,US,41.62,-72.37,3770 +06232,STANDARD,0,Andover,,,CT,"Tolland County",America/New_York,860,NA,US,41.73,-72.36,3000 +06233,"PO BOX",0,Ballouville,Killingly,,CT,"Windham County",America/New_York,860,NA,US,41.87,-71.86,214 +06234,STANDARD,0,Brooklyn,,Bkln,CT,"Windham County",America/New_York,860,NA,US,41.78,-71.95,7140 +06235,STANDARD,0,Chaplin,"Mansfield Center, Mansfield Ctr, North Windham",,CT,"Windham County",America/New_York,860,NA,US,41.8,-72.11,1980 +06237,STANDARD,0,Columbia,,,CT,"Tolland County",America/New_York,860,NA,US,41.7,-72.3,4970 +06238,STANDARD,0,Coventry,,,CT,"Tolland County",America/New_York,860,NA,US,41.78,-72.3,11420 +06239,STANDARD,0,Danielson,Killingly,"East Brooklyn, South Killingly",CT,"Windham County",America/New_York,860,NA,US,41.8,-71.88,9170 +06241,STANDARD,0,Dayville,Killingly,"Killingly Center",CT,"Windham County",America/New_York,860,NA,US,41.85,-71.84,5610 +06242,STANDARD,0,Eastford,,,CT,"Windham County",America/New_York,860,NA,US,41.9,-72.08,1280 +06243,STANDARD,0,"East Killingly","E Killingly, Killingly",,CT,"Windham County",America/New_York,860,NA,US,41.84,-71.81,240 +06244,"PO BOX",0,"East Woodstock","E Woodstock",,CT,"Windham County",America/New_York,860,NA,US,41.98,-71.97,271 +06245,"PO BOX",0,Fabyan,,,CT,"Windham County",America/New_York,860,NA,US,42.01,-71.94,0 +06246,"PO BOX",0,"Grosvenor Dale","Grosvenor Dl",,CT,"Windham County",America/New_York,860,NA,US,41.96,-71.89,220 +06247,STANDARD,0,Hampton,Scotland,,CT,"Windham County",America/New_York,860,NA,US,41.78,-72.05,2130 +06248,STANDARD,0,Hebron,,,CT,"Tolland County",America/New_York,860,NA,US,41.65,-72.36,5280 +06249,STANDARD,0,Lebanon,,Exeter,CT,"New London County",America/New_York,860,NA,US,41.66,-72.24,6640 +06250,STANDARD,0,"Mansfield Center","Mansfield Ctr","Mansfield, Mansfield Hollow, West Ashford",CT,"Tolland County",America/New_York,860,NA,US,41.77,-72.19,4400 +06251,"PO BOX",0,"Mansfield Depot","Mansfield Dpt",Merrow,CT,"Tolland County",America/New_York,860,NA,US,41.77,-72.2,74 +06254,STANDARD,0,"North Franklin","N Franklin","Franklin, Franklin Hill",CT,"New London County",America/New_York,860,NA,US,41.61,-72.14,1740 +06255,STANDARD,0,"North Grosvenordale","N Grosvenordl","North Grosvendale",CT,"Windham County",America/New_York,860,NA,US,41.98,-71.9,3930 +06256,STANDARD,0,"North Windham",,"South Chaplin",CT,"Windham County",America/New_York,860,NA,US,41.73,-72.16,1870 +06258,"PO BOX",0,Pomfret,,,CT,"Windham County",America/New_York,860,NA,US,41.9,-71.96,503 +06259,STANDARD,0,"Pomfret Center","Pomfret Ctr","Elliot, Pomfret Landing, Ponfret Center",CT,"Windham County",America/New_York,860,NA,US,41.86,-71.99,3530 +06260,STANDARD,0,Putnam,,"East Putnam, Laurel Hill, Putman, Putnam Heights, Putnm, Rhodesville, Sawyer District",CT,"Windham County",America/New_York,860,NA,US,41.91,-71.9,7800 +06262,STANDARD,0,Quinebaug,,,CT,"Windham County",America/New_York,860,NA,US,42.02,-71.95,500 +06263,"PO BOX",0,Rogers,Killingly,,CT,"Windham County",America/New_York,860,NA,US,41.84,-71.9,451 +06264,STANDARD,0,Scotland,,,CT,"Windham County",America/New_York,860,NA,US,41.69,-72.1,550 +06265,STANDARD,0,"South Willington","S Willington",,CT,"Tolland County",America/New_York,860,NA,US,41.89,-72.26,0 +06266,STANDARD,0,"South Windham",,,CT,"Windham County",America/New_York,860,NA,US,41.67,-72.17,510 +06267,"PO BOX",0,"South Woodstock","S Woodstock",,CT,"Windham County",America/New_York,860,NA,US,41.92,-71.95,258 +06268,STANDARD,0,"Storrs Mansfield","Storrs, Storrs Manfld","Gurleyville, Mansfield",CT,"Tolland County",America/New_York,860,NA,US,41.8,-72.25,5490 +06269,UNIQUE,0,"Storrs Mansfield","Storrs, Storrs Manfld","University Of Ct",CT,"Tolland County",America/New_York,860,NA,US,41.8,-72.29,337 +06277,STANDARD,0,Thompson,,"East Thompson, Mechanicsville",CT,"Windham County",America/New_York,860,NA,US,41.95,-71.86,3620 +06278,STANDARD,0,Ashford,Warrenville,,CT,"Windham County",America/New_York,860,NA,US,41.9,-72.17,3960 +06279,STANDARD,0,Willington,,"East Willington, W Willington",CT,"Tolland County",America/New_York,860,NA,US,41.86,-72.27,4660 +06280,STANDARD,0,Windham,,,CT,"Windham County",America/New_York,860,NA,US,41.7,-72.16,2730 +06281,STANDARD,0,Woodstock,,,CT,"Windham County",America/New_York,860,NA,US,41.95,-71.98,6270 +06282,STANDARD,0,"Woodstock Valley","Woodstock Vly",,CT,"Windham County",America/New_York,860,NA,US,41.94,-72.08,1100 +06320,STANDARD,0,"New London",,"Ft Trumbull, United States Coast Guard, Us Coast Guard Acad",CT,"New London County",America/New_York,860,NA,US,41.35,-72.1,20430 +06330,STANDARD,0,Baltic,,Sprague,CT,"New London County",America/New_York,860,NA,US,41.64,-72.07,2600 +06331,STANDARD,0,Canterbury,,"South Canterbury",CT,"Windham County",America/New_York,860,NA,US,41.7,-72,4790 +06332,"PO BOX",0,"Central Village","Central Vlg",,CT,"Windham County",America/New_York,860,NA,US,41.73,-71.9,943 +06333,STANDARD,0,"East Lyme",,,CT,"New London County",America/New_York,860,NA,US,41.38,-72.24,7060 +06334,STANDARD,0,Bozrah,,Fitchville,CT,"New London County",America/New_York,860,NA,US,41.54,-72.17,2200 +06335,STANDARD,0,"Gales Ferry",,,CT,"New London County",America/New_York,860,NA,US,41.43,-72.06,6470 +06336,STANDARD,0,Gilman,,,CT,"New London County",America/New_York,860,NA,US,41.58,-72.2,96 +06338,"PO BOX",0,Mashantucket,Ledyard,,CT,"New London County",America/New_York,860,NA,US,41.35,-72.09,200 +06339,STANDARD,0,Ledyard,"Gales Ferry",,CT,"New London County",America/New_York,860,NA,US,41.44,-71.99,7890 +06340,STANDARD,0,Groton,,"Borough, Center Groton, Groton Long Point, Jupiter Point, Noank, Poquonock Bridge",CT,"New London County",America/New_York,860,NA,US,41.32,-72.07,23870 +06349,"PO BOX",0,Groton,,"Naval Submarine Base, Navsub Base, Sub Base New London, Submarine Base",CT,"New London County",America/New_York,860,NA,US,41.32,-72.07,423 +06350,"PO BOX",0,Hanover,,,CT,"New London County",America/New_York,860,NA,US,41.65,-72.07,283 +06351,STANDARD,0,"Jewett City","Griswold, Lisbon","Hopeville, Preston",CT,"New London County",America/New_York,860,NA,US,41.6,-71.98,14230 +06353,STANDARD,0,Montville,,,CT,"New London County",America/New_York,860,NA,US,41.46,-72.15,290 +06354,STANDARD,0,Moosup,,,CT,"Windham County",America/New_York,860,NA,US,41.71,-71.87,4760 +06355,STANDARD,0,Mystic,,"Masons Island",CT,"New London County",America/New_York,860,NA,US,41.35,-71.97,11610 +06357,STANDARD,0,Niantic,,,CT,"New London County",America/New_York,860,NA,US,41.32,-72.22,9730 +06359,STANDARD,0,"North Stonington","N Stonington",,CT,"New London County",America/New_York,860,NA,US,41.44,-71.89,4870 +06360,STANDARD,0,Norwich,,"Norwichtown, Occum, Poquetanuck",CT,"New London County",America/New_York,860,NA,US,41.55,-72.08,30860 +06365,STANDARD,0,Preston,Norwich,,CT,"New London County",America/New_York,860,NA,US,41.55,-71.99,4420 +06370,STANDARD,0,Oakdale,,Chesterfield,CT,"New London County",America/New_York,860,NA,US,41.46,-72.18,6740 +06371,STANDARD,0,"Old Lyme",Lyme,"North Lyme",CT,"New London County",America/New_York,860,NA,US,41.31,-72.34,8920 +06372,"PO BOX",0,"Old Mystic",,,CT,"New London County",America/New_York,860,NA,US,41.36,-71.98,338 +06373,"PO BOX",0,Oneco,,,CT,"Windham County",America/New_York,860,NA,US,41.69,-71.81,574 +06374,STANDARD,0,Plainfield,,,CT,"Windham County",America/New_York,860,NA,US,41.67,-71.92,6830 +06375,STANDARD,0,"Quaker Hill",,,CT,"New London County",America/New_York,860,NA,US,41.4,-72.12,3530 +06376,"PO BOX",0,"South Lyme",,"Point O Woods",CT,"New London County",America/New_York,860,NA,US,41.29,-72.25,182 +06377,STANDARD,0,Sterling,,"North Sterling",CT,"Windham County",America/New_York,860,NA,US,41.7,-71.83,2470 +06378,STANDARD,0,Stonington,,"Lords Point, Shawondassee",CT,"New London County",America/New_York,860,NA,US,41.33,-71.9,4820 +06379,STANDARD,0,Pawcatuck,,,CT,"New London County",America/New_York,860,NA,US,41.37,-71.85,8000 +06380,STANDARD,0,Taftville,,,CT,"New London County",America/New_York,860,NA,US,41.56,-72.05,2280 +06382,STANDARD,0,Uncasville,,,CT,"New London County",America/New_York,860,NA,US,41.45,-72.12,9100 +06383,"PO BOX",0,Versailles,,,CT,"New London County",America/New_York,860,NA,US,41.58,-71.94,195 +06384,STANDARD,0,Voluntown,Glasgo,,CT,"New London County",America/New_York,860,NA,US,41.59,-71.85,2450 +06385,STANDARD,0,Waterford,,"Jordan Village, Millstone",CT,"New London County",America/New_York,860,NA,US,41.34,-72.14,14630 +06386,UNIQUE,1,Waterford,,"Bureau Business Practice, Bureau Of Business Pr",CT,"New London County",America/New_York,860,NA,US,41.33,-72.13,0 +06387,"PO BOX",0,Wauregan,,"West Wauregan",CT,"Windham County",America/New_York,860,NA,US,41.74,-71.91,714 +06388,"PO BOX",0,"West Mystic",Mystic,,CT,"New London County",America/New_York,860,NA,US,41.35,-71.98,125 +06389,STANDARD,0,Yantic,,,CT,"New London County",America/New_York,860,NA,US,41.56,-72.13,210 +06390,"PO BOX",0,"Fishers Island","Fishers Isle",,NY,"Suffolk County",America/New_York,631,NA,US,41.27,-71.99,286 +06401,STANDARD,0,Ansonia,,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.34,-73.06,16380 +06403,STANDARD,0,"Beacon Falls",,,CT,"New Haven County",America/New_York,203,NA,US,41.44,-73.04,5590 +06404,"PO BOX",0,Botsford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.39,-73.31,151 +06405,STANDARD,0,Branford,,,CT,"New Haven County",America/New_York,203,NA,US,41.28,-72.81,25270 +06408,UNIQUE,0,Cheshire,,"Macys By Mail",CT,"New Haven County",America/New_York,203,NA,US,41.5,-72.9,0 +06409,STANDARD,0,Centerbrook,,,CT,"Middlesex County",America/New_York,860,NA,US,41.35,-72.42,620 +06410,STANDARD,0,Cheshire,,,CT,"New Haven County",America/New_York,203,NA,US,41.5,-72.9,26110 +06411,UNIQUE,0,Cheshire,,"Bloomingdales By Mail Ltd",CT,"New Haven County",America/New_York,203,NA,US,41.5,-72.9,0 +06412,STANDARD,0,Chester,,,CT,"Middlesex County",America/New_York,860,NA,US,41.4,-72.45,3370 +06413,STANDARD,0,Clinton,,,CT,"Middlesex County",America/New_York,860,NA,US,41.27,-72.53,12010 +06414,"PO BOX",0,Cobalt,,,CT,"Middlesex County",America/New_York,860,NA,US,41.57,-72.55,406 +06415,STANDARD,0,Colchester,,,CT,"New London County",America/New_York,860,NA,US,41.57,-72.33,15450 +06416,STANDARD,0,Cromwell,,,CT,"Middlesex County",America/New_York,860,NA,US,41.6,-72.63,13330 +06417,STANDARD,0,"Deep River",,,CT,"Middlesex County",America/New_York,860,NA,US,41.39,-72.43,4010 +06418,STANDARD,0,Derby,,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.32,-73.08,10750 +06419,STANDARD,0,Killingworth,"Deep River",,CT,"Middlesex County",America/New_York,860,NA,US,41.35,-72.56,6150 +06420,STANDARD,0,Salem,Colchester,,CT,"New London County",America/New_York,860,NA,US,41.48,-72.27,4090 +06422,STANDARD,0,Durham,,,CT,"Middlesex County",America/New_York,860,NA,US,41.47,-72.68,7070 +06423,STANDARD,0,"East Haddam",,,CT,"Middlesex County",America/New_York,860,NA,US,41.45,-72.46,4560 +06424,STANDARD,0,"East Hampton","Haddam Neck",,CT,"Middlesex County",America/New_York,860,NA,US,41.57,-72.49,11710 +06426,STANDARD,0,Essex,,,CT,"Middlesex County",America/New_York,860,NA,US,41.35,-72.39,3100 +06437,STANDARD,0,Guilford,,,CT,"New Haven County",America/New_York,203,NA,US,41.28,-72.67,21010 +06438,STANDARD,0,Haddam,,,CT,"Middlesex County",America/New_York,860,NA,US,41.45,-72.5,2450 +06439,"PO BOX",0,Hadlyme,,,CT,"New London County",America/New_York,860,NA,US,41.4,-72.34,344 +06440,"PO BOX",0,Hawleyville,,,CT,"Fairfield County",America/New_York,203,NA,US,41.43,-73.35,97 +06441,STANDARD,0,Higganum,,,CT,"Middlesex County",America/New_York,860,NA,US,41.49,-72.55,5300 +06442,STANDARD,0,Ivoryton,,,CT,"Middlesex County",America/New_York,860,NA,US,41.34,-72.43,2540 +06443,STANDARD,0,Madison,,,CT,"New Haven County",America/New_York,203,NA,US,41.27,-72.59,17210 +06444,"PO BOX",0,Marion,,,CT,"Hartford County",America/New_York,860,NA,US,41.56,-72.92,759 +06447,STANDARD,0,Marlborough,,Marlboro,CT,"Hartford County",America/New_York,860,NA,US,41.63,-72.45,5960 +06450,STANDARD,0,Meriden,,,CT,"New Haven County",America/New_York,203,NA,US,41.53,-72.79,31140 +06451,STANDARD,0,Meriden,,,CT,"New Haven County",America/New_York,203,NA,US,41.54,-72.82,21540 +06454,UNIQUE,1,Meriden,"Travlers Insurance",,CT,"New Haven County",America/New_York,203,NA,US,41.54,-72.8,0 +06455,STANDARD,0,Middlefield,,,CT,"Middlesex County",America/New_York,860,NA,US,41.5,-72.71,2980 +06456,"PO BOX",0,"Middle Haddam",,,CT,"Middlesex County",America/New_York,860,NA,US,41.52,-72.55,437 +06457,STANDARD,0,Middletown,,,CT,"Middlesex County",America/New_York,860,NA,US,41.54,-72.65,37480 +06459,UNIQUE,0,Middletown,,Wesleyan,CT,"Middlesex County",America/New_York,860,NA,US,41.54,-72.65,195 +06460,STANDARD,0,Milford,,,CT,"New Haven County",America/New_York,203,NA,US,41.22,-73.06,34070 +06461,STANDARD,0,Milford,,,CT,"New Haven County",America/New_York,203,NA,US,41.23,-73.08,13870 +06467,"PO BOX",0,Milldale,,,CT,"Hartford County",America/New_York,860,NA,US,41.57,-72.9,477 +06468,STANDARD,0,Monroe,,"Stepney, Upper Stepney",CT,"Fairfield County",America/New_York,203,NA,US,41.36,-73.2,18560 +06469,STANDARD,0,Moodus,,,CT,"Middlesex County",America/New_York,860,NA,US,41.5,-72.45,2950 +06470,STANDARD,0,Newtown,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.41,-73.31,15340 +06471,STANDARD,0,"North Branford","N Branford",,CT,"New Haven County",America/New_York,203,NA,US,41.33,-72.77,6830 +06472,STANDARD,0,Northford,,,CT,"New Haven County",America/New_York,203,NA,US,41.38,-72.77,6190 +06473,STANDARD,0,"North Haven",,"No Haven",CT,"New Haven County",America/New_York,203,NA,US,41.38,-72.85,23130 +06474,"PO BOX",0,"North Westchester","N Westchester",,CT,"New London County",America/New_York,860,NA,US,41.56,-72.34,0 +06475,STANDARD,0,"Old Saybrook",,Fenwick,CT,"Middlesex County",America/New_York,860,NA,US,41.29,-72.36,9750 +06477,STANDARD,0,Orange,,,CT,"New Haven County",America/New_York,203,NA,US,41.27,-73.02,13950 +06478,STANDARD,0,Oxford,Seymour,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.42,-73.11,12260 +06479,STANDARD,0,Plantsville,,,CT,"Hartford County",America/New_York,860,NA,US,41.57,-72.91,9100 +06480,STANDARD,0,Portland,,,CT,"Middlesex County",America/New_York,860,NA,US,41.58,-72.62,8650 +06481,STANDARD,0,Rockfall,,,CT,"Middlesex County",America/New_York,860,NA,US,41.53,-72.69,1080 +06482,STANDARD,0,"Sandy Hook",,,CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.24,10330 +06483,STANDARD,0,Seymour,,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.4,-73.06,15180 +06484,STANDARD,0,Shelton,Huntington,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.3,-73.13,38080 +06487,"PO BOX",0,"South Britain",,,CT,"New Haven County",America/New_York,203,NA,US,41.47,-73.23,59 +06488,STANDARD,0,Southbury,,,CT,"New Haven County",America/New_York,203,NA,US,41.48,-73.22,18010 +06489,STANDARD,0,Southington,,,CT,"Hartford County",America/New_York,860,NA,US,41.6,-72.88,30650 +06491,"PO BOX",0,Stevenson,,,CT,"Fairfield County",America/New_York,203,NA,US,41.33,-73.23,88 +06492,STANDARD,0,Wallingford,Yalesville,,CT,"New Haven County",America/New_York,203,NA,US,41.44,-72.81,40750 +06493,UNIQUE,0,Wallingford,,"Ct Gen Med Claims Office, Publishers Clearing House",CT,"New Haven County",America/New_York,203,NA,US,41.44,-72.81,0 +06494,UNIQUE,0,Wallingford,,"Fosdick Corp",CT,"New Haven County",America/New_York,203,NA,US,41.44,-72.81,0 +06495,UNIQUE,0,Wallingford,,"International Masters Pub",CT,"New Haven County",America/New_York,203,NA,US,41.46,-72.8,0 +06497,STANDARD,1,Stratford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.19,-73.12,71 +06498,STANDARD,0,Westbrook,,,CT,"Middlesex County",America/New_York,860,NA,US,41.28,-72.45,5950 +06501,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,65 +06502,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,123 +06503,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,68 +06504,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,69 +06505,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,61 +06506,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,26 +06507,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06508,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06509,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,23 +06510,STANDARD,0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,"203,475",NA,US,41.31,-72.93,2040 +06511,STANDARD,0,"New Haven",Hamden,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.31,-72.92,33990 +06512,STANDARD,0,"East Haven","New Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.29,-72.86,25330 +06513,STANDARD,0,"New Haven","East Haven","E Haven, Fair Haven, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.32,-72.87,30630 +06514,STANDARD,0,Hamden,"New Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.38,-72.94,22620 +06515,STANDARD,0,"New Haven",,"N Haven, Westville",CT,"New Haven County",America/New_York,203,NA,US,41.33,-72.97,13000 +06516,STANDARD,0,"West Haven","W Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.27,-72.96,45210 +06517,STANDARD,0,Hamden,"New Haven, Whitneyville",,CT,"New Haven County",America/New_York,203,NA,US,41.35,-72.91,13280 +06518,STANDARD,0,Hamden,"New Haven","Centerville Mount Carmel, Mount Carmel, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.43,-72.91,12540 +06519,STANDARD,0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,"203,475",NA,US,41.29,-72.93,11730 +06520,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,552 +06521,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06524,STANDARD,0,Bethany,"New Haven",,CT,"New Haven County",America/New_York,203,NA,US,41.42,-72.99,5190 +06525,STANDARD,0,Woodbridge,"New Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.36,-73,8800 +06530,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,101 +06531,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,99 +06532,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,136 +06533,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,64 +06534,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,23 +06535,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06536,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,20 +06537,UNIQUE,0,"New Haven",,"Advertising Distr Co, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06538,UNIQUE,0,"New Haven",,"Advertising Distr Co, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06540,UNIQUE,0,"New Haven",,"Conn Bank & Trust Co",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06601,"PO BOX",0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,861 +06602,"PO BOX",0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06604,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.18,-73.19,20760 +06605,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.16,-73.22,18640 +06606,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.21,-73.21,39170 +06607,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.17,-73.17,6490 +06608,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.19,-73.18,11050 +06610,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.21,-73.16,19240 +06611,STANDARD,0,Trumbull,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.25,-73.2,35550 +06612,STANDARD,0,Easton,,,CT,"Fairfield County",America/New_York,203,NA,US,41.24,-73.31,7210 +06614,STANDARD,0,Stratford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.2,-73.13,31250 +06615,STANDARD,0,Stratford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.17,-73.13,16850 +06650,STANDARD,1,Bridgeport,,"Stratmar Fulfillment Corp",CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06673,UNIQUE,0,Bridgeport,,"Promotion Marketing Ser Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06699,UNIQUE,0,Bridgeport,,"Controlled Distribution",CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06701,STANDARD,0,Waterbury,,"Us Postal Service, Wtby",CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,31 +06702,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,"203,475",NA,US,41.56,-73.05,1850 +06703,"PO BOX",0,Waterbury,,,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,135 +06704,STANDARD,0,Waterbury,,"Plaza, Wtby",CT,"New Haven County",America/New_York,203,NA,US,41.59,-73.04,21590 +06705,STANDARD,0,Waterbury,Wolcott,"East End, Wtby",CT,"New Haven County",America/New_York,203,NA,US,41.55,-72.99,22420 +06706,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,11640 +06708,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,"203,475",NA,US,41.55,-73.07,24840 +06710,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,"475,203",NA,US,41.57,-73.05,8480 +06712,STANDARD,0,Prospect,Waterbury,,CT,"New Haven County",America/New_York,203,NA,US,41.49,-72.97,9130 +06716,STANDARD,0,Wolcott,Waterbury,,CT,"New Haven County",America/New_York,203,NA,US,41.61,-72.98,15020 +06720,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,320 +06721,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,278 +06722,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,182 +06723,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,113 +06724,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,228 +06725,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,0 +06726,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,0 +06749,UNIQUE,0,Waterbury,,"Uniroyal Inc",CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,0 +06750,STANDARD,0,Bantam,,,CT,"Litchfield County",America/New_York,860,NA,US,41.72,-73.24,1160 +06751,STANDARD,0,Bethlehem,,,CT,"Litchfield County",America/New_York,,NA,US,41.63,-73.21,3140 +06752,STANDARD,0,Bridgewater,,,CT,"Litchfield County",America/New_York,,NA,US,41.52,-73.36,1490 +06753,"PO BOX",0,Cornwall,,,CT,"Litchfield County",America/New_York,,NA,US,41.84,-73.33,168 +06754,STANDARD,0,"Cornwall Bridge","Cornwall Brg, Warren",,CT,"Litchfield County",America/New_York,,NA,US,41.81,-73.37,1360 +06755,STANDARD,0,Gaylordsville,,,CT,"Litchfield County",America/New_York,,NA,US,41.64,-73.48,1010 +06756,STANDARD,0,Goshen,,,CT,"Litchfield County",America/New_York,860,NA,US,41.85,-73.23,2610 +06757,STANDARD,0,Kent,,,CT,"Litchfield County",America/New_York,860,NA,US,41.72,-73.47,1890 +06758,STANDARD,0,Lakeside,,,CT,"Litchfield County",America/New_York,,NA,US,41.68,-73.23,180 +06759,STANDARD,0,Litchfield,,,CT,"Litchfield County",America/New_York,860,NA,US,41.74,-73.19,5080 +06762,STANDARD,0,Middlebury,,,CT,"New Haven County",America/New_York,203,NA,US,41.52,-73.12,7480 +06763,STANDARD,0,Morris,,,CT,"Litchfield County",America/New_York,,NA,US,41.68,-73.17,1830 +06770,STANDARD,0,Naugatuck,,"Union City",CT,"New Haven County",America/New_York,"203,475",NA,US,41.48,-73.05,27740 +06776,STANDARD,0,"New Milford",,Northville,CT,"Litchfield County",America/New_York,860,NA,US,41.58,-73.4,24510 +06777,STANDARD,0,"New Preston Marble Dale","New Preston, Warren, Washington Depot, Washington Dt","Marble Dale, New Preston Marbledale, New Preston-Marble Dale, Washington",CT,"Litchfield County",America/New_York,860,NA,US,41.69,-73.34,1370 +06778,STANDARD,0,Northfield,Thomaston,,CT,"Litchfield County",America/New_York,860,NA,US,41.71,-73.11,1200 +06779,STANDARD,0,Oakville,Watertown,,CT,"Litchfield County",America/New_York,860,NA,US,41.59,-73.08,7240 +06781,"PO BOX",0,Pequabuck,,,CT,"Litchfield County",America/New_York,,NA,US,41.67,-73,150 +06782,STANDARD,0,Plymouth,,,CT,"Litchfield County",America/New_York,,NA,US,41.65,-73.04,2140 +06783,STANDARD,0,Roxbury,,,CT,"Litchfield County",America/New_York,,NA,US,41.55,-73.3,1830 +06784,STANDARD,0,Sherman,,,CT,"Fairfield County",America/New_York,203,NA,US,41.58,-73.5,3300 +06785,STANDARD,0,"South Kent",,,CT,"Litchfield County",America/New_York,,NA,US,41.69,-73.46,630 +06786,STANDARD,0,Terryville,,,CT,"Litchfield County",America/New_York,,NA,US,41.67,-73,8480 +06787,STANDARD,0,Thomaston,,,CT,"Litchfield County",America/New_York,860,NA,US,41.67,-73.07,6930 +06790,STANDARD,0,Torrington,,,CT,"Litchfield County",America/New_York,860,NA,US,41.83,-73.12,29980 +06791,STANDARD,0,Harwinton,Torrington,,CT,"Litchfield County",America/New_York,860,NA,US,41.75,-73.05,5280 +06792,UNIQUE,0,Torrington,Harwinton,"Mbi Inc",CT,"Litchfield County",America/New_York,,NA,US,41.77,-73.06,0 +06793,STANDARD,0,Washington,"Washington Depot, Washington Dt","Washington Green",CT,"Litchfield County",America/New_York,860,NA,US,41.63,-73.28,880 +06794,STANDARD,0,"Washington Depot","Washington Dt",Washington,CT,"Litchfield County",America/New_York,860,NA,US,41.65,-73.32,990 +06795,STANDARD,0,Watertown,,Oakville,CT,"Litchfield County",America/New_York,860,NA,US,41.61,-73.12,13090 +06796,STANDARD,0,"West Cornwall",,,CT,"Litchfield County",America/New_York,860,NA,US,41.87,-73.33,780 +06798,STANDARD,0,Woodbury,,,CT,"Litchfield County",America/New_York,203,NA,US,41.56,-73.2,8840 +06801,STANDARD,0,Bethel,,,CT,"Fairfield County",America/New_York,203,NA,US,41.37,-73.41,18510 +06804,STANDARD,0,Brookfield,"Brookfld Ctr","Brookfield Center",CT,"Fairfield County",America/New_York,203,NA,US,41.46,-73.39,16840 +06807,STANDARD,0,"Cos Cob",,,CT,"Fairfield County",America/New_York,203,NA,US,41.06,-73.59,7050 +06810,STANDARD,0,Danbury,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.4,-73.47,44870 +06811,STANDARD,0,Danbury,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.42,-73.48,26930 +06812,STANDARD,0,"New Fairfield",,,CT,"Fairfield County",America/New_York,203,NA,US,41.48,-73.48,13130 +06813,"PO BOX",0,Danbury,,,CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,1183 +06814,UNIQUE,1,Danbury,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,0 +06816,UNIQUE,1,Danbury,,"Grolier Entrprz Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,0 +06817,UNIQUE,1,Danbury,,"Union Carbide Corp",CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,0 +06820,STANDARD,0,Darien,,"Noroton, Noroton Heights, Tokeneke",CT,"Fairfield County",America/New_York,203,NA,US,41.05,-73.47,21290 +06824,STANDARD,0,Fairfield,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.13,-73.28,30410 +06825,STANDARD,0,Fairfield,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.2,-73.24,19370 +06828,STANDARD,0,Fairfield,,"General Electric",CT,"Fairfield County",America/New_York,203,NA,US,41.13,-73.28,0 +06829,"PO BOX",0,Georgetown,,,CT,"Fairfield County",America/New_York,203,NA,US,41.24,-73.43,284 +06830,STANDARD,0,Greenwich,,"Belle Haven",CT,"Fairfield County",America/New_York,203,NA,US,41.06,-73.63,21340 +06831,STANDARD,0,Greenwich,,Glenville,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.66,13360 +06832,UNIQUE,1,Greenwich,Brm,,CT,"Fairfield County",America/New_York,203,NA,US,41.02,-73.62,0 +06836,"PO BOX",0,Greenwich,,,CT,"Fairfield County",America/New_York,203,NA,US,41.06,-73.63,288 +06838,"PO BOX",0,"Greens Farms",,,CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.31,191 +06840,STANDARD,0,"New Canaan",,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.49,19340 +06842,UNIQUE,1,"New Canaan",,"V I P Serv Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.49,0 +06850,STANDARD,0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.13,-73.45,18580 +06851,STANDARD,0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.4,25470 +06852,"PO BOX",0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,469 +06853,STANDARD,0,Norwalk,,Rowayton,CT,"Fairfield County",America/New_York,203,NA,US,41.07,-73.44,3530 +06854,STANDARD,0,Norwalk,,"South Norwalk",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,25510 +06855,STANDARD,0,Norwalk,,"East Norwalk",CT,"Fairfield County",America/New_York,203,NA,US,41.08,-73.4,7210 +06856,"PO BOX",0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.11,-73.42,420 +06857,UNIQUE,0,Norwalk,,"Mbi Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06858,UNIQUE,0,Norwalk,,"Setan Industries",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06859,UNIQUE,1,Norwalk,,"Perkin Elmer Corp",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06860,UNIQUE,0,Norwalk,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06870,STANDARD,0,"Old Greenwich",,,CT,"Fairfield County",America/New_York,203,NA,US,41.03,-73.56,7230 +06875,"PO BOX",0,"Redding Center","Redding Ctr",,CT,"Fairfield County",America/New_York,203,NA,US,41.3,-73.38,107 +06876,"PO BOX",0,"Redding Ridge",,,CT,"Fairfield County",America/New_York,203,NA,US,41.3,-73.38,171 +06877,STANDARD,0,Ridgefield,,,CT,"Fairfield County",America/New_York,203,NA,US,41.27,-73.49,24340 +06878,STANDARD,0,Riverside,,,CT,"Fairfield County",America/New_York,203,NA,US,41.03,-73.58,8040 +06879,UNIQUE,0,Ridgefield,,"Promotion Systems Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.27,-73.49,0 +06880,STANDARD,0,Westport,,Saugatuck,CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,26050 +06881,"PO BOX",0,Westport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,222 +06883,STANDARD,0,Weston,,,CT,"Fairfield County",America/New_York,203,NA,US,41.22,-73.37,9950 +06888,UNIQUE,0,Westport,,"Promotional Dev Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,0 +06889,UNIQUE,0,Westport,,"Websters Unified",CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,0 +06890,STANDARD,0,Southport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.28,4360 +06896,STANDARD,0,Redding,"West Redding",,CT,"Fairfield County",America/New_York,203,NA,US,41.3,-73.38,8210 +06897,STANDARD,0,Wilton,,,CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.42,18040 +06901,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,"475,203",NA,US,41.05,-73.54,7270 +06902,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.06,-73.54,59640 +06903,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.57,13830 +06904,"PO BOX",0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,890 +06905,STANDARD,0,Stamford,Ridgeway,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,20230 +06906,STANDARD,0,Stamford,,Glenbrook,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.07,-73.52,8960 +06907,STANDARD,0,Stamford,,Springdale,CT,"Fairfield County",America/New_York,203,NA,US,41.1,-73.52,8940 +06910,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06911,"PO BOX",0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,398 +06912,"PO BOX",0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06913,UNIQUE,0,Stamford,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06914,UNIQUE,0,Stamford,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06920,UNIQUE,1,Stamford,,"Conn National Bank",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06921,UNIQUE,1,Stamford,,"Champion International",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06922,UNIQUE,1,Stamford,,"Clairol Co",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06925,UNIQUE,1,Stamford,,"Conn Bank & Trust",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06926,UNIQUE,0,Stamford,,"Pitney Bowes Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06927,UNIQUE,0,Stamford,,Gecc,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06928,UNIQUE,1,Stamford,,"International Masters Pub",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +07001,STANDARD,0,Avenel,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.58,-74.27,13750 +07002,STANDARD,0,Bayonne,,"Bergen Point, Pamrapo",NJ,"Hudson County",America/New_York,"201,551",NA,US,40.66,-74.11,60150 +07003,STANDARD,0,Bloomfield,,"Brookdale, Grove, North Center",NJ,"Essex County",America/New_York,"862,973",NA,US,40.81,-74.18,46850 +07004,STANDARD,0,Fairfield,,,NJ,"Essex County",America/New_York,862,NA,US,40.88,-74.3,7900 +07005,STANDARD,0,Boonton,"Boonton Township, Boonton Twp","Lake Intervale, Lk Intervale, Lyonsville, Meriden, Powerville, Rockaway Valley, Taylortown",NJ,"Morris County",America/New_York,"862,973",NA,US,40.9,-74.4,15070 +07006,STANDARD,0,Caldwell,"N Caldwell, North Caldwell, W Caldwell, West Caldwell",,NJ,"Essex County",America/New_York,"201,862,973",NA,US,40.85,-74.28,24720 +07007,"PO BOX",0,Caldwell,"West Caldwell",,NJ,"Essex County",America/New_York,862,NA,US,40.83,-74.27,134 +07008,STANDARD,0,Carteret,,"West Carteret",NJ,"Middlesex County",America/New_York,732,NA,US,40.58,-74.22,23040 +07009,STANDARD,0,"Cedar Grove",,Overbrook,NJ,"Essex County",America/New_York,973,NA,US,40.85,-74.22,12030 +07010,STANDARD,0,"Cliffside Park","Cliffside Pk","Cliff Park",NJ,"Bergen County",America/New_York,"201,551",NA,US,40.82,-73.99,21420 +07011,STANDARD,0,Clifton,,"Main Avenue Station",NJ,"Passaic County",America/New_York,862,NA,US,40.88,-74.14,38600 +07012,STANDARD,0,Clifton,,Allwood,NJ,"Passaic County",America/New_York,862,NA,US,40.85,-74.16,12590 +07013,STANDARD,0,Clifton,,,NJ,"Passaic County",America/New_York,862,NA,US,40.86,-74.15,26680 +07014,STANDARD,0,Clifton,,Delawanna,NJ,"Passaic County",America/New_York,862,NA,US,40.83,-74.14,5370 +07015,"PO BOX",0,Clifton,,,NJ,"Passaic County",America/New_York,862,NA,US,40.86,-74.15,914 +07016,STANDARD,0,Cranford,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.3,22870 +07017,STANDARD,0,"East Orange",,"Ampere, Doddtown",NJ,"Essex County",America/New_York,862,NA,US,40.77,-74.21,30610 +07018,STANDARD,0,"East Orange",,"Va Hospital",NJ,"Essex County",America/New_York,862,NA,US,40.76,-74.21,24050 +07019,"PO BOX",0,"East Orange",,,NJ,"Essex County",America/New_York,862,NA,US,40.76,-74.21,1398 +07020,STANDARD,0,Edgewater,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.82,-73.97,11850 +07021,STANDARD,0,"Essex Fells",,,NJ,"Essex County",America/New_York,862,NA,US,40.82,-74.28,2250 +07022,STANDARD,0,Fairview,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.81,-74,11300 +07023,STANDARD,0,Fanwood,,,NJ,"Union County",America/New_York,908,NA,US,40.64,-74.38,7770 +07024,STANDARD,0,"Fort Lee",,"Palisade, West Fort Lee",NJ,"Bergen County",America/New_York,,NA,US,40.85,-73.97,34240 +07026,STANDARD,0,Garfield,,"Outwater, Ritz",NJ,"Bergen County",America/New_York,,NA,US,40.87,-74.1,28750 +07027,STANDARD,0,Garwood,,,NJ,"Union County",America/New_York,,NA,US,40.65,-74.32,4060 +07028,STANDARD,0,"Glen Ridge",,,NJ,"Essex County",America/New_York,862,NA,US,40.8,-74.2,7970 +07029,STANDARD,0,Harrison,"East Newark",,NJ,"Hudson County",America/New_York,"201,862",NA,US,40.74,-74.15,17070 +07030,STANDARD,0,Hoboken,,"Castle Point, Uptown, Washington Street",NJ,"Hudson County",America/New_York,862,NA,US,40.75,-74.03,44510 +07031,STANDARD,0,"North Arlington","N Arlington",,NJ,"Bergen County",America/New_York,,NA,US,40.79,-74.12,15160 +07032,STANDARD,0,Kearny,,"Arlington, South Kearny, West Arlington",NJ,"Hudson County",America/New_York,"201,551",NA,US,40.75,-74.11,34930 +07033,STANDARD,0,Kenilworth,,,NJ,"Union County",America/New_York,908,NA,US,40.67,-74.28,7960 +07034,STANDARD,0,"Lake Hiawatha",,"Lk Hiawatha",NJ,"Morris County",America/New_York,,NA,US,40.88,-74.38,9310 +07035,STANDARD,0,"Lincoln Park",,,NJ,"Morris County",America/New_York,,NA,US,40.92,-74.3,9790 +07036,STANDARD,0,Linden,"Winfield Park","Tremley, Tremley Point",NJ,"Union County",America/New_York,908,NA,US,40.62,-74.23,40530 +07039,STANDARD,0,Livingston,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.78,-74.32,30890 +07040,STANDARD,0,Maplewood,,Maplecrest,NJ,"Essex County",America/New_York,862,NA,US,40.73,-74.27,24740 +07041,STANDARD,0,Millburn,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.72,-74.3,7280 +07042,STANDARD,0,Montclair,,,NJ,"Essex County",America/New_York,862,NA,US,40.82,-74.21,24350 +07043,STANDARD,0,Montclair,"Upper Montclair, Upr Montclair",,NJ,"Essex County",America/New_York,862,NA,US,40.84,-74.2,12300 +07044,STANDARD,0,Verona,,,NJ,"Essex County",America/New_York,973,NA,US,40.83,-74.24,13870 +07045,STANDARD,0,Montville,,"Lower Montville, Montville Township",NJ,"Morris County",America/New_York,,NA,US,40.9,-74.36,10310 +07046,STANDARD,0,"Mountain Lakes","Mountain Lks",,NJ,"Morris County",America/New_York,,NA,US,40.89,-74.44,4430 +07047,STANDARD,0,"North Bergen",,"Tyler Park, Woodcliff",NJ,"Hudson County",America/New_York,,NA,US,40.79,-74.02,51500 +07050,STANDARD,0,Orange,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.76,-74.23,26250 +07051,"PO BOX",0,Orange,,,NJ,"Essex County",America/New_York,862,NA,US,40.76,-74.23,860 +07052,STANDARD,0,"West Orange",,"Town Center",NJ,"Essex County",America/New_York,862,NA,US,40.79,-74.26,44260 +07054,STANDARD,0,Parsippany,,"Parsippany Troy Hills, Troy Hills",NJ,"Morris County",America/New_York,862,NA,US,40.85,-74.4,28580 +07055,STANDARD,0,Passaic,,"Dundee, Passaic Park",NJ,"Passaic County",America/New_York,"201,862,973",NA,US,40.85,-74.12,63890 +07057,STANDARD,0,Wallington,,,NJ,"Bergen County",America/New_York,,NA,US,40.85,-74.1,10690 +07058,STANDARD,0,"Pine Brook",,Pinebrook,NJ,"Morris County",America/New_York,,NA,US,40.86,-74.34,5460 +07059,STANDARD,0,Warren,,,NJ,"Somerset County",America/New_York,,NA,US,40.63,-74.51,16280 +07060,STANDARD,0,Plainfield,"N Plainfield, North Plainfield",Muhlenberg,NJ,"Union County",America/New_York,908,NA,US,40.62,-74.42,38900 +07061,"PO BOX",0,Plainfield,,,NJ,"Union County",America/New_York,908,NA,US,40.63,-74.4,1382 +07062,STANDARD,0,Plainfield,"N Plainfield, North Plainfield",,NJ,"Union County",America/New_York,908,NA,US,40.63,-74.4,12470 +07063,STANDARD,0,Plainfield,"N Plainfield, North Plainfield",,NJ,"Union County",America/New_York,"732,908",NA,US,40.61,-74.44,12590 +07064,STANDARD,0,"Port Reading",,,NJ,"Middlesex County",America/New_York,,NA,US,40.57,-74.25,3610 +07065,STANDARD,0,Rahway,,,NJ,"Union County",America/New_York,"908,732,848",NA,US,40.6,-74.28,26500 +07066,STANDARD,0,Clark,,,NJ,"Union County",America/New_York,"732,848,908",NA,US,40.62,-74.31,15020 +07067,STANDARD,0,Colonia,,,NJ,"Middlesex County",America/New_York,,NA,US,40.59,-74.31,18320 +07068,STANDARD,0,Roseland,,,NJ,"Essex County",America/New_York,862,NA,US,40.82,-74.3,6230 +07069,STANDARD,0,Watchung,Plainfield,,NJ,"Somerset County",America/New_York,908,NA,US,40.64,-74.44,6090 +07070,STANDARD,0,Rutherford,,,NJ,"Bergen County",America/New_York,201,NA,US,40.81,-74.1,17230 +07071,STANDARD,0,Lyndhurst,,,NJ,"Bergen County",America/New_York,,NA,US,40.8,-74.11,20170 +07072,STANDARD,0,Carlstadt,,,NJ,"Bergen County",America/New_York,,NA,US,40.82,-74.06,5740 +07073,STANDARD,0,"East Rutherford","E Rutherford",,NJ,"Bergen County",America/New_York,,NA,US,40.81,-74.08,8820 +07074,STANDARD,0,Moonachie,,,NJ,"Bergen County",America/New_York,,NA,US,40.84,-74.05,2870 +07075,STANDARD,0,"Wood Ridge",,,NJ,"Bergen County",America/New_York,,NA,US,40.85,-74.08,9560 +07076,STANDARD,0,"Scotch Plains",,,NJ,"Union County",America/New_York,,NA,US,40.63,-74.37,24100 +07077,STANDARD,0,Sewaren,,,NJ,"Middlesex County",America/New_York,,NA,US,40.55,-74.26,2500 +07078,STANDARD,0,"Short Hills",,,NJ,"Essex County",America/New_York,862,NA,US,40.74,-74.33,13780 +07079,STANDARD,0,"South Orange",,,NJ,"Essex County",America/New_York,862,NA,US,40.74,-74.26,15140 +07080,STANDARD,0,"South Plainfield","S Plainfield",,NJ,"Middlesex County",America/New_York,,NA,US,40.57,-74.41,23140 +07081,STANDARD,0,Springfield,,,NJ,"Union County",America/New_York,,NA,US,40.69,-74.32,16200 +07082,STANDARD,0,Towaco,,,NJ,"Morris County",America/New_York,,NA,US,40.93,-74.34,5690 +07083,STANDARD,0,Union,,"Chestnut, Townley, Union Center",NJ,"Union County",America/New_York,908,NA,US,40.69,-74.26,51410 +07086,STANDARD,0,Weehawken,,,NJ,"Hudson County",America/New_York,"201,551,908,973,732,862",NA,US,40.77,-74.02,13250 +07087,STANDARD,0,"Union City",,"Bergenline, Summit Avenue",NJ,"Hudson County",America/New_York,"862,201,551,908,973",NA,US,40.77,-74.03,56080 +07088,STANDARD,0,Vauxhall,,,NJ,"Union County",America/New_York,908,NA,US,40.72,-74.29,3080 +07090,STANDARD,0,Westfield,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.34,30400 +07091,"PO BOX",0,Westfield,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.34,179 +07092,STANDARD,0,Mountainside,,,NJ,"Union County",America/New_York,,NA,US,40.68,-74.36,6840 +07093,STANDARD,0,"West New York",Guttenberg,"Monitor, Taurus",NJ,"Hudson County",America/New_York,,NA,US,40.79,-74.01,51180 +07094,STANDARD,0,Secaucus,,,NJ,"Hudson County",America/New_York,"201,908,973",NA,US,40.78,-74.06,18880 +07095,STANDARD,0,Woodbridge,,,NJ,"Middlesex County",America/New_York,"732,848",NA,US,40.55,-74.28,19080 +07096,"PO BOX",0,Secaucus,,"Meadows, Plaza",NJ,"Hudson County",America/New_York,201,NA,US,40.78,-74.06,210 +07097,UNIQUE,0,"Jersey City",,"Nj International And Bmc",NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,16 +07099,UNIQUE,0,Kearny,,Usps,NJ,"Hudson County",America/New_York,201,NA,US,40.75,-74.11,0 +07101,"PO BOX",0,Newark,,,NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,2371 +07102,STANDARD,0,Newark,,"Academy, Midtown, Washington Park",NJ,"Essex County",America/New_York,"201,551,732,848,862,908,973",NA,US,40.74,-74.17,8620 +07103,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,"201,551,848,862,908,973,732",NA,US,40.74,-74.2,25220 +07104,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,973,NA,US,40.77,-74.17,42280 +07105,STANDARD,0,Newark,,Ironbound,NJ,"Essex County",America/New_York,"732,201,551,848,862,908,973",NA,US,40.72,-74.14,35170 +07106,STANDARD,0,Newark,,Vailsburg,NJ,"Essex County",America/New_York,"908,973",NA,US,40.74,-74.23,26120 +07107,STANDARD,0,Newark,,Roseville,NJ,"Essex County",America/New_York,"973,908",NA,US,40.76,-74.19,32360 +07108,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,"973,201,908",NA,US,40.72,-74.2,20820 +07109,STANDARD,0,Belleville,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.79,-74.16,34350 +07110,STANDARD,0,Nutley,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.81,-74.15,27840 +07111,STANDARD,0,Irvington,,"Township Of Irvington",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.23,48030 +07112,STANDARD,0,Newark,,Weequahic,NJ,"Essex County",America/New_York,"908,973",NA,US,40.71,-74.21,22290 +07114,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,973,NA,US,40.72,-74.17,7610 +07175,UNIQUE,0,Newark,,Usps,NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07182,UNIQUE,1,Newark,"Shared Firm Zip",,NJ,"Essex County",America/New_York,862,NA,US,40.73,-74.17,0 +07184,UNIQUE,0,Newark,,"Cenlar Bank",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07188,UNIQUE,0,Newark,,"Jp Morgan Chase",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07189,UNIQUE,0,Newark,,"Bank Of America",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07191,UNIQUE,0,Newark,,"Wachovia Bank",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07192,UNIQUE,0,Newark,,"Wachovia Bank",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07193,UNIQUE,0,Newark,,"Jp Morgan Chase",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07194,UNIQUE,1,Newark,,"Midlantic National Bank",NJ,"Essex County",America/New_York,862,NA,US,40.73,-74.17,0 +07195,UNIQUE,0,Newark,,"Bank Of New York",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07198,UNIQUE,0,Newark,,"Bank Of New York",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07199,UNIQUE,0,Newark,,"Merrill Lynch Inc",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07201,STANDARD,0,Elizabeth,,"Betsytown, Peterstown, Union Square",NJ,"Union County",America/New_York,"908,973",NA,US,40.69,-74.17,25330 +07202,STANDARD,0,Elizabeth,,"Bayway, Elmora, Parkandbush",NJ,"Union County",America/New_York,908,NA,US,40.65,-74.22,36280 +07203,STANDARD,0,Roselle,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.26,20280 +07204,STANDARD,0,"Roselle Park",,,NJ,"Union County",America/New_York,,NA,US,40.67,-74.27,12700 +07205,STANDARD,0,Hillside,"Ind Hillside, Industrial Hillside",,NJ,"Union County",America/New_York,,NA,US,40.69,-74.23,20920 +07206,STANDARD,0,Elizabethport,Elizabeth,,NJ,"Union County",America/New_York,908,NA,US,40.66,-74.19,26550 +07207,"PO BOX",0,Elizabeth,,,NJ,"Union County",America/New_York,908,NA,US,40.66,-74.19,2702 +07208,STANDARD,0,Elizabeth,,"North Elizabeth",NJ,"Union County",America/New_York,908,NA,US,40.67,-74.23,28820 +07302,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,"201,551,862,973,908",NA,US,40.72,-74.05,44720 +07303,"PO BOX",0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,2121 +07304,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,39700 +07305,STANDARD,0,"Jersey City",,"Ellis Island, Greenville",NJ,"Hudson County",America/New_York,201,NA,US,40.7,-74.08,56120 +07306,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.73,-74.07,47530 +07307,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.75,-74.06,37730 +07308,"PO BOX",0,"Jersey City",,"Five Corners",NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,142 +07309,STANDARD,1,"Jersey City",,"General Lafayette",NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.03,113 +07310,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,"908,201,551,862,973",NA,US,40.73,-74.04,12330 +07311,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,"201,908,551,862,973",NA,US,40.72,-74.03,1220 +07395,UNIQUE,0,"Jersey City",,Usps,NJ,"Hudson County",America/New_York,201,NA,US,40.72,-74.08,0 +07399,UNIQUE,0,"Jersey City",,Pershing,NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,0 +07401,STANDARD,0,Allendale,,,NJ,"Bergen County",America/New_York,,NA,US,41.03,-74.13,6650 +07403,STANDARD,0,Bloomingdale,,,NJ,"Passaic County",America/New_York,862,NA,US,41.02,-74.33,6920 +07405,STANDARD,0,Butler,Kinnelon,"Fayson Lake, Fayson Lakes, High Crest, Lindy Lake",NJ,"Morris County",America/New_York,"862,973",NA,US,40.99,-74.34,17260 +07407,STANDARD,0,"Elmwood Park",,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.9,-74.11,19630 +07410,STANDARD,0,"Fair Lawn",,"Fairlawn, Radburn",NJ,"Bergen County",America/New_York,"201,551",NA,US,40.93,-74.11,33020 +07416,STANDARD,0,Franklin,,"Beaver Lake",NJ,"Sussex County",America/New_York,"862,973",NA,US,41.11,-74.58,5010 +07417,STANDARD,0,"Franklin Lakes","Franklin Lks",,NJ,"Bergen County",America/New_York,,NA,US,41,-74.2,10900 +07418,STANDARD,0,Glenwood,,,NJ,"Sussex County",America/New_York,862,NA,US,41.24,-74.48,2120 +07419,STANDARD,0,Hamburg,,Hardyston,NJ,"Sussex County",America/New_York,862,NA,US,41.14,-74.57,8460 +07420,STANDARD,0,Haskell,,,NJ,"Passaic County",America/New_York,862,NA,US,41.02,-74.3,4460 +07421,STANDARD,0,Hewitt,,"Awosting, Greenwood Lake, Upper Greenwood Lake",NJ,"Passaic County",America/New_York,973,NA,US,41.16,-74.35,6470 +07422,STANDARD,0,"Highland Lakes","Highland Lks","Barry Lakes",NJ,"Sussex County",America/New_York,973,NA,US,41.17,-74.44,5980 +07423,STANDARD,0,"Ho Ho Kus",,,NJ,"Bergen County",America/New_York,,NA,US,41,-74.1,4250 +07424,STANDARD,0,"Little Falls","West Paterson, Woodland Park","Great Notch, Singac",NJ,"Passaic County",America/New_York,"862,973",NA,US,40.87,-74.21,22800 +07428,"PO BOX",0,"Mc Afee",,Mcafee,NJ,"Sussex County",America/New_York,862,NA,US,41.2,-74.55,607 +07430,STANDARD,0,Mahwah,,,NJ,"Bergen County",America/New_York,201,NA,US,41.08,-74.18,22460 +07432,STANDARD,0,"Midland Park",,"Midland Pk",NJ,"Bergen County",America/New_York,,NA,US,40.99,-74.14,6770 +07435,STANDARD,0,Newfoundland,,"Green Pond, Greenpond",NJ,"Passaic County",America/New_York,973,NA,US,41.07,-74.42,2290 +07436,STANDARD,0,Oakland,,,NJ,"Bergen County",America/New_York,201,NA,US,41.03,-74.24,12480 +07438,STANDARD,0,"Oak Ridge",,"Cozy Lake, Jefferson Township, Jefferson Twp, Lake Swannanoa",NJ,"Morris County",America/New_York,,NA,US,41.04,-74.48,10740 +07439,STANDARD,0,Ogdensburg,,,NJ,"Sussex County",America/New_York,973,NA,US,41.07,-74.59,2170 +07440,STANDARD,0,Pequannock,,"Pequannock Township",NJ,"Morris County",America/New_York,,NA,US,40.94,-74.29,4290 +07442,STANDARD,0,"Pompton Lakes",,"Pompton Falls",NJ,"Passaic County",America/New_York,"862,973",NA,US,41,-74.28,10230 +07444,STANDARD,0,"Pompton Plains","Pompton Plns",,NJ,"Morris County",America/New_York,,NA,US,40.96,-74.3,10750 +07446,STANDARD,0,Ramsey,,Darlington,NJ,"Bergen County",America/New_York,"201,551",NA,US,41.05,-74.14,14890 +07450,STANDARD,0,Ridgewood,,,NJ,"Bergen County",America/New_York,201,NA,US,40.98,-74.11,24980 +07451,"PO BOX",0,Ridgewood,,,NJ,"Bergen County",America/New_York,201,NA,US,40.98,-74.11,200 +07452,STANDARD,0,"Glen Rock",,,NJ,"Bergen County",America/New_York,201,NA,US,40.96,-74.13,12290 +07456,STANDARD,0,Ringwood,,"Cupsaw Lake, Erskine, Erskine Lakes, Skyline Lakes",NJ,"Passaic County",America/New_York,973,NA,US,41.11,-74.27,11350 +07457,STANDARD,0,Riverdale,,"Pompton Junction",NJ,"Morris County",America/New_York,,NA,US,40.99,-74.3,3940 +07458,STANDARD,0,"Saddle River","U Saddle Riv, Upper Saddle River",,NJ,"Bergen County",America/New_York,,NA,US,41.02,-74.09,11090 +07460,STANDARD,0,Stockholm,Hardyston,"Cliffwood Lake, Gerard, Lake Stockholm, Lake Tamarack, Silver Lake",NJ,"Sussex County",America/New_York,862,NA,US,41.1,-74.53,3020 +07461,STANDARD,0,Sussex,Wantage,"Beemerville, Colesville, High Point, High Point Park, Wallkill Lake, Wantage Twp",NJ,"Sussex County",America/New_York,973,NA,US,41.2,-74.6,17160 +07462,STANDARD,0,Vernon,,,NJ,"Sussex County",America/New_York,973,NA,US,41.18,-74.51,5940 +07463,STANDARD,0,Waldwick,,,NJ,"Bergen County",America/New_York,,NA,US,41.01,-74.12,9810 +07465,STANDARD,0,Wanaque,,Midvale,NJ,"Passaic County",America/New_York,862,NA,US,41.04,-74.29,6120 +07470,STANDARD,0,Wayne,,"Lionshead Lake, Mountain View, Packanack Lake, Packanack Lk, Pines Lake, Preakness",NJ,"Passaic County",America/New_York,"862,973",NA,US,40.94,-74.24,50130 +07474,"PO BOX",0,Wayne,,,NJ,"Passaic County",America/New_York,862,NA,US,40.94,-74.24,586 +07477,UNIQUE,1,Wayne,,"State Farm Insurance",NJ,"Passaic County",America/New_York,862,NA,US,40.92,-74.27,0 +07480,STANDARD,0,"West Milford",,"Gordon Lakes, Pine Cliff Lake, Shady Lake, West Milford Lakes",NJ,"Passaic County",America/New_York,"862,973",NA,US,41.1,-74.39,14240 +07481,STANDARD,0,Wyckoff,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.99,-74.16,16600 +07495,STANDARD,0,Mahwah,,,NJ,"Bergen County",America/New_York,201,NA,US,41.1,-74.16,0 +07501,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"973,862",NA,US,40.91,-74.16,30470 +07502,STANDARD,0,Paterson,Totowa,Hillcrest,NJ,"Passaic County",America/New_York,973,NA,US,40.92,-74.19,15500 +07503,STANDARD,0,Paterson,,"South Paterson",NJ,"Passaic County",America/New_York,862,NA,US,40.9,-74.15,17790 +07504,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,973,NA,US,40.91,-74.14,12480 +07505,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"862,973",NA,US,40.92,-74.17,1910 +07506,STANDARD,0,Hawthorne,,,NJ,"Passaic County",America/New_York,"862,973",NA,US,40.95,-74.15,17800 +07507,"PO BOX",0,Hawthorne,,,NJ,"Passaic County",America/New_York,862,NA,US,40.95,-74.15,202 +07508,STANDARD,0,Haledon,"North Haledon, Paterson, Prospect Park","Prospect Pk",NJ,"Passaic County",America/New_York,862,NA,US,40.96,-74.18,22310 +07509,"PO BOX",0,Paterson,,,NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,2343 +07510,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"862,973",NA,US,40.91,-74.16,0 +07511,"PO BOX",0,Totowa,Paterson,,NJ,"Passaic County",America/New_York,862,NA,US,40.9,-74.22,317 +07512,STANDARD,0,Totowa,Paterson,"Totowa Boro",NJ,"Passaic County",America/New_York,973,NA,US,40.9,-74.22,10220 +07513,STANDARD,0,Paterson,,"Peoples Park",NJ,"Passaic County",America/New_York,973,NA,US,40.91,-74.15,11510 +07514,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"973,201",NA,US,40.93,-74.14,17130 +07522,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,973,NA,US,40.92,-74.18,20090 +07524,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,862,NA,US,40.93,-74.16,12330 +07533,"PO BOX",0,Paterson,,"South Paterson",NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,168 +07538,"PO BOX",0,Haledon,Paterson,"North Haledon, Prospect Park",NJ,"Passaic County",America/New_York,862,NA,US,40.93,-74.18,349 +07543,"PO BOX",0,Paterson,,"Peoples Park",NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,462 +07544,"PO BOX",0,Paterson,,,NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,950 +07601,STANDARD,0,Hackensack,,Hack,NJ,"Bergen County",America/New_York,"201,551,862,973",NA,US,40.88,-74.04,38710 +07602,"PO BOX",0,Hackensack,,,NJ,"Bergen County",America/New_York,201,NA,US,40.88,-74.04,419 +07603,STANDARD,0,Bogota,,,NJ,"Bergen County",America/New_York,862,NA,US,40.87,-74.03,7800 +07604,STANDARD,0,"Hasbrouck Heights","Hasbrouck Hts",,NJ,"Bergen County",America/New_York,201,NA,US,40.86,-74.07,11710 +07605,STANDARD,0,Leonia,,,NJ,"Bergen County",America/New_York,201,NA,US,40.86,-73.99,8510 +07606,STANDARD,0,"South Hackensack","S Hackensack",,NJ,"Bergen County",America/New_York,862,NA,US,40.86,-74.04,2500 +07607,STANDARD,0,Maywood,,,NJ,"Bergen County",America/New_York,"201,973",NA,US,40.9,-74.06,9400 +07608,STANDARD,0,Teterboro,,,NJ,"Bergen County",America/New_York,201,NA,US,40.85,-74.06,57 +07620,"PO BOX",0,Alpine,,,NJ,"Bergen County",America/New_York,,NA,US,40.95,-73.92,1804 +07621,STANDARD,0,Bergenfield,,,NJ,"Bergen County",America/New_York,,NA,US,40.92,-73.99,26680 +07624,STANDARD,0,Closter,,,NJ,"Bergen County",America/New_York,201,NA,US,40.97,-73.96,8340 +07626,STANDARD,0,Cresskill,,,NJ,"Bergen County",America/New_York,,NA,US,40.94,-73.96,8390 +07627,STANDARD,0,Demarest,,,NJ,"Bergen County",America/New_York,,NA,US,40.95,-73.95,4780 +07628,STANDARD,0,Dumont,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.94,-73.99,16840 +07630,STANDARD,0,Emerson,,,NJ,"Bergen County",America/New_York,,NA,US,40.97,-74.02,7120 +07631,STANDARD,0,Englewood,,,NJ,"Bergen County",America/New_York,201,NA,US,40.89,-73.97,25420 +07632,STANDARD,0,"Englewood Cliffs","Englewd Clfs, Englewood",,NJ,"Bergen County",America/New_York,201,NA,US,40.88,-73.94,5440 +07640,STANDARD,0,"Harrington Park","Harrington Pk",,NJ,"Bergen County",America/New_York,,NA,US,40.98,-73.98,4670 +07641,STANDARD,0,Haworth,,,NJ,"Bergen County",America/New_York,,NA,US,40.96,-73.99,3380 +07642,STANDARD,0,Hillsdale,,,NJ,"Bergen County",America/New_York,,NA,US,41,-74.04,10160 +07643,STANDARD,0,"Little Ferry",,,NJ,"Bergen County",America/New_York,,NA,US,40.84,-74.04,9710 +07644,STANDARD,0,Lodi,,,NJ,"Bergen County",America/New_York,,NA,US,40.88,-74.08,22640 +07645,STANDARD,0,Montvale,,,NJ,"Bergen County",America/New_York,,NA,US,41.05,-74.04,8470 +07646,STANDARD,0,"New Milford",,"N Milford",NJ,"Bergen County",America/New_York,,NA,US,40.93,-74.02,15850 +07647,STANDARD,0,Northvale,Rockleigh,,NJ,"Bergen County",America/New_York,,NA,US,41,-73.95,4820 +07648,STANDARD,0,Norwood,,,NJ,"Bergen County",America/New_York,,NA,US,40.99,-73.95,5310 +07649,STANDARD,0,Oradell,,,NJ,"Bergen County",America/New_York,201,NA,US,40.95,-74.03,8160 +07650,STANDARD,0,"Palisades Park","Palisades Pk",,NJ,"Bergen County",America/New_York,,NA,US,40.84,-73.99,16130 +07652,STANDARD,0,Paramus,,,NJ,"Bergen County",America/New_York,201,NA,US,40.94,-74.07,25120 +07653,"PO BOX",0,Paramus,,,NJ,"Bergen County",America/New_York,201,NA,US,40.94,-74.07,208 +07656,STANDARD,0,"Park Ridge",,,NJ,"Bergen County",America/New_York,201,NA,US,41.03,-74.04,8610 +07657,STANDARD,0,Ridgefield,,Morsemere,NJ,"Bergen County",America/New_York,,NA,US,40.83,-74.01,10450 +07660,STANDARD,0,"Ridgefield Park","Ridgefield Pk",,NJ,"Bergen County",America/New_York,,NA,US,40.85,-74.02,12650 +07661,STANDARD,0,"River Edge",,,NJ,"Bergen County",America/New_York,,NA,US,40.92,-74.04,11820 +07662,STANDARD,0,"Rochelle Park",,,NJ,"Bergen County",America/New_York,"201,862,973",NA,US,40.91,-74.08,5420 +07663,STANDARD,0,"Saddle Brook",,,NJ,"Bergen County",America/New_York,"551,201,973",NA,US,40.9,-74.09,13750 +07666,STANDARD,0,Teaneck,,"West Englewood",NJ,"Bergen County",America/New_York,201,NA,US,40.88,-74.01,38820 +07670,STANDARD,0,Tenafly,,,NJ,"Bergen County",America/New_York,,NA,US,40.91,-73.95,14500 +07675,STANDARD,0,Westwood,"Old Tappan, River Vale, Rivervale",,NJ,"Bergen County",America/New_York,"201,551",NA,US,41,-74,26060 +07676,STANDARD,0,"Township Of Washington","Twp Washingtn, Twp Washinton, Washington Twps","Washington Tnshp, Washington Township, Washington Twnshp, Washington Twp, Washington Twsp",NJ,"Bergen County",America/New_York,,NA,US,40.98,-74.06,9160 +07677,STANDARD,0,"Woodcliff Lake","Westwood, Woodcliff Lk",,NJ,"Bergen County",America/New_York,"201,551",NA,US,41.02,-74.05,6220 +07699,UNIQUE,0,Teterboro,,"Nnj Metro P&Dc, Usps",NJ,"Bergen County",America/New_York,201,NA,US,40.85,-74.06,0 +07701,STANDARD,0,"Red Bank","Tinton Falls",Westboro,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.34,-74.06,22530 +07702,STANDARD,0,Shrewsbury,"Red Bank",,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.32,-74.05,4060 +07703,STANDARD,0,"Fort Monmouth","Red Bank",,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.32,-74.04,701 +07704,STANDARD,0,"Fair Haven","Red Bank",,NJ,"Monmouth County",America/New_York,732,NA,US,40.36,-74.03,6280 +07709,UNIQUE,1,"Red Bank",,"Jersey Central Power Light",NJ,"Monmouth County",America/New_York,732,NA,US,40.23,-74,0 +07710,"PO BOX",0,Adelphia,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.25,209 +07711,STANDARD,0,Allenhurst,"Loch Arbour, W Allenhurst, West Allenhurst",,NJ,"Monmouth County",America/New_York,,NA,US,40.24,-74.01,1270 +07712,STANDARD,0,"Asbury Park","Interlaken, Ocean, Tinton Falls","Wanamassa, Wayside",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.22,-74.01,34980 +07715,UNIQUE,0,Belmar,,"Nj Natural Gas Co",NJ,"Monmouth County",America/New_York,732,NA,US,40.17,-74.02,0 +07716,STANDARD,0,"Atlantic Highlands","Atlantic Hlds","Atlantic Hl",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.4,-74.03,7840 +07717,STANDARD,0,"Avon By The Sea","Avon By Sea",Avon,NJ,"Monmouth County",America/New_York,,NA,US,40.19,-74.01,1700 +07718,STANDARD,0,Belford,,,NJ,"Monmouth County",America/New_York,,NA,US,40.42,-74.09,5960 +07719,STANDARD,0,Belmar,"Lake Como, Wall, Wall Township","S Belmar, Shark River Manor, South Belmar, W Belmar, Wall Twp, West Belmar",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.17,-74.02,19950 +07720,STANDARD,0,"Bradley Beach",,,NJ,"Monmouth County",America/New_York,,NA,US,40.2,-74.01,3590 +07721,STANDARD,0,Cliffwood,,,NJ,"Monmouth County",America/New_York,,NA,US,40.44,-74.23,3490 +07722,STANDARD,0,"Colts Neck",,"Earle Naval Weapons Station, Phalanx, Vanderburg",NJ,"Monmouth County",America/New_York,,NA,US,40.28,-74.16,9950 +07723,STANDARD,0,Deal,"Ocean Townshp, Ocean Twp","Deal Park",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.25,-74,770 +07724,STANDARD,0,Eatontown,"Tinton Falls","Monmouth, Shrewsbury Township, Vail Homes",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.29,-74.05,21190 +07726,STANDARD,0,Englishtown,Manalapan,,NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.29,-74.36,43400 +07727,STANDARD,0,Farmingdale,"Tinton Falls, Wall Township","Wall, Wall Twp",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.19,-74.17,7170 +07728,STANDARD,0,Freehold,,"East Freehold, Georgia, Jerseyville, Millhurst",NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.25,-74.27,51550 +07730,STANDARD,0,Hazlet,,,NJ,"Monmouth County",America/New_York,,NA,US,40.42,-74.17,16160 +07731,STANDARD,0,Howell,"Wall Township","Wall Twp",NJ,"Monmouth County",America/New_York,,NA,US,40.14,-74.19,37940 +07732,STANDARD,0,Highlands,"Sandy Hook","Gateway National Recreation, Monmouth Hills",NJ,"Monmouth County",America/New_York,732,NA,US,40.4,-73.99,3790 +07733,STANDARD,0,Holmdel,,"Holmdel Village",NJ,"Monmouth County",America/New_York,732,NA,US,40.37,-74.17,16610 +07734,STANDARD,0,Keansburg,"Hazlet Township, Hazlet Twp","East Keansburg, Ideal Beach, W Keansburg, West Keansburg",NJ,"Monmouth County",America/New_York,732,NA,US,40.44,-74.13,10140 +07735,STANDARD,0,Keyport,"Union Beach","Cliffwood Bch, Cliffwood Beach",NJ,"Monmouth County",America/New_York,732,NA,US,40.43,-74.2,16810 +07737,STANDARD,0,Leonardo,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.41,-74.06,3890 +07738,STANDARD,0,Lincroft,,,NJ,"Monmouth County",America/New_York,,NA,US,40.34,-74.12,6710 +07739,STANDARD,0,"Little Silver",,"Little Silver Point",NJ,"Monmouth County",America/New_York,,NA,US,40.33,-74.03,6120 +07740,STANDARD,0,"Long Branch",Elberon,"West End",NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.29,-73.98,24630 +07746,STANDARD,0,Marlboro,,Bradevelt,NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.31,-74.25,18350 +07747,STANDARD,0,Matawan,Aberdeen,Strathmore,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.41,-74.23,29630 +07748,STANDARD,0,Middletown,"N Middletown, New Monmouth, North Middletown",,NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.39,-74.11,27140 +07750,STANDARD,0,"Monmouth Beach","Monmouth Bch",,NJ,"Monmouth County",America/New_York,,NA,US,40.33,-73.98,3090 +07751,STANDARD,0,Morganville,,,NJ,"Monmouth County",America/New_York,,NA,US,40.36,-74.25,21030 +07752,"PO BOX",0,Navesink,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.39,-74.11,294 +07753,STANDARD,0,Neptune,"Neptune City, Tinton Falls, Wall Township","Shark River Hills, Wall",NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.08,34340 +07754,"PO BOX",0,Neptune,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.08,557 +07755,STANDARD,0,Oakhurst,,"Elberon Park",NJ,"Monmouth County",America/New_York,,NA,US,40.26,-74.02,5750 +07756,STANDARD,0,"Ocean Grove",,,NJ,"Monmouth County",America/New_York,,NA,US,40.21,-74.01,2260 +07757,STANDARD,0,Oceanport,,"Monmouth Park, Sands Point",NJ,"Monmouth County",America/New_York,"732,908",NA,US,40.31,-74.02,5430 +07758,STANDARD,0,"Port Monmouth",,"Cedar Beach",NJ,"Monmouth County",America/New_York,,NA,US,40.43,-74.1,4570 +07760,STANDARD,0,Rumson,"Locust, Sea Bright",,NJ,"Monmouth County",America/New_York,,NA,US,40.36,-74,9230 +07762,STANDARD,0,"Spring Lake",,"Spring Heights, Spring Lake Heights, Wall Township, Wall Twp",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.15,-74.02,7820 +07763,"PO BOX",0,Tennent,,,NJ,"Monmouth County",America/New_York,,NA,US,40.29,-74.36,86 +07764,STANDARD,0,"West Long Branch","W Long Branch",,NJ,"Monmouth County",America/New_York,"732,908",NA,US,40.29,-74.01,6300 +07765,"PO BOX",0,Wickatunk,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.35,-74.26,54 +07799,STANDARD,0,Eatontown,,,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.29,-74.05,0 +07801,STANDARD,0,Dover,,"Victory Gardens",NJ,"Morris County",America/New_York,"862,973",NA,US,40.88,-74.55,22270 +07802,"PO BOX",0,Dover,,,NJ,"Morris County",America/New_York,862,NA,US,40.88,-74.55,1307 +07803,STANDARD,0,"Mine Hill",Dover,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.87,-74.6,3600 +07806,STANDARD,0,"Picatinny Arsenal","Dover, Picatinny Ars",,NJ,"Morris County",America/New_York,"973,862",NA,US,40.93,-74.54,0 +07820,"PO BOX",0,Allamuchy,,,NJ,"Warren County",America/New_York,908,NA,US,40.93,-74.81,299 +07821,STANDARD,0,Andover,"Byram Township, Byram Twp, Green Township, Green Twp",,NJ,"Sussex County",America/New_York,973,NA,US,40.98,-74.74,8440 +07822,STANDARD,0,Augusta,,,NJ,"Sussex County",America/New_York,862,NA,US,41.14,-74.71,1020 +07823,STANDARD,0,Belvidere,,,NJ,"Warren County",America/New_York,908,NA,US,40.82,-75.07,6380 +07825,STANDARD,0,Blairstown,"Hardwick, Johnsonburg",,NJ,"Warren County",America/New_York,908,NA,US,40.98,-74.96,8370 +07826,STANDARD,0,Branchville,Sandyston,,NJ,"Sussex County",America/New_York,"862,973",NA,US,41.14,-74.74,5420 +07827,STANDARD,0,Montague,"Branchville, Sandyston",,NJ,"Sussex County",America/New_York,"862,973",NA,US,41.29,-74.74,3470 +07828,STANDARD,0,"Budd Lake",,"Mount Olive",NJ,"Morris County",America/New_York,,NA,US,40.87,-74.73,12930 +07829,"PO BOX",0,Buttzville,,,NJ,"Warren County",America/New_York,908,NA,US,40.82,-75.04,154 +07830,STANDARD,0,Califon,"Tewksbury Township, Tewksbury Twp",,NJ,"Hunterdon County",America/New_York,908,NA,US,40.72,-74.79,6210 +07831,STANDARD,0,Changewater,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.74,-74.95,142 +07832,STANDARD,0,Columbia,,,NJ,"Warren County",America/New_York,908,NA,US,40.95,-75.06,3460 +07833,"PO BOX",0,Delaware,,,NJ,"Warren County",America/New_York,908,NA,US,40.89,-75.07,170 +07834,STANDARD,0,Denville,,,NJ,"Morris County",America/New_York,,NA,US,40.89,-74.48,17610 +07836,STANDARD,0,Flanders,"Roxbury Township, Roxbury Twp",,NJ,"Morris County",America/New_York,,NA,US,40.84,-74.7,12030 +07837,"PO BOX",0,Glasser,,,NJ,"Sussex County",America/New_York,862,NA,US,40.98,-74.63,135 +07838,STANDARD,0,"Great Meadows",,,NJ,"Warren County",America/New_York,908,NA,US,40.89,-74.91,3120 +07839,"PO BOX",0,Greendell,,,NJ,"Sussex County",America/New_York,862,NA,US,40.97,-74.81,182 +07840,STANDARD,0,Hackettstown,,"Allamuchy Twp",NJ,"Warren County",America/New_York,908,NA,US,40.85,-74.82,28370 +07842,"PO BOX",0,Hibernia,,,NJ,"Morris County",America/New_York,862,NA,US,40.94,-74.51,170 +07843,STANDARD,0,Hopatcong,,,NJ,"Sussex County",America/New_York,"862,973",NA,US,40.95,-74.65,10590 +07844,"PO BOX",0,Hope,,,NJ,"Warren County",America/New_York,908,NA,US,40.91,-74.96,669 +07845,"PO BOX",0,Ironia,,,NJ,"Morris County",America/New_York,862,NA,US,40.85,-74.57,265 +07846,"PO BOX",0,Johnsonburg,,,NJ,"Warren County",America/New_York,908,NA,US,40.97,-74.88,225 +07847,STANDARD,0,Kenvil,,,NJ,"Morris County",America/New_York,,NA,US,40.88,-74.62,1680 +07848,STANDARD,0,Lafayette,,,NJ,"Sussex County",America/New_York,862,NA,US,41.09,-74.68,3930 +07849,STANDARD,0,"Lake Hopatcong","Lk Hopatcong",,NJ,"Morris County",America/New_York,973,NA,US,40.96,-74.61,8060 +07850,STANDARD,0,Landing,,,NJ,"Morris County",America/New_York,,NA,US,40.9,-74.66,6030 +07851,STANDARD,0,Layton,Sandyston,,NJ,"Sussex County",America/New_York,973,NA,US,41.23,-74.85,360 +07852,STANDARD,0,Ledgewood,,,NJ,"Morris County",America/New_York,,NA,US,40.88,-74.66,3650 +07853,STANDARD,0,"Long Valley",,,NJ,"Morris County",America/New_York,908,NA,US,40.78,-74.76,12680 +07855,"PO BOX",0,Middleville,,,NJ,"Sussex County",America/New_York,862,NA,US,41.06,-74.89,137 +07856,STANDARD,0,"Mount Arlington","Mt Arlington",,NJ,"Morris County",America/New_York,,NA,US,40.91,-74.64,4380 +07857,STANDARD,0,Netcong,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.9,-74.7,3000 +07860,STANDARD,0,Newton,"Fredon, Fredon Township, Fredon Twp",,NJ,"Sussex County",America/New_York,"862,973",NA,US,41.05,-74.75,22170 +07863,STANDARD,0,Oxford,,,NJ,"Warren County",America/New_York,908,NA,US,40.81,-74.99,3800 +07865,STANDARD,0,"Port Murray",,,NJ,"Warren County",America/New_York,908,NA,US,40.79,-74.91,2420 +07866,STANDARD,0,Rockaway,"Rockaway Boro, Rockaway Borough",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.95,-74.49,21930 +07869,STANDARD,0,Randolph,"Chester Twp, Dover",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.84,-74.58,25150 +07870,"PO BOX",0,"Schooleys Mountain","Schooleys Mtn",,NJ,"Morris County",America/New_York,908,NA,US,40.8,-74.82,135 +07871,STANDARD,0,Sparta,,,NJ,"Sussex County",America/New_York,973,NA,US,41.04,-74.62,20170 +07874,STANDARD,0,Stanhope,,,NJ,"Sussex County",America/New_York,862,NA,US,40.91,-74.7,8260 +07875,"PO BOX",0,Stillwater,,,NJ,"Sussex County",America/New_York,862,NA,US,41.05,-74.86,301 +07876,STANDARD,0,Succasunna,,,NJ,"Morris County",America/New_York,"201,862,973",NA,US,40.85,-74.65,10220 +07877,"PO BOX",0,Swartswood,,,NJ,"Sussex County",America/New_York,862,NA,US,41.09,-74.84,271 +07878,"PO BOX",0,"Mount Tabor",,Tabor,NJ,"Morris County",America/New_York,,NA,US,40.87,-74.47,990 +07879,"PO BOX",0,Tranquility,,,NJ,"Sussex County",America/New_York,862,NA,US,40.95,-74.8,235 +07880,"PO BOX",0,Vienna,,,NJ,"Warren County",America/New_York,908,NA,US,40.87,-74.89,235 +07881,STANDARD,0,"Wallpack Center","Wallpack Ctr",,NJ,"Sussex County",America/New_York,862,NA,US,41.12,-74.91,0 +07882,STANDARD,0,Washington,,,NJ,"Warren County",America/New_York,908,NA,US,40.75,-74.98,13220 +07885,STANDARD,0,Wharton,,,NJ,"Morris County",America/New_York,,NA,US,40.89,-74.58,10820 +07890,UNIQUE,0,Branchville,,"Selected Risks Insurance Co",NJ,"Sussex County",America/New_York,862,NA,US,41.14,-74.74,0 +07901,STANDARD,0,Summit,,,NJ,"Union County",America/New_York,908,NA,US,40.71,-74.36,22700 +07902,"PO BOX",0,Summit,,,NJ,"Union County",America/New_York,908,NA,US,40.71,-74.36,360 +07920,STANDARD,0,"Basking Ridge",,,NJ,"Somerset County",America/New_York,,NA,US,40.67,-74.56,26960 +07921,STANDARD,0,Bedminster,,,NJ,"Somerset County",America/New_York,908,NA,US,40.65,-74.67,7080 +07922,STANDARD,0,"Berkeley Heights","Berkeley Hts",,NJ,"Union County",America/New_York,,NA,US,40.67,-74.42,12280 +07924,STANDARD,0,Bernardsville,,,NJ,"Somerset County",America/New_York,"908,973",NA,US,40.73,-74.59,7250 +07926,"PO BOX",0,Brookside,,,NJ,"Morris County",America/New_York,,NA,US,40.8,-74.57,1063 +07927,STANDARD,0,"Cedar Knolls",,,NJ,"Morris County",America/New_York,"908,973",NA,US,40.82,-74.45,3840 +07928,STANDARD,0,Chatham,"Chatham Twp",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.74,-74.38,19740 +07930,STANDARD,0,Chester,,,NJ,"Morris County",America/New_York,908,NA,US,40.78,-74.69,8540 +07931,STANDARD,0,"Far Hills",,,NJ,"Somerset County",America/New_York,908,NA,US,40.69,-74.62,3100 +07932,STANDARD,0,"Florham Park",,,NJ,"Morris County",America/New_York,973,NA,US,40.77,-74.39,10310 +07933,STANDARD,0,Gillette,,,NJ,"Morris County",America/New_York,,NA,US,40.7,-74.47,3130 +07934,STANDARD,0,Gladstone,,,NJ,"Somerset County",America/New_York,908,NA,US,40.72,-74.67,1500 +07935,STANDARD,0,"Green Village",,,NJ,"Morris County",America/New_York,973,NA,US,40.74,-74.45,580 +07936,STANDARD,0,"East Hanover",,,NJ,"Morris County",America/New_York,,NA,US,40.81,-74.36,11130 +07938,"PO BOX",0,"Liberty Corner","Liberty Cor",,NJ,"Somerset County",America/New_York,908,NA,US,40.68,-74.56,267 +07939,STANDARD,0,Lyons,"Basking Ridge",,NJ,"Somerset County",America/New_York,908,NA,US,40.67,-74.55,151 +07940,STANDARD,0,Madison,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.75,-74.41,14810 +07945,STANDARD,0,Mendham,"Mendham Township, Mendham Twp",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.76,-74.59,9830 +07946,STANDARD,0,Millington,,,NJ,"Morris County",America/New_York,908,NA,US,40.66,-74.51,3130 +07950,STANDARD,0,"Morris Plains","Greystone Park, Greystone Pk",,NJ,"Morris County",America/New_York,,NA,US,40.83,-74.48,19930 +07960,STANDARD,0,Morristown,,,NJ,"Morris County",America/New_York,"201,862,973",NA,US,40.79,-74.47,38520 +07961,"PO BOX",0,"Convent Station","Convent Sta, Morristown",,NJ,"Morris County",America/New_York,862,NA,US,40.78,-74.43,450 +07962,"PO BOX",0,Morristown,,,NJ,"Morris County",America/New_York,862,NA,US,40.79,-74.47,365 +07963,"PO BOX",0,Morristown,,,NJ,"Morris County",America/New_York,862,NA,US,40.79,-74.47,348 +07970,"PO BOX",0,"Mount Freedom",,,NJ,"Morris County",America/New_York,862,NA,US,40.81,-74.57,140 +07974,STANDARD,0,"New Providence","New Providnce","Murray Hill",NJ,"Union County",America/New_York,,NA,US,40.7,-74.4,12550 +07976,STANDARD,0,"New Vernon",,,NJ,"Morris County",America/New_York,,NA,US,40.73,-74.48,1130 +07977,"PO BOX",0,Peapack,,,NJ,"Somerset County",America/New_York,,NA,US,40.71,-74.67,954 +07978,"PO BOX",0,Pluckemin,,,NJ,"Somerset County",America/New_York,908,NA,US,40.66,-74.68,166 +07979,"PO BOX",0,Pottersville,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.7,-74.72,659 +07980,STANDARD,0,Stirling,,,NJ,"Morris County",America/New_York,,NA,US,40.68,-74.49,2340 +07981,STANDARD,0,Whippany,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.82,-74.41,9040 +07983,UNIQUE,1,Whippany,"Corporate Mailings",,NJ,"Morris County",America/New_York,862,NA,US,40.82,-74.41,0 +07999,STANDARD,0,Whippany,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.82,-74.41,0 +08001,"PO BOX",0,Alloway,,"Paradise Lakes",NJ,"Salem County",America/New_York,856,NA,US,39.56,-75.34,1362 +08002,STANDARD,0,"Cherry Hill",,"Cherry Hill Township, Ellisburg, Erlton",NJ,"Camden County",America/New_York,856,NA,US,39.93,-75.03,21220 +08003,STANDARD,0,"Cherry Hill",,"Cherry Hill Township, Woodcrest",NJ,"Camden County",America/New_York,856,NA,US,39.88,-74.97,29670 +08004,STANDARD,0,Atco,,"Waterford Township, West Atco",NJ,"Camden County",America/New_York,,NA,US,39.76,-74.85,10840 +08005,STANDARD,0,Barnegat,,"Barnegat Township, Warren Grove",NJ,"Ocean County",America/New_York,609,NA,US,39.75,-74.22,23290 +08006,"PO BOX",0,"Barnegat Light","Barnegat Lgt","Barnegat Light Boro",NJ,"Ocean County",America/New_York,,NA,US,39.75,-74.11,716 +08007,STANDARD,0,Barrington,,,NJ,"Camden County",America/New_York,,NA,US,39.87,-75.05,4530 +08008,STANDARD,0,"Beach Haven","Harvey Cedars, Long Bch Twp, Long Beach, Long Beach Township, Ship Bottom, Surf City","Brant Beach, Harvey Cedars Boro, High Bar Harbor, Loveladies, North Beach, Ship Bottom Boro, Surf City Boro",NJ,"Ocean County",America/New_York,609,NA,US,39.54,-74.3,6330 +08009,STANDARD,0,Berlin,"Berlin Boro","Albion, East Berlin, Tansboro",NJ,"Camden County",America/New_York,856,NA,US,39.79,-74.93,12240 +08010,STANDARD,0,Beverly,"Edgewater Park, Edgewater Prk",,NJ,"Burlington County",America/New_York,,NA,US,40.06,-74.92,9620 +08011,"PO BOX",0,Birmingham,,,NJ,"Burlington County",America/New_York,,NA,US,39.97,-74.71,120 +08012,STANDARD,0,Blackwood,Turnersville,"Blenheim, Chews Landing, Hilltop, Lakeland",NJ,"Camden County",America/New_York,856,NA,US,39.79,-75.06,34430 +08014,STANDARD,0,Bridgeport,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.8,-75.34,430 +08015,STANDARD,0,"Browns Mills",,,NJ,"Burlington County",America/New_York,609,NA,US,39.95,-74.55,17360 +08016,STANDARD,0,Burlington,"Burlington City, Burlington Township, Burlngtn City, Burlngtn Twp",,NJ,"Burlington County",America/New_York,609,NA,US,40.07,-74.85,30970 +08018,"PO BOX",0,"Cedar Brook",,,NJ,"Camden County",America/New_York,,NA,US,39.72,-74.9,307 +08019,STANDARD,0,Chatsworth,,,NJ,"Burlington County",America/New_York,,NA,US,39.78,-74.53,830 +08020,STANDARD,0,Clarksboro,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.8,-75.22,2610 +08021,STANDARD,0,Clementon,"Laurel Spgs, Laurel Springs, Lindenwold, Pine Hill, Pine Valley",,NJ,"Camden County",America/New_York,"609,856",NA,US,39.8,-74.98,40250 +08022,STANDARD,0,Columbus,,Mansfield,NJ,"Burlington County",America/New_York,,NA,US,40.06,-74.68,9000 +08023,"PO BOX",0,Deepwater,,,NJ,"Salem County",America/New_York,856,NA,US,39.69,-75.5,526 +08025,"PO BOX",0,Ewan,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.71,-75.23,192 +08026,STANDARD,0,Gibbsboro,,,NJ,"Camden County",America/New_York,856,NA,US,39.83,-74.96,2150 +08027,STANDARD,0,Gibbstown,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.82,-75.27,4470 +08028,STANDARD,0,Glassboro,,Aura,NJ,"Gloucester County",America/New_York,856,NA,US,39.7,-75.11,14910 +08029,STANDARD,0,Glendora,,,NJ,"Camden County",America/New_York,856,NA,US,39.84,-75.06,4210 +08030,STANDARD,0,"Gloucester City","Brooklawn, Gloucester Cy, Gloucstr City",Gloucester,NJ,"Camden County",America/New_York,856,NA,US,39.89,-75.11,11050 +08031,STANDARD,0,Bellmawr,,"Gloucester, Gloucstr City",NJ,"Camden County",America/New_York,856,NA,US,39.86,-75.09,10440 +08032,STANDARD,0,Grenloch,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.77,-75.05,431 +08033,STANDARD,0,Haddonfield,,"East Haddonfield, Tavistock",NJ,"Camden County",America/New_York,"609,856",NA,US,39.89,-75.03,16760 +08034,STANDARD,0,"Cherry Hill",,"Ashland, Cherry Hill Township",NJ,"Camden County",America/New_York,856,NA,US,39.9,-74.99,18140 +08035,STANDARD,0,"Haddon Heights","Haddon Hgts, Haddon Hts",,NJ,"Camden County",America/New_York,"856,609",NA,US,39.88,-75.07,7270 +08036,STANDARD,0,Hainesport,"Hainesport Township, Hainesprt Twp",,NJ,"Burlington County",America/New_York,609,NA,US,39.98,-74.82,6010 +08037,STANDARD,0,Hammonton,"Batsto, Blue Anchor, Mullica","Ancora, Braddock, Elm, Folsom, Nesco, Rosedale, Sweetwater",NJ,"Atlantic County",America/New_York,609,NA,US,39.65,-74.77,21430 +08038,"PO BOX",0,"Hancocks Bridge","Hancocks Brg",,NJ,"Salem County",America/New_York,856,NA,US,39.47,-75.45,290 +08039,"PO BOX",0,Harrisonville,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.69,-75.28,229 +08041,STANDARD,0,Jobstown,,,NJ,"Burlington County",America/New_York,,NA,US,40.03,-74.68,870 +08042,"PO BOX",0,Juliustown,,,NJ,"Burlington County",America/New_York,,NA,US,40.02,-74.66,328 +08043,STANDARD,0,Voorhees,"Kirkwd Vrhes, Kirkwood","Echelon, Kirkwd Voorhs, Voorhees Kirkwood, Voorhees Township",NJ,"Camden County",America/New_York,,NA,US,39.84,-74.95,27010 +08045,STANDARD,0,Lawnside,,,NJ,"Camden County",America/New_York,,NA,US,39.87,-75.03,2400 +08046,STANDARD,0,Willingboro,,,NJ,"Burlington County",America/New_York,,NA,US,40.02,-74.88,28410 +08048,STANDARD,0,Lumberton,"Lumberton Township, Lumberton Twp",,NJ,"Burlington County",America/New_York,,NA,US,39.96,-74.8,11860 +08049,STANDARD,0,Magnolia,,,NJ,"Camden County",America/New_York,,NA,US,39.85,-75.03,4650 +08050,STANDARD,0,Manahawkin,"Stafford Township, Stafford Twp","Beach Haven West, Cedar Bonnet Island",NJ,"Ocean County",America/New_York,,NA,US,39.69,-74.25,24130 +08051,STANDARD,0,Mantua,"West Deptford","Mantua Heights",NJ,"Gloucester County",America/New_York,856,NA,US,39.79,-75.18,9720 +08052,STANDARD,0,"Maple Shade",,,NJ,"Burlington County",America/New_York,,NA,US,39.95,-74.99,17030 +08053,STANDARD,0,Marlton,Evesham,"Evesboro, Evesham Twp, Kresson, Marlton Lakes, North Marlton, Pine Grove",NJ,"Burlington County",America/New_York,856,NA,US,39.9,-74.92,44420 +08054,STANDARD,0,"Mount Laurel",,"Masonville, Mount Laurel Township, Rancocas Woods",NJ,"Burlington County",America/New_York,,NA,US,39.94,-74.9,41670 +08055,STANDARD,0,Medford,"Medford Lakes","Medford Lakes Boro, Medford Township",NJ,"Burlington County",America/New_York,609,NA,US,39.86,-74.82,28020 +08056,STANDARD,0,Mickleton,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.78,-75.25,5160 +08057,STANDARD,0,Moorestown,,Lenola,NJ,"Burlington County",America/New_York,"609,856",NA,US,39.97,-74.94,20660 +08059,STANDARD,0,"Mount Ephraim","W Colls Hgts, West Collingswood Heights",,NJ,"Camden County",America/New_York,856,NA,US,39.88,-75.09,5130 +08060,STANDARD,0,"Mount Holly","Eastamptn Twp, Eastampton, Eastampton Township, Westampton","Mount Holly Township, Westampton Township",NJ,"Burlington County",America/New_York,609,NA,US,39.99,-74.78,23010 +08061,STANDARD,0,"Mount Royal",,,NJ,"Gloucester County",America/New_York,856,NA,US,39.8,-75.21,3420 +08062,STANDARD,0,"Mullica Hill","S Harrisn Twp, South Harrison Township","Harrison Township, S Harrison Twp",NJ,"Gloucester County",America/New_York,"609,856",NA,US,39.73,-75.22,16740 +08063,STANDARD,0,"National Park","West Deptford",,NJ,"Gloucester County",America/New_York,856,NA,US,39.86,-75.18,2730 +08064,"PO BOX",0,"New Lisbon",,,NJ,"Burlington County",America/New_York,,NA,US,39.96,-74.64,591 +08065,STANDARD,0,Palmyra,,,NJ,"Burlington County",America/New_York,,NA,US,40,-75.03,6390 +08066,STANDARD,0,Paulsboro,"West Deptford",Billingsport,NJ,"Gloucester County",America/New_York,856,NA,US,39.83,-75.24,6600 +08067,STANDARD,0,Pedricktown,,,NJ,"Salem County",America/New_York,856,NA,US,39.73,-75.4,1720 +08068,STANDARD,0,Pemberton,,,NJ,"Burlington County",America/New_York,609,NA,US,39.97,-74.68,5720 +08069,STANDARD,0,"Penns Grove","Carneys Point","Carneys Point Township",NJ,"Salem County",America/New_York,856,NA,US,39.72,-75.46,10840 +08070,STANDARD,0,Pennsville,,,NJ,"Salem County",America/New_York,856,NA,US,39.65,-75.51,10750 +08071,STANDARD,0,Pitman,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.73,-75.13,8370 +08072,"PO BOX",0,Quinton,,,NJ,"Salem County",America/New_York,856,NA,US,39.54,-75.42,497 +08073,"PO BOX",0,Rancocas,,,NJ,"Burlington County",America/New_York,,NA,US,40.01,-74.87,378 +08074,"PO BOX",0,Richwood,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.72,-75.16,410 +08075,STANDARD,0,Riverside,"Delanco, Delran","Bridgeboro, Delanco Township, Delran Township, North Delran",NJ,"Burlington County",America/New_York,856,NA,US,40.03,-74.95,26530 +08076,"PO BOX",0,Riverton,,,NJ,"Burlington County",America/New_York,856,NA,US,40.01,-75.01,0 +08077,STANDARD,0,Riverton,Cinnaminson,"Cinnaminson Township",NJ,"Burlington County",America/New_York,856,NA,US,40.01,-75.01,18560 +08078,STANDARD,0,Runnemede,,,NJ,"Camden County",America/New_York,856,NA,US,39.85,-75.07,7130 +08079,STANDARD,0,Salem,Mannington,"Mannington Township",NJ,"Salem County",America/New_York,"609,856",NA,US,39.56,-75.47,8440 +08080,STANDARD,0,Sewell,,"Barnsboro, Cross Keys, Hurffville",NJ,"Gloucester County",America/New_York,856,NA,US,39.75,-75.09,36030 +08081,STANDARD,0,Sicklerville,Erial,,NJ,"Camden County",America/New_York,,NA,US,39.73,-74.98,46450 +08083,STANDARD,0,Somerdale,"Hi Nella",,NJ,"Camden County",America/New_York,,NA,US,39.84,-75.02,8880 +08084,STANDARD,0,Stratford,,,NJ,"Camden County",America/New_York,856,NA,US,39.83,-75.02,6340 +08085,STANDARD,0,Swedesboro,"Logan Township, Logan Twp, Woolwich Township, Woolwich Twp","Auburn, Logan, Woolwich",NJ,"Gloucester County",America/New_York,856,NA,US,39.74,-75.31,20200 +08086,STANDARD,0,Thorofare,"West Deptford",,NJ,"Gloucester County",America/New_York,856,NA,US,39.85,-75.18,7520 +08087,STANDARD,0,Tuckerton,"Little Egg Harbor, Little Egg Harbor Twp, Ltl Egg Hbr, Mystic Islands, Mystic Islnds","Leh, Parkertown, Tuckerton Boro, West Tuckerton",NJ,"Ocean County",America/New_York,609,NA,US,39.59,-74.32,21880 +08088,STANDARD,0,Vincentown,"Shamong, Southampton, Tabernacle","Indian Mills, Shamong Township, Southampton Twp, Tabernacle Twp",NJ,"Burlington County",America/New_York,609,NA,US,39.8,-74.62,22440 +08089,STANDARD,0,"Waterford Works","Chesilhurst, Waterford Wks",Waterford,NJ,"Camden County",America/New_York,,NA,US,39.71,-74.81,3450 +08090,STANDARD,0,Wenonah,,"Oak Valley",NJ,"Gloucester County",America/New_York,856,NA,US,39.79,-75.14,7970 +08091,STANDARD,0,"West Berlin","Berlin Township, Berlin Twp",,NJ,"Camden County",America/New_York,,NA,US,39.81,-74.92,5210 +08092,STANDARD,0,"West Creek",,"Cedar Run, Eagleswood Township, Mayetta, Staffordville",NJ,"Ocean County",America/New_York,,NA,US,39.65,-74.28,3500 +08093,STANDARD,0,Westville,"West Deptford","Verga, Westville Grove",NJ,"Gloucester County",America/New_York,856,NA,US,39.86,-75.13,8390 +08094,STANDARD,0,Williamstown,,"Cecil, Collings Lakes",NJ,"Gloucester County",America/New_York,856,NA,US,39.68,-74.98,36590 +08095,"PO BOX",0,Winslow,,,NJ,"Camden County",America/New_York,,NA,US,39.65,-74.86,351 +08096,STANDARD,0,Woodbury,"Blackwood Ter, Blackwood Terrace, Deptford, West Deptford","Almonesson, Deptford Township, Jericho",NJ,"Gloucester County",America/New_York,"609,856",NA,US,39.83,-75.15,31610 +08097,STANDARD,0,"Woodbury Heights","Deptford, Woodbury, Woodbury Hts","Woodbury Hgts",NJ,"Gloucester County",America/New_York,"609,856",NA,US,39.81,-75.15,3020 +08098,STANDARD,0,Woodstown,"Pilesgrove, Pilesgrove Township, Pilesgrv Twp",Sharptown,NJ,"Salem County",America/New_York,856,NA,US,39.65,-75.32,8260 +08099,"PO BOX",0,Bellmawr,,,NJ,"Camden County",America/New_York,856,NA,US,39.86,-75.09,260 +08101,"PO BOX",0,Camden,,,NJ,"Camden County",America/New_York,856,NA,US,39.93,-75.1,742 +08102,STANDARD,0,Camden,,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.95,-75.12,5330 +08103,STANDARD,0,Camden,,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.94,-75.11,9040 +08104,STANDARD,0,Camden,"Haddon Township, Haddon Twp","South Camden",NJ,"Camden County",America/New_York,856,NA,US,39.93,-75.1,17450 +08105,STANDARD,0,Camden,,"East Camden",NJ,"Camden County",America/New_York,"609,856",NA,US,39.95,-75.09,23780 +08106,STANDARD,0,Audubon,,"Audubon Park",NJ,"Camden County",America/New_York,856,NA,US,39.89,-75.07,8890 +08107,STANDARD,0,Oaklyn,"Collingswood, Haddon Township, Haddon Twp, W Colls, West Collingswood, Woodlynne",,NJ,"Camden County",America/New_York,856,NA,US,39.9,-75.08,11770 +08108,STANDARD,0,Collingswood,"Haddon Township, Haddon Twp, Westmont",,NJ,"Camden County",America/New_York,856,NA,US,39.91,-75.07,16700 +08109,STANDARD,0,Merchantville,Pennsauken,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.95,-75.05,20220 +08110,STANDARD,0,Pennsauken,Delair,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.97,-75.06,17810 +08201,STANDARD,0,Absecon,,"Absecon City, Absecon Heights, Absecon Highlands, Galloway, Galloway Township, Pinehurst, Smithville",NJ,"Atlantic County",America/New_York,609,NA,US,39.42,-74.49,9690 +08202,STANDARD,0,Avalon,,,NJ,"Cape May County",America/New_York,609,NA,US,39.09,-74.73,1160 +08203,STANDARD,0,Brigantine,,"Brigantine City",NJ,"Atlantic County",America/New_York,609,NA,US,39.41,-74.36,7010 +08204,STANDARD,0,"Cape May","N Cape May, North Cape May, West Cape May","Cold Spring, Erma, Fishing Creek, Town Bank",NJ,"Cape May County",America/New_York,609,NA,US,38.94,-74.9,15080 +08205,STANDARD,0,Absecon,"Galloway, Smithville","Galloway Township",NJ,"Atlantic County",America/New_York,609,NA,US,39.48,-74.47,26160 +08210,STANDARD,0,"Cape May Court House","Cape May Ch","Burleigh, Clermont, Mayville, Swainton",NJ,"Cape May County",America/New_York,609,NA,US,39.07,-74.82,15290 +08212,"PO BOX",0,"Cape May Point","Cape May Pt",,NJ,"Cape May County",America/New_York,609,NA,US,38.93,-74.96,258 +08213,"PO BOX",0,Cologne,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.51,-74.56,381 +08214,"PO BOX",0,Dennisville,,"North Dennis",NJ,"Cape May County",America/New_York,609,NA,US,39.22,-74.85,484 +08215,STANDARD,0,"Egg Harbor City","Egg Harbor Cy, Egg Hbr City","Devonshire, Egg Harbor, Germania, Green Bank, Lower Bank, South Egg Harbor, Weekstown",NJ,"Atlantic County",America/New_York,609,NA,US,39.56,-74.59,11320 +08217,"PO BOX",0,Elwood,,,NJ,"Atlantic County",America/New_York,,NA,US,39.57,-74.72,314 +08218,"PO BOX",0,Goshen,,,NJ,"Cape May County",America/New_York,609,NA,US,39.11,-74.86,235 +08219,"PO BOX",0,"Green Creek",,,NJ,"Cape May County",America/New_York,609,NA,US,39.04,-74.91,462 +08220,"PO BOX",0,"Leeds Point",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.49,-74.43,148 +08221,STANDARD,0,Linwood,,,NJ,"Atlantic County",America/New_York,,NA,US,39.34,-74.57,6710 +08223,STANDARD,0,Marmora,,"Beesleys Point, Palermo",NJ,"Cape May County",America/New_York,609,NA,US,39.26,-74.66,4000 +08224,"PO BOX",0,"New Gretna",,,NJ,"Burlington County",America/New_York,,NA,US,39.6,-74.47,714 +08225,STANDARD,0,Northfield,,,NJ,"Atlantic County",America/New_York,,NA,US,39.37,-74.55,8030 +08226,STANDARD,0,"Ocean City",,,NJ,"Cape May County",America/New_York,609,NA,US,39.26,-74.6,9880 +08230,STANDARD,0,"Ocean View","Upper Twp","Palermo, Seaville",NJ,"Cape May County",America/New_York,609,NA,US,39.2,-74.71,5660 +08231,"PO BOX",0,Oceanville,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.48,-74.47,259 +08232,STANDARD,0,Pleasantville,"Mckee City","Bargaintown, Egg Harbor Township, Egg Harbor Twp, Egg Hbr Twp, Farmington, West Atlantic City",NJ,"Atlantic County",America/New_York,609,NA,US,39.39,-74.51,17730 +08234,STANDARD,0,"Egg Harbor Township","Egg Harbor Twp, Egg Hbr Twp","Bargaintown, Mckee City, Steelmanville",NJ,"Atlantic County",America/New_York,609,NA,US,39.41,-74.58,43460 +08240,"PO BOX",0,Pomona,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.49,-74.53,780 +08241,STANDARD,0,"Port Republic",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.53,-74.48,1140 +08242,STANDARD,0,"Rio Grande",,,NJ,"Cape May County",America/New_York,609,NA,US,39.02,-74.87,3770 +08243,STANDARD,0,"Sea Isle City","Townsend Inlt, Townsends Inlet",,NJ,"Cape May County",America/New_York,609,NA,US,39.15,-74.69,1750 +08244,STANDARD,0,"Somers Point",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.31,-74.6,9140 +08245,"PO BOX",0,"South Dennis",,,NJ,"Cape May County",America/New_York,609,NA,US,39.17,-74.82,182 +08246,"PO BOX",0,"South Seaville","S Seaville",,NJ,"Cape May County",America/New_York,609,NA,US,39.18,-74.77,305 +08247,STANDARD,0,"Stone Harbor",,,NJ,"Cape May County",America/New_York,609,NA,US,39.04,-74.76,680 +08248,"PO BOX",0,Strathmere,,,NJ,"Cape May County",America/New_York,609,NA,US,39.19,-74.66,144 +08250,"PO BOX",0,Tuckahoe,,,NJ,"Cape May County",America/New_York,609,NA,US,39.28,-74.78,536 +08251,STANDARD,0,Villas,"Del Haven","Miami Beach",NJ,"Cape May County",America/New_York,609,NA,US,39.01,-74.93,8360 +08252,"PO BOX",0,Whitesboro,,,NJ,"Cape May County",America/New_York,609,NA,US,39.04,-74.86,410 +08260,STANDARD,0,Wildwood,"N Wildwood, North Wildwood, West Wildwood, Wildwood Crest, Wildwood Crst","Anglesea, Grassy Sound, Shaw Crest, Wildwood City",NJ,"Cape May County",America/New_York,609,NA,US,38.98,-74.82,11870 +08270,STANDARD,0,Woodbine,"Corbin City, Dennis Twp","Belleplain, Eldora, Petersburg, Steelmantown",NJ,"Cape May County",America/New_York,609,NA,US,39.22,-74.8,6550 +08302,STANDARD,0,Bridgeton,"Deerfield Twp","Fairfield Twp, Stow Creek Twp, Upper Deerfield Twp",NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.42,-75.22,36460 +08310,STANDARD,0,Buena,,"Buena Vista Township",NJ,"Atlantic County",America/New_York,,NA,US,39.53,-74.9,1470 +08311,STANDARD,0,Cedarville,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.32,-75.2,1810 +08312,STANDARD,0,Clayton,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.65,-75.08,7480 +08313,"PO BOX",0,"Deerfield Street","Deerfield St",Deerfield,NJ,"Cumberland County",America/New_York,856,NA,US,39.49,-75.21,151 +08314,STANDARD,0,Delmont,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.22,-74.94,210 +08315,"PO BOX",0,"Dividing Creek","Dividing Crk",,NJ,"Cumberland County",America/New_York,856,NA,US,39.22,-75.13,295 +08316,"PO BOX",0,Dorchester,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.27,-74.95,554 +08317,STANDARD,0,Dorothy,,,NJ,"Atlantic County",America/New_York,,NA,US,39.4,-74.82,1100 +08318,STANDARD,0,Elmer,Pittsgrove,"Centerton, Daretown, Pittsgrov Twp, Pittsgrove Township",NJ,"Salem County",America/New_York,856,NA,US,39.59,-75.17,11030 +08319,STANDARD,0,"Estell Manor",,,NJ,"Atlantic County",America/New_York,,NA,US,39.37,-74.81,1180 +08320,"PO BOX",0,Fairton,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.39,-75.16,413 +08321,"PO BOX",0,Fortescue,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.22,-75.13,234 +08322,STANDARD,0,Franklinville,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.61,-75.02,9580 +08323,STANDARD,0,Greenwich,,"Greenwich Township",NJ,"Cumberland County",America/New_York,856,NA,US,39.39,-75.36,730 +08324,STANDARD,0,Heislerville,,"Thompson Beach",NJ,"Cumberland County",America/New_York,856,NA,US,39.24,-74.99,350 +08326,STANDARD,0,Landisville,,,NJ,"Atlantic County",America/New_York,,NA,US,39.52,-74.93,1480 +08327,STANDARD,0,Leesburg,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.25,-74.96,680 +08328,STANDARD,0,Malaga,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.57,-75.06,1190 +08329,"PO BOX",0,Mauricetown,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.28,-75.01,283 +08330,STANDARD,0,"Mays Landing",,"Belcoville, English Creek, Scullville, Weymouth",NJ,"Atlantic County",America/New_York,609,NA,US,39.45,-74.72,25980 +08332,STANDARD,0,Millville,,"Carmel, Laurel Lake",NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.39,-75.05,30100 +08340,STANDARD,0,Milmay,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.44,-74.86,800 +08341,STANDARD,0,Minotola,,,NJ,"Atlantic County",America/New_York,,NA,US,39.53,-74.95,1440 +08342,"PO BOX",0,Mizpah,,,NJ,"Atlantic County",America/New_York,,NA,US,39.46,-74.72,322 +08343,STANDARD,0,Monroeville,,,NJ,"Gloucester County",America/New_York,,NA,US,39.64,-75.16,4380 +08344,STANDARD,0,Newfield,,"Willow Grove",NJ,"Gloucester County",America/New_York,,NA,US,39.54,-75.01,5380 +08345,STANDARD,0,Newport,,"Gandys Beach",NJ,"Cumberland County",America/New_York,856,NA,US,39.28,-75.16,650 +08346,STANDARD,0,Newtonville,,,NJ,"Atlantic County",America/New_York,,NA,US,39.56,-74.85,620 +08347,"PO BOX",0,Norma,,,NJ,"Salem County",America/New_York,856,NA,US,39.54,-75.13,425 +08348,STANDARD,0,"Port Elizabeth","Prt Elizabeth",,NJ,"Cumberland County",America/New_York,856,NA,US,39.31,-74.97,260 +08349,STANDARD,0,"Port Norris",,Bivalve,NJ,"Cumberland County",America/New_York,856,NA,US,39.24,-75.04,1480 +08350,STANDARD,0,Richland,,,NJ,"Atlantic County",America/New_York,,NA,US,39.49,-74.88,720 +08352,"PO BOX",0,Rosenhayn,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.48,-75.13,1083 +08353,STANDARD,0,Shiloh,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.46,-75.29,490 +08360,STANDARD,0,Vineland,,"East Vineland, South Vineland",NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.5,-75.01,38090 +08361,STANDARD,0,Vineland,"S Vineland, South Vineland",,NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.46,-74.99,16410 +08362,"PO BOX",0,Vineland,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.46,-74.99,1470 +08401,STANDARD,0,"Atlantic City",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.36,-74.42,29400 +08402,STANDARD,0,"Margate City",,Margate,NJ,"Atlantic County",America/New_York,609,NA,US,39.33,-74.5,4670 +08403,STANDARD,0,Longport,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.32,-74.54,740 +08404,"PO BOX",0,"Atlantic City",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.36,-74.42,1401 +08405,UNIQUE,0,"Atlantic City",,"Nat Aviation Fac Exp Ctr",NJ,"Atlantic County",America/New_York,609,NA,US,39.36,-74.42,0 +08406,STANDARD,0,"Ventnor City",,"Ventnor, Ventnor Heights",NJ,"Atlantic County",America/New_York,609,NA,US,39.34,-74.48,7970 +08501,STANDARD,0,Allentown,,"Upper Freehold",NJ,"Monmouth County",America/New_York,609,NA,US,40.17,-74.58,6610 +08502,STANDARD,0,"Belle Mead",,Montgomery,NJ,"Somerset County",America/New_York,908,NA,US,40.46,-74.64,11580 +08504,"PO BOX",0,Blawenburg,,,NJ,"Somerset County",America/New_York,908,NA,US,40.4,-74.7,102 +08505,STANDARD,0,Bordentown,Fieldsboro,,NJ,"Burlington County",America/New_York,609,NA,US,40.14,-74.7,16950 +08510,STANDARD,0,"Millstone Township","Clarksburg, Millstone Twp",Millstone,NJ,"Monmouth County",America/New_York,732,NA,US,40.19,-74.42,4900 +08511,STANDARD,0,Cookstown,,,NJ,"Burlington County",America/New_York,,NA,US,40.04,-74.55,910 +08512,STANDARD,0,Cranbury,"East Windsor","E Windsor",NJ,"Mercer County",America/New_York,609,NA,US,40.31,-74.51,11670 +08514,STANDARD,0,"Cream Ridge",,"Creamridge, Upper Freehold Township",NJ,"Monmouth County",America/New_York,,NA,US,40.14,-74.49,4470 +08515,STANDARD,0,Chesterfield,Crosswicks,"Chesterfield Township",NJ,"Burlington County",America/New_York,,NA,US,40.15,-74.66,6150 +08518,STANDARD,0,Florence,,,NJ,"Burlington County",America/New_York,609,NA,US,40.11,-74.8,5400 +08520,STANDARD,0,Hightstown,"East Windsor","E Windsor",NJ,"Mercer County",America/New_York,609,NA,US,40.26,-74.52,27350 +08525,STANDARD,0,Hopewell,,"Hopewell Township, Hopewell Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.38,-74.76,4440 +08526,"PO BOX",0,Imlaystown,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.16,-74.49,31 +08527,STANDARD,0,Jackson,,"Jackson Township, Jackson Twp",NJ,"Ocean County",America/New_York,732,NA,US,40.1,-74.35,53140 +08528,STANDARD,0,Kingston,,,NJ,"Somerset County",America/New_York,609,NA,US,40.39,-74.62,360 +08530,STANDARD,0,Lambertville,,"West Amwell",NJ,"Hunterdon County",America/New_York,609,NA,US,40.36,-74.94,6920 +08533,STANDARD,0,"New Egypt",,"Plumsted, Plumsted Township, Plumsted Twp",NJ,"Ocean County",America/New_York,609,NA,US,40.06,-74.53,6330 +08534,STANDARD,0,Pennington,,,NJ,"Mercer County",America/New_York,609,NA,US,40.32,-74.79,12950 +08535,STANDARD,0,"Millstone Township","Millstone Twp, Perrineville",Millstone,NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.44,5210 +08536,STANDARD,0,Plainsboro,,,NJ,"Middlesex County",America/New_York,609,NA,US,40.33,-74.58,19110 +08540,STANDARD,0,Princeton,,"Princeton Township, Princeton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,42820 +08541,UNIQUE,0,Princeton,,"Educational Testing Service",NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,0 +08542,STANDARD,0,Princeton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.66,2780 +08543,"PO BOX",0,Princeton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,403 +08544,UNIQUE,0,Princeton,,"Princeton University",NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,806 +08550,STANDARD,0,"Princeton Junction","Princeton Jct, West Windsor","W Windsor, W Windsor Township, West Win Tow",NJ,"Mercer County",America/New_York,609,NA,US,40.28,-74.61,20750 +08551,STANDARD,0,Ringoes,,"East Amwell, East Amwell Township, East Amwell Twp",NJ,"Hunterdon County",America/New_York,,NA,US,40.44,-74.82,5620 +08553,STANDARD,0,"Rocky Hill",,,NJ,"Somerset County",America/New_York,,NA,US,40.4,-74.63,770 +08554,STANDARD,0,Roebling,,,NJ,"Burlington County",America/New_York,,NA,US,40.12,-74.78,3470 +08555,"PO BOX",0,Roosevelt,,,NJ,"Monmouth County",America/New_York,,NA,US,40.22,-74.47,880 +08556,STANDARD,0,Rosemont,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.42,-74.99,158 +08557,"PO BOX",0,Sergeantsville,Sergeantsvlle,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.45,-74.94,288 +08558,STANDARD,0,Skillman,,Montgomery,NJ,"Somerset County",America/New_York,,NA,US,40.41,-74.7,7630 +08559,STANDARD,0,Stockton,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.4,-74.97,4370 +08560,STANDARD,0,Titusville,Ewing,,NJ,"Mercer County",America/New_York,609,NA,US,40.31,-74.86,3370 +08561,"PO BOX",0,Windsor,,,NJ,"Mercer County",America/New_York,609,NA,US,40.25,-74.58,258 +08562,STANDARD,0,Wrightstown,,"Jacobstown, North Hanover",NJ,"Burlington County",America/New_York,,NA,US,40.06,-74.59,4600 +08601,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,76 +08602,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,113 +08603,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,78 +08604,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,125 +08605,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,84 +08606,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,90 +08607,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,993 +08608,STANDARD,0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,740 +08609,STANDARD,0,Trenton,Hamilton,,NJ,"Mercer County",America/New_York,609,NA,US,40.23,-74.74,10690 +08610,STANDARD,0,Trenton,Hamilton,"Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.19,-74.72,28530 +08611,STANDARD,0,Trenton,Hamilton,"Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.18,-74.74,19890 +08618,STANDARD,0,Trenton,Ewing,"Ewing Township, Ewing Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.25,-74.79,26950 +08619,STANDARD,0,Trenton,"Hamilton, Mercerville","Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.24,-74.7,20960 +08620,STANDARD,0,Trenton,Hamilton,"Groveville, Hamilton Township, Hamilton Twp, Yardville",NJ,"Mercer County",America/New_York,609,NA,US,40.17,-74.65,11230 +08625,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,679 +08628,STANDARD,0,Trenton,"Ewing, West Trenton","Ewing Township, Ewing Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.26,-74.83,8610 +08629,STANDARD,0,Trenton,Hamilton,"Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.73,11370 +08638,STANDARD,0,Trenton,Ewing,"Ewing Township, Ewing Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.25,-74.76,18930 +08640,STANDARD,0,"Joint Base Mdl","Fort Dix, Jb Mdl","Ft Dix",NJ,"Burlington County",America/New_York,609,NA,US,40,-74.59,2680 +08641,STANDARD,0,"Joint Base Mdl","Jb Mdl, Mc Guire AFB, Trenton","Mc Guire Air Force Base",NJ,"Burlington County",America/New_York,609,NA,US,40.02,-74.59,4200 +08644,STANDARD,1,Trenton,Hamilton,,NJ,,America/New_York,,NA,US,40.22,-74.76,0 +08645,UNIQUE,0,Trenton,,"Nj Income Tax, State Income Tax",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08646,UNIQUE,0,Trenton,,"Division Of Revenue, Nj Taxation Dept",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08647,UNIQUE,0,Trenton,,"Nj Income Tax",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08648,STANDARD,0,"Lawrence Township","Lawrence, Lawrence Twp, Lawrenceville, Trenton",,NJ,"Mercer County",America/New_York,609,NA,US,40.28,-74.72,27760 +08650,"PO BOX",0,Trenton,Hamilton,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,390 +08666,UNIQUE,0,Trenton,,"Nj Motor Vehicles",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08690,STANDARD,0,Trenton,"Hamilton, Hamilton Sq, Hamilton Square","Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.66,18740 +08691,STANDARD,0,Robbinsville,"Hamilton, Trenton","Hamilton Township, Hamilton Twp, Uppr Free Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.21,-74.59,16260 +08695,UNIQUE,0,Trenton,,"Division Of Revenue, Nj Taxation Dept",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08701,STANDARD,0,Lakewood,,,NJ,"Ocean County",America/New_York,"732,848,908",NA,US,40.09,-74.21,115570 +08720,"PO BOX",0,Allenwood,,,NJ,"Monmouth County",America/New_York,,NA,US,40.13,-74.09,1077 +08721,STANDARD,0,Bayville,,"Berkeley Township, Berkeley Twp",NJ,"Ocean County",America/New_York,,NA,US,39.91,-74.21,19730 +08722,STANDARD,0,Beachwood,,,NJ,"Ocean County",America/New_York,,NA,US,39.92,-74.2,10190 +08723,STANDARD,0,Brick,Osbornville,Bricktown,NJ,"Ocean County",America/New_York,732,NA,US,40.04,-74.11,28850 +08724,STANDARD,0,Brick,"Wall Township","Bricktown, Wall Twp",NJ,"Ocean County",America/New_York,732,NA,US,40.06,-74.11,38000 +08730,STANDARD,0,Brielle,,,NJ,"Monmouth County",America/New_York,,NA,US,40.1,-74.06,4990 +08731,STANDARD,0,"Forked River",,Lacey,NJ,"Ocean County",America/New_York,609,NA,US,39.84,-74.19,19360 +08732,"PO BOX",0,"Island Heights","Island Hgts",,NJ,"Ocean County",America/New_York,,NA,US,39.94,-74.14,1648 +08733,STANDARD,0,Lakehurst,"Jb Mdl, Joint Base Mdl, Lakehurst Nae, Lakehurst Naec","Manchester, Manchester Township, Manchester Twp",NJ,"Ocean County",America/New_York,"732,848",NA,US,40.01,-74.32,2410 +08734,STANDARD,0,"Lanoka Harbor",,"Lacey Township",NJ,"Ocean County",America/New_York,609,NA,US,39.86,-74.16,7160 +08735,STANDARD,0,Lavallette,,,NJ,"Ocean County",America/New_York,,NA,US,39.98,-74.07,2630 +08736,STANDARD,0,Manasquan,,"Wall Township, Wall Twp",NJ,"Monmouth County",America/New_York,732,NA,US,40.11,-74.03,12220 +08738,STANDARD,0,Mantoloking,,,NJ,"Ocean County",America/New_York,,NA,US,40.02,-74.06,680 +08739,"PO BOX",0,"Normandy Beach","Normandy Bch",,NJ,"Ocean County",America/New_York,,NA,US,40,-74.06,494 +08740,"PO BOX",0,"Ocean Gate",,,NJ,"Ocean County",America/New_York,,NA,US,39.93,-74.13,1904 +08741,STANDARD,0,"Pine Beach",,,NJ,"Ocean County",America/New_York,,NA,US,39.93,-74.17,2650 +08742,STANDARD,0,"Point Pleasant Beach","Bay Head, Point Pleasant Boro, Pt Pleas Bch, Pt Pleasant, Pt Pleasant Beach","Point Pleasant",NJ,"Ocean County",America/New_York,"732,848",NA,US,40.09,-74.04,23480 +08750,STANDARD,0,"Sea Girt",,"Wall Township, Wall Twp",NJ,"Monmouth County",America/New_York,,NA,US,40.12,-74.03,3280 +08751,STANDARD,0,"Seaside Heights","Seaside Hgts","Ortley Beach, Pelican Island",NJ,"Ocean County",America/New_York,,NA,US,39.94,-74.07,3050 +08752,STANDARD,0,"Seaside Park",,"S Seaside Pk, South Seaside Park",NJ,"Ocean County",America/New_York,732,NA,US,39.79,-74.09,1770 +08753,STANDARD,0,"Toms River",,"Berkeley, Dover Township, Dover Twp",NJ,"Ocean County",America/New_York,"732,848,908",NA,US,39.95,-74.18,58030 +08754,"PO BOX",0,"Toms River",,,NJ,"Ocean County",America/New_York,732,NA,US,39.95,-74.18,743 +08755,STANDARD,0,"Toms River",,,NJ,"Ocean County",America/New_York,"732,848,908",NA,US,40.01,-74.22,24690 +08756,"PO BOX",0,"Toms River",,,NJ,"Ocean County",America/New_York,732,NA,US,39.95,-74.18,93 +08757,STANDARD,0,"Toms River","Berkeley, Manchester","Berkeley Township, Berkeley Twp, S Toms River, South Toms River",NJ,"Ocean County",America/New_York,"732,848,908",NA,US,39.94,-74.25,28720 +08758,STANDARD,0,Waretown,,,NJ,"Ocean County",America/New_York,609,NA,US,39.78,-74.19,7220 +08759,STANDARD,0,"Manchester Township","Lakehurst, Manchester, Manchester Tw, Whiting",,NJ,"Ocean County",America/New_York,"732,848",NA,US,39.93,-74.39,27900 +08801,STANDARD,0,Annandale,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.62,-74.89,7160 +08802,STANDARD,0,Asbury,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.67,-75.02,4000 +08803,"PO BOX",0,Baptistown,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.49,-75,158 +08804,STANDARD,0,Bloomsbury,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.65,-75.08,2820 +08805,STANDARD,0,"Bound Brook",,"Bound Brk",NJ,"Somerset County",America/New_York,"848,732",NA,US,40.56,-74.53,11750 +08807,STANDARD,0,Bridgewater,,,NJ,"Somerset County",America/New_York,,NA,US,40.59,-74.62,38160 +08808,"PO BOX",0,Broadway,,,NJ,"Warren County",America/New_York,908,NA,US,40.73,-75.05,271 +08809,STANDARD,0,Clinton,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.63,-74.91,5310 +08810,STANDARD,0,Dayton,,"South Brunswick",NJ,"Middlesex County",America/New_York,732,NA,US,40.38,-74.51,8180 +08812,STANDARD,0,Dunellen,"Green Brook",,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.6,-74.48,13980 +08816,STANDARD,0,"East Brunswick","E Brunswick",,NJ,"Middlesex County",America/New_York,732,NA,US,40.42,-74.41,47410 +08817,STANDARD,0,Edison,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.51,-74.39,44110 +08818,"PO BOX",0,Edison,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.52,-74.36,781 +08820,STANDARD,0,Edison,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.58,-74.37,40310 +08821,"PO BOX",0,Flagtown,,,NJ,"Somerset County",America/New_York,,NA,US,40.52,-74.69,497 +08822,STANDARD,0,Flemington,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.5,-74.86,30310 +08823,STANDARD,0,"Franklin Park",,,NJ,"Somerset County",America/New_York,732,NA,US,40.44,-74.54,8600 +08824,STANDARD,0,"Kendall Park",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.42,-74.55,13280 +08825,STANDARD,0,Frenchtown,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.52,-75.05,4060 +08826,STANDARD,0,"Glen Gardner",,,NJ,"Hunterdon County",America/New_York,,NA,US,40.69,-74.94,5040 +08827,STANDARD,0,Hampton,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.7,-74.96,4220 +08828,STANDARD,0,Helmetta,,,NJ,"Middlesex County",America/New_York,,NA,US,40.38,-74.42,2240 +08829,STANDARD,0,"High Bridge",,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.66,-74.89,3440 +08830,STANDARD,0,Iselin,,,NJ,"Middlesex County",America/New_York,,NA,US,40.57,-74.31,19000 +08831,STANDARD,0,"Monroe Township","Jamesburg, Monroe, Monroe Twp",,NJ,"Middlesex County",America/New_York,732,NA,US,40.34,-74.44,53620 +08832,STANDARD,0,Keasbey,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.51,-74.31,2990 +08833,STANDARD,0,Lebanon,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.64,-74.83,8740 +08834,"PO BOX",0,"Little York",,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.6,-75.05,19 +08835,STANDARD,0,Manville,,,NJ,"Somerset County",America/New_York,,NA,US,40.54,-74.58,9680 +08836,STANDARD,0,Martinsville,,,NJ,"Somerset County",America/New_York,,NA,US,40.6,-74.56,3950 +08837,STANDARD,0,Edison,,"Menlo Park",NJ,"Middlesex County",America/New_York,"848,908,732",NA,US,40.52,-74.36,15930 +08840,STANDARD,0,Metuchen,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.54,-74.36,17080 +08844,STANDARD,0,Hillsborough,,Millstone,NJ,"Somerset County",America/New_York,848,NA,US,40.47,-74.62,41310 +08846,STANDARD,0,Middlesex,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.57,-74.5,13530 +08848,STANDARD,0,Milford,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.56,-75.09,7760 +08850,STANDARD,0,Milltown,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.45,-74.43,8090 +08852,STANDARD,0,"Monmouth Junction","Monmouth Jct",,NJ,"Middlesex County",America/New_York,"732,848",NA,US,40.38,-74.54,18560 +08853,STANDARD,0,"Neshanic Station","Branchburg, Neshanic Sta",,NJ,"Somerset County",America/New_York,908,NA,US,40.53,-74.74,5170 +08854,STANDARD,0,Piscataway,,,NJ,"Middlesex County",America/New_York,"732,908",NA,US,40.51,-74.45,49100 +08855,"PO BOX",0,Piscataway,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.51,-74.45,496 +08857,STANDARD,0,"Old Bridge",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.39,-74.33,37960 +08858,"PO BOX",0,Oldwick,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.68,-74.74,761 +08859,STANDARD,0,Parlin,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.46,-74.3,22600 +08861,STANDARD,0,"Perth Amboy",Hopelawn,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.52,-74.27,52450 +08862,"PO BOX",0,"Perth Amboy",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.52,-74.27,1833 +08863,STANDARD,0,Fords,"Perth Amboy",,NJ,"Middlesex County",America/New_York,"848,908,732",NA,US,40.54,-74.31,12120 +08865,STANDARD,0,Phillipsburg,Alpha,"Delaware Park, Harmony Township, Lopatcong",NJ,"Warren County",America/New_York,908,NA,US,40.68,-75.18,26470 +08867,STANDARD,0,Pittstown,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.57,-74.96,5020 +08868,"PO BOX",0,Quakertown,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.55,-74.94,129 +08869,STANDARD,0,Raritan,,,NJ,"Somerset County",America/New_York,,NA,US,40.57,-74.64,7440 +08870,"PO BOX",0,Readington,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.57,-74.73,74 +08871,"PO BOX",0,Sayreville,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.46,-74.32,115 +08872,STANDARD,0,Sayreville,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.44,-74.36,18880 +08873,STANDARD,0,Somerset,,"East Millstone, Franklin Twp, Middlebush, Zarepath",NJ,"Somerset County",America/New_York,"908,732",NA,US,40.49,-74.48,50710 +08875,"PO BOX",0,Somerset,"E Millstone, East Millstone",,NJ,"Somerset County",America/New_York,732,NA,US,40.49,-74.48,735 +08876,STANDARD,0,Somerville,"Branchburg, North Branch","Finderne, South Branch",NJ,"Somerset County",America/New_York,"732,908",NA,US,40.57,-74.61,21190 +08879,STANDARD,0,"South Amboy","Laurence Harbor, Laurence Hbr",Morgan,NJ,"Middlesex County",America/New_York,732,NA,US,40.47,-74.29,20260 +08880,STANDARD,0,"South Bound Brook","S Bound Brook",,NJ,"Somerset County",America/New_York,"732,848",NA,US,40.55,-74.52,4340 +08882,STANDARD,0,"South River",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.44,-74.37,14410 +08884,STANDARD,0,Spotswood,,,NJ,"Middlesex County",America/New_York,,NA,US,40.39,-74.39,7480 +08885,"PO BOX",0,Stanton,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.58,-74.81,198 +08886,STANDARD,0,Stewartsville,,,NJ,"Warren County",America/New_York,908,NA,US,40.69,-75.1,6680 +08887,STANDARD,0,"Three Bridges",,,NJ,"Hunterdon County",America/New_York,,NA,US,40.52,-74.8,930 +08888,"PO BOX",0,Whitehouse,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.62,-74.76,324 +08889,STANDARD,0,"Whitehouse Station","White Hse Sta","White House Station",NJ,"Hunterdon County",America/New_York,908,NA,US,40.6,-74.76,9670 +08890,"PO BOX",0,Zarephath,,,NJ,"Somerset County",America/New_York,732,NA,US,40.54,-74.58,32 +08899,STANDARD,0,Edison,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.52,-74.36,0 +08901,STANDARD,0,"New Brunswick",,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.48,-74.44,36520 +08902,STANDARD,0,"North Brunswick","N Brunswick, New Brunswick",,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.45,-74.48,40090 +08903,"PO BOX",0,"New Brunswick",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,1923 +08904,STANDARD,0,"Highland Park","New Brunswick",,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.5,-74.42,12580 +08905,UNIQUE,1,"New Brunswick",,Wachovia,NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,0 +08906,"PO BOX",0,"New Brunswick",Edison,"Kilmer Gmf",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,261 +08922,UNIQUE,1,"New Brunswick",,"Prudential Mutual Fund Servi",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.45,0 +08933,UNIQUE,0,"New Brunswick",,"Johnson & Johnson",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,0 +08988,UNIQUE,1,"New Brunswick",,"Merrill Lynch",NJ,"Middlesex County",America/New_York,732,NA,US,40.45,-74.48,0 +08989,UNIQUE,0,"New Brunswick",,"Merrill Lynch",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,0 +09001,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09002,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09003,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09004,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09005,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09006,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09007,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09008,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09009,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09010,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09011,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09012,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09013,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09014,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09015,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09016,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09017,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09018,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09020,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09021,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09028,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09031,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09033,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09034,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09036,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09038,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09042,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09044,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09045,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09046,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09049,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09051,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09053,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09054,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09055,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09056,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09058,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09059,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09060,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09063,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09067,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09068,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09069,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09074,MILITARY,1,Apo,,,AE,,,,NA,DE,0,0,0 +09075,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09076,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09079,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09080,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09081,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09086,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09088,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09089,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09090,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09092,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09094,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09095,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09096,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09099,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09100,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09102,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09103,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09104,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09107,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09110,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09112,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09113,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09114,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09115,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09116,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09123,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09125,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09126,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09128,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09131,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09135,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09136,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09137,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09138,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09139,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09140,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09142,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09143,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09154,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09160,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09161,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09165,MILITARY,1,Apo,,,AE,,,,NA,DE,0,0,0 +09166,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09169,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09170,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09171,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09172,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09173,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09174,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09175,MILITARY,0,Dpo,,,AE,,,,NA,DE,0,0,0 +09176,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09177,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09178,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09180,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09182,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09183,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09185,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09186,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09201,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09203,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09204,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09211,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09212,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09213,MILITARY,0,Dpo,,,AE,,,,EU,DE,0,0,0 +09214,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09216,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09225,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09226,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09227,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09229,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09237,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09240,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09241,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09242,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09244,MILITARY,1,Apo,,,AE,,,,NA,DE,0,0,0 +09245,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09250,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09252,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09261,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09262,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09263,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09264,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09265,MILITARY,0,Dpo,,,AE,,,,EU,DE,0,0,0 +09266,MILITARY,0,Fpo,,,AE,,,,EU,DE,0,0,0 +09267,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09276,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09277,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09278,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09279,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09283,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09285,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09287,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09289,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09290,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09291,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09292,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09300,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09301,MILITARY,0,Dpo,,,AE,,,,ME,IQ,0,0,0 +09302,MILITARY,0,Apo,,,AE,,,,EU,GE,0,0,0 +09303,MILITARY,1,Apo,,,AE,,,,ME,BH,0,0,0 +09304,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09305,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09306,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09307,MILITARY,0,Apo,,,AE,,,,ME,BH,0,0,0 +09308,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09309,MILITARY,0,Apo,,,AE,,,,ME,QA,0,0,0 +09310,MILITARY,0,Dpo,,,AE,,,,ME,AF,0,0,0 +09311,MILITARY,0,Dpo,,,AE,,,,ME,AF,0,0,0 +09312,MILITARY,0,Dpo,,,AE,,,,ME,IQ,0,0,0 +09313,MILITARY,0,Fpo,,,AE,,,,ME,AF,0,0,0 +09314,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09315,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09316,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09317,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09318,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09319,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09320,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09321,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09322,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09323,MILITARY,0,Apo,,,AE,,,,NA,IQ,-44.25,33.53,0 +09324,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09327,MILITARY,1,Apo,,,AE,,,,ME,KW,0,0,0 +09328,MILITARY,1,Apo,,,AE,,,,AS,OM,0,0,0 +09330,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09331,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09332,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09333,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09334,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09336,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09337,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09338,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09339,MILITARY,1,Apo,,,AE,,,,AS,TM,0,0,0 +09340,MILITARY,0,Apo,,,AE,,,,NA,XK,0,0,0 +09342,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09343,MILITARY,0,Apo,,,AE,,,,ME,IL,0,0,0 +09344,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09346,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09347,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09348,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09350,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09351,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09352,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09353,MILITARY,1,Apo,,,AE,,,,AS,KG,0,0,0 +09354,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09355,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09356,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09357,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09358,MILITARY,1,Apo,,,AE,,,,AF,SC,0,0,0 +09359,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09360,MILITARY,1,Apo,,,AE,,,,CA,CU,0,0,0 +09361,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09362,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09363,MILITARY,0,Fpo,,,AE,,,,AF,DJ,0,0,0 +09364,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09365,MILITARY,0,Apo,,,AE,,,,ME,QA,0,0,0 +09366,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09367,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09368,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09369,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09370,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09371,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09372,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09373,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09374,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09375,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09376,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09377,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09378,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09379,MILITARY,1,Fpo,,,AE,,,,ME,BH,0,0,0 +09380,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09381,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09382,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09383,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09384,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09386,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09387,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09388,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09389,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09390,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09391,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09393,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09394,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09396,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09397,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09399,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09401,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09402,MILITARY,1,Apo,,,AE,,,,NA,GB,0,0,0 +09403,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09409,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09410,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09420,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09421,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09447,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09454,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09456,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09459,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09461,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09463,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09464,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09467,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09468,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09469,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09470,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09487,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09488,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09489,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09490,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09491,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09494,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09496,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09497,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09498,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09499,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09501,MILITARY,0,Fpo,,,AE,,,,NA,GB,0,0,0 +09502,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09503,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09504,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09505,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09506,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09507,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09508,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09509,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09510,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09511,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09512,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09513,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09514,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09517,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09520,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09522,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09523,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09524,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09532,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09533,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09534,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09541,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09542,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09543,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09544,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09545,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09549,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09550,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09554,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09556,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09557,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09564,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09565,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09566,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09567,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09568,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09569,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09570,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09573,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09574,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09575,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09576,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09577,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09578,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09579,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09581,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09582,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09583,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09586,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09587,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09588,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09589,MILITARY,0,Fpo,,,AE,,,,CA,CU,0,0,0 +09590,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09591,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09592,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09593,MILITARY,0,Fpo,,,AE,,,,CA,CU,0,0,0 +09594,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09595,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09596,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09599,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09600,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09601,MILITARY,0,Dpo,,,AE,,,,EU,IT,0,0,0 +09602,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09603,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09604,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09605,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09606,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09607,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09608,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09609,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09610,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09611,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09612,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09613,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09614,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09617,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09618,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09619,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09620,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09621,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09622,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09623,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09624,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09625,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09626,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09627,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09630,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09631,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09633,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09634,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09636,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09642,MILITARY,0,Dpo,,,AE,,,,EU,ES,0,0,0 +09643,MILITARY,0,Apo,,,AE,,,,EU,ES,0,0,0 +09644,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09645,MILITARY,0,Fpo,,,AE,,,,EU,ES,0,0,0 +09647,MILITARY,0,Apo,,,AE,,,,EU,ES,0,0,0 +09648,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09649,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09701,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09702,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09703,MILITARY,0,Apo,,,AE,,,,EU,NL,0,0,0 +09704,MILITARY,0,Apo,,,AE,,,,NA,GL,0,0,0 +09705,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09706,MILITARY,0,Apo,,,AE,,,,EU,NO,0,0,0 +09707,MILITARY,0,Dpo,,,AE,,,,EU,NO,0,0,0 +09708,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09709,MILITARY,0,Dpo,,,AE,,,,EU,NL,0,0,0 +09710,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09711,MILITARY,0,Apo,,,AE,,,,EU,NL,0,0,0 +09712,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09713,MILITARY,1,Apo,,,AE,,,,EU,BE,0,0,0 +09714,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09715,MILITARY,0,Dpo,,,AE,,,,EU,NL,0,0,0 +09716,MILITARY,0,Dpo,,,AE,,,,EU,DK,0,0,0 +09717,MILITARY,0,Apo,,,AE,,,,EU,NO,0,0,0 +09718,MILITARY,0,Dpo,,,AE,,,,AF,MA,0,0,0 +09719,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09720,MILITARY,0,Apo,,,AE,,,,NA,PT,0,0,0 +09721,MILITARY,1,Dpo,,,AE,,,,EU,RU,0,0,0 +09722,MILITARY,0,Apo,,,AE,,,,EU,PL,0,0,0 +09723,MILITARY,0,Dpo,,,AE,,,,EU,FI,0,0,0 +09724,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09725,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09726,MILITARY,0,Dpo,,,AE,,,,EU,PT,0,0,0 +09727,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09728,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09729,MILITARY,0,Fpo,,,AE,,,,EU,PT,0,0,0 +09730,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09731,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09732,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09733,MILITARY,0,Fpo,,,AE,,,,NA,CA,0,0,0 +09734,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09735,MILITARY,0,Apo,,,AE,,,,NA,CA,0,0,0 +09736,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09737,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09738,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09739,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09740,MILITARY,1,Apo,,,AE,,,,EU,BE,0,0,0 +09741,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09742,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09743,MILITARY,0,Apo,,,AE,,,,EU,PL,0,0,0 +09744,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09745,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09746,MILITARY,1,Apo,,,AE,,,,EU,FR,0,0,0 +09747,MILITARY,1,Fpo,,,AE,,,,NA,GI,0,0,0 +09748,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09749,MILITARY,0,Apo,,,AE,,,,EU,RO,0,0,0 +09750,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09751,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09752,MILITARY,0,Apo,,,AE,,,,EU,NL,0,0,0 +09753,MILITARY,0,Apo,,,AE,,,,EU,BG,0,0,0 +09754,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09755,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09756,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09757,MILITARY,1,Apo,,,AE,,,,EU,BE,0,0,0 +09758,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09759,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09760,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09761,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09762,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09769,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09771,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09777,MILITARY,0,Dpo,,,AE,,,,EU,FR,0,0,0 +09780,MILITARY,0,Apo,,,AE,,,,NA,BA,0,0,0 +09789,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09790,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09798,MILITARY,1,Apo,,,AE,,,,EU,FR,0,0,0 +09800,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09801,MILITARY,0,Apo,,,AE,,,,AS,AE,0,0,0 +09802,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09803,MILITARY,0,Apo,,,AE,,,,ME,SA,0,0,0 +09804,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09805,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09806,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09807,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09808,MILITARY,0,Dpo,,,AE,,,,ME,IQ,0,0,0 +09809,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09810,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09811,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09812,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09813,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09814,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09815,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09816,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09817,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09818,MILITARY,0,Apo,,,AE,,,,AS,CY,0,0,0 +09819,MILITARY,1,Apo,,,AE,,,,EU,TR,0,0,0 +09820,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09821,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09822,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09823,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09824,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09825,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09826,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09827,MILITARY,0,Dpo,,,AE,,,,EU,TR,0,0,0 +09828,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09829,MILITARY,0,Apo,,,AE,,,,ME,IL,0,0,0 +09830,MILITARY,0,Dpo,,,AE,,,,ME,IL,0,0,0 +09831,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09832,MILITARY,0,Apo,,,AE,,,,AF,EG,0,0,0 +09833,MILITARY,0,Apo,,,AE,,,,AF,EG,0,0,0 +09834,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09835,MILITARY,1,Fpo,,,AE,,,,AF,EG,0,0,0 +09836,MILITARY,0,Dpo,,,AE,,,,NA,GB,0,0,0 +09837,MILITARY,0,Fpo,,,AE,,,,AS,AE,0,0,0 +09838,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09839,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09840,MILITARY,1,Fpo,,,AE,,,,ME,BH,0,0,0 +09841,MILITARY,0,Fpo,,,AE,,,,EU,GR,0,0,0 +09842,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09843,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09844,MILITARY,0,Dpo,,,AE,,,,EU,GR,0,0,0 +09845,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09846,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09847,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09848,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09851,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09852,MILITARY,0,Apo,,,AE,,,,ME,SA,0,0,0 +09853,MILITARY,0,Apo,,,AE,,,,AS,AE,0,0,0 +09854,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09855,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09856,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09857,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09858,MILITARY,0,Apo,,,AE,,,,ME,SA,0,0,0 +09859,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09860,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09861,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09862,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09863,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09864,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09865,MILITARY,0,Fpo,,,AE,,,,NA,GR,0,0,0 +09867,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09868,MILITARY,0,Apo,,,AE,,,,AF,EG,0,0,0 +09869,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09870,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09871,MILITARY,1,Dpo,,,AE,,,,NA,US,0,0,0 +09872,MILITARY,1,Dpo,,,AE,,,,NA,US,0,0,0 +09873,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09874,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09875,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09876,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09877,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09880,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09888,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09890,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09892,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09895,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09898,MILITARY,0,Apo,,,AE,,,,ME,QA,0,0,0 +09901,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09902,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09903,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09904,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09908,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09909,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09910,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09974,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09975,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09976,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09977,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +10001,STANDARD,0,"New York",,"Empire State, Gpo, Greeley Square, Macys Finance, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"718,917,347,646",NA,US,40.75,-74,21760 +10002,STANDARD,0,"New York",Knickerbocker,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,718,NA,US,40.71,-73.99,67080 +10003,STANDARD,0,"New York",,"Cooper, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.73,-73.99,38080 +10004,STANDARD,0,"New York","Bowling Green","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.69,-74.02,4280 +10005,STANDARD,0,"New York","Wall Street","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,718,212,646,917",NA,US,40.71,-74.01,8280 +10006,STANDARD,0,"New York",Trinity,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"917,929",NA,US,40.71,-74.01,3450 +10007,STANDARD,0,"New York",,"Church Street, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,718,917,929,646",NA,US,40.71,-74.01,6520 +10008,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,910 +10009,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Peter Stuyvesant",NY,"New York County",America/New_York,"212,646,718,917",NA,US,40.73,-73.98,45840 +10010,STANDARD,0,"New York",,"Madison Square, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917,718",NA,US,40.74,-73.98,24130 +10011,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917,929",NA,US,40.74,-74,40580 +10012,STANDARD,0,"New York",Prince,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"646,929,347,718",NA,US,40.73,-74,16860 +10013,STANDARD,0,"New York","Canal Street, Chinatown","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,718,646,929,212,917",NA,US,40.72,-74,24330 +10014,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,718,917,929,646",NA,US,40.73,-74.01,24630 +10015,STANDARD,1,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10016,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718,917,347",NA,US,40.75,-73.98,43650 +10017,STANDARD,0,"New York",,"Grand Central, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718",NA,US,40.75,-73.97,16980 +10018,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.99,9560 +10019,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,347,646,718,914",NA,US,40.77,-73.99,36390 +10020,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,2326 +10021,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,212,646,917",NA,US,40.77,-73.96,35030 +10022,STANDARD,0,"New York",,"Franklin D Roosevelt, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.97,29550 +10023,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.78,-73.98,52730 +10024,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Planetarium",NY,"New York County",America/New_York,"212,646,917",NA,US,40.8,-73.97,49250 +10025,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.8,-73.97,71720 +10026,STANDARD,0,"New York",,"Morningside, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.8,-73.95,30050 +10027,STANDARD,0,"New York",,"Manhattan, Manhattanville, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718,917",NA,US,40.81,-73.95,44180 +10028,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,917",NA,US,40.78,-73.95,38600 +10029,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.79,-73.94,59220 +10030,STANDARD,0,"New York",,"College, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.82,-73.94,22330 +10031,STANDARD,0,"New York",,"Hamilton Grange, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.83,-73.95,45020 +10032,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,917",NA,US,40.84,-73.94,45560 +10033,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Washington Bridge",NY,"New York County",America/New_York,"212,347,646,917",NA,US,40.85,-73.93,43640 +10034,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,718,646",NA,US,40.87,-73.92,32550 +10035,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Randalls Island, Triborough, Wards Is, Wards Island",NY,"New York County",America/New_York,212,NA,US,40.8,-73.93,26100 +10036,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.99,25620 +10037,STANDARD,0,"New York",,"Lincolnton, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.81,-73.94,16280 +10038,STANDARD,0,"New York","Peck Slip","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-74,18850 +10039,STANDARD,0,"New York",,"Colonial Park, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.83,-73.94,22280 +10040,STANDARD,0,"New York",,"Fort George, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,917,212",NA,US,40.86,-73.93,34910 +10041,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718,917,347",NA,US,40.71,-73.99,23 +10043,UNIQUE,0,"New York",,"Citibank, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,16 +10044,STANDARD,0,"New York","Roosevelt Isl, Roosevelt Island","New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"646,718",NA,US,40.76,-73.95,7340 +10045,STANDARD,0,"New York",,"Federal Reserve, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917",NA,US,40.71,-73.99,0 +10046,UNIQUE,1,"New York",,"Contest Mail",NY,"New York County",America/New_York,212,NA,US,40.71,-74.01,0 +10047,UNIQUE,1,"New York",,"Ny State Agency",NY,"New York County",America/New_York,212,NA,US,40.71,-74.01,0 +10048,STANDARD,1,"New York","Manhattan, World Trade Ctr, Nyc",,NY,"New York County",America/New_York,212,NA,US,40.71,-74.01,0 +10055,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,20 +10060,STANDARD,0,"New York",,"New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,212,646,718,917",NA,US,40.71,-73.99,0 +10065,STANDARD,0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.76,-73.96,24110 +10069,STANDARD,0,"New York",,,NY,"New York County",America/New_York,"917,212,347,646,718",NA,US,40.78,-73.99,5750 +10072,UNIQUE,1,"New York","Philip Morris",,NY,"New York County",America/New_York,212,NA,US,40.75,-73.99,0 +10075,STANDARD,0,"New York",,,NY,"New York County",America/New_York,347,NA,US,40.77,-73.95,21720 +10079,UNIQUE,1,"New York",,"Bureau Of Census",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10080,UNIQUE,0,"New York",,"Merrill Lynch, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10081,UNIQUE,0,"New York",,"Jp Morgan Bank, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10082,UNIQUE,1,"New York","Capitol Cities",,NY,"New York County",America/New_York,212,NA,US,40.77,-73.98,0 +10087,UNIQUE,0,"New York",,"Jp Morgan Bank, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10090,STANDARD,0,"New York",,"New York City, NY, Ny City, Nyc, S Pole, Santa Claus, So Pole, South Pole",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,0 +10094,UNIQUE,1,"New York",,"Marden Kane Inc",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10095,STANDARD,1,"New York",,,NY,"New York County",America/New_York,"212,646,718,917,929",NA,US,40.71,-73.99,0 +10096,UNIQUE,1,"New York",,"Ny Telephone",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10098,STANDARD,1,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.75,-73.99,0 +10099,STANDARD,1,"New York",,"Postal Data Center",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10101,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,488 +10102,UNIQUE,0,"New York",,"Business Reply, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10103,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,199 +10104,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,41 +10105,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,334 +10106,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,718,914,212,917",NA,US,40.71,-73.99,220 +10107,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,212,646,718,914,917",NA,US,40.71,-73.99,406 +10108,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,506 +10109,UNIQUE,0,"New York",,"Business Reply, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10110,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.75,-73.98,478 +10111,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,1191 +10112,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,563 +10113,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,358 +10114,UNIQUE,0,"New York",,"Business Reply, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10115,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.81,-73.96,22 +10116,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,1271 +10117,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,26 +10118,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"917,929",NA,US,40.71,-73.99,725 +10119,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.75,-73.99,392 +10120,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,929,NA,US,40.71,-73.99,0 +10121,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,347,646,718",NA,US,40.71,-73.99,34 +10122,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,646,NA,US,40.71,-73.99,166 +10123,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,554 +10124,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10125,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,30 +10126,UNIQUE,0,"New York",,"Business Reply, Franklin D Roosevelt",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10128,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.78,-73.95,51680 +10129,"PO BOX",0,"New York",,"New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,161 +10130,UNIQUE,0,"New York",,"Business Reply, Gracie",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10131,UNIQUE,0,"New York",,"Business Reply, Lenox Hill",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10132,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10133,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10138,UNIQUE,0,"New York",,"Business Reply, Midtown",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,68 +10149,UNIQUE,1,"New York",,"Muscular Dystrophy",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,0 +10150,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,1045 +10151,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,39 +10152,STANDARD,0,"New York",,"Manhattan, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.97,107 +10153,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.97,46 +10154,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.97,433 +10155,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,50 +10156,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,410 +10157,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10158,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,718,917",NA,US,40.71,-73.99,38 +10159,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,489 +10160,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10161,STANDARD,1,"New York",,,NY,"New York County",America/New_York,"347,646,917,929",NA,US,40.71,-73.99,0 +10162,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.77,-73.95,1490 +10163,"PO BOX",0,"New York",,"New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,2041 +10164,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10165,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.75,-73.98,597 +10166,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,295 +10167,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718",NA,US,40.75,-73.97,187 +10168,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.75,-73.98,253 +10169,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.75,-73.98,254 +10170,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.75,-73.98,334 +10171,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.97,40 +10172,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"718,212,646,917",NA,US,40.76,-73.97,388 +10173,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.75,-73.98,0 +10174,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,917",NA,US,40.75,-73.98,52 +10175,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,108 +10176,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,30 +10177,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,22 +10178,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"718,212,646,917",NA,US,40.71,-73.99,436 +10179,UNIQUE,0,"New York",,"Bear Stearns",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,35 +10184,UNIQUE,1,"New York",,"J C Penney",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10185,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,1067 +10196,UNIQUE,1,"New York",,"Ny Telephone",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10197,UNIQUE,1,"New York",,"Citicorp Services Inc",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10199,STANDARD,0,"New York",,"Gpo Official Mail, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,646,718",NA,US,40.75,-74,0 +10200,STANDARD,1,"New York",,"Manhattan, New York City, Ny, Ny City, Nyc",NY,,America/New_York,,NA,US,40.77,-73.95,0 +10203,UNIQUE,0,"New York",,"Bank Of New York Brm",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10211,UNIQUE,0,"New York",,"Business Reply, Cooper",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10212,UNIQUE,0,"New York",,"Business Reply, Manhattan",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10213,UNIQUE,0,"New York",,"Business Reply, Canal Street",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10242,"PO BOX",0,"New York",,"Bar Code Church Street",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10249,"PO BOX",0,"New York",,"Church Street Boxes, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10256,UNIQUE,0,"New York",,"Deutsche Bank, Manhattan, NY, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10257,UNIQUE,1,"New York",,"Bank Of New York",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10258,UNIQUE,0,"New York",,"European American Bank",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10259,UNIQUE,0,"New York","New York City","Hsbc Bank, Manhattan, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10260,STANDARD,0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10261,UNIQUE,0,"New York",,"Jp Morgan Bank, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10265,STANDARD,0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10268,"PO BOX",0,"New York",,Manhattan,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,259 +10269,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10270,STANDARD,0,"New York",,Manhattan,NY,"New York County",America/New_York,"212,646,917,347,718",NA,US,40.71,-73.99,0 +10271,STANDARD,0,"New York",,Manhattan,NY,"New York County",America/New_York,"929,212,917",NA,US,40.71,-74.01,55 +10272,"PO BOX",0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,302 +10273,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10274,"PO BOX",0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,418 +10275,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10276,"PO BOX",0,"New York",,"Manhattan, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,418 +10277,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10278,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917,347,718",NA,US,40.72,-74,0 +10279,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-74.01,0 +10280,STANDARD,0,"New York",,"Manhattan, Nyc",NY,"New York County",America/New_York,"347,212,646,917,929",NA,US,40.71,-74.02,7290 +10281,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"929,347,212,646,917",NA,US,40.71,-73.99,677 +10282,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917,347,929",NA,US,40.72,-74.02,5000 +10285,UNIQUE,0,"New York",,"Shearson American Express",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10286,UNIQUE,0,"New York",,"Bank Of New York, Manhattan, NY, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,412 +10292,UNIQUE,1,"New York",,"Bache Halsey Stuart Shields",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10301,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.63,-74.09,32890 +10302,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,929,718,917",NA,US,40.63,-74.14,16220 +10303,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.63,-74.17,23670 +10304,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"917,347,718",NA,US,40.61,-74.09,38770 +10305,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,212,NA,US,40.6,-74.07,37440 +10306,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.58,-74.14,51790 +10307,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,718,917,929",NA,US,40.51,-74.24,12800 +10308,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.55,-74.15,25700 +10309,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"718,347,917,929",NA,US,40.53,-74.22,30100 +10310,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"718,917,929",NA,US,40.63,-74.12,22530 +10311,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.61,-74.18,0 +10312,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,917,929,718",NA,US,40.55,-74.18,57080 +10313,"PO BOX",0,"Staten Island",,,NY,"Richmond County",America/New_York,212,NA,US,40.58,-74.14,98 +10314,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,718,917,929",NA,US,40.6,-74.17,80730 +10451,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.82,-73.93,43630 +10452,STANDARD,0,Bronx,,"Highbridge, Stadium, University Heights",NY,"Bronx County",America/New_York,"347,646,917,929,212,718",NA,US,40.84,-73.92,68800 +10453,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.85,-73.91,71210 +10454,STANDARD,0,Bronx,,"Mott Haven",NY,"Bronx County",America/New_York,718,NA,US,40.81,-73.92,30650 +10455,STANDARD,0,Bronx,,Hub,NY,"Bronx County",America/New_York,718,NA,US,40.81,-73.91,34980 +10456,STANDARD,0,Bronx,,Morrisania,NY,"Bronx County",America/New_York,"718,212,347,646,917,929",NA,US,40.83,-73.91,78020 +10457,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"718,212,347,646,917,929",NA,US,40.85,-73.9,63960 +10458,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.86,-73.89,65420 +10459,STANDARD,0,Bronx,,"Boulevard, Longwood",NY,"Bronx County",America/New_York,718,NA,US,40.83,-73.89,40760 +10460,STANDARD,0,Bronx,,"Crotona Park, West Farms",NY,"Bronx County",America/New_York,212,NA,US,40.84,-73.87,49210 +10461,STANDARD,0,Bronx,,"Morris Park, Pilgrim, Westchester",NY,"Bronx County",America/New_York,"347,718,917,929",NA,US,40.85,-73.84,44950 +10462,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"347,718,917,929",NA,US,40.84,-73.86,74340 +10463,STANDARD,0,Bronx,,"Riverdale, Spuyten Duyvil",NY,"Bronx County",America/New_York,718,NA,US,40.88,-73.91,59620 +10464,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.87,-73.8,3660 +10465,STANDARD,0,Bronx,,"Throggs Neck",NY,"Bronx County",America/New_York,"718,347,917",NA,US,40.82,-73.83,35140 +10466,STANDARD,0,Bronx,,Wakefield,NY,"Bronx County",America/New_York,"347,718,929",NA,US,40.89,-73.85,57870 +10467,STANDARD,0,Bronx,,"Allerton, Mosholu, Van Cott, Williamsbridge",NY,"Bronx County",America/New_York,"347,718",NA,US,40.87,-73.87,84810 +10468,STANDARD,0,Bronx,,Jerome,NY,"Bronx County",America/New_York,718,NA,US,40.87,-73.9,66800 +10469,STANDARD,0,Bronx,,"Baychester, Esplanade, Hillside",NY,"Bronx County",America/New_York,"347,718,929",NA,US,40.87,-73.85,58580 +10470,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"347,718,929",NA,US,40.89,-73.87,13350 +10471,STANDARD,0,Bronx,,Riverdale,NY,"Bronx County",America/New_York,212,NA,US,40.9,-73.9,17460 +10472,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.83,-73.87,57370 +10473,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"347,718,917,929",NA,US,40.82,-73.86,50780 +10474,STANDARD,0,Bronx,,Boulevard,NY,"Bronx County",America/New_York,718,NA,US,40.81,-73.88,9510 +10475,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,212,NA,US,40.88,-73.82,35460 +10499,UNIQUE,1,Bronx,,"Priority Mail Ctr",NY,"Bronx County",America/New_York,212,NA,US,40.84,-73.87,0 +10501,STANDARD,0,Amawalk,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.76,1330 +10502,STANDARD,0,Ardsley,,,NY,"Westchester County",America/New_York,914,NA,US,41.01,-73.84,6190 +10503,"PO BOX",0,"Ardsley On Hudson","Ardsley Hdsn",,NY,"Westchester County",America/New_York,914,NA,US,41.03,-73.88,195 +10504,STANDARD,0,Armonk,"North Castle",,NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.71,8470 +10505,STANDARD,0,"Baldwin Place",,,NY,"Westchester County",America/New_York,914,NA,US,41.34,-73.75,1590 +10506,STANDARD,0,Bedford,,,NY,"Westchester County",America/New_York,914,NA,US,41.19,-73.64,5670 +10507,STANDARD,0,"Bedford Hills",,,NY,"Westchester County",America/New_York,914,NA,US,41.22,-73.69,5010 +10509,STANDARD,0,Brewster,,"Sears Corners, Southeast",NY,"Putnam County",America/New_York,845,NA,US,41.39,-73.61,18270 +10510,STANDARD,0,"Briarcliff Manor","Briarcliff, Scarborough","Briarcliff Mnr",NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.84,9610 +10511,STANDARD,0,Buchanan,,,NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.94,2230 +10512,STANDARD,0,Carmel,"Kent Cliffs, Kent Lakes","Lake Carmel",NY,"Putnam County",America/New_York,845,NA,US,41.41,-73.68,23270 +10514,STANDARD,0,Chappaqua,,,NY,"Westchester County",America/New_York,914,NA,US,41.17,-73.77,12110 +10516,STANDARD,0,"Cold Spring",Nelsonville,"North Highland, Philipstown",NY,"Putnam County",America/New_York,845,NA,US,41.41,-73.95,5040 +10517,"PO BOX",0,Crompond,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.86,928 +10518,STANDARD,0,"Cross River",,,NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.59,1370 +10519,"PO BOX",0,"Croton Falls",,,NY,"Westchester County",America/New_York,914,NA,US,41.35,-73.65,628 +10520,STANDARD,0,"Croton On Hudson","Croton Hdsn","Croton, Croton Hudson",NY,"Westchester County",America/New_York,914,NA,US,41.22,-73.89,12040 +10521,"PO BOX",0,"Croton On Hudson","Croton Hdsn, Crugers",,NY,"Westchester County",America/New_York,914,NA,US,41.22,-73.89,92 +10522,STANDARD,0,"Dobbs Ferry",,,NY,"Westchester County",America/New_York,914,NA,US,41.01,-73.86,10350 +10523,STANDARD,0,Elmsford,,,NY,"Westchester County",America/New_York,914,NA,US,41.06,-73.82,8940 +10524,STANDARD,0,Garrison,,Manitou,NY,"Putnam County",America/New_York,845,NA,US,41.37,-73.92,3980 +10526,STANDARD,0,"Goldens Bridge","Goldens Brg",,NY,"Westchester County",America/New_York,"845,914",NA,US,41.29,-73.67,1860 +10527,STANDARD,0,"Granite Springs","Granite Spgs",,NY,"Westchester County",America/New_York,914,NA,US,41.32,-73.77,960 +10528,STANDARD,0,Harrison,,,NY,"Westchester County",America/New_York,914,NA,US,40.97,-73.73,11260 +10530,STANDARD,0,Hartsdale,Scarsdale,,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.8,12150 +10532,STANDARD,0,Hawthorne,,,NY,"Westchester County",America/New_York,914,NA,US,41.1,-73.79,4960 +10533,STANDARD,0,Irvington,,"East Irvington, Irvington On Hudson",NY,"Westchester County",America/New_York,914,NA,US,41.03,-73.86,7540 +10535,STANDARD,0,"Jefferson Valley","Jefferson Vly",,NY,"Westchester County",America/New_York,"845,914",NA,US,41.34,-73.79,690 +10536,STANDARD,0,Katonah,,"Lake Katonah",NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.68,10320 +10537,STANDARD,0,"Lake Peekskill","Lk Peekskill",,NY,"Putnam County",America/New_York,914,NA,US,41.34,-73.88,2180 +10538,STANDARD,0,Larchmont,,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.75,17350 +10540,"PO BOX",0,Lincolndale,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.71,703 +10541,STANDARD,0,Mahopac,"Lake Lincolnd, Lake Lincolndale","Lake Mahopac, Lake Secor",NY,"Putnam County",America/New_York,"845,914",NA,US,41.36,-73.74,24500 +10542,"PO BOX",0,"Mahopac Falls",,,NY,"Putnam County",America/New_York,845,NA,US,41.36,-73.73,561 +10543,STANDARD,0,Mamaroneck,,,NY,"Westchester County",America/New_York,914,NA,US,40.95,-73.74,19020 +10545,"PO BOX",0,Maryknoll,,,NY,"Westchester County",America/New_York,914,NA,US,41.18,-73.84,282 +10546,STANDARD,0,Millwood,,,NY,"Westchester County",America/New_York,914,NA,US,41.2,-73.8,1430 +10547,STANDARD,0,"Mohegan Lake",,"Lake Mohegan",NY,"Westchester County",America/New_York,"845,914",NA,US,41.31,-73.84,6830 +10548,STANDARD,0,Montrose,,,NY,"Westchester County",America/New_York,914,NA,US,41.24,-73.94,3010 +10549,STANDARD,0,"Mount Kisco","Bedford Corners, Bedford Cors",,NY,"Westchester County",America/New_York,914,NA,US,41.2,-73.73,15620 +10550,STANDARD,0,"Mount Vernon",,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.91,-73.84,33960 +10551,"PO BOX",0,"Mount Vernon",,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.91,-73.82,774 +10552,STANDARD,0,"Mount Vernon",Fleetwood,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.83,18440 +10553,STANDARD,0,"Mount Vernon",,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.91,-73.82,10010 +10557,UNIQUE,1,"Mount Vernon",,"Lincoln 1st Nat Bk Nbw",NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.82,0 +10558,UNIQUE,1,"Mount Vernon",,"Bank Of New York",NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.82,0 +10560,STANDARD,0,"North Salem",,,NY,"Westchester County",America/New_York,"914,845",NA,US,41.33,-73.59,4190 +10562,STANDARD,0,Ossining,,"Crotonville, Kitchawan",NY,"Westchester County",America/New_York,914,NA,US,41.15,-73.87,29100 +10566,STANDARD,0,Peekskill,,,NY,"Westchester County",America/New_York,"845,914",NA,US,41.28,-73.92,21850 +10567,STANDARD,0,"Cortlandt Manor","Cortlandt Mnr",,NY,"Westchester County",America/New_York,"845,914",NA,US,41.3,-73.89,19060 +10570,STANDARD,0,Pleasantville,,,NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.78,12210 +10571,UNIQUE,1,Pleasantville,,"Readers Digest",NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.79,0 +10572,UNIQUE,1,Pleasantville,,"Readers Digest",NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.79,0 +10573,STANDARD,0,"Port Chester","Rye Brook",Portchester,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.68,35440 +10576,STANDARD,0,"Pound Ridge",,"Scotts Corners",NY,"Westchester County",America/New_York,914,NA,US,41.21,-73.57,4830 +10577,STANDARD,0,Purchase,,,NY,"Westchester County",America/New_York,914,NA,US,41.03,-73.71,2740 +10578,STANDARD,0,Purdys,,"Purdy Station",NY,"Westchester County",America/New_York,"845,914",NA,US,41.32,-73.68,830 +10579,STANDARD,0,"Putnam Valley",,"Adams Corners, Crofts Corners, Oscawana Lake, Tompkins Corners",NY,"Putnam County",America/New_York,"845,914",NA,US,41.34,-73.87,8390 +10580,STANDARD,0,Rye,,,NY,"Westchester County",America/New_York,914,NA,US,40.98,-73.69,17250 +10583,STANDARD,0,Scarsdale,Heathcote,"Edgemont, Scarsdale Park",NY,"Westchester County",America/New_York,914,NA,US,40.98,-73.77,39870 +10587,"PO BOX",0,Shenorock,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.71,770 +10588,STANDARD,0,"Shrub Oak",,,NY,"Westchester County",America/New_York,"845,914",NA,US,41.34,-73.82,2540 +10589,STANDARD,0,Somers,,"Somers Town",NY,"Westchester County",America/New_York,"845,914",NA,US,41.33,-73.69,7990 +10590,STANDARD,0,"South Salem",,"Lake Kitchawan, Lewisboro",NY,"Westchester County",America/New_York,914,NA,US,41.25,-73.54,6340 +10591,STANDARD,0,Tarrytown,"N Tarrytown, North Tarrytown, Sleepy Hollow","Philipse Manor, Pocantico Hills, Sleepy Hollow Manor",NY,"Westchester County",America/New_York,914,NA,US,41.06,-73.86,21610 +10594,STANDARD,0,Thornwood,,,NY,"Westchester County",America/New_York,914,NA,US,41.11,-73.77,4950 +10595,STANDARD,0,Valhalla,,"East View",NY,"Westchester County",America/New_York,914,NA,US,41.07,-73.77,6340 +10596,"PO BOX",0,Verplanck,,,NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.96,1704 +10597,STANDARD,0,Waccabuc,,,NY,"Westchester County",America/New_York,914,NA,US,41.29,-73.6,960 +10598,STANDARD,0,"Yorktown Heights","Yorktown Hts","Yorktown, Yorktown Hgts",NY,"Westchester County",America/New_York,914,NA,US,41.27,-73.78,28720 +10601,STANDARD,0,"White Plains",,,NY,"Westchester County",America/New_York,"347,845,914,929",NA,US,41.03,-73.77,9860 +10602,"PO BOX",0,"White Plains",,,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.75,904 +10603,STANDARD,0,"White Plains","N White Plains, N White Plns","North White Plains",NY,"Westchester County",America/New_York,"347,914,929",NA,US,41.05,-73.78,17180 +10604,STANDARD,0,"West Harrison","W Harrison, White Plains","East White Plains, Westchester County Airport",NY,"Westchester County",America/New_York,"845,914",NA,US,41.05,-73.74,10730 +10605,STANDARD,0,"White Plains",,Gedney,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.75,18680 +10606,STANDARD,0,"White Plains",,,NY,"Westchester County",America/New_York,"347,845,914,929",NA,US,41.02,-73.78,15410 +10607,STANDARD,0,"White Plains",,Greenburgh,NY,"Westchester County",America/New_York,914,NA,US,41.04,-73.81,7380 +10610,"PO BOX",0,"White Plains",,,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.75,0 +10701,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,"347,914",NA,US,40.94,-73.86,54750 +10702,"PO BOX",0,Yonkers,,,NY,"Westchester County",America/New_York,914,NA,US,40.94,-73.86,642 +10703,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,"347,914",NA,US,40.96,-73.88,19710 +10704,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.86,30140 +10705,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.89,35140 +10706,STANDARD,0,"Hastings On Hudson","Hastings Hdsn, Yonkers","Hastings Hudson",NY,"Westchester County",America/New_York,914,NA,US,40.98,-73.87,8900 +10707,STANDARD,0,Tuckahoe,"Eastchester, Yonkers",,NY,"Westchester County",America/New_York,914,NA,US,40.96,-73.82,9550 +10708,STANDARD,0,Bronxville,Yonkers,,NY,"Westchester County",America/New_York,914,NA,US,40.94,-73.83,20120 +10709,STANDARD,0,Eastchester,Yonkers,,NY,"Westchester County",America/New_York,914,NA,US,40.95,-73.8,9430 +10710,STANDARD,0,Yonkers,,Centuck,NY,"Westchester County",America/New_York,"347,914",NA,US,40.97,-73.85,24910 +10801,STANDARD,0,"New Rochelle",,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.77,35200 +10802,"PO BOX",0,"New Rochelle",,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.77,729 +10803,STANDARD,0,Pelham,,"Pelham Manor",NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.81,12990 +10804,STANDARD,0,"New Rochelle",Wykagyl,,NY,"Westchester County",America/New_York,914,NA,US,40.94,-73.78,14440 +10805,STANDARD,0,"New Rochelle",,,NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.78,15730 +10901,STANDARD,0,Suffern,"Airmont, Montebello",,NY,"Rockland County",America/New_York,845,NA,US,41.11,-74.14,22260 +10910,"PO BOX",0,Arden,,,NY,"Orange County",America/New_York,845,NA,US,41.28,-74.14,28 +10911,STANDARD,0,"Bear Mountain",,,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.01,28 +10912,"PO BOX",0,Bellvale,,,NY,"Orange County",America/New_York,845,NA,US,41.25,-74.34,241 +10913,STANDARD,0,Blauvelt,,,NY,"Rockland County",America/New_York,845,NA,US,41.07,-73.95,5050 +10914,"PO BOX",0,"Blooming Grove","Blooming Grv, S Bloomng Grv",,NY,"Orange County",America/New_York,845,NA,US,41.42,-74.2,743 +10915,"PO BOX",0,Bullville,,,NY,"Orange County",America/New_York,845,NA,US,41.55,-74.36,478 +10916,STANDARD,0,"Campbell Hall",,,NY,"Orange County",America/New_York,845,NA,US,41.44,-74.25,4390 +10917,STANDARD,0,"Central Valley","Central Vly",,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.12,2070 +10918,STANDARD,0,Chester,"Mediacom Park",,NY,"Orange County",America/New_York,845,NA,US,41.35,-74.27,11040 +10919,STANDARD,0,Circleville,,,NY,"Orange County",America/New_York,845,NA,US,41.52,-74.38,1140 +10920,STANDARD,0,Congers,,,NY,"Rockland County",America/New_York,845,NA,US,41.14,-73.94,8720 +10921,STANDARD,0,Florida,,,NY,"Orange County",America/New_York,845,NA,US,41.33,-74.35,4110 +10922,"PO BOX",0,"Fort Montgomery","Ft Montgomery",,NY,"Orange County",America/New_York,845,NA,US,41.33,-74,1521 +10923,STANDARD,0,Garnerville,,,NY,"Rockland County",America/New_York,845,NA,US,41.2,-74,8980 +10924,STANDARD,0,Goshen,,,NY,"Orange County",America/New_York,845,NA,US,41.4,-74.32,12150 +10925,STANDARD,0,"Greenwood Lake","Greenwood Lk",,NY,"Orange County",America/New_York,845,NA,US,41.22,-74.28,4190 +10926,STANDARD,0,Harriman,,,NY,"Orange County",America/New_York,845,NA,US,41.3,-74.14,3530 +10927,STANDARD,0,Haverstraw,,,NY,"Rockland County",America/New_York,845,NA,US,41.18,-73.95,11220 +10928,STANDARD,0,"Highland Falls","Highland Fls",,NY,"Orange County",America/New_York,845,NA,US,41.35,-74,3840 +10930,STANDARD,0,"Highland Mills","Highland Mls",,NY,"Orange County",America/New_York,845,NA,US,41.35,-74.12,8750 +10931,STANDARD,0,Hillburn,,,NY,"Rockland County",America/New_York,845,NA,US,41.12,-74.17,900 +10932,"PO BOX",0,Howells,,,NY,"Orange County",America/New_York,845,NA,US,41.48,-74.46,508 +10933,"PO BOX",0,Johnson,,,NY,"Orange County",America/New_York,845,NA,US,41.37,-74.51,620 +10940,STANDARD,0,Middletown,Scotchtown,,NY,"Orange County",America/New_York,"845,914",NA,US,41.44,-74.42,46130 +10941,STANDARD,0,Middletown,Scotchtown,,NY,"Orange County",America/New_York,"845,914",NA,US,41.49,-74.34,13420 +10943,UNIQUE,1,Middletown,,"Blue Cross/blue Shield",NY,"Orange County",America/New_York,845,NA,US,41.44,-74.42,0 +10949,"PO BOX",0,Monroe,,,NY,"Orange County",America/New_York,845,NA,US,41.33,-74.19,667 +10950,STANDARD,0,Monroe,"Kiryas Joel, Palm Tree, Twn Palm Tree","S Bloomng Grv",NY,"Orange County",America/New_York,845,NA,US,41.32,-74.18,53810 +10952,STANDARD,0,Monsey,"Airmont, Kaser","Chestnut Ridge, Wesley Hills",NY,"Rockland County",America/New_York,845,NA,US,41.11,-74.08,45170 +10953,"PO BOX",0,Mountainville,,,NY,"Orange County",America/New_York,845,NA,US,41.4,-74.08,480 +10954,STANDARD,0,Nanuet,Bardonia,,NY,"Rockland County",America/New_York,"845,914",NA,US,41.09,-74.01,22880 +10956,STANDARD,0,"New City",,Clarkstown,NY,"Rockland County",America/New_York,845,NA,US,41.15,-73.99,31910 +10958,STANDARD,0,"New Hampton",,,NY,"Orange County",America/New_York,"845,914",NA,US,41.34,-74.45,3200 +10959,"PO BOX",0,"New Milford",,,NY,"Orange County",America/New_York,845,NA,US,41.26,-74.36,102 +10960,STANDARD,0,Nyack,"Grandview On Hudson, Grnd Vw Hudsn","Central Nyack, Grandview, South Nyack, Upper Grandview, Upper Nyack",NY,"Rockland County",America/New_York,"845,914",NA,US,41.09,-73.92,13110 +10962,STANDARD,0,Orangeburg,,,NY,"Rockland County",America/New_York,845,NA,US,41.05,-73.94,5020 +10963,STANDARD,0,Otisville,,,NY,"Orange County",America/New_York,845,NA,US,41.47,-74.53,2430 +10964,STANDARD,0,Palisades,,,NY,"Rockland County",America/New_York,845,NA,US,41.02,-73.91,1370 +10965,STANDARD,0,"Pearl River",,"Chestnut Ridge",NY,"Rockland County",America/New_York,"845,914",NA,US,41.06,-74,14840 +10968,STANDARD,0,Piermont,,,NY,"Rockland County",America/New_York,"845,914",NA,US,41.04,-73.92,2010 +10969,STANDARD,0,"Pine Island",,,NY,"Orange County",America/New_York,845,NA,US,41.29,-74.49,1190 +10970,STANDARD,0,Pomona,,"Mount Ivy",NY,"Rockland County",America/New_York,845,NA,US,41.18,-74.05,10420 +10973,STANDARD,0,"Slate Hill",,,NY,"Orange County",America/New_York,845,NA,US,41.37,-74.49,2210 +10974,STANDARD,0,Sloatsburg,,,NY,"Rockland County",America/New_York,845,NA,US,41.16,-74.19,2960 +10975,STANDARD,0,Southfields,,,NY,"Orange County",America/New_York,845,NA,US,41.25,-74.17,280 +10976,STANDARD,0,Sparkill,,,NY,"Rockland County",America/New_York,845,NA,US,41.02,-73.93,1420 +10977,STANDARD,0,"Spring Valley","Chestnut Rdg, Chestnut Ridge, New Square","Kaser, New Hempstead, Wesley Hills",NY,"Rockland County",America/New_York,"845,914",NA,US,41.12,-74.05,63780 +10979,"PO BOX",0,"Sterling Forest","Sterling Frst",,NY,"Orange County",America/New_York,845,NA,US,41.18,-74.31,224 +10980,STANDARD,0,"Stony Point",,"Grassy Point",NY,"Rockland County",America/New_York,845,NA,US,41.22,-73.99,13090 +10981,"PO BOX",0,"Sugar Loaf",,,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.27,866 +10982,"PO BOX",0,Tallman,,,NY,"Rockland County",America/New_York,845,NA,US,41.11,-74.1,378 +10983,STANDARD,0,Tappan,,,NY,"Rockland County",America/New_York,845,NA,US,41.02,-73.95,5930 +10984,STANDARD,0,Thiells,,,NY,"Rockland County",America/New_York,845,NA,US,41.2,-74.01,2570 +10985,STANDARD,0,"Thompson Ridge","Thompson Rdg",,NY,"Orange County",America/New_York,845,NA,US,41.58,-74.37,290 +10986,STANDARD,0,"Tomkins Cove",,,NY,"Rockland County",America/New_York,845,NA,US,41.27,-73.98,1780 +10987,STANDARD,0,"Tuxedo Park",,Tuxedo,NY,"Orange County",America/New_York,845,NA,US,41.2,-74.2,3450 +10988,"PO BOX",0,Unionville,,,NY,"Orange County",America/New_York,845,NA,US,41.3,-74.56,701 +10989,STANDARD,0,"Valley Cottage","Vly Cottage",,NY,"Rockland County",America/New_York,845,NA,US,41.11,-73.94,8850 +10990,STANDARD,0,Warwick,,,NY,"Orange County",America/New_York,845,NA,US,41.25,-74.35,18630 +10992,STANDARD,0,Washingtonville,Washingtonvle,,NY,"Orange County",America/New_York,845,NA,US,41.42,-74.15,9010 +10993,STANDARD,0,"West Haverstraw","W Haverstraw",,NY,"Rockland County",America/New_York,845,NA,US,41.21,-73.97,4630 +10994,STANDARD,0,"West Nyack",,,NY,"Rockland County",America/New_York,845,NA,US,41.09,-73.96,7480 +10996,STANDARD,0,"West Point",,"United States Military Acade, West Point Military Reservat",NY,"Orange County",America/New_York,845,NA,US,41.39,-73.97,3080 +10997,"PO BOX",0,"West Point",,"U S C C",NY,"Orange County",America/New_York,845,NA,US,41.36,-74.02,1801 +10998,STANDARD,0,Westtown,,,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.54,3370 +11001,STANDARD,0,"Floral Park","Bellerose Village, Bellerose Vlg, S Floral Park, South Floral Park","Bellerose Terrace, Bellrose Village, So Floral Park",NY,"Nassau County",America/New_York,"516,718",NA,US,40.72,-73.7,27030 +11002,"PO BOX",0,"Floral Park",,,NY,"Queens County",America/New_York,212,NA,US,40.72,-73.7,253 +11003,STANDARD,0,Elmont,"Alden Manor, Floral Park","Argo Village, Locustwood",NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.7,43370 +11004,STANDARD,0,"Glen Oaks","Floral Park",,NY,"Queens County",America/New_York,"516,718",NA,US,40.74,-73.71,12320 +11005,STANDARD,0,"Floral Park",,,NY,"Queens County",America/New_York,212,NA,US,40.76,-73.71,1910 +11010,STANDARD,0,"Franklin Square","Franklin Sq",,NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.67,23730 +11020,STANDARD,0,"Great Neck","Lake Success","Great Nk, University Gardens",NY,"Nassau County",America/New_York,516,NA,US,40.77,-73.71,6260 +11021,STANDARD,0,"Great Neck","Great Nck Plz, Great Neck Plaza","Allenwood, Great Neck Estates, Kensington, Russell Gardens, Saddle Rock Estates, Thomaston",NY,"Nassau County",America/New_York,516,NA,US,40.78,-73.73,17380 +11022,"PO BOX",0,"Great Neck",,"Lake Gardens",NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,603 +11023,STANDARD,0,"Great Neck",,"Harbor Hills, Saddle Rock",NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,9160 +11024,STANDARD,0,"Great Neck","Kings Point",Kenilworth,NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.74,6800 +11025,UNIQUE,1,"Great Neck",,"American Express",NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.72,0 +11026,"PO BOX",0,"Great Neck",,,NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,0 +11027,"PO BOX",0,"Great Neck",,,NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,0 +11030,STANDARD,0,Manhasset,Plandome,,NY,"Nassau County",America/New_York,516,NA,US,40.79,-73.69,18000 +11040,STANDARD,0,"New Hyde Park","Garden City Park, Garden Cty Pk, Hillside Manor, Hillside Mnr, Manhasset Hills, Manhasset Hl, N New Hyde Pk, North Hills, North New Hyde Park","Gdn City Park, Herricks, Lake Success, Lakeville Estates, N H P, No New Hyde Park",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,43140 +11041,UNIQUE,1,"New Hyde Park",,Visa,NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11042,STANDARD,0,"New Hyde Park","N New Hyde Pk, North New Hyde Park","Lake Success",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.7,380 +11043,UNIQUE,1,"New Hyde Park",,"Independent Elect Of Amer",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11044,UNIQUE,1,"New Hyde Park","Eastern States Bkcard Assoc",,NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11050,STANDARD,0,"Port Washington","Prt Washingtn, Sands Point","Baxter Estates, Harbor Acres, Manorhaven, Port Wash, Pr Wash, Pr Wshngtn, Pt Wash, The Terrace",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,29730 +11051,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing Hse Brm",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11052,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11053,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11054,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11055,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11096,STANDARD,0,Inwood,"Far Rockaway",,NY,"Nassau County",America/New_York,"516,718,347,929",NA,US,40.62,-73.75,7890 +11099,UNIQUE,1,"New Hyde Park",,"Eastern States Bkcard Assoc",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11101,STANDARD,0,"Long Island City","Astoria, Long Is City",Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.74,-73.93,35370 +11102,STANDARD,0,Astoria,"Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,718,NA,US,40.77,-73.93,30930 +11103,STANDARD,0,Astoria,"Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,718,NA,US,40.76,-73.91,32260 +11104,STANDARD,0,Sunnyside,"Astoria, Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,212,NA,US,40.74,-73.92,25070 +11105,STANDARD,0,Astoria,"Long Is City, Long Island City",,NY,"Queens County",America/New_York,212,NA,US,40.78,-73.91,31790 +11106,STANDARD,0,Astoria,"Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,718,NA,US,40.76,-73.93,34880 +11109,STANDARD,0,"Long Island City","Long Is City",Queens,NY,"Queens County",America/New_York,"718,347",NA,US,40.75,-73.96,5450 +11120,UNIQUE,0,"Long Island City","Long Is City","Citicorp, Queens",NY,"Queens County",America/New_York,212,NA,US,40.74,-73.93,0 +11201,STANDARD,0,Brooklyn,"Brooklyn Heights, Brooklyn Hgts",,NY,"Kings County",America/New_York,"347,718,929",NA,US,40.69,-73.99,54360 +11202,"PO BOX",0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,1925 +11203,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.94,63680 +11204,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-73.98,76550 +11205,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.69,-73.97,38920 +11206,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917",NA,US,40.7,-73.94,70650 +11207,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.67,-73.89,77180 +11208,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.67,-73.87,84010 +11209,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-74.03,61350 +11210,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"718,917,929,347",NA,US,40.63,-73.95,55870 +11211,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917",NA,US,40.71,-73.95,53930 +11212,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-73.91,69670 +11213,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929",NA,US,40.67,-73.94,52620 +11214,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.6,-74,81660 +11215,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-73.99,57850 +11216,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929",NA,US,40.68,-73.95,42870 +11217,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"646,718",NA,US,40.68,-73.98,32470 +11218,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.98,70170 +11219,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.63,-74,91910 +11220,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-74.02,106310 +11221,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.69,-73.93,63390 +11222,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917",NA,US,40.73,-73.95,33470 +11223,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.6,-73.97,67770 +11224,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.58,-73.99,35580 +11225,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-73.95,49630 +11226,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.65,-73.96,87070 +11228,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-74.01,39260 +11229,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929",NA,US,40.6,-73.94,72920 +11230,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-73.97,78250 +11231,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.68,-74.01,30750 +11232,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-74.01,23980 +11233,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.68,-73.92,54110 +11234,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,917,929,718",NA,US,40.61,-73.91,78970 +11235,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.58,-73.95,72910 +11236,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.9,82740 +11237,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718",NA,US,40.7,-73.92,37930 +11238,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929,646",NA,US,40.68,-73.96,47990 +11239,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.65,-73.88,12690 +11240,STANDARD,1,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.69,-73.98,0 +11241,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,929",NA,US,40.64,-73.94,0 +11242,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"929,347,718",NA,US,40.64,-73.94,43 +11243,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,646,NA,US,40.64,-73.94,128 +11244,UNIQUE,1,Brooklyn,,"Con Edison",NY,"Kings County",America/New_York,212,NA,US,40.68,-73.99,19 +11245,UNIQUE,0,Brooklyn,,"Chase Manhattan Bank",NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,0 +11247,"PO BOX",0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,660 +11248,UNIQUE,1,Brooklyn,,"Workers Compensation",NY,"Kings County",America/New_York,212,NA,US,40.69,-73.99,0 +11249,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718",NA,US,40.64,-73.94,0 +11251,UNIQUE,0,Brooklyn,,"Brooklyn Navy Yard",NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,0 +11252,STANDARD,0,Brooklyn,"Fort Hamilton",,NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,26 +11254,UNIQUE,1,Brooklyn,,"Ny Telephone",NY,"Kings County",America/New_York,212,NA,US,40.69,-73.99,0 +11255,UNIQUE,1,Brooklyn,,"Ny Telephone",NY,"Kings County",America/New_York,212,NA,US,40.69,-73.98,51 +11256,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.94,0 +11351,STANDARD,0,Flushing,,Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.78,-73.83,0 +11352,"PO BOX",0,Flushing,,Queens,NY,"Queens County",America/New_York,212,NA,US,40.77,-73.84,1022 +11354,STANDARD,0,Flushing,,"Linden Hill, Queens",NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.77,-73.84,54580 +11355,STANDARD,0,Flushing,,Queens,NY,"Queens County",America/New_York,"917,929,347,718",NA,US,40.75,-73.82,91180 +11356,STANDARD,0,"College Point",Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.78,-73.84,24150 +11357,STANDARD,0,Whitestone,"Beechhurst, Flushing, Malba",Queens,NY,"Queens County",America/New_York,347,NA,US,40.79,-73.81,37510 +11358,STANDARD,0,Flushing,Auburndale,"Queens, Sta A",NY,"Queens County",America/New_York,212,NA,US,40.76,-73.8,35870 +11359,STANDARD,0,Bayside,Flushing,Queens,NY,"Queens County",America/New_York,347,NA,US,40.79,-73.78,0 +11360,STANDARD,0,Bayside,Flushing,"Bay Terrace, Queens",NY,"Queens County",America/New_York,"347,718",NA,US,40.78,-73.78,17510 +11361,STANDARD,0,Bayside,Flushing,Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.76,-73.77,25790 +11362,STANDARD,0,"Little Neck","Douglaston, Flushing","Horace Harding, Queens",NY,"Queens County",America/New_York,212,NA,US,40.76,-73.74,16480 +11363,STANDARD,0,"Little Neck","Douglaston, Flushing",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.77,-73.75,6370 +11364,STANDARD,0,"Oakland Gardens","Bayside, Bayside Hills, Flushing, Hollis Hills, Oakland Gdns",Queens,NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.75,-73.76,34260 +11365,STANDARD,0,"Fresh Meadows",Flushing,"Pomonok, Queens",NY,"Queens County",America/New_York,718,NA,US,40.74,-73.79,41530 +11366,STANDARD,0,"Fresh Meadows",Flushing,"Queens, Utopia",NY,"Queens County",America/New_York,718,NA,US,40.73,-73.79,13270 +11367,STANDARD,0,Flushing,"Kew Garden Hl, Kew Gardens Hills",Queens,NY,"Queens County",America/New_York,718,NA,US,40.73,-73.83,38310 +11368,STANDARD,0,Corona,Flushing,Queens,NY,"Queens County",America/New_York,718,NA,US,40.74,-73.85,96980 +11369,STANDARD,0,"East Elmhurst",Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.76,-73.88,34110 +11370,STANDARD,0,"East Elmhurst",Flushing,"Queens, Trainsmeadow",NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.77,-73.89,25290 +11371,STANDARD,0,Flushing,"East Elmhurst, La Guardia Airport, La Gurda Arpt",Queens,NY,"Queens County",America/New_York,212,NA,US,40.77,-73.87,97 +11372,STANDARD,0,"Jackson Heights","Flushing, Jackson Hts",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.75,-73.88,63280 +11373,STANDARD,0,Elmhurst,Flushing,Queens,NY,"Queens County",America/New_York,"347,917,929,718",NA,US,40.74,-73.88,95100 +11374,STANDARD,0,"Rego Park",Flushing,"Queens, Rego Pk",NY,"Queens County",America/New_York,"347,718",NA,US,40.72,-73.86,41150 +11375,STANDARD,0,"Forest Hills",Flushing,"Forest Hls, Parkside, Queens",NY,"Queens County",America/New_York,"347,718",NA,US,40.72,-73.84,63280 +11377,STANDARD,0,Woodside,Flushing,Queens,NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.74,-73.9,81800 +11378,STANDARD,0,Maspeth,Flushing,Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.72,-73.9,33410 +11379,STANDARD,0,"Middle Village","Flushing, Middle Vlg","Elmhurst, Queens",NY,"Queens County",America/New_York,212,NA,US,40.71,-73.88,33030 +11380,"PO BOX",0,Elmhurst,Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.72,-73.87,139 +11381,UNIQUE,0,Flushing,,"Metropolitan Museum Of Art, Queens",NY,"Queens County",America/New_York,212,NA,US,40.77,-73.84,0 +11385,STANDARD,0,Ridgewood,"Flushing, Glendale","Fresh Pond, Queens",NY,"Queens County",America/New_York,"347,718",NA,US,40.7,-73.89,87510 +11386,"PO BOX",0,Ridgewood,Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.7,-73.89,679 +11390,UNIQUE,1,Flushing,,"Contest And Large Vol",NY,"Queens County",America/New_York,212,NA,US,40.77,-73.84,0 +11405,UNIQUE,0,Jamaica,,"Motor Vehicle Bureau, Queens",NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,0 +11411,STANDARD,0,"Cambria Heights","Cambria Hts, Jamaica",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.69,-73.73,17600 +11412,STANDARD,0,"Saint Albans",Jamaica,"St Albans",NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.69,-73.75,33190 +11413,STANDARD,0,"Springfield Gardens","Jamaica, Laurelton, Rosedale, Saint Albans, Sprngfld Gdns",Queens,NY,"Queens County",America/New_York,"516,718",NA,US,40.66,-73.75,36310 +11414,STANDARD,0,"Howard Beach",Jamaica,Queens,NY,"Queens County",America/New_York,212,NA,US,40.66,-73.84,23690 +11415,STANDARD,0,"Kew Gardens",Jamaica,Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.71,-73.83,16890 +11416,STANDARD,0,"Ozone Park",Jamaica,Queens,NY,"Queens County",America/New_York,718,NA,US,40.68,-73.85,25240 +11417,STANDARD,0,"Ozone Park",Jamaica,Queens,NY,"Queens County",America/New_York,212,NA,US,40.68,-73.84,28910 +11418,STANDARD,0,"Richmond Hill","Jamaica, Kew Gardens",Queens,NY,"Queens County",America/New_York,"347,917,929,718",NA,US,40.7,-73.84,33980 +11419,STANDARD,0,"South Richmond Hill","Jamaica, S Richmond Hl","Queens, S Richmond Hill",NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.69,-73.82,43820 +11420,STANDARD,0,"South Ozone Park","Jamaica, S Ozone Park",Queens,NY,"Queens County",America/New_York,718,NA,US,40.67,-73.81,43400 +11421,STANDARD,0,Woodhaven,Jamaica,Queens,NY,"Queens County",America/New_York,212,NA,US,40.69,-73.85,39100 +11422,STANDARD,0,Rosedale,Jamaica,Queens,NY,"Queens County",America/New_York,"516,718",NA,US,40.66,-73.73,27690 +11423,STANDARD,0,Hollis,Jamaica,Queens,NY,"Queens County",America/New_York,718,NA,US,40.71,-73.76,28320 +11424,"PO BOX",0,Jamaica,"Kew Gardens","Borough Hall, Queens",NY,"Queens County",America/New_York,212,NA,US,40.71,-73.83,32 +11425,UNIQUE,0,Jamaica,,"Queens, Vet Admin Ext Care Ctr",NY,"Kings County",America/New_York,212,NA,US,40.61,-74.02,25 +11426,STANDARD,0,Bellerose,Jamaica,Queens,NY,"Queens County",America/New_York,"718,516",NA,US,40.74,-73.72,17570 +11427,STANDARD,0,"Queens Village","Bellerose Manor, Bellrs Manor, Jamaica, Queens Vlg","Hollis Hills, Queens",NY,"Queens County",America/New_York,212,NA,US,40.73,-73.75,22010 +11428,STANDARD,0,"Queens Village","Bellerose Manor, Bellrs Manor, Jamaica, Queens Vlg",Queens,NY,"Queens County",America/New_York,718,NA,US,40.72,-73.74,18650 +11429,STANDARD,0,"Queens Village","Jamaica, Queens Vlg",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.71,-73.74,22770 +11430,STANDARD,0,Jamaica,"Jf Kennedy Ap, Jfk Airport, John F Kennedy Airport",Queens,NY,"Queens County",America/New_York,718,NA,US,40.65,-73.79,230 +11431,"PO BOX",0,Jamaica,,Queens,NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,1337 +11432,STANDARD,0,Jamaica,,"Jamaica Est, Queens",NY,"Queens County",America/New_York,"718,347",NA,US,40.72,-73.79,56400 +11433,STANDARD,0,Jamaica,"Addisleigh Park, Addisleigh Pk",Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.7,-73.79,31560 +11434,STANDARD,0,Jamaica,"Addisleigh Park, Addisleigh Pk, Rochdale Village, Rochdale Vlg","Queens, Rochdale",NY,"Queens County",America/New_York,"516,718",NA,US,40.68,-73.78,56160 +11435,STANDARD,0,Jamaica,Briarwood,Queens,NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.7,-73.81,50000 +11436,STANDARD,0,Jamaica,"S Ozone Park, South Ozone Park","Queens, S Ozone Pk",NY,"Queens County",America/New_York,718,NA,US,40.68,-73.8,17700 +11437,UNIQUE,0,Jamaica,,Aramex,NY,,,,NA,US,0,0,0 +11439,UNIQUE,0,Jamaica,,"Queens, Saint John University",NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,56 +11451,UNIQUE,0,Jamaica,,"Queens, York College",NY,"Queens County",America/New_York,212,NA,US,40.7,-73.8,0 +11499,UNIQUE,0,Jamaica,,"Amf/Jfk Incoming Express Mai",NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,0 +11501,STANDARD,0,Mineola,,,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.64,19580 +11507,STANDARD,0,Albertson,,,NY,"Nassau County",America/New_York,"516,718",NA,US,40.77,-73.64,7620 +11509,STANDARD,0,"Atlantic Beach","Atlantic Bch",,NY,"Nassau County",America/New_York,516,NA,US,40.59,-73.73,2150 +11510,STANDARD,0,Baldwin,"N Baldwin, North Baldwin","Baldwin Harbor",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.61,33070 +11514,STANDARD,0,"Carle Place",,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.75,-73.61,4630 +11516,STANDARD,0,Cedarhurst,,,NY,"Nassau County",America/New_York,516,NA,US,40.63,-73.73,7930 +11518,STANDARD,0,"East Rockaway",,"E Rockaway",NY,"Nassau County",America/New_York,516,NA,US,40.64,-73.66,10360 +11520,STANDARD,0,Freeport,,,NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.58,42690 +11530,STANDARD,0,"Garden City","Garden City S, Garden City South, Stewart Manor, Village Of Garden City, Vlg Gdn City","Mitchell Field, Roosevelt Field",NY,"Nassau County",America/New_York,"631,718,516",NA,US,40.72,-73.64,28910 +11531,"PO BOX",0,"Garden City",,"Roosevelt Field",NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.64,176 +11535,UNIQUE,1,"Garden City",,Abmps,NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.64,0 +11536,UNIQUE,1,"Garden City","Select And Save",,NY,"Nassau County",America/New_York,516,NA,US,40.67,-73.7,0 +11542,STANDARD,0,"Glen Cove",,,NY,"Nassau County",America/New_York,516,NA,US,40.86,-73.63,24110 +11545,STANDARD,0,"Glen Head",,"Brookville, Muttontown, Old Brookville, Roslyn Harbor, Upper Brookville",NY,"Nassau County",America/New_York,516,NA,US,40.84,-73.61,11480 +11547,"PO BOX",0,"Glenwood Landing","Glenwood Lndg",,NY,"Nassau County",America/New_York,516,NA,US,40.83,-73.64,1045 +11548,STANDARD,0,Greenvale,,"Brookville, E Hills, East Hills, Old Brookville, Roslyn Harbor",NY,"Nassau County",America/New_York,516,NA,US,40.81,-73.63,1300 +11549,UNIQUE,0,Hempstead,,"Hofstra Univ",NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.6,32 +11550,STANDARD,0,Hempstead,"S Hempstead, South Hempstead",,NY,"Nassau County",America/New_York,"516,718",NA,US,40.7,-73.61,52130 +11551,"PO BOX",0,Hempstead,,,NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.61,1239 +11552,STANDARD,0,"West Hempstead","W Hempstead",Lakeview,NY,"Nassau County",America/New_York,516,NA,US,40.69,-73.65,25470 +11553,STANDARD,0,Uniondale,,"Mitchell Field",NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.59,25930 +11554,STANDARD,0,"East Meadow",,"E Meadow",NY,"Nassau County",America/New_York,516,NA,US,40.71,-73.55,36940 +11555,UNIQUE,0,Uniondale,,Citibank,NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.59,0 +11556,STANDARD,0,Uniondale,,,NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.58,14 +11557,STANDARD,0,Hewlett,,"Hewlett Bay, Hewlett Bay Park, Hewlett Harbor",NY,"Nassau County",America/New_York,516,NA,US,40.64,-73.69,8050 +11558,STANDARD,0,"Island Park",,"Barnum Island, Harbor Island, Harbor Isle",NY,"Nassau County",America/New_York,516,NA,US,40.6,-73.64,7670 +11559,STANDARD,0,Lawrence,,"Meadowmere Park",NY,"Nassau County",America/New_York,"516,718",NA,US,40.6,-73.71,8250 +11560,STANDARD,0,"Locust Valley",,"Lattingtown, Matinecock",NY,"Nassau County",America/New_York,516,NA,US,40.88,-73.58,6200 +11561,STANDARD,0,"Long Beach","E Atlantc Bch, E Atlantic Beach, East Atlantic Beach, Lido Beach",,NY,"Nassau County",America/New_York,516,NA,US,40.59,-73.65,31210 +11563,STANDARD,0,Lynbrook,,,NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.67,21660 +11565,STANDARD,0,Malverne,,,NY,"Nassau County",America/New_York,516,NA,US,40.67,-73.67,8910 +11566,STANDARD,0,Merrick,"N Merrick, North Merrick",,NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.55,35600 +11568,STANDARD,0,"Old Westbury",Westbury,,NY,"Nassau County",America/New_York,"516,631,718",NA,US,40.78,-73.59,3130 +11569,"PO BOX",0,"Point Lookout",,"Pt Lookout",NY,"Nassau County",America/New_York,516,NA,US,40.59,-73.58,1554 +11570,STANDARD,0,"Rockville Centre","Rockville Ctr","Lakeview, Rockville Center, Rvc",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.63,27210 +11571,"PO BOX",0,"Rockville Centre","Rockville Ctr","Rockville Center, Rvc",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.63,266 +11572,STANDARD,0,Oceanside,"Rockville Centre, Rockville Ctr","Rockville Center, Rvc",NY,"Nassau County",America/New_York,516,NA,US,40.63,-73.63,30450 +11575,STANDARD,0,Roosevelt,,,NY,"Nassau County",America/New_York,516,NA,US,40.68,-73.58,16810 +11576,STANDARD,0,Roslyn,,"E Hills, East Hills, Roslyn Estates, Roslyn Harbor",NY,"Nassau County",America/New_York,"516,718",NA,US,40.8,-73.65,12500 +11577,STANDARD,0,"Roslyn Heights","Roslyn Hts","E Hills, East Hills",NY,"Nassau County",America/New_York,"516,718",NA,US,40.78,-73.64,12240 +11579,STANDARD,0,"Sea Cliff",,,NY,"Nassau County",America/New_York,516,NA,US,40.84,-73.64,4860 +11580,STANDARD,0,"Valley Stream",,"N Valley Stream, North Valley Stream",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.7,41820 +11581,STANDARD,0,"Valley Stream",,"N Woodmere, North Woodmere",NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.72,22190 +11582,"PO BOX",0,"Valley Stream",,,NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.7,483 +11590,STANDARD,0,Westbury,,"New Cassel",NY,"Nassau County",America/New_York,"516,631,718",NA,US,40.75,-73.58,47480 +11592,UNIQUE,1,"Rockville Center","Rvc, National Profit, Rockville Ctr, Rockville Centre",,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.57,0 +11594,UNIQUE,1,Westbury,"115 Firms",,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.58,0 +11595,UNIQUE,1,Westbury,Cheeselovers,,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.58,0 +11596,STANDARD,0,"Williston Park","E Williston, East Williston, Williston Pk",,NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.64,10750 +11597,UNIQUE,1,Westbury,"115 Crm Firms",,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.58,0 +11598,STANDARD,0,Woodmere,,"Hewlett Neck, Woodsburgh",NY,"Nassau County",America/New_York,516,NA,US,40.63,-73.72,14050 +11599,STANDARD,0,"Garden City",,,NY,"Nassau County",America/New_York,"516,631,718",NA,US,40.72,-73.64,0 +11690,"PO BOX",0,"Far Rockaway","Edgemere, Wave Crest",Queens,NY,"Queens County",America/New_York,212,NA,US,40.59,-73.81,656 +11691,STANDARD,0,"Far Rockaway",,Queens,NY,"Queens County",America/New_York,"347,516,718,929",NA,US,40.6,-73.76,47660 +11692,STANDARD,0,Arverne,"Far Rockaway",Queens,NY,"Queens County",America/New_York,"347,929,718",NA,US,40.59,-73.79,16850 +11693,STANDARD,0,"Far Rockaway","Broad Channel, Rockaway Bch, Rockaway Beach",Queens,NY,"Queens County",America/New_York,718,NA,US,40.59,-73.81,10310 +11694,STANDARD,0,"Rockaway Park","Belle Harbor, Far Rockaway, Neponsit",Queens,NY,"Queens County",America/New_York,718,NA,US,40.58,-73.84,15680 +11695,"PO BOX",0,"Far Rockaway","Fort Tilden",Queens,NY,"Queens County",America/New_York,212,NA,US,40.59,-73.81,30 +11697,STANDARD,0,"Breezy Point","Far Rockaway, Rockaway Point, Rockaway Pt",Queens,NY,"Queens County",America/New_York,212,NA,US,40.56,-73.91,4120 +11701,STANDARD,0,Amityville,"Amity Harbor","N Amityville, North Amityville",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.66,-73.41,25330 +11702,STANDARD,0,Babylon,"Captree Is, Captree Island, Gilgo Beach, Oak Beach, Oak Island, W Gilgo Beach, West Gilgo Beach",,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.69,-73.32,13920 +11703,STANDARD,0,"North Babylon",Babylon,"N Babylon",NY,"Suffolk County",America/New_York,"631,516",NA,US,40.73,-73.32,16550 +11704,STANDARD,0,"West Babylon",Babylon,"W Babylon",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.71,-73.35,37160 +11705,STANDARD,0,Bayport,,"Bay Port",NY,"Suffolk County",America/New_York,631,NA,US,40.74,-73.05,7840 +11706,STANDARD,0,"Bay Shore","Fair Harbor, Kismet, Point O Woods, Saltaire","Bayshore, N Bay Shore, North Bay Shore, W Bay Shore, West Bay Shore",NY,"Suffolk County",America/New_York,631,NA,US,40.72,-73.25,61150 +11707,"PO BOX",0,"West Babylon",Babylon,"W Babylon",NY,"Suffolk County",America/New_York,631,NA,US,40.71,-73.35,134 +11708,STANDARD,1,Amityville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.68,-73.41,0 +11709,STANDARD,0,Bayville,,,NY,"Nassau County",America/New_York,516,NA,US,40.9,-73.56,6310 +11710,STANDARD,0,Bellmore,"N Bellmore, North Bellmore",,NY,"Nassau County",America/New_York,"516,631",NA,US,40.65,-73.52,34320 +11713,STANDARD,0,Bellport,,"N Bellport, North Bellport",NY,"Suffolk County",America/New_York,631,NA,US,40.75,-72.94,9980 +11714,STANDARD,0,Bethpage,,,NY,"Nassau County",America/New_York,516,NA,US,40.74,-73.48,22770 +11715,STANDARD,0,"Blue Point",,,NY,"Suffolk County",America/New_York,631,NA,US,40.75,-73.03,4310 +11716,STANDARD,0,Bohemia,,,NY,"Suffolk County",America/New_York,631,NA,US,40.77,-73.12,9940 +11717,STANDARD,0,Brentwood,"Edgewood, W Brentwood, West Brentwood","Pine Air",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.78,-73.24,61220 +11718,STANDARD,0,Brightwaters,,,NY,"Suffolk County",America/New_York,631,NA,US,40.71,-73.26,3250 +11719,STANDARD,0,Brookhaven,,"S Haven",NY,"Suffolk County",America/New_York,631,NA,US,40.78,-72.91,2790 +11720,STANDARD,0,Centereach,"S Setauket, South Setauket",,NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73.08,27330 +11721,STANDARD,0,Centerport,,"Center Port",NY,"Suffolk County",America/New_York,631,NA,US,40.9,-73.37,6310 +11722,STANDARD,0,"Central Islip",,"S Hauppauge, South Hauppauge",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.78,-73.19,36010 +11724,STANDARD,0,"Cold Spring Harbor","Cold Spg Hbr",,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.86,-73.44,3280 +11725,STANDARD,0,Commack,,,NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.28,28380 +11726,STANDARD,0,Copiague,,Marconiville,NY,"Suffolk County",America/New_York,631,NA,US,40.67,-73.39,19920 +11727,STANDARD,0,Coram,,,NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73,26490 +11729,STANDARD,0,"Deer Park",,Deerpark,NY,"Suffolk County",America/New_York,631,NA,US,40.76,-73.32,27510 +11730,STANDARD,0,"East Islip",,"E Islip",NY,"Suffolk County",America/New_York,631,NA,US,40.72,-73.18,13900 +11731,STANDARD,0,"East Northport","E Northport, Elwood",,NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73.32,29560 +11732,STANDARD,0,"East Norwich",,"E Norwich, Muttontown, Upper Brookville",NY,"Nassau County",America/New_York,516,NA,US,40.84,-73.54,3440 +11733,STANDARD,0,"East Setauket",Setauket,"E Setauket, Old Field, Poquott, Strongs Neck",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.93,-73.1,16700 +11735,STANDARD,0,Farmingdale,"S Farmingdale, South Farmingdale","E Farmingdale, East Farmingdale",NY,"Nassau County",America/New_York,"516,631",NA,US,40.73,-73.44,31300 +11736,UNIQUE,1,Farmingdale,,"Creative Mailing Service",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.44,20 +11737,STANDARD,0,Farmingdale,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.73,-73.44,0 +11738,STANDARD,0,Farmingville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.04,16090 +11739,"PO BOX",0,"Great River",,,NY,"Suffolk County",America/New_York,631,NA,US,40.73,-73.16,1506 +11740,STANDARD,0,Greenlawn,,,NY,"Suffolk County",America/New_York,631,NA,US,40.86,-73.36,9210 +11741,STANDARD,0,Holbrook,,,NY,"Suffolk County",America/New_York,631,NA,US,40.79,-73.07,26380 +11742,STANDARD,0,Holtsville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.81,-73.04,12440 +11743,STANDARD,0,Huntington,"Halesite, Lloyd Harbor","Bay Hills, Baycrest, Beech Croft, Cold Spring Hills, Harbor Heights, Huntington Bay, Knollwood Beach, Lloyd Neck, W Hills, West Hills, Wincoma",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.87,-73.4,40610 +11746,STANDARD,0,"Huntington Station","Dix Hills, Huntingtn Sta, S Huntington, South Huntington","So Huntington",NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.4,65010 +11747,STANDARD,0,Melville,"Huntingtn Sta, Huntington Station","Dix Hills",NY,"Suffolk County",America/New_York,631,NA,US,40.78,-73.41,20630 +11749,STANDARD,0,Islandia,"Central Islip, Hauppauge, Ronkonkoma",,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.8,-73.17,3160 +11750,UNIQUE,1,"Huntington Station","Huntingtn Sta, Melville",Abmps,NY,"Suffolk County",America/New_York,631,NA,US,40.83,-73.37,0 +11751,STANDARD,0,Islip,,"Bayberry Point, Islip Manor",NY,"Suffolk County",America/New_York,631,NA,US,40.73,-73.21,13950 +11752,STANDARD,0,"Islip Terrace",,,NY,"Suffolk County",America/New_York,631,NA,US,40.76,-73.17,9650 +11753,STANDARD,0,Jericho,,Muttontown,NY,"Nassau County",America/New_York,516,NA,US,40.78,-73.54,13190 +11754,STANDARD,0,"Kings Park",,"San Remo",NY,"Suffolk County",America/New_York,631,NA,US,40.89,-73.24,17770 +11755,STANDARD,0,"Lake Grove",,"Lk Grove",NY,"Suffolk County",America/New_York,631,NA,US,40.85,-73.11,11410 +11756,STANDARD,0,Levittown,,"Island Trees, Plainedge",NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.51,42360 +11757,STANDARD,0,Lindenhurst,,"Heer Park, N Lindenhurst, North Lindenhurst",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.68,-73.37,42300 +11758,STANDARD,0,Massapequa,"N Massapequa, North Massapequa","E Massapequa, East Massapequa",NY,"Nassau County",America/New_York,"631,516",NA,US,40.66,-73.47,53360 +11760,"PO BOX",0,Melville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.82,-73.21,0 +11762,STANDARD,0,"Massapequa Park","Massapequa Pk","Bar Harbor",NY,"Nassau County",America/New_York,"516,631",NA,US,40.68,-73.45,22430 +11763,STANDARD,0,Medford,,"Gordon Heights",NY,"Suffolk County",America/New_York,631,NA,US,40.82,-72.98,26960 +11764,STANDARD,0,"Miller Place",,,NY,"Suffolk County",America/New_York,631,NA,US,40.93,-72.98,12540 +11765,STANDARD,0,"Mill Neck",,,NY,"Nassau County",America/New_York,516,NA,US,40.88,-73.55,580 +11766,STANDARD,0,"Mount Sinai",,"Mt Sinai",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.93,-73.01,12050 +11767,STANDARD,0,Nesconset,,,NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.15,14100 +11768,STANDARD,0,Northport,"Fort Salonga","Asharoken, Crab Meadow, Eatons Neck, Sunken Meadow",NY,"Suffolk County",America/New_York,631,NA,US,40.9,-73.34,20780 +11769,STANDARD,0,Oakdale,,,NY,"Suffolk County",America/New_York,631,NA,US,40.73,-73.13,8700 +11770,"PO BOX",0,"Ocean Beach",,"Corneil Estates, Fire Island, Ocean Bay Park, Seaview",NY,"Suffolk County",America/New_York,631,NA,US,40.65,-73.16,355 +11771,STANDARD,0,"Oyster Bay",,"Centre Island, Cove Neck, Laurel Hollow, Muttontown, Oyster Bay Cove, Upper Brookville",NY,"Nassau County",America/New_York,516,NA,US,40.86,-73.53,9250 +11772,STANDARD,0,Patchogue,"Blue Point, Davis Park, E Patchogue, East Patchogue","Canaan Lake, N Patchogue, North Patchogue",NY,"Suffolk County",America/New_York,631,NA,US,40.76,-73.01,39620 +11773,UNIQUE,0,Melville,,"Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.81,-73.5,0 +11774,UNIQUE,1,Farmingdale,Fulfillment,,NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.44,0 +11775,UNIQUE,0,Melville,,"Don Jagoda Assc Inc",NY,"Suffolk County",America/New_York,631,NA,US,40.78,-73.41,0 +11776,STANDARD,0,"Port Jefferson Station","Port Jeff Sta","P J S, Pjs, Prt Jeff Sta, Prt Jefferson Station, Terryville",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.92,-73.06,22630 +11777,STANDARD,0,"Port Jefferson","Port Jeff Sta, Port Jefferson Station, Prt Jefferson","Belle Terre, P J S, Pjs, Pt Jefferson Station",NY,"Suffolk County",America/New_York,"631,516",NA,US,40.94,-73.05,8520 +11778,STANDARD,0,"Rocky Point",,,NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.92,11890 +11779,STANDARD,0,Ronkonkoma,"Lake Ronkonkoma, Lk Ronkonkoma","Lake Ronkonkoma Heights",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.8,-73.12,36100 +11780,STANDARD,0,"Saint James",,"Box Hill, Deer Wells, Flowerfield, Head Of The Harbor, Nissequogue, St James",NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73.15,14780 +11782,STANDARD,0,Sayville,"Cherry Grove, Fire Is Pines, Fire Island Pines",,NY,"Suffolk County",America/New_York,"631,516",NA,US,40.74,-73.08,14940 +11783,STANDARD,0,Seaford,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.66,-73.49,21120 +11784,STANDARD,0,Selden,,"Old Westfield",NY,"Suffolk County",America/New_York,631,NA,US,40.86,-73.04,23350 +11786,STANDARD,0,Shoreham,,,NY,"Suffolk County",America/New_York,631,NA,US,40.95,-72.9,6280 +11787,STANDARD,0,Smithtown,,"Village Of The Branch",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.85,-73.21,33680 +11788,STANDARD,0,Hauppauge,Smithtown,,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.82,-73.21,16250 +11789,STANDARD,0,"Sound Beach",,"Scotts Beach",NY,"Suffolk County",America/New_York,631,NA,US,40.96,-72.97,7010 +11790,STANDARD,0,"Stony Brook",,"Head Of The Harbor, Stonybrook",NY,"Suffolk County",America/New_York,631,NA,US,40.9,-73.12,12810 +11791,STANDARD,0,Syosset,,"Laurel Hollow, Muttontown, Oyster Bay Cove",NY,"Nassau County",America/New_York,516,NA,US,40.81,-73.5,25630 +11792,STANDARD,0,"Wading River",,"Wildwood, Willwood",NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.81,8310 +11793,STANDARD,0,Wantagh,,"Briar Park, N Wantagh",NY,"Nassau County",America/New_York,"516,631",NA,US,40.66,-73.51,31970 +11794,UNIQUE,0,"Stony Brook",,"Stonybrook, Suny Stony Brook",NY,"Suffolk County",America/New_York,631,NA,US,40.91,-73.12,97 +11795,STANDARD,0,"West Islip",,"W Islip",NY,"Suffolk County",America/New_York,631,NA,US,40.7,-73.29,24590 +11796,STANDARD,0,"West Sayville",,"W Sayville",NY,"Suffolk County",America/New_York,631,NA,US,40.72,-73.1,3580 +11797,STANDARD,0,Woodbury,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.81,-73.47,9230 +11798,STANDARD,0,Wyandanch,"Wheatley Heights, Wheatley Hts",,NY,"Suffolk County",America/New_York,631,NA,US,40.74,-73.37,16500 +11801,STANDARD,0,Hicksville,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.76,-73.52,41240 +11802,"PO BOX",0,Hicksville,,,NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,539 +11803,STANDARD,0,Plainview,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.78,-73.47,29330 +11804,STANDARD,0,"Old Bethpage",,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.75,-73.45,5020 +11815,UNIQUE,0,Hicksville,,"L I Power Authority",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11819,UNIQUE,1,Hicksville,,"Chase Bank",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11853,UNIQUE,0,Jericho,,"Uhc Berdon",NY,"Nassau County",America/New_York,516,NA,US,40.78,-73.54,0 +11854,UNIQUE,1,Hicksville,,"Hicksville Firms",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11855,UNIQUE,1,Hicksville,,"Hicksville Crm Firms",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11901,STANDARD,0,Riverhead,Flanders,Northampton,NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.67,23620 +11930,"PO BOX",0,Amagansett,,"Beach Hampton, Promised Land",NY,"Suffolk County",America/New_York,631,NA,US,40.99,-72.1,2505 +11931,"PO BOX",0,Aquebogue,,,NY,"Suffolk County",America/New_York,631,NA,US,40.93,-72.61,2469 +11932,"PO BOX",0,Bridgehampton,,"Bridge Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.29,1730 +11933,STANDARD,0,Calverton,"Baiting Hollow, Baiting Holw",,NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.76,6200 +11934,STANDARD,0,"Center Moriches","Ctr Moriches",,NY,"Suffolk County",America/New_York,631,NA,US,40.79,-72.79,7980 +11935,STANDARD,0,Cutchogue,,"Nassau Point",NY,"Suffolk County",America/New_York,631,NA,US,41.01,-72.48,3180 +11937,STANDARD,0,"East Hampton",,"E Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.95,-72.19,15100 +11939,STANDARD,0,"East Marion",,"E Marion",NY,"Suffolk County",America/New_York,631,NA,US,41.12,-72.34,880 +11940,STANDARD,0,"East Moriches",,"E Moriches",NY,"Suffolk County",America/New_York,631,NA,US,40.81,-72.76,5140 +11941,STANDARD,0,Eastport,,,NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.73,2530 +11942,STANDARD,0,"East Quogue",,"E Quogue",NY,"Suffolk County",America/New_York,631,NA,US,40.85,-72.57,4710 +11944,STANDARD,0,Greenport,,,NY,"Suffolk County",America/New_York,631,NA,US,41.1,-72.36,3830 +11946,STANDARD,0,"Hampton Bays",,,NY,"Suffolk County",America/New_York,631,NA,US,40.86,-72.52,13410 +11947,"PO BOX",0,Jamesport,,,NY,"Suffolk County",America/New_York,631,NA,US,40.95,-72.57,1482 +11948,STANDARD,0,Laurel,,,NY,"Suffolk County",America/New_York,631,NA,US,40.97,-72.55,1130 +11949,STANDARD,0,Manorville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.85,-72.79,13860 +11950,STANDARD,0,Mastic,,"Manor Park, Rivers Edge",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.8,-72.84,15000 +11951,STANDARD,0,"Mastic Beach",,"Old Mastic, Village Of Mastic Beach",NY,"Suffolk County",America/New_York,631,NA,US,40.76,-72.84,12110 +11952,STANDARD,0,Mattituck,,,NY,"Suffolk County",America/New_York,631,NA,US,41,-72.53,4500 +11953,STANDARD,0,"Middle Island",,,NY,"Suffolk County",America/New_York,631,NA,US,40.88,-72.94,11820 +11954,STANDARD,0,Montauk,,"Hither Plains",NY,"Suffolk County",America/New_York,631,NA,US,41.04,-71.94,4190 +11955,STANDARD,0,Moriches,,,NY,"Suffolk County",America/New_York,631,NA,US,40.8,-72.82,2890 +11956,"PO BOX",0,"New Suffolk",,,NY,"Suffolk County",America/New_York,631,NA,US,40.99,-72.48,360 +11957,STANDARD,0,Orient,,"Orient Point",NY,"Suffolk County",America/New_York,631,NA,US,41.14,-72.3,700 +11958,STANDARD,0,Peconic,,,NY,"Suffolk County",America/New_York,631,NA,US,41.03,-72.46,740 +11959,"PO BOX",0,Quogue,,,NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.6,1395 +11960,"PO BOX",0,Remsenburg,,,NY,"Suffolk County",America/New_York,631,NA,US,40.81,-72.71,1461 +11961,STANDARD,0,Ridge,,"Lake Panamoka, Panamoka",NY,"Suffolk County",America/New_York,631,NA,US,40.91,-72.88,12210 +11962,"PO BOX",0,Sagaponack,,,NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.27,621 +11963,STANDARD,0,"Sag Harbor",,"Bay Point, N Haven, North Haven, Pine Neck",NY,"Suffolk County",America/New_York,631,NA,US,40.99,-72.29,6610 +11964,"PO BOX",0,"Shelter Island","Shelter Is",,NY,"Suffolk County",America/New_York,631,NA,US,41.06,-72.32,1729 +11965,"PO BOX",0,"Shelter Island Heights","Shelter Is Ht",,NY,"Suffolk County",America/New_York,631,NA,US,41.1,-72.29,875 +11967,STANDARD,0,Shirley,"E Yaphank, East Yaphank, Smith Point","Smiths Point",NY,"Suffolk County",America/New_York,631,NA,US,40.79,-72.87,24410 +11968,STANDARD,0,Southampton,,"S Hampton, South Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.88,-72.39,9100 +11969,"PO BOX",0,Southampton,,"S Hampton, South Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.88,-72.39,2417 +11970,"PO BOX",0,"South Jamesport","S Jamesport",,NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.58,405 +11971,STANDARD,0,Southold,,,NY,"Suffolk County",America/New_York,631,NA,US,41.05,-72.42,5170 +11972,"PO BOX",0,Speonk,,,NY,"Suffolk County",America/New_York,631,NA,US,40.85,-72.7,926 +11973,"PO BOX",0,Upton,,,NY,"Suffolk County",America/New_York,631,NA,US,40.86,-72.87,438 +11975,"PO BOX",0,Wainscott,,,NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.24,1196 +11976,STANDARD,0,"Water Mill",,"Watermill, Wtr Mill",NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.34,1830 +11977,STANDARD,0,Westhampton,,"W Hampton, West Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.68,2390 +11978,STANDARD,0,"Westhampton Beach","W Hampton Bch","Quioque, W Hampton Beach, West Hampton Beach, West Hampton Dunes, Westhampton Dunes",NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.65,3450 +11980,STANDARD,0,Yaphank,,"Carver Park",NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.92,4460 +12007,STANDARD,0,Alcove,,,NY,"Albany County",America/New_York,518,NA,US,42.46,-73.93,160 +12008,STANDARD,0,Alplaus,,,NY,"Schenectady County",America/New_York,518,NA,US,42.85,-73.91,460 +12009,STANDARD,0,Altamont,,"Thompsons Lake",NY,"Albany County",America/New_York,518,NA,US,42.7,-74.03,7240 +12010,STANDARD,0,Amsterdam,"West Charlton","Perth, West Glenville",NY,"Montgomery County",America/New_York,518,NA,US,42.94,-74.19,24440 +12015,STANDARD,0,Athens,,,NY,"Greene County",America/New_York,518,NA,US,42.26,-73.81,2900 +12016,STANDARD,0,Auriesville,Fultonville,,NY,"Montgomery County",America/New_York,518,NA,US,42.87,-74.35,0 +12017,STANDARD,0,Austerlitz,,,NY,"Columbia County",America/New_York,518,NA,US,42.32,-73.47,330 +12018,STANDARD,0,"Averill Park",,"Alps, Burden Lake, Dunham Hollow, East Poestenkill, Glass Lake",NY,"Rensselaer County",America/New_York,518,NA,US,42.63,-73.55,7310 +12019,STANDARD,0,"Ballston Lake","Burnt Hills, Charlton",Malta,NY,"Saratoga County",America/New_York,,NA,US,42.92,-73.84,15390 +12020,STANDARD,0,"Ballston Spa",Malta,"Ballston Center, East Line, Factory Village, Harmony Corners, Malta Ridge, Maltaville, Milton Center, Pioneer, Riley Cove, West Milton",NY,"Saratoga County",America/New_York,518,NA,US,43,-73.85,30460 +12022,STANDARD,0,Berlin,,"Center Berlin",NY,"Rensselaer County",America/New_York,518,NA,US,42.66,-73.33,760 +12023,STANDARD,0,Berne,,"South Berne, West Berne",NY,"Albany County",America/New_York,518,NA,US,42.62,-74.13,1860 +12024,STANDARD,0,Brainard,,,NY,"Columbia County",America/New_York,518,NA,US,42.48,-73.54,153 +12025,STANDARD,0,Broadalbin,,"Fish House, Galway Lake, Honeywell Corners, North Broadalbin, Stevers Mills, Union Mills, Vail Mills",NY,"Fulton County",America/New_York,518,NA,US,43.05,-74.19,5010 +12027,STANDARD,0,"Burnt Hills",,,NY,"Saratoga County",America/New_York,518,NA,US,42.91,-73.9,4040 +12028,STANDARD,0,Buskirk,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.96,-73.45,1050 +12029,STANDARD,0,Canaan,,,NY,"Columbia County",America/New_York,518,NA,US,42.41,-73.41,900 +12031,STANDARD,0,Carlisle,,,NY,"Schoharie County",America/New_York,518,NA,US,42.77,-74.45,220 +12032,STANDARD,0,"Caroga Lake",,"Caroga, Pine Lake, Wheelerville",NY,"Fulton County",America/New_York,518,NA,US,43.12,-74.53,850 +12033,STANDARD,0,"Castleton On Hudson","Brookview, Castleton, S Schodack, South Schodack",,NY,"Rensselaer County",America/New_York,518,NA,US,42.53,-73.7,7460 +12035,STANDARD,0,"Central Bridge","Central Brg",,NY,"Schoharie County",America/New_York,518,NA,US,42.73,-74.36,700 +12036,STANDARD,0,Charlotteville,Charlottevle,,NY,"Schoharie County",America/New_York,518,NA,US,42.54,-74.67,244 +12037,STANDARD,0,Chatham,,,NY,"Columbia County",America/New_York,518,NA,US,42.36,-73.59,3120 +12040,"PO BOX",0,"Cherry Plain",,Cherryplain,NY,"Rensselaer County",America/New_York,518,NA,US,42.64,-73.35,229 +12041,STANDARD,0,Clarksville,,,NY,"Albany County",America/New_York,518,NA,US,42.58,-73.95,480 +12042,STANDARD,0,Climax,,,NY,"Greene County",America/New_York,518,NA,US,42.42,-73.94,380 +12043,STANDARD,0,Cobleskill,Lawyersville,"Dorloo, Hyndsville, Janesville, Mineral Springs, Seward",NY,"Schoharie County",America/New_York,518,NA,US,42.67,-74.48,5730 +12045,"PO BOX",0,Coeymans,,,NY,"Albany County",America/New_York,518,NA,US,42.48,-73.8,583 +12046,STANDARD,0,"Coeymans Hollow","Coeymans Holw",,NY,"Albany County",America/New_York,518,NA,US,42.48,-73.92,610 +12047,STANDARD,0,Cohoes,,"Boght Corners, Dunsbach Ferry",NY,"Albany County",America/New_York,518,NA,US,42.77,-73.7,18620 +12050,"PO BOX",0,Columbiaville,,,NY,"Columbia County",America/New_York,518,NA,US,42.32,-73.76,406 +12051,STANDARD,0,Coxsackie,,,NY,"Greene County",America/New_York,518,NA,US,42.35,-73.8,3180 +12052,STANDARD,0,Cropseyville,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.76,-73.47,1390 +12053,STANDARD,0,Delanson,,"Braman Corners",NY,"Schenectady County",America/New_York,518,NA,US,42.74,-74.18,4150 +12054,STANDARD,0,Delmar,,"Bethlehem, Elsmere",NY,"Albany County",America/New_York,518,NA,US,42.62,-73.83,16690 +12055,STANDARD,0,Dormansville,,,NY,"Albany County",America/New_York,518,NA,US,42.43,-74.19,0 +12056,STANDARD,0,Duanesburg,,Princetown,NY,"Schenectady County",America/New_York,518,NA,US,42.76,-74.13,2180 +12057,STANDARD,0,"Eagle Bridge","White Creek",,NY,"Washington County",America/New_York,,NA,US,42.94,-73.39,1450 +12058,STANDARD,0,Earlton,,,NY,"Greene County",America/New_York,518,NA,US,42.35,-73.9,1230 +12059,STANDARD,0,"East Berne",,,NY,"Albany County",America/New_York,518,NA,US,42.61,-74.05,1400 +12060,STANDARD,0,"East Chatham",,"Red Rock",NY,"Columbia County",America/New_York,518,NA,US,42.42,-73.48,1170 +12061,STANDARD,0,"East Greenbush","E Greenbush",,NY,"Rensselaer County",America/New_York,518,NA,US,42.59,-73.7,9000 +12062,STANDARD,0,"East Nassau",,"Hoag Corners",NY,"Rensselaer County",America/New_York,518,NA,US,42.53,-73.5,1510 +12063,STANDARD,0,"East Schodack",,,NY,"Rensselaer County",America/New_York,518,NA,US,42.57,-73.64,530 +12064,STANDARD,0,"East Worcester","E Worcester",,NY,"Otsego County",America/New_York,607,NA,US,42.61,-74.67,390 +12065,STANDARD,0,"Clifton Park",Halfmoon,"Clifton Park Center, Elnora, Jonesville",NY,"Saratoga County",America/New_York,518,NA,US,42.85,-73.8,41640 +12066,STANDARD,0,Esperance,,Burtonsville,NY,"Schoharie County",America/New_York,518,NA,US,42.76,-74.25,1820 +12067,STANDARD,0,"Feura Bush",,,NY,"Albany County",America/New_York,518,NA,US,42.57,-73.88,1380 +12068,STANDARD,0,Fonda,,Sammonsville,NY,"Montgomery County",America/New_York,518,NA,US,42.96,-74.4,2540 +12069,"PO BOX",0,"Fort Hunter",,,NY,"Montgomery County",America/New_York,518,NA,US,42.95,-74.28,280 +12070,STANDARD,0,"Fort Johnson",,,NY,"Montgomery County",America/New_York,518,NA,US,42.99,-74.26,1240 +12071,STANDARD,0,Fultonham,,,NY,"Schoharie County",America/New_York,,NA,US,42.55,-74.42,240 +12072,STANDARD,0,Fultonville,,,NY,"Montgomery County",America/New_York,518,NA,US,42.94,-74.37,2310 +12073,"PO BOX",0,Gallupville,,,NY,"Schoharie County",America/New_York,518,NA,US,42.66,-74.21,156 +12074,STANDARD,0,Galway,,"Hagedorns Mills, Mosherville",NY,"Saratoga County",America/New_York,518,NA,US,43.01,-74.03,2880 +12075,STANDARD,0,Ghent,,,NY,"Columbia County",America/New_York,518,NA,US,42.3,-73.64,2820 +12076,STANDARD,0,Gilboa,,,NY,"Schoharie County",America/New_York,,NA,US,42.39,-74.39,1020 +12077,STANDARD,0,Glenmont,,"Bethlehem Center",NY,"Albany County",America/New_York,518,NA,US,42.59,-73.78,6280 +12078,STANDARD,0,Gloversville,,"Bleecker, Meco, Riceville, West Bush",NY,"Fulton County",America/New_York,518,NA,US,43.05,-74.34,17960 +12082,"PO BOX",0,Grafton,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.76,-73.43,392 +12083,STANDARD,0,Greenville,"Norton Hill, S Westerlo, South Westerlo",,NY,"Greene County",America/New_York,518,NA,US,42.41,-74.02,3400 +12084,STANDARD,0,Guilderland,,,NY,"Albany County",America/New_York,518,NA,US,42.69,-73.89,4240 +12085,STANDARD,0,"Guilderland Center","Guildrlnd Ctr",,NY,"Albany County",America/New_York,518,NA,US,42.7,-73.96,280 +12086,STANDARD,0,Hagaman,,,NY,"Montgomery County",America/New_York,,NA,US,42.97,-74.15,1590 +12087,STANDARD,0,Hannacroix,,,NY,"Greene County",America/New_York,518,NA,US,42.42,-73.88,1160 +12089,"PO BOX",0,Hoosick,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.87,-73.31,284 +12090,STANDARD,0,"Hoosick Falls",,"Boyntonville, Walloomsac",NY,"Rensselaer County",America/New_York,518,NA,US,42.9,-73.35,5040 +12092,STANDARD,0,"Howes Cave",,"Barnerville, Bramanville",NY,"Schoharie County",America/New_York,518,NA,US,42.7,-74.37,990 +12093,STANDARD,0,Jefferson,,"East Jefferson, North Harpersfield",NY,"Schoharie County",America/New_York,,NA,US,42.48,-74.61,1210 +12094,STANDARD,0,Johnsonville,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.88,-73.49,2190 +12095,STANDARD,0,Johnstown,,"Garoga, Northbush, Rockwood",NY,"Fulton County",America/New_York,518,NA,US,43,-74.37,9960 +12106,STANDARD,0,Kinderhook,,,NY,"Columbia County",America/New_York,518,NA,US,42.39,-73.7,2310 +12107,"PO BOX",0,Knox,,,NY,"Albany County",America/New_York,518,NA,US,42.67,-74.11,200 +12108,STANDARD,0,"Lake Pleasant",,"Higgins Bay",NY,"Hamilton County",America/New_York,518,NA,US,43.55,-74.43,380 +12110,STANDARD,0,Latham,Newtonville,Verdoy,NY,"Albany County",America/New_York,518,NA,US,42.74,-73.74,18660 +12115,STANDARD,0,"Malden Bridge",,"Malden Brg",NY,"Columbia County",America/New_York,518,NA,US,42.48,-73.58,153 +12116,STANDARD,0,Maryland,,"Chaseville, Cooperstown Junction",NY,"Otsego County",America/New_York,,NA,US,42.53,-74.88,1460 +12117,STANDARD,0,Mayfield,,,NY,"Fulton County",America/New_York,518,NA,US,43.1,-74.26,2740 +12118,STANDARD,0,Mechanicville,,Malta,NY,"Saratoga County",America/New_York,518,NA,US,42.9,-73.69,15180 +12120,STANDARD,0,Medusa,,,NY,"Albany County",America/New_York,518,NA,US,42.45,-74.14,520 +12121,STANDARD,0,Melrose,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.85,-73.6,1720 +12122,STANDARD,0,Middleburgh,,"Breakabeen, Huntersland, Livingstonville, Middleburg",NY,"Schoharie County",America/New_York,518,NA,US,42.59,-74.32,3360 +12123,STANDARD,0,Nassau,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.51,-73.61,4790 +12124,"PO BOX",0,"New Baltimore",,,NY,"Greene County",America/New_York,518,NA,US,42.45,-73.79,532 +12125,STANDARD,0,"New Lebanon","Lebanon Spg, Lebanon Springs","New Lebanon Center",NY,"Columbia County",America/New_York,518,NA,US,42.46,-73.39,1290 +12128,"PO BOX",0,Newtonville,Latham,,NY,"Albany County",America/New_York,518,NA,US,42.7,-73.76,246 +12130,STANDARD,0,Niverville,,,NY,"Columbia County",America/New_York,518,NA,US,42.44,-73.66,860 +12131,STANDARD,0,"North Blenheim","N Blenheim",,NY,"Schoharie County",America/New_York,518,NA,US,42.46,-74.46,170 +12132,"PO BOX",0,"North Chatham",,,NY,"Columbia County",America/New_York,518,NA,US,42.47,-73.63,411 +12133,"PO BOX",0,"North Hoosick",,"Hoosick Junction",NY,"Rensselaer County",America/New_York,518,NA,US,42.88,-73.34,134 +12134,STANDARD,0,Northville,,Edinburg,NY,"Fulton County",America/New_York,518,NA,US,43.22,-74.17,3240 +12136,STANDARD,0,"Old Chatham",,,NY,"Columbia County",America/New_York,518,NA,US,42.42,-73.56,720 +12137,STANDARD,0,Pattersonville,Pattersonvle,Mariaville,NY,"Schenectady County",America/New_York,518,NA,US,42.84,-74.13,1570 +12138,STANDARD,0,Petersburg,"Petersburgh, Taconic Lake","North Petersburg",NY,"Rensselaer County",America/New_York,518,NA,US,42.72,-73.36,2540 +12139,STANDARD,0,Piseco,,Arietta,NY,"Hamilton County",America/New_York,518,NA,US,43.42,-74.53,190 +12140,STANDARD,0,Poestenkill,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.69,-73.56,1630 +12141,"PO BOX",0,"Quaker Street",,,NY,"Schenectady County",America/New_York,518,NA,US,42.77,-74.16,64 +12143,STANDARD,0,Ravena,,,NY,"Albany County",America/New_York,518,NA,US,42.47,-73.81,4470 +12144,STANDARD,0,Rensselaer,,Defreestville,NY,"Rensselaer County",America/New_York,518,NA,US,42.64,-73.73,18430 +12147,STANDARD,0,Rensselaerville,Rensselaervle,,NY,"Albany County",America/New_York,518,NA,US,42.51,-74.15,490 +12148,STANDARD,0,Rexford,,"Vischer Ferry",NY,"Saratoga County",America/New_York,518,NA,US,42.84,-73.85,4790 +12149,STANDARD,0,Richmondville,,"West Richmondville",NY,"Schoharie County",America/New_York,518,NA,US,42.63,-74.56,1890 +12150,STANDARD,0,"Rotterdam Junction","Rotterdam Jct",,NY,"Schenectady County",America/New_York,518,NA,US,42.88,-74.05,780 +12151,STANDARD,0,"Round Lake",,"Malta, Ushers",NY,"Saratoga County",America/New_York,518,NA,US,42.93,-73.79,840 +12153,STANDARD,0,"Sand Lake",,Taborton,NY,"Rensselaer County",America/New_York,518,NA,US,42.63,-73.49,850 +12154,STANDARD,0,Schaghticoke,,Easton,NY,"Rensselaer County",America/New_York,,NA,US,42.89,-73.58,2600 +12155,STANDARD,0,Schenevus,,"Elk Creek, Fergusonville, Simpsonville, Westville",NY,"Otsego County",America/New_York,607,NA,US,42.54,-74.82,1410 +12156,STANDARD,0,"Schodack Landing","Schodack Lndg",,NY,"Rensselaer County",America/New_York,518,NA,US,42.47,-73.74,810 +12157,STANDARD,0,Schoharie,,,NY,"Schoharie County",America/New_York,518,NA,US,42.66,-74.31,3490 +12158,STANDARD,0,Selkirk,,"Beckers Corners",NY,"Albany County",America/New_York,518,NA,US,42.53,-73.8,5990 +12159,STANDARD,0,Slingerlands,,,NY,"Albany County",America/New_York,518,NA,US,42.64,-73.88,8240 +12160,STANDARD,0,Sloansville,,,NY,"Schoharie County",America/New_York,518,NA,US,42.76,-74.37,790 +12161,"PO BOX",0,"South Bethlehem","S Bethlehem",,NY,"Albany County",America/New_York,518,NA,US,42.53,-73.85,303 +12164,STANDARD,0,Speculator,,,NY,"Hamilton County",America/New_York,518,NA,US,43.58,-74.38,460 +12165,STANDARD,0,Spencertown,,,NY,"Columbia County",America/New_York,518,NA,US,42.31,-73.51,370 +12166,STANDARD,0,Sprakers,,"Charleston Four Corners, Lykers, Root, Rural Grove",NY,"Montgomery County",America/New_York,,NA,US,42.83,-74.45,1270 +12167,STANDARD,0,Stamford,,,NY,"Delaware County",America/New_York,607,NA,US,42.4,-74.61,1890 +12168,STANDARD,0,Stephentown,,"Stephentown Center",NY,"Rensselaer County",America/New_York,518,NA,US,42.56,-73.38,1510 +12169,STANDARD,0,Stephentown,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.59,-73.45,350 +12170,STANDARD,0,Stillwater,,"Bemis Heights",NY,"Saratoga County",America/New_York,518,NA,US,42.95,-73.64,4630 +12172,"PO BOX",0,Stottville,,,NY,"Columbia County",America/New_York,518,NA,US,42.29,-73.74,676 +12173,STANDARD,0,Stuyvesant,,"Newton Hook",NY,"Columbia County",America/New_York,518,NA,US,42.38,-73.76,1440 +12174,"PO BOX",0,"Stuyvesant Falls","Stuyvesant Fl",,NY,"Columbia County",America/New_York,518,NA,US,42.35,-73.73,418 +12175,STANDARD,0,Summit,,,NY,"Schoharie County",America/New_York,518,NA,US,42.58,-74.58,670 +12176,STANDARD,0,Surprise,,,NY,"Greene County",America/New_York,518,NA,US,42.38,-73.98,250 +12177,"PO BOX",0,"Tribes Hill",,,NY,"Montgomery County",America/New_York,518,NA,US,42.95,-74.29,820 +12180,STANDARD,0,Troy,,"Albia, Brunswick, Center Brunswick, Eagle Mills, Raymertown, Snyders Corners, Snyders Lake, Speigletown, Sycaway",NY,"Rensselaer County",America/New_York,518,NA,US,42.73,-73.67,39840 +12181,"PO BOX",0,Troy,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.73,-73.67,655 +12182,STANDARD,0,Troy,,"Lansingburg, Pleasantdale, Speigletown",NY,"Rensselaer County",America/New_York,518,NA,US,42.8,-73.63,12150 +12183,STANDARD,0,Troy,"Green Island",,NY,"Albany County",America/New_York,518,NA,US,42.75,-73.69,2150 +12184,STANDARD,0,Valatie,,"Chatham Center",NY,"Columbia County",America/New_York,518,NA,US,42.41,-73.67,6180 +12185,STANDARD,0,"Valley Falls",,"West Valley Falls",NY,"Rensselaer County",America/New_York,518,NA,US,42.9,-73.56,1810 +12186,STANDARD,0,Voorheesville,,Reidsville,NY,"Albany County",America/New_York,518,NA,US,42.64,-73.93,6360 +12187,STANDARD,0,Warnerville,,Patria,NY,"Schoharie County",America/New_York,,NA,US,42.61,-74.47,640 +12188,STANDARD,0,Waterford,,,NY,"Saratoga County",America/New_York,518,NA,US,42.82,-73.7,10310 +12189,STANDARD,0,Watervliet,,"Mannville, Maplewood",NY,"Albany County",America/New_York,518,NA,US,42.72,-73.7,15800 +12190,STANDARD,0,Wells,,Gilmantown,NY,"Hamilton County",America/New_York,518,NA,US,43.39,-74.29,600 +12192,STANDARD,0,"West Coxsackie","W Coxsackie",,NY,"Greene County",America/New_York,518,NA,US,42.4,-73.81,1270 +12193,STANDARD,0,Westerlo,,,NY,"Albany County",America/New_York,518,NA,US,42.51,-74.04,1870 +12194,STANDARD,0,"West Fulton",,"W Fulton",NY,"Schoharie County",America/New_York,,NA,US,42.53,-74.45,200 +12195,"PO BOX",0,"West Lebanon",,"W Lebanon",NY,"Columbia County",America/New_York,518,NA,US,42.48,-73.48,255 +12196,STANDARD,0,"West Sand Lake","W Sand Lake",,NY,"Rensselaer County",America/New_York,518,NA,US,42.63,-73.6,2990 +12197,STANDARD,0,Worcester,,"Decatur, South Worcester",NY,"Otsego County",America/New_York,607,NA,US,42.59,-74.75,1810 +12198,STANDARD,0,Wynantskill,,"North Greenbush",NY,"Rensselaer County",America/New_York,518,NA,US,42.68,-73.63,7370 +12201,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,778 +12202,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.63,-73.76,7430 +12203,STANDARD,0,Albany,"Stuyvesant Plaza, Stuyvsnt Plz","Mckownville, Pine, Westmere",NY,"Albany County",America/New_York,518,NA,US,42.68,-73.85,20990 +12204,STANDARD,0,Albany,Menands,,NY,"Albany County",America/New_York,518,NA,US,42.69,-73.73,6640 +12205,STANDARD,0,Albany,"Colonie, Roessleville",,NY,"Albany County",America/New_York,518,NA,US,42.72,-73.83,24990 +12206,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.67,-73.78,12490 +12207,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.75,1290 +12208,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,15910 +12209,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.64,-73.79,8910 +12210,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.76,7130 +12211,STANDARD,0,Albany,"Loudonville, Siena",,NY,"Albany County",America/New_York,518,NA,US,42.7,-73.76,10950 +12212,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,538 +12214,UNIQUE,0,Albany,,"Albany Brm",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12220,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,225 +12222,UNIQUE,0,Albany,,"S U N Y",NY,"Albany County",America/New_York,518,NA,US,42.69,-73.82,163 +12223,STANDARD,0,Albany,,"Empire State Plaza",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12224,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,48 +12225,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12226,STANDARD,0,Albany,,"Ny State Campus",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12227,UNIQUE,0,Albany,,"Nys Dept Of Tax & Finance",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12228,UNIQUE,0,Albany,,"Ny Dept Of Motor Vehicles",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12229,UNIQUE,0,Albany,,"Mental Hygiene Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12230,UNIQUE,0,Albany,,"Ny Educ Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12231,UNIQUE,0,Albany,,"Ny Secretary Of State",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12232,UNIQUE,0,Albany,,"Ny Dept Trans",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12233,UNIQUE,0,Albany,,"Ny Conservation Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12234,UNIQUE,0,Albany,,"State Office Bldg",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12235,UNIQUE,0,Albany,,"Ny Agr And Mkts",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12236,UNIQUE,0,Albany,,"Audit And Control Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,51 +12237,UNIQUE,0,Albany,,"Ny Health Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12238,UNIQUE,0,Albany,,"Ny Park And Rec Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12239,UNIQUE,0,Albany,,"Ny Civil Serv Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12240,UNIQUE,0,Albany,,"Ny Labor Div Empl",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12241,UNIQUE,0,Albany,,"Ny Workman Comp",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12242,UNIQUE,0,Albany,,"Ny Standards And Purc",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12243,UNIQUE,0,Albany,,"Ny Soc Serv Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12244,UNIQUE,0,Albany,,"Ny Empl Retirement",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12245,UNIQUE,0,Albany,,"Ny Dept Commerce",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12246,UNIQUE,0,Albany,,"S U N Y 99 WASH",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12247,UNIQUE,0,Albany,,"New York State Gov",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12248,UNIQUE,0,Albany,,"Ny Assembly",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12249,UNIQUE,0,Albany,,"Ny Labor Unemp Ins",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12250,UNIQUE,0,Albany,,"Ny Tele Co",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12252,UNIQUE,1,Albany,,"N Y State Lottery",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12255,UNIQUE,0,Albany,,"Ny Hghr Educ Serv Corp",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12256,UNIQUE,1,Albany,,"N Y Lottery",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12257,UNIQUE,0,Albany,,"Ny State Dept Financial Svc",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12260,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12261,UNIQUE,0,Albany,,"Nys Tax Processing Ctr",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12288,UNIQUE,0,Albany,,"Us Postal Service",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12301,"PO BOX",0,Schenectady,,,NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,901 +12302,STANDARD,0,Schenectady,"Glenville, Scotia","East Glenville, Schdy, Stoodley Corners",NY,"Schenectady County",America/New_York,518,NA,US,42.88,-73.98,25730 +12303,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.75,-73.93,27870 +12304,STANDARD,0,Schenectady,,"Brandywine, Schdy",NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,18110 +12305,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.81,-73.95,2930 +12306,STANDARD,0,Schenectady,Rotterdam,"Bellevue, Lower Rotterdam, Schdy",NY,"Schenectady County",America/New_York,518,NA,US,42.81,-74.04,24280 +12307,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.93,5790 +12308,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.82,-73.92,11120 +12309,STANDARD,0,Schenectady,Niskayuna,"Schdy, Upper Union",NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.86,29480 +12325,"PO BOX",0,Schenectady,Glenville,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,79 +12345,UNIQUE,0,Schenectady,,"General Electric, Schdy",NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,48 +12401,STANDARD,0,Kingston,"Eddyville, Saint Remy","St Remy",NY,"Ulster County",America/New_York,"845,914",NA,US,41.93,-73.99,28110 +12402,"PO BOX",0,Kingston,,,NY,"Ulster County",America/New_York,845,NA,US,41.93,-73.99,1840 +12404,STANDARD,0,Accord,,"Leibhardt, Lyonsville, Mettacahonts, Whitfield",NY,"Ulster County",America/New_York,845,NA,US,41.8,-74.23,2950 +12405,STANDARD,0,Acra,,"South Durham",NY,"Greene County",America/New_York,518,NA,US,42.33,-74.09,560 +12406,STANDARD,0,Arkville,,,NY,"Delaware County",America/New_York,,NA,US,42.14,-74.62,510 +12407,STANDARD,0,Ashland,,,NY,"Greene County",America/New_York,518,NA,US,42.32,-74.36,240 +12409,STANDARD,0,Bearsville,Shady,,NY,"Ulster County",America/New_York,845,NA,US,42.04,-74.18,790 +12410,STANDARD,0,"Big Indian",Oliverea,,NY,"Ulster County",America/New_York,845,NA,US,42.07,-74.44,260 +12411,STANDARD,0,Bloomington,,,NY,"Ulster County",America/New_York,845,NA,US,41.88,-74.04,460 +12412,STANDARD,0,Boiceville,,,NY,"Ulster County",America/New_York,845,NA,US,41.99,-74.26,540 +12413,STANDARD,0,Cairo,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-74,2530 +12414,STANDARD,0,Catskill,Cementon,,NY,"Greene County",America/New_York,518,NA,US,42.21,-73.86,8120 +12416,STANDARD,0,Chichester,,,NY,"Ulster County",America/New_York,845,NA,US,42.1,-74.28,180 +12417,"PO BOX",0,Connelly,,,NY,"Ulster County",America/New_York,845,NA,US,41.91,-73.99,516 +12418,STANDARD,0,Cornwallville,,,NY,"Greene County",America/New_York,518,NA,US,42.36,-74.17,450 +12419,STANDARD,0,Cottekill,,,NY,"Ulster County",America/New_York,845,NA,US,41.86,-74.1,610 +12420,"PO BOX",0,Cragsmoor,,,NY,"Ulster County",America/New_York,845,NA,US,41.67,-74.37,312 +12421,STANDARD,0,Denver,,,NY,"Delaware County",America/New_York,,NA,US,42.25,-74.55,270 +12422,STANDARD,0,Durham,,"West Durham",NY,"Greene County",America/New_York,518,NA,US,42.4,-74.19,240 +12423,STANDARD,0,"East Durham",,,NY,"Greene County",America/New_York,518,NA,US,42.38,-74.11,850 +12424,STANDARD,0,"East Jewett",Tannersville,,NY,"Greene County",America/New_York,518,NA,US,42.25,-74.12,170 +12427,STANDARD,0,"Elka Park",,,NY,"Greene County",America/New_York,518,NA,US,42.14,-74.1,430 +12428,STANDARD,0,Ellenville,,,NY,"Ulster County",America/New_York,845,NA,US,41.7,-74.36,5070 +12429,"PO BOX",0,Esopus,,,NY,"Ulster County",America/New_York,845,NA,US,41.83,-73.99,375 +12430,STANDARD,0,Fleischmanns,"Halcott Center, Halcott Ctr",,NY,"Delaware County",America/New_York,845,NA,US,42.2,-74.5,760 +12431,STANDARD,0,Freehold,,,NY,"Greene County",America/New_York,518,NA,US,42.38,-74.06,1300 +12432,"PO BOX",0,Glasco,,,NY,"Ulster County",America/New_York,845,NA,US,42.04,-73.95,682 +12433,STANDARD,0,Glenford,,,NY,"Ulster County",America/New_York,845,NA,US,42,-74.15,340 +12434,STANDARD,0,"Grand Gorge",,,NY,"Delaware County",America/New_York,"518,607",NA,US,42.35,-74.5,570 +12435,STANDARD,0,"Greenfield Park","Greenfld Park",,NY,"Ulster County",America/New_York,845,NA,US,41.72,-74.52,290 +12436,"PO BOX",0,"Haines Falls",,,NY,"Greene County",America/New_York,518,NA,US,42.2,-74.09,373 +12438,"PO BOX",0,Halcottsville,,,NY,"Delaware County",America/New_York,845,NA,US,42.2,-74.6,213 +12439,STANDARD,0,Hensonville,"East Windham",,NY,"Greene County",America/New_York,518,NA,US,42.28,-74.21,350 +12440,STANDARD,0,"High Falls",,,NY,"Ulster County",America/New_York,845,NA,US,41.8,-74.13,1590 +12441,"PO BOX",0,Highmount,,,NY,"Ulster County",America/New_York,845,NA,US,42.13,-74.51,117 +12442,STANDARD,0,Hunter,,,NY,"Greene County",America/New_York,518,NA,US,42.21,-74.21,730 +12443,STANDARD,0,Hurley,,,NY,"Ulster County",America/New_York,845,NA,US,41.91,-74.05,3640 +12444,STANDARD,0,Jewett,,,NY,"Greene County",America/New_York,518,NA,US,42.27,-74.28,240 +12446,STANDARD,0,Kerhonkson,,Cherrytown,NY,"Ulster County",America/New_York,845,NA,US,41.77,-74.29,4170 +12448,STANDARD,0,"Lake Hill",,,NY,"Ulster County",America/New_York,845,NA,US,42.07,-74.2,190 +12449,STANDARD,0,"Lake Katrine",,,NY,"Ulster County",America/New_York,845,NA,US,41.98,-73.99,2790 +12450,STANDARD,0,Lanesville,,,NY,"Greene County",America/New_York,518,NA,US,42.13,-74.24,179 +12451,STANDARD,0,Leeds,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-73.95,1440 +12452,"PO BOX",0,Lexington,,,NY,"Greene County",America/New_York,518,NA,US,42.25,-74.36,203 +12453,"PO BOX",0,"Malden On Hudson","Malden Hudson","Malden, Mldn On Hdsn",NY,"Ulster County",America/New_York,845,NA,US,42.09,-73.94,384 +12454,STANDARD,0,Maplecrest,,,NY,"Greene County",America/New_York,518,NA,US,42.29,-74.15,200 +12455,STANDARD,0,Margaretville,,,NY,"Delaware County",America/New_York,845,NA,US,42.14,-74.65,1280 +12456,STANDARD,0,"Mount Marion",,"Mount Merion Park",NY,"Ulster County",America/New_York,845,NA,US,42.03,-74,700 +12457,STANDARD,0,"Mount Tremper",,,NY,"Ulster County",America/New_York,845,NA,US,42.04,-74.23,510 +12458,STANDARD,0,Napanoch,,,NY,"Ulster County",America/New_York,845,NA,US,41.75,-74.37,1930 +12459,"PO BOX",0,"New Kingston",,,NY,"Delaware County",America/New_York,845,NA,US,42.21,-74.68,204 +12460,STANDARD,0,"Oak Hill",,,NY,"Greene County",America/New_York,518,NA,US,42.42,-74.15,240 +12461,STANDARD,0,Olivebridge,Krumville,"Olive, Samsonville",NY,"Ulster County",America/New_York,845,NA,US,41.89,-74.24,1370 +12463,STANDARD,0,Palenville,,,NY,"Greene County",America/New_York,518,NA,US,42.17,-74.01,1300 +12464,STANDARD,0,Phoenicia,,,NY,"Ulster County",America/New_York,845,NA,US,42.08,-74.31,690 +12465,STANDARD,0,"Pine Hill",,,NY,"Ulster County",America/New_York,845,NA,US,42.16,-74.46,190 +12466,STANDARD,0,"Port Ewen",,,NY,"Ulster County",America/New_York,845,NA,US,41.9,-73.98,2510 +12468,STANDARD,0,Prattsville,,"Red Falls",NY,"Greene County",America/New_York,518,NA,US,42.31,-74.43,880 +12469,STANDARD,0,"Preston Hollow","Preston Holw","Preston Hlow",NY,"Albany County",America/New_York,,NA,US,42.44,-74.2,580 +12470,STANDARD,0,Purling,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-74.1,430 +12471,"PO BOX",0,Rifton,,,NY,"Ulster County",America/New_York,845,NA,US,41.84,-74.04,354 +12472,STANDARD,0,Rosendale,,,NY,"Ulster County",America/New_York,845,NA,US,41.85,-74.08,1330 +12473,STANDARD,0,"Round Top",,,NY,"Greene County",America/New_York,518,NA,US,42.27,-74.06,810 +12474,STANDARD,0,Roxbury,,"Hubbell Cors",NY,"Delaware County",America/New_York,607,NA,US,42.28,-74.56,920 +12475,"PO BOX",0,Ruby,,,NY,"Ulster County",America/New_York,845,NA,US,42.02,-74.02,378 +12477,STANDARD,0,Saugerties,,"West Saugerties",NY,"Ulster County",America/New_York,845,NA,US,42.07,-73.94,15460 +12480,STANDARD,0,Shandaken,,,NY,"Ulster County",America/New_York,845,NA,US,42.12,-74.39,420 +12481,STANDARD,0,Shokan,,,NY,"Ulster County",America/New_York,845,NA,US,41.97,-74.2,1150 +12482,STANDARD,0,"South Cairo",,,NY,"Greene County",America/New_York,518,NA,US,42.27,-73.96,540 +12483,"PO BOX",0,"Spring Glen",,,NY,"Ulster County",America/New_York,845,NA,US,41.66,-74.42,405 +12484,STANDARD,0,"Stone Ridge",,"The Vly",NY,"Ulster County",America/New_York,845,NA,US,41.86,-74.17,2550 +12485,STANDARD,0,Tannersville,,,NY,"Greene County",America/New_York,518,NA,US,42.19,-74.13,880 +12486,STANDARD,0,Tillson,,,NY,"Ulster County",America/New_York,845,NA,US,41.83,-74.06,1330 +12487,STANDARD,0,"Ulster Park",,,NY,"Ulster County",America/New_York,845,NA,US,41.86,-73.99,2670 +12489,"PO BOX",0,Wawarsing,,,NY,"Ulster County",America/New_York,845,NA,US,41.75,-74.36,581 +12490,"PO BOX",0,"West Camp",,,NY,"Ulster County",America/New_York,845,NA,US,42.12,-73.93,279 +12491,STANDARD,0,"West Hurley",,"W Hurley",NY,"Ulster County",America/New_York,845,NA,US,41.97,-74.14,1690 +12492,STANDARD,0,"West Kill",,,NY,"Greene County",America/New_York,518,NA,US,42.18,-74.34,150 +12493,"PO BOX",0,"West Park",,,NY,"Ulster County",America/New_York,845,NA,US,41.78,-73.96,391 +12494,STANDARD,0,"West Shokan",,"W Shokan",NY,"Ulster County",America/New_York,845,NA,US,41.96,-74.28,530 +12495,STANDARD,0,Willow,,,NY,"Ulster County",America/New_York,845,NA,US,42.08,-74.24,230 +12496,STANDARD,0,Windham,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-74.25,1210 +12498,STANDARD,0,Woodstock,,,NY,"Ulster County",America/New_York,845,NA,US,42.03,-74.11,3720 +12501,STANDARD,0,Amenia,,,NY,"Dutchess County",America/New_York,845,NA,US,41.84,-73.55,1680 +12502,STANDARD,0,Ancram,,,NY,"Columbia County",America/New_York,518,NA,US,42.05,-73.63,840 +12503,STANDARD,0,Ancramdale,,,NY,"Columbia County",America/New_York,518,NA,US,42.03,-73.57,510 +12504,"PO BOX",0,"Annandale On Hudson","Annandale, Red Hook",,NY,"Dutchess County",America/New_York,,NA,US,42.03,-73.91,150 +12506,"PO BOX",0,Bangall,,,NY,"Dutchess County",America/New_York,,NA,US,41.87,-73.69,91 +12507,STANDARD,0,Barrytown,"Red Hook",,NY,"Dutchess County",America/New_York,845,NA,US,42.01,-73.92,160 +12508,STANDARD,0,Beacon,,,NY,"Dutchess County",America/New_York,845,NA,US,41.5,-73.96,15140 +12510,"PO BOX",0,Billings,,,NY,"Dutchess County",America/New_York,845,NA,US,41.67,-73.8,104 +12511,"PO BOX",0,"Castle Point",,,NY,"Dutchess County",America/New_York,845,NA,US,41.53,-73.89,150 +12512,"PO BOX",0,Chelsea,,,NY,"Dutchess County",America/New_York,845,NA,US,41.55,-73.97,206 +12513,STANDARD,0,Claverack,,,NY,"Columbia County",America/New_York,518,NA,US,42.22,-73.72,940 +12514,STANDARD,0,"Clinton Corners","Clinton Cors","Clinton Crn",NY,"Dutchess County",America/New_York,845,NA,US,41.87,-73.76,2490 +12515,STANDARD,0,Clintondale,,,NY,"Ulster County",America/New_York,845,NA,US,41.68,-74.06,1460 +12516,STANDARD,0,Copake,,,NY,"Columbia County",America/New_York,518,NA,US,42.1,-73.55,1310 +12517,STANDARD,0,"Copake Falls",,,NY,"Columbia County",America/New_York,518,NA,US,42.14,-73.5,340 +12518,STANDARD,0,Cornwall,,,NY,"Orange County",America/New_York,845,NA,US,41.41,-74.04,5650 +12520,STANDARD,0,"Cornwall On Hudson","Cornwall Hdsn","Cornwall Hud, Cornwall Hudson, Cornwall On The Hudson",NY,"Orange County",America/New_York,845,NA,US,41.43,-74.01,3190 +12521,STANDARD,0,Craryville,Taghkanic,,NY,"Columbia County",America/New_York,518,NA,US,42.16,-73.65,1280 +12522,STANDARD,0,"Dover Plains",,,NY,"Dutchess County",America/New_York,845,NA,US,41.74,-73.58,4040 +12523,STANDARD,0,Elizaville,Taghkanic,,NY,"Columbia County",America/New_York,845,NA,US,42.09,-73.76,1600 +12524,STANDARD,0,Fishkill,,,NY,"Dutchess County",America/New_York,845,NA,US,41.53,-73.89,14130 +12525,STANDARD,0,Gardiner,,,NY,"Ulster County",America/New_York,845,NA,US,41.68,-74.18,3080 +12526,STANDARD,0,Germantown,,"Cheviot, Clermont, Linlithgo",NY,"Columbia County",America/New_York,518,NA,US,42.11,-73.85,3170 +12527,"PO BOX",0,Glenham,,,NY,"Dutchess County",America/New_York,845,NA,US,41.52,-73.94,744 +12528,STANDARD,0,Highland,,,NY,"Ulster County",America/New_York,845,NA,US,41.71,-73.96,12460 +12529,STANDARD,0,Hillsdale,,,NY,"Columbia County",America/New_York,518,NA,US,42.2,-73.54,2020 +12530,"PO BOX",0,Hollowville,,,NY,"Columbia County",America/New_York,518,NA,US,42.21,-73.69,144 +12531,STANDARD,0,Holmes,,"Homes, Whaley Lake",NY,"Dutchess County",America/New_York,845,NA,US,41.53,-73.66,3040 +12533,STANDARD,0,"Hopewell Junction","East Fishkill, Hopewell, Hopewell Jct, Wiccopee",,NY,"Dutchess County",America/New_York,845,NA,US,41.58,-73.8,25590 +12534,STANDARD,0,Hudson,,,NY,"Columbia County",America/New_York,518,NA,US,42.25,-73.78,12950 +12537,"PO BOX",0,Hughsonville,,,NY,"Dutchess County",America/New_York,845,NA,US,41.59,-73.89,304 +12538,STANDARD,0,"Hyde Park",,,NY,"Dutchess County",America/New_York,845,NA,US,41.78,-73.93,11770 +12540,STANDARD,0,Lagrangeville,,"La Grange",NY,"Dutchess County",America/New_York,845,NA,US,41.67,-73.73,7340 +12541,"PO BOX",0,Livingston,,,NY,"Columbia County",America/New_York,518,NA,US,42.13,-73.76,267 +12542,STANDARD,0,Marlboro,,Marlborough,NY,"Ulster County",America/New_York,845,NA,US,41.6,-73.97,5490 +12543,STANDARD,0,Maybrook,,,NY,"Orange County",America/New_York,845,NA,US,41.48,-74.21,2950 +12544,"PO BOX",0,Mellenville,,,NY,"Columbia County",America/New_York,518,NA,US,42.26,-73.68,163 +12545,STANDARD,0,Millbrook,,,NY,"Dutchess County",America/New_York,845,NA,US,41.78,-73.69,3770 +12546,STANDARD,0,Millerton,,,NY,"Dutchess County",America/New_York,518,NA,US,41.95,-73.51,2370 +12547,STANDARD,0,Milton,,,NY,"Ulster County",America/New_York,845,NA,US,41.65,-73.96,2690 +12548,STANDARD,0,Modena,,,NY,"Ulster County",America/New_York,845,NA,US,41.66,-74.1,1410 +12549,STANDARD,0,Montgomery,,,NY,"Orange County",America/New_York,845,NA,US,41.52,-74.23,9920 +12550,STANDARD,0,Newburgh,,"Balmville, Town Branch",NY,"Orange County",America/New_York,"845,914",NA,US,41.5,-74.02,48130 +12551,"PO BOX",0,Newburgh,,,NY,"Orange County",America/New_York,845,NA,US,41.5,-74.02,1048 +12552,"PO BOX",0,Newburgh,,,NY,"Orange County",America/New_York,845,NA,US,41.5,-74.02,188 +12553,STANDARD,0,"New Windsor",Newburgh,,NY,"Orange County",America/New_York,"914,845",NA,US,41.47,-74.02,24340 +12555,"PO BOX",0,Newburgh,"Mid Hudson",,NY,"Orange County",America/New_York,845,NA,US,41.53,-74.04,0 +12561,STANDARD,0,"New Paltz",,,NY,"Ulster County",America/New_York,845,NA,US,41.74,-74.08,12350 +12563,STANDARD,0,Patterson,,,NY,"Putnam County",America/New_York,845,NA,US,41.5,-73.58,6680 +12564,STANDARD,0,Pawling,,,NY,"Dutchess County",America/New_York,845,NA,US,41.56,-73.59,6570 +12565,STANDARD,0,Philmont,,,NY,"Columbia County",America/New_York,518,NA,US,42.24,-73.64,1340 +12566,STANDARD,0,"Pine Bush",,,NY,"Ulster County",America/New_York,845,NA,US,41.6,-74.29,9780 +12567,STANDARD,0,"Pine Plains",,"Gallatin, Mount Ross, Shekomeko",NY,"Dutchess County",America/New_York,518,NA,US,41.97,-73.65,2210 +12568,"PO BOX",0,Plattekill,,,NY,"Ulster County",America/New_York,845,NA,US,41.62,-74.08,1176 +12569,STANDARD,0,"Pleasant Valley","Pleasant Vly",,NY,"Dutchess County",America/New_York,845,NA,US,41.74,-73.82,9260 +12570,STANDARD,0,Poughquag,,,NY,"Dutchess County",America/New_York,845,NA,US,41.63,-73.66,6820 +12571,STANDARD,0,"Red Hook",Milan,,NY,"Dutchess County",America/New_York,845,NA,US,41.99,-73.87,8530 +12572,STANDARD,0,Rhinebeck,,,NY,"Dutchess County",America/New_York,845,NA,US,41.92,-73.9,7760 +12574,"PO BOX",0,Rhinecliff,,,NY,"Dutchess County",America/New_York,,NA,US,41.92,-73.95,313 +12575,STANDARD,0,"Rock Tavern",,,NY,"Orange County",America/New_York,845,NA,US,41.47,-74.16,2350 +12577,STANDARD,0,"Salisbury Mills","Salisbury Mls",,NY,"Orange County",America/New_York,845,NA,US,41.44,-74.12,2100 +12578,STANDARD,0,"Salt Point",,,NY,"Dutchess County",America/New_York,845,NA,US,41.8,-73.8,2070 +12580,STANDARD,0,Staatsburg,,Staatsburgh,NY,"Dutchess County",America/New_York,845,NA,US,41.84,-73.92,3360 +12581,STANDARD,0,Stanfordville,,,NY,"Dutchess County",America/New_York,845,NA,US,41.86,-73.71,1820 +12582,STANDARD,0,Stormville,,,NY,"Dutchess County",America/New_York,,NA,US,41.54,-73.73,4430 +12583,STANDARD,0,Tivoli,,Nevis,NY,"Dutchess County",America/New_York,845,NA,US,42.05,-73.91,1870 +12584,"PO BOX",0,"Vails Gate",,,NY,"Orange County",America/New_York,845,NA,US,41.45,-74.05,554 +12585,STANDARD,0,Verbank,,,NY,"Dutchess County",America/New_York,845,NA,US,41.73,-73.69,810 +12586,STANDARD,0,Walden,,,NY,"Orange County",America/New_York,845,NA,US,41.55,-74.18,11880 +12588,"PO BOX",0,"Walker Valley",,,NY,"Ulster County",America/New_York,845,NA,US,41.62,-74.37,506 +12589,STANDARD,0,Wallkill,,,NY,"Ulster County",America/New_York,845,NA,US,41.6,-74.16,12770 +12590,STANDARD,0,"Wappingers Falls","New Hamburg, Wappingers Fl, West Fishkill",Wappinger,NY,"Dutchess County",America/New_York,845,NA,US,41.59,-73.91,34020 +12592,STANDARD,0,Wassaic,,,NY,"Dutchess County",America/New_York,845,NA,US,41.78,-73.54,950 +12593,STANDARD,1,"West Copake",Copake,,NY,"Columbia County",America/New_York,518,NA,US,42.09,-73.58,0 +12594,STANDARD,0,Wingdale,,,NY,"Dutchess County",America/New_York,845,NA,US,41.64,-73.56,3740 +12601,STANDARD,0,Poughkeepsie,,,NY,"Dutchess County",America/New_York,"845,914",NA,US,41.69,-73.92,32450 +12602,"PO BOX",0,Poughkeepsie,,,NY,"Dutchess County",America/New_York,845,NA,US,41.69,-73.92,1018 +12603,STANDARD,0,Poughkeepsie,Arlington,,NY,"Dutchess County",America/New_York,"914,845",NA,US,41.68,-73.86,39280 +12604,UNIQUE,0,Poughkeepsie,,"Vassar College",NY,"Dutchess County",America/New_York,845,NA,US,41.69,-73.89,265 +12701,STANDARD,0,Monticello,,,NY,"Sullivan County",America/New_York,"845,914",NA,US,41.65,-74.68,8970 +12719,STANDARD,0,Barryville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.5,-74.9,770 +12720,STANDARD,0,Bethel,,,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.87,180 +12721,STANDARD,0,Bloomingburg,,,NY,"Sullivan County",America/New_York,845,NA,US,41.55,-74.44,6310 +12722,"PO BOX",0,Burlingham,,,NY,"Sullivan County",America/New_York,845,NA,US,41.59,-74.38,408 +12723,STANDARD,0,Callicoon,,,NY,"Sullivan County",America/New_York,845,NA,US,41.76,-75.05,1230 +12724,"PO BOX",0,"Callicoon Center","Callicoon Ctr",,NY,"Sullivan County",America/New_York,845,NA,US,41.84,-74.96,305 +12725,STANDARD,0,Claryville,,,NY,"Ulster County",America/New_York,,NA,US,41.98,-74.57,230 +12726,STANDARD,0,Cochecton,,,NY,"Sullivan County",America/New_York,,NA,US,41.7,-75.06,840 +12727,STANDARD,0,Cochecton,,,NY,"Sullivan County",America/New_York,845,NA,US,41.65,-74.98,89 +12729,STANDARD,0,Cuddebackville,"Cuddebackvlle, Godeffroy",,NY,"Orange County",America/New_York,845,NA,US,41.47,-74.63,1430 +12732,STANDARD,0,Eldred,,,NY,"Sullivan County",America/New_York,,NA,US,41.52,-74.88,650 +12733,STANDARD,0,Fallsburg,,,NY,"Sullivan County",America/New_York,845,NA,US,41.73,-74.6,1110 +12734,STANDARD,0,Ferndale,,,NY,"Sullivan County",America/New_York,,NA,US,41.77,-74.73,970 +12736,STANDARD,0,"Fremont Center","Fremont Ctr",Fremont,NY,"Sullivan County",America/New_York,607,NA,US,41.84,-75.04,98 +12737,STANDARD,0,"Glen Spey",,,NY,"Sullivan County",America/New_York,,NA,US,41.47,-74.81,1560 +12738,STANDARD,0,"Glen Wild",,,NY,"Sullivan County",America/New_York,845,NA,US,41.65,-74.58,190 +12740,STANDARD,0,Grahamsville,Sundown,,NY,"Sullivan County",America/New_York,845,NA,US,41.84,-74.54,1670 +12741,STANDARD,0,Hankins,,,NY,"Sullivan County",America/New_York,607,NA,US,41.84,-75.08,220 +12742,STANDARD,0,Harris,,,NY,"Sullivan County",America/New_York,845,NA,US,41.72,-74.72,250 +12743,STANDARD,0,"Highland Lake",,,NY,"Sullivan County",America/New_York,,NA,US,41.52,-74.85,260 +12745,STANDARD,0,Hortonville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.78,-75.02,180 +12746,STANDARD,0,Huguenot,,,NY,"Orange County",America/New_York,845,NA,US,41.41,-74.63,1000 +12747,STANDARD,0,Hurleyville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.73,-74.67,1330 +12748,STANDARD,0,Jeffersonville,Jeffersonvlle,,NY,"Sullivan County",America/New_York,845,NA,US,41.78,-74.93,1590 +12749,"PO BOX",0,"Kauneonga Lake","Kauneonga Lk",,NY,"Sullivan County",America/New_York,845,NA,US,41.7,-74.84,359 +12750,STANDARD,0,"Kenoza Lake",,,NY,"Sullivan County",America/New_York,845,NA,US,41.73,-74.95,214 +12751,STANDARD,0,"Kiamesha Lake",,,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.66,1240 +12752,STANDARD,0,"Lake Huntington","Lk Huntington",,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.99,240 +12754,STANDARD,0,Liberty,,,NY,"Sullivan County",America/New_York,845,NA,US,41.8,-74.74,5530 +12758,STANDARD,0,"Livingston Manor","Lew Beach, Livingstn Mnr",,NY,"Sullivan County",America/New_York,"607,845",NA,US,41.89,-74.82,3120 +12759,STANDARD,0,"Loch Sheldrake","Loch Sheldrke",,NY,"Sullivan County",America/New_York,845,NA,US,41.77,-74.65,1320 +12760,STANDARD,0,"Long Eddy",,,NY,"Delaware County",America/New_York,,NA,US,41.85,-75.13,370 +12762,STANDARD,0,"Mongaup Valley","Mongaup Vly",,NY,"Sullivan County",America/New_York,,NA,US,41.66,-74.79,430 +12763,STANDARD,0,"Mountain Dale",,Mountaindale,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.53,710 +12764,STANDARD,0,Narrowsburg,,,NY,"Sullivan County",America/New_York,845,NA,US,41.6,-75.06,1330 +12765,STANDARD,0,Neversink,,,NY,"Sullivan County",America/New_York,845,NA,US,41.84,-74.61,830 +12766,STANDARD,0,"North Branch",,,NY,"Sullivan County",America/New_York,,NA,US,41.8,-74.99,280 +12767,"PO BOX",0,Obernburg,,,NY,"Sullivan County",America/New_York,607,NA,US,41.84,-75,107 +12768,STANDARD,0,Parksville,,,NY,"Sullivan County",America/New_York,,NA,US,41.85,-74.76,760 +12769,"PO BOX",0,Phillipsport,,,NY,"Sullivan County",America/New_York,845,NA,US,41.66,-74.47,214 +12770,STANDARD,0,"Pond Eddy",,,NY,"Sullivan County",America/New_York,,NA,US,41.44,-74.82,190 +12771,STANDARD,0,"Port Jervis",,"Pt Jervis",NY,"Orange County",America/New_York,845,NA,US,41.37,-74.69,11750 +12775,STANDARD,0,"Rock Hill",,,NY,"Sullivan County",America/New_York,845,NA,US,41.62,-74.59,2350 +12776,STANDARD,0,Roscoe,,,NY,"Sullivan County",America/New_York,607,NA,US,41.93,-74.91,1440 +12777,STANDARD,0,Forestburgh,Monticello,Forestburg,NY,"Sullivan County",America/New_York,"845,914",NA,US,41.54,-74.69,620 +12778,"PO BOX",0,Smallwood,,,NY,"Sullivan County",America/New_York,845,NA,US,41.66,-74.81,632 +12779,STANDARD,0,"South Fallsburg","S Fallsburg",,NY,"Sullivan County",America/New_York,845,NA,US,41.71,-74.63,2090 +12780,STANDARD,0,"Sparrow Bush",Sparrowbush,,NY,"Orange County",America/New_York,845,NA,US,41.44,-74.72,2150 +12781,"PO BOX",0,Summitville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.62,-74.47,280 +12783,STANDARD,0,"Swan Lake",,,NY,"Sullivan County",America/New_York,,NA,US,41.75,-74.77,1050 +12784,"PO BOX",0,Thompsonville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.67,-74.64,163 +12785,"PO BOX",0,Westbrookville,"Port Jervis, Westbrookvlle",,NY,"Sullivan County",America/New_York,845,NA,US,41.5,-74.55,1054 +12786,STANDARD,0,"White Lake",,,NY,"Sullivan County",America/New_York,845,NA,US,41.64,-74.86,480 +12787,STANDARD,0,"White Sulphur Springs","Wht Sphr Spgs",,NY,"Sullivan County",America/New_York,,NA,US,41.79,-74.82,380 +12788,STANDARD,0,Woodbourne,,,NY,"Sullivan County",America/New_York,845,NA,US,41.75,-74.59,1720 +12789,STANDARD,0,Woodridge,,,NY,"Sullivan County",America/New_York,,NA,US,41.71,-74.57,1550 +12790,STANDARD,0,Wurtsboro,,,NY,"Sullivan County",America/New_York,845,NA,US,41.57,-74.48,3900 +12791,STANDARD,0,Youngsville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.82,-74.89,550 +12792,STANDARD,0,Yulan,,,NY,"Sullivan County",America/New_York,,NA,US,41.51,-74.96,310 +12801,STANDARD,0,"Glens Falls",Queensbury,"West Glens Falls",NY,"Warren County",America/New_York,518,NA,US,43.31,-73.64,12510 +12803,STANDARD,0,"South Glens Falls","Glens Falls, S Glens Falls",,NY,"Saratoga County",America/New_York,518,NA,US,43.29,-73.63,7850 +12804,STANDARD,0,Queensbury,"Glens Falls",,NY,"Warren County",America/New_York,518,NA,US,43.34,-73.67,24470 +12808,STANDARD,0,Adirondack,,,NY,"Warren County",America/New_York,518,NA,US,43.72,-73.77,280 +12809,STANDARD,0,Argyle,,"North Argyle, South Argyle",NY,"Washington County",America/New_York,518,NA,US,43.23,-73.49,2950 +12810,STANDARD,0,Athol,,,NY,"Warren County",America/New_York,518,NA,US,43.48,-73.89,540 +12811,"PO BOX",0,"Bakers Mills",,,NY,"Warren County",America/New_York,518,NA,US,43.61,-74.03,215 +12812,STANDARD,0,"Blue Mountain Lake","Blue Mtn Lake",,NY,"Hamilton County",America/New_York,518,NA,US,43.87,-74.44,170 +12814,STANDARD,0,"Bolton Landing","Bolton Lndg",,NY,"Warren County",America/New_York,518,NA,US,43.62,-73.64,1350 +12815,STANDARD,0,"Brant Lake",,Horicon,NY,"Warren County",America/New_York,518,NA,US,43.71,-73.69,860 +12816,STANDARD,0,Cambridge,,"Center Cambridge, Coila",NY,"Washington County",America/New_York,518,NA,US,43.02,-73.38,3800 +12817,STANDARD,0,Chestertown,,,NY,"Warren County",America/New_York,518,NA,US,43.63,-73.8,2020 +12819,STANDARD,0,Clemons,,,NY,"Washington County",America/New_York,518,NA,US,43.59,-73.47,290 +12820,"PO BOX",0,Cleverdale,,Rockhurst,NY,"Warren County",America/New_York,518,NA,US,43.31,-73.64,223 +12821,STANDARD,0,Comstock,,,NY,"Washington County",America/New_York,518,NA,US,43.45,-73.37,250 +12822,STANDARD,0,Corinth,,Palmer,NY,"Saratoga County",America/New_York,518,NA,US,43.24,-73.83,5350 +12823,STANDARD,0,Cossayuna,,"Cossayuna Lake",NY,"Washington County",America/New_York,518,NA,US,43.17,-73.4,290 +12824,STANDARD,0,"Diamond Point",,"Trout Lake",NY,"Warren County",America/New_York,518,NA,US,43.51,-73.69,690 +12827,STANDARD,0,"Fort Ann",,"South Bay Village, West Fort Ann",NY,"Washington County",America/New_York,518,NA,US,43.41,-73.49,3460 +12828,STANDARD,0,"Fort Edward",,"Fort Miller, Moreau",NY,"Washington County",America/New_York,,NA,US,43.26,-73.58,8290 +12831,STANDARD,0,Gansevoort,Wilton,"Fortsville, Gurn Spring, Kings Station",NY,"Saratoga County",America/New_York,518,NA,US,43.19,-73.64,16520 +12832,STANDARD,0,Granville,,"Hebron, North Hebron, Slateville, South Granville, Truthville",NY,"Washington County",America/New_York,518,NA,US,43.4,-73.26,5210 +12833,STANDARD,0,"Greenfield Center","Greenfld Ctr",Greenfield,NY,"Saratoga County",America/New_York,518,NA,US,43.13,-73.85,4270 +12834,STANDARD,0,Greenwich,Thomson,"Bald Mountain, Battenville, Clarks Mills",NY,"Washington County",America/New_York,518,NA,US,43.08,-73.49,5770 +12835,STANDARD,0,Hadley,,"Conklingville, Day",NY,"Saratoga County",America/New_York,518,NA,US,43.33,-74.01,2230 +12836,STANDARD,0,Hague,,Graphite,NY,"Warren County",America/New_York,518,NA,US,43.71,-73.61,480 +12837,STANDARD,0,Hampton,,,NY,"Washington County",America/New_York,518,NA,US,43.46,-73.27,610 +12838,STANDARD,0,Hartford,,,NY,"Washington County",America/New_York,518,NA,US,43.33,-73.4,560 +12839,STANDARD,0,"Hudson Falls",,"Kingsbury, Sandy Hill",NY,"Washington County",America/New_York,518,NA,US,43.3,-73.58,11230 +12841,"PO BOX",0,"Huletts Landing","Huletts Lndg",,NY,"Washington County",America/New_York,518,NA,US,43.61,-73.53,77 +12842,STANDARD,0,"Indian Lake",,,NY,"Hamilton County",America/New_York,518,NA,US,43.78,-74.26,930 +12843,STANDARD,0,Johnsburg,,"Garnet Lake",NY,"Warren County",America/New_York,518,NA,US,43.57,-73.97,490 +12844,STANDARD,0,"Kattskill Bay","Pilot Knob",,NY,"Washington County",America/New_York,518,NA,US,43.49,-73.62,230 +12845,STANDARD,0,"Lake George",,"Assembly Point",NY,"Warren County",America/New_York,518,NA,US,43.42,-73.71,4340 +12846,STANDARD,0,"Lake Luzerne",,Luzerne,NY,"Warren County",America/New_York,518,NA,US,43.32,-73.8,2740 +12847,STANDARD,0,"Long Lake",,"Brandreth, Sabattis",NY,"Hamilton County",America/New_York,518,NA,US,43.97,-74.42,580 +12848,"PO BOX",0,"Middle Falls",,,NY,"Washington County",America/New_York,518,NA,US,43.1,-73.52,91 +12849,STANDARD,0,"Middle Granville","Mdl Granville",,NY,"Washington County",America/New_York,518,NA,US,43.45,-73.3,500 +12850,STANDARD,0,"Middle Grove",,"Barkersville, Lake Desolation, Providence",NY,"Saratoga County",America/New_York,518,NA,US,43.11,-74.02,2600 +12851,STANDARD,0,Minerva,,,NY,"Essex County",America/New_York,518,NA,US,43.78,-73.97,230 +12852,STANDARD,0,Newcomb,,,NY,"Essex County",America/New_York,518,NA,US,43.94,-74.16,370 +12853,STANDARD,0,"North Creek",,"Holcombville, Igerna",NY,"Warren County",America/New_York,518,NA,US,43.69,-73.98,1140 +12854,STANDARD,0,"North Granville","N Granville",,NY,"Washington County",America/New_York,518,NA,US,43.5,-73.33,350 +12855,STANDARD,0,"North Hudson",,,NY,"Essex County",America/New_York,518,NA,US,43.98,-73.7,210 +12856,"PO BOX",0,"North River",,,NY,"Warren County",America/New_York,518,NA,US,43.67,-74.14,242 +12857,STANDARD,0,Olmstedville,,,NY,"Essex County",America/New_York,518,NA,US,43.82,-73.89,470 +12858,STANDARD,0,Paradox,Ticonderoga,"Paradox Lake",NY,"Essex County",America/New_York,518,NA,US,43.91,-73.68,51 +12859,STANDARD,0,"Porter Corners","Porter Cors",,NY,"Saratoga County",America/New_York,518,NA,US,43.14,-73.88,1890 +12860,STANDARD,0,Pottersville,,,NY,"Warren County",America/New_York,518,NA,US,43.76,-73.84,630 +12861,STANDARD,0,"Putnam Station","Putnam Sta",,NY,"Washington County",America/New_York,518,NA,US,43.75,-73.41,510 +12862,"PO BOX",0,Riparius,,,NY,"Warren County",America/New_York,518,NA,US,43.69,-73.91,66 +12863,STANDARD,0,"Rock City Falls","Rock City Fls",,NY,"Saratoga County",America/New_York,518,NA,US,43.06,-73.92,720 +12864,STANDARD,0,Sabael,,,NY,"Hamilton County",America/New_York,518,NA,US,43.73,-74.31,63 +12865,STANDARD,0,Salem,"E Greenwich, East Greenwich","Belcher, East Hebron, West Hebron",NY,"Washington County",America/New_York,518,NA,US,43.17,-73.32,3010 +12866,STANDARD,0,"Saratoga Springs","Saratoga Spgs",,NY,"Saratoga County",America/New_York,518,NA,US,43.06,-73.77,33740 +12870,STANDARD,0,"Schroon Lake",,"Blue Ridge",NY,"Essex County",America/New_York,518,NA,US,43.83,-73.73,1530 +12871,STANDARD,0,Schuylerville,,"Bacon Hill, Grangerville, Quaker Springs",NY,"Saratoga County",America/New_York,518,NA,US,43.1,-73.58,3590 +12872,"PO BOX",0,Severance,,,NY,"Essex County",America/New_York,518,NA,US,43.87,-73.73,70 +12873,STANDARD,0,Shushan,,Eagleville,NY,"Washington County",America/New_York,518,NA,US,43.12,-73.3,640 +12874,STANDARD,0,"Silver Bay",,"Sabbath Day Point",NY,"Warren County",America/New_York,518,NA,US,43.7,-73.51,116 +12878,STANDARD,0,"Stony Creek",,,NY,"Warren County",America/New_York,518,NA,US,43.42,-74.03,530 +12879,STANDARD,0,Newcomb,Tahawus,,NY,"Essex County",America/New_York,518,NA,US,43.97,-74.17,0 +12883,STANDARD,0,Ticonderoga,,"Chilson, Eagle Lake, Streetroad",NY,"Essex County",America/New_York,518,NA,US,43.84,-73.42,3990 +12884,"PO BOX",0,"Victory Mills",,,NY,"Saratoga County",America/New_York,518,NA,US,43.09,-73.59,506 +12885,STANDARD,0,Warrensburg,Thurman,"Riverbank, The Glen",NY,"Warren County",America/New_York,518,NA,US,43.5,-73.77,3760 +12886,STANDARD,0,Wevertown,,,NY,"Warren County",America/New_York,518,NA,US,43.64,-73.92,190 +12887,STANDARD,0,Whitehall,,"Dresden Station, Low Hampton",NY,"Washington County",America/New_York,518,NA,US,43.56,-73.41,4080 +12901,STANDARD,0,Plattsburgh,,"Beekmantown, South Plattsburgh",NY,"Clinton County",America/New_York,518,NA,US,44.7,-73.47,24230 +12903,STANDARD,0,Plattsburgh,,,NY,"Clinton County",America/New_York,518,NA,US,44.69,-73.45,1420 +12910,STANDARD,0,Altona,,"Alder Bend, Irona, Purdys Mills",NY,"Clinton County",America/New_York,518,NA,US,44.89,-73.65,1420 +12911,STANDARD,0,Keeseville,"Au Sable Chasm, Ausable Chasm",,NY,"Clinton County",America/New_York,518,NA,US,44.52,-73.46,28 +12912,STANDARD,0,"Au Sable Forks","Au Sable Frks",Hawkeye,NY,"Clinton County",America/New_York,518,NA,US,44.47,-73.78,1790 +12913,STANDARD,0,Bloomingdale,,,NY,"Essex County",America/New_York,518,NA,US,44.43,-74,940 +12914,STANDARD,0,Bombay,,,NY,"Franklin County",America/New_York,518,NA,US,44.93,-74.59,690 +12915,"PO BOX",0,Brainardsville,Brainardsvle,,NY,"Franklin County",America/New_York,518,NA,US,44.86,-74.02,133 +12916,STANDARD,0,Brushton,,"Alburgh, Cooks Corners, Irish Corners",NY,"Franklin County",America/New_York,518,NA,US,44.83,-74.51,1850 +12917,STANDARD,0,Burke,,,NY,"Franklin County",America/New_York,518,NA,US,44.9,-74.17,1310 +12918,STANDARD,0,Cadyville,,,NY,"Clinton County",America/New_York,518,NA,US,44.66,-73.68,2160 +12919,STANDARD,0,Champlain,,"Coopersville, Perrys Mills",NY,"Clinton County",America/New_York,518,NA,US,44.98,-73.44,2970 +12920,STANDARD,0,Chateaugay,,,NY,"Franklin County",America/New_York,518,NA,US,44.92,-74.08,1990 +12921,STANDARD,0,Chazy,,"Chazy Landing",NY,"Clinton County",America/New_York,518,NA,US,44.88,-73.43,2260 +12922,STANDARD,0,Childwold,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.28,-74.67,62 +12923,STANDARD,0,Churubusco,,,NY,"Clinton County",America/New_York,518,NA,US,44.95,-73.92,430 +12924,STANDARD,0,Keeseville,Clintonville,,NY,"Clinton County",America/New_York,518,NA,US,44.48,-73.58,123 +12926,STANDARD,0,Constable,,"Trout River, Westville Center",NY,"Franklin County",America/New_York,518,NA,US,44.93,-74.28,1740 +12927,"PO BOX",0,"Cranberry Lake","Cranberry Lk",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.22,-74.83,199 +12928,STANDARD,0,"Crown Point",,"Factoryville, Ironville",NY,"Essex County",America/New_York,518,NA,US,43.95,-73.53,1740 +12929,"PO BOX",0,Dannemora,,,NY,"Clinton County",America/New_York,518,NA,US,44.72,-73.71,1340 +12930,STANDARD,0,"Dickinson Center","Dickinson Ctr","East Dickinson",NY,"Franklin County",America/New_York,518,NA,US,44.71,-74.53,560 +12932,STANDARD,0,Elizabethtown,,,NY,"Essex County",America/New_York,518,NA,US,44.22,-73.6,1070 +12933,"PO BOX",0,Ellenburg,,,NY,"Clinton County",America/New_York,518,NA,US,44.89,-73.85,93 +12934,STANDARD,0,"Ellenburg Center","Ellenburg Ctr",,NY,"Clinton County",America/New_York,518,NA,US,44.82,-73.85,840 +12935,STANDARD,0,"Ellenburg Depot","Ellenburg Dep",,NY,"Clinton County",America/New_York,518,NA,US,44.9,-73.8,1300 +12936,STANDARD,0,Essex,Whallonsburg,,NY,"Essex County",America/New_York,518,NA,US,44.27,-73.39,540 +12937,STANDARD,0,"Fort Covington","Ft Covington",,NY,"Franklin County",America/New_York,518,NA,US,44.98,-74.47,1180 +12939,"PO BOX",0,Gabriels,,,NY,"Franklin County",America/New_York,518,NA,US,44.43,-74.16,236 +12941,STANDARD,0,Jay,,,NY,"Essex County",America/New_York,518,NA,US,44.35,-73.71,1150 +12942,STANDARD,0,Keene,,,NY,"Essex County",America/New_York,518,NA,US,44.25,-73.78,530 +12943,STANDARD,0,"Keene Valley","Saint Huberts",,NY,"Essex County",America/New_York,518,NA,US,44.2,-73.78,350 +12944,STANDARD,0,Keeseville,,,NY,"Essex County",America/New_York,518,NA,US,44.5,-73.48,3340 +12945,STANDARD,0,"Lake Clear","Upper Saint Regis, Upper St Reg",,NY,"Franklin County",America/New_York,518,NA,US,44.36,-74.25,560 +12946,STANDARD,0,"Lake Placid",,,NY,"Essex County",America/New_York,518,NA,US,44.28,-73.98,4420 +12949,STANDARD,0,Lawrenceville,,,NY,"St Lawrence County",America/New_York,315,NA,US,44.77,-74.65,28 +12950,STANDARD,0,Lewis,,,NY,"Essex County",America/New_York,518,NA,US,44.27,-73.57,700 +12952,STANDARD,0,"Lyon Mountain",,Standish,NY,"Clinton County",America/New_York,518,NA,US,44.72,-73.92,430 +12953,STANDARD,0,Malone,,Duane,NY,"Franklin County",America/New_York,518,NA,US,44.84,-74.29,8810 +12955,STANDARD,0,"Lyon Mountain",Merrill,,NY,"Clinton County",America/New_York,518,NA,US,44.81,-73.97,270 +12956,STANDARD,0,Mineville,,"Grover Hills",NY,"Essex County",America/New_York,518,NA,US,44.08,-73.52,940 +12957,STANDARD,0,Moira,,"South Bombay",NY,"Franklin County",America/New_York,518,NA,US,44.86,-74.57,1320 +12958,STANDARD,0,Mooers,,,NY,"Clinton County",America/New_York,518,NA,US,44.96,-73.58,1630 +12959,STANDARD,0,"Mooers Forks",,,NY,"Clinton County",America/New_York,518,NA,US,44.96,-73.69,1150 +12960,STANDARD,0,Moriah,,"Moriah Corners",NY,"Essex County",America/New_York,518,NA,US,44.05,-73.5,950 +12961,STANDARD,0,"Moriah Center",,,NY,"Essex County",America/New_York,518,NA,US,44.06,-73.52,170 +12962,STANDARD,0,Morrisonville,,"West Plattsburgh",NY,"Clinton County",America/New_York,518,NA,US,44.69,-73.55,5070 +12964,STANDARD,0,"New Russia",,,NY,"Essex County",America/New_York,518,NA,US,44.14,-73.6,120 +12965,STANDARD,0,Nicholville,"Fort Jackson, Hopkinton",,NY,"St. Lawrence County",America/New_York,"518,315",NA,US,44.71,-74.65,490 +12966,STANDARD,0,"North Bangor","Bangor, West Bangor",,NY,"Franklin County",America/New_York,518,NA,US,44.79,-74.41,2460 +12967,STANDARD,0,"North Lawrence","N Lawrence",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.76,-74.65,980 +12969,STANDARD,0,"Owls Head",,"Mountain View",NY,"Franklin County",America/New_York,518,NA,US,44.71,-74.08,310 +12970,STANDARD,0,"Paul Smiths",,,NY,"Franklin County",America/New_York,518,NA,US,44.43,-74.25,250 +12972,STANDARD,0,Peru,,Harkness,NY,"Clinton County",America/New_York,518,NA,US,44.58,-73.53,5810 +12973,"PO BOX",0,Piercefield,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.23,-74.57,175 +12974,STANDARD,0,"Port Henry",,,NY,"Essex County",America/New_York,518,NA,US,44.04,-73.46,1180 +12975,"PO BOX",0,"Port Kent",,,NY,"Essex County",America/New_York,518,NA,US,44.53,-73.42,265 +12976,"PO BOX",0,"Rainbow Lake",,,NY,"Franklin County",America/New_York,518,NA,US,44.47,-74.17,209 +12977,"PO BOX",0,"Ray Brook",,,NY,"Essex County",America/New_York,518,NA,US,44.28,-74.07,280 +12978,STANDARD,0,Redford,,,NY,"Clinton County",America/New_York,518,NA,US,44.62,-73.81,340 +12979,STANDARD,0,"Rouses Point",,,NY,"Clinton County",America/New_York,518,NA,US,44.99,-73.37,2100 +12980,STANDARD,0,"Saint Regis Falls","St Regis Fls","Santa Clara",NY,"Franklin County",America/New_York,518,NA,US,44.49,-74.53,1040 +12981,STANDARD,0,Saranac,,,NY,"Clinton County",America/New_York,518,NA,US,44.67,-73.82,1980 +12983,STANDARD,0,"Saranac Lake",,"Harrietstown, Lake Colby",NY,"Franklin County",America/New_York,518,NA,US,44.32,-74.13,5900 +12985,STANDARD,0,"Schuyler Falls","Schuyler Fls","Peasleeville, Swastika",NY,"Clinton County",America/New_York,518,NA,US,44.55,-73.75,850 +12986,STANDARD,0,"Tupper Lake",Massawepie,Conifer,NY,"Franklin County",America/New_York,518,NA,US,44.23,-74.46,4540 +12987,STANDARD,0,"Upper Jay",,,NY,"Essex County",America/New_York,518,NA,US,44.33,-73.78,220 +12989,STANDARD,0,Vermontville,"Loon Lake, Onchiota",,NY,"Franklin County",America/New_York,518,NA,US,44.52,-74.09,780 +12992,STANDARD,0,"West Chazy",,"Ingraham, Sciota",NY,"Clinton County",America/New_York,518,NA,US,44.79,-73.52,4470 +12993,STANDARD,0,Westport,Wadhams,,NY,"Essex County",America/New_York,518,NA,US,44.17,-73.43,1340 +12995,"PO BOX",0,Whippleville,,,NY,"Franklin County",America/New_York,518,NA,US,44.73,-74.26,111 +12996,STANDARD,0,Willsboro,,"Reber, Willsboro Point",NY,"Essex County",America/New_York,518,NA,US,44.37,-73.4,1620 +12997,STANDARD,0,Wilmington,"Whiteface Mountain, Whiteface Mtn",,NY,"Essex County",America/New_York,518,NA,US,44.38,-73.82,1010 +12998,STANDARD,0,Witherbee,,,NY,"Essex County",America/New_York,518,NA,US,44.08,-73.58,430 +13020,"PO BOX",0,"Apulia Station","Apulia Sta",,NY,"Onondaga County",America/New_York,315,NA,US,42.82,-76.07,202 +13021,STANDARD,0,Auburn,"Owasco, Sennett","Aurelius, Fleming, Fosterville, Throop",NY,"Cayuga County",America/New_York,315,NA,US,42.93,-76.56,31630 +13022,"PO BOX",0,Auburn,,,NY,"Cayuga County",America/New_York,315,NA,US,42.93,-76.56,17 +13024,UNIQUE,0,Auburn,,"Auburn State Prison",NY,"Cayuga County",America/New_York,315,NA,US,42.93,-76.57,0 +13026,STANDARD,0,Aurora,,Ledyard,NY,"Cayuga County",America/New_York,315,NA,US,42.75,-76.7,1050 +13027,STANDARD,0,Baldwinsville,Lysander,"Belgium, Radison, Radisson, Van Buren",NY,"Onondaga County",America/New_York,315,NA,US,43.15,-76.33,31820 +13028,STANDARD,0,"Bernhards Bay",,,NY,"Oswego County",America/New_York,315,NA,US,43.29,-75.93,1050 +13029,STANDARD,0,Brewerton,,,NY,"Onondaga County",America/New_York,315,NA,US,43.23,-76.14,6630 +13030,STANDARD,0,Bridgeport,,,NY,"Madison County",America/New_York,315,NA,US,43.15,-75.96,3520 +13031,STANDARD,0,Camillus,,"Howlett Hill, Split Rock",NY,"Onondaga County",America/New_York,315,NA,US,43.03,-76.3,15460 +13032,STANDARD,0,Canastota,Perryville,"South Bay, Whitelaw",NY,"Madison County",America/New_York,315,NA,US,43.08,-75.75,10750 +13033,STANDARD,0,Cato,,,NY,"Cayuga County",America/New_York,315,NA,US,43.16,-76.57,3440 +13034,STANDARD,0,Cayuga,,,NY,"Cayuga County",America/New_York,315,NA,US,42.91,-76.72,1610 +13035,STANDARD,0,Cazenovia,,"Caz, Fenner, Nelson",NY,"Madison County",America/New_York,315,NA,US,42.92,-75.85,7300 +13036,STANDARD,0,"Central Square","Central Sq",,NY,"Oswego County",America/New_York,315,NA,US,43.28,-76.14,7710 +13037,STANDARD,0,Chittenango,,"Chitt, Chtg, Lakeport, North Chittenango, Sullivan",NY,"Madison County",America/New_York,315,NA,US,43.04,-75.87,8410 +13039,STANDARD,0,Cicero,Clay,,NY,"Onondaga County",America/New_York,315,NA,US,43.17,-76.11,16860 +13040,STANDARD,0,Cincinnatus,"East Freetown","E Freetown, E Freetwn, Taylor",NY,"Cortland County",America/New_York,607,NA,US,42.54,-75.89,2290 +13041,STANDARD,0,Clay,,,NY,"Onondaga County",America/New_York,315,NA,US,43.18,-76.17,11400 +13042,STANDARD,0,Cleveland,,,NY,"Oswego County",America/New_York,315,NA,US,43.26,-75.85,1900 +13043,"PO BOX",0,Clockville,,Lincoln,NY,"Madison County",America/New_York,315,NA,US,43.04,-75.74,83 +13044,STANDARD,0,Constantia,,Gayville,NY,"Oswego County",America/New_York,315,NA,US,43.25,-76,2270 +13045,STANDARD,0,Cortland,,"Cortlandville, Munsons Corners, Virgil",NY,"Cortland County",America/New_York,607,NA,US,42.6,-76.18,19840 +13051,"PO BOX",0,"Delphi Falls",,,NY,"Onondaga County",America/New_York,315,NA,US,42.88,-75.91,142 +13052,STANDARD,0,"De Ruyter",,"Deruyter, Lincklaen",NY,"Madison County",America/New_York,315,NA,US,42.75,-75.86,1570 +13053,STANDARD,0,Dryden,,,NY,"Tompkins County",America/New_York,607,NA,US,42.49,-76.29,3740 +13054,STANDARD,0,Durhamville,,"Higginsville, Stacy Basin",NY,"Oneida County",America/New_York,315,NA,US,43.12,-75.67,1330 +13056,"PO BOX",0,"East Homer",,,NY,"Cortland County",America/New_York,607,NA,US,42.66,-76.1,0 +13057,STANDARD,0,"East Syracuse",,"E Syracuse",NY,"Onondaga County",America/New_York,315,NA,US,43.06,-76.07,13340 +13060,STANDARD,0,Elbridge,,"Hart Lot",NY,"Onondaga County",America/New_York,315,NA,US,43.03,-76.44,2450 +13061,STANDARD,0,Erieville,,,NY,"Madison County",America/New_York,315,NA,US,42.85,-75.75,860 +13062,"PO BOX",0,Etna,,,NY,"Tompkins County",America/New_York,607,NA,US,42.48,-76.38,236 +13063,STANDARD,0,Fabius,,,NY,"Onondaga County",America/New_York,315,NA,US,42.83,-75.98,1750 +13064,"PO BOX",0,"Fair Haven",,,NY,"Cayuga County",America/New_York,315,NA,US,43.33,-76.71,462 +13065,"PO BOX",0,Fayette,,,NY,"Seneca County",America/New_York,,NA,US,42.81,-76.8,179 +13066,STANDARD,0,Fayetteville,,,NY,"Onondaga County",America/New_York,315,NA,US,43.02,-76,12200 +13068,STANDARD,0,Freeville,,,NY,"Tompkins County",America/New_York,607,NA,US,42.51,-76.34,4560 +13069,STANDARD,0,Fulton,,"Bowens Corners, Granby, Granby Center, Palermo, Volney",NY,"Oswego County",America/New_York,315,NA,US,43.31,-76.41,20300 +13071,STANDARD,0,Genoa,,,NY,"Cayuga County",America/New_York,315,NA,US,42.66,-76.53,840 +13072,STANDARD,0,Georgetown,,"Geotown, Otselic",NY,"Madison County",America/New_York,315,NA,US,42.76,-75.76,620 +13073,STANDARD,0,Groton,,"Groton City, W Groton, West Groton",NY,"Tompkins County",America/New_York,607,NA,US,42.58,-76.36,5550 +13074,STANDARD,0,Hannibal,,"Fairdale, Hannibal Center, South Hannibal",NY,"Oswego County",America/New_York,315,NA,US,43.31,-76.57,3600 +13076,STANDARD,0,Hastings,,,NY,"Oswego County",America/New_York,315,NA,US,43.35,-76.15,2100 +13077,STANDARD,0,Homer,,Scott,NY,"Cortland County",America/New_York,607,NA,US,42.63,-76.18,6030 +13078,STANDARD,0,Jamesville,,"Sentinel Heights",NY,"Onondaga County",America/New_York,315,NA,US,42.99,-76.07,9080 +13080,STANDARD,0,Jordan,,"Cross Lake",NY,"Onondaga County",America/New_York,315,NA,US,43.06,-76.47,3010 +13081,STANDARD,0,"King Ferry",,"Atwater, Goodyears Corners, Kings Ferry",NY,"Cayuga County",America/New_York,315,NA,US,42.66,-76.61,890 +13082,STANDARD,0,Kirkville,,,NY,"Madison County",America/New_York,,NA,US,43.07,-75.95,4070 +13083,STANDARD,0,Lacona,,"Boylston, Smartville",NY,"Oswego County",America/New_York,315,NA,US,43.64,-76.06,1570 +13084,STANDARD,0,"La Fayette",,"Berwyn, Cardiff, Lafayette",NY,"Onondaga County",America/New_York,315,NA,US,42.88,-76.1,4060 +13087,"PO BOX",0,"Little York",,,NY,"Cortland County",America/New_York,607,NA,US,42.71,-76.15,266 +13088,STANDARD,0,Liverpool,,"Galeville, Jewell Manor, Salina",NY,"Onondaga County",America/New_York,315,NA,US,43.11,-76.19,19880 +13089,"PO BOX",0,Liverpool,,,NY,"Onondaga County",America/New_York,315,NA,US,43.1,-76.21,251 +13090,STANDARD,0,Liverpool,Bayberry,"Dominion Park",NY,"Onondaga County",America/New_York,315,NA,US,43.15,-76.21,28240 +13092,STANDARD,0,Locke,,"East Genoa, Summerhill",NY,"Cayuga County",America/New_York,315,NA,US,42.66,-76.43,2280 +13093,"PO BOX",0,Lycoming,,,NY,"Oswego County",America/New_York,315,NA,US,43.49,-76.39,163 +13101,STANDARD,0,"Mc Graw",,Mcgraw,NY,"Cortland County",America/New_York,607,NA,US,42.59,-76.09,2270 +13102,"PO BOX",0,"Mc Lean",,Mclean,NY,"Tompkins County",America/New_York,607,NA,US,42.55,-76.29,375 +13103,STANDARD,0,Mallory,,,NY,"Oswego County",America/New_York,315,NA,US,43.33,-76.11,300 +13104,STANDARD,0,Manlius,,,NY,"Onondaga County",America/New_York,315,NA,US,43,-75.97,15690 +13107,"PO BOX",0,"Maple View",,,NY,"Oswego County",America/New_York,315,NA,US,43.45,-76.15,50 +13108,STANDARD,0,Marcellus,,"Marcellus Falls, Martisco, Navarino",NY,"Onondaga County",America/New_York,315,NA,US,42.98,-76.34,5770 +13110,STANDARD,0,Marietta,,"Amber, Otisco Valley",NY,"Onondaga County",America/New_York,315,NA,US,42.9,-76.32,2050 +13111,STANDARD,0,Martville,,,NY,"Cayuga County",America/New_York,315,NA,US,43.28,-76.62,1380 +13112,STANDARD,0,Memphis,,,NY,"Onondaga County",America/New_York,315,NA,US,43.08,-76.37,1700 +13113,"PO BOX",0,Meridian,,,NY,"Cayuga County",America/New_York,315,NA,US,43.16,-76.54,284 +13114,STANDARD,0,Mexico,,,NY,"Oswego County",America/New_York,315,NA,US,43.46,-76.23,5790 +13115,"PO BOX",0,Minetto,,,NY,"Oswego County",America/New_York,315,NA,US,43.4,-76.48,399 +13116,STANDARD,0,Minoa,,,NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76,3340 +13117,"PO BOX",0,Montezuma,,,NY,"Cayuga County",America/New_York,315,NA,US,43.01,-76.7,238 +13118,STANDARD,0,Moravia,,"Montville, Sempronius",NY,"Cayuga County",America/New_York,315,NA,US,42.71,-76.42,4490 +13119,"PO BOX",0,Mottville,,,NY,"Onondaga County",America/New_York,315,NA,US,42.97,-76.44,132 +13120,STANDARD,0,Nedrow,,"Indian Village, Onondaga Nation, Rockwell Springs, S Onon, South Onondaga",NY,"Onondaga County",America/New_York,315,NA,US,42.97,-76.14,2090 +13121,"PO BOX",0,"New Haven",,,NY,"Oswego County",America/New_York,315,NA,US,43.46,-76.31,232 +13122,STANDARD,0,"New Woodstock",,"New Wdstock, Sheds",NY,"Madison County",America/New_York,315,NA,US,42.84,-75.85,1000 +13123,"PO BOX",0,"North Bay",,,NY,"Oneida County",America/New_York,315,NA,US,43.23,-75.77,542 +13124,STANDARD,0,"North Pitcher",,,NY,"Chenango County",America/New_York,,NA,US,42.66,-75.82,122 +13126,STANDARD,0,Oswego,,"Bundyville, Demster, Fruit Valley, Furniss, Furniss Sta, North Hannibal, Oswego Center, Scriba, Scriba Center, Seneca Hill, Southwest Oswego",NY,"Oswego County",America/New_York,315,NA,US,43.45,-76.5,25760 +13131,STANDARD,0,Parish,,Colosse,NY,"Oswego County",America/New_York,315,NA,US,43.4,-76.12,3310 +13132,STANDARD,0,Pennellville,,,NY,"Oswego County",America/New_York,315,NA,US,43.26,-76.24,3490 +13134,"PO BOX",0,Peterboro,,Smithfield,NY,"Madison County",America/New_York,315,NA,US,42.97,-75.68,170 +13135,STANDARD,0,Phoenix,,"Hinmansville, Schroeppel",NY,"Oswego County",America/New_York,315,NA,US,43.23,-76.29,5810 +13136,STANDARD,0,Pitcher,,,NY,"Chenango County",America/New_York,,NA,US,42.58,-75.86,390 +13137,"PO BOX",0,Plainville,,,NY,"Onondaga County",America/New_York,315,NA,US,43.15,-76.44,155 +13138,"PO BOX",0,Pompey,,,NY,"Onondaga County",America/New_York,315,NA,US,42.9,-76.01,465 +13139,"PO BOX",0,"Poplar Ridge",,,NY,"Cayuga County",America/New_York,315,NA,US,42.73,-76.61,80 +13140,STANDARD,0,"Port Byron",,Conquest,NY,"Cayuga County",America/New_York,315,NA,US,43.03,-76.62,3620 +13141,STANDARD,0,Preble,,,NY,"Cortland County",America/New_York,,NA,US,42.73,-76.14,610 +13142,STANDARD,0,Pulaski,,"Fernwood, Port Ontario",NY,"Oswego County",America/New_York,315,NA,US,43.56,-76.12,5310 +13143,STANDARD,0,"Red Creek",,,NY,"Wayne County",America/New_York,315,NA,US,43.24,-76.72,2310 +13144,STANDARD,0,Richland,,,NY,"Oswego County",America/New_York,315,NA,US,43.57,-75.97,1060 +13145,STANDARD,0,"Sandy Creek",,,NY,"Oswego County",America/New_York,315,NA,US,43.65,-76.12,1560 +13146,STANDARD,0,Savannah,,,NY,"Wayne County",America/New_York,315,NA,US,43.09,-76.75,1820 +13147,STANDARD,0,"Scipio Center","Venice Center","Merrifield, Scipio, Scipioville, Venice",NY,"Cayuga County",America/New_York,315,NA,US,42.78,-76.55,890 +13148,STANDARD,0,"Seneca Falls",,"Canoga, Tyre",NY,"Seneca County",America/New_York,315,NA,US,42.91,-76.79,8970 +13152,STANDARD,0,Skaneateles,,"Mandana, Niles, Skan",NY,"Onondaga County",America/New_York,315,NA,US,42.89,-76.37,7600 +13153,"PO BOX",0,"Skaneateles Falls","Skan Falls","Skan Fa",NY,"Onondaga County",America/New_York,315,NA,US,43,-76.45,406 +13154,"PO BOX",0,"South Butler",,,NY,"Wayne County",America/New_York,315,NA,US,43.23,-76.81,161 +13155,STANDARD,0,"South Otselic",,,NY,"Chenango County",America/New_York,315,NA,US,42.65,-75.78,510 +13156,STANDARD,0,Sterling,,,NY,"Cayuga County",America/New_York,315,NA,US,43.32,-76.64,1630 +13157,"PO BOX",0,"Sylvan Beach",,,NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.72,847 +13158,STANDARD,0,Truxton,"Cuyler, East Homer",,NY,"Cortland County",America/New_York,607,NA,US,42.71,-76.02,1170 +13159,STANDARD,0,Tully,,"Otisco, Vesper",NY,"Onondaga County",America/New_York,315,NA,US,42.79,-76.1,4750 +13160,STANDARD,0,"Union Springs",,"Allens Point, Farleys Point, Springport",NY,"Cayuga County",America/New_York,315,NA,US,42.84,-76.69,1820 +13162,"PO BOX",0,"Verona Beach",,,NY,"Oneida County",America/New_York,315,NA,US,43.19,-75.72,331 +13163,"PO BOX",0,Wampsville,,,NY,"Madison County",America/New_York,315,NA,US,43.08,-75.71,506 +13164,STANDARD,0,Warners,,,NY,"Onondaga County",America/New_York,315,NA,US,43.08,-76.32,2640 +13165,STANDARD,0,Waterloo,,Junius,NY,"Seneca County",America/New_York,315,NA,US,42.9,-76.86,9140 +13166,STANDARD,0,Weedsport,,Brutus,NY,"Cayuga County",America/New_York,315,NA,US,43.04,-76.56,4700 +13167,STANDARD,0,"West Monroe",,,NY,"Oswego County",America/New_York,315,NA,US,43.29,-76.07,3050 +13201,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,390 +13202,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.15,3630 +13203,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.06,-76.13,11430 +13204,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.05,-76.18,14010 +13205,STANDARD,0,Syracuse,,"Colvin, Colvin Elmwood, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.01,-76.14,12830 +13206,STANDARD,0,Syracuse,,"Eastwood, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76.11,13810 +13207,STANDARD,0,Syracuse,,"Colvin Elmwood, Elmwood, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.01,-76.16,10790 +13208,STANDARD,0,Syracuse,,"Lyncourt, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.08,-76.15,18080 +13209,STANDARD,0,Syracuse,Solvay,"Geddes, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76.22,11610 +13210,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,9880 +13211,STANDARD,0,Syracuse,Mattydale,"Mdale, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.1,-76.12,5710 +13212,STANDARD,0,Syracuse,"N Syracuse, North Syracuse",Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.13,-76.13,17870 +13214,STANDARD,0,Syracuse,"De Witt","Dewitt, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.08,6710 +13215,STANDARD,0,Syracuse,,"Onon Hill, Syr",NY,"Onondaga County",America/New_York,315,NA,US,42.98,-76.22,13580 +13217,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,306 +13218,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,276 +13219,STANDARD,0,Syracuse,,"Syr, Taunton, Westvale",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.22,14400 +13220,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,626 +13221,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,16 +13224,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.1,7320 +13225,UNIQUE,0,Syracuse,,"Syracuse Amf",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13235,"PO BOX",0,Syracuse,,University,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.13,90 +13244,UNIQUE,0,Syracuse,,"Syracuse University",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,39 +13250,UNIQUE,0,Syracuse,,"Caller Firms Brm",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13251,UNIQUE,0,Syracuse,,Firms,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13252,UNIQUE,0,Syracuse,,"National Grid",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13261,"PO BOX",0,Syracuse,,,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,21 +13290,"PO BOX",0,Syracuse,,,NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76.17,136 +13301,STANDARD,0,"Alder Creek",,,NY,"Oneida County",America/New_York,315,NA,US,43.42,-75.22,159 +13302,STANDARD,0,Altmar,,"Howardville, Kasoag, Pine Meadows, Ricard, South Albion",NY,"Oswego County",America/New_York,315,NA,US,43.51,-76,1260 +13303,STANDARD,0,Ava,,"West Branch",NY,"Oneida County",America/New_York,315,NA,US,43.41,-75.47,1040 +13304,STANDARD,0,Barneveld,,"South Trenton",NY,"Oneida County",America/New_York,315,NA,US,43.27,-75.18,1630 +13305,"PO BOX",0,"Beaver Falls","Beaver Fls",,NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.42,466 +13308,STANDARD,0,Blossvale,,Vienna,NY,"Oneida County",America/New_York,315,NA,US,43.27,-75.64,2890 +13309,STANDARD,0,Boonville,,"Hawkinsville, Mohawk Hill, Talcottville",NY,"Oneida County",America/New_York,315,NA,US,43.48,-75.33,4870 +13310,STANDARD,0,Bouckville,,"Pine Woods",NY,"Madison County",America/New_York,315,NA,US,42.88,-75.55,560 +13312,"PO BOX",0,Brantingham,Glenfield,,NY,"Lewis County",America/New_York,315,NA,US,43.7,-75.29,347 +13313,"PO BOX",0,Bridgewater,,,NY,"Oneida County",America/New_York,315,NA,US,42.88,-75.27,669 +13314,STANDARD,0,Brookfield,,,NY,"Madison County",America/New_York,315,NA,US,42.81,-75.31,360 +13315,STANDARD,0,"Burlington Flats","Burlngtn Flt","Burlington, Exeter",NY,"Otsego County",America/New_York,,NA,US,42.74,-75.18,1170 +13316,STANDARD,0,Camden,,"Empeyville, Florence, Hillsboro, Osceola",NY,"Oneida County",America/New_York,315,NA,US,43.33,-75.74,5560 +13317,STANDARD,0,Canajoharie,Ames,"Browns Hollow, Buel, Flat Creek, Mapletown, Marshville, Sprout Brook, Van Deusenville",NY,"Montgomery County",America/New_York,518,NA,US,42.9,-74.57,3240 +13318,STANDARD,0,Cassville,,"North Bridgewater",NY,"Oneida County",America/New_York,315,NA,US,42.94,-75.25,1150 +13319,STANDARD,0,Chadwicks,,Willowvale,NY,"Oneida County",America/New_York,315,NA,US,43.02,-75.27,760 +13320,STANDARD,0,"Cherry Valley",,,NY,"Otsego County",America/New_York,607,NA,US,42.79,-74.75,1680 +13321,"PO BOX",0,"Clark Mills",,,NY,"Oneida County",America/New_York,315,NA,US,43.09,-75.37,1080 +13322,STANDARD,0,Clayville,,,NY,"Oneida County",America/New_York,315,NA,US,42.97,-75.25,1030 +13323,STANDARD,0,Clinton,,"Kirkland, Lairdsville",NY,"Oneida County",America/New_York,315,NA,US,43.04,-75.37,8510 +13324,STANDARD,0,"Cold Brook",Ohio,"Grant, Gray, Morehouse, Morehouseville, Noblesboro",NY,"Herkimer County",America/New_York,315,NA,US,43.24,-75.03,1690 +13325,STANDARD,0,Constableville,Constablevle,"Fish Creek, West Turin",NY,"Lewis County",America/New_York,315,NA,US,43.56,-75.42,810 +13326,STANDARD,0,Cooperstown,"Hartwick Seminary, Hrtwk Seminry",,NY,"Otsego County",America/New_York,607,NA,US,42.7,-74.92,4290 +13327,STANDARD,0,Croghan,,"Belfort, Indian River, Kirschnerville",NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.39,1980 +13328,STANDARD,0,Deansboro,,,NY,"Oneida County",America/New_York,315,NA,US,42.99,-75.42,970 +13329,STANDARD,0,Dolgeville,,"Manheim, Oppenheim",NY,"Herkimer County",America/New_York,315,NA,US,43.1,-74.77,3070 +13331,STANDARD,0,"Eagle Bay",,"Big Moose",NY,"Herkimer County",America/New_York,315,NA,US,43.87,-74.88,210 +13332,STANDARD,0,Earlville,"Lebanon, Poolville","Lebanon Center, South Hamilton, South Lebanon",NY,"Madison County",America/New_York,315,NA,US,42.74,-75.54,2230 +13333,STANDARD,0,"East Springfield","E Springfield",,NY,"Otsego County",America/New_York,607,NA,US,42.84,-74.82,90 +13334,STANDARD,0,Eaton,,"Georgtown Station, Pierceville",NY,"Madison County",America/New_York,315,NA,US,42.84,-75.61,1090 +13335,STANDARD,0,Edmeston,,,NY,"Otsego County",America/New_York,,NA,US,42.69,-75.24,1370 +13337,STANDARD,0,"Fly Creek",,"Cattown, Oaksville, Otsego",NY,"Otsego County",America/New_York,,NA,US,42.71,-74.98,670 +13338,STANDARD,0,Forestport,,"Atwell, Forestport Station, Honnedaga Lake, Kayuta Lake, Mckeever, Otter Lake",NY,"Oneida County",America/New_York,315,NA,US,43.44,-75.2,1040 +13339,STANDARD,0,"Fort Plain",,"Ephratah, Ft Plain, Hallsville, Hessville, Minden, Mindenville, Sand Hill, Starkville, Stone Arabia",NY,"Montgomery County",America/New_York,518,NA,US,42.93,-74.62,5190 +13340,STANDARD,0,Frankfort,Schuyler,"Frankfort Center, North Ilion",NY,"Herkimer County",America/New_York,315,NA,US,43.03,-75.07,6810 +13341,"PO BOX",0,"Franklin Springs","Franklin Spgs",,NY,"Oneida County",America/New_York,315,NA,US,43.04,-75.4,150 +13342,STANDARD,0,Garrattsville,,,NY,"Otsego County",America/New_York,607,NA,US,42.65,-75.2,251 +13343,STANDARD,0,Glenfield,,"Chase Lake, Otter Creek, Pine Grove",NY,"Lewis County",America/New_York,315,NA,US,43.75,-75.31,1450 +13345,STANDARD,0,Greig,,,NY,"Lewis County",America/New_York,315,NA,US,43.69,-75.32,177 +13346,STANDARD,0,Hamilton,,"Colgate, Randallsville",NY,"Madison County",America/New_York,315,NA,US,42.82,-75.54,3250 +13348,STANDARD,0,Hartwick,,"Patent, Snowden",NY,"Otsego County",America/New_York,607,NA,US,42.65,-75.04,1140 +13350,STANDARD,0,Herkimer,,"East Herkimer",NY,"Herkimer County",America/New_York,315,NA,US,43.02,-74.99,7020 +13352,"PO BOX",0,Hinckley,,,NY,"Oneida County",America/New_York,315,NA,US,43.31,-75.12,260 +13353,"PO BOX",0,Hoffmeister,,,NY,"Hamilton County",America/New_York,,NA,US,43.4,-74.72,59 +13354,STANDARD,0,"Holland Patent","Holland Patnt","East Floyd, Steuben, Steuben Valley",NY,"Oneida County",America/New_York,315,NA,US,43.24,-75.25,3110 +13355,STANDARD,0,Hubbardsville,,,NY,"Madison County",America/New_York,315,NA,US,42.81,-75.46,710 +13357,STANDARD,0,Ilion,,"Cedarville, Columbia, Columbia Center, North Columbia, South Ilion, Spinnerville",NY,"Herkimer County",America/New_York,315,NA,US,43.01,-75.04,8580 +13360,STANDARD,0,Inlet,,,NY,"Hamilton County",America/New_York,315,NA,US,43.72,-74.73,360 +13361,STANDARD,0,Jordanville,,,NY,"Herkimer County",America/New_York,315,NA,US,42.91,-74.95,630 +13362,"PO BOX",0,Knoxboro,,,NY,"Oneida County",America/New_York,315,NA,US,42.98,-75.52,150 +13363,STANDARD,0,"Lee Center",,"Stokes, West Lee",NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.51,2050 +13364,"PO BOX",0,Leonardsville,,,NY,"Madison County",America/New_York,315,NA,US,42.8,-75.26,327 +13365,STANDARD,0,"Little Falls",,Salisbury,NY,"Herkimer County",America/New_York,315,NA,US,43.04,-74.85,6980 +13367,STANDARD,0,Lowville,"Beaver River","Dadville, Harrisburg, Montague, New Breman, Watson, West Lowville",NY,"Lewis County",America/New_York,315,NA,US,43.78,-75.48,7160 +13368,STANDARD,0,"Lyons Falls",,"Goulds Mill, Lyonsdale",NY,"Lewis County",America/New_York,315,NA,US,43.61,-75.36,1000 +13401,"PO BOX",0,"Mc Connellsville","Mc Conelsvile",,NY,"Oneida County",America/New_York,315,NA,US,43.27,-75.69,159 +13402,STANDARD,0,Madison,,,NY,"Madison County",America/New_York,315,NA,US,42.89,-75.51,1260 +13403,STANDARD,0,Marcy,,,NY,"Oneida County",America/New_York,315,NA,US,43.17,-75.29,4360 +13404,"PO BOX",0,Martinsburg,,,NY,"Lewis County",America/New_York,315,NA,US,43.74,-75.47,161 +13406,STANDARD,0,Middleville,,Fairfield,NY,"Herkimer County",America/New_York,315,NA,US,43.13,-74.92,480 +13407,STANDARD,0,Mohawk,,"Dennison Corners, Fort Herkimer, German Flatts, Paines Hollow",NY,"Herkimer County",America/New_York,315,NA,US,43,-75,4210 +13408,STANDARD,0,Morrisville,,"Morrisville Station",NY,"Madison County",America/New_York,315,NA,US,42.89,-75.64,2050 +13409,STANDARD,0,Munnsville,"Pratts Hollow","Stockbridge, Valley Mills",NY,"Madison County",America/New_York,315,NA,US,42.97,-75.58,2050 +13410,"PO BOX",0,Nelliston,,,NY,"Montgomery County",America/New_York,518,NA,US,42.93,-74.61,462 +13411,STANDARD,0,"New Berlin","S Edmeston, South Edmeston","Columbus, Hoboken, Pittsfield",NY,"Chenango County",America/New_York,607,NA,US,42.62,-75.33,2710 +13413,STANDARD,0,"New Hartford",,"New Hartfd",NY,"Oneida County",America/New_York,315,NA,US,43.07,-75.28,14160 +13415,STANDARD,0,"New Lisbon",,Stetsonville,NY,"Otsego County",America/New_York,607,NA,US,42.6,-75.2,56 +13416,STANDARD,0,Newport,,,NY,"Herkimer County",America/New_York,315,NA,US,43.18,-75.01,1990 +13417,STANDARD,0,"New York Mills","New York Mls","Ny Mills",NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.29,2730 +13418,STANDARD,0,"North Brookfield","N Brookfield",,NY,"Madison County",America/New_York,315,NA,US,42.85,-75.38,181 +13420,STANDARD,0,"Old Forge",,,NY,"Herkimer County",America/New_York,315,NA,US,43.71,-74.97,1380 +13421,STANDARD,0,Oneida,,"Kenwood, Merrillsville, Oneida Castle, Scribner Corners",NY,"Madison County",America/New_York,315,NA,US,43.08,-75.65,11040 +13424,STANDARD,0,Oriskany,,,NY,"Oneida County",America/New_York,315,NA,US,43.15,-75.33,1980 +13425,STANDARD,0,"Oriskany Falls","Oriskany Fls",Augusta,NY,"Oneida County",America/New_York,315,NA,US,42.93,-75.46,1620 +13426,"PO BOX",0,Orwell,,,NY,"Oswego County",America/New_York,315,NA,US,43.56,-75.95,227 +13428,STANDARD,0,"Palatine Bridge","Palatine Brg",,NY,"Montgomery County",America/New_York,518,NA,US,42.92,-74.55,1240 +13431,STANDARD,0,Poland,,"Gravesville, Russia",NY,"Herkimer County",America/New_York,315,NA,US,43.22,-75.06,1710 +13433,STANDARD,0,"Port Leyden",,"Collinsville, Fowlersville, Leyden, Moose River",NY,"Lewis County",America/New_York,315,NA,US,43.58,-75.34,1410 +13435,"PO BOX",0,Prospect,,,NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.15,380 +13436,STANDARD,0,"Raquette Lake",,Brightside,NY,"Hamilton County",America/New_York,315,NA,US,43.81,-74.65,132 +13437,STANDARD,0,Redfield,,,NY,"Oswego County",America/New_York,315,NA,US,43.59,-75.81,340 +13438,STANDARD,0,Remsen,,"North Wilmurt",NY,"Oneida County",America/New_York,315,NA,US,43.32,-75.18,3040 +13439,STANDARD,0,"Richfield Springs","Richfld Spgs","Cullen, Richfield, South Columbia, Warren",NY,"Otsego County",America/New_York,315,NA,US,42.85,-74.98,3100 +13440,STANDARD,0,Rome,,"Bartlett, Camroden, Coonrod, Floyd, Fort Stanwix National Monume, Greenway, Lake Delta, Lee, Ridge Mills, Seifert Corners, Spencer Settlement, Stanwix, Stanwix Heights",NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.47,32860 +13441,STANDARD,0,Rome,,,NY,"Oneida County",America/New_York,315,NA,US,43.23,-75.41,0 +13442,"PO BOX",0,Rome,,,NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.47,980 +13449,UNIQUE,0,Rome,,"Brm Customer",NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.47,0 +13450,STANDARD,0,Roseboom,,,NY,"Otsego County",America/New_York,607,NA,US,42.7,-74.81,200 +13452,STANDARD,0,"Saint Johnsville","St Johnsville","Crum Creek, Johnsville, Kringsbush, Lassellsville, Scotchbush",NY,"Montgomery County",America/New_York,518,NA,US,43,-74.67,3690 +13454,STANDARD,0,"Salisbury Center","Salisbury Ctr",,NY,"Herkimer County",America/New_York,315,NA,US,43.22,-74.76,680 +13455,"PO BOX",0,Sangerfield,,,NY,"Oneida County",America/New_York,315,NA,US,42.91,-75.37,109 +13456,STANDARD,0,Sauquoit,Paris,,NY,"Oneida County",America/New_York,315,NA,US,43,-75.26,3770 +13457,"PO BOX",0,"Schuyler Lake",,,NY,"Otsego County",America/New_York,,NA,US,42.78,-75.02,239 +13459,STANDARD,0,"Sharon Springs","Sharon Spgs",,NY,"Schoharie County",America/New_York,518,NA,US,42.79,-74.61,1680 +13460,STANDARD,0,Sherburne,,,NY,"Chenango County",America/New_York,607,NA,US,42.67,-75.49,3790 +13461,STANDARD,0,Sherrill,,,NY,"Oneida County",America/New_York,315,NA,US,43.07,-75.59,2900 +13464,STANDARD,0,Smyrna,,"Bonney, Upperville",NY,"Chenango County",America/New_York,607,NA,US,42.68,-75.56,970 +13465,STANDARD,0,Solsville,,,NY,"Madison County",America/New_York,315,NA,US,42.91,-75.51,0 +13468,STANDARD,0,"Springfield Center","Springfld Ctr","Springfld Center",NY,"Otsego County",America/New_York,607,NA,US,42.82,-74.87,430 +13469,STANDARD,0,Stittville,,,NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.3,710 +13470,STANDARD,0,Stratford,,,NY,"Fulton County",America/New_York,,NA,US,43.18,-74.68,500 +13471,STANDARD,0,Taberg,,"Annsville, Point Rock",NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.61,2580 +13472,"PO BOX",0,Thendara,,,NY,"Herkimer County",America/New_York,315,NA,US,43.7,-75.07,177 +13473,STANDARD,0,Turin,,Houseville,NY,"Lewis County",America/New_York,315,NA,US,43.62,-75.4,650 +13475,STANDARD,0,"Van Hornesville","Van Hornesvle",,NY,"Herkimer County",America/New_York,315,NA,US,42.89,-74.83,164 +13476,STANDARD,0,Vernon,,,NY,"Oneida County",America/New_York,315,NA,US,43.07,-75.53,2930 +13477,STANDARD,0,"Vernon Center",,,NY,"Oneida County",America/New_York,315,NA,US,43.05,-75.5,1150 +13478,STANDARD,0,Verona,,,NY,"Oneida County",America/New_York,315,NA,US,43.13,-75.57,2790 +13479,"PO BOX",0,"Washington Mills","Washingtn Mls",,NY,"Oneida County",America/New_York,315,NA,US,43.05,-75.27,142 +13480,STANDARD,0,Waterville,,"Conger Corners, Daytonville, Stockwell",NY,"Oneida County",America/New_York,315,NA,US,42.93,-75.38,2880 +13482,STANDARD,0,"West Burlington","W Burlington",,NY,"Otsego County",America/New_York,607,NA,US,42.69,-75.19,56 +13483,STANDARD,0,Westdale,,,NY,"Oneida County",America/New_York,315,NA,US,43.4,-75.83,270 +13484,"PO BOX",0,"West Eaton",,,NY,"Madison County",America/New_York,315,NA,US,42.87,-75.66,221 +13485,STANDARD,0,"West Edmeston",,"South Brookfield",NY,"Madison County",America/New_York,"315,607",NA,US,42.78,-75.31,1010 +13486,STANDARD,0,Westernville,,"Big Brook, Frenchville",NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.38,720 +13488,STANDARD,0,Westford,,"Maple Valley",NY,"Otsego County",America/New_York,,NA,US,42.69,-74.75,220 +13489,STANDARD,0,"West Leyden",,,NY,"Lewis County",America/New_York,315,NA,US,43.46,-75.52,580 +13490,STANDARD,0,Westmoreland,,Hecla,NY,"Oneida County",America/New_York,315,NA,US,43.11,-75.4,1200 +13491,STANDARD,0,"West Winfield","West Exeter","East Winfield, Millers Mills, North Winfield, Plainfield, Plainfield Center, Unadilla Forks, Winfield",NY,"Herkimer County",America/New_York,315,NA,US,42.88,-75.19,3220 +13492,STANDARD,0,Whitesboro,,"Walesville, Whitestown",NY,"Oneida County",America/New_York,315,NA,US,43.12,-75.29,10530 +13493,STANDARD,0,Williamstown,,Williamstn,NY,"Oswego County",America/New_York,315,NA,US,43.42,-75.88,1680 +13494,STANDARD,0,Woodgate,,,NY,"Oneida County",America/New_York,315,NA,US,43.52,-75.15,260 +13495,STANDARD,0,Yorkville,,,NY,"Oneida County",America/New_York,315,NA,US,43.11,-75.27,1810 +13501,STANDARD,0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,30390 +13502,STANDARD,0,Utica,Deerfield,Schuyler,NY,"Oneida County",America/New_York,315,NA,US,43.14,-75.15,25510 +13503,"PO BOX",0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,645 +13504,"PO BOX",0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,234 +13505,"PO BOX",0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,301 +13599,UNIQUE,0,Utica,,"Brm Customer",NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,0 +13601,STANDARD,0,Watertown,"Glen Park",Wtown,NY,"Jefferson County",America/New_York,315,NA,US,43.97,-75.91,29750 +13602,STANDARD,0,"Fort Drum",Watertown,Wtown,NY,"Jefferson County",America/New_York,315,NA,US,44.07,-75.78,4150 +13603,STANDARD,0,Watertown,"Fort Drum",,NY,"Jefferson County",America/New_York,315,NA,US,44.04,-75.79,10450 +13605,STANDARD,0,Adams,Smithville,,NY,"Jefferson County",America/New_York,315,NA,US,43.8,-76.02,3870 +13606,STANDARD,0,"Adams Center",,,NY,"Jefferson County",America/New_York,315,NA,US,43.85,-75.99,2380 +13607,STANDARD,0,"Alexandria Bay","Alex Bay, Point Vivian","Alexandra Bay, Alexandria, Collins Landing, Edgewood Park, St Lawrence Park, Westminster Park",NY,"Jefferson County",America/New_York,315,NA,US,44.33,-75.91,1580 +13608,STANDARD,0,Antwerp,,Wegatchie,NY,"Jefferson County",America/New_York,315,NA,US,44.25,-75.62,1240 +13611,"PO BOX",0,Belleville,,,NY,"Jefferson County",America/New_York,315,NA,US,43.78,-76.11,363 +13612,STANDARD,0,"Black River",,,NY,"Jefferson County",America/New_York,315,NA,US,44,-75.79,2330 +13613,STANDARD,0,"Brasher Falls",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.8,-74.79,2140 +13614,STANDARD,0,"Brier Hill",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.54,-75.68,240 +13615,"PO BOX",0,Brownville,,"Paddy Hill",NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.99,1307 +13616,STANDARD,0,Calcium,,,NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.84,1430 +13617,STANDARD,0,Canton,,"Bucks Bridge, Crary Mills, Eddy, Langdon Corners, Morley, North Russell, Pierrepont, West Pierrepont",NY,"St. Lawrence County",America/New_York,315,NA,US,44.59,-75.17,6980 +13618,STANDARD,0,"Cape Vincent",,,NY,"Jefferson County",America/New_York,315,NA,US,44.12,-76.33,1610 +13619,STANDARD,0,Carthage,,"Champion, Champion Huddle, Herrings, W Carthage, West Carthage, Wilna",NY,"Jefferson County",America/New_York,315,NA,US,43.98,-75.6,8290 +13620,STANDARD,0,Castorland,,,NY,"Lewis County",America/New_York,315,NA,US,43.88,-75.51,1890 +13621,STANDARD,0,"Chase Mills",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.86,-75.07,550 +13622,STANDARD,0,Chaumont,,,NY,"Jefferson County",America/New_York,315,NA,US,44.06,-76.13,1980 +13623,"PO BOX",0,"Chippewa Bay",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.45,-75.75,45 +13624,STANDARD,0,Clayton,"Frontenac, Grenell, Murray Isle",Grindstone,NY,"Jefferson County",America/New_York,315,NA,US,44.23,-76.08,3790 +13625,STANDARD,0,Colton,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.54,-74.93,1700 +13626,STANDARD,0,Copenhagen,"Barnes Corners, Barnes Cors, South Rutland","S Rutland",NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.67,1780 +13627,"PO BOX",0,"Deer River",,,NY,"Lewis County",America/New_York,315,NA,US,43.94,-75.59,102 +13628,"PO BOX",0,Deferiet,,,NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.68,341 +13630,STANDARD,0,"De Kalb Junction","De Kalb Jct",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.48,-75.3,1040 +13631,"PO BOX",0,Denmark,,,NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.58,23 +13632,"PO BOX",0,Depauville,,,NY,"Jefferson County",America/New_York,315,NA,US,44.13,-76.01,371 +13633,STANDARD,0,"De Peyster",,Depeyster,NY,"St. Lawrence County",America/New_York,315,NA,US,44.5,-75.46,233 +13634,STANDARD,0,Dexter,,"Adams Cove, Guffin Bay, Muskalounge, Perch River, Pillar Point, Sherwin Bay",NY,"Jefferson County",America/New_York,315,NA,US,44,-76.04,3490 +13635,STANDARD,0,Edwards,,"S Edwards, South Edwards",NY,"St. Lawrence County",America/New_York,315,NA,US,44.32,-75.25,870 +13636,STANDARD,0,Ellisburg,,,NY,"Jefferson County",America/New_York,315,NA,US,43.74,-76.12,250 +13637,STANDARD,0,"Evans Mills",,"Le Ray, Pamelia, Pamelia Four Corners",NY,"Jefferson County",America/New_York,315,NA,US,44.08,-75.8,4040 +13638,STANDARD,0,"Felts Mills",,Rutland,NY,"Jefferson County",America/New_York,315,NA,US,44.02,-75.74,390 +13639,STANDARD,0,Fine,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.25,-75.13,228 +13640,STANDARD,0,"Wellesley Island","Fineview, Wellesley Is",,NY,"Jefferson County",America/New_York,315,NA,US,44.3,-76.03,440 +13641,"PO BOX",0,"Fishers Landing","Fishers Lndg",,NY,"Jefferson County",America/New_York,315,NA,US,44.27,-76,128 +13642,STANDARD,0,Gouverneur,Balmat,"Brasie Corners, Elmdale, Emeryville, Fowler, Fullerville, Macomb, Natural Dam, Pierces Corner, Somerville",NY,"St. Lawrence County",America/New_York,315,NA,US,44.33,-75.46,6770 +13643,"PO BOX",0,"Great Bend",,"Gt Bend",NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.72,372 +13645,"PO BOX",0,Hailesboro,,,NY,"St Lawrence County",America/New_York,315,NA,US,44.28,-75.42,239 +13646,STANDARD,0,Hammond,,"Edwardsville, Rossie, Ruby Corner",NY,"St. Lawrence County",America/New_York,315,NA,US,44.44,-75.69,1630 +13647,"PO BOX",0,"Hannawa Falls",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.61,-74.98,564 +13648,STANDARD,0,Harrisville,,"Diana, East Pitcairn, Geers Corners, Lake Bonaparte, Pitcairn",NY,"Lewis County",America/New_York,315,NA,US,44.15,-75.32,1820 +13649,"PO BOX",0,Helena,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.92,-74.72,153 +13650,STANDARD,0,Henderson,Woodville,"Jefferson Park, Rural Hill",NY,"Jefferson County",America/New_York,315,NA,US,43.8,-76.19,1130 +13651,"PO BOX",0,"Henderson Harbor","Henderson Hbr",,NY,"Jefferson County",America/New_York,315,NA,US,43.87,-76.18,201 +13652,STANDARD,0,Hermon,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.46,-75.23,1580 +13654,STANDARD,0,Heuvelton,,"Pope Mills",NY,"St. Lawrence County",America/New_York,315,NA,US,44.61,-75.4,1630 +13655,STANDARD,0,Hogansburg,Akwesasne,,NY,"St. Lawrence County",America/New_York,518,NA,US,44.97,-74.63,3850 +13656,STANDARD,0,"La Fargeville",,"Lafargeville, Omar, Stone Mills",NY,"Jefferson County",America/New_York,315,NA,US,44.18,-75.95,2300 +13657,"PO BOX",0,Limerick,,,NY,"Jefferson County",America/New_York,315,NA,US,44.03,-76.01,0 +13658,STANDARD,0,Lisbon,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.72,-75.26,2100 +13659,STANDARD,0,Lorraine,,"Diamond, Worth",NY,"Jefferson County",America/New_York,315,NA,US,43.74,-75.85,450 +13660,STANDARD,0,Madrid,,"Madrid Springs",NY,"St. Lawrence County",America/New_York,315,NA,US,44.75,-75.15,1720 +13661,STANDARD,0,Mannsville,,,NY,"Jefferson County",America/New_York,315,NA,US,43.71,-76.06,1360 +13662,STANDARD,0,Massena,,"Massena Center, Massena Springs",NY,"St. Lawrence County",America/New_York,315,NA,US,44.92,-74.89,12960 +13664,STANDARD,0,Morristown,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.58,-75.64,420 +13665,STANDARD,0,"Natural Bridge","Natural Brg",,NY,"Jefferson County",America/New_York,315,NA,US,44.05,-75.43,710 +13666,"PO BOX",0,"Newton Falls",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.21,-74.97,255 +13667,STANDARD,0,Norfolk,,Grantville,NY,"St. Lawrence County",America/New_York,315,NA,US,44.8,-74.98,2630 +13668,STANDARD,0,Norwood,,"Hewittville, Knapps Station, North Stockholm, Yaleville",NY,"St. Lawrence County",America/New_York,315,NA,US,44.74,-74.99,2710 +13669,STANDARD,0,Ogdensburg,,"Ogd, Red Mills",NY,"St. Lawrence County",America/New_York,315,NA,US,44.7,-75.47,11730 +13670,STANDARD,0,Oswegatchie,,"Lower Oswegatchie",NY,"St. Lawrence County",America/New_York,315,NA,US,44.18,-75.07,260 +13671,"PO BOX",0,Antwerp,,,NY,"Jefferson County",America/New_York,315,NA,US,44.28,-75.62,22 +13672,STANDARD,0,Parishville,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.47,-74.66,550 +13673,STANDARD,0,Philadelphia,,Phila,NY,"Jefferson County",America/New_York,315,NA,US,44.15,-75.7,1950 +13674,"PO BOX",0,"Pierrepont Manor","Pierrepnt Mnr",,NY,"Jefferson County",America/New_York,315,NA,US,43.74,-76.05,252 +13675,STANDARD,0,Plessis,,,NY,"Jefferson County",America/New_York,315,NA,US,44.28,-75.85,214 +13676,STANDARD,0,Potsdam,,"Eben, Parishville Center, Sandfordville, Sissonville, Slab City, West Parishville, West Potsdam",NY,"St. Lawrence County",America/New_York,315,NA,US,44.66,-74.98,8890 +13677,"PO BOX",0,Pyrites,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.51,-75.18,112 +13678,"PO BOX",0,Raymondville,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.81,-74.99,300 +13679,STANDARD,0,Redwood,,,NY,"Jefferson County",America/New_York,315,NA,US,44.32,-75.77,1540 +13680,STANDARD,0,"Rensselaer Falls","Rensslaer Fls",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.59,-75.32,960 +13681,STANDARD,0,Richville,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.41,-75.39,730 +13682,STANDARD,0,Rodman,,"E Rodman",NY,"Jefferson County",America/New_York,315,NA,US,43.84,-75.9,840 +13683,"PO BOX",0,Rooseveltown,,,NY,"St Lawrence County",America/New_York,315,NA,US,44.96,-74.73,462 +13684,STANDARD,0,Russell,Degrasse,"Clare, Hatchs Corner, South Russell",NY,"St. Lawrence County",America/New_York,315,NA,US,44.36,-75.04,980 +13685,STANDARD,0,"Sackets Harbor","Sackets Hbr","Boultons Beach, Hounsfield",NY,"Jefferson County",America/New_York,315,NA,US,43.94,-76.12,2100 +13687,STANDARD,0,"South Colton",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.5,-74.88,440 +13690,STANDARD,0,"Star Lake",,"Benson Mines",NY,"St. Lawrence County",America/New_York,315,NA,US,44.16,-75.03,630 +13691,STANDARD,0,Theresa,,,NY,"Jefferson County",America/New_York,315,NA,US,44.21,-75.79,2600 +13692,"PO BOX",0,"Thousand Island Park","Thous Is Pk, Thousnd Is Pk",,NY,"Jefferson County",America/New_York,315,NA,US,44.29,-76.03,68 +13693,STANDARD,0,"Three Mile Bay","Three Mle Bay",,NY,"Jefferson County",America/New_York,315,NA,US,43.99,-76.25,480 +13694,STANDARD,0,Waddington,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.85,-75.19,1340 +13695,"PO BOX",0,Wanakena,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.13,-74.92,73 +13696,STANDARD,0,"West Stockholm","W Stockholm",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.69,-74.89,200 +13697,STANDARD,0,Winthrop,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.74,-74.8,1940 +13699,UNIQUE,0,Potsdam,,"Clarkson University",NY,"St Lawrence County",America/New_York,315,NA,US,44.66,-74.98,58 +13730,STANDARD,0,Afton,,"Afton Lake, Nineveh Junction, North Afton",NY,"Chenango County",America/New_York,607,NA,US,42.22,-75.52,2290 +13731,STANDARD,0,Andes,,,NY,"Delaware County",America/New_York,845,NA,US,42.18,-74.78,740 +13732,STANDARD,0,Apalachin,,"South Apalachin",NY,"Tioga County",America/New_York,607,NA,US,42.07,-76.16,7230 +13733,STANDARD,0,Bainbridge,,"Bennettsville, Coventryville, New Berlin Junction, West Bainbridge",NY,"Chenango County",America/New_York,607,NA,US,42.29,-75.48,4180 +13734,STANDARD,0,Barton,,,NY,"Tioga County",America/New_York,607,NA,US,42.07,-76.41,1900 +13736,STANDARD,0,Berkshire,,"East Berkshire, Jenksville, Ketchumville, Speedsville",NY,"Tioga County",America/New_York,607,NA,US,42.3,-76.18,2160 +13737,"PO BOX",0,"Bible School Park","Bible Sch Pk",,NY,"Broome County",America/New_York,607,NA,US,42.1,-75.97,51 +13738,"PO BOX",0,"Blodgett Mills","Blodgett Mls",,NY,"Cortland County",America/New_York,607,NA,US,42.56,-76.12,135 +13739,STANDARD,0,Bloomville,,"Doonan Corners, Kortright, Kortright Center",NY,"Delaware County",America/New_York,,NA,US,42.33,-74.8,740 +13740,STANDARD,0,"Bovina Center",,,NY,"Delaware County",America/New_York,,NA,US,42.26,-74.78,410 +13743,STANDARD,0,Candor,,"Hubbardtown, West Candor",NY,"Tioga County",America/New_York,607,NA,US,42.23,-76.34,3230 +13744,STANDARD,0,"Castle Creek",,,NY,"Broome County",America/New_York,607,NA,US,42.22,-75.91,1000 +13745,"PO BOX",0,"Chenango Bridge","Chenango Brg",,NY,"Broome County",America/New_York,607,NA,US,42.16,-75.86,347 +13746,STANDARD,0,"Chenango Forks","Chenango Fks","North Fenton, Quinneville",NY,"Broome County",America/New_York,,NA,US,42.23,-75.84,2250 +13747,"PO BOX",0,Colliersville,,,NY,"Otsego County",America/New_York,607,NA,US,42.49,-74.98,128 +13748,STANDARD,0,Conklin,,,NY,"Broome County",America/New_York,607,NA,US,42.03,-75.8,3240 +13749,"PO BOX",0,Corbettsville,,,NY,"Broome County",America/New_York,607,NA,US,42.01,-75.79,100 +13750,STANDARD,0,Davenport,,"North Kortright, Sturges Corner",NY,"Delaware County",America/New_York,607,NA,US,42.47,-74.84,910 +13751,STANDARD,0,"Davenport Center","Davenport Ctr",,NY,"Delaware County",America/New_York,607,NA,US,42.45,-74.9,190 +13752,STANDARD,0,Delancey,,Cabinhill,NY,"Delaware County",America/New_York,,NA,US,42.2,-74.97,570 +13753,STANDARD,0,Delhi,Meredith,"Fraser, Lake Delaware, West Delhi",NY,"Delaware County",America/New_York,607,NA,US,42.27,-74.91,3400 +13754,STANDARD,0,Deposit,,"Barbourville, China, Hambletville, Mcclure, North Sanford, Oquaga Lake, Sanford, Stilesville, Tompkins",NY,"Broome County",America/New_York,607,NA,US,42.06,-75.42,2480 +13755,STANDARD,0,Downsville,Shinhopple,"Corbett, Gregorytown",NY,"Delaware County",America/New_York,607,NA,US,42.08,-74.99,1010 +13756,STANDARD,0,"East Branch",,"Burnwood, Harvard, Peakville",NY,"Delaware County",America/New_York,,NA,US,41.98,-75.11,350 +13757,STANDARD,0,"East Meredith",,"Shackport, West Meredith",NY,"Delaware County",America/New_York,,NA,US,42.41,-74.88,870 +13758,"PO BOX",0,"East Pharsalia","E Pharsalia",,NY,"Chenango County",America/New_York,607,NA,US,42.59,-75.73,106 +13760,STANDARD,0,Endicott,Endwell,"Campville, Crestview Heights, Union Center, West Corners, West Endicott",NY,"Broome County",America/New_York,607,NA,US,42.13,-76.08,37590 +13761,"PO BOX",0,Endicott,,,NY,"Broome County",America/New_York,607,NA,US,42.09,-76.05,295 +13762,"PO BOX",0,Endwell,,,NY,"Broome County",America/New_York,607,NA,US,42.11,-76.02,113 +13763,"PO BOX",0,Endicott,,,NY,"Broome County",America/New_York,607,NA,US,42.09,-76.05,97 +13774,"PO BOX",0,"Fishs Eddy",,,NY,"Delaware County",America/New_York,607,NA,US,41.96,-75.15,204 +13775,STANDARD,0,Franklin,,"Bartlett Hollow, East Sidney, Leonta",NY,"Delaware County",America/New_York,607,NA,US,42.34,-75.16,1350 +13776,STANDARD,0,Gilbertsville,,Butternuts,NY,"Otsego County",America/New_York,607,NA,US,42.47,-75.32,500 +13777,STANDARD,0,"Glen Aubrey",,,NY,"Broome County",America/New_York,607,NA,US,42.25,-76,740 +13778,STANDARD,0,Greene,,"Coventry, Genegantslet, Lower Genegantslet Corner, Smithville, Smithville Center, Triangle",NY,"Chenango County",America/New_York,607,NA,US,42.32,-75.77,4870 +13780,STANDARD,0,Guilford,,"Guilford Center",NY,"Chenango County",America/New_York,607,NA,US,42.4,-75.49,940 +13782,STANDARD,0,Hamden,,,NY,"Delaware County",America/New_York,,NA,US,42.19,-74.99,490 +13783,STANDARD,0,Hancock,Cadosia,"Apex, French Woods, Hales Eddy, Kelsey, Lordville",NY,"Delaware County",America/New_York,607,NA,US,41.95,-75.27,1770 +13784,"PO BOX",0,Harford,,,NY,"Cortland County",America/New_York,607,NA,US,42.43,-76.22,264 +13786,STANDARD,0,Harpersfield,,"West Harpersfield",NY,"Delaware County",America/New_York,,NA,US,42.43,-74.68,300 +13787,STANDARD,0,Harpursville,,"Belden, Centre Village, Colesville, South Nineveh",NY,"Broome County",America/New_York,607,NA,US,42.17,-75.62,2950 +13788,STANDARD,0,Hobart,,,NY,"Delaware County",America/New_York,607,NA,US,42.37,-74.66,750 +13790,STANDARD,0,"Johnson City",,"East Maine, Westover",NY,"Broome County",America/New_York,607,NA,US,42.11,-75.96,14410 +13794,"PO BOX",0,Killawog,,,NY,"Broome County",America/New_York,607,NA,US,42.4,-76.02,105 +13795,STANDARD,0,Kirkwood,,"Fivemile Point, Langdon",NY,"Broome County",America/New_York,607,NA,US,42.03,-75.79,3250 +13796,STANDARD,0,Laurens,,"West Laurens",NY,"Otsego County",America/New_York,,NA,US,42.56,-75.13,1020 +13797,STANDARD,0,Lisle,,Centerlisle,NY,"Broome County",America/New_York,607,NA,US,42.35,-76,1820 +13801,STANDARD,0,"Mc Donough",,Mcdonough,NY,"Chenango County",America/New_York,607,NA,US,42.49,-75.76,1010 +13802,STANDARD,0,Maine,,,NY,"Broome County",America/New_York,607,NA,US,42.24,-76.04,750 +13803,STANDARD,0,Marathon,,"Freetown, Freetown Corners, Galatia, Hunts Corners, Lapeer, Messengerville, Texas Valley",NY,"Cortland County",America/New_York,607,NA,US,42.44,-76.03,3760 +13804,STANDARD,0,Masonville,,Whitman,NY,"Delaware County",America/New_York,607,NA,US,42.24,-75.37,350 +13806,STANDARD,0,Meridale,,,NY,"Delaware County",America/New_York,,NA,US,42.36,-74.95,170 +13807,STANDARD,0,Milford,,,NY,"Otsego County",America/New_York,607,NA,US,42.59,-74.94,1050 +13808,STANDARD,0,Morris,,"Elm Grove, Filer Corners, Maple Grove",NY,"Otsego County",America/New_York,607,NA,US,42.54,-75.24,1440 +13809,STANDARD,0,"Mount Upton",,Rockdale,NY,"Chenango County",America/New_York,607,NA,US,42.42,-75.38,1320 +13810,STANDARD,0,"Mount Vision",,Welcome,NY,"Otsego County",America/New_York,607,NA,US,42.57,-75.05,940 +13811,STANDARD,0,"Newark Valley",,"Tiona, Weltonville, West Newark",NY,"Tioga County",America/New_York,607,NA,US,42.22,-76.18,3770 +13812,STANDARD,0,Nichols,,"East Nichols, Hoopers Valley, Lounsberry",NY,"Tioga County",America/New_York,607,NA,US,42.03,-76.35,1940 +13813,STANDARD,0,Nineveh,,"Doraville, Vallonia Springs",NY,"Broome County",America/New_York,607,NA,US,42.19,-75.6,740 +13814,"PO BOX",0,"North Norwich",,,NY,"Chenango County",America/New_York,,NA,US,42.61,-75.53,321 +13815,STANDARD,0,Norwich,,"Chenango Lake, Kings Settlement, Springvale, Woods Corners",NY,"Chenango County",America/New_York,607,NA,US,42.53,-75.52,10770 +13820,STANDARD,0,Oneonta,,"Emmons, Milford Center, North Franklin, West End",NY,"Otsego County",America/New_York,607,NA,US,42.45,-75.06,13320 +13825,STANDARD,0,Otego,,Otsdawa,NY,"Otsego County",America/New_York,607,NA,US,42.39,-75.17,2750 +13826,STANDARD,0,Ouaquaga,Harpursville,,NY,"Broome County",America/New_York,607,NA,US,42.1,-75.64,116 +13827,STANDARD,0,Owego,,"Catatonk, Flemingville, Foster, Gaskill, Hullsville, South Owego, Straits Corners, Waits",NY,"Tioga County",America/New_York,607,NA,US,42.1,-76.26,9790 +13830,STANDARD,0,Oxford,Brisben,"East Mcdonough, Preston, South Oxford, Tyner",NY,"Chenango County",America/New_York,607,NA,US,42.44,-75.59,3820 +13832,STANDARD,0,Plymouth,,"Beaver Meadow",NY,"Chenango County",America/New_York,607,NA,US,42.66,-75.67,530 +13833,STANDARD,0,"Port Crane","Sanitaria Spg, Sanitaria Springs",Fenton,NY,"Broome County",America/New_York,,NA,US,42.16,-75.83,3570 +13834,STANDARD,0,Portlandville,,,NY,"Otsego County",America/New_York,607,NA,US,42.53,-74.97,152 +13835,STANDARD,0,Richford,"Harford Mills",,NY,"Tioga County",America/New_York,607,NA,US,42.35,-76.2,1190 +13837,"PO BOX",1,Shinhopple,,,NY,"Delaware County",America/New_York,,NA,US,42.03,-75.06,0 +13838,STANDARD,0,Sidney,,,NY,"Delaware County",America/New_York,607,NA,US,42.31,-75.39,3460 +13839,STANDARD,0,"Sidney Center",,"East Masonville, Franklin Depot, Ivanhoe, Merrickville",NY,"Delaware County",America/New_York,607,NA,US,42.29,-75.25,1130 +13840,"PO BOX",0,Smithboro,,,NY,"Tioga County",America/New_York,607,NA,US,42.03,-76.4,110 +13841,STANDARD,0,"Smithville Flats","Smithvle Flts",,NY,"Chenango County",America/New_York,607,NA,US,42.41,-75.84,430 +13842,STANDARD,0,"South Kortright","S Kortright",,NY,"Delaware County",America/New_York,,NA,US,42.37,-74.72,350 +13843,STANDARD,0,"South New Berlin","S New Berlin","Ambierville, Holmesville, Lathams Corners, Rockwells Mills, Whites Store",NY,"Chenango County",America/New_York,607,NA,US,42.53,-75.35,1430 +13844,STANDARD,0,"South Plymouth","So Plymouth","Kirk, North Pharsalia",NY,"Chenango County",America/New_York,607,NA,US,42.61,-75.67,620 +13845,"PO BOX",0,"Tioga Center",,Tioga,NY,"Tioga County",America/New_York,607,NA,US,42.05,-76.35,325 +13846,STANDARD,0,Treadwell,Franklin,,NY,"Delaware County",America/New_York,607,NA,US,42.34,-75.05,290 +13847,"PO BOX",0,"Trout Creek",,,NY,"Delaware County",America/New_York,607,NA,US,42.18,-75.29,184 +13848,"PO BOX",0,Tunnel,,,NY,"Broome County",America/New_York,607,NA,US,42.21,-75.72,51 +13849,STANDARD,0,Unadilla,,Youngs,NY,"Otsego County",America/New_York,607,NA,US,42.32,-75.31,3680 +13850,STANDARD,0,Vestal,,"Ross Corners, South Vestal, Tracy Creek, Twin Orchards, Vestal Center, Vestal Gardens, Willow Point",NY,"Broome County",America/New_York,607,NA,US,42.08,-76.05,18550 +13851,"PO BOX",0,Vestal,,,NY,"Broome County",America/New_York,607,NA,US,42.08,-76.05,223 +13856,STANDARD,0,Walton,,"Cleaver, Colchester, Hawleys, Northfield, Pineville, Readburn",NY,"Delaware County",America/New_York,607,NA,US,42.16,-75.13,4860 +13859,STANDARD,0,"Wells Bridge",,,NY,"Otsego County",America/New_York,,NA,US,42.37,-75.25,194 +13860,"PO BOX",0,"West Davenport","W Davenport",,NY,"Delaware County",America/New_York,607,NA,US,42.45,-74.94,141 +13861,STANDARD,0,"West Oneonta",,,NY,"Otsego County",America/New_York,,NA,US,42.51,-75.15,570 +13862,STANDARD,0,"Whitney Point",,"Clough Corners, Itaska, Upper Lisle",NY,"Broome County",America/New_York,607,NA,US,42.33,-75.96,3620 +13863,STANDARD,0,Willet,,,NY,"Cortland County",America/New_York,607,NA,US,42.46,-75.91,390 +13864,STANDARD,0,Willseyville,,"Gridleyville, South Danby",NY,"Tioga County",America/New_York,,NA,US,42.29,-76.37,950 +13865,STANDARD,0,Windsor,"W Windsor, West Windsor",,NY,"Broome County",America/New_York,607,NA,US,42.07,-75.64,5210 +13901,STANDARD,0,Binghamton,,"Glen Castle, Kattelville, Nimmonsburg, Port Dickinson",NY,"Broome County",America/New_York,607,NA,US,42.1,-75.91,15160 +13902,"PO BOX",0,Binghamton,,,NY,"Broome County",America/New_York,607,NA,US,42.09,-75.97,779 +13903,STANDARD,0,Binghamton,,"Conklin Forks, East Vestal, Hawleyton, Park Terrace",NY,"Broome County",America/New_York,607,NA,US,42.04,-75.89,14770 +13904,STANDARD,0,Binghamton,,"Hospital, West Colesville",NY,"Broome County",America/New_York,607,NA,US,42.13,-75.82,7140 +13905,STANDARD,0,Binghamton,,"Broadacres, Choconut Center, Dickinson, Hinmans Corners, West Chenango, Westview",NY,"Broome County",America/New_York,607,NA,US,42.17,-75.94,17830 +14001,STANDARD,0,Akron,,Newstead,NY,"Erie County",America/New_York,"585,716",NA,US,43.01,-78.49,8510 +14004,STANDARD,0,Alden,,Townline,NY,"Erie County",America/New_York,"585,716",NA,US,42.89,-78.49,9810 +14005,STANDARD,0,Alexander,,,NY,"Genesee County",America/New_York,585,NA,US,42.9,-78.26,1760 +14006,STANDARD,0,Angola,,,NY,"Erie County",America/New_York,716,NA,US,42.63,-79.02,8070 +14008,STANDARD,0,Appleton,,,NY,"Niagara County",America/New_York,716,NA,US,43.31,-78.63,1320 +14009,STANDARD,0,Arcade,,,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.53,-78.43,4780 +14010,"PO BOX",0,"Athol Springs",,,NY,"Erie County",America/New_York,,NA,US,42.73,-78.84,54 +14011,STANDARD,0,Attica,,Cowlesville,NY,"Wyoming County",America/New_York,585,NA,US,42.86,-78.28,5180 +14012,STANDARD,0,Barker,,,NY,"Niagara County",America/New_York,716,NA,US,43.32,-78.55,2110 +14013,STANDARD,0,Basom,Alabama,,NY,"Genesee County",America/New_York,585,NA,US,43.08,-78.39,1340 +14020,STANDARD,0,Batavia,,Bushville,NY,"Genesee County",America/New_York,585,NA,US,42.99,-78.18,17660 +14021,"PO BOX",0,Batavia,,,NY,"Genesee County",America/New_York,585,NA,US,42.99,-78.18,382 +14024,STANDARD,0,Bliss,,,NY,"Wyoming County",America/New_York,585,NA,US,42.58,-78.24,1400 +14025,STANDARD,0,Boston,,,NY,"Erie County",America/New_York,716,NA,US,42.61,-78.72,2860 +14026,STANDARD,0,Bowmansville,,,NY,"Erie County",America/New_York,,NA,US,42.94,-78.69,790 +14027,"PO BOX",0,Brant,,,NY,"Erie County",America/New_York,,NA,US,42.58,-79.02,310 +14028,STANDARD,0,Burt,,,NY,"Niagara County",America/New_York,716,NA,US,43.31,-78.71,1370 +14029,"PO BOX",0,Centerville,,,NY,"Allegany County",America/New_York,,NA,US,42.47,-78.25,82 +14030,STANDARD,0,Chaffee,,,NY,"Erie County",America/New_York,"585,716",NA,US,42.56,-78.5,1320 +14031,STANDARD,0,Clarence,,,NY,"Erie County",America/New_York,716,NA,US,42.98,-78.6,9570 +14032,STANDARD,0,"Clarence Center","Clarence Ctr",,NY,"Erie County",America/New_York,716,NA,US,43,-78.63,9090 +14033,STANDARD,0,Colden,,,NY,"Erie County",America/New_York,,NA,US,42.65,-78.68,2150 +14034,STANDARD,0,Collins,,Helmuth,NY,"Erie County",America/New_York,,NA,US,42.49,-78.86,1560 +14035,"PO BOX",0,"Collins Center","Collins Ctr",,NY,"Erie County",America/New_York,716,NA,US,42.49,-78.85,121 +14036,STANDARD,0,Corfu,,Pembroke,NY,"Genesee County",America/New_York,585,NA,US,42.96,-78.4,4360 +14037,STANDARD,0,Cowlesville,,,NY,"Wyoming County",America/New_York,585,NA,US,42.8,-78.44,1070 +14038,"PO BOX",0,Crittenden,,,NY,"Erie County",America/New_York,,NA,US,43.02,-78.51,114 +14039,STANDARD,0,Dale,,,NY,"Wyoming County",America/New_York,585,NA,US,42.82,-78.17,130 +14040,STANDARD,0,"Darien Center",,,NY,"Genesee County",America/New_York,585,NA,US,42.89,-78.39,2010 +14041,STANDARD,0,Dayton,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.42,-78.98,200 +14042,STANDARD,0,Delevan,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.49,-78.47,3310 +14043,STANDARD,0,Depew,,,NY,"Erie County",America/New_York,716,NA,US,42.91,-78.7,21390 +14047,STANDARD,0,Derby,,,NY,"Erie County",America/New_York,716,NA,US,42.68,-78.99,5580 +14048,STANDARD,0,Dunkirk,"Van Buren Bay","Chadwick Bay",NY,"Chautauqua County",America/New_York,716,NA,US,42.47,-79.33,11510 +14051,STANDARD,0,"East Amherst",Swormville,"E Amherst",NY,"Erie County",America/New_York,716,NA,US,43.04,-78.7,20310 +14052,STANDARD,0,"East Aurora",,,NY,"Erie County",America/New_York,"585,716",NA,US,42.76,-78.61,16610 +14054,STANDARD,0,"East Bethany",,"E Bethany",NY,"Genesee County",America/New_York,585,NA,US,42.91,-78.13,1250 +14055,STANDARD,0,"East Concord",Concord,"E Concord",NY,"Erie County",America/New_York,716,NA,US,42.55,-78.6,1310 +14056,"PO BOX",0,"East Pembroke",,"E Pembroke",NY,"Genesee County",America/New_York,585,NA,US,43,-78.31,426 +14057,STANDARD,0,Eden,,,NY,"Erie County",America/New_York,716,NA,US,42.65,-78.9,7570 +14058,STANDARD,0,Elba,,,NY,"Genesee County",America/New_York,585,NA,US,43.07,-78.18,1880 +14059,STANDARD,0,Elma,,,NY,"Erie County",America/New_York,,NA,US,42.83,-78.63,9000 +14060,STANDARD,0,"Farmersville Station","Farmersvl Sta",Farmersville,NY,"Cattaraugus County",America/New_York,,NA,US,42.44,-78.29,370 +14061,"PO BOX",0,Farnham,,,NY,"Erie County",America/New_York,,NA,US,42.59,-79.07,320 +14062,STANDARD,0,Forestville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.46,-79.17,2820 +14063,STANDARD,0,Fredonia,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.44,-79.33,9070 +14065,STANDARD,0,Freedom,Sandusky,,NY,"Cattaraugus County",America/New_York,585,NA,US,42.48,-78.32,1520 +14066,STANDARD,0,Gainesville,,,NY,"Wyoming County",America/New_York,585,NA,US,42.64,-78.13,930 +14067,STANDARD,0,Gasport,,,NY,"Niagara County",America/New_York,716,NA,US,43.19,-78.57,4440 +14068,STANDARD,0,Getzville,Amherst,,NY,"Erie County",America/New_York,716,NA,US,43.02,-78.75,6720 +14069,STANDARD,0,Glenwood,,,NY,"Erie County",America/New_York,,NA,US,42.6,-78.63,770 +14070,STANDARD,0,Gowanda,,,NY,"Erie County",America/New_York,716,NA,US,42.46,-78.93,4020 +14072,STANDARD,0,"Grand Island",,,NY,"Erie County",America/New_York,716,NA,US,43.01,-78.96,20490 +14075,STANDARD,0,Hamburg,,,NY,"Erie County",America/New_York,716,NA,US,42.72,-78.83,39880 +14080,STANDARD,0,Holland,,,NY,"Erie County",America/New_York,716,NA,US,42.63,-78.54,3830 +14081,STANDARD,0,Irving,,,NY,"Chautauqua County",America/New_York,,NA,US,42.56,-79.04,2280 +14082,STANDARD,0,"Java Center",,,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.66,-78.39,450 +14083,STANDARD,0,"Java Village",,,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.67,-78.44,157 +14085,STANDARD,0,"Lake View",,Lakeview,NY,"Erie County",America/New_York,716,NA,US,42.71,-78.93,7860 +14086,STANDARD,0,Lancaster,,,NY,"Erie County",America/New_York,716,NA,US,42.9,-78.66,33290 +14091,STANDARD,0,Lawtons,,,NY,"Erie County",America/New_York,,NA,US,42.54,-78.89,1130 +14092,STANDARD,0,Lewiston,"Stela Niagara, Stella Niagara",,NY,"Niagara County",America/New_York,716,NA,US,43.17,-79.04,10080 +14094,STANDARD,0,Lockport,,Pendleton,NY,"Niagara County",America/New_York,716,NA,US,43.16,-78.69,44800 +14095,"PO BOX",0,Lockport,,,NY,"Niagara County",America/New_York,716,NA,US,43.16,-78.69,680 +14098,STANDARD,0,Lyndonville,,,NY,"Orleans County",America/New_York,"585,716",NA,US,43.32,-78.38,2750 +14101,STANDARD,0,Machias,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.38,-78.52,1540 +14102,STANDARD,0,Marilla,,,NY,"Erie County",America/New_York,,NA,US,42.83,-78.55,1190 +14103,STANDARD,0,Medina,,,NY,"Orleans County",America/New_York,"585,716",NA,US,43.21,-78.38,8860 +14105,STANDARD,0,Middleport,,"Royalton, Shelby",NY,"Niagara County",America/New_York,"585,716",NA,US,43.21,-78.47,3900 +14107,"PO BOX",0,"Model City",,,NY,"Niagara County",America/New_York,716,NA,US,43.16,-78.99,41 +14108,STANDARD,0,Newfane,,,NY,"Niagara County",America/New_York,716,NA,US,43.28,-78.69,5110 +14109,"PO BOX",0,"Niagara University","Niagara Univ",,NY,"Niagara County",America/New_York,716,NA,US,43.14,-79.03,44 +14110,"PO BOX",0,"North Boston",,"N Boston",NY,"Erie County",America/New_York,716,NA,US,42.67,-78.78,96 +14111,STANDARD,0,"North Collins",,"N Collins",NY,"Erie County",America/New_York,716,NA,US,42.59,-78.93,2890 +14112,"PO BOX",0,"North Evans",,"N Evans",NY,"Erie County",America/New_York,,NA,US,42.7,-78.94,175 +14113,STANDARD,0,"North Java",,"N Java",NY,"Wyoming County",America/New_York,585,NA,US,42.66,-78.33,710 +14120,STANDARD,0,"North Tonawanda","N Tonawanda","No Tonawanda, Pendleton, Wheatfield",NY,"Niagara County",America/New_York,716,NA,US,43.04,-78.86,39850 +14125,STANDARD,0,Oakfield,,"East Oakfield",NY,"Genesee County",America/New_York,585,NA,US,43.06,-78.27,3260 +14126,"PO BOX",0,Olcott,,,NY,"Niagara County",America/New_York,716,NA,US,43.34,-78.73,742 +14127,STANDARD,0,"Orchard Park",,,NY,"Erie County",America/New_York,716,NA,US,42.76,-78.74,29370 +14129,STANDARD,0,Perrysburg,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.45,-79,1150 +14130,"PO BOX",0,Pike,,,NY,"Wyoming County",America/New_York,585,NA,US,42.55,-78.15,410 +14131,STANDARD,0,Ransomville,,,NY,"Niagara County",America/New_York,716,NA,US,43.23,-78.9,4750 +14132,STANDARD,0,Sanborn,,Pendleton,NY,"Niagara County",America/New_York,716,NA,US,43.14,-78.87,5310 +14133,"PO BOX",0,Sandusky,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.49,-78.38,145 +14134,STANDARD,0,Sardinia,,,NY,"Erie County",America/New_York,716,NA,US,42.53,-78.52,250 +14135,"PO BOX",0,Sheridan,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.49,-79.24,243 +14136,STANDARD,0,"Silver Creek",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.54,-79.16,4250 +14138,STANDARD,0,"South Dayton",,"S Dayton",NY,"Cattaraugus County",America/New_York,716,NA,US,42.36,-79.05,1560 +14139,STANDARD,0,"South Wales",,"S Wales",NY,"Erie County",America/New_York,,NA,US,42.7,-78.53,2210 +14140,"PO BOX",0,"Spring Brook",,Springbrook,NY,"Erie County",America/New_York,,NA,US,42.83,-78.63,114 +14141,STANDARD,0,Springville,,,NY,"Erie County",America/New_York,716,NA,US,42.5,-78.67,6690 +14143,STANDARD,0,Stafford,,,NY,"Genesee County",America/New_York,585,NA,US,42.98,-78.08,1160 +14144,STANDARD,0,"Stella Niagara","Stela Niagara",,NY,"Niagara County",America/New_York,716,NA,US,43.17,-78.99,22 +14145,STANDARD,0,Strykersville,,Sheldon,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.73,-78.42,1400 +14150,STANDARD,0,Tonawanda,,,NY,"Erie County",America/New_York,716,NA,US,43,-78.87,36110 +14151,"PO BOX",0,Tonawanda,,,NY,"Erie County",America/New_York,716,NA,US,43,-78.87,177 +14166,"PO BOX",0,"Van Buren Point","Dunkirk, Van Buren Pt","Van Buren Bay",NY,"Chautauqua County",America/New_York,716,NA,US,42.44,-79.36,0 +14167,STANDARD,0,Varysburg,,,NY,"Wyoming County",America/New_York,585,NA,US,42.73,-78.31,1420 +14168,"PO BOX",0,Versailles,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.52,-78.99,487 +14169,"PO BOX",0,"Wales Center",,,NY,"Erie County",America/New_York,,NA,US,42.77,-78.52,219 +14170,STANDARD,0,"West Falls",,"W Falls",NY,"Erie County",America/New_York,716,NA,US,42.7,-78.67,2180 +14171,STANDARD,0,"West Valley",,"W Valley",NY,"Cattaraugus County",America/New_York,716,NA,US,42.43,-78.62,1730 +14172,STANDARD,0,Wilson,,,NY,"Niagara County",America/New_York,716,NA,US,43.31,-78.82,2920 +14173,"PO BOX",0,Yorkshire,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.53,-78.47,715 +14174,STANDARD,0,Youngstown,,,NY,"Niagara County",America/New_York,716,NA,US,43.24,-79.04,5250 +14201,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.9,-78.89,7970 +14202,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.88,2520 +14203,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,"716,585",NA,US,42.87,-78.87,1280 +14204,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,"585,716",NA,US,42.88,-78.86,5990 +14205,"PO BOX",0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,253 +14206,STANDARD,0,Buffalo,"Cheektowaga, West Seneca",,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.81,16040 +14207,STANDARD,0,Buffalo,,"Town Of Tonawanda",NY,"Erie County",America/New_York,716,NA,US,42.95,-78.9,19830 +14208,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.92,-78.85,7150 +14209,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.91,-78.87,5080 +14210,STANDARD,0,Buffalo,"West Seneca","W Seneca",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,11200 +14211,STANDARD,0,Buffalo,,Cheektowaga,NY,"Erie County",America/New_York,716,NA,US,42.91,-78.82,17840 +14212,STANDARD,0,Buffalo,Sloan,,NY,"Erie County",America/New_York,716,NA,US,42.89,-78.82,9050 +14213,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.92,-78.89,17670 +14214,STANDARD,0,Buffalo,,"University Buffalo",NY,"Erie County",America/New_York,716,NA,US,42.94,-78.84,13320 +14215,STANDARD,0,Buffalo,"Cheektowaga, Snyder",,NY,"Erie County",America/New_York,716,NA,US,42.94,-78.81,30620 +14216,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.95,-78.86,17700 +14217,STANDARD,0,Buffalo,"Kenmore, Tn Of Tona, Tonawanda, Town Of Tonawanda",,NY,"Erie County",America/New_York,716,NA,US,42.97,-78.88,19450 +14218,STANDARD,0,Buffalo,"Lackawanna, West Seneca","W Seneca",NY,"Erie County",America/New_York,716,NA,US,42.82,-78.83,16230 +14219,STANDARD,0,Buffalo,Blasdell,,NY,"Erie County",America/New_York,716,NA,US,42.79,-78.83,10040 +14220,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.85,-78.82,19930 +14221,STANDARD,0,Buffalo,"Amherst, Williamsville",,NY,"Erie County",America/New_York,716,NA,US,42.98,-78.72,50120 +14222,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.92,-78.88,8520 +14223,STANDARD,0,Buffalo,"Kenmore, Tn Of Tona, Tonawanda, Town Of Tonawanda",,NY,"Erie County",America/New_York,716,NA,US,42.97,-78.85,20860 +14224,STANDARD,0,Buffalo,"West Seneca",,NY,"Erie County",America/New_York,716,NA,US,42.84,-78.75,37220 +14225,STANDARD,0,Buffalo,Cheektowaga,,NY,"Erie County",America/New_York,716,NA,US,42.93,-78.75,29670 +14226,STANDARD,0,Buffalo,"Amherst, Eggertsville, Snyder","Snyder Square",NY,"Erie County",America/New_York,716,NA,US,42.97,-78.8,25870 +14227,STANDARD,0,Buffalo,"Cheektowaga, S Cheek, South Cheektowaga","S Cheektowaga",NY,"Erie County",America/New_York,716,NA,US,42.89,-78.73,19810 +14228,STANDARD,0,Buffalo,"Amherst, W Amherst, West Amherst",,NY,"Erie County",America/New_York,716,NA,US,43.04,-78.78,17140 +14231,"PO BOX",0,Buffalo,"Amherst, Williamsville",Bflo,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,444 +14233,UNIQUE,0,Buffalo,,Jingo,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14240,"PO BOX",0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,517 +14241,UNIQUE,0,Buffalo,,"Bflo, Usps Buffalo Amf",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14260,UNIQUE,0,Buffalo,Amherst,"University At Buffalo, University Buffalo",NY,"Erie County",America/New_York,,NA,US,42.88,-78.85,37 +14261,UNIQUE,0,Buffalo,Amherst,"University At Buffalo, University Buffalo",NY,"Erie County",America/New_York,716,NA,US,43.01,-78.79,205 +14263,UNIQUE,0,Buffalo,,"Roswell Park Memorial Instit",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14264,UNIQUE,0,Buffalo,,"Nat Fuel Gas Co",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14265,UNIQUE,0,Buffalo,,"Ind Order Of Foresters",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14267,UNIQUE,0,Buffalo,,"M And T Bank",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14269,UNIQUE,0,Buffalo,,"Harlequin Books",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14270,UNIQUE,0,Buffalo,,"Hsbc Bank, Marine Midland",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14272,UNIQUE,0,Buffalo,,"Silhouette Books",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14273,UNIQUE,0,Buffalo,,"Bflo, Hsbc Atrium, Hsbc Bank",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14276,UNIQUE,0,Buffalo,,Scoreball,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14280,UNIQUE,0,Buffalo,,"Shared Brm",NY,"Erie County",America/New_York,"585,716",NA,US,42.88,-78.85,0 +14301,STANDARD,0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.1,-79.04,8630 +14302,"PO BOX",0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.09,-79.05,432 +14303,STANDARD,0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.09,-79.01,4180 +14304,STANDARD,0,"Niagara Falls",,"N Falls, Wheatfield",NY,"Niagara County",America/New_York,716,NA,US,43.1,-78.95,25330 +14305,STANDARD,0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.12,-79.02,13000 +14410,"PO BOX",0,"Adams Basin",,,NY,"Monroe County",America/New_York,585,NA,US,43.19,-77.86,129 +14411,STANDARD,0,Albion,"Eagle Harbor",,NY,"Orleans County",America/New_York,585,NA,US,43.24,-78.18,9810 +14413,"PO BOX",0,Alton,,,NY,"Wayne County",America/New_York,315,NA,US,43.21,-77.05,292 +14414,STANDARD,0,Avon,,,NY,"Livingston County",America/New_York,585,NA,US,42.91,-77.74,6110 +14415,STANDARD,0,Bellona,,,NY,"Yates County",America/New_York,315,NA,US,42.76,-77.02,187 +14416,STANDARD,0,Bergen,,,NY,"Genesee County",America/New_York,585,NA,US,43.08,-77.94,3490 +14418,STANDARD,0,Branchport,,,NY,"Yates County",America/New_York,315,NA,US,42.59,-77.15,1040 +14420,STANDARD,0,Brockport,,,NY,"Monroe County",America/New_York,585,NA,US,43.21,-77.94,14450 +14422,STANDARD,0,Byron,,,NY,"Genesee County",America/New_York,585,NA,US,43.07,-78.06,1920 +14423,STANDARD,0,Caledonia,,,NY,"Livingston County",America/New_York,585,NA,US,42.97,-77.85,4290 +14424,STANDARD,0,Canandaigua,,,NY,"Ontario County",America/New_York,585,NA,US,42.88,-77.28,24140 +14425,STANDARD,0,Farmington,Canandaigua,,NY,"Ontario County",America/New_York,585,NA,US,42.95,-77.32,12040 +14427,STANDARD,0,Castile,,,NY,"Wyoming County",America/New_York,585,NA,US,42.63,-78.05,1750 +14428,STANDARD,0,Churchville,Clifton,,NY,"Monroe County",America/New_York,585,NA,US,43.1,-77.88,8070 +14429,"PO BOX",0,Clarendon,,,NY,"Orleans County",America/New_York,585,NA,US,43.17,-78.05,108 +14430,"PO BOX",0,Clarkson,,,NY,"Monroe County",America/New_York,585,NA,US,43.21,-77.93,76 +14432,STANDARD,0,"Clifton Springs","Clifton Spgs",,NY,"Ontario County",America/New_York,315,NA,US,42.95,-77.13,4670 +14433,STANDARD,0,Clyde,,,NY,"Wayne County",America/New_York,315,NA,US,43.08,-76.87,3970 +14435,STANDARD,0,Conesus,,,NY,"Livingston County",America/New_York,585,NA,US,42.71,-77.66,2580 +14437,STANDARD,0,Dansville,,,NY,"Livingston County",America/New_York,585,NA,US,42.56,-77.69,7860 +14441,STANDARD,0,Dresden,,,NY,"Yates County",America/New_York,315,NA,US,42.68,-76.96,300 +14443,"PO BOX",0,"East Bloomfield","E Bloomfield",,NY,"Ontario County",America/New_York,,NA,US,42.89,-77.43,115 +14445,STANDARD,0,"East Rochester","E Rochester",,NY,"Monroe County",America/New_York,585,NA,US,43.11,-77.48,6410 +14449,"PO BOX",0,"East Williamson","E Williamson",,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.19,108 +14450,STANDARD,0,Fairport,,,NY,"Monroe County",America/New_York,585,NA,US,43.1,-77.44,40370 +14452,"PO BOX",0,Fancher,,,NY,"Orleans County",America/New_York,585,NA,US,43.25,-78.05,35 +14453,"PO BOX",0,Fishers,,,NY,"Ontario County",America/New_York,,NA,US,42.99,-77.42,220 +14454,STANDARD,0,Geneseo,,,NY,"Livingston County",America/New_York,585,NA,US,42.79,-77.81,5620 +14456,STANDARD,0,Geneva,,,NY,"Ontario County",America/New_York,315,NA,US,42.85,-77,15400 +14461,"PO BOX",0,Gorham,,,NY,"Ontario County",America/New_York,,NA,US,42.8,-77.2,306 +14462,STANDARD,0,Groveland,,,NY,"Livingston County",America/New_York,585,NA,US,42.68,-77.74,550 +14463,"PO BOX",0,Hall,,,NY,"Ontario County",America/New_York,315,NA,US,42.83,-77.07,250 +14464,STANDARD,0,Hamlin,,,NY,"Monroe County",America/New_York,585,NA,US,43.32,-77.93,6450 +14466,STANDARD,0,Hemlock,,,NY,"Ontario County",America/New_York,585,NA,US,42.77,-77.58,1550 +14467,STANDARD,0,Henrietta,,,NY,"Monroe County",America/New_York,585,NA,US,43.04,-77.61,8740 +14468,STANDARD,0,Hilton,,,NY,"Monroe County",America/New_York,585,NA,US,43.28,-77.79,18280 +14469,STANDARD,0,Bloomfield,,"E Bloomfield, East Bloomfield, Holcomb",NY,"Ontario County",America/New_York,585,NA,US,42.87,-77.46,5280 +14470,STANDARD,0,Holley,Hulberton,,NY,"Orleans County",America/New_York,585,NA,US,43.22,-78.02,6870 +14471,STANDARD,0,Honeoye,,,NY,"Ontario County",America/New_York,585,NA,US,42.75,-77.49,2290 +14472,STANDARD,0,"Honeoye Falls",,,NY,"Monroe County",America/New_York,585,NA,US,42.95,-77.59,8380 +14475,STANDARD,0,Ionia,,,NY,"Ontario County",America/New_York,,NA,US,42.94,-77.5,410 +14476,STANDARD,0,Kendall,,,NY,"Orleans County",America/New_York,585,NA,US,43.32,-78.03,2010 +14477,STANDARD,0,Kent,,,NY,"Orleans County",America/New_York,585,NA,US,43.33,-78.13,1360 +14478,STANDARD,0,"Keuka Park","Bluff Point",,NY,"Yates County",America/New_York,315,NA,US,42.58,-77.13,770 +14479,STANDARD,0,Knowlesville,,,NY,"Orleans County",America/New_York,585,NA,US,43.24,-78.31,215 +14480,STANDARD,0,Lakeville,,,NY,"Livingston County",America/New_York,585,NA,US,42.84,-77.71,720 +14481,STANDARD,0,Leicester,,,NY,"Livingston County",America/New_York,585,NA,US,42.77,-77.89,1580 +14482,STANDARD,0,"Le Roy",,Leroy,NY,"Genesee County",America/New_York,585,NA,US,42.97,-77.99,7370 +14485,STANDARD,0,Lima,,,NY,"Livingston County",America/New_York,585,NA,US,42.9,-77.61,3700 +14486,STANDARD,0,Linwood,,,NY,"Livingston County",America/New_York,585,NA,US,42.9,-77.91,280 +14487,STANDARD,0,Livonia,,,NY,"Livingston County",America/New_York,585,NA,US,42.82,-77.66,5410 +14488,"PO BOX",0,"Livonia Center","Livonia Ctr",,NY,"Livingston County",America/New_York,585,NA,US,42.81,-77.65,104 +14489,STANDARD,0,Lyons,,,NY,"Wayne County",America/New_York,315,NA,US,43.06,-76.99,5870 +14502,STANDARD,0,Macedon,,,NY,"Wayne County",America/New_York,315,NA,US,43.06,-77.3,9900 +14504,STANDARD,0,Manchester,,,NY,"Ontario County",America/New_York,,NA,US,42.97,-77.23,1510 +14505,STANDARD,0,Marion,,,NY,"Wayne County",America/New_York,315,NA,US,43.16,-77.17,4710 +14506,STANDARD,0,Mendon,,,NY,"Monroe County",America/New_York,585,NA,US,43.01,-77.52,1260 +14507,STANDARD,0,Middlesex,,,NY,"Yates County",America/New_York,,NA,US,42.7,-77.27,1150 +14508,"PO BOX",0,Morton,,,NY,"Orleans County",America/New_York,585,NA,US,43.32,-78.05,96 +14510,STANDARD,0,"Mount Morris",Tuscarora,,NY,"Livingston County",America/New_York,585,NA,US,42.72,-77.87,4060 +14511,"PO BOX",0,Mumford,,,NY,"Monroe County",America/New_York,585,NA,US,42.99,-77.86,608 +14512,STANDARD,0,Naples,,,NY,"Ontario County",America/New_York,585,NA,US,42.61,-77.4,4130 +14513,STANDARD,0,Newark,"East Palmyra",,NY,"Wayne County",America/New_York,315,NA,US,43.04,-77.09,11370 +14514,STANDARD,0,"North Chili",,,NY,"Monroe County",America/New_York,585,NA,US,43.11,-77.81,6040 +14515,"PO BOX",0,"North Greece",,,NY,"Monroe County",America/New_York,585,NA,US,43.25,-77.73,160 +14516,STANDARD,0,"North Rose",,,NY,"Wayne County",America/New_York,315,NA,US,43.2,-76.91,1950 +14517,STANDARD,0,Nunda,,,NY,"Livingston County",America/New_York,585,NA,US,42.58,-77.93,2270 +14518,"PO BOX",0,"Oaks Corners",,,NY,"Ontario County",America/New_York,,NA,US,42.95,-77.04,98 +14519,STANDARD,0,Ontario,,,NY,"Wayne County",America/New_York,315,NA,US,43.22,-77.31,11590 +14520,"PO BOX",0,"Ontario Center","Ontario Ctr",,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.31,68 +14521,STANDARD,0,Ovid,"Hayt Corners",,NY,"Seneca County",America/New_York,607,NA,US,42.67,-76.82,2410 +14522,STANDARD,0,Palmyra,,,NY,"Wayne County",America/New_York,315,NA,US,43.06,-77.23,8010 +14525,STANDARD,0,Pavilion,,,NY,"Genesee County",America/New_York,585,NA,US,42.87,-77.99,2440 +14526,STANDARD,0,Penfield,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.44,20330 +14527,STANDARD,0,"Penn Yan",,,NY,"Yates County",America/New_York,315,NA,US,42.66,-77.05,10950 +14529,"PO BOX",0,Perkinsville,,,NY,"Steuben County",America/New_York,,NA,US,42.54,-77.64,161 +14530,STANDARD,0,Perry,,,NY,"Wyoming County",America/New_York,585,NA,US,42.71,-78,4450 +14532,STANDARD,0,Phelps,,"West Junius",NY,"Ontario County",America/New_York,315,NA,US,42.95,-77.06,3980 +14533,STANDARD,0,Piffard,Wadsworth,,NY,"Livingston County",America/New_York,585,NA,US,42.84,-77.88,1390 +14534,STANDARD,0,Pittsford,,,NY,"Monroe County",America/New_York,585,NA,US,43.09,-77.51,32750 +14536,STANDARD,0,Portageville,Rossburg,,NY,"Wyoming County",America/New_York,,NA,US,42.55,-78.09,560 +14537,"PO BOX",0,"Port Gibson",,,NY,"Ontario County",America/New_York,,NA,US,43.04,-77.16,261 +14538,"PO BOX",0,Pultneyville,,,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.19,169 +14539,"PO BOX",0,Retsof,,,NY,"Livingston County",America/New_York,585,NA,US,42.83,-77.87,400 +14541,STANDARD,0,Romulus,"Mac Dougall",,NY,"Seneca County",America/New_York,315,NA,US,42.75,-76.83,2080 +14542,"PO BOX",0,Rose,,,NY,"Wayne County",America/New_York,315,NA,US,43.15,-76.86,282 +14543,STANDARD,0,Rush,"Industry, West Rush",,NY,"Monroe County",America/New_York,585,NA,US,42.98,-77.67,3010 +14544,STANDARD,0,Rushville,,,NY,"Yates County",America/New_York,585,NA,US,42.76,-77.22,1720 +14545,STANDARD,0,Scottsburg,Groveland,,NY,"Livingston County",America/New_York,585,NA,US,42.66,-77.7,124 +14546,STANDARD,0,Scottsville,,Wheatland,NY,"Monroe County",America/New_York,585,NA,US,43.02,-77.75,4350 +14547,"PO BOX",0,"Seneca Castle",,,NY,"Ontario County",America/New_York,315,NA,US,42.83,-77.07,257 +14548,STANDARD,0,Shortsville,,,NY,"Ontario County",America/New_York,585,NA,US,42.95,-77.22,3440 +14549,"PO BOX",0,"Silver Lake",,,NY,"Wyoming County",America/New_York,585,NA,US,42.7,-78.02,216 +14550,STANDARD,0,"Silver Springs","Rock Glen, Silver Spgs",,NY,"Wyoming County",America/New_York,585,NA,US,42.66,-78.08,1410 +14551,STANDARD,0,Sodus,"Sodus Center",,NY,"Wayne County",America/New_York,315,NA,US,43.23,-77.06,4540 +14555,STANDARD,0,"Sodus Point",,,NY,"Wayne County",America/New_York,315,NA,US,43.26,-76.99,760 +14556,"PO BOX",0,Sonyea,,,NY,"Livingston County",America/New_York,585,NA,US,42.68,-77.82,19 +14557,"PO BOX",0,"South Byron",,,NY,"Genesee County",America/New_York,585,NA,US,43.04,-78.06,201 +14558,"PO BOX",0,"South Lima",,,NY,"Livingston County",America/New_York,585,NA,US,42.81,-77.65,130 +14559,STANDARD,0,Spencerport,,Ogden,NY,"Monroe County",America/New_York,585,NA,US,43.18,-77.8,17140 +14560,STANDARD,0,Springwater,"Webster Crossing, Webster Xing",,NY,"Livingston County",America/New_York,585,NA,US,42.68,-77.57,1880 +14561,STANDARD,0,Stanley,,,NY,"Ontario County",America/New_York,585,NA,US,42.82,-77.12,2640 +14563,"PO BOX",0,"Union Hill",,,NY,"Wayne County",America/New_York,315,NA,US,43.22,-77.44,48 +14564,STANDARD,0,Victor,,,NY,"Ontario County",America/New_York,585,NA,US,42.98,-77.41,15640 +14568,STANDARD,0,Walworth,,,NY,"Wayne County",America/New_York,315,NA,US,43.14,-77.27,5740 +14569,STANDARD,0,Warsaw,,,NY,"Wyoming County",America/New_York,585,NA,US,42.74,-78.14,5170 +14571,STANDARD,0,Waterport,,,NY,"Orleans County",America/New_York,585,NA,US,43.33,-78.24,1190 +14572,STANDARD,0,Wayland,,,NY,"Steuben County",America/New_York,585,NA,US,42.56,-77.59,4140 +14580,STANDARD,0,Webster,,,NY,"Monroe County",America/New_York,585,NA,US,43.21,-77.42,51030 +14585,STANDARD,0,"West Bloomfield","W Bloomfield",,NY,"Ontario County",America/New_York,,NA,US,42.91,-77.55,200 +14586,STANDARD,0,"West Henrietta","W Henrietta",,NY,"Monroe County",America/New_York,585,NA,US,43.03,-77.69,10950 +14588,"PO BOX",0,Willard,,,NY,"Seneca County",America/New_York,,NA,US,42.68,-76.87,247 +14589,STANDARD,0,Williamson,,,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.15,6950 +14590,STANDARD,0,Wolcott,,,NY,"Wayne County",America/New_York,315,NA,US,43.22,-76.81,4120 +14591,STANDARD,0,Wyoming,,,NY,"Wyoming County",America/New_York,585,NA,US,42.82,-78.08,1480 +14592,"PO BOX",0,York,,,NY,"Livingston County",America/New_York,585,NA,US,42.87,-77.9,409 +14602,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,376 +14603,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,1116 +14604,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,1420 +14605,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.17,-77.6,8310 +14606,STANDARD,0,Rochester,Gates,,NY,"Monroe County",America/New_York,585,NA,US,43.17,-77.7,23480 +14607,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.59,9890 +14608,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.62,8640 +14609,STANDARD,0,Rochester,Irondequoit,,NY,"Monroe County",America/New_York,585,NA,US,43.18,-77.55,34060 +14610,STANDARD,0,Rochester,Brighton,,NY,"Monroe County",America/New_York,585,NA,US,43.14,-77.55,11820 +14611,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.65,12290 +14612,STANDARD,0,Rochester,Greece,,NY,"Monroe County",America/New_York,585,NA,US,43.27,-77.68,31370 +14613,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.18,-77.64,11300 +14614,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.62,350 +14615,STANDARD,0,Rochester,Greece,,NY,"Monroe County",America/New_York,585,NA,US,43.2,-77.65,13810 +14616,STANDARD,0,Rochester,Greece,,NY,"Monroe County",America/New_York,585,NA,US,43.23,-77.66,25690 +14617,STANDARD,0,Rochester,Irondequoit,,NY,"Monroe County",America/New_York,585,NA,US,43.23,-77.59,21990 +14618,STANDARD,0,Rochester,"Loehmanns Plaza, Loehmanns Plz",,NY,"Monroe County",America/New_York,585,NA,US,43.11,-77.55,19990 +14619,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.14,-77.65,11070 +14620,STANDARD,0,Rochester,Brighton,,NY,"Monroe County",America/New_York,585,NA,US,43.13,-77.61,15390 +14621,STANDARD,0,Rochester,,Irondequoit,NY,"Monroe County",America/New_York,585,NA,US,43.19,-77.6,23700 +14622,STANDARD,0,Rochester,Irondequoit,,NY,"Monroe County",America/New_York,585,NA,US,43.22,-77.55,10900 +14623,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.09,-77.64,15340 +14624,STANDARD,0,Rochester,"Gates, Westgate",,NY,"Monroe County",America/New_York,585,NA,US,43.13,-77.73,34850 +14625,STANDARD,0,Rochester,Panorama,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.51,10060 +14626,STANDARD,0,Rochester,"Greece, Ridgemont",,NY,"Monroe County",America/New_York,585,NA,US,43.22,-77.71,27620 +14627,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.13,-77.63,147 +14638,UNIQUE,0,Rochester,,"Bank Of America",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14639,UNIQUE,0,Rochester,,Hsbc,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14642,UNIQUE,0,Rochester,,"Strong Memorial Hospital",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,23 +14643,UNIQUE,0,Rochester,,"Jp Morgan Bank",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14644,UNIQUE,0,Rochester,,Xerox,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14645,UNIQUE,1,Rochester,,Mccurdy's,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14646,UNIQUE,0,Rochester,,Frontier,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14647,UNIQUE,0,Rochester,,"Excellus Bcbs",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14649,UNIQUE,0,Rochester,,"Roch Gas & Elec Corp",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14650,UNIQUE,0,Rochester,,"Kodak Office",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,291 +14651,UNIQUE,0,Rochester,,"Eastman Kodak",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14652,UNIQUE,0,Rochester,,"Kodak Park",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14653,UNIQUE,0,Rochester,,"Kodak Apparatus Division",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14664,UNIQUE,1,Rochester,,"Xerox Corp",NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14673,UNIQUE,1,Rochester,,"Chase Lincoln",NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14683,UNIQUE,1,Rochester,,"Chase Lincoln",NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14692,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,536 +14694,UNIQUE,0,Rochester,,"West Group",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14701,STANDARD,0,Jamestown,"Fluvanna, West Ellicott",,NY,"Chautauqua County",America/New_York,716,NA,US,42.09,-79.23,29330 +14702,"PO BOX",0,Jamestown,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.09,-79.23,541 +14706,STANDARD,0,Allegany,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.09,-78.49,5230 +14707,"PO BOX",0,Allentown,,,NY,"Allegany County",America/New_York,585,NA,US,42.08,-78.06,231 +14708,STANDARD,0,Alma,,,NY,"Allegany County",America/New_York,,NA,US,42.01,-78.02,175 +14709,STANDARD,0,Angelica,,,NY,"Allegany County",America/New_York,585,NA,US,42.3,-78.02,1330 +14710,STANDARD,0,Ashville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.11,-79.42,2970 +14711,STANDARD,0,Belfast,,,NY,"Allegany County",America/New_York,585,NA,US,42.33,-78.12,1550 +14712,STANDARD,0,"Bemus Point",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.16,-79.39,2830 +14714,STANDARD,0,"Black Creek",,,NY,"Allegany County",America/New_York,585,NA,US,42.29,-78.24,370 +14715,STANDARD,0,Bolivar,,"Alma, South Bolivar",NY,"Allegany County",America/New_York,585,NA,US,42.06,-78.17,2230 +14716,STANDARD,0,Brocton,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.38,-79.44,1810 +14717,STANDARD,0,Caneadea,,,NY,"Allegany County",America/New_York,585,NA,US,42.35,-78.21,480 +14718,STANDARD,0,Cassadaga,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.34,-79.31,1590 +14719,STANDARD,0,Cattaraugus,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.32,-78.86,2620 +14720,"PO BOX",0,Celoron,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.11,-79.28,763 +14721,STANDARD,0,Ceres,,,NY,"Allegany County",America/New_York,"585,716",NA,US,42,-78.27,190 +14722,"PO BOX",0,Chautauqua,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.21,-79.47,219 +14723,STANDARD,0,"Cherry Creek",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.29,-79.1,990 +14724,STANDARD,0,Clymer,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.05,-79.66,2360 +14726,STANDARD,0,"Conewango Valley","Conewango Vly",,NY,"Cattaraugus County",America/New_York,716,NA,US,42.26,-79.01,890 +14727,STANDARD,0,Cuba,,,NY,"Allegany County",America/New_York,"585,716",NA,US,42.21,-78.27,4290 +14728,STANDARD,0,Dewittville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.24,-79.4,900 +14729,STANDARD,0,"East Otto",,,NY,"Cattaraugus County",America/New_York,,NA,US,42.4,-78.74,700 +14730,"PO BOX",0,"East Randolph",,,NY,"Cattaraugus County",America/New_York,,NA,US,42.17,-78.95,108 +14731,STANDARD,0,Ellicottville,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.27,-78.67,1230 +14732,"PO BOX",0,Ellington,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.23,-79.12,295 +14733,STANDARD,0,Falconer,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.11,-79.19,3310 +14735,STANDARD,0,Fillmore,,,NY,"Allegany County",America/New_York,585,NA,US,42.46,-78.11,2220 +14736,STANDARD,0,"Findley Lake",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.14,-79.75,400 +14737,STANDARD,0,Franklinville,,,NY,"Cattaraugus County",America/New_York,"585,716",NA,US,42.33,-78.45,3260 +14738,STANDARD,0,Frewsburg,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.05,-79.16,3150 +14739,STANDARD,0,Friendship,,,NY,"Allegany County",America/New_York,585,NA,US,42.2,-78.14,2260 +14740,STANDARD,0,Gerry,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.22,-79.18,1050 +14741,STANDARD,0,"Great Valley",,Humphrey,NY,"Cattaraugus County",America/New_York,,NA,US,42.21,-78.59,1670 +14742,"PO BOX",0,Greenhurst,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.12,-79.31,305 +14743,STANDARD,0,Hinsdale,Ischua,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.16,-78.38,1520 +14744,STANDARD,0,Houghton,,,NY,"Allegany County",America/New_York,585,NA,US,42.42,-78.16,1010 +14745,"PO BOX",0,Hume,,,NY,"Allegany County",America/New_York,,NA,US,42.47,-78.14,139 +14747,STANDARD,0,Kennedy,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.14,-79.07,1940 +14748,STANDARD,0,"Kill Buck",,Killbuck,NY,"Cattaraugus County",America/New_York,716,NA,US,42.14,-78.61,550 +14750,STANDARD,0,Lakewood,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.1,-79.32,4280 +14751,"PO BOX",0,Leon,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.3,-79,96 +14752,"PO BOX",0,"Lily Dale",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.35,-79.32,159 +14753,STANDARD,0,Limestone,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.02,-78.63,860 +14754,STANDARD,0,"Little Genesee","Little Genese",,NY,"Allegany County",America/New_York,585,NA,US,42.02,-78.23,550 +14755,STANDARD,0,"Little Valley",,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.24,-78.79,2200 +14756,"PO BOX",0,"Maple Springs",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.2,-79.42,111 +14757,STANDARD,0,Mayville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.25,-79.5,2530 +14758,"PO BOX",0,Niobe,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.01,-79.45,0 +14760,STANDARD,0,Olean,"Knapp Creek",,NY,"Cattaraugus County",America/New_York,"585,716",NA,US,42.08,-78.43,14330 +14766,"PO BOX",0,Otto,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.39,-78.83,131 +14767,STANDARD,0,Panama,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.07,-79.48,1700 +14769,STANDARD,0,Portland,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.37,-79.47,750 +14770,STANDARD,0,Portville,,,NY,"Cattaraugus County",America/New_York,"585,716",NA,US,42.03,-78.33,2510 +14772,STANDARD,0,Randolph,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.16,-78.97,3260 +14774,"PO BOX",0,Richburg,,,NY,"Allegany County",America/New_York,,NA,US,42.09,-78.15,305 +14775,STANDARD,0,Ripley,,Forsyth,NY,"Chautauqua County",America/New_York,716,NA,US,42.26,-79.71,2070 +14777,STANDARD,0,Rushford,,,NY,"Allegany County",America/New_York,"585,716",NA,US,42.39,-78.27,520 +14778,"PO BOX",0,"Saint Bonaventure","St Bonas","St Bonaventure",NY,"Cattaraugus County",America/New_York,,NA,US,42.08,-78.48,43 +14779,STANDARD,0,Salamanca,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.16,-78.72,5390 +14781,STANDARD,0,Sherman,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.16,-79.59,1820 +14782,STANDARD,0,Sinclairville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.26,-79.25,1930 +14783,"PO BOX",0,Steamburg,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.08,-78.89,366 +14784,STANDARD,0,Stockton,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.31,-79.38,740 +14785,"PO BOX",0,Stow,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.15,-79.41,174 +14786,"PO BOX",0,"West Clarksville","W Clarksville",,NY,"Allegany County",America/New_York,,NA,US,42.13,-78.25,222 +14787,STANDARD,0,Westfield,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.32,-79.57,4010 +14788,"PO BOX",0,"Westons Mills",,"Weston Mills",NY,"Cattaraugus County",America/New_York,,NA,US,42.06,-78.38,248 +14801,STANDARD,0,Addison,,,NY,"Steuben County",America/New_York,607,NA,US,42.1,-77.23,4600 +14802,STANDARD,0,Alfred,,,NY,"Allegany County",America/New_York,607,NA,US,42.25,-77.79,620 +14803,STANDARD,0,"Alfred Station","Alfred Sta",,NY,"Allegany County",America/New_York,,NA,US,42.24,-77.81,1070 +14804,STANDARD,0,Almond,,,NY,"Allegany County",America/New_York,607,NA,US,42.32,-77.85,1170 +14805,STANDARD,0,Alpine,,,NY,"Schuyler County",America/New_York,607,NA,US,42.31,-76.72,980 +14806,STANDARD,0,Andover,,,NY,"Allegany County",America/New_York,607,NA,US,42.15,-77.79,1880 +14807,STANDARD,0,Arkport,,,NY,"Steuben County",America/New_York,607,NA,US,42.39,-77.69,2560 +14808,STANDARD,0,Atlanta,"N Cohocton, North Cohocton",,NY,"Steuben County",America/New_York,585,NA,US,42.56,-77.47,520 +14809,STANDARD,0,Avoca,Wallace,,NY,"Steuben County",America/New_York,607,NA,US,42.4,-77.42,2030 +14810,STANDARD,0,Bath,"Veterans Administration, Veterans Admn",,NY,"Steuben County",America/New_York,607,NA,US,42.33,-77.31,9120 +14812,STANDARD,0,"Beaver Dams",,,NY,"Schuyler County",America/New_York,,NA,US,42.29,-76.96,2850 +14813,STANDARD,0,Belmont,,,NY,"Allegany County",America/New_York,585,NA,US,42.22,-78.03,1860 +14814,STANDARD,0,"Big Flats",,,NY,"Chemung County",America/New_York,607,NA,US,42.13,-76.93,1910 +14815,STANDARD,0,Bradford,,,NY,"Schuyler County",America/New_York,607,NA,US,42.37,-77.1,800 +14816,STANDARD,0,Breesport,,,NY,"Chemung County",America/New_York,607,NA,US,42.17,-76.73,610 +14817,STANDARD,0,Brooktondale,,,NY,"Tompkins County",America/New_York,607,NA,US,42.38,-76.39,2200 +14818,STANDARD,0,Burdett,,,NY,"Schuyler County",America/New_York,607,NA,US,42.41,-76.84,1590 +14819,STANDARD,0,Cameron,,,NY,"Steuben County",America/New_York,607,NA,US,42.19,-77.4,540 +14820,STANDARD,0,"Cameron Mills",,,NY,"Steuben County",America/New_York,607,NA,US,42.18,-77.36,580 +14821,STANDARD,0,Campbell,,,NY,"Steuben County",America/New_York,607,NA,US,42.23,-77.19,2860 +14822,STANDARD,0,Canaseraga,,,NY,"Allegany County",America/New_York,607,NA,US,42.46,-77.77,920 +14823,STANDARD,0,Canisteo,,,NY,"Steuben County",America/New_York,607,NA,US,42.27,-77.6,3150 +14824,STANDARD,0,Cayuta,,,NY,"Schuyler County",America/New_York,607,NA,US,42.28,-76.69,600 +14825,STANDARD,0,Chemung,,,NY,"Chemung County",America/New_York,607,NA,US,42.06,-76.62,670 +14826,STANDARD,0,Cohocton,,,NY,"Steuben County",America/New_York,585,NA,US,42.5,-77.5,1730 +14827,"PO BOX",0,"Coopers Plains","Coopers Plns",,NY,"Steuben County",America/New_York,,NA,US,42.18,-77.14,278 +14830,STANDARD,0,Corning,"South Corning",,NY,"Steuben County",America/New_York,607,NA,US,42.14,-77.05,16860 +14831,UNIQUE,0,Corning,,"Corning Inc",NY,"Steuben County",America/New_York,607,NA,US,42.14,-77.05,25 +14836,STANDARD,0,Dalton,,,NY,"Livingston County",America/New_York,585,NA,US,42.54,-77.89,870 +14837,STANDARD,0,Dundee,,,NY,"Yates County",America/New_York,607,NA,US,42.52,-76.97,4430 +14838,STANDARD,0,Erin,,,NY,"Chemung County",America/New_York,607,NA,US,42.18,-76.67,1670 +14839,STANDARD,0,Greenwood,,,NY,"Steuben County",America/New_York,607,NA,US,42.13,-77.64,590 +14840,STANDARD,0,Hammondsport,,,NY,"Steuben County",America/New_York,607,NA,US,42.4,-77.22,2620 +14841,STANDARD,0,Hector,Valois,,NY,"Schuyler County",America/New_York,,NA,US,42.5,-76.87,730 +14842,STANDARD,0,Himrod,,,NY,"Yates County",America/New_York,315,NA,US,42.58,-76.95,700 +14843,STANDARD,0,Hornell,"North Hornell",,NY,"Steuben County",America/New_York,607,NA,US,42.32,-77.66,10420 +14845,STANDARD,0,Horseheads,,,NY,"Chemung County",America/New_York,607,NA,US,42.16,-76.82,18630 +14846,STANDARD,0,Hunt,,,NY,"Livingston County",America/New_York,585,NA,US,42.52,-77.98,580 +14847,STANDARD,0,Interlaken,,,NY,"Seneca County",America/New_York,607,NA,US,42.61,-76.72,2080 +14850,STANDARD,0,Ithaca,,"Ithaca Clg, Ithaca College",NY,"Tompkins County",America/New_York,607,NA,US,42.44,-76.5,38440 +14851,"PO BOX",0,Ithaca,,,NY,"Tompkins County",America/New_York,607,NA,US,42.44,-76.5,442 +14852,"PO BOX",0,Ithaca,,,NY,"Tompkins County",America/New_York,607,NA,US,42.44,-76.5,377 +14853,STANDARD,0,Ithaca,,,NY,"Tompkins County",America/New_York,607,NA,US,42.45,-76.48,130 +14854,"PO BOX",0,Jacksonville,,,NY,"Tompkins County",America/New_York,607,NA,US,42.51,-76.61,209 +14855,STANDARD,0,Jasper,,,NY,"Steuben County",America/New_York,607,NA,US,42.12,-77.5,930 +14856,"PO BOX",0,Kanona,,,NY,"Steuben County",America/New_York,,NA,US,42.38,-77.37,229 +14857,"PO BOX",0,Lakemont,,,NY,"Yates County",America/New_York,607,NA,US,42.51,-76.92,104 +14858,STANDARD,0,Lindley,,,NY,"Steuben County",America/New_York,607,NA,US,42.02,-77.14,1430 +14859,STANDARD,0,Lockwood,,,NY,"Tioga County",America/New_York,607,NA,US,42.09,-76.55,1000 +14860,STANDARD,0,Lodi,,,NY,"Seneca County",America/New_York,607,NA,US,42.61,-76.82,920 +14861,STANDARD,0,Lowman,,,NY,"Chemung County",America/New_York,607,NA,US,42.02,-76.72,1120 +14863,"PO BOX",0,Mecklenburg,,,NY,"Schuyler County",America/New_York,607,NA,US,42.45,-76.71,178 +14864,STANDARD,0,Millport,,,NY,"Chemung County",America/New_York,607,NA,US,42.26,-76.83,1040 +14865,STANDARD,0,"Montour Falls",,,NY,"Schuyler County",America/New_York,607,NA,US,42.34,-76.84,2080 +14867,STANDARD,0,Newfield,,,NY,"Tompkins County",America/New_York,607,NA,US,42.36,-76.59,4870 +14869,STANDARD,0,Odessa,,,NY,"Schuyler County",America/New_York,607,NA,US,42.33,-76.78,1100 +14870,STANDARD,0,"Painted Post",,,NY,"Steuben County",America/New_York,,NA,US,42.16,-77.09,8540 +14871,STANDARD,0,"Pine City",,,NY,"Chemung County",America/New_York,607,NA,US,42.03,-76.86,3850 +14872,STANDARD,0,"Pine Valley",,,NY,"Chemung County",America/New_York,607,NA,US,42.24,-76.87,510 +14873,STANDARD,0,Prattsburgh,,,NY,"Steuben County",America/New_York,607,NA,US,42.52,-77.29,2040 +14874,STANDARD,0,Pulteney,,,NY,"Steuben County",America/New_York,607,NA,US,42.53,-77.18,180 +14876,"PO BOX",0,"Reading Center","Reading Ctr",,NY,"Schuyler County",America/New_York,607,NA,US,42.43,-76.93,175 +14877,STANDARD,0,Rexville,,,NY,"Steuben County",America/New_York,,NA,US,42.08,-77.66,460 +14878,STANDARD,0,"Rock Stream",,,NY,"Schuyler County",America/New_York,,NA,US,42.47,-76.92,650 +14879,STANDARD,0,Savona,,,NY,"Steuben County",America/New_York,607,NA,US,42.28,-77.22,1960 +14880,STANDARD,0,Scio,,,NY,"Allegany County",America/New_York,,NA,US,42.17,-77.97,1340 +14881,STANDARD,0,"Slaterville Springs","Slatervle Spg",,NY,"Tompkins County",America/New_York,607,NA,US,42.4,-76.36,220 +14882,STANDARD,0,Lansing,Ithaca,,NY,"Tompkins County",America/New_York,607,NA,US,42.58,-76.55,3540 +14883,STANDARD,0,Spencer,"West Danby",,NY,"Tioga County",America/New_York,607,NA,US,42.21,-76.49,3630 +14884,STANDARD,0,Swain,,,NY,"Allegany County",America/New_York,607,NA,US,42.48,-77.88,300 +14885,STANDARD,0,Troupsburg,,,NY,"Steuben County",America/New_York,607,NA,US,42.04,-77.54,600 +14886,STANDARD,0,Trumansburg,,,NY,"Tompkins County",America/New_York,607,NA,US,42.54,-76.66,5840 +14887,"PO BOX",0,Tyrone,,,NY,"Schuyler County",America/New_York,607,NA,US,42.4,-77.05,120 +14889,STANDARD,0,"Van Etten",,,NY,"Chemung County",America/New_York,607,NA,US,42.19,-76.55,1340 +14891,STANDARD,0,"Watkins Glen",,,NY,"Schuyler County",America/New_York,607,NA,US,42.38,-76.87,3610 +14892,STANDARD,0,Waverly,,,NY,"Tioga County",America/New_York,607,NA,US,42.01,-76.52,6520 +14893,"PO BOX",0,Wayne,,,NY,"Steuben County",America/New_York,607,NA,US,42.47,-77.11,145 +14894,STANDARD,0,Wellsburg,,,NY,"Chemung County",America/New_York,607,NA,US,42.01,-76.72,1160 +14895,STANDARD,0,Wellsville,,,NY,"Allegany County",America/New_York,585,NA,US,42.12,-77.94,7270 +14897,STANDARD,0,Whitesville,,,NY,"Allegany County",America/New_York,607,NA,US,42.03,-77.8,740 +14898,STANDARD,0,Woodhull,,,NY,"Steuben County",America/New_York,607,NA,US,42.08,-77.4,1220 +14901,STANDARD,0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.09,-76.75,9660 +14902,"PO BOX",0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.08,-76.8,399 +14903,STANDARD,0,Elmira,"Elmira Heights, Elmira Hgts, Elmira Hts",,NY,"Chemung County",America/New_York,607,NA,US,42.13,-76.87,6650 +14904,STANDARD,0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.08,-76.8,12270 +14905,STANDARD,0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.09,-76.84,7740 +14925,STANDARD,1,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.08,-76.8,0 +15001,STANDARD,0,Aliquippa,"Macarthur, W Aliquippa, West Aliquippa","Aliq, Mac Arthur",PA,"Beaver County",America/New_York,724,NA,US,40.61,-80.25,28530 +15003,STANDARD,0,Ambridge,"Fair Oaks",,PA,"Beaver County",America/New_York,724,NA,US,40.59,-80.22,9750 +15004,"PO BOX",0,Atlasburg,,,PA,"Washington County",America/New_York,724,NA,US,40.35,-80.38,355 +15005,STANDARD,0,Baden,,,PA,"Beaver County",America/New_York,724,NA,US,40.63,-80.22,8750 +15006,"PO BOX",0,Bairdford,,,PA,"Allegheny County",America/New_York,724,NA,US,40.63,-79.88,359 +15007,STANDARD,0,Bakerstown,,,PA,"Allegheny County",America/New_York,724,NA,US,40.65,-79.93,360 +15009,STANDARD,0,Beaver,"Vanport, W Bridgewater, West Bridgewater",,PA,"Beaver County",America/New_York,"412,724",NA,US,40.69,-80.3,14200 +15010,STANDARD,0,"Beaver Falls","Patterson Heights, Patterson Hts, Racine",,PA,"Beaver County",America/New_York,"412,724",NA,US,40.76,-80.32,24190 +15012,STANDARD,0,"Belle Vernon","Belle Vrn Br, N Bell Vernon, N Belle Vernon, N Belle Vrn, North Belle Vernon, Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.12,-79.86,14060 +15014,STANDARD,0,Brackenridge,,,PA,"Allegheny County",America/New_York,878,NA,US,40.61,-79.74,2650 +15015,STANDARD,0,Bradfordwoods,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.63,-80.08,1290 +15017,STANDARD,0,Bridgeville,,,PA,"Allegheny County",America/New_York,412,NA,US,40.35,-80.1,14880 +15018,STANDARD,0,"Buena Vista",,,PA,"Allegheny County",America/New_York,412,NA,US,40.27,-79.8,750 +15019,STANDARD,0,Bulger,,,PA,"Washington County",America/New_York,724,NA,US,40.42,-80.35,1350 +15020,"PO BOX",0,Bunola,,,PA,"Allegheny County",America/New_York,412,NA,US,40.23,-79.95,263 +15021,STANDARD,0,Burgettstown,"Eldersville, Paris",Burgettstn,PA,"Washington County",America/New_York,724,NA,US,40.38,-80.39,6210 +15022,STANDARD,0,Charleroi,"N Charleroi, North Charleroi",,PA,"Washington County",America/New_York,724,NA,US,40.13,-79.9,8600 +15024,STANDARD,0,Cheswick,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.54,-79.8,7970 +15025,STANDARD,0,Clairton,"Floreffe, Jefferson Hills, Jefferson Hls, Large",,PA,"Allegheny County",America/New_York,412,NA,US,40.29,-79.88,15150 +15026,STANDARD,0,Clinton,,,PA,"Beaver County",America/New_York,724,NA,US,40.51,-80.34,4040 +15027,STANDARD,0,Conway,,,PA,"Beaver County",America/New_York,724,NA,US,40.66,-80.24,2060 +15028,"PO BOX",0,Coulters,,,PA,"Allegheny County",America/New_York,878,NA,US,40.31,-79.79,170 +15030,STANDARD,0,Creighton,,,PA,"Allegheny County",America/New_York,724,NA,US,40.58,-79.78,850 +15031,STANDARD,0,Cuddy,,,PA,"Allegheny County",America/New_York,412,NA,US,40.35,-80.16,500 +15032,"PO BOX",0,Curtisville,,,PA,"Allegheny County",America/New_York,724,NA,US,40.64,-79.84,244 +15033,STANDARD,0,Donora,,,PA,"Washington County",America/New_York,724,NA,US,40.17,-79.86,3550 +15034,STANDARD,0,Dravosburg,,,PA,"Allegheny County",America/New_York,412,NA,US,40.35,-79.89,1350 +15035,STANDARD,0,"East Mc Keesport","E Mckeesport","E Mc Keesport, East Mckeesport",PA,"Allegheny County",America/New_York,878,NA,US,40.38,-79.81,1770 +15037,STANDARD,0,Elizabeth,,,PA,"Allegheny County",America/New_York,412,NA,US,40.27,-79.88,9730 +15038,"PO BOX",0,Elrama,,,PA,"Washington County",America/New_York,724,NA,US,40.25,-79.93,379 +15042,STANDARD,0,Freedom,,,PA,"Beaver County",America/New_York,724,NA,US,40.68,-80.25,7520 +15043,STANDARD,0,Georgetown,,,PA,"Beaver County",America/New_York,724,NA,US,40.64,-80.49,1930 +15044,STANDARD,0,Gibsonia,,,PA,"Allegheny County",America/New_York,724,NA,US,40.63,-79.94,29140 +15045,STANDARD,0,Glassport,,,PA,"Allegheny County",America/New_York,878,NA,US,40.32,-79.88,3500 +15046,STANDARD,0,Crescent,Glenwillard,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.55,-80.23,2360 +15047,"PO BOX",0,Greenock,,,PA,"Allegheny County",America/New_York,878,NA,US,40.32,-79.81,378 +15049,STANDARD,0,Harwick,,,PA,"Allegheny County",America/New_York,724,NA,US,40.56,-79.81,860 +15050,STANDARD,0,Hookstown,,,PA,"Beaver County",America/New_York,724,NA,US,40.59,-80.47,2430 +15051,STANDARD,0,Indianola,,,PA,"Allegheny County",America/New_York,412,NA,US,40.56,-79.87,360 +15052,STANDARD,0,Industry,,,PA,"Beaver County",America/New_York,724,NA,US,40.65,-80.4,3060 +15053,STANDARD,0,Joffre,,,PA,"Washington County",America/New_York,724,NA,US,40.38,-80.36,200 +15054,"PO BOX",0,Langeloth,,,PA,"Washington County",America/New_York,724,NA,US,40.36,-80.41,589 +15055,STANDARD,0,Lawrence,,,PA,"Washington County",America/New_York,724,NA,US,40.31,-80.12,1280 +15056,STANDARD,0,Leetsdale,,,PA,"Allegheny County",America/New_York,412,NA,US,40.56,-80.21,950 +15057,STANDARD,0,"Mc Donald",,Mcdonald,PA,"Washington County",America/New_York,724,NA,US,40.37,-80.23,15970 +15059,STANDARD,0,Midland,,,PA,"Beaver County",America/New_York,724,NA,US,40.63,-80.45,3300 +15060,"PO BOX",0,Midway,,,PA,"Washington County",America/New_York,724,NA,US,40.37,-80.29,991 +15061,STANDARD,0,Monaca,,,PA,"Beaver County",America/New_York,724,NA,US,40.68,-80.27,11300 +15062,STANDARD,0,Monessen,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.15,-79.88,5570 +15063,STANDARD,0,Monongahela,,,PA,"Washington County",America/New_York,724,NA,US,40.19,-79.92,9830 +15064,STANDARD,0,Morgan,,,PA,"Allegheny County",America/New_York,412,NA,US,40.36,-80.15,310 +15065,STANDARD,0,"Natrona Heights","Natrona Hts",,PA,"Allegheny County",America/New_York,878,NA,US,40.64,-79.73,9890 +15066,STANDARD,0,"New Brighton",,,PA,"Beaver County",America/New_York,"412,724",NA,US,40.73,-80.3,10370 +15067,STANDARD,0,"New Eagle",,Courtney,PA,"Washington County",America/New_York,724,NA,US,40.2,-79.95,1880 +15068,STANDARD,0,"New Kensington","Arnold, Barking, Lower Burrell, New Kensingtn, Parnassus",,PA,"Westmoreland County",America/New_York,724,NA,US,40.56,-79.75,32940 +15069,UNIQUE,0,"New Kensington","New Kensingtn","Alcoa Center",PA,"Westmoreland County",America/New_York,724,NA,US,40.56,-79.75,0 +15071,STANDARD,0,Oakdale,Noblestown,,PA,"Allegheny County",America/New_York,"724,412",NA,US,40.39,-80.18,10700 +15072,"PO BOX",0,Pricedale,"Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.14,-79.86,146 +15074,STANDARD,0,Rochester,,,PA,"Beaver County",America/New_York,"412,724,878",NA,US,40.7,-80.28,7600 +15075,"PO BOX",0,"Rural Ridge",,,PA,"Allegheny County",America/New_York,878,NA,US,40.59,-79.83,207 +15076,STANDARD,0,Russellton,,,PA,"Allegheny County",America/New_York,724,NA,US,40.61,-79.83,810 +15077,"PO BOX",0,Shippingport,,,PA,"Beaver County",America/New_York,724,NA,US,40.62,-80.42,188 +15078,STANDARD,0,Slovan,,,PA,"Washington County",America/New_York,724,NA,US,40.36,-80.38,430 +15081,"PO BOX",0,"South Heights",,,PA,"Beaver County",America/New_York,724,NA,US,40.57,-80.24,459 +15082,"PO BOX",0,Sturgeon,,,PA,"Allegheny County",America/New_York,878,NA,US,40.38,-80.21,386 +15083,STANDARD,0,Sutersville,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.26,-79.79,900 +15084,STANDARD,0,Tarentum,,,PA,"Allegheny County",America/New_York,724,NA,US,40.6,-79.76,8360 +15085,STANDARD,0,Trafford,,,PA,"Westmoreland County",America/New_York,412,NA,US,40.38,-79.75,7480 +15086,STANDARD,0,Warrendale,,,PA,"Allegheny County",America/New_York,724,NA,US,40.67,-80.11,560 +15087,"PO BOX",0,Webster,"Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.19,-79.85,238 +15088,"PO BOX",0,"West Elizabeth","W Elizabeth",,PA,"Allegheny County",America/New_York,878,NA,US,40.27,-79.9,631 +15089,STANDARD,0,"West Newton","Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.2,-79.76,5560 +15090,STANDARD,0,Wexford,,,PA,"Allegheny County",America/New_York,"724,878",NA,US,40.63,-80.05,23900 +15091,"PO BOX",0,Wildwood,,,PA,"Allegheny County",America/New_York,412,NA,US,40.57,-79.95,115 +15095,"PO BOX",0,Warrendale,,"Bulk Mail Ctr",PA,"Allegheny County",America/New_York,724,NA,US,40.64,-80.09,0 +15096,UNIQUE,0,Warrendale,,"Soc Auto Engineers",PA,"Allegheny County",America/New_York,724,NA,US,40.64,-80.09,0 +15101,STANDARD,0,"Allison Park",,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.57,-79.95,24110 +15102,STANDARD,0,"Bethel Park",,,PA,"Allegheny County",America/New_York,412,NA,US,40.32,-80.03,28950 +15104,STANDARD,0,Braddock,Rankin,,PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.86,6020 +15106,STANDARD,0,Carnegie,Heidelberg,"Collier Township, Collier Twp, Rennerdale",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-80.08,16810 +15108,STANDARD,0,Coraopolis,"Moon Township, Moon Twp","Carpolis, Coropolis",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-80.16,37850 +15110,STANDARD,0,Duquesne,,,PA,"Allegheny County",America/New_York,412,NA,US,40.37,-79.85,3950 +15112,STANDARD,0,"East Pittsburgh","E Pittsburgh","East Pgh",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.84,2650 +15116,STANDARD,0,Glenshaw,,,PA,"Allegheny County",America/New_York,412,NA,US,40.52,-79.95,13950 +15120,STANDARD,0,Homestead,"Munhall, W Homestead, West Homestead",,PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.9,15350 +15122,STANDARD,0,"West Mifflin",Pittsburgh,"W Mifflin/Pleasant Hills",PA,"Allegheny County",America/New_York,412,NA,US,40.36,-79.9,17260 +15123,STANDARD,0,"West Mifflin",,"W Mifflin/Pleasant Hills, West Mifflin Century Mall",PA,"Allegheny County",America/New_York,412,NA,US,40.35,-79.9,0 +15126,STANDARD,0,Imperial,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.45,-80.25,6730 +15127,"PO BOX",0,Ingomar,,,PA,"Allegheny County",America/New_York,878,NA,US,40.56,-80.02,283 +15129,STANDARD,0,"South Park",Library,,PA,"Allegheny County",America/New_York,878,NA,US,40.29,-79.99,10260 +15131,STANDARD,0,Mckeesport,"White Oak",,PA,"Allegheny County",America/New_York,412,NA,US,40.34,-79.8,7280 +15132,STANDARD,0,Mckeesport,,,PA,"Allegheny County",America/New_York,412,NA,US,40.33,-79.83,14700 +15133,STANDARD,0,Mckeesport,,"Port Vue",PA,"Allegheny County",America/New_York,412,NA,US,40.33,-79.86,5460 +15134,"PO BOX",0,Mckeesport,,,PA,"Allegheny County",America/New_York,412,NA,US,40.33,-79.83,237 +15135,STANDARD,0,Mckeesport,Boston,,PA,"Allegheny County",America/New_York,412,NA,US,40.31,-79.81,4510 +15136,STANDARD,0,"Mc Kees Rocks",,"Mckees Rocks",PA,"Allegheny County",America/New_York,412,NA,US,40.47,-80.1,20030 +15137,STANDARD,0,"North Versailles","N Versailles",,PA,"Allegheny County",America/New_York,878,NA,US,40.37,-79.8,8540 +15139,STANDARD,0,Oakmont,,,PA,"Allegheny County",America/New_York,412,NA,US,40.52,-79.84,6080 +15140,STANDARD,0,Pitcairn,Monroeville,,PA,"Allegheny County",America/New_York,412,NA,US,40.41,-79.78,2360 +15142,STANDARD,0,Presto,,,PA,"Allegheny County",America/New_York,412,NA,US,40.38,-80.12,1860 +15143,STANDARD,0,Sewickley,Edgeworth,,PA,"Allegheny County",America/New_York,412,NA,US,40.57,-80.15,21220 +15144,STANDARD,0,Springdale,,,PA,"Allegheny County",America/New_York,724,NA,US,40.55,-79.78,3580 +15145,STANDARD,0,"Turtle Creek",,,PA,"Allegheny County",America/New_York,412,NA,US,40.42,-79.82,5720 +15146,STANDARD,0,Monroeville,,,PA,"Allegheny County",America/New_York,412,NA,US,40.42,-79.76,25680 +15147,STANDARD,0,Verona,,,PA,"Allegheny County",America/New_York,412,NA,US,40.5,-79.84,13980 +15148,STANDARD,0,Wilmerding,Wall,,PA,"Allegheny County",America/New_York,412,NA,US,40.39,-79.81,1860 +15201,STANDARD,0,Pittsburgh,Arsenal,"Pgh, Pitt, Pitts",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.47,-79.95,10560 +15202,STANDARD,0,Pittsburgh,"Avalon, Bellevue, Bellvue, Ben Avon, Emsworth","Ben Avon Heights, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-80.07,17220 +15203,STANDARD,0,Pittsburgh,Carson,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.43,-79.97,6410 +15204,STANDARD,0,Pittsburgh,Corliss,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-80.06,6820 +15205,STANDARD,0,Pittsburgh,Crafton,"Ingram, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-80.1,20320 +15206,STANDARD,0,Pittsburgh,"East Liberty",,PA,"Allegheny County",America/New_York,412,NA,US,40.47,-79.91,22090 +15207,STANDARD,0,Pittsburgh,Hazelwood,,PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.93,8780 +15208,STANDARD,0,Pittsburgh,Homewood,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.45,-79.9,7770 +15209,STANDARD,0,Pittsburgh,Millvale,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.5,-79.97,10970 +15210,STANDARD,0,Pittsburgh,"Mount Oliver, Mt Oliver","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.41,-79.98,20140 +15211,STANDARD,0,Pittsburgh,"Mount Washington, Mt Washington","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-80.02,8560 +15212,STANDARD,0,Pittsburgh,Allegheny,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-79.99,21660 +15213,STANDARD,0,Pittsburgh,Oakland,,PA,"Allegheny County",America/New_York,"878,412,724",NA,US,40.44,-79.96,7230 +15214,STANDARD,0,Pittsburgh,Observatory,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.49,-80.01,12010 +15215,STANDARD,0,Pittsburgh,"Aspinwall, Sharpsburg","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.5,-79.91,11150 +15216,STANDARD,0,Pittsburgh,"South Hills","Beechview, Dormont, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-80.03,19990 +15217,STANDARD,0,Pittsburgh,"Squirrel Hill",,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.92,21290 +15218,STANDARD,0,Pittsburgh,Swissvale,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.42,-79.89,11670 +15219,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.44,-79.98,7480 +15220,STANDARD,0,Pittsburgh,Wabash,"Pgh, Pitt, Rook",PA,"Allegheny County",America/New_York,412,NA,US,40.42,-80.05,16460 +15221,STANDARD,0,Pittsburgh,Wilkinsburg,"Braddock Hills, Churchill, Forest Hills, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.86,23860 +15222,STANDARD,0,Pittsburgh,,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.45,-79.99,3610 +15223,STANDARD,0,Pittsburgh,Etna,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-79.95,6180 +15224,STANDARD,0,Pittsburgh,Bloomfield,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"878,412,724",NA,US,40.46,-79.94,7630 +15225,STANDARD,0,Pittsburgh,,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-80.11,870 +15226,STANDARD,0,Pittsburgh,Brookline,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-80.01,11930 +15227,STANDARD,0,Pittsburgh,Brentwood,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.38,-79.97,26790 +15228,STANDARD,0,Pittsburgh,"Mt Lebanon","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.37,-80.04,17180 +15229,STANDARD,0,Pittsburgh,"West View","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.52,-80.04,13410 +15230,"PO BOX",0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,676 +15231,"PO BOX",0,Pittsburgh,"Pgh Int Arprt",,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15232,STANDARD,0,Pittsburgh,Shadyside,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724,878",NA,US,40.45,-79.93,6760 +15233,STANDARD,0,Pittsburgh,Kilbuck,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-80.03,2120 +15234,STANDARD,0,Pittsburgh,"Castle Shann, Castle Shannon","Baldwin, Baldwin Township, BRA# 52, Castl Shannon, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.37,-80.02,12670 +15235,STANDARD,0,Pittsburgh,"Penn Hills","Pgh, Pitt, Universal",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-79.82,30560 +15236,STANDARD,0,Pittsburgh,"Pleasant Hills, Pleasant Hls, West Mifflin","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.35,-79.98,29410 +15237,STANDARD,0,Pittsburgh,"Mc Knight, Mcknight","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.55,-80.04,42230 +15238,STANDARD,0,Pittsburgh,Blawnox,"Fox Chapel, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.54,-79.88,12850 +15239,STANDARD,0,Pittsburgh,Plum,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.48,-79.74,20120 +15240,"PO BOX",0,Pittsburgh,,"Pgh, Pitt, Veterans Hospital",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15241,STANDARD,0,Pittsburgh,"Upper Saint Clair, Upper St Clair, Uppr St Clair","South Hills Village",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.33,-80.08,22040 +15242,"PO BOX",0,Pittsburgh,Greentree,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,61 +15243,STANDARD,0,Pittsburgh,Cedarhurst,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.38,-80.07,13340 +15244,"PO BOX",0,Pittsburgh,Montour,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,69 +15250,UNIQUE,0,Pittsburgh,,"Bank Of Ny Mellon",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15251,UNIQUE,0,Pittsburgh,,"Bank Of Ny Mellon",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15252,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15253,"PO BOX",0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15254,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15255,UNIQUE,0,Pittsburgh,,"Bell Telephone Co",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15257,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15258,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,45 +15259,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15260,STANDARD,0,Pittsburgh,,"Univ Of Pittsburgh",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.44,-79.95,29 +15261,UNIQUE,0,Pittsburgh,,"Univ Of Pittsburgh",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15262,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15263,UNIQUE,1,Pittsburgh,,"Jones And Laughlin",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.98,0 +15264,"PO BOX",0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15265,UNIQUE,0,Pittsburgh,,"Pnc Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15266,UNIQUE,1,Pittsburgh,,"Duguesne Light Co",PA,,America/New_York,,NA,US,40.44,-79.99,0 +15267,UNIQUE,0,Pittsburgh,,Duguesne,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15268,UNIQUE,0,Pittsburgh,,"National City Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15270,UNIQUE,0,Pittsburgh,,"Columbia Gas Of Pa",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15272,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"724,412",NA,US,40.43,-79.97,75 +15273,STANDARD,1,Pittsburgh,,,PA,,America/New_York,,NA,US,40.37,-79.9,0 +15274,"PO BOX",0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15275,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,13 +15276,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.43,-79.97,0 +15277,UNIQUE,0,Pittsburgh,,"Eastern Area",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15278,UNIQUE,0,Pittsburgh,,"National City Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15279,UNIQUE,0,Pittsburgh,,"Duquesne Light Co",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15281,UNIQUE,0,Pittsburgh,,"Macys Dept Store",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15282,UNIQUE,0,Pittsburgh,,"Duquesne Univ",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,16 +15283,UNIQUE,0,Pittsburgh,,"AT & T",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15285,UNIQUE,1,Pittsburgh,,"Joseph Horne Co",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.99,0 +15286,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15288,STANDARD,1,Pittsburgh,Carnegie,,PA,,America/New_York,,NA,US,40.44,-79.94,0 +15289,UNIQUE,0,Pittsburgh,,"Carnegie Mellon Univ",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.94,123 +15290,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"724,412",NA,US,40.46,-80.02,0 +15295,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.43,-79.88,0 +15301,STANDARD,0,Washington,,Wash,PA,"Washington County",America/New_York,"412,724",NA,US,40.17,-80.24,41450 +15310,STANDARD,0,Aleppo,,,PA,"Greene County",America/New_York,724,NA,US,39.82,-80.45,210 +15311,STANDARD,0,Amity,,,PA,"Washington County",America/New_York,724,NA,US,40.05,-80.2,1200 +15312,STANDARD,0,Avella,Rea,,PA,"Washington County",America/New_York,"412,724",NA,US,40.28,-80.47,3110 +15313,"PO BOX",0,Beallsville,,,PA,"Washington County",America/New_York,724,NA,US,40.07,-80.02,432 +15314,STANDARD,0,Bentleyville,,,PA,"Washington County",America/New_York,724,NA,US,40.11,-80,3050 +15315,"PO BOX",0,Bobtown,,,PA,"Greene County",America/New_York,724,NA,US,39.75,-79.98,672 +15316,STANDARD,0,Brave,,,PA,"Greene County",America/New_York,724,NA,US,39.72,-80.25,210 +15317,STANDARD,0,Canonsburg,"Mc Murray, Mcmurray",,PA,"Washington County",America/New_York,724,NA,US,40.26,-80.18,40290 +15320,STANDARD,0,Carmichaels,,Fairdale,PA,"Greene County",America/New_York,724,NA,US,39.89,-79.97,4290 +15321,STANDARD,0,Cecil,,,PA,"Washington County",America/New_York,724,NA,US,40.32,-80.19,1610 +15322,STANDARD,0,Clarksville,,,PA,"Greene County",America/New_York,724,NA,US,39.97,-80.04,1690 +15323,STANDARD,0,Claysville,,,PA,"Washington County",America/New_York,724,NA,US,40.12,-80.41,3950 +15324,"PO BOX",0,Cokeburg,,,PA,"Washington County",America/New_York,724,NA,US,40.1,-80.07,619 +15325,"PO BOX",0,Crucible,,,PA,"Greene County",America/New_York,724,NA,US,39.95,-79.96,468 +15327,STANDARD,0,Dilliner,,,PA,"Greene County",America/New_York,724,NA,US,39.75,-79.99,1100 +15329,STANDARD,0,Prosperity,,,PA,"Washington County",America/New_York,724,NA,US,40.02,-80.25,1330 +15330,STANDARD,0,"Eighty Four",,,PA,"Washington County",America/New_York,724,NA,US,40.18,-80.13,5070 +15331,"PO BOX",0,Ellsworth,,,PA,"Washington County",America/New_York,724,NA,US,40.1,-80.02,968 +15332,STANDARD,0,Finleyville,,,PA,"Washington County",America/New_York,724,NA,US,40.25,-80,7490 +15333,STANDARD,0,Fredericktown,,,PA,"Washington County",America/New_York,724,NA,US,40.02,-80.03,1720 +15334,STANDARD,0,"Garards Fort",,,PA,"Greene County",America/New_York,724,NA,US,39.81,-79.97,186 +15336,"PO BOX",0,Gastonville,,,PA,"Washington County",America/New_York,724,NA,US,40.26,-80,116 +15337,STANDARD,0,Graysville,,,PA,"Greene County",America/New_York,724,NA,US,39.95,-80.38,530 +15338,STANDARD,0,Greensboro,,,PA,"Greene County",America/New_York,724,NA,US,39.78,-79.99,1320 +15339,"PO BOX",0,Hendersonville,Hendersonvlle,,PA,"Washington County",America/New_York,724,NA,US,40.32,-80.21,267 +15340,STANDARD,0,Hickory,,,PA,"Washington County",America/New_York,724,NA,US,40.3,-80.32,1280 +15341,STANDARD,0,Holbrook,,,PA,"Greene County",America/New_York,724,NA,US,39.84,-80.34,630 +15342,STANDARD,0,Houston,,,PA,"Washington County",America/New_York,412,NA,US,40.25,-80.21,4650 +15344,STANDARD,0,Jefferson,,,PA,"Greene County",America/New_York,724,NA,US,39.93,-80.05,1410 +15345,STANDARD,0,Marianna,,,PA,"Washington County",America/New_York,724,NA,US,40.01,-80.11,1310 +15346,"PO BOX",0,Mather,,,PA,"Greene County",America/New_York,724,NA,US,39.94,-80.08,644 +15347,"PO BOX",0,"Meadow Lands",,,PA,"Washington County",America/New_York,724,NA,US,40.22,-80.22,785 +15348,"PO BOX",0,Millsboro,,,PA,"Washington County",America/New_York,724,NA,US,39.99,-80,336 +15349,STANDARD,0,"Mount Morris","Davistown, Mt Morris",,PA,"Greene County",America/New_York,724,NA,US,39.75,-80.11,1440 +15350,"PO BOX",0,Muse,,,PA,"Washington County",America/New_York,724,NA,US,40.29,-80.2,663 +15351,"PO BOX",0,Nemacolin,,,PA,"Greene County",America/New_York,724,NA,US,39.88,-79.92,736 +15352,STANDARD,0,"New Freeport","Pine Bank",,PA,"Greene County",America/New_York,724,NA,US,39.75,-80.45,660 +15353,"PO BOX",0,Nineveh,,,PA,"Greene County",America/New_York,724,NA,US,39.96,-80.31,104 +15357,STANDARD,0,"Rices Landing",,,PA,"Greene County",America/New_York,724,NA,US,39.94,-79.99,1460 +15358,"PO BOX",0,Richeyville,,,PA,"Washington County",America/New_York,724,NA,US,40.06,-80,812 +15359,STANDARD,0,Rogersville,,,PA,"Greene County",America/New_York,724,NA,US,39.88,-80.28,210 +15360,STANDARD,0,"Scenery Hill",,,PA,"Washington County",America/New_York,724,NA,US,40.08,-80.07,1730 +15361,"PO BOX",0,Southview,,,PA,"Washington County",America/New_York,724,NA,US,40.33,-80.26,158 +15362,STANDARD,0,Spraggs,,,PA,"Greene County",America/New_York,724,NA,US,39.78,-80.22,610 +15363,STANDARD,0,Strabane,,,PA,"Washington County",America/New_York,724,NA,US,40.25,-80.2,720 +15364,STANDARD,0,Sycamore,,,PA,"Greene County",America/New_York,724,NA,US,39.95,-80.3,530 +15365,"PO BOX",0,Taylorstown,,,PA,"Washington County",America/New_York,724,NA,US,40.17,-80.38,131 +15366,"PO BOX",0,"Van Voorhis",,,PA,"Washington County",America/New_York,724,NA,US,40.16,-79.97,191 +15367,STANDARD,0,Venetia,,,PA,"Washington County",America/New_York,724,NA,US,40.26,-80.05,9660 +15368,"PO BOX",0,Vestaburg,,,PA,"Washington County",America/New_York,724,NA,US,40.01,-79.99,546 +15370,STANDARD,0,Waynesburg,,,PA,"Greene County",America/New_York,724,NA,US,39.89,-80.18,9750 +15376,STANDARD,0,"West Alexander","W Alexander",,PA,"Washington County",America/New_York,724,NA,US,40.1,-80.5,1570 +15377,STANDARD,0,"West Finley",,,PA,"Washington County",America/New_York,724,NA,US,39.99,-80.45,540 +15378,"PO BOX",0,Westland,,,PA,"Washington County",America/New_York,724,NA,US,40.28,-80.28,126 +15379,"PO BOX",0,"West Middletown","W Middletown",,PA,"Washington County",America/New_York,724,NA,US,40.24,-80.43,132 +15380,STANDARD,0,"Wind Ridge",,,PA,"Greene County",America/New_York,724,NA,US,39.88,-80.46,570 +15401,STANDARD,0,Uniontown,,"Oliphant Furnace",PA,"Fayette County",America/New_York,"412,724",NA,US,39.89,-79.72,25550 +15410,STANDARD,0,Adah,,,PA,"Fayette County",America/New_York,724,NA,US,39.91,-79.9,610 +15411,STANDARD,0,Addison,,,PA,"Somerset County",America/New_York,814,NA,US,39.74,-79.33,510 +15412,"PO BOX",0,Allenport,,,PA,"Washington County",America/New_York,724,NA,US,40.09,-79.85,282 +15413,STANDARD,0,Allison,,,PA,"Fayette County",America/New_York,724,NA,US,39.99,-79.87,390 +15415,"PO BOX",0,"Brier Hill",,,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.83,123 +15416,"PO BOX",0,Brownfield,,,PA,"Fayette County",America/New_York,724,NA,US,39.85,-79.68,229 +15417,STANDARD,0,Brownsville,,"West Brownsville",PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.89,6000 +15419,STANDARD,0,California,,,PA,"Washington County",America/New_York,724,NA,US,40.05,-79.89,1590 +15420,"PO BOX",0,Cardale,,,PA,"Fayette County",America/New_York,724,NA,US,39.96,-79.87,192 +15421,"PO BOX",0,"Chalk Hill",,,PA,"Fayette County",America/New_York,724,NA,US,39.85,-79.6,621 +15422,"PO BOX",0,"Chestnut Ridge","Chestnut Rdg",,PA,"Fayette County",America/New_York,724,NA,US,39.98,-79.81,186 +15423,STANDARD,0,"Coal Center",,,PA,"Washington County",America/New_York,724,NA,US,40.09,-79.93,1540 +15424,STANDARD,0,Confluence,"Listonburg, Ursina",,PA,"Somerset County",America/New_York,814,NA,US,39.8,-79.35,1930 +15425,STANDARD,0,Connellsville,"S Connellsvl","Greene Junction, S Connelsvl",PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.58,15380 +15427,STANDARD,0,Daisytown,,,PA,"Washington County",America/New_York,724,NA,US,40.07,-79.97,880 +15428,STANDARD,0,Dawson,,,PA,"Fayette County",America/New_York,724,NA,US,40.08,-79.68,1580 +15429,"PO BOX",0,Denbo,,,PA,"Washington County",America/New_York,724,NA,US,40,-79.94,200 +15430,"PO BOX",0,"Dickerson Run",,,PA,"Fayette County",America/New_York,724,NA,US,40.04,-79.65,342 +15431,STANDARD,0,Dunbar,,,PA,"Fayette County",America/New_York,724,NA,US,39.97,-79.61,3780 +15432,"PO BOX",0,Dunlevy,,,PA,"Washington County",America/New_York,724,NA,US,40.11,-79.86,366 +15433,STANDARD,0,"East Millsboro","E Millsboro",,PA,"Fayette County",America/New_York,724,NA,US,39.98,-79.96,610 +15434,"PO BOX",0,Elco,,,PA,"Washington County",America/New_York,724,NA,US,40.08,-79.88,232 +15435,"PO BOX",0,Fairbank,,,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.85,588 +15436,STANDARD,0,Fairchance,,,PA,"Fayette County",America/New_York,724,NA,US,39.82,-79.75,2260 +15437,STANDARD,0,Farmington,,,PA,"Fayette County",America/New_York,724,NA,US,39.78,-79.61,2290 +15438,STANDARD,0,"Fayette City",,,PA,"Fayette County",America/New_York,724,NA,US,40.1,-79.83,1880 +15439,"PO BOX",0,Gans,"Lake Lynn",,PA,"Monongalia County",America/New_York,724,NA,US,39.74,-79.81,98 +15440,STANDARD,0,"Gibbon Glade",,,PA,"Fayette County",America/New_York,724,NA,US,39.73,-79.56,280 +15442,STANDARD,0,Grindstone,,,PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.83,1910 +15443,"PO BOX",0,Hibbs,,,PA,"Fayette County",America/New_York,724,NA,US,39.92,-79.88,283 +15444,STANDARD,0,Hiller,,,PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.91,410 +15445,STANDARD,0,Hopwood,,,PA,"Fayette County",America/New_York,"412,724",NA,US,39.87,-79.7,2510 +15446,STANDARD,0,"Indian Head",,,PA,"Fayette County",America/New_York,724,NA,US,40.03,-79.4,430 +15447,"PO BOX",0,Isabella,,,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.94,145 +15448,"PO BOX",0,"Jacobs Creek",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.14,-79.73,179 +15449,"PO BOX",0,Keisterville,,,PA,"Fayette County",America/New_York,724,NA,US,39.96,-79.78,202 +15450,STANDARD,0,"La Belle",,,PA,"Fayette County",America/New_York,724,NA,US,40,-79.97,280 +15451,STANDARD,0,"Lake Lynn",,,PA,"Fayette County",America/New_York,724,NA,US,39.74,-79.84,710 +15454,"PO BOX",0,Leckrone,,,PA,"Fayette County",America/New_York,724,NA,US,39.86,-79.87,210 +15455,"PO BOX",0,Leisenring,,,PA,"Fayette County",America/New_York,724,NA,US,40,-79.64,301 +15456,STANDARD,0,"Lemont Furnace","Lemont Frnc, Lemont Frnce","Lemont Fce",PA,"Fayette County",America/New_York,"412,724",NA,US,39.92,-79.64,2120 +15458,STANDARD,0,"Mc Clellandtown","Lamberton, Mcclellandtwn",Mcclellandtown,PA,"Fayette County",America/New_York,724,NA,US,39.88,-79.86,1870 +15459,STANDARD,0,Markleysburg,,,PA,"Fayette County",America/New_York,724,NA,US,39.73,-79.45,1230 +15460,"PO BOX",0,Martin,,,PA,"Fayette County",America/New_York,724,NA,US,39.81,-79.91,163 +15461,STANDARD,0,Masontown,,,PA,"Fayette County",America/New_York,724,NA,US,39.84,-79.9,3440 +15462,STANDARD,0,Melcroft,,,PA,"Fayette County",America/New_York,814,NA,US,40.06,-79.38,330 +15463,"PO BOX",0,Merrittstown,,,PA,"Fayette County",America/New_York,724,NA,US,39.97,-79.9,433 +15464,STANDARD,0,"Mill Run",,,PA,"Fayette County",America/New_York,724,NA,US,39.96,-79.45,1240 +15465,"PO BOX",0,"Mount Braddock","Mt Braddock",,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.67,324 +15466,"PO BOX",0,Newell,,,PA,"Fayette County",America/New_York,724,NA,US,40.08,-79.89,399 +15467,"PO BOX",0,"New Geneva",,,PA,"Fayette County",America/New_York,724,NA,US,39.78,-79.93,164 +15468,STANDARD,0,"New Salem",,,PA,"Fayette County",America/New_York,724,NA,US,39.95,-79.83,1920 +15469,STANDARD,0,Normalville,,,PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.42,1790 +15470,STANDARD,0,Ohiopyle,,,PA,"Fayette County",America/New_York,724,NA,US,39.87,-79.53,630 +15472,"PO BOX",0,Oliver,,,PA,"Fayette County",America/New_York,724,NA,US,39.92,-79.72,247 +15473,STANDARD,0,Perryopolis,"Layton, Whitsett",,PA,"Fayette County",America/New_York,724,NA,US,40.08,-79.75,3450 +15474,STANDARD,0,"Point Marion",,,PA,"Fayette County",America/New_York,724,NA,US,39.73,-79.9,1580 +15475,"PO BOX",0,Republic,,,PA,"Fayette County",America/New_York,724,NA,US,39.95,-79.88,1062 +15476,"PO BOX",0,Ronco,,,PA,"Fayette County",America/New_York,724,NA,US,39.87,-79.92,207 +15477,"PO BOX",0,Roscoe,,,PA,"Washington County",America/New_York,724,NA,US,40.08,-79.86,970 +15478,STANDARD,0,Smithfield,,,PA,"Fayette County",America/New_York,724,NA,US,39.8,-79.8,5220 +15479,STANDARD,0,Smithton,"Rostraver Township, Rostraver Twp, Van Meter",,PA,"Westmoreland County",America/New_York,878,NA,US,40.15,-79.74,1800 +15480,STANDARD,0,Smock,,,PA,"Fayette County",America/New_York,724,NA,US,39.99,-79.75,1650 +15482,"PO BOX",0,"Star Junction",,,PA,"Fayette County",America/New_York,724,NA,US,40.06,-79.77,571 +15483,"PO BOX",0,Stockdale,,,PA,"Washington County",America/New_York,724,NA,US,40.08,-79.85,485 +15484,"PO BOX",0,Uledi,,,PA,"Fayette County",America/New_York,724,NA,US,39.89,-79.78,295 +15485,"PO BOX",0,Ursina,,,PA,"Somerset County",America/New_York,814,NA,US,39.81,-79.33,101 +15486,STANDARD,0,Vanderbilt,,,PA,"Fayette County",America/New_York,724,NA,US,40.03,-79.66,1970 +15488,STANDARD,0,Waltersburg,,,PA,"Fayette County",America/New_York,724,NA,US,39.98,-79.77,218 +15489,"PO BOX",0,"West Leisenring","W Leisenring",,PA,"Fayette County",America/New_York,724,NA,US,39.97,-79.7,376 +15490,STANDARD,0,White,,,PA,"Fayette County",America/New_York,724,NA,US,40.07,-79.42,570 +15492,"PO BOX",0,Wickhaven,,,PA,"Fayette County",America/New_York,724,NA,US,40.12,-79.76,127 +15501,STANDARD,0,Somerset,,,PA,"Somerset County",America/New_York,814,NA,US,40,-79.07,12740 +15502,"PO BOX",0,"Hidden Valley",,,PA,"Somerset County",America/New_York,814,NA,US,40.04,-79.24,221 +15510,UNIQUE,0,Somerset,,"Sci Somerset",PA,"Somerset County",America/New_York,814,NA,US,39.97,-79.04,47 +15520,"PO BOX",0,Acosta,,,PA,"Somerset County",America/New_York,814,NA,US,40.11,-79.06,263 +15521,STANDARD,0,"Alum Bank",,,PA,"Bedford County",America/New_York,814,NA,US,40.19,-78.62,1560 +15522,STANDARD,0,Bedford,,,PA,"Bedford County",America/New_York,814,NA,US,40.01,-78.5,10310 +15530,STANDARD,0,Berlin,,,PA,"Somerset County",America/New_York,814,NA,US,39.92,-78.95,4520 +15531,STANDARD,0,Boswell,,,PA,"Somerset County",America/New_York,814,NA,US,40.16,-79.02,3140 +15532,"PO BOX",0,Boynton,,,PA,"Somerset County",America/New_York,814,NA,US,39.76,-79.06,146 +15533,STANDARD,0,Breezewood,,,PA,"Bedford County",America/New_York,814,NA,US,39.99,-78.24,1220 +15534,STANDARD,0,"Buffalo Mills",,,PA,"Bedford County",America/New_York,814,NA,US,39.9,-78.69,730 +15535,STANDARD,0,Clearville,,,PA,"Bedford County",America/New_York,814,NA,US,39.91,-78.37,1790 +15536,STANDARD,0,"Crystal Spring","Crystal Spg",,PA,"Fulton County",America/New_York,814,NA,US,39.93,-78.21,380 +15537,STANDARD,0,Everett,,,PA,"Bedford County",America/New_York,814,NA,US,40.01,-78.36,6770 +15538,STANDARD,0,Fairhope,Glencoe,,PA,"Somerset County",America/New_York,814,NA,US,39.89,-78.83,600 +15539,STANDARD,0,Fishertown,,,PA,"Bedford County",America/New_York,814,NA,US,40.13,-78.59,470 +15540,STANDARD,0,"Fort Hill",,,PA,"Somerset County",America/New_York,814,NA,US,39.8,-79.24,280 +15541,STANDARD,0,Friedens,,,PA,"Somerset County",America/New_York,814,NA,US,40.04,-79,3270 +15542,STANDARD,0,Garrett,,,PA,"Somerset County",America/New_York,814,NA,US,39.86,-79.06,1030 +15544,"PO BOX",0,Gray,,,PA,"Somerset County",America/New_York,814,NA,US,40.14,-79.09,244 +15545,STANDARD,0,Hyndman,,,PA,"Bedford County",America/New_York,814,NA,US,39.82,-78.72,2270 +15546,STANDARD,0,Jenners,,,PA,"Somerset County",America/New_York,814,NA,US,40.14,-79.05,290 +15547,"PO BOX",0,Jennerstown,,,PA,"Somerset County",America/New_York,814,NA,US,40.16,-79.06,635 +15548,STANDARD,0,Kantner,,,PA,"Somerset County",America/New_York,814,NA,US,40.11,-78.96,30 +15549,"PO BOX",0,Listie,,,PA,"Somerset County",America/New_York,814,NA,US,40.04,-79.12,88 +15550,STANDARD,0,"Manns Choice",,,PA,"Bedford County",America/New_York,814,NA,US,40,-78.59,1440 +15551,STANDARD,0,Markleton,,,PA,"Somerset County",America/New_York,814,NA,US,39.87,-79.29,670 +15552,STANDARD,0,Meyersdale,,Myersdale,PA,"Somerset County",America/New_York,814,NA,US,39.81,-79.02,5080 +15553,"PO BOX",0,"New Baltimore",,,PA,"Somerset County",America/New_York,814,NA,US,39.98,-78.77,133 +15554,STANDARD,0,"New Paris",,,PA,"Bedford County",America/New_York,814,NA,US,40.1,-78.64,2090 +15555,"PO BOX",0,Quecreek,,,PA,"Somerset County",America/New_York,814,NA,US,40.09,-79.08,78 +15557,STANDARD,0,Rockwood,,,PA,"Somerset County",America/New_York,814,NA,US,39.91,-79.15,3280 +15558,STANDARD,0,Salisbury,,,PA,"Somerset County",America/New_York,814,NA,US,39.75,-79.08,1660 +15559,STANDARD,0,Schellsburg,,,PA,"Bedford County",America/New_York,814,NA,US,40.04,-78.64,1700 +15560,"PO BOX",0,Shanksville,,,PA,"Somerset County",America/New_York,814,NA,US,40.02,-78.91,275 +15561,"PO BOX",0,Sipesville,,,PA,"Somerset County",America/New_York,814,NA,US,40.1,-79.09,244 +15562,STANDARD,0,Springs,,,PA,"Somerset County",America/New_York,814,NA,US,39.74,-79.13,300 +15563,STANDARD,0,Stoystown,,,PA,"Somerset County",America/New_York,814,NA,US,40.1,-78.95,2530 +15564,STANDARD,0,Wellersburg,,,PA,"Somerset County",America/New_York,814,NA,US,39.73,-78.84,83 +15565,STANDARD,0,"West Salisbury","W Salisbury",,PA,"Somerset County",America/New_York,814,NA,US,39.78,-79.01,63 +15601,STANDARD,0,Greensburg,,Gbg,PA,"Westmoreland County",America/New_York,"412,724,878",NA,US,40.31,-79.54,49750 +15605,UNIQUE,0,Greensburg,,"Bureau Of Voc Rehab",PA,"Westmoreland County",America/New_York,724,NA,US,40.31,-79.54,0 +15606,UNIQUE,0,Greensburg,,"Allegheny Power",PA,"Westmoreland County",America/New_York,724,NA,US,40.31,-79.54,0 +15610,STANDARD,0,Acme,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.15,-79.42,3350 +15611,STANDARD,0,Adamsburg,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.31,-79.65,390 +15612,STANDARD,0,Alverton,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.14,-79.6,360 +15613,STANDARD,0,Apollo,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.58,-79.56,12270 +15615,STANDARD,0,Ardara,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.36,-79.73,240 +15616,"PO BOX",0,Armbrust,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.22,-79.55,198 +15617,"PO BOX",0,Arona,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.27,-79.66,401 +15618,STANDARD,0,Avonmore,Edmon,,PA,"Westmoreland County",America/New_York,724,NA,US,40.52,-79.47,2180 +15619,"PO BOX",0,Bovard,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.34,-79.53,429 +15620,STANDARD,0,Bradenville,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.32,-79.34,670 +15621,"PO BOX",0,Calumet,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.21,-79.48,140 +15622,STANDARD,0,Champion,,,PA,"Fayette County",America/New_York,"724,814",NA,US,40.04,-79.32,1030 +15623,STANDARD,0,Claridge,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.37,-79.62,720 +15624,"PO BOX",0,Crabtree,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.36,-79.47,490 +15625,"PO BOX",0,Darragh,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.27,-79.68,208 +15626,STANDARD,0,Delmont,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.41,-79.57,4790 +15627,STANDARD,0,Derry,,,PA,"Westmoreland County",America/New_York,"724,878",NA,US,40.33,-79.3,5600 +15628,STANDARD,0,Donegal,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.11,-79.38,440 +15629,"PO BOX",0,"East Vandergrift","E Vandergrift",,PA,"Westmoreland County",America/New_York,878,NA,US,40.6,-79.56,624 +15631,"PO BOX",0,Everson,,,PA,"Fayette County",America/New_York,724,NA,US,40.09,-79.58,800 +15632,STANDARD,0,Export,Murrysville,,PA,"Westmoreland County",America/New_York,724,NA,US,40.41,-79.62,8930 +15633,"PO BOX",0,"Forbes Road",,"Forbes Rd",PA,"Westmoreland County",America/New_York,878,NA,US,40.36,-79.52,276 +15634,STANDARD,0,Grapeville,,,PA,"Westmoreland County",America/New_York,"412,724",NA,US,40.32,-79.6,510 +15635,"PO BOX",0,Hannastown,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.35,-79.5,257 +15636,STANDARD,0,"Harrison City",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.37,-79.66,3910 +15637,STANDARD,0,Herminie,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.26,-79.71,1660 +15638,"PO BOX",0,Hostetter,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.26,-79.4,307 +15639,STANDARD,0,Hunker,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.2,-79.61,1740 +15640,"PO BOX",0,Hutchinson,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.22,-79.73,354 +15641,STANDARD,0,"Hyde Park",,,PA,"Westmoreland County",America/New_York,878,NA,US,40.63,-79.59,490 +15642,STANDARD,0,Irwin,"N Huntingdon, No Huntingdon, North Huntingdon, North Irwin",,PA,"Westmoreland County",America/New_York,724,NA,US,40.32,-79.69,44170 +15644,STANDARD,0,Jeannette,,,PA,"Westmoreland County",America/New_York,"412,724",NA,US,40.33,-79.62,16050 +15646,STANDARD,0,"Jones Mills",,,PA,"Westmoreland County",America/New_York,"724,814",NA,US,40.08,-79.33,200 +15647,STANDARD,0,Larimer,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.35,-79.72,300 +15650,STANDARD,0,Latrobe,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.31,-79.38,23010 +15655,STANDARD,0,Laughlintown,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.19,-79.16,470 +15656,STANDARD,0,Leechburg,"N Leechburg, North Leechburg, W Leechburg, West Leechburg",,PA,"Westmoreland County",America/New_York,724,NA,US,40.63,-79.6,9020 +15658,STANDARD,0,Ligonier,Wilpen,,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.23,7250 +15660,"PO BOX",0,Lowber,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.77,210 +15661,STANDARD,0,Loyalhanna,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.32,-79.36,490 +15662,"PO BOX",0,Luxor,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.33,-79.48,244 +15663,"PO BOX",0,Madison,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.24,-79.67,538 +15664,"PO BOX",0,Mammoth,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.16,-79.51,125 +15665,STANDARD,0,Manor,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.34,-79.66,1420 +15666,STANDARD,0,"Mount Pleasant","Mt Pleasant",,PA,"Westmoreland County",America/New_York,724,NA,US,40.15,-79.54,13680 +15668,STANDARD,0,Murrysville,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.46,-79.67,13210 +15670,STANDARD,0,"New Alexandria","New Alexandri",,PA,"Westmoreland County",America/New_York,724,NA,US,40.39,-79.41,3080 +15671,STANDARD,0,"New Derry",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.36,-79.32,640 +15672,STANDARD,0,"New Stanton",,,PA,"Westmoreland County",America/New_York,878,NA,US,40.22,-79.6,2970 +15673,"PO BOX",0,"North Apollo",,,PA,"Armstrong County",America/New_York,724,NA,US,40.59,-79.56,1289 +15674,"PO BOX",0,Norvelt,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.16,-79.51,392 +15675,STANDARD,0,Penn,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.34,-79.64,850 +15676,"PO BOX",0,"Pleasant Unity","Pleasant Unty",,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.47,593 +15677,STANDARD,0,Rector,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.14,-79.24,410 +15678,STANDARD,0,Rillton,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.29,-79.73,530 +15679,STANDARD,0,"Ruffs Dale",,,PA,"Westmoreland County",America/New_York,878,NA,US,40.15,-79.63,2820 +15680,"PO BOX",0,Salina,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.52,-79.5,303 +15681,STANDARD,0,Saltsburg,,,PA,"Indiana County",America/New_York,724,NA,US,40.48,-79.44,4000 +15682,"PO BOX",0,Schenley,,,PA,"Armstrong County",America/New_York,724,NA,US,40.68,-79.64,59 +15683,STANDARD,0,Scottdale,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.1,-79.58,7170 +15684,STANDARD,0,Slickville,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.46,-79.5,530 +15685,"PO BOX",0,Southwest,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.18,-79.49,288 +15686,STANDARD,0,"Spring Church",,,PA,"Armstrong County",America/New_York,724,NA,US,40.62,-79.44,730 +15687,STANDARD,0,Stahlstown,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.13,-79.29,1190 +15688,STANDARD,0,Tarrs,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.17,-79.58,630 +15689,"PO BOX",0,United,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.22,-79.49,238 +15690,STANDARD,0,Vandergrift,Park,,PA,"Westmoreland County",America/New_York,724,NA,US,40.59,-79.57,7480 +15691,"PO BOX",0,Wendel,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.3,-79.69,217 +15692,STANDARD,0,"Westmoreland City","Westmrlnd Cty",,PA,"Westmoreland County",America/New_York,724,NA,US,40.33,-79.68,890 +15693,"PO BOX",0,Whitney,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.25,-79.41,255 +15695,"PO BOX",0,Wyano,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.2,-79.69,341 +15696,"PO BOX",0,Youngstown,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.28,-79.37,682 +15697,STANDARD,0,Youngwood,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.58,2560 +15698,STANDARD,0,Yukon,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.21,-79.68,680 +15701,STANDARD,0,Indiana,,,PA,"Indiana County",America/New_York,"412,724",NA,US,40.62,-79.15,21260 +15705,UNIQUE,0,Indiana,,"Indiana Univ Of Pa",PA,"Indiana County",America/New_York,724,NA,US,40.62,-79.15,60 +15710,"PO BOX",0,Alverda,,,PA,"Indiana County",America/New_York,724,NA,US,40.64,-78.87,212 +15711,STANDARD,0,Anita,,,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-78.96,290 +15712,"PO BOX",0,Arcadia,,,PA,"Indiana County",America/New_York,814,NA,US,40.79,-78.85,112 +15713,STANDARD,0,Aultman,,,PA,"Indiana County",America/New_York,"724,878",NA,US,40.57,-79.26,200 +15714,STANDARD,0,"Northern Cambria","Barnesboro, N Cambria",,PA,"Cambria County",America/New_York,814,NA,US,40.66,-78.78,5090 +15715,"PO BOX",0,"Big Run",,,PA,"Jefferson County",America/New_York,814,NA,US,40.97,-78.88,617 +15716,"PO BOX",0,"Black Lick",,,PA,"Indiana County",America/New_York,,NA,US,40.47,-79.19,798 +15717,STANDARD,0,Blairsville,,,PA,"Indiana County",America/New_York,"878,724",NA,US,40.43,-79.26,8590 +15720,"PO BOX",0,"Brush Valley",,,PA,"Indiana County",America/New_York,724,NA,US,40.53,-79.06,218 +15721,"PO BOX",0,Burnside,,,PA,"Clearfield County",America/New_York,814,NA,US,40.81,-78.78,188 +15722,STANDARD,0,Carrolltown,,,PA,"Cambria County",America/New_York,814,NA,US,40.6,-78.7,1970 +15723,"PO BOX",0,Chambersville,,,PA,"Indiana County",America/New_York,724,NA,US,40.7,-79.16,48 +15724,STANDARD,0,"Cherry Tree",,,PA,"Indiana County",America/New_York,814,NA,US,40.72,-78.8,1880 +15725,STANDARD,0,Clarksburg,,,PA,"Indiana County",America/New_York,"724,878",NA,US,40.49,-79.36,1180 +15727,"PO BOX",0,Clune,,,PA,"Indiana County",America/New_York,724,NA,US,40.56,-79.31,158 +15728,STANDARD,0,Clymer,,,PA,"Indiana County",America/New_York,724,NA,US,40.66,-79.01,3020 +15729,STANDARD,0,Commodore,,,PA,"Indiana County",America/New_York,,NA,US,40.69,-78.9,1250 +15730,STANDARD,0,Coolspring,,,PA,"Jefferson County",America/New_York,814,NA,US,41.06,-79.09,139 +15731,"PO BOX",0,Coral,,,PA,"Indiana County",America/New_York,,NA,US,40.5,-79.18,332 +15732,STANDARD,0,Creekside,,,PA,"Indiana County",America/New_York,"412,724",NA,US,40.68,-79.19,1490 +15733,"PO BOX",0,"De Lancey",,,PA,"Jefferson County",America/New_York,814,NA,US,40.99,-78.96,105 +15734,"PO BOX",0,Dixonville,,,PA,"Indiana County",America/New_York,814,NA,US,40.72,-79,308 +15736,"PO BOX",0,Elderton,,,PA,"Armstrong County",America/New_York,724,NA,US,40.69,-79.34,643 +15737,"PO BOX",0,Elmora,,,PA,"Cambria County",America/New_York,814,NA,US,40.6,-78.76,561 +15738,"PO BOX",0,Emeigh,,,PA,"Cambria County",America/New_York,814,NA,US,40.69,-78.76,225 +15739,"PO BOX",0,Ernest,,,PA,"Indiana County",America/New_York,,NA,US,40.67,-79.17,440 +15740,STANDARD,1,Frostburg,,,PA,"Jefferson County",America/New_York,814,NA,US,40.96,-79.03,0 +15741,"PO BOX",0,Gipsy,,,PA,"Indiana County",America/New_York,814,NA,US,40.8,-78.89,74 +15742,STANDARD,0,"Glen Campbell",,,PA,"Indiana County",America/New_York,814,NA,US,40.81,-78.83,770 +15744,STANDARD,0,Hamilton,,,PA,"Jefferson County",America/New_York,814,NA,US,40.92,-79.08,107 +15745,"PO BOX",0,Heilwood,,,PA,"Indiana County",America/New_York,724,NA,US,40.62,-78.92,352 +15746,"PO BOX",0,Hillsdale,,,PA,"Indiana County",America/New_York,814,NA,US,40.76,-78.89,211 +15747,STANDARD,0,Home,,,PA,"Indiana County",America/New_York,724,NA,US,40.78,-79.15,1710 +15748,STANDARD,0,"Homer City","Graceton, Waterman",,PA,"Indiana County",America/New_York,"724,412,878",NA,US,40.53,-79.15,6070 +15750,STANDARD,0,Josephine,,,PA,"Indiana County",America/New_York,,NA,US,40.48,-79.18,154 +15752,"PO BOX",0,Kent,,,PA,"Indiana County",America/New_York,,NA,US,40.54,-79.28,108 +15753,STANDARD,0,"La Jose",,,PA,"Clearfield County",America/New_York,814,NA,US,40.81,-78.62,390 +15754,"PO BOX",0,Lucernemines,,,PA,"Indiana County",America/New_York,,NA,US,40.56,-79.15,515 +15756,"PO BOX",0,"Mc Intyre",,Mcintyre,PA,"Indiana County",America/New_York,724,NA,US,40.57,-79.3,184 +15757,STANDARD,0,Mahaffey,"Mcgees Mills","Mc Gees Mills",PA,"Clearfield County",America/New_York,814,NA,US,40.87,-78.72,1300 +15758,STANDARD,0,Marchand,,,PA,"Indiana County",America/New_York,814,NA,US,40.87,-79.04,17 +15759,STANDARD,0,"Marion Center",,,PA,"Indiana County",America/New_York,724,NA,US,40.77,-79.04,2350 +15760,STANDARD,0,Marsteller,,,PA,"Cambria County",America/New_York,814,NA,US,40.64,-78.81,104 +15761,STANDARD,0,Mentcle,,,PA,"Indiana County",America/New_York,724,NA,US,40.63,-78.89,70 +15762,STANDARD,0,Nicktown,,,PA,"Cambria County",America/New_York,814,NA,US,40.59,-78.83,850 +15763,STANDARD,0,Northpoint,,,PA,"Indiana County",America/New_York,,NA,US,40.9,-79.12,29 +15764,STANDARD,0,Oliveburg,,,PA,"Jefferson County",America/New_York,814,NA,US,40.99,-79.03,102 +15765,STANDARD,0,"Penn Run",,,PA,"Indiana County",America/New_York,,NA,US,40.6,-78.99,1450 +15767,STANDARD,0,Punxsutawney,"Frostburg, Juneau",,PA,"Jefferson County",America/New_York,814,NA,US,40.94,-78.97,12380 +15770,STANDARD,0,Ringgold,,,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-79.14,170 +15771,STANDARD,0,"Rochester Mills","Rochester Mls",,PA,"Indiana County",America/New_York,724,NA,US,40.82,-79,810 +15772,STANDARD,0,Rossiter,,,PA,"Indiana County",America/New_York,"724,814",NA,US,40.86,-78.94,1340 +15773,STANDARD,0,"Saint Benedict","St Benedict",,PA,"Cambria County",America/New_York,814,NA,US,40.63,-78.74,380 +15774,STANDARD,0,Shelocta,,,PA,"Indiana County",America/New_York,724,NA,US,40.65,-79.3,2780 +15775,STANDARD,0,Spangler,,,PA,"Cambria County",America/New_York,814,NA,US,40.63,-78.79,0 +15776,STANDARD,0,"Sprankle Mills","Sprankle Mls",,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-79.11,50 +15777,STANDARD,0,Starford,,,PA,"Indiana County",America/New_York,,NA,US,40.69,-78.97,151 +15778,STANDARD,0,Timblin,,,PA,"Jefferson County",America/New_York,814,NA,US,40.97,-79.2,155 +15779,"PO BOX",0,Torrance,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.39,-79.22,191 +15780,STANDARD,0,Valier,,,PA,"Jefferson County",America/New_York,724,NA,US,40.91,-79.07,138 +15781,"PO BOX",0,Walston,,,PA,"Jefferson County",America/New_York,814,NA,US,40.96,-78.99,144 +15783,"PO BOX",0,"West Lebanon",,,PA,"Indiana County",America/New_York,724,NA,US,40.6,-79.35,126 +15784,STANDARD,0,Worthville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.02,-79.14,125 +15801,STANDARD,0,"Du Bois",Dubois,,PA,"Clearfield County",America/New_York,814,NA,US,41.14,-78.73,16850 +15821,STANDARD,0,Benezett,Benezette,,PA,"Elk County",America/New_York,814,NA,US,41.35,-78.37,181 +15822,STANDARD,0,"Brandy Camp",,,PA,"Elk County",America/New_York,814,NA,US,41.34,-78.7,0 +15823,STANDARD,0,Brockport,,,PA,"Elk County",America/New_York,814,NA,US,41.27,-78.73,1310 +15824,STANDARD,0,Brockway,,,PA,"Jefferson County",America/New_York,814,NA,US,41.24,-78.79,4540 +15825,STANDARD,0,Brookville,Hazen,,PA,"Jefferson County",America/New_York,814,NA,US,41.16,-79.08,8050 +15827,STANDARD,0,Byrnedale,,,PA,"Elk County",America/New_York,814,NA,US,41.32,-78.52,220 +15828,STANDARD,0,Clarington,,,PA,"Jefferson County",America/New_York,814,NA,US,41.32,-79.14,230 +15829,STANDARD,0,Corsica,,,PA,"Jefferson County",America/New_York,814,NA,US,41.18,-79.2,1100 +15831,"PO BOX",0,"Dagus Mines",,,PA,"Elk County",America/New_York,814,NA,US,41.36,-78.59,227 +15832,STANDARD,0,Driftwood,,,PA,"Cameron County",America/New_York,814,NA,US,41.34,-78.13,220 +15834,STANDARD,0,Emporium,,,PA,"Cameron County",America/New_York,814,NA,US,41.51,-78.23,3680 +15840,STANDARD,0,"Falls Creek",,,PA,"Jefferson County",America/New_York,814,NA,US,41.14,-78.8,1690 +15841,"PO BOX",0,Force,,,PA,"Elk County",America/New_York,814,NA,US,41.26,-78.53,232 +15845,STANDARD,0,Johnsonburg,,,PA,"Elk County",America/New_York,814,NA,US,41.49,-78.67,2730 +15846,STANDARD,0,Kersey,,,PA,"Elk County",America/New_York,814,NA,US,41.32,-78.6,3070 +15847,"PO BOX",0,"Knox Dale",,,PA,"Jefferson County",America/New_York,814,NA,US,41.09,-79.03,200 +15848,STANDARD,0,Luthersburg,,,PA,"Clearfield County",America/New_York,814,NA,US,41.03,-78.74,980 +15849,STANDARD,0,Penfield,,,PA,"Clearfield County",America/New_York,814,NA,US,41.21,-78.6,1070 +15851,STANDARD,0,Reynoldsville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.09,-78.88,5820 +15853,STANDARD,0,Ridgway,"Portland Mills, Portland Mls",,PA,"Elk County",America/New_York,814,NA,US,41.42,-78.72,5750 +15856,STANDARD,0,Rockton,,,PA,"Clearfield County",America/New_York,814,NA,US,41.08,-78.66,750 +15857,STANDARD,0,"Saint Marys",,"St Marys",PA,"Elk County",America/New_York,814,NA,US,41.42,-78.55,11800 +15860,STANDARD,0,Sigel,Hallton,,PA,"Jefferson County",America/New_York,814,NA,US,41.28,-79.12,980 +15861,STANDARD,0,Sinnamahoning,,,PA,"Cameron County",America/New_York,814,NA,US,41.38,-78.05,150 +15863,"PO BOX",0,"Stump Creek",,,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-78.84,226 +15864,STANDARD,0,Summerville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.1,-79.2,1660 +15865,STANDARD,0,Sykesville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.04,-78.83,970 +15866,STANDARD,0,Troutville,,,PA,"Clearfield County",America/New_York,814,NA,US,41.02,-78.78,187 +15868,STANDARD,0,Weedville,,,PA,"Elk County",America/New_York,814,NA,US,41.26,-78.49,1370 +15870,STANDARD,0,Wilcox,,,PA,"Elk County",America/New_York,814,NA,US,41.58,-78.68,1080 +15901,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.33,-78.91,1940 +15902,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.91,8480 +15904,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.31,-78.84,13000 +15905,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.29,-78.97,17340 +15906,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.38,-78.96,7840 +15907,"PO BOX",0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.91,279 +15909,STANDARD,0,Johnstown,Conemaugh,,PA,"Cambria County",America/New_York,814,NA,US,40.41,-78.87,4340 +15915,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.91,0 +15920,STANDARD,0,Armagh,,,PA,"Indiana County",America/New_York,,NA,US,40.45,-79.03,840 +15921,"PO BOX",0,Beaverdale,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.7,809 +15922,"PO BOX",0,Belsano,,,PA,"Cambria County",America/New_York,814,NA,US,40.52,-78.88,274 +15923,STANDARD,0,Bolivar,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.39,-79.15,1410 +15924,STANDARD,0,Cairnbrook,,,PA,"Somerset County",America/New_York,814,NA,US,40.1,-78.76,880 +15925,"PO BOX",0,Cassandra,,,PA,"Cambria County",America/New_York,814,NA,US,40.41,-78.64,150 +15926,STANDARD,0,"Central City",,,PA,"Somerset County",America/New_York,814,NA,US,40.05,-78.82,2140 +15927,STANDARD,0,Colver,,,PA,"Cambria County",America/New_York,814,NA,US,40.54,-78.78,940 +15928,STANDARD,0,Davidsville,,,PA,"Somerset County",America/New_York,814,NA,US,40.23,-78.93,1830 +15929,"PO BOX",0,Dilltown,,,PA,"Indiana County",America/New_York,814,NA,US,40.47,-79.01,164 +15930,"PO BOX",0,Dunlo,,,PA,"Cambria County",America/New_York,814,NA,US,40.29,-78.72,378 +15931,STANDARD,0,Ebensburg,,,PA,"Cambria County",America/New_York,814,NA,US,40.48,-78.72,7450 +15934,"PO BOX",0,Elton,,,PA,"Cambria County",America/New_York,814,NA,US,40.28,-78.8,305 +15935,STANDARD,0,Hollsopple,,,PA,"Somerset County",America/New_York,814,NA,US,40.24,-78.96,2340 +15936,STANDARD,0,Hooversville,,,PA,"Somerset County",America/New_York,814,NA,US,40.15,-78.91,1270 +15937,"PO BOX",0,Jerome,,,PA,"Somerset County",America/New_York,814,NA,US,40.21,-78.98,689 +15938,STANDARD,0,Lilly,,,PA,"Cambria County",America/New_York,814,NA,US,40.42,-78.62,2210 +15940,STANDARD,0,Loretto,,,PA,"Cambria County",America/New_York,814,NA,US,40.5,-78.63,1560 +15942,STANDARD,0,"Mineral Point",,,PA,"Cambria County",America/New_York,814,NA,US,40.38,-78.82,1850 +15943,STANDARD,0,"Nanty Glo",,,PA,"Cambria County",America/New_York,814,NA,US,40.47,-78.83,3080 +15944,STANDARD,0,"New Florence",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.37,-79.07,2710 +15945,STANDARD,0,Parkhill,Johnstown,,PA,"Cambria County",America/New_York,814,NA,US,40.36,-78.87,210 +15946,STANDARD,0,Portage,Puritan,,PA,"Cambria County",America/New_York,814,NA,US,40.38,-78.67,5810 +15948,"PO BOX",0,Revloc,,,PA,"Cambria County",America/New_York,814,NA,US,40.49,-78.76,580 +15949,STANDARD,0,Robinson,,,PA,"Indiana County",America/New_York,724,NA,US,40.41,-79.13,610 +15951,"PO BOX",0,"Saint Michael",,,PA,"Cambria County",America/New_York,814,NA,US,40.33,-78.77,585 +15952,STANDARD,0,Salix,,,PA,"Cambria County",America/New_York,814,NA,US,40.3,-78.78,1220 +15953,STANDARD,0,Seanor,,,PA,"Somerset County",America/New_York,814,NA,US,40.21,-78.89,78 +15954,STANDARD,0,Seward,,"Boltz, Cramer",PA,"Indiana County",America/New_York,814,NA,US,40.41,-79.02,1720 +15955,STANDARD,0,Sidman,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.7,1700 +15956,STANDARD,0,"South Fork",,Ehrenfeld,PA,"Cambria County",America/New_York,814,NA,US,40.36,-78.79,2440 +15957,STANDARD,0,Strongstown,,,PA,"Indiana County",America/New_York,,NA,US,40.56,-78.91,370 +15958,STANDARD,0,Summerhill,,,PA,"Cambria County",America/New_York,814,NA,US,40.39,-78.73,1950 +16670,STANDARD,0,Queen,,,PA,"Bedford County",America/New_York,814,NA,US,40.26,-78.51,181 +16671,"PO BOX",0,Ramey,,,PA,"Clearfield County",America/New_York,814,NA,US,40.8,-78.39,526 +16672,"PO BOX",0,Riddlesburg,,,PA,"Bedford County",America/New_York,814,NA,US,40.17,-78.24,158 +16673,STANDARD,0,"Roaring Spring","Bakers Summit, Roaring Spg",,PA,"Blair County",America/New_York,814,NA,US,40.33,-78.39,4810 +16674,STANDARD,0,Robertsdale,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.17,-78.09,510 +16675,"PO BOX",0,"Saint Boniface","St Boniface",,PA,"Cambria County",America/New_York,814,NA,US,40.66,-78.68,91 +16677,"PO BOX",0,"Sandy Ridge",,,PA,"Centre County",America/New_York,814,NA,US,40.81,-78.24,420 +16678,STANDARD,0,Saxton,,,PA,"Bedford County",America/New_York,814,NA,US,40.21,-78.24,2270 +16679,STANDARD,0,"Six Mile Run",,,PA,"Bedford County",America/New_York,814,NA,US,40.15,-78.2,650 +16680,STANDARD,0,Smithmill,,,PA,"Clearfield County",America/New_York,814,NA,US,40.74,-78.38,440 +16681,"PO BOX",0,Smokerun,,,PA,"Clearfield County",America/New_York,814,NA,US,40.8,-78.43,170 +16682,STANDARD,0,Sproul,,,PA,"Blair County",America/New_York,814,NA,US,40.27,-78.46,144 +16683,STANDARD,0,"Spruce Creek",,,PA,"Huntingdon County",America/New_York,814,NA,US,40.62,-78.14,340 +16684,"PO BOX",0,Tipton,,,PA,"Blair County",America/New_York,814,NA,US,40.63,-78.29,322 +16685,STANDARD,0,Todd,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.29,-78.08,270 +16686,STANDARD,0,Tyrone,Birmingham,,PA,"Blair County",America/New_York,814,NA,US,40.67,-78.24,12130 +16689,STANDARD,0,Waterfall,,,PA,"Fulton County",America/New_York,814,NA,US,40.12,-78.06,370 +16691,STANDARD,0,"Wells Tannery",,,PA,"Fulton County",America/New_York,814,NA,US,40.09,-78.18,300 +16692,STANDARD,0,Westover,,,PA,"Clearfield County",America/New_York,814,NA,US,40.74,-78.68,690 +16693,STANDARD,0,Williamsburg,Ganister,,PA,"Blair County",America/New_York,814,NA,US,40.46,-78.2,3680 +16694,"PO BOX",0,Wood,,,PA,"Bedford County",America/New_York,814,NA,US,40.16,-78.15,232 +16695,STANDARD,0,Woodbury,,,PA,"Bedford County",America/New_York,814,NA,US,40.22,-78.36,910 +16698,UNIQUE,0,Houtzdale,,"Sci Houtzdale",PA,"Clearfield County",America/New_York,814,NA,US,40.82,-78.35,0 +16699,UNIQUE,0,Cresson,,"Sci Cresson",PA,"Cambria County",America/New_York,814,NA,US,40.45,-78.56,13 +16701,STANDARD,0,Bradford,,"Kendall Creek",PA,"McKean County",America/New_York,814,NA,US,41.96,-78.64,13140 +16720,STANDARD,0,Austin,,,PA,"Potter County",America/New_York,814,NA,US,41.63,-78.08,1050 +16724,"PO BOX",0,Crosby,,,PA,"McKean County",America/New_York,814,NA,US,41.73,-78.37,152 +16725,"PO BOX",0,"Custer City",,,PA,"McKean County",America/New_York,814,NA,US,41.91,-78.66,272 +16726,STANDARD,0,Cyclone,Ormsby,,PA,"McKean County",America/New_York,814,NA,US,41.82,-78.58,460 +16727,STANDARD,0,"Derrick City",,,PA,"McKean County",America/New_York,814,NA,US,41.97,-78.55,330 +16728,STANDARD,0,"De Young",,,PA,"Elk County",America/New_York,814,NA,US,41.57,-78.91,27 +16729,STANDARD,0,"Duke Center",,,PA,"McKean County",America/New_York,814,NA,US,41.96,-78.5,710 +16730,"PO BOX",0,"East Smethport","E Smethport",,PA,"McKean County",America/New_York,814,NA,US,41.82,-78.42,180 +16731,STANDARD,0,Eldred,,,PA,"McKean County",America/New_York,814,NA,US,41.95,-78.38,2410 +16732,STANDARD,0,Gifford,,,PA,"McKean County",America/New_York,814,NA,US,41.86,-78.62,320 +16733,"PO BOX",0,"Hazel Hurst",,,PA,"McKean County",America/New_York,814,NA,US,41.7,-78.58,193 +16734,"PO BOX",0,"James City",,,PA,"Elk County",America/New_York,814,NA,US,41.62,-78.84,267 +16735,STANDARD,0,Kane,,"East Kane",PA,"McKean County",America/New_York,814,NA,US,41.66,-78.8,5130 +16738,STANDARD,0,"Lewis Run",,,PA,"McKean County",America/New_York,814,NA,US,41.87,-78.66,1120 +16740,STANDARD,0,"Mount Jewett",Westline,,PA,"McKean County",America/New_York,814,NA,US,41.72,-78.64,970 +16743,STANDARD,0,"Port Allegany",,"Pt Allegany",PA,"McKean County",America/New_York,814,NA,US,41.81,-78.27,3430 +16744,STANDARD,0,Rew,,,PA,"McKean County",America/New_York,814,NA,US,41.87,-78.57,250 +16745,STANDARD,0,Rixford,,,PA,"McKean County",America/New_York,814,NA,US,41.92,-78.45,490 +16746,STANDARD,0,Roulette,,,PA,"Potter County",America/New_York,814,NA,US,41.77,-78.16,1000 +16748,STANDARD,0,Shinglehouse,,"Millport, Shinglehse",PA,"Potter County",America/New_York,814,NA,US,41.96,-78.19,2370 +16749,STANDARD,0,Smethport,,"Keating Summit",PA,"McKean County",America/New_York,814,NA,US,41.8,-78.44,3320 +16750,STANDARD,0,Turtlepoint,,,PA,"McKean County",America/New_York,814,NA,US,41.88,-78.32,390 +16801,STANDARD,0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-77.85,22290 +16802,STANDARD,0,"University Park","Penn St Univ, Penn State University, State College, University Pk",,PA,"Centre County",America/New_York,814,NA,US,40.8,-77.86,260 +16803,STANDARD,0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.8,-77.9,14990 +16804,"PO BOX",0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-77.85,395 +16805,"PO BOX",0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-77.85,132 +16820,STANDARD,0,Aaronsburg,,,PA,"Centre County",America/New_York,814,NA,US,40.86,-77.39,1050 +16821,STANDARD,0,Allport,,,PA,"Clearfield County",America/New_York,814,NA,US,40.96,-78.2,320 +16822,STANDARD,0,"Beech Creek",,,PA,"Clinton County",America/New_York,570,NA,US,41.07,-77.58,2050 +16823,STANDARD,0,Bellefonte,"Hublersburg, Pleasant Gap, Wingate",,PA,"Centre County",America/New_York,814,NA,US,40.91,-77.76,21900 +16825,"PO BOX",0,Bigler,,,PA,"Clearfield County",America/New_York,814,NA,US,40.99,-78.32,343 +16826,"PO BOX",0,Blanchard,,,PA,"Centre County",America/New_York,814,NA,US,41.05,-77.58,931 +16827,STANDARD,0,Boalsburg,,,PA,"Centre County",America/New_York,814,NA,US,40.77,-77.79,4850 +16828,STANDARD,0,"Centre Hall",,,PA,"Centre County",America/New_York,814,NA,US,40.84,-77.68,4110 +16829,STANDARD,0,Clarence,,,PA,"Centre County",America/New_York,814,NA,US,41.08,-77.87,650 +16830,STANDARD,0,Clearfield,,,PA,"Clearfield County",America/New_York,814,NA,US,41.02,-78.43,11060 +16832,STANDARD,0,Coburn,,,PA,"Centre County",America/New_York,814,NA,US,40.85,-77.49,470 +16833,STANDARD,0,Curwensville,,,PA,"Clearfield County",America/New_York,814,NA,US,40.97,-78.51,4580 +16834,"PO BOX",0,Drifting,,,PA,"Clearfield County",America/New_York,814,NA,US,41.05,-78.09,321 +16835,"PO BOX",0,Fleming,,,PA,"Centre County",America/New_York,814,NA,US,40.91,-77.88,297 +16836,STANDARD,0,Frenchville,,,PA,"Clearfield County",America/New_York,814,NA,US,41.14,-78.24,1000 +16837,STANDARD,0,"Glen Richey",,,PA,"Clearfield County",America/New_York,814,NA,US,40.95,-78.47,201 +16838,STANDARD,0,Grampian,,,PA,"Clearfield County",America/New_York,814,NA,US,40.96,-78.61,1570 +16839,STANDARD,0,Grassflat,,,PA,"Clearfield County",America/New_York,814,NA,US,41.01,-78.11,400 +16840,STANDARD,0,"Hawk Run",,,PA,"Clearfield County",America/New_York,814,NA,US,40.92,-78.2,450 +16841,STANDARD,0,Howard,,,PA,"Centre County",America/New_York,814,NA,US,41.01,-77.65,4710 +16843,"PO BOX",0,Hyde,,,PA,"Clearfield County",America/New_York,814,NA,US,41,-78.47,715 +16844,STANDARD,0,Julian,,,PA,"Centre County",America/New_York,814,NA,US,40.91,-77.93,2420 +16845,STANDARD,0,Karthaus,,,PA,"Clearfield County",America/New_York,814,NA,US,41.12,-78.02,580 +16847,"PO BOX",0,Kylertown,,,PA,"Clearfield County",America/New_York,814,NA,US,41,-78.17,378 +16848,"PO BOX",0,Lamar,,,PA,"Clinton County",America/New_York,570,NA,US,41.01,-77.54,424 +16849,"PO BOX",0,Lanse,,,PA,"Clearfield County",America/New_York,814,NA,US,40.97,-78.13,384 +16850,STANDARD,0,"Lecontes Mills","Lecontes Mls",,PA,"Clearfield County",America/New_York,814,NA,US,41.07,-78.26,64 +16851,"PO BOX",0,Lemont,,,PA,"Centre County",America/New_York,814,NA,US,40.82,-77.79,1221 +16852,STANDARD,0,Madisonburg,,,PA,"Centre County",America/New_York,814,NA,US,40.94,-77.49,340 +16853,"PO BOX",0,Milesburg,,,PA,"Centre County",America/New_York,814,NA,US,40.94,-77.79,1437 +16854,STANDARD,0,Millheim,,,PA,"Centre County",America/New_York,814,NA,US,40.89,-77.47,980 +16855,"PO BOX",0,"Mineral Springs","Mineral Spgs",,PA,"Clearfield County",America/New_York,814,NA,US,41,-78.38,289 +16856,"PO BOX",0,Mingoville,,,PA,"Centre County",America/New_York,814,NA,US,40.93,-77.74,228 +16858,STANDARD,0,Morrisdale,,,PA,"Clearfield County",America/New_York,814,NA,US,41.01,-78.22,3330 +16859,STANDARD,0,Moshannon,,,PA,"Centre County",America/New_York,814,NA,US,41.02,-78.04,410 +16860,STANDARD,0,Munson,,,PA,"Clearfield County",America/New_York,814,NA,US,40.94,-78.18,300 +16861,STANDARD,0,"New Millport",,,PA,"Clearfield County",America/New_York,814,NA,US,40.86,-78.52,290 +16863,STANDARD,0,Olanta,,,PA,"Clearfield County",America/New_York,814,NA,US,40.9,-78.5,620 +16864,STANDARD,0,Orviston,,,PA,"Centre County",America/New_York,814,NA,US,41.08,-77.65,71 +16865,STANDARD,0,"Pennsylvania Furnace","Pa Furnace",,PA,"Centre County",America/New_York,814,NA,US,40.72,-77.98,1580 +16866,STANDARD,0,Philipsburg,,,PA,"Centre County",America/New_York,814,NA,US,40.89,-78.21,6710 +16868,"PO BOX",0,"Pine Grove Mills","Pine Grv Mls",,PA,"Centre County",America/New_York,814,NA,US,40.73,-77.88,865 +16870,STANDARD,0,"Port Matilda",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-78.05,7360 +16871,STANDARD,0,Pottersdale,,,PA,"Clearfield County",America/New_York,570,NA,US,41.2,-78.02,53 +16872,STANDARD,0,Rebersburg,,,PA,"Centre County",America/New_York,814,NA,US,40.97,-77.36,1450 +16873,"PO BOX",0,Shawville,,,PA,"Clearfield County",America/New_York,814,NA,US,41.07,-78.35,106 +16874,STANDARD,0,"Snow Shoe",,,PA,"Centre County",America/New_York,814,NA,US,41.02,-77.95,1190 +16875,STANDARD,0,"Spring Mills",,,PA,"Centre County",America/New_York,814,NA,US,40.86,-77.57,3760 +16876,"PO BOX",0,Wallaceton,,,PA,"Clearfield County",America/New_York,814,NA,US,40.96,-78.29,316 +16877,STANDARD,0,"Warriors Mark",,,PA,"Huntingdon County",America/New_York,814,NA,US,40.7,-78.11,1620 +16878,STANDARD,0,"West Decatur",,,PA,"Clearfield County",America/New_York,814,NA,US,40.94,-78.36,1680 +16879,STANDARD,0,Winburne,,,PA,"Clearfield County",America/New_York,814,NA,US,40.97,-78.15,330 +16881,STANDARD,0,Woodland,,,PA,"Clearfield County",America/New_York,814,NA,US,41.03,-78.32,1870 +16882,STANDARD,0,Woodward,,,PA,"Centre County",America/New_York,814,NA,US,40.92,-77.3,420 +16901,STANDARD,0,Wellsboro,,"Ansonia, Asaph, Charleston, Delmar, Draper, Duncan, Kennedy, Knapp, Shippen, Stokesdale, Stonyfork",PA,"Tioga County",America/New_York,570,NA,US,41.74,-77.3,8970 +16910,STANDARD,0,Alba,Snydertown,Snydertwn,PA,"Bradford County",America/New_York,570,NA,US,41.7,-76.82,39 +16911,"PO BOX",0,Arnot,,Bloss,PA,"Tioga County",America/New_York,570,NA,US,41.66,-77.14,339 +16912,STANDARD,0,Blossburg,,Blakes,PA,"Tioga County",America/New_York,570,NA,US,41.68,-77.06,1810 +16914,STANDARD,0,"Columbia Cross Roads","Columbia X Rd","Austinville, Big Pond, Col X Rds, Snedekerville, Wetona",PA,"Bradford County",America/New_York,570,NA,US,41.83,-76.8,2090 +16915,STANDARD,0,Coudersport,Oswayo,"Colesburg, Eulalia, Homer, Inez, Ladona, Mina, Odin, Summit, Sweden, Sweden Valley",PA,"Potter County",America/New_York,814,NA,US,41.77,-78.01,4890 +16917,STANDARD,0,Covington,,Covngtn,PA,"Tioga County",America/New_York,570,NA,US,41.74,-77.07,1270 +16918,STANDARD,1,Cowanesque,,,PA,"Tioga County",America/New_York,814,NA,US,41.93,-77.49,41 +16920,STANDARD,0,Elkland,,,PA,"Tioga County",America/New_York,814,NA,US,41.98,-77.31,1580 +16921,STANDARD,0,Gaines,,"Elk, Manhattan, Marshlands, Rexford, Watrous",PA,"Tioga County",America/New_York,,NA,US,41.78,-77.54,450 +16922,STANDARD,0,Galeton,,"Abbott, Carter Camp, West Branch, West Pike",PA,"Potter County",America/New_York,814,NA,US,41.73,-77.64,1480 +16923,STANDARD,0,Genesee,"North Bingham","Eleven Mile, Ellisburg, Gold, Hickox, Keech, Kinney, Raymond, West Bingham",PA,"Potter County",America/New_York,814,NA,US,41.98,-77.9,1180 +16925,STANDARD,0,Gillett,,"Bentley Creek, Berrytown, Fassett, Mosherville, South Creek, Wells",PA,"Bradford County",America/New_York,570,NA,US,41.95,-76.79,2960 +16926,STANDARD,0,"Granville Summit","Granville Smt","Cowley, Granville Ctr, Windfall",PA,"Bradford County",America/New_York,570,NA,US,41.71,-76.77,750 +16927,STANDARD,0,"Harrison Valley","Harrison Twp, Harrison Vly, Westfield",Harrison,PA,"Potter County",America/New_York,814,NA,US,41.96,-77.66,470 +16928,STANDARD,0,Knoxville,,"Austinburg, Deerfield",PA,"Tioga County",America/New_York,814,NA,US,41.95,-77.43,1140 +16929,STANDARD,0,Lawrenceville,,"E Lawrencevle, Somers Lane",PA,"Tioga County",America/New_York,570,NA,US,41.99,-77.12,2140 +16930,STANDARD,0,Liberty,,"Hartsfield, Sebring",PA,"Tioga County",America/New_York,570,NA,US,41.55,-77.1,1170 +16932,STANDARD,0,Mainesburg,,Sullivan,PA,"Tioga County",America/New_York,570,NA,US,41.78,-76.94,660 +16933,STANDARD,0,Mansfield,,"Bungy, Canoe Camp, Cherry Flats, E Charleston, Kellytown, Lambs Creek, Rutland, Whitneyville",PA,"Tioga County",America/New_York,570,NA,US,41.8,-77.07,4840 +16935,STANDARD,0,"Middlebury Center","Middlebry Ctr","Crooked Creek, Keeneyville, Mdby Center, Middlebury, Niles Valley, Shortsville",PA,"Tioga County",America/New_York,570,NA,US,41.89,-77.3,1090 +16936,STANDARD,0,Millerton,,"Daggett, Jackson Smt, Jobs Corners",PA,"Tioga County",America/New_York,570,NA,US,41.98,-76.95,1870 +16937,STANDARD,0,Mills,,,PA,"Potter County",America/New_York,814,NA,US,41.97,-77.71,193 +16938,STANDARD,0,Morris,,"Blackwell, Hoytville, Lorenton, Nauvoo, Oregon Hill, Plank",PA,"Tioga County",America/New_York,570,NA,US,41.58,-77.37,650 +16939,"PO BOX",0,"Morris Run",,,PA,"Tioga County",America/New_York,,NA,US,41.66,-77.04,259 +16940,"PO BOX",0,Nelson,,,PA,"Tioga County",America/New_York,,NA,US,41.99,-77.24,290 +16941,STANDARD,0,Genesee,"North Bingham",,PA,"Potter County",America/New_York,814,NA,US,41.99,-77.76,34 +16942,STANDARD,0,Osceola,,,PA,"Tioga County",America/New_York,,NA,US,41.98,-77.38,660 +16943,STANDARD,0,Sabinsville,,"Cathead, Hector, Sunderlinvle",PA,"Tioga County",America/New_York,814,NA,US,41.83,-77.61,420 +16945,"PO BOX",0,Sylvania,,,PA,"Bradford County",America/New_York,570,NA,US,41.8,-76.85,66 +16946,STANDARD,0,Tioga,,,PA,"Tioga County",America/New_York,570,NA,US,41.9,-77.13,2170 +16947,STANDARD,0,Troy,"W Burlington, West Burlington Township",,PA,"Bradford County",America/New_York,570,NA,US,41.78,-76.78,3870 +16948,STANDARD,0,Ulysses,,"Bingham, Brookland, Newfield",PA,"Potter County",America/New_York,814,NA,US,41.9,-77.75,1400 +16950,STANDARD,0,Westfield,"Cowanesque, Harrison Twp, Little Marsh","Brookfield, Elmer, North Fork, Potter Brook",PA,"Tioga County",America/New_York,814,NA,US,41.91,-77.54,2800 +17001,"PO BOX",0,"Camp Hill",,,PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,243 +17002,STANDARD,0,Allensville,,,PA,"Mifflin County",America/New_York,"717,814",NA,US,40.53,-77.81,670 +17003,STANDARD,0,Annville,,"Bellegrove, East Hanover, Ft Indiantown, Harper Tavern, Steelstown, Syner, West Annville",PA,"Lebanon County",America/New_York,717,NA,US,40.33,-76.5,10360 +17004,STANDARD,0,Belleville,,"Alexander Spr, Alexander Springs, Menno, Union Mills",PA,"Mifflin County",America/New_York,"814,717",NA,US,40.6,-77.72,4840 +17005,"PO BOX",0,Berrysburg,,,PA,"Dauphin County",America/New_York,717,NA,US,40.6,-76.81,352 +17006,STANDARD,0,Blain,,,PA,"Perry County",America/New_York,717,NA,US,40.33,-77.51,1060 +17007,STANDARD,0,"Boiling Springs","Boiling Spgs","South Middleton",PA,"Cumberland County",America/New_York,717,NA,US,40.15,-77.13,5840 +17008,"PO BOX",1,Bowmansdale,,,PA,"Cumberland County",America/New_York,717,NA,US,40.23,-77.02,60 +17009,STANDARD,0,Burnham,,,PA,"Mifflin County",America/New_York,717,NA,US,40.63,-77.56,1740 +17010,"PO BOX",0,Campbelltown,,,PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.58,563 +17011,STANDARD,0,"Camp Hill",Shiremanstown,"Camp Hill Brm",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,30950 +17012,UNIQUE,1,"Camp Hill",,"Book Of Month",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,0 +17013,STANDARD,0,Carlisle,"Carlisle Barracks, Carlisle Brks",,PA,"Cumberland County",America/New_York,717,NA,US,40.2,-77.2,30540 +17014,STANDARD,0,Cocolamus,,,PA,"Juniata County",America/New_York,717,NA,US,40.65,-77.1,133 +17015,STANDARD,0,Carlisle,"W Pennsboro, West Pennsboro",,PA,"Cumberland County",America/New_York,717,NA,US,40.15,-77.26,22040 +17016,"PO BOX",0,Cornwall,,"Cornwall Ctr",PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.4,1079 +17017,STANDARD,0,Dalmatia,,,PA,"Northumberland County",America/New_York,717,NA,US,40.65,-76.87,1570 +17018,STANDARD,0,Dauphin,,"Ellendale, Middle Paxton, Singersville, Water Gap",PA,"Dauphin County",America/New_York,717,NA,US,40.36,-76.93,4130 +17019,STANDARD,0,Dillsburg,,"Bermudian, Clear Spring, Siddonsburg",PA,"York County",America/New_York,717,NA,US,40.11,-77.03,17970 +17020,STANDARD,0,Duncannon,,"Cove, Dellville, Perdix, Watts, Wheatfield",PA,"Perry County",America/New_York,717,NA,US,40.41,-77.04,8180 +17021,STANDARD,0,"East Waterford","E Waterford","Ewaterfrd, Ewtrford, Perulack, Scyoc, Spears Grove, Waterloo",PA,"Juniata County",America/New_York,717,NA,US,40.36,-77.67,820 +17022,STANDARD,0,Elizabethtown,,"Aberdeen, Bellaire, Deodate, Elizabthtwn, Etown, West Donegal",PA,"Lancaster County",America/New_York,717,NA,US,40.15,-76.59,27900 +17023,STANDARD,0,Elizabethville,Elizabethvle,Eville,PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.82,3090 +17024,STANDARD,0,Elliottsburg,"Green Park","Erly, Greenpark, Little German, Mansville",PA,"Perry County",America/New_York,717,NA,US,40.41,-77.31,1820 +17025,STANDARD,0,Enola,"E Pennsboro, East Pennsboro","South Enola, W Fairview, West Enola, West Fairview",PA,"Cumberland County",America/New_York,717,NA,US,40.28,-76.93,16860 +17026,STANDARD,0,Fredericksburg,Fredericksbrg,,PA,"Lebanon County",America/New_York,717,NA,US,40.45,-76.42,3570 +17027,"PO BOX",0,Grantham,"Messiah Coll, Messiah College",,PA,"Cumberland County",America/New_York,717,NA,US,40.16,-77,499 +17028,STANDARD,0,Grantville,,Shellsville,PA,"Dauphin County",America/New_York,717,NA,US,40.39,-76.68,3300 +17029,STANDARD,0,Granville,,Anderson,PA,"Mifflin County",America/New_York,,NA,US,40.56,-77.62,290 +17030,STANDARD,0,Gratz,,,PA,"Dauphin County",America/New_York,717,NA,US,40.6,-76.71,680 +17032,STANDARD,0,Halifax,,"Carsonville, Enders, Enterline, Fisherville, Inglenook, Mcclellan, Powells Vly, Reed, Waynesville",PA,"Dauphin County",America/New_York,717,NA,US,40.46,-76.93,7350 +17033,STANDARD,0,Hershey,,"Bachmanville, Derry Church, Palmdale, S Londonderry, Sandbeach, Swatara Sta, Union Deposit",PA,"Dauphin County",America/New_York,717,NA,US,40.28,-76.64,13600 +17034,STANDARD,0,Highspire,,"High Spire",PA,"Dauphin County",America/New_York,717,NA,US,40.21,-76.79,2300 +17035,STANDARD,0,"Honey Grove",,"Mccullochs Ml, Reeds Gap",PA,"Juniata County",America/New_York,717,NA,US,40.42,-77.55,680 +17036,STANDARD,0,Hummelstown,,"Hoernerstown, South Hanover, Stoverdale, Waltonville",PA,"Dauphin County",America/New_York,717,NA,US,40.26,-76.71,23010 +17037,STANDARD,0,Ickesburg,,,PA,"Perry County",America/New_York,717,NA,US,40.43,-77.42,940 +17038,STANDARD,0,Jonestown,,"Bordnersville, Green Point, Jonestwn, Mcgillstown",PA,"Lebanon County",America/New_York,717,NA,US,40.41,-76.48,7510 +17039,"PO BOX",0,Kleinfeltersville,Kleinfeltersv,,PA,"Lebanon County",America/New_York,717,NA,US,40.29,-76.24,124 +17040,STANDARD,0,Landisburg,,"Alinda, Landisbg, Lebo",PA,"Perry County",America/New_York,717,NA,US,40.34,-77.3,2390 +17041,"PO BOX",0,Lawn,,,PA,"Lebanon County",America/New_York,717,NA,US,40.22,-76.54,210 +17042,STANDARD,0,Lebanon,"Cleona, Colebrook, Cornwall Boro, Cornwall Borough","Avon, Avon Heights, Beverly Hts, Buffalo Sprs, Ebenezer, Flintville, Fontana, Heilmandale, Iona, Leb, Mount Wilson, N Cornwall, North Lebanon, Rocherty, South Lebanon Twp",PA,"Lebanon County",America/New_York,717,NA,US,40.34,-76.42,36100 +17043,STANDARD,0,Lemoyne,Wormleysburg,"Washington Ht, Wormleysbg",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.89,5410 +17044,STANDARD,0,Lewistown,,"Bratton, Colonial Hill, Hawstone, Horningford, Juniata Terr, Klondyke, Lewistown Jun, Lewistwn, Longfellow, Maitland, Paintersville, Strodes Mills, Vira",PA,"Mifflin County",America/New_York,717,NA,US,40.59,-77.57,17590 +17045,STANDARD,0,Liverpool,,"Mount Patrick, Oriental",PA,"Perry County",America/New_York,717,NA,US,40.6,-77,3070 +17046,STANDARD,0,Lebanon,"Swatara Township, Swatara Twp",,PA,"Lebanon County",America/New_York,717,NA,US,40.38,-76.43,28510 +17047,STANDARD,0,Loysville,,"Andersonburg, Bixler, Cisna Run, Couchtown, Fort Robinson, Ne Madison, Sw Madison",PA,"Perry County",America/New_York,717,NA,US,40.38,-77.33,2470 +17048,STANDARD,0,Lykens,,"Erdman, Loyalton, Specktown",PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.76,3580 +17049,STANDARD,0,"Mc Alisterville","Mc Alistervle","Bunkertown, Mc Alistervl, Mcalistervle, Swales",PA,"Juniata County",America/New_York,717,NA,US,40.65,-77.28,2990 +17050,STANDARD,0,Mechanicsburg,"Hampden Township, Hampden Twp, Silver Spg Tp, Silver Spring Township","Defense Depot, Goodhope, Hampden Station, Hogestown, Mech, Mechancsbrg, Mechbg, Navy Ships, Navy Sup Dpt, Trindle Sprg, Wertzville",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-77.02,40670 +17051,STANDARD,0,"Mc Veytown",,"Atkinsons Mills, Atkinsons Mls, Little Kansas, Mcveytown, Mcveytwn, Ryde",PA,"Mifflin County",America/New_York,717,NA,US,40.49,-77.74,3970 +17052,STANDARD,0,"Mapleton Depot","Mapleton Dep","Bankstown, Barneytown, Birdville, Knightsville",PA,"Huntingdon County",America/New_York,814,NA,US,40.37,-77.97,1420 +17053,STANDARD,0,Marysville,,,PA,"Perry County",America/New_York,717,NA,US,40.33,-76.93,4900 +17054,"PO BOX",0,Mattawana,,,PA,"Mifflin County",America/New_York,,NA,US,40.49,-77.72,185 +17055,STANDARD,0,Mechanicsburg,Bowmansdale,"Andersontown, Brandtsville, Defense Depot, Lisburn, Locust Point, Mech, Mechancsbrg, Mechbg, Mount Allen, Navy Ships, Navy Sup Dpt, Shepherdstown, Upper Allen, Williams Grv, Winding Hill",PA,"Cumberland County",America/New_York,717,NA,US,40.21,-77,37660 +17056,"PO BOX",0,Mexico,,,PA,"Juniata County",America/New_York,717,NA,US,40.54,-77.35,154 +17057,STANDARD,0,Middletown,,"H I A, Hbg Inter Airp, Londonderry, Lower Swatara, Mdt, Middletwn, Midltwn, Royalton, Shope Gardens",PA,"Dauphin County",America/New_York,717,NA,US,40.19,-76.7,19240 +17058,STANDARD,0,Mifflin,,"Doyles Mills, Mccoysville, Nook",PA,"Juniata County",America/New_York,717,NA,US,40.51,-77.55,1490 +17059,STANDARD,0,Mifflintown,,"Arch Rock, Cuba Mills, Denholm, East Salem, Fermanagh, Jericho Mills, Macedonia, Van Wert, Walker, Zooks Dam",PA,"Juniata County",America/New_York,717,NA,US,40.57,-77.39,6890 +17060,STANDARD,0,"Mill Creek",,"Mill Crk, Mlcreek",PA,"Huntingdon County",America/New_York,814,NA,US,40.43,-77.92,1060 +17061,STANDARD,0,Millersburg,,"Killinger, Lenkerville, Millersbg, Rife, Upper Paxton",PA,"Dauphin County",America/New_York,717,NA,US,40.54,-76.95,6160 +17062,STANDARD,0,Millerstown,,"Donnally Mill, Eshcol, Knousetown, Reward, Seven Stars",PA,"Perry County",America/New_York,717,NA,US,40.55,-77.15,3830 +17063,STANDARD,0,Milroy,,"Locke Mills, Naginey, Roseann, Siglerville",PA,"Mifflin County",America/New_York,717,NA,US,40.71,-77.58,3110 +17064,"PO BOX",0,"Mount Gretna",,"Mt Gretna, Mt Gretna Hts",PA,"Lebanon County",America/New_York,717,NA,US,40.24,-76.47,918 +17065,STANDARD,0,"Mount Holly Springs","Mt Holly Spgs","Mount Holly Spgs, Mt Holly Springs, Upper Mill",PA,"Cumberland County",America/New_York,717,NA,US,40.11,-77.18,3920 +17066,STANDARD,0,"Mount Union",,"Aughwick, Lucy Furnace, Mt Union, Silver Ford",PA,"Huntingdon County",America/New_York,814,NA,US,40.38,-77.88,4230 +17067,STANDARD,0,Myerstown,,"Frystown, Greble, Millardsville, Myerstwn, Reistville",PA,"Lebanon County",America/New_York,717,NA,US,40.37,-76.3,14860 +17068,STANDARD,0,"New Bloomfield","New Bloomfld","Mecks Corner, Paradise Park, Perry Village",PA,"Perry County",America/New_York,717,NA,US,40.41,-77.18,3830 +17069,"PO BOX",0,"New Buffalo",,,PA,"Perry County",America/New_York,717,NA,US,40.45,-76.97,221 +17070,STANDARD,0,"New Cumberland","New Cumberlnd","Drexel Hills, Fair Acres, Frogtown, Marsh Run, N Cumberld, New Cmbrlnd, New Cumb, New Cumberland Army D, New Market, Newcmbrlnd, Nw Cumb, Nw Cumberland, Nw Cumberlnd, Rudytown, Westfield Ter",PA,"Cumberland County",America/New_York,717,NA,US,40.23,-76.87,15670 +17071,"PO BOX",0,"New Germantown","New Germanton",Toboyne,PA,"Perry County",America/New_York,717,NA,US,40.3,-77.6,55 +17072,"PO BOX",0,"New Kingstown",,,PA,"Cumberland County",America/New_York,717,NA,US,40.23,-77.08,260 +17073,STANDARD,0,Newmanstown,,"Millbach, Millbach Sprs, Sheridan, Stricklerstwn",PA,"Lebanon County",America/New_York,717,NA,US,40.35,-76.21,5720 +17074,STANDARD,0,Newport,,"Bailey, East Newport, Everhartville, Howe, Mannsville, Markelsville, Montgomery Fy, Newprt, Nwprt, Saville, Walnut Grove, Wila",PA,"Perry County",America/New_York,717,NA,US,40.47,-77.13,6670 +17075,"PO BOX",0,"Newton Hamilton","Newton Hamltn","Newtn Hamltn",PA,"Mifflin County",America/New_York,,NA,US,40.39,-77.83,366 +17076,STANDARD,0,"Oakland Mills",,,PA,"Juniata County",America/New_York,717,NA,US,40.62,-77.31,129 +17077,"PO BOX",0,Ono,,,PA,"Lebanon County",America/New_York,717,NA,US,40.4,-76.54,225 +17078,STANDARD,0,Palmyra,,"Coffeetown, N Londonderry, Upper Lawn",PA,"Lebanon County",America/New_York,717,NA,US,40.3,-76.59,22180 +17080,"PO BOX",0,Pillow,,,PA,"Dauphin County",America/New_York,717,NA,US,40.64,-76.8,335 +17081,"PO BOX",0,Plainfield,,"Wolfs X Rds",PA,"Cumberland County",America/New_York,717,NA,US,40.2,-77.28,377 +17082,STANDARD,0,"Port Royal",,"Academia, Beale, Old Port, Pleasantview, Pt Royal, Seven Pines, Spruce Hill, Turbett",PA,"Juniata County",America/New_York,717,NA,US,40.53,-77.39,3150 +17083,"PO BOX",0,Quentin,,,PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.44,231 +17084,STANDARD,0,Reedsville,,"Barrville, Gardenview, Shraders",PA,"Mifflin County",America/New_York,717,NA,US,40.68,-77.63,4190 +17085,"PO BOX",0,Rexmont,,,PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.39,214 +17086,STANDARD,0,Richfield,,"Evendale, West Perry",PA,"Juniata County",America/New_York,717,NA,US,40.69,-77.12,2140 +17087,STANDARD,0,Richland,,,PA,"Lebanon County",America/New_York,717,NA,US,40.44,-76.28,2640 +17088,"PO BOX",0,Schaefferstown,Schaefferstwn,,PA,"Lebanon County",America/New_York,717,NA,US,40.3,-76.29,830 +17089,UNIQUE,0,"Camp Hill",,"Blue Shield, High Mark Blue Shield",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,0 +17090,STANDARD,0,"Shermans Dale",,Shermansdale,PA,"Perry County",America/New_York,717,NA,US,40.33,-77.19,4880 +17091,UNIQUE,1,Lebanon,Genco,,PA,"Lebanon County",America/New_York,717,NA,US,40.23,-76.92,0 +17093,"PO BOX",0,Summerdale,,,PA,"Cumberland County",America/New_York,717,NA,US,40.31,-76.93,743 +17094,STANDARD,0,Thompsontown,,"Locust Run, Maze",PA,"Juniata County",America/New_York,717,NA,US,40.56,-77.23,2250 +17097,"PO BOX",0,Wiconisco,,,PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.68,889 +17098,STANDARD,0,Williamstown,,"Green Fields, Williams",PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.61,2050 +17099,STANDARD,0,Yeagertown,,Yeagertwn,PA,"Mifflin County",America/New_York,717,NA,US,40.64,-77.58,1020 +17101,STANDARD,0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.26,-76.89,1420 +17102,STANDARD,0,Harrisburg,,"Hbg, West End",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.91,5800 +17103,STANDARD,0,Harrisburg,Penbrook,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,10670 +17104,STANDARD,0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.25,-76.86,16650 +17105,"PO BOX",0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,1109 +17106,"PO BOX",0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,340 +17107,UNIQUE,0,Harrisburg,,"Hbg, Usps Official",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17108,"PO BOX",0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,191 +17109,STANDARD,0,Harrisburg,"Lower Paxton, Penbrook",,PA,"Dauphin County",America/New_York,717,NA,US,40.29,-76.82,22790 +17110,STANDARD,0,Harrisburg,,,PA,"Dauphin County",America/New_York,717,NA,US,40.32,-76.89,24330 +17111,STANDARD,0,Harrisburg,"Paxtang, Swatara",,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.79,32150 +17112,STANDARD,0,Harrisburg,"Linglestown, Lower Paxton, Paxtonia, West Hanover",,PA,"Dauphin County",America/New_York,717,NA,US,40.37,-76.78,35400 +17113,STANDARD,0,Harrisburg,"Bressler, Oberlin, Steelton",,PA,"Dauphin County",America/New_York,717,NA,US,40.23,-76.83,10260 +17120,UNIQUE,0,Harrisburg,,"Hbg, State Of Pennsylvania",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17121,UNIQUE,0,Harrisburg,,"Hbg, State Employment Security",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17122,UNIQUE,0,Harrisburg,,"Bureau Of Motor Vehicles, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17123,UNIQUE,0,Harrisburg,,"Hbg, Traffic Safety",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17124,UNIQUE,0,Harrisburg,,"Hbg, State Liquor Control",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17125,UNIQUE,0,Harrisburg,,"Hbg, State General Services",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17126,UNIQUE,0,Harrisburg,,"Hbg, State Dept Of Education",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17127,UNIQUE,0,Harrisburg,,"Department Of Revenue, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17128,UNIQUE,0,Harrisburg,,"Department Of Revenue, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17129,STANDARD,0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17130,UNIQUE,0,Harrisburg,,"Hbg, Pheaa",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17140,UNIQUE,0,Harrisburg,,"Blue Shield, Hbg, Pa Blue Shield",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17177,UNIQUE,0,Harrisburg,,"Blue Cross, Capital Blue Cross, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17201,STANDARD,0,Chambersburg,,"Aqua, Beautiful, Cheesetown, Clay Hill, Duffield, Franklin Furn, Greenvillage, Guilford Sprs, Guilford Township, Housum, Jackson Hall, Kauffman, Kerrstown, Kerrstown Sq, Letterkenny Army Depo, New Franklin, Nyesville, Pond Bank, Red Bridge, Stoufferstown, Sunbeam, Turkeyfoot",PA,"Franklin County",America/New_York,717,NA,US,39.93,-77.65,24510 +17202,STANDARD,0,Chambersburg,"Guilford Township, Guilford Twp",,PA,"Franklin County",America/New_York,717,NA,US,39.92,-77.71,30020 +17210,"PO BOX",0,Amberson,,,PA,"Franklin County",America/New_York,717,NA,US,40.21,-77.66,233 +17211,STANDARD,0,Artemas,,"Inglesmith, Mann",PA,"Bedford County",America/New_York,814,NA,US,39.76,-78.4,360 +17212,STANDARD,0,"Big Cove Tannery","Big Cove Tann",,PA,"Fulton County",America/New_York,717,NA,US,39.84,-78.05,600 +17213,STANDARD,0,"Blairs Mills",,"Lack, Nossville, Richvale, Shade Valley, Tell",PA,"Huntingdon County",America/New_York,814,NA,US,40.25,-77.77,500 +17214,STANDARD,0,"Blue Ridge Summit","Blue Ridge Sm",Charmian,PA,"Franklin County",America/New_York,717,NA,US,39.73,-77.46,990 +17215,STANDARD,0,"Burnt Cabins",,,PA,"Fulton County",America/New_York,,NA,US,40.06,-77.9,280 +17217,STANDARD,0,Concord,,,PA,"Franklin County",America/New_York,717,NA,US,40.25,-77.7,142 +17219,STANDARD,0,Doylesburg,,Fannett,PA,"Franklin County",America/New_York,717,NA,US,40.22,-77.7,440 +17220,STANDARD,0,"Dry Run",,,PA,"Franklin County",America/New_York,717,NA,US,40.19,-77.74,540 +17221,STANDARD,0,Fannettsburg,,Boggstown,PA,"Franklin County",America/New_York,717,NA,US,40.05,-77.83,570 +17222,STANDARD,0,Fayetteville,,,PA,"Franklin County",America/New_York,717,NA,US,39.91,-77.56,10250 +17223,STANDARD,0,"Fort Littleton","Fort Littletn","Ft Littleton",PA,"Fulton County",America/New_York,,NA,US,40.06,-77.93,250 +17224,STANDARD,0,"Fort Loudon",,"Bricker Dev, Cowans Gap, Cowans Vlg, Ft Loudon, Metal, Richmond Furn, Tuscarora Hts",PA,"Franklin County",America/New_York,717,NA,US,39.97,-77.9,1580 +17225,STANDARD,0,Greencastle,,"Bino, Cosytown, Mason Dixon, Milnor, Upton, Waynecastle, Welsh Run, Worleytown",PA,"Franklin County",America/New_York,717,NA,US,39.79,-77.72,18930 +17228,STANDARD,0,Harrisonville,,"Gracey, Licking Creek, Saluvia",PA,"Fulton County",America/New_York,717,NA,US,39.97,-78.08,980 +17229,STANDARD,0,Hustontown,,Hustontwn,PA,"Fulton County",America/New_York,717,NA,US,40.08,-78.01,1070 +17231,"PO BOX",0,Lemasters,,,PA,"Franklin County",America/New_York,717,NA,US,39.85,-77.84,248 +17232,STANDARD,0,Lurgan,,,PA,"Franklin County",America/New_York,717,NA,US,40.13,-77.64,114 +17233,STANDARD,0,"Mc Connellsburg","Mc Connellsbg","Andover, Cito, Knobsville, Mcconnellsburg, Webster Mills",PA,"Fulton County",America/New_York,717,NA,US,39.93,-77.99,4590 +17235,"PO BOX",0,Marion,,,PA,"Franklin County",America/New_York,717,NA,US,39.86,-77.7,742 +17236,STANDARD,0,Mercersburg,,"Africa, Charlestown, Claylick, Cove Gap, Dickey, Kasiesville, Markes, Peters, Shimpstown, Sylvan",PA,"Franklin County",America/New_York,717,NA,US,39.83,-77.9,7990 +17237,STANDARD,0,"Mont Alto",,,PA,"Franklin County",America/New_York,717,NA,US,39.84,-77.54,1510 +17238,STANDARD,0,Needmore,,"Belfast, Sipes Mill",PA,"Fulton County",America/New_York,717,NA,US,39.86,-78.15,1650 +17239,STANDARD,0,Neelyton,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.13,-77.85,210 +17240,STANDARD,0,Newburg,,,PA,"Cumberland County",America/New_York,717,NA,US,40.13,-77.55,3380 +17241,STANDARD,0,Newville,,"Bloserville, Cobblerville, Dickinson, Doubling Gap, Entlerville, Greenspring, Hays Grove, Heberlig, Little Wash, Lower Mifflin, Mccrea, North Newton, Upper Frankfd, Upper Mifflin",PA,"Cumberland County",America/New_York,717,NA,US,40.17,-77.4,11250 +17243,STANDARD,0,Orbisonia,,"Blacklog, Maddensville, Meadow Gap",PA,"Huntingdon County",America/New_York,814,NA,US,40.24,-77.89,1150 +17244,STANDARD,0,Orrstown,,,PA,"Franklin County",America/New_York,717,NA,US,40.05,-77.6,2260 +17246,STANDARD,0,"Pleasant Hall",,,PA,"Franklin County",America/New_York,717,NA,US,40.05,-77.66,210 +17247,"PO BOX",0,Quincy,,,PA,"Franklin County",America/New_York,717,NA,US,39.8,-77.58,518 +17249,"PO BOX",0,"Rockhill Furnace","Rockhill Furn",,PA,"Huntingdon County",America/New_York,814,NA,US,40.24,-77.9,418 +17250,"PO BOX",0,Rouzerville,,,PA,"Franklin County",America/New_York,717,NA,US,39.74,-77.52,358 +17251,"PO BOX",0,Roxbury,,,PA,"Franklin County",America/New_York,717,NA,US,40.13,-77.69,268 +17252,STANDARD,0,"Saint Thomas",,"St Thomas",PA,"Franklin County",America/New_York,717,NA,US,39.92,-77.8,3520 +17253,"PO BOX",0,Saltillo,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.21,-78.01,333 +17254,"PO BOX",0,Scotland,,,PA,"Franklin County",America/New_York,717,NA,US,39.97,-77.59,507 +17255,STANDARD,0,"Shade Gap",,,PA,"Huntingdon County",America/New_York,814,NA,US,40.18,-77.86,930 +17256,"PO BOX",0,"Shady Grove",,,PA,"Franklin County",America/New_York,717,NA,US,39.78,-77.68,263 +17257,STANDARD,0,Shippensburg,,"Cleversburg, Lees Cross Rd, Mainsville, Middle Spring, Mongul, Mowersville, Pinola, Stoughstown, Tusculam",PA,"Cumberland County",America/New_York,717,NA,US,40.04,-77.52,23390 +17260,STANDARD,0,Shirleysburg,"Mount Union",,PA,"Huntingdon County",America/New_York,814,NA,US,40.29,-77.87,1070 +17261,"PO BOX",0,"South Mountain","S Mountain",,PA,"Franklin County",America/New_York,717,NA,US,39.86,-77.51,484 +17262,STANDARD,0,"Spring Run",,,PA,"Franklin County",America/New_York,717,NA,US,40.15,-77.71,1020 +17263,"PO BOX",0,"State Line",,,PA,"Franklin County",America/New_York,717,NA,US,39.73,-77.72,731 +17264,STANDARD,0,"Three Springs",,"Cherry Grove, Pogue, Selea",PA,"Huntingdon County",America/New_York,814,NA,US,40.19,-77.98,2110 +17265,STANDARD,0,Upperstrasburg,Upperstrasbrg,"Upper Strasbg",PA,"Franklin County",America/New_York,717,NA,US,40.06,-77.76,430 +17266,STANDARD,0,"Walnut Bottom",,"South Newton",PA,"Cumberland County",America/New_York,717,NA,US,40.09,-77.41,520 +17267,STANDARD,0,Warfordsburg,,"Amaranth, Buck Valley, Dott, Stoneybreak",PA,"Fulton County",America/New_York,717,NA,US,39.77,-78.2,2570 +17268,STANDARD,0,Waynesboro,,"Altenwald, Biesecker Gap, Cress, Eastland Hill, Fiveforks, Fox Hill, Glen Forney, Good, Pen Mar, Pennersville, Polktown, Roadside, Tomstown, Wayne Heights, Weltys",PA,"Franklin County",America/New_York,717,NA,US,39.75,-77.58,27050 +17270,"PO BOX",1,Williamson,,,PA,"Franklin County",America/New_York,717,NA,US,39.85,-77.8,161 +17271,STANDARD,0,"Willow Hill",,,PA,"Franklin County",America/New_York,717,NA,US,40.11,-77.77,440 +17272,"PO BOX",0,Zullinger,,,PA,"Franklin County",America/New_York,717,NA,US,39.77,-77.62,492 +17301,STANDARD,0,Abbottstown,,,PA,"Adams County",America/New_York,,NA,US,39.88,-76.98,4060 +17302,STANDARD,0,Airville,,"Collinsville, Kyleville, Muddy Creek Forks, Sunnyburn, Woodbine",PA,"York County",America/New_York,717,NA,US,39.82,-76.39,2650 +17303,"PO BOX",0,Arendtsville,,,PA,"Adams County",America/New_York,717,NA,US,39.92,-77.3,864 +17304,STANDARD,0,Aspers,,"Center Mills",PA,"Adams County",America/New_York,717,NA,US,39.97,-77.23,2970 +17306,"PO BOX",0,Bendersville,,,PA,"Adams County",America/New_York,717,NA,US,39.98,-77.25,783 +17307,STANDARD,0,Biglerville,,"Beecherstown, Brysonia, Floradale, Guernsey, Table Rock",PA,"Adams County",America/New_York,717,NA,US,39.93,-77.24,5130 +17309,STANDARD,0,Brogue,,"Shenks Ferry",PA,"York County",America/New_York,717,NA,US,39.86,-76.45,1940 +17310,"PO BOX",0,Cashtown,,,PA,"Adams County",America/New_York,717,NA,US,39.88,-77.34,255 +17311,"PO BOX",0,Codorus,,,PA,"York County",America/New_York,717,NA,US,39.82,-76.84,465 +17312,"PO BOX",0,Craley,,,PA,"York County",America/New_York,717,NA,US,39.95,-76.54,139 +17313,STANDARD,0,Dallastown,Yoe,,PA,"York County",America/New_York,717,NA,US,39.89,-76.64,9590 +17314,STANDARD,0,Delta,,"Bryansville, Coal Cabin Beach, Slate Hill, West Bangor",PA,"York County",America/New_York,717,NA,US,39.76,-76.33,5350 +17315,STANDARD,0,Dover,York,"Bigmount, Davidsburg, Mount Royal",PA,"York County",America/New_York,717,NA,US,40,-76.84,24480 +17316,STANDARD,0,"East Berlin",,,PA,"Adams County",America/New_York,717,NA,US,39.93,-76.97,8100 +17317,"PO BOX",0,"East Prospect",,,PA,"York County",America/New_York,717,NA,US,39.97,-76.52,546 +17318,"PO BOX",0,Emigsville,,,PA,"York County",America/New_York,717,NA,US,40.02,-76.72,453 +17319,STANDARD,0,Etters,,"Goldsboro, Newberrytown, Yocumtown",PA,"York County",America/New_York,717,NA,US,40.15,-76.79,10420 +17320,STANDARD,0,Fairfield,Greenstone,"Carroll Valley, Charnita",PA,"Adams County",America/New_York,717,NA,US,39.78,-77.36,7530 +17321,STANDARD,0,"Fawn Grove",,Fawn,PA,"York County",America/New_York,717,NA,US,39.75,-76.44,2160 +17322,STANDARD,0,Felton,,"Brogueville, Cross Roads, Lucky",PA,"York County",America/New_York,717,NA,US,39.85,-76.56,5660 +17323,"PO BOX",0,Franklintown,,,PA,"York County",America/New_York,717,NA,US,40.07,-77.02,341 +17324,STANDARD,0,Gardners,,"Goodyear, Hunters Run, Mount Tabor, Pine Grove Furnace, Starners Station, Toland, Uriah",PA,"Cumberland County",America/New_York,,NA,US,40.04,-77.18,3890 +17325,STANDARD,0,Gettysburg,,"Bonneauville, Fairplay, Heidlersburg, Hunterstown",PA,"Adams County",America/New_York,717,NA,US,39.83,-77.23,23420 +17326,UNIQUE,1,Gettysburg,,"Federal Communications Com",PA,"Adams County",America/New_York,717,NA,US,39.83,-77.23,0 +17327,STANDARD,0,"Glen Rock",,"Hametown, Larue",PA,"York County",America/New_York,717,NA,US,39.79,-76.73,7040 +17329,STANDARD,0,Glenville,Brodbecks,Sticks,PA,"York County",America/New_York,717,NA,US,39.76,-76.85,2570 +17331,STANDARD,0,Hanover,,"Baresville, Bowman Addition, Brushtown, Edgegrove, Fairview Drive, Gitts Run, Gnatstown, Grangeville, Green Springs, Hershey Heights, Hobart, Jacobs Mills, Moulstown, Park Heights, Park Hills, Parkville, Pennville, Pleasant Hill, Shorbes Hill, York Road",PA,"York County",America/New_York,717,NA,US,39.81,-76.98,50650 +17332,UNIQUE,0,Hanover,,"Direct Brands",PA,"York County",America/New_York,717,NA,US,39.81,-76.98,0 +17333,UNIQUE,0,Hanover,,"Hanover Direct",PA,"York County",America/New_York,717,NA,US,39.81,-76.98,0 +17334,UNIQUE,0,Hanover,,"Direct Brands",PA,"York County",America/New_York,717,NA,US,39.8,-76.98,0 +17335,UNIQUE,0,Hanover,,"Direct Brands",PA,"York County",America/New_York,717,NA,US,39.8,-76.98,0 +17337,"PO BOX",0,Idaville,,,PA,"Adams County",America/New_York,717,NA,US,40.01,-77.2,68 +17339,STANDARD,0,Lewisberry,,"Fortney, Pinetown, Silver Lake",PA,"York County",America/New_York,717,NA,US,40.13,-76.86,6590 +17340,STANDARD,0,Littlestown,,"Kingsdale, White Hall",PA,"Adams County",America/New_York,717,NA,US,39.74,-77.08,10560 +17342,"PO BOX",0,Loganville,,,PA,"York County",America/New_York,717,NA,US,39.85,-76.7,379 +17343,"PO BOX",0,"Mc Knightstown",Mcknightstown,,PA,"Adams County",America/New_York,717,NA,US,39.87,-77.33,273 +17344,STANDARD,0,"Mc Sherrystown",Mcsherrystown,,PA,"Adams County",America/New_York,717,NA,US,39.81,-77.02,3240 +17345,STANDARD,0,Manchester,,Strinestown,PA,"York County",America/New_York,717,NA,US,40.06,-76.72,7240 +17347,STANDARD,0,"Mount Wolf",,"Saginaw, Starview",PA,"York County",America/New_York,717,NA,US,40.06,-76.7,6360 +17349,STANDARD,0,"New Freedom",,Tolna,PA,"York County",America/New_York,717,NA,US,39.73,-76.69,7930 +17350,STANDARD,0,"New Oxford",,,PA,"Adams County",America/New_York,717,NA,US,39.86,-77.05,12550 +17352,STANDARD,0,"New Park",,"Bridgeton, Gatchellville",PA,"York County",America/New_York,717,NA,US,39.76,-76.5,1220 +17353,STANDARD,0,Orrtanna,,,PA,"Adams County",America/New_York,717,NA,US,39.88,-77.38,2840 +17354,STANDARD,1,"Porters Sideling","Ports Sidling, Spring Grove",,PA,"York County",America/New_York,717,NA,US,39.85,-76.88,0 +17355,"PO BOX",0,Railroad,,,PA,"York County",America/New_York,717,NA,US,39.76,-76.69,239 +17356,STANDARD,0,"Red Lion",,"Freysville, New Bridgeville, Pleasant View, Snyder Corner, Springvale",PA,"York County",America/New_York,717,NA,US,39.89,-76.6,21640 +17358,"PO BOX",0,Rossville,,,PA,"York County",America/New_York,717,NA,US,40.07,-76.92,20 +17360,STANDARD,0,"Seven Valleys",,,PA,"York County",America/New_York,717,NA,US,39.85,-76.76,6210 +17361,STANDARD,0,Shrewsbury,,,PA,"York County",America/New_York,717,NA,US,39.77,-76.68,5610 +17362,STANDARD,0,"Spring Grove","Menges Mills","Nashville, Sinsheim, Stoverstown",PA,"York County",America/New_York,717,NA,US,39.88,-76.86,13300 +17363,STANDARD,0,Stewartstown,,Rinely,PA,"York County",America/New_York,717,NA,US,39.75,-76.59,8770 +17364,STANDARD,0,Thomasville,,,PA,"York County",America/New_York,717,NA,US,39.92,-76.87,3550 +17365,STANDARD,0,Wellsville,,,PA,"York County",America/New_York,717,NA,US,40.05,-76.94,2440 +17366,STANDARD,0,Windsor,,Bittersville,PA,"York County",America/New_York,717,NA,US,39.91,-76.58,5080 +17368,STANDARD,0,Wrightsville,,Longlevel,PA,"York County",America/New_York,717,NA,US,40.02,-76.53,7080 +17370,STANDARD,0,"York Haven",,Cly,PA,"York County",America/New_York,717,NA,US,40.11,-76.71,5940 +17371,"PO BOX",0,"York New Salem","York Nw Salem",,PA,"York County",America/New_York,717,NA,US,39.9,-76.79,375 +17372,STANDARD,0,"York Springs",,,PA,"Adams County",America/New_York,717,NA,US,40,-77.11,4220 +17375,UNIQUE,0,"Peach Glen",,"Knouse Foods",PA,"Adams County",America/New_York,717,NA,US,40.02,-77.23,0 +17401,STANDARD,0,York,,,PA,"York County",America/New_York,717,NA,US,39.96,-76.73,15700 +17402,STANDARD,0,York,"East York, Springettsbury Township, Sprngtsbry Tp","Fayfield, Glades, Locust Grove, Longstown, Mount Zion, Pleasureville, Spry, Stonybrook, Yorklyn, Yorkshire",PA,"York County",America/New_York,717,NA,US,39.96,-76.66,32010 +17403,STANDARD,0,York,,"Botts, Leaders Heights, Ore Valley, Windsor Park, Wyndham Hills",PA,"York County",America/New_York,717,NA,US,39.92,-76.71,34060 +17404,STANDARD,0,York,"West York",Shiloh,PA,"York County",America/New_York,717,NA,US,40,-76.77,35040 +17405,"PO BOX",0,York,,,PA,"York County",America/New_York,717,NA,US,39.96,-76.73,608 +17406,STANDARD,0,York,"Hallam, Hellam, Yorkana","Accomac, Highmount, Kreutz Creek",PA,"York County",America/New_York,717,NA,US,40.01,-76.64,22170 +17407,STANDARD,0,York,Jacobus,,PA,"York County",America/New_York,717,NA,US,39.88,-76.71,2190 +17408,STANDARD,0,York,"New Salem Borough, New Salem Bro, W Manchester, West Manchester Twp",,PA,"York County",America/New_York,717,NA,US,39.95,-76.81,22260 +17415,UNIQUE,1,York,,"North American Outdoor Group",PA,"York County",America/New_York,717,NA,US,39.96,-76.73,0 +17501,STANDARD,0,Akron,,,PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.2,4390 +17502,STANDARD,0,Bainbridge,,"Conoy, Falmouth, Stack Town",PA,"Lancaster County",America/New_York,717,NA,US,40.09,-76.67,2600 +17503,"PO BOX",0,Bart,,,PA,"Lancaster County",America/New_York,717,NA,US,39.92,-76.07,173 +17504,"PO BOX",0,Bausman,,,PA,"Lancaster County",America/New_York,717,NA,US,40,-76.32,261 +17505,STANDARD,0,"Bird In Hand",,,PA,"Lancaster County",America/New_York,717,NA,US,40.05,-76.18,1880 +17506,"PO BOX",0,"Blue Ball",,,PA,"Lancaster County",America/New_York,717,NA,US,40.12,-76.03,551 +17507,"PO BOX",0,Bowmansville,,,PA,"Lancaster County",America/New_York,717,NA,US,40.2,-76.02,544 +17508,"PO BOX",0,Brownstown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.12,-76.22,1030 +17509,STANDARD,0,Christiana,Ninepoints,"Andrews Bridge, Bartville, Cooperville, Smyrna",PA,"Lancaster County",America/New_York,717,NA,US,39.91,-76.04,4640 +17512,STANDARD,0,Columbia,,"Ironville, Kinderhook",PA,"Lancaster County",America/New_York,717,NA,US,40.03,-76.49,16110 +17516,STANDARD,0,Conestoga,,"Creswell, Highville, Safe Harbor",PA,"Lancaster County",America/New_York,717,NA,US,39.93,-76.36,4190 +17517,STANDARD,0,Denver,,Fivepointville,PA,"Lancaster County",America/New_York,717,NA,US,40.23,-76.13,15190 +17518,STANDARD,0,Drumore,,"Liberty Square",PA,"Lancaster County",America/New_York,717,NA,US,39.83,-76.25,1180 +17519,STANDARD,0,"East Earl",,"Cedar Lane, Weaverland",PA,"Lancaster County",America/New_York,717,NA,US,40.14,-76.02,6090 +17520,STANDARD,0,"East Petersburg","E Petersburg",,PA,"Lancaster County",America/New_York,717,NA,US,40.1,-76.35,4640 +17521,"PO BOX",0,Elm,,,PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.42,78 +17522,STANDARD,0,Ephrata,,"Clay, Durlach, Farmersville, Hahnstown, Hinkletown, Murrell, Napierville, Voganville, Weidmanville",PA,"Lancaster County",America/New_York,717,NA,US,40.18,-76.18,31170 +17527,STANDARD,0,Gap,,"White Horse",PA,"Lancaster County",America/New_York,717,NA,US,40.01,-75.99,6120 +17528,"PO BOX",0,Goodville,,,PA,"Lancaster County",America/New_York,717,NA,US,39.89,-76.32,222 +17529,STANDARD,0,Gordonville,,,PA,"Lancaster County",America/New_York,717,NA,US,40.04,-76.1,4080 +17532,STANDARD,0,Holtwood,,"Bethesda, Rawlinsville",PA,"Lancaster County",America/New_York,717,NA,US,39.82,-76.33,3190 +17533,"PO BOX",0,Hopeland,,,PA,"Lancaster County",America/New_York,717,NA,US,40.2,-76.2,128 +17534,"PO BOX",0,Intercourse,,,PA,"Lancaster County",America/New_York,717,NA,US,40.06,-76.14,330 +17535,STANDARD,0,Kinzers,,"Buyerstown, New Milltown",PA,"Lancaster County",America/New_York,717,NA,US,39.98,-76.02,2610 +17536,STANDARD,0,Kirkwood,,Colerain,PA,"Lancaster County",America/New_York,717,NA,US,39.82,-76.09,2790 +17537,"PO BOX",0,Lampeter,,,PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.24,236 +17538,STANDARD,0,Landisville,Salunga,Bamford,PA,"Lancaster County",America/New_York,717,NA,US,40.09,-76.41,6660 +17540,STANDARD,0,Leola,,"Bareville, Leacock, Oregon, Rockrimmin Ridge",PA,"Lancaster County",America/New_York,717,NA,US,40.09,-76.18,10030 +17543,STANDARD,0,Lititz,,"Brickerville, Fairland, Halfville, Kissel Hill, Lexington, Lime Rock, Millway, Poplar Grove, Rothsville, Speedwell",PA,"Lancaster County",America/New_York,717,NA,US,40.15,-76.3,43730 +17545,STANDARD,0,Manheim,,"Elstonville, Elwyn Terrace, Lancaster Junction, Mastersonville, Mount Hope, Old Line, Sporting Hill",PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.39,21400 +17547,STANDARD,0,Marietta,,"Shocks Mills",PA,"Lancaster County",America/New_York,717,NA,US,40.05,-76.55,7370 +17549,"PO BOX",0,Martindale,,,PA,"Lancaster County",America/New_York,717,NA,US,40.17,-76.17,29 +17550,"PO BOX",0,Maytown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.08,-76.58,1132 +17551,STANDARD,0,Millersville,,Slackwater,PA,"Lancaster County",America/New_York,717,NA,US,40,-76.35,7440 +17552,STANDARD,0,"Mount Joy",Florin,"Donegal Heights, Donegal Springs, Farmdale, Milton Grove",PA,"Lancaster County",America/New_York,717,NA,US,40.11,-76.5,19650 +17554,STANDARD,0,Mountville,,,PA,"Lancaster County",America/New_York,717,NA,US,40.04,-76.43,7470 +17555,STANDARD,0,Narvon,,"Beartown, Churchtown, Fetterville, South Hermitage",PA,"Lancaster County",America/New_York,717,NA,US,40.12,-75.97,6940 +17557,STANDARD,0,"New Holland",,"Greenbank, Groffdale, Laurelville",PA,"Lancaster County",America/New_York,717,NA,US,40.1,-76.09,13850 +17560,STANDARD,0,"New Providence","New Providnce","Providence, Smithville",PA,"Lancaster County",America/New_York,717,NA,US,39.9,-76.23,4690 +17562,STANDARD,0,Paradise,,"Bellemont, Harristown, Iva, Lapark, Leaman Place, Nickel Mines, Vintage",PA,"Lancaster County",America/New_York,717,NA,US,40,-76.12,4220 +17563,STANDARD,0,"Peach Bottom",,"Eldora, Fulton, Furniss, Mcsparren, New Texas, Oakryn, Penn Hill, Wrightsdale",PA,"Lancaster County",America/New_York,717,NA,US,39.76,-76.18,3660 +17564,"PO BOX",0,Penryn,,,PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.42,70 +17565,STANDARD,0,Pequea,,"Colemanville, Martic, Martic Forge, Marticville, Mount Nebo",PA,"Lancaster County",America/New_York,717,NA,US,39.9,-76.31,2460 +17566,STANDARD,0,Quarryville,,"Buck, Mechanics Grove",PA,"Lancaster County",America/New_York,717,NA,US,39.89,-76.16,11790 +17567,"PO BOX",0,Reamstown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.21,-76.11,623 +17568,"PO BOX",0,Refton,,,PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.24,139 +17569,STANDARD,0,Reinholds,,"Blainsport, Swartzville, Vere Cruz, Vinemont",PA,"Lancaster County",America/New_York,717,NA,US,40.27,-76.11,5930 +17570,"PO BOX",0,Rheems,,,PA,"Lancaster County",America/New_York,717,NA,US,40.13,-76.57,262 +17572,STANDARD,0,Ronks,Soudersburg,Mascot,PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.16,3680 +17573,UNIQUE,0,Lancaster,,"Jay Advertising",PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.16,0 +17575,"PO BOX",0,"Silver Spring",,"Forest Knolls",PA,"Lancaster County",America/New_York,717,NA,US,40.06,-76.43,147 +17576,STANDARD,0,Smoketown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.04,-76.2,240 +17578,STANDARD,0,Stevens,,"Redrun, Schoeneck",PA,"Lancaster County",America/New_York,717,NA,US,40.23,-76.18,6300 +20016,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.94,-77.09,24500 +20017,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.94,-76.99,16170 +20018,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.93,-76.97,16800 +20019,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-76.94,50130 +20020,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.86,-76.98,42310 +20022,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.91,-76.96,0 +20023,"PO BOX",1,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.01,0 +20024,STANDARD,0,Washington,"Fort Lesley J Mcnair, Fort Mcnair, Ft L J Mcnair",,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,11930 +20026,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,308 +20027,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-76.98,104 +20029,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,511 +20030,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,559 +20032,STANDARD,0,Washington,"Bolling AFB","Bolling Air Force Base, Wash, Washing, Washingtn",DC,"District of Columbia",America/New_York,202,NA,US,38.83,-77.01,31150 +20033,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,80 +20035,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,126 +20036,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.91,-77.04,4150 +20037,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.06,6320 +20038,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,261 +20039,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,166 +20040,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,212 +20041,"PO BOX",0,Washington,,"Dulles International Airp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,75 +20042,UNIQUE,0,Washington,,"Sun Trust Bank Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20043,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,86 +20044,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,335 +20045,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.03,32 +20046,UNIQUE,1,Washington,,"G E I C O",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20047,UNIQUE,0,Washington,,"Criterion Ins Co",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20049,UNIQUE,0,Washington,,"Amer Assc Retired Persons",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20050,"PO BOX",0,Washington,Pentagon,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20051,UNIQUE,1,Washington,,"Woodward And Lothrop",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20052,UNIQUE,0,Washington,,"G W Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.05,124 +20053,UNIQUE,0,Washington,,Verizon,DC,"District of Columbia",America/New_York,202,NA,US,38.88,-77.01,0 +20055,UNIQUE,0,Washington,,"Bank Of America",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20056,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,147 +20057,UNIQUE,0,Washington,,"Georgetown Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.91,-77.08,799 +20058,UNIQUE,0,Washington,,"Marriott Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20059,UNIQUE,0,Washington,,"Howard Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,99 +20060,UNIQUE,0,Washington,,"Howard University Hospital",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20061,UNIQUE,0,Washington,,"Wells Fargo",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20062,UNIQUE,0,Washington,,"Us Chamber Of Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20063,UNIQUE,0,Washington,,"Int Group Plans Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20064,UNIQUE,0,Washington,,"Catholic Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.94,-77,33 +20065,UNIQUE,0,Washington,,"Blue Cross Group Hosp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20066,UNIQUE,0,Washington,,"Washington Dc Post Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20067,UNIQUE,0,Washington,,Pepco,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20068,UNIQUE,0,Washington,,Pepco,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20069,UNIQUE,0,Washington,,"Wash Intell Bureau Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20070,UNIQUE,0,Washington,,"Wash Intell Bureau Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20071,UNIQUE,0,Washington,,"Washington Post",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,28 +20073,UNIQUE,0,Washington,,"Pnc Financial",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20074,UNIQUE,0,Washington,,"Pnc Financial",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20075,UNIQUE,0,Washington,,"Pnc Financial",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20076,UNIQUE,0,Washington,,Geico,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20077,UNIQUE,0,Washington,,"Washington Brm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20078,UNIQUE,0,Washington,,"Washington Brm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20080,UNIQUE,0,Washington,,"Washington Gas",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20081,UNIQUE,0,Washington,,"Washington Gas",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20082,UNIQUE,0,Washington,,"Natl Repub Cong Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20088,"PO BOX",1,Washington,,"Friendship Heights",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20090,"PO BOX",0,Washington,,"General Delivery",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,394 +20091,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,125 +20097,UNIQUE,1,Washington,,"Natl Repub Cong Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20098,UNIQUE,1,Washington,,"Vietnam Vet Mem Fund",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20101,UNIQUE,0,Dulles,,"Dulles P & D Center",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,87 +20102,UNIQUE,0,Dulles,,"Dulles Air Transfer Office",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,0 +20103,UNIQUE,0,Dulles,,"Stamp Distribution Network",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,0 +20104,UNIQUE,0,Dulles,,"Inspection Service Forensic",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,0 +20105,STANDARD,0,Aldie,"Stone Ridge",,VA,"Loudoun County",America/New_York,"540,703,571",NA,US,38.97,-77.64,32660 +20106,STANDARD,0,Amissville,Viewtown,,VA,"Culpeper County",America/New_York,,NA,US,38.67,-77.99,4640 +20107,STANDARD,1,Arcola,,,VA,"Loudoun County",America/New_York,,NA,US,38.96,-77.52,31 +20108,"PO BOX",0,Manassas,,,VA,"Manassas City",America/New_York,571,NA,US,38.74,-77.48,1684 +20109,STANDARD,0,Manassas,"Sudley Spgs, Sudley Springs",,VA,"Prince William County",America/New_York,"571,703",NA,US,38.79,-77.53,37490 +20110,STANDARD,0,Manassas,,,VA,"Manassas city",America/New_York,"571,703",NA,US,38.74,-77.48,44240 +20111,STANDARD,0,Manassas,"Manassas Park",,VA,"Prince William County",America/New_York,"571,703",NA,US,38.75,-77.43,36040 +20112,STANDARD,0,Manassas,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.66,-77.43,28440 +20113,"PO BOX",0,Manassas,"Manassas Park",,VA,"Manassas City",America/New_York,571,NA,US,38.74,-77.48,188 +20115,STANDARD,0,Marshall,,,VA,"Fauquier County",America/New_York,540,NA,US,38.87,-77.85,5430 +20116,"PO BOX",0,Marshall,,,VA,"Fauquier County",America/New_York,,NA,US,38.87,-77.85,902 +20117,STANDARD,0,Middleburg,,,VA,"Loudoun County",America/New_York,540,NA,US,38.97,-77.73,1560 +20118,"PO BOX",0,Middleburg,,,VA,"Loudoun County",America/New_York,540,NA,US,38.97,-77.74,2122 +20119,STANDARD,0,Catlett,,,VA,"Fauquier County",America/New_York,540,NA,US,38.61,-77.64,3720 +20120,STANDARD,0,Centreville,"Sully Station",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.84,-77.44,40450 +20121,STANDARD,0,Centreville,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.81,-77.46,26750 +20122,"PO BOX",0,Centreville,,,VA,"Fairfax County",America/New_York,571,NA,US,38.84,-77.44,621 +20124,STANDARD,0,Clifton,,,VA,"Fairfax County",America/New_York,571,NA,US,38.77,-77.38,15080 +20128,"PO BOX",0,Orlean,,,VA,"Fauquier County",America/New_York,,NA,US,38.74,-77.96,255 +20129,STANDARD,0,"Paeonian Springs","Paeonian Spgs",,VA,"Loudoun County",America/New_York,703,NA,US,39.16,-77.61,650 +20130,STANDARD,0,Paris,,,VA,"Clarke County",America/New_York,,NA,US,39,-77.95,260 +20131,"PO BOX",0,Philomont,,,VA,"Loudoun County",America/New_York,,NA,US,39.05,-77.74,375 +20132,STANDARD,0,Purcellville,Hillsboro,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.71,16860 +20134,"PO BOX",0,Purcellville,Hillsboro,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.71,959 +20135,STANDARD,0,Bluemont,"Mount Weather",,VA,"Clarke County",America/New_York,703,NA,US,39.11,-77.83,2520 +20136,STANDARD,0,Bristow,,,VA,"Prince William County",America/New_York,571,NA,US,38.74,-77.55,31270 +20137,STANDARD,0,"Broad Run",,,VA,"Fauquier County",America/New_York,540,NA,US,38.81,-77.72,1860 +20138,"PO BOX",0,Calverton,,,VA,"Fauquier County",America/New_York,,NA,US,38.63,-77.67,289 +20139,"PO BOX",0,Casanova,,,VA,"Fauquier County",America/New_York,,NA,US,38.66,-77.7,326 +20140,"PO BOX",0,Rectortown,,,VA,"Fauquier County",America/New_York,,NA,US,38.81,-77.9,98 +20141,STANDARD,0,"Round Hill",,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.77,7570 +20142,"PO BOX",0,"Round Hill",,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.77,667 +20143,STANDARD,0,Catharpin,,,VA,"Prince William County",America/New_York,571,NA,US,38.84,-77.56,1110 +20144,STANDARD,0,Delaplane,,,VA,"Fauquier County",America/New_York,540,NA,US,38.92,-77.92,860 +20146,"PO BOX",0,Ashburn,,,VA,"Loudoun County",America/New_York,,NA,US,39.04,-77.48,510 +20147,STANDARD,0,Ashburn,,,VA,"Loudoun County",America/New_York,703,NA,US,39.04,-77.48,63400 +20148,STANDARD,0,Ashburn,"Brambleton, Broadlands",,VA,"Loudoun County",America/New_York,"571,703",NA,US,39,-77.52,59380 +20149,UNIQUE,0,Ashburn,,"Natl Assn Letter Carriers",VA,"Loudoun County",America/New_York,571,NA,US,39.04,-77.48,0 +20151,STANDARD,0,Chantilly,Fairfax,,VA,"Fairfax County",America/New_York,571,NA,US,38.9,-77.45,21880 +20152,STANDARD,0,Chantilly,"Fairfax, South Riding",,VA,"Loudoun County",America/New_York,"571,703",NA,US,38.92,-77.5,36430 +20153,"PO BOX",0,Chantilly,Fairfax,,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.4,632 +20155,STANDARD,0,Gainesville,,,VA,"Prince William County",America/New_York,571,NA,US,38.79,-77.61,36090 +20156,"PO BOX",0,Gainesville,,,VA,"Prince William County",America/New_York,571,NA,US,38.79,-77.61,339 +20158,STANDARD,0,Hamilton,,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.66,4360 +20159,"PO BOX",0,Hamilton,,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.66,419 +20160,"PO BOX",0,Lincoln,Purcellville,,VA,"Loudoun County",America/New_York,540,NA,US,39.11,-77.69,243 +20163,"PO BOX",0,Sterling,,,VA,"Loudoun County",America/New_York,,NA,US,39,-77.4,0 +20164,STANDARD,0,Sterling,,,VA,"Loudoun County",America/New_York,703,NA,US,39,-77.4,39110 +20165,STANDARD,0,Sterling,"Potomac Falls",,VA,"Loudoun County",America/New_York,703,NA,US,39.06,-77.39,33190 +20166,STANDARD,0,Sterling,"Arcola, Dulles",,VA,"Loudoun County",America/New_York,"571,703",NA,US,38.99,-77.46,12350 +20167,"PO BOX",0,Sterling,,,VA,"Loudoun County",America/New_York,571,NA,US,39,-77.4,542 +20168,"PO BOX",0,Haymarket,,,VA,"Prince William County",America/New_York,571,NA,US,38.81,-77.63,269 +20169,STANDARD,0,Haymarket,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.88,-77.65,27590 +20170,STANDARD,0,Herndon,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.96,-77.38,40620 +20171,STANDARD,0,Herndon,"Oak Hill",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.92,-77.4,49720 +20172,"PO BOX",0,Herndon,,,VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,769 +20175,STANDARD,0,Leesburg,,,VA,"Loudoun County",America/New_York,"571,703,540",NA,US,39.1,-77.55,31280 +20176,STANDARD,0,Leesburg,Lansdowne,Lucketts,VA,"Loudoun County",America/New_York,"540,571,703",NA,US,39.18,-77.54,49640 +20177,"PO BOX",0,Leesburg,,,VA,"Loudoun County",America/New_York,571,NA,US,39.1,-77.55,711 +20178,"PO BOX",0,Leesburg,,,VA,"Loudoun County",America/New_York,571,NA,US,39.1,-77.55,239 +20180,STANDARD,0,Lovettsville,,,VA,"Loudoun County",America/New_York,540,NA,US,39.27,-77.63,7910 +20181,STANDARD,0,Nokesville,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.69,-77.58,9110 +20182,"PO BOX",0,Nokesville,,,VA,"Prince William County",America/New_York,571,NA,US,38.69,-77.58,437 +20184,STANDARD,0,Upperville,,,VA,"Fauquier County",America/New_York,703,NA,US,38.99,-77.88,400 +20185,"PO BOX",0,Upperville,,,VA,"Fauquier County",America/New_York,540,NA,US,38.99,-77.88,384 +20186,STANDARD,0,Warrenton,,"Airlie, Opal",VA,"Fauquier County",America/New_York,540,NA,US,38.71,-77.79,13490 +20187,STANDARD,0,Warrenton,"New Baltimore, Vint Hill Farms, Vint Hill Frm",,VA,"Fauquier County",America/New_York,540,NA,US,38.72,-77.75,18410 +20188,"PO BOX",0,Warrenton,"Vint Hill Farms, Vint Hill Frm",,VA,"Fauquier County",America/New_York,540,NA,US,38.71,-77.79,1067 +20189,STANDARD,0,Dulles,,,VA,"Loudoun County",America/New_York,"571,703",NA,US,38.96,-77.45,9117 +20190,STANDARD,0,Reston,Herndon,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.95,-77.34,17820 +20191,STANDARD,0,Reston,Herndon,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.93,-77.35,27670 +20192,UNIQUE,0,Herndon,Reston,"Hundon, Us Geological Survey",VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,0 +20193,UNIQUE,1,Reston,"Herndon, Hundon, Sallie Mae",,VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.34,0 +20194,STANDARD,0,Reston,Herndon,,VA,"Fairfax County",America/New_York,"703,571",NA,US,38.98,-77.34,12470 +20195,"PO BOX",0,Reston,Herndon,,VA,"Fairfax County",America/New_York,571,NA,US,38.95,-77.34,525 +20196,UNIQUE,0,Reston,Herndon,Sprint,VA,"Fairfax County",America/New_York,571,NA,US,38.95,-77.34,0 +20197,STANDARD,0,Waterford,,,VA,"Loudoun County",America/New_York,"571,703",NA,US,39.2,-77.63,2460 +20198,STANDARD,0,"The Plains",,,VA,"Fauquier County",America/New_York,540,NA,US,38.86,-77.77,1810 +20199,UNIQUE,1,Dulles,"Visa Lottery State Dept",,VA,"Loudoun County",America/New_York,571,NA,US,39,-77.45,0 +20201,UNIQUE,0,Washington,,"Dept Hlth Human Serv",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20202,UNIQUE,0,Washington,,"Dept Education",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20203,UNIQUE,0,Washington,,"Social Securtiy Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20204,UNIQUE,0,Washington,,"Food And Drug Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.01,0 +20206,UNIQUE,0,Washington,,"Soc Sec Bureau Hearing App",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20207,UNIQUE,0,Washington,,"Consumer Product Safety Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20208,UNIQUE,0,Washington,,"Natl Institute Of Educ",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20210,UNIQUE,0,Washington,,"Dept Of Labor",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20211,UNIQUE,0,Washington,,"Office Of Workers Comp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20212,UNIQUE,0,Washington,,"Dept Labor Stats",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20213,UNIQUE,0,Washington,,"Dept Labor Manpower Admn",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20214,UNIQUE,0,Washington,,"Bureau Labor Statistics",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20215,UNIQUE,0,Washington,,"Dept Labor Payroll Audit Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20216,UNIQUE,0,Washington,,"Labor Management Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20217,UNIQUE,0,Washington,,"Us Tax Court",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20218,UNIQUE,0,Washington,,"Natl Comm On Social Sec",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20219,UNIQUE,0,Washington,,"Comptroller Of Currency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20220,UNIQUE,0,Washington,,"Dept Treasury",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20221,UNIQUE,0,Washington,,"District Director Irs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20222,UNIQUE,0,Washington,,"Us Treasurer",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20223,UNIQUE,0,Washington,,"Us Secret Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20224,UNIQUE,0,Washington,,"Internal Revenue Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20226,UNIQUE,0,Washington,,"Dept Treas Other Offices",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20227,UNIQUE,0,Washington,,"Dept Treas Check Claims Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20228,UNIQUE,0,Washington,,"Bureau Engav And Printing",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20229,UNIQUE,0,Washington,,"Us Bureau Of Customs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20230,UNIQUE,0,Washington,,"Dept Commerce",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20232,UNIQUE,0,Washington,,"Resolutn Trust Oversight Brd",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20233,UNIQUE,0,Washington,,"Bureau Of Census",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20235,UNIQUE,0,Washington,,"Dept Commerce Outside Hq",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20237,UNIQUE,0,Washington,,"Broadcasting Bd Of Governors",DC,"District of Columbia",America/New_York,202,NA,US,38.88,-77.01,0 +20238,UNIQUE,0,Washington,,"Us Holocaust Memorial Museum",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20239,UNIQUE,0,Washington,,"Bureau Of Public Debt",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20240,UNIQUE,0,Washington,,"Dept Interior",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.04,0 +20241,UNIQUE,0,Washington,,"Bureau Of Mines",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20242,UNIQUE,0,Washington,,"National Park Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20244,UNIQUE,0,Washington,,"Geological Survey",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20245,UNIQUE,0,Washington,,"Bureau Of Indian Affairs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.04,0 +20250,UNIQUE,0,Washington,,"Dept Agriculture",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20251,UNIQUE,0,Washington,,"Dept Ag Ofc Outside Hq",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20252,UNIQUE,0,Washington,,"Smokey Bear",DC,,America/New_York,,NA,US,38.89,-77.03,0 +20254,UNIQUE,0,Washington,,"Social Securtiy Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20260,STANDARD,0,Washington,,"Usps Headquarters",DC,"District of Columbia",America/New_York,202,NA,US,38.88,-77.02,0 +20261,UNIQUE,0,Washington,,"Usps Consumer Affairs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20262,UNIQUE,0,Washington,,Mafic,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20265,UNIQUE,0,Washington,,"Philatelic Sales Division",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20266,UNIQUE,0,Washington,,"Philatelic Sales",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20268,UNIQUE,0,Washington,,"Postal Regulatory Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20270,UNIQUE,0,Washington,,"Presidential Transition Team",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20277,UNIQUE,0,Washington,,"Washington Dc Brm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20289,UNIQUE,0,Washington,,"Universal Postal Union Congr",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20299,UNIQUE,0,Washington,,Readasorus,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20301,UNIQUE,0,Washington,Pentagon,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20303,UNIQUE,0,Washington,,"National Imaging And Mapping",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20306,UNIQUE,0,Washington,,"Armed Forces Inst Pathology",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20307,UNIQUE,1,Washington,,"Walter Reed Army Med Center",DC,"District of Columbia",America/New_York,202,NA,US,38.97,-77.03,76 +20310,UNIQUE,0,Washington,,"Dept Army Pentagon",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20314,UNIQUE,0,Washington,,"Us Army Corp Of Engineers",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20317,UNIQUE,0,Washington,,"Soldiers Airmens Home",DC,"District of Columbia",America/New_York,202,NA,US,38.93,-77.01,11 +20318,UNIQUE,0,Washington,,"Army Criminal Invest, Joint Staff",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20319,UNIQUE,0,Washington,"Fort Mcnair",,DC,"District of Columbia",America/New_York,202,NA,US,38.86,-77.02,20 +20330,UNIQUE,0,Washington,,"Dept Air Force Pentagon",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20340,UNIQUE,0,Washington,,"Defense Intelligence",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20350,UNIQUE,0,Washington,,"Chief Naval Operation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20355,UNIQUE,0,Washington,,Pentagon,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20370,UNIQUE,0,Washington,"Navy Annex",,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20372,UNIQUE,0,Washington,,"Bur Medicine Surgery",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20373,UNIQUE,0,"Naval Anacost Annex","Anacostia, Anacostia Anx, Jbab, Joint Base Anacostia Bolling, Washington","Naval Station Anacostia",DC,"District of Columbia",America/New_York,202,NA,US,38.86,-77.01,140 +20374,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Navy Yard",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,29 +20375,UNIQUE,0,Washington,,"Naval Research Laboratory",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20376,STANDARD,0,"Washington Navy Yard","Naval Sea Sys, Naval Sea Systems Command, Washington, Washington Na",,DC,"District of Columbia",America/New_York,202,NA,US,38.87,-76.99,0 +20380,UNIQUE,0,Washington,,"Dept Navy Hq Marines Arl",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20388,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Naval Investigative Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20389,UNIQUE,0,Washington,,"Naval Intelligence Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20390,UNIQUE,0,Washington,"Marine Barrks, Us Marine Corps Barracks","Dept Navy Other Offices",DC,"District of Columbia",America/New_York,202,NA,US,38.88,-76.99,329 +20391,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Dept Navy Fed Credit Union",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20392,UNIQUE,0,Washington,,"Navy Observatory",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20393,UNIQUE,0,Washington,,"Navy Security Group",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20394,UNIQUE,0,Washington,,"Naval Telecommunications Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20395,UNIQUE,0,Washington,,"Naval Intelligence Support C",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20398,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Military Sealift Command",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20401,UNIQUE,0,Washington,,"Gov Printing Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20402,UNIQUE,0,Washington,,"Gpo Supt Of Documents",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20403,UNIQUE,0,Washington,,"Gpo Field Serv Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20404,UNIQUE,0,Washington,,"Gpo Procurement Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20405,UNIQUE,0,Washington,,"Gen Services Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20406,UNIQUE,0,Washington,,"Gsa Crystal City",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20407,UNIQUE,0,Washington,,"Gsa Region 3",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20408,UNIQUE,0,Washington,,"Natl Archives And Records",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20409,UNIQUE,1,Washington,,"Fed Records Center",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20410,UNIQUE,0,Washington,,"Housing And Urban Dev",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20411,UNIQUE,0,Washington,,"Hud Fed Housing Adm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20412,UNIQUE,0,Washington,,"Fha Comptroller",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20413,UNIQUE,0,Washington,,"Housing Assistance Adm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20414,UNIQUE,0,Washington,,"Hud Fed Natl Mortgage",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20415,UNIQUE,0,Washington,,"Office Personnel Mgmt",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20416,UNIQUE,0,Washington,,"Small Business Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20417,UNIQUE,0,Washington,,"Gen Services Admin",DC,,America/New_York,202,NA,US,38.9,-77,0 +20418,UNIQUE,0,Washington,,"National Academy Of Science",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.05,0 +20419,UNIQUE,0,Washington,,"Merit Systems Protection Bd",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20420,UNIQUE,0,Washington,,"Veterans Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20421,UNIQUE,0,Washington,,"Veterans Benefits Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20422,UNIQUE,0,Washington,,"Veterans Hospital",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20423,UNIQUE,0,Washington,,"Surface Transportation Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20424,UNIQUE,0,Washington,,"Fed Labor Relations Auth",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20425,UNIQUE,0,Washington,,"Comm On Civil Rights",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20426,UNIQUE,0,Washington,,"Federal Energy Reg Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20427,UNIQUE,0,Washington,,"Fed Mediation And Concil Ser",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.05,0 +20428,UNIQUE,0,Washington,,"Civil Aeronautics Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20429,UNIQUE,0,Washington,,"Federal Deposit Ins Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20431,UNIQUE,0,Washington,,"International Monetary Fund",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,97 +20433,UNIQUE,0,Washington,,"World Bank",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,194 +20434,UNIQUE,0,Washington,,"Resolution Trust Corporation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20435,UNIQUE,0,Washington,,"National Selective Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20436,UNIQUE,0,Washington,,"International Trade Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20437,UNIQUE,0,Washington,,"Food And Drug Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20439,UNIQUE,0,Washington,,"Us Court Appeal Fed Circuit",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20440,UNIQUE,0,Washington,,"International Joint Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20441,UNIQUE,0,Washington,,"Inter Amer Defense Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20442,UNIQUE,0,Washington,,"Court Of Military Appeals",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20444,UNIQUE,0,Washington,,"Tennessee Valley Auth",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20447,UNIQUE,0,Washington,,"Family Support Administratio",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20451,UNIQUE,0,Washington,,"Arms Control And Disarm Agy",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20453,UNIQUE,0,Washington,,"Comm Equal Oppor Armed Forc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20456,UNIQUE,0,Washington,,"National Credit Union Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20460,UNIQUE,0,Washington,,"Envir Protect Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20463,UNIQUE,0,Washington,,"Federal Election Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20468,UNIQUE,0,Washington,,"Gsa Surplus Sales",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20469,UNIQUE,0,Washington,,"Gsa Consumer Products Info",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20470,UNIQUE,0,Washington,,"Gsa Tele Com Serv",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20472,UNIQUE,0,Washington,,"Fed Emer Mngt Agncy",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20500,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20501,UNIQUE,0,Washington,,"White House Ofc Of Vice Pres",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20502,UNIQUE,0,Washington,,"White House Ofc Staff",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20503,UNIQUE,0,Washington,,"Office Of Mgmt And Budget",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20504,UNIQUE,0,Washington,,"National Security Counsel",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20505,UNIQUE,0,Washington,,"Central Intelligence Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20506,UNIQUE,0,Washington,,"Exec Office Other Organ",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20507,UNIQUE,0,Washington,,"Equal Emp Opportunity Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20508,UNIQUE,0,Washington,,"Us Trade Representative",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20509,UNIQUE,0,Washington,,"White House Ofc Staff",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20510,UNIQUE,0,Washington,,"Us Senate",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.01,0 +20511,UNIQUE,0,Washington,,"Dir National Intelligence",DC,"District of Columbia",America/New_York,202,NA,US,38.97,-77.05,0 +20515,UNIQUE,0,Washington,,"Us House Of Representatives",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20520,UNIQUE,0,Washington,,"Dept Of State",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.05,0 +20521,UNIQUE,0,Washington,,"State Department",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,384 +20522,UNIQUE,0,Washington,,"Government Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20523,UNIQUE,0,Washington,,"Dept Of State Intrntl Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20524,UNIQUE,0,Washington,,"Passport Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20525,UNIQUE,0,Washington,,Action,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20526,UNIQUE,0,Washington,,"Peace Corps",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20527,UNIQUE,0,Washington,,"Oversea Pvt Inves Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20528,UNIQUE,0,Washington,,"Dept Homeland Security",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20529,UNIQUE,0,Washington,,"Us Citizenship Immigration",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.01,0 +20530,UNIQUE,0,Washington,,"Dept Justice",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20531,UNIQUE,0,Washington,,"Law Enforce Assist Adm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20532,UNIQUE,1,Washington,,"Bureau Narc Dngr Drugs Lab",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20533,UNIQUE,0,Washington,,"Bureau Narc And Dngr Drugs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20534,UNIQUE,0,Washington,,"Bureau Of Prisons",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20535,UNIQUE,0,Washington,,Fbi,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20536,UNIQUE,0,Washington,,"Immig And Naturalization Ser",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20537,UNIQUE,0,Washington,,"Fbi Identification Unit",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20538,UNIQUE,0,Washington,,"Immig And Naturalization Ser",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20539,UNIQUE,0,Washington,,"Immig And Natural Records",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20540,UNIQUE,0,Washington,,"Library Of Congress",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77,0 +20541,UNIQUE,0,Washington,,"Library Of Congress Card Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20542,UNIQUE,0,Washington,,"Library Of Congress Handicap",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20543,UNIQUE,0,Washington,,"Us Supreme Court",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20544,UNIQUE,0,Washington,,"Adm Office Us Court",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20546,UNIQUE,0,Washington,,"Natl Aero And Space Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20547,UNIQUE,0,Washington,,"Us Information Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20548,UNIQUE,0,Washington,,"General Accounting Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20549,UNIQUE,0,Washington,,"Securities And Exchange Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20551,UNIQUE,0,Washington,,"Federal Reserve Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.05,0 +20552,UNIQUE,0,Washington,,"Cnsmr Fnncl Prtct Brd",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20553,UNIQUE,0,Washington,,"Federal Aviation Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20554,UNIQUE,0,Washington,,"Fed Communications Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20555,UNIQUE,0,Washington,,"Nuclear Regulatory Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20557,UNIQUE,0,Washington,,"Lib Of Congress Licensing",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20558,UNIQUE,1,Washington,,"Comm Tech Uses Copyrights",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20559,UNIQUE,0,Washington,,"Us Copyright Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20560,UNIQUE,0,Washington,,"Smithsonian Institute",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20565,UNIQUE,0,Washington,,"National Gallery Of Art",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20566,UNIQUE,0,Washington,,"John F Kennedy Center",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.06,0 +20570,UNIQUE,0,Washington,,"Natl Labor Relations Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20571,UNIQUE,0,Washington,,"Export Import Bank",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20572,UNIQUE,0,Washington,,"National Mediation Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20573,UNIQUE,0,Washington,,"Federal Maritime Commission",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20575,UNIQUE,0,Washington,,"Adv Comm Inter Govt Relation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20576,UNIQUE,0,Washington,,"Natl Capitol Planning",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20577,UNIQUE,0,Washington,,"Inter American Dev Bank",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,24 +20578,UNIQUE,0,Washington,,"Farm Credit Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20579,UNIQUE,0,Washington,,"Foreign Claims Settlement",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20580,UNIQUE,0,Washington,,"Federal Trade Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20581,UNIQUE,0,Washington,,"Commodity Futures Trade",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20585,UNIQUE,0,Washington,,"Dept Energy",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20586,UNIQUE,0,Washington,,"Us Synthetic Fuel Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20588,UNIQUE,0,Dhs,"Camp Springs, Cheltenham, Columbia","Dept Hs",MD,"Howard County",America/New_York,410,NA,US,38.74,-76.85,0 +20590,UNIQUE,0,Washington,,"Dept Transportation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20591,UNIQUE,0,Washington,,"Dept Transportation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20593,UNIQUE,0,Washington,,"Us Coast Guard",DC,"District of Columbia",America/New_York,202,NA,US,38.87,-77.01,0 +20594,UNIQUE,0,Washington,,"Natl Trans Safety Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20597,UNIQUE,0,Washington,,"Armed Forces Inaugural Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20598,UNIQUE,0,Dhs,"Alexandria, Arlington, Chantilly, Fairfax, Falls Church, Herndon, Lorton, Mc Lean, Mclean, Reston, Springfield, Sterling","Dept Hs",VA,"Fairfax County",America/New_York,571,NA,US,38.86,-77.05,0 +20599,UNIQUE,0,Washington,,"Pre Inaugural Committee",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20601,STANDARD,0,Waldorf,,,MD,"Charles County",America/New_York,"240,301",NA,US,38.64,-76.9,25300 +20602,STANDARD,0,Waldorf,"Saint Charles",,MD,"Charles County",America/New_York,"240,301",NA,US,38.58,-76.89,25490 +20603,STANDARD,0,Waldorf,"Saint Charles",,MD,"Charles County",America/New_York,"240,301",NA,US,38.63,-76.98,30770 +20604,"PO BOX",0,Waldorf,"Saint Charles",,MD,"Charles County",America/New_York,240,NA,US,38.64,-76.9,1437 +20606,STANDARD,0,Abell,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.25,-76.74,260 +20607,STANDARD,0,Accokeek,,,MD,"Prince George's County",America/New_York,301,NA,US,38.67,-77.01,11920 +20608,STANDARD,0,Aquasco,"Eagle Harbor",,MD,"Prince George's County",America/New_York,240,NA,US,38.58,-76.7,710 +20609,STANDARD,0,Avenue,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.27,-76.77,1050 +20610,"PO BOX",0,Barstow,,,MD,"Calvert County",America/New_York,410,NA,US,38.52,-76.6,233 +20611,STANDARD,0,"Bel Alton",,,MD,"Charles County",America/New_York,"240,301",NA,US,38.46,-76.98,1000 +20612,"PO BOX",0,Benedict,,,MD,"Charles County",America/New_York,240,NA,US,38.5,-76.68,319 +20613,STANDARD,0,Brandywine,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.69,-76.85,14590 +20615,STANDARD,0,"Broomes Island","Broomes Is",,MD,"Calvert County",America/New_York,410,NA,US,38.42,-76.55,370 +20616,STANDARD,0,"Bryans Road",,"Bryans Rd, Marshall Hall",MD,"Charles County",America/New_York,301,NA,US,38.63,-77.07,6830 +20617,STANDARD,0,Bryantown,,,MD,"Charles County",America/New_York,240,NA,US,38.55,-76.84,900 +20618,STANDARD,0,Bushwood,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.28,-76.78,740 +20619,STANDARD,0,California,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.29,-76.49,13150 +20620,STANDARD,0,Callaway,,,MD,"St. Mary's County",America/New_York,"301,240",NA,US,38.23,-76.51,1420 +20621,STANDARD,0,Chaptico,Maddox,,MD,"St. Mary's County",America/New_York,301,NA,US,38.33,-76.8,1290 +20622,STANDARD,0,"Charlotte Hall","Charlott Hall",,MD,"Charles County",America/New_York,240,NA,US,38.42,-76.87,4510 +20623,STANDARD,0,Cheltenham,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.74,-76.84,2810 +20624,STANDARD,0,Clements,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.34,-76.73,1180 +20625,"PO BOX",0,"Cobb Island",,,MD,"Charles County",America/New_York,240,NA,US,38.26,-76.85,799 +20626,STANDARD,0,"Coltons Point",,,MD,"St. Mary's County",America/New_York,240,NA,US,38.23,-76.76,320 +20627,"PO BOX",0,Compton,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.3,-76.63,271 +20628,STANDARD,0,Dameron,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.15,-76.36,540 +20629,"PO BOX",0,Dowell,,,MD,"Calvert County",America/New_York,410,NA,US,38.34,-76.45,409 +20630,STANDARD,0,Drayden,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.17,-76.47,480 +20632,STANDARD,0,Faulkner,,,MD,"Charles County",America/New_York,240,NA,US,38.43,-76.97,470 +20634,STANDARD,0,"Great Mills",,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.27,-76.51,6670 +20635,"PO BOX",0,Helen,,,MD,"St Mary's County",America/New_York,240,NA,US,38.41,-76.73,24 +20636,STANDARD,0,Hollywood,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.34,-76.57,10120 +20637,STANDARD,0,Hughesville,,,MD,"Charles County",America/New_York,"240,301",NA,US,38.53,-76.78,5640 +20639,STANDARD,0,Huntingtown,,,MD,"Calvert County",America/New_York,"410,443",NA,US,38.61,-76.61,15580 +20640,STANDARD,0,"Indian Head",Pisgah,,MD,"Charles County",America/New_York,"240,301",NA,US,38.59,-77.15,8720 +20643,"PO BOX",0,Ironsides,,,MD,"Charles County",America/New_York,240,NA,US,38.49,-77.16,43 +20645,STANDARD,0,Issue,"Swan Point",,MD,"Charles County",America/New_York,"240,301",NA,US,38.29,-76.91,890 +20646,STANDARD,0,"La Plata",Dentsville,Laplata,MD,"Charles County",America/New_York,"240,301",NA,US,38.53,-76.97,18850 +20650,STANDARD,0,Leonardtown,,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.29,-76.64,13850 +20653,STANDARD,0,"Lexington Park","Lexington Pk","Lex Pk",MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.24,-76.43,21230 +20656,STANDARD,0,Loveville,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.35,-76.67,519 +20657,STANDARD,0,Lusby,,,MD,"Calvert County",America/New_York,410,NA,US,38.41,-76.45,18000 +20658,STANDARD,0,Marbury,Rison,,MD,"Charles County",America/New_York,240,NA,US,38.56,-77.16,930 +20659,STANDARD,0,Mechanicsville,Mechanicsvlle,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.43,-76.73,22830 +20660,"PO BOX",0,Morganza,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.37,-76.71,239 +20661,"PO BOX",0,"Mount Victoria","Mt Victoria",,MD,"Charles County",America/New_York,240,NA,US,38.33,-76.91,62 +20662,STANDARD,0,Nanjemoy,,,MD,"Charles County",America/New_York,"240,301",NA,US,38.45,-77.21,2290 +20664,STANDARD,0,Newburg,,,MD,"Charles County",America/New_York,"301,240",NA,US,38.34,-76.92,2530 +20667,STANDARD,0,"Park Hall",,,MD,"St. Mary's County",America/New_York,240,NA,US,38.22,-76.44,440 +20670,STANDARD,0,"Patuxent River","Patuxent Rvr","Patuxent River Naval Air Sta",MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.28,-76.42,1120 +20674,STANDARD,0,"Piney Point",,"Piney Pt",MD,"St. Mary's County",America/New_York,301,NA,US,38.13,-76.5,710 +20675,STANDARD,0,Pomfret,,,MD,"Charles County",America/New_York,301,NA,US,38.58,-77.02,1570 +20676,STANDARD,0,"Port Republic",,,MD,"Calvert County",America/New_York,"443,410",NA,US,38.49,-76.54,3310 +20677,STANDARD,0,"Port Tobacco",,,MD,"Charles County",America/New_York,"240,301",NA,US,38.49,-77.04,2370 +20678,STANDARD,0,"Prince Frederick","Dares Beach, Prnc Frederck","Pr Frederick",MD,"Calvert County",America/New_York,"410,443",NA,US,38.54,-76.58,11510 +20680,STANDARD,0,Ridge,,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.11,-76.37,740 +20682,"PO BOX",0,"Rock Point",,"Rock Pt",MD,"Charles County",America/New_York,240,NA,US,38.34,-76.92,0 +20684,STANDARD,0,"Saint Inigoes",,"Beachville, St Inigoes",MD,"St. Mary's County",America/New_York,240,NA,US,38.15,-76.41,1110 +20685,STANDARD,0,"Saint Leonard",,"St Leonard",MD,"Calvert County",America/New_York,410,NA,US,38.47,-76.5,6320 +20686,"PO BOX",0,"Saint Marys City","Saint Marys, St Marys City",,MD,"St. Mary's County",America/New_York,240,NA,US,38.18,-76.42,240 +20687,STANDARD,0,Scotland,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.07,-76.34,260 +20688,STANDARD,0,Solomons,Dowell,,MD,"Calvert County",America/New_York,"410,443,667",NA,US,38.33,-76.46,2420 +20689,STANDARD,0,Sunderland,,,MD,"Calvert County",America/New_York,410,NA,US,38.66,-76.58,1860 +20690,STANDARD,0,"Tall Timbers",,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.16,-76.53,780 +20692,STANDARD,0,"Valley Lee",,,MD,"St. Mary's County",America/New_York,301,NA,US,38.18,-76.5,1000 +20693,STANDARD,0,Welcome,,,MD,"Charles County",America/New_York,240,NA,US,38.45,-77.08,1020 +20695,STANDARD,0,"White Plains",,,MD,"Charles County",America/New_York,301,NA,US,38.59,-76.97,12100 +20697,UNIQUE,0,"Southern Md Facility","Sthrn Md Fac","Southern Md Brm",MD,"Prince George's County",America/New_York,240,NA,US,39.03,-76.9,0 +20701,STANDARD,0,"Annapolis Junction","Annapolis Jct",,MD,"Howard County",America/New_York,"410,443",NA,US,39.12,-76.77,420 +20703,"PO BOX",0,Lanham,"Lanham Seabrook",Seabrook,MD,"Prince George's County",America/New_York,240,NA,US,38.96,-76.85,411 +20704,"PO BOX",0,Beltsville,,,MD,"Prince George's County",America/New_York,240,NA,US,39.03,-76.92,412 +20705,STANDARD,0,Beltsville,Calverton,,MD,"Prince George's County",America/New_York,"240,301,410",NA,US,39.03,-76.92,27360 +20706,STANDARD,0,Lanham,"Glenarden, Lanham Seabrook, Seabrook",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.96,-76.85,43370 +20707,STANDARD,0,Laurel,,,MD,"Prince George's County",America/New_York,"240,301,410,443",NA,US,39.1,-76.88,34680 +20708,STANDARD,0,Laurel,Montpelier,,MD,"Prince George's County",America/New_York,"240,301,410,443",NA,US,39.09,-76.85,24330 +20709,"PO BOX",0,Laurel,Montpelier,,MD,"Prince George's County",America/New_York,240,NA,US,39.09,-76.85,348 +20710,STANDARD,0,Bladensburg,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.94,-76.92,8860 +20711,STANDARD,0,Lothian,,,MD,"Anne Arundel County",America/New_York,"240,301",NA,US,38.8,-76.65,6750 +20712,STANDARD,0,"Mount Rainier",,"Mt Rainier",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.94,-76.96,7670 +20714,STANDARD,0,"North Beach","Holland Point, Rose Haven","N Beach",MD,"Calvert County",America/New_York,"301,410,443",NA,US,38.7,-76.53,4000 +20715,STANDARD,0,Bowie,,,MD,"Prince George's County",America/New_York,"301,240",NA,US,38.99,-76.74,24630 +20716,STANDARD,0,Bowie,Mitchellville,"S Bowie, South Bowie",MD,"Prince George's County",America/New_York,301,NA,US,38.95,-76.73,20090 +20717,"PO BOX",0,Bowie,Mitchellville,,MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.73,117 +20718,"PO BOX",0,Bowie,,,MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.73,358 +20719,"PO BOX",0,Bowie,,"W Bowie",MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.73,76 +20720,STANDARD,0,Bowie,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.98,-76.79,24130 +20721,STANDARD,0,Bowie,Mitchellville,,MD,"Prince George's County",America/New_York,301,NA,US,38.92,-76.79,28280 +20722,STANDARD,0,Brentwood,"Colmar Manor, Cottage City, N Brentwood, North Brentwood",Brentwd,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.94,-76.95,5960 +20723,STANDARD,0,Laurel,Scaggsville,,MD,"Howard County",America/New_York,"240,301,410,443",NA,US,39.14,-76.87,33360 +20724,STANDARD,0,Laurel,"Maryland City, Md City, Russett",,MD,"Anne Arundel County",America/New_York,"240,301,410,443",NA,US,39.1,-76.8,17370 +20725,"PO BOX",0,Laurel,,,MD,"Prince George's County",America/New_York,240,NA,US,39.09,-76.85,488 +20726,"PO BOX",0,Laurel,,,MD,"Prince George's County",America/New_York,240,NA,US,39.09,-76.85,109 +20731,"PO BOX",0,"Capitol Heights","Capitol Hgts",,MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,319 +20732,STANDARD,0,"Chesapeake Beach","Chesapeak Bch",,MD,"Calvert County",America/New_York,410,NA,US,38.68,-76.53,9970 +20733,STANDARD,0,Churchton,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.81,-76.53,2670 +20735,STANDARD,0,Clinton,,,MD,"Prince George's County",America/New_York,"301,240",NA,US,38.76,-76.89,35880 +20736,STANDARD,0,Owings,,,MD,"Calvert County",America/New_York,410,NA,US,38.69,-76.62,9010 +20737,STANDARD,0,Riverdale,"Riverdale Park, Riverdale Pk",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.96,-76.92,23070 +20738,"PO BOX",0,Riverdale,,,MD,"Prince George's County",America/New_York,240,NA,US,38.96,-76.92,294 +20740,STANDARD,0,"College Park","Berwyn Heights, Berwyn Hts","Berwyn, North College Park",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.99,-76.93,19140 +20741,"PO BOX",0,"College Park",,,MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.93,284 +20742,UNIQUE,0,"College Park",,"University Of Maryland",MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.95,165 +20743,STANDARD,0,"Capitol Heights","Capitol Hgts, Fairmount Heights, Fairmount Hgt, Seat Pleasant",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.87,-76.9,34350 +20744,STANDARD,0,"Fort Washington","Ft Washington",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.73,-77,49460 +20745,STANDARD,0,"Oxon Hill","Forest Heights, Forest Hts","National Harbor",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.8,-76.99,27280 +20746,STANDARD,0,Suitland,"Camp Springs, Hillcrest Hgts, Hillcrest Hts, Morningside","Marlow Heights, Silver Hill",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.83,-76.92,25320 +20747,STANDARD,0,"District Heights","District Hts, Forestville",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.85,-76.88,34280 +20748,STANDARD,0,"Temple Hills","Camp Springs, Hillcrest Heights, Hillcrest Hts, Marlow Heights, Marlow Hgts",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.81,-76.93,33470 +20749,"PO BOX",0,"Fort Washington","Ft Washington",,MD,"Prince George's County",America/New_York,240,NA,US,38.73,-77,530 +20750,"PO BOX",0,"Oxon Hill",,,MD,"Prince George's County",America/New_York,240,NA,US,38.8,-76.99,466 +20751,STANDARD,0,Deale,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.79,-76.54,2170 +20752,"PO BOX",0,Suitland,,,MD,"Prince George's County",America/New_York,240,NA,US,38.83,-76.92,336 +20753,"PO BOX",0,"District Heights","District Hts",Forestville,MD,"Prince George's County",America/New_York,240,NA,US,38.85,-76.88,597 +20754,STANDARD,0,Dunkirk,,,MD,"Calvert County",America/New_York,,NA,US,38.72,-76.66,6880 +20755,STANDARD,0,"Fort George G Meade","Fort Meade","Fort George Meade, Ft George G Meade, Ft Meade",MD,"Anne Arundel County",America/New_York,410,NA,US,39.11,-76.75,8560 +20757,"PO BOX",0,"Temple Hills",,,MD,"Prince George's County",America/New_York,240,NA,US,38.8,-76.94,630 +20758,STANDARD,0,Friendship,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.73,-76.59,740 +20759,STANDARD,0,Fulton,,,MD,"Howard County",America/New_York,410,NA,US,39.15,-76.92,6520 +20762,STANDARD,0,"Andrews Air Force Base","Andrews AFB, Jb Andrews",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.8,-76.87,2870 +20763,STANDARD,0,Savage,,,MD,"Howard County",America/New_York,"410,443",NA,US,39.13,-76.81,2620 +20764,STANDARD,0,"Shady Side",,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.83,-76.52,3920 +20765,"PO BOX",0,Galesville,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.84,-76.54,553 +20768,"PO BOX",0,Greenbelt,,,MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.88,413 +20769,STANDARD,0,"Glenn Dale",,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.98,-76.8,6840 +20770,STANDARD,0,Greenbelt,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.99,-76.88,23990 +20771,UNIQUE,0,Greenbelt,,"Goddard Flight Center",MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.88,0 +20772,STANDARD,0,"Upper Marlboro","Uppr Marlboro",Marlboro,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.81,-76.75,45210 +20773,"PO BOX",0,"Upper Marlboro","Uppr Marlboro",,MD,"Prince George's County",America/New_York,240,NA,US,38.81,-76.75,613 +20774,STANDARD,0,"Upper Marlboro","Glenarden, Kettering, Largo, Springdale, Uppr Marlboro, Upr Marlboro",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.87,-76.77,47420 +20775,"PO BOX",0,"Upper Marlboro","Uppr Marlboro",Kettering,MD,"Prince George's County",America/New_York,240,NA,US,38.81,-76.75,184 +20776,STANDARD,0,Harwood,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.86,-76.6,3150 +20777,STANDARD,0,Highland,,,MD,"Howard County",America/New_York,240,NA,US,39.17,-76.95,3530 +20778,STANDARD,0,"West River",,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,38.82,-76.55,1720 +20779,STANDARD,0,"Tracys Landing","Tracys Lndg",Fairhaven,MD,"Anne Arundel County",America/New_York,410,NA,US,38.76,-76.58,1290 +20781,STANDARD,0,Hyattsville,,"Avondale, Cheverly, Edmonston, Rogers Heights, Tuxedo",MD,"Prince George's County",America/New_York,"240,301",NA,US,38.95,-76.95,12750 +20782,STANDARD,0,Hyattsville,"Chillum, University Pa, University Park, W Hyattsville, West Hyattsville","Avondale, Green Meadow, Lewisdale, Prince Georges Metro Ctr",MD,"Prince George's County",America/New_York,"240,301",NA,US,38.97,-76.97,29580 +20783,STANDARD,0,Hyattsville,Adelphi,"Langley Park",MD,"Prince George's County",America/New_York,301,NA,US,39,-76.97,43220 +20784,STANDARD,0,Hyattsville,"Cheverly, Landover Hills, Landover Hls, New Carrolltn, New Carrollton",Lanham,MD,"Prince George's County",America/New_York,301,NA,US,38.95,-76.89,32040 +20785,STANDARD,0,Hyattsville,"Cheverly, Landover, N Englewood, North Englewood","Ardmore, Palmer Park",MD,"Prince George's County",America/New_York,"240,301",NA,US,38.92,-76.88,37140 +20787,"PO BOX",0,Hyattsville,"Langley Park",,MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.95,535 +20788,"PO BOX",0,Hyattsville,"W Hyattsville","Prince George Plaza",MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.95,51 +20790,UNIQUE,0,"Capitol Heights","Capitol Hgts","Southern Maryland Facility",MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,0 +20791,"PO BOX",0,"Capitol Heights","Capitol Hgts",,MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,600 +20792,"PO BOX",0,"Upper Marlboro","Largo, Uppr Marlboro",,MD,"Prince George's County",America/New_York,240,NA,US,38.82,-76.75,441 +20794,STANDARD,0,Jessup,,,MD,"Howard County",America/New_York,"410,443",NA,US,39.14,-76.77,10650 +20797,UNIQUE,0,"Southern Md Facility","Sthrn Md Fac","Southern Md Brm",MD,"Prince George's County",America/New_York,240,NA,US,39.03,-76.9,0 +20799,UNIQUE,0,"Capitol Heights","Capitol Hgts","Washington Ndc",MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,0 +20810,UNIQUE,0,Bethesda,,Geico,MD,"Montgomery County",America/New_York,240,NA,US,38.97,-77.1,0 +20811,UNIQUE,0,Bethesda,,Geico,MD,"Montgomery County",America/New_York,240,NA,US,38.97,-77.1,0 +20812,STANDARD,0,"Glen Echo",,,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.97,-77.14,320 +20813,"PO BOX",0,Bethesda,,,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,52 +20814,STANDARD,0,Bethesda,,,MD,"Montgomery County",America/New_York,"301,240",NA,US,39,-77.1,27480 +20815,STANDARD,0,"Chevy Chase","Bethesda, Chevy Chase Village, Chevy Chs Vlg, Martins Add, Martins Additions, N Chevy Chase, North Chevy Chase",Somerset,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.98,-77.08,27270 +20816,STANDARD,0,Bethesda,,,MD,"Montgomery County",America/New_York,"301,240",NA,US,38.96,-77.12,15550 +20817,STANDARD,0,Bethesda,Westlake,,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.98,-77.12,35050 +20818,STANDARD,0,"Cabin John",,,MD,"Montgomery County",America/New_York,"301,240",NA,US,38.97,-77.16,1740 +20824,"PO BOX",0,Bethesda,,,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,315 +20825,"PO BOX",0,"Chevy Chase",Bethesda,,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.08,50 +20827,"PO BOX",0,Bethesda,"W Bethesda, Westlake",,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,229 +20830,"PO BOX",0,Olney,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.08,360 +20832,STANDARD,0,Olney,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.08,25270 +20833,STANDARD,0,Brookeville,,"Sunshine, Unity",MD,"Montgomery County",America/New_York,,NA,US,39.17,-77.05,7880 +20837,STANDARD,0,Poolesville,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.14,-77.41,6540 +20838,STANDARD,0,Barnesville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.22,-77.39,280 +20839,STANDARD,0,Beallsville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.19,-77.43,230 +20841,STANDARD,0,Boyds,,,MD,"Montgomery County",America/New_York,240,NA,US,39.18,-77.31,9210 +20842,STANDARD,0,Dickerson,,Comus,MD,"Montgomery County",America/New_York,,NA,US,39.22,-77.42,1750 +20847,"PO BOX",0,Rockville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,92 +20848,"PO BOX",0,Rockville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,308 +20849,"PO BOX",0,Rockville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,476 +20850,STANDARD,0,Rockville,Potomac,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.08,-77.15,45080 +20851,STANDARD,0,Rockville,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.08,-77.12,13590 +20852,STANDARD,0,Rockville,"N Bethesda, North Bethesda","No Bethesda",MD,"Montgomery County",America/New_York,"240,301",NA,US,39.05,-77.12,40220 +20853,STANDARD,0,Rockville,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.1,-77.09,30570 +20854,STANDARD,0,Potomac,Rockville,,MD,"Montgomery County",America/New_York,301,NA,US,39.02,-77.19,48600 +20855,STANDARD,0,Derwood,Rockville,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.13,-77.13,15850 +20857,UNIQUE,0,Rockville,,Hhs,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,0 +20859,"PO BOX",0,Potomac,Rockville,,MD,"Montgomery County",America/New_York,240,NA,US,39.02,-77.19,255 +20860,STANDARD,0,"Sandy Spring",,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.14,-77.02,1930 +20861,STANDARD,0,Ashton,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.15,-76.98,2760 +20862,STANDARD,0,Brinklow,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.18,-77.01,410 +20866,STANDARD,0,Burtonsville,,,MD,"Montgomery County",America/New_York,301,NA,US,39.11,-76.93,14820 +20868,STANDARD,0,Spencerville,,,MD,"Montgomery County",America/New_York,301,NA,US,39.12,-76.96,740 +20871,STANDARD,0,Clarksburg,Hyattstown,,MD,"Montgomery County",America/New_York,"301,240",NA,US,39.23,-77.27,27070 +20872,STANDARD,0,Damascus,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.29,-77.22,12990 +20874,STANDARD,0,Germantown,Darnestown,,MD,"Montgomery County",America/New_York,240,NA,US,39.17,-77.26,58580 +20875,"PO BOX",0,Germantown,,,MD,"Montgomery County",America/New_York,240,NA,US,39.17,-77.26,628 +20876,STANDARD,0,Germantown,,,MD,"Montgomery County",America/New_York,240,NA,US,39.21,-77.24,24860 +20877,STANDARD,0,Gaithersburg,"Montgomery Village, Montgomry Vlg",,MD,"Montgomery County",America/New_York,"301,240",NA,US,39.14,-77.21,35970 +20878,STANDARD,0,Gaithersburg,"Darnestown, N Potomac, No Potomac, North Potomac",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.12,-77.25,63350 +20879,STANDARD,0,Gaithersburg,"Montgomery Village, Montgomry Vlg",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.17,-77.18,25290 +20880,"PO BOX",0,"Washington Grove","Washingtn Grv",,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.17,740 +20882,STANDARD,0,Gaithersburg,"Brookeville, Laytonsville",,MD,"Montgomery County",America/New_York,240,NA,US,39.24,-77.15,13810 +20883,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.17,-77.19,161 +20884,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.21,366 +20885,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.21,344 +20886,STANDARD,0,"Montgomery Village","Gaithersburg, Montgomry Vlg",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.19,-77.21,33500 +20889,UNIQUE,0,Bethesda,,"National Naval Medical Ctr, Walter Reed Natl Mil Med Ctr",MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,273 +20891,"PO BOX",0,Kensington,,,MD,"Montgomery County",America/New_York,240,NA,US,39.02,-77.07,119 +20892,UNIQUE,0,Bethesda,,"National Institute Of Health",MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,0 +20894,UNIQUE,0,Bethesda,,"National Library Of Medicine",MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,0 +20895,STANDARD,0,Kensington,,"North Bethesda",MD,"Montgomery County",America/New_York,"301,240",NA,US,39.02,-77.07,19180 +20896,"PO BOX",0,"Garrett Park",,,MD,"Montgomery County",America/New_York,240,NA,US,39.04,-77.09,1020 +20897,UNIQUE,0,"Suburb Maryland Fac","Subn Md Fac","Suburban Md Brm",MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.05,0 +20898,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.21,347 +20899,UNIQUE,0,Gaithersburg,,"Natl Inst Stds & Tech Md",MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.22,0 +20901,STANDARD,0,"Silver Spring","Takoma Park",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.01,-77.02,35940 +20902,STANDARD,0,"Silver Spring",Wheaton,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.05,-77.04,50390 +20903,STANDARD,0,"Silver Spring",,Hillandale,MD,"Montgomery County",America/New_York,301,NA,US,39.02,-76.98,23620 +20904,STANDARD,0,"Silver Spring",Colesville,Cloverly,MD,"Montgomery County",America/New_York,301,NA,US,39.07,-76.98,54640 +20905,STANDARD,0,"Silver Spring","Colesville, Sandy Spring",Cloverly,MD,"Montgomery County",America/New_York,301,NA,US,39.11,-76.99,17610 +20906,STANDARD,0,"Silver Spring","Aspen Hill","Glenmont, Leisure World, Norbeck, Wheaton",MD,"Montgomery County",America/New_York,"301,240",NA,US,39.09,-77.06,67910 +20907,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,323 +20908,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,38 +20910,STANDARD,0,"Silver Spring",,"Takoma Pk",MD,"Montgomery County",America/New_York,"240,301",NA,US,39,-77.04,38620 +20911,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,115 +20912,STANDARD,0,"Takoma Park","Silver Spring",,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.98,-77,23430 +20913,"PO BOX",0,"Takoma Park","Silver Spring",,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77,225 +20914,"PO BOX",0,"Silver Spring",Colesville,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,526 +20915,"PO BOX",0,"Silver Spring",Wheaton,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,270 +20916,"PO BOX",0,"Silver Spring","Aspen Hill",,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,425 +20918,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,236 +20993,UNIQUE,0,"Silver Spring",,"Us Food And Drug Admin",MD,"Montgomery County",America/New_York,240,NA,US,39.03,-76.98,0 +20997,UNIQUE,0,"Silver Spring",,"Suburban Md Brm",MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,0 +21001,STANDARD,0,Aberdeen,,,MD,"Harford County",America/New_York,"410,443,667",NA,US,39.51,-76.17,22570 +21005,STANDARD,0,"Aberdeen Proving Ground","Aber Prov Grd",Apg,MD,"Harford County",America/New_York,"443,667",NA,US,39.49,-76.14,2130 +21009,STANDARD,0,Abingdon,,,MD,"Harford County",America/New_York,410,NA,US,39.46,-76.27,29380 +21010,STANDARD,0,Gunpowder,"Aber Prov Grd, Aberdeen Proving Ground","Edgewood Arsenal",MD,"Harford County",America/New_York,410,NA,US,39.39,-76.29,580 +21012,STANDARD,0,Arnold,,,MD,"Anne Arundel County",America/New_York,410,NA,US,39.04,-76.49,21430 +21013,STANDARD,0,Baldwin,,,MD,"Baltimore County",America/New_York,,NA,US,39.51,-76.49,4820 +21014,STANDARD,0,"Bel Air",,,MD,"Harford County",America/New_York,"410,443",NA,US,39.53,-76.34,36010 +21015,STANDARD,0,"Bel Air",,,MD,"Harford County",America/New_York,"410,443",NA,US,39.54,-76.29,29180 +21017,STANDARD,0,Belcamp,,Riverside,MD,"Harford County",America/New_York,410,NA,US,39.47,-76.23,5710 +21018,"PO BOX",0,Benson,,,MD,"Harford County",America/New_York,410,NA,US,39.51,-76.18,51 +21020,"PO BOX",0,Boring,,,MD,"Baltimore County",America/New_York,410,NA,US,39.57,-76.8,111 +21022,"PO BOX",0,Brooklandville,Brooklandvl,,MD,"Baltimore County",America/New_York,410,NA,US,39.42,-76.67,326 +21023,"PO BOX",0,Butler,,,MD,"Baltimore County",America/New_York,410,NA,US,39.55,-76.68,247 +21027,"PO BOX",0,Chase,,,MD,"Baltimore County",America/New_York,410,NA,US,39.36,-76.37,185 +21028,STANDARD,0,Churchville,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.56,-76.24,3160 +21029,STANDARD,0,Clarksville,,,MD,"Howard County",America/New_York,240,NA,US,39.2,-76.94,13020 +21030,STANDARD,0,Cockeysville,"Cockysvil, Hunt Valley",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.47,-76.63,24100 +21031,STANDARD,0,"Hunt Valley",,,MD,"Baltimore County",America/New_York,"443,410",NA,US,39.49,-76.65,23 +21032,STANDARD,0,Crownsville,,,MD,"Anne Arundel County",America/New_York,410,NA,US,39.01,-76.59,8610 +21034,STANDARD,0,Darlington,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.63,-76.2,3040 +21035,STANDARD,0,Davidsonville,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.93,-76.63,8060 +21036,STANDARD,0,Dayton,,,MD,"Howard County",America/New_York,240,NA,US,39.23,-77,2190 +21037,STANDARD,0,Edgewater,,,MD,"Anne Arundel County",America/New_York,"301,410",NA,US,38.9,-76.54,20170 +21040,STANDARD,0,Edgewood,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.42,-76.29,22210 +21041,"PO BOX",0,"Ellicott City",,Ellicott,MD,"Howard County",America/New_York,410,NA,US,39.27,-76.83,398 +21042,STANDARD,0,"Ellicott City",,Ellicott,MD,"Howard County",America/New_York,"410,443",NA,US,39.27,-76.83,42660 +21043,STANDARD,0,"Ellicott City","Daniels, Ilchester, Oella",Ellicott,MD,"Howard County",America/New_York,"410,443",NA,US,39.26,-76.8,46000 +21044,STANDARD,0,Columbia,,,MD,"Howard County",America/New_York,"240,301,410,443",NA,US,39.21,-76.88,40280 +21045,STANDARD,0,Columbia,,,MD,"Howard County",America/New_York,"240,301,410,443",NA,US,39.2,-76.85,36910 +21046,STANDARD,0,Columbia,,,MD,"Howard County",America/New_York,"301,410,443,240",NA,US,39.17,-76.84,15140 +21047,STANDARD,0,Fallston,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.52,-76.42,12890 +21048,STANDARD,0,Finksburg,Patapsco,,MD,"Carroll County",America/New_York,443,NA,US,39.49,-76.88,10130 +21050,STANDARD,0,"Forest Hill",,,MD,"Harford County",America/New_York,410,NA,US,39.58,-76.39,18220 +21051,STANDARD,0,Fork,,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.47,-76.45,340 +21052,"PO BOX",0,"Fort Howard",,,MD,"Baltimore County",America/New_York,410,NA,US,39.21,-76.45,417 +21053,STANDARD,0,Freeland,,,MD,"Baltimore County",America/New_York,410,NA,US,39.69,-76.72,3160 +21054,STANDARD,0,Gambrills,,,MD,"Anne Arundel County",America/New_York,240,NA,US,39.04,-76.69,12950 +21056,"PO BOX",0,"Gibson Island",,,MD,"Anne Arundel County",America/New_York,410,NA,US,39.07,-76.42,256 +21057,STANDARD,0,"Glen Arm",,,MD,"Baltimore County",America/New_York,410,NA,US,39.44,-76.5,3950 +21060,STANDARD,0,"Glen Burnie",,,MD,"Anne Arundel County",America/New_York,"443,410",NA,US,39.16,-76.6,34330 +21061,STANDARD,0,"Glen Burnie",,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.16,-76.63,49780 +21062,UNIQUE,0,"Glen Burnie",,"Md Motor Vehicle Admin",MD,"Anne Arundel County",America/New_York,410,NA,US,39.16,-76.6,0 +21065,UNIQUE,0,"Hunt Valley","Cockys Ht Vly","Huntvalley, Pdp Group Inc",MD,"Baltimore County",America/New_York,410,NA,US,39.49,-76.65,0 +21071,"PO BOX",0,Glyndon,,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.47,-76.81,632 +21074,STANDARD,0,Hampstead,Greenmount,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.61,-76.85,14740 +21075,STANDARD,0,Elkridge,,,MD,"Howard County",America/New_York,"240,443,410",NA,US,39.2,-76.75,32860 +21076,STANDARD,0,Hanover,,Harmans,MD,"Anne Arundel County",America/New_York,443,NA,US,39.16,-76.72,19650 +21077,STANDARD,0,Harmans,,,MD,"Anne Arundel County",America/New_York,443,NA,US,39.16,-76.7,320 +21078,STANDARD,0,"Havre De Grace","Hvre De Grace",,MD,"Harford County",America/New_York,"667,410,443",NA,US,39.54,-76.09,17910 +21082,STANDARD,0,Hydes,,,MD,"Baltimore County",America/New_York,410,NA,US,39.48,-76.47,830 +21084,STANDARD,0,Jarrettsville,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.6,-76.47,7370 +21085,STANDARD,0,Joppa,,"Joppatown, Joppatowne",MD,"Harford County",America/New_York,443,NA,US,39.43,-76.35,15870 +21087,STANDARD,0,Kingsville,Bradshaw,,MD,"Baltimore County",America/New_York,,NA,US,39.44,-76.41,5400 +21088,"PO BOX",0,Lineboro,Manchester,,MD,"Carroll County",America/New_York,410,NA,US,39.71,-76.84,35 +21090,STANDARD,0,"Linthicum Heights","Linthicum, Linthicum Hts",,MD,"Anne Arundel County",America/New_York,"443,410",NA,US,39.2,-76.66,9820 +21092,"PO BOX",0,"Long Green",,,MD,"Baltimore County",America/New_York,410,NA,US,39.47,-76.52,156 +21093,STANDARD,0,"Lutherville Timonium","Lutherville, Luthvle Timon, Timonium",,MD,"Baltimore County",America/New_York,410,NA,US,39.43,-76.64,36960 +21094,"PO BOX",0,"Lutherville Timonium","Lutherville, Luthvle Timon, Timonium",,MD,"Baltimore County",America/New_York,410,NA,US,39.43,-76.64,247 +21098,UNIQUE,1,Hanover,"Household Bank",,MD,"Anne Arundel County",America/New_York,410,NA,US,39.19,-76.72,0 +21102,STANDARD,0,Manchester,"Lineboro, Millers",,MD,"Carroll County",America/New_York,"410,443",NA,US,39.65,-76.89,11610 +21104,STANDARD,0,Marriottsville,"Henryton, Marriottsvl, Woodstock",,MD,"Carroll County",America/New_York,,NA,US,39.35,-76.89,5720 +21105,"PO BOX",0,"Maryland Line",,,MD,"Baltimore County",America/New_York,410,NA,US,39.71,-76.65,132 +21106,"PO BOX",0,Mayo,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.89,-76.5,259 +21108,STANDARD,0,Millersville,,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.05,-76.64,17780 +21111,STANDARD,0,Monkton,Hereford,,MD,"Baltimore County",America/New_York,,NA,US,39.57,-76.58,4920 +21113,STANDARD,0,Odenton,,,MD,"Anne Arundel County",America/New_York,"240,301,410,443",NA,US,39.05,-76.72,32590 +21114,STANDARD,0,Crofton,,,MD,"Anne Arundel County",America/New_York,"240,410,443,667",NA,US,39.01,-76.68,25240 +21117,STANDARD,0,"Owings Mills",Garrison,,MD,"Baltimore County",America/New_York,410,NA,US,39.41,-76.79,51850 +21120,STANDARD,0,Parkton,"Bentley Spgs, Bentley Springs",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.65,-76.67,7150 +21122,STANDARD,0,Pasadena,"Lake Shore, Riviera Beach",,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.11,-76.55,58170 +21123,"PO BOX",0,Pasadena,"Lake Shore, Riviera Beach",,MD,"Anne Arundel County",America/New_York,410,NA,US,39.11,-76.55,635 +21128,STANDARD,0,"Perry Hall",,Perryhall,MD,"Baltimore County",America/New_York,410,NA,US,39.41,-76.45,14180 +21130,"PO BOX",0,Perryman,,,MD,"Harford County",America/New_York,410,NA,US,39.48,-76.19,237 +21131,STANDARD,0,Phoenix,Jacksonville,,MD,"Baltimore County",America/New_York,410,NA,US,39.5,-76.56,7740 +21132,STANDARD,0,Pylesville,,,MD,"Harford County",America/New_York,410,NA,US,39.68,-76.37,2610 +21133,STANDARD,0,Randallstown,"Mcdonogh Run",Foxridge,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.37,-76.8,27130 +21136,STANDARD,0,Reisterstown,Glyndon,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.45,-76.81,32830 +21139,"PO BOX",0,Riderwood,,,MD,"Baltimore County",America/New_York,410,NA,US,39.4,-76.6,157 +21140,STANDARD,0,Riva,,,MD,"Anne Arundel County",America/New_York,"301,410",NA,US,38.94,-76.58,3500 +21144,STANDARD,0,Severn,,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.13,-76.69,34850 +21146,STANDARD,0,"Severna Park",,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.08,-76.57,28240 +21150,"PO BOX",0,Simpsonville,,,MD,"Howard County",America/New_York,410,NA,US,39.18,-76.88,90 +21152,STANDARD,0,"Sparks Glencoe","Glencoe, Sparks, Sparks Glenco",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.54,-76.68,5610 +21153,"PO BOX",0,Stevenson,,,MD,"Baltimore County",America/New_York,410,NA,US,39.42,-76.7,925 +21154,STANDARD,0,Street,,,MD,"Harford County",America/New_York,410,NA,US,39.65,-76.34,6070 +21155,STANDARD,0,Upperco,Fowbelsburg,,MD,"Baltimore County",America/New_York,,NA,US,39.57,-76.8,2250 +21156,STANDARD,0,"Upper Falls",,,MD,"Baltimore County",America/New_York,410,NA,US,39.43,-76.4,350 +21157,STANDARD,0,Westminster,,Carrollton,MD,"Carroll County",America/New_York,"410,443",NA,US,39.57,-77,33560 +21158,STANDARD,0,Westminster,,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.65,-77.04,20190 +21160,STANDARD,0,Whiteford,Cardiff,,MD,"Harford County",America/New_York,"410,443",NA,US,39.7,-76.34,2230 +21161,STANDARD,0,"White Hall",,Norrisville,MD,"Harford County",America/New_York,,NA,US,39.65,-76.56,5140 +21162,STANDARD,0,"White Marsh",,,MD,"Baltimore County",America/New_York,"443,410",NA,US,39.39,-76.41,4760 +21163,STANDARD,0,Woodstock,Granite,,MD,"Howard County",America/New_York,,NA,US,39.32,-76.87,7250 +21201,STANDARD,0,Baltimore,,,MD,"Baltimore city",America/New_York,"410,443,667,301",NA,US,39.29,-76.62,10800 +21202,STANDARD,0,Baltimore,"East Case",,MD,"Baltimore city",America/New_York,"301,443,410,667",NA,US,39.3,-76.61,12240 +21203,"PO BOX",0,Baltimore,,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,1290 +21204,STANDARD,0,Towson,"Baltimore, Eudowood, Loch Raven, Ruxton",,MD,"Baltimore County",America/New_York,"410,443,667",NA,US,39.39,-76.62,15160 +21205,STANDARD,0,Baltimore,,"Clifton East End, East End",MD,"Baltimore city",America/New_York,"410,443",NA,US,39.3,-76.56,11050 +21206,STANDARD,0,Baltimore,Raspeburg,,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.34,-76.54,41800 +21207,STANDARD,0,"Gwynn Oak","Baltimore, Pikesville, Woodlawn",,MD,"Baltimore County",America/New_York,"667,410,443",NA,US,39.32,-76.72,40230 +21208,STANDARD,0,Pikesville,Baltimore,,MD,"Baltimore County",America/New_York,"410,443,667",NA,US,39.39,-76.7,31150 +21209,STANDARD,0,Baltimore,"Mount Washington, Mt Washington",,MD,"Baltimore County",America/New_York,410,NA,US,39.37,-76.67,25470 +21210,STANDARD,0,Baltimore,"Roland Park",,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.36,-76.63,9260 +21211,STANDARD,0,Baltimore,,Hampden,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.33,-76.64,13310 +21212,STANDARD,0,Baltimore,Govans,,MD,"Baltimore city",America/New_York,"410,443,667",NA,US,39.37,-76.61,27190 +21213,STANDARD,0,Baltimore,Clifton,"Clifton East End",MD,"Baltimore city",America/New_York,"410,443",NA,US,39.31,-76.58,22200 +21214,STANDARD,0,Baltimore,,Hamilton,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.35,-76.56,16210 +21215,STANDARD,0,Baltimore,Arlington,,MD,"Baltimore city",America/New_York,410,NA,US,39.35,-76.68,41820 +21216,STANDARD,0,Baltimore,,Walbrook,MD,"Baltimore city",America/New_York,410,NA,US,39.31,-76.67,20150 +21217,STANDARD,0,Baltimore,Druid,,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.31,-76.64,20120 +21218,STANDARD,0,Baltimore,,Waverly,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.33,-76.6,29710 +21219,STANDARD,0,"Sparrows Point","Baltimore, Edgemere, Sparrows Pt",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.22,-76.43,8730 +21220,STANDARD,0,"Middle River",Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.33,-76.43,38490 +21221,STANDARD,0,Essex,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.3,-76.44,37450 +21222,STANDARD,0,Dundalk,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.26,-76.49,49680 +21223,STANDARD,0,Baltimore,Franklin,,MD,"Baltimore city",America/New_York,"667,410",NA,US,39.28,-76.65,14510 +21224,STANDARD,0,Baltimore,Highlandtown,,MD,"Baltimore city",America/New_York,410,NA,US,39.27,-76.54,42600 +21225,STANDARD,0,Brooklyn,"Baltimore, Brooklyn Park",,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.22,-76.61,26880 +21226,STANDARD,0,"Curtis Bay","Baltimore, Carvel Beach, Chestnut Hill Cove, Chstnt Hl Cv, Clearwater Beach, Clearwatr Bch, Greenland Bch, Greenland Beach, Orchard Beach, Stoney Beach",Brooklyn,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.21,-76.55,5760 +21227,STANDARD,0,Halethorpe,"Arbutus, Baltimore, Lansdowne",,MD,"Baltimore County",America/New_York,"240,443,410",NA,US,39.24,-76.68,30210 +21228,STANDARD,0,Catonsville,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.26,-76.74,45290 +21229,STANDARD,0,Baltimore,Carroll,,MD,"Baltimore city",America/New_York,410,NA,US,39.28,-76.69,35840 +21230,STANDARD,0,Baltimore,,,MD,"Baltimore city",America/New_York,"410,667",NA,US,39.27,-76.62,27750 +21231,STANDARD,0,Baltimore,,Patterson,MD,"Baltimore city",America/New_York,"410,443,667",NA,US,39.29,-76.59,12010 +21233,STANDARD,0,Baltimore,,,MD,"Baltimore City",America/New_York,"410,667,301,443",NA,US,39.3,-76.61,35 +21234,STANDARD,0,Parkville,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.38,-76.55,59610 +21235,UNIQUE,0,Baltimore,,"Social Security Administrat",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,20 +21236,STANDARD,0,Nottingham,Baltimore,,MD,"Baltimore County",America/New_York,410,NA,US,39.39,-76.48,37310 +21237,STANDARD,0,Rosedale,Baltimore,,MD,"Baltimore County",America/New_York,410,NA,US,39.32,-76.5,28180 +21239,STANDARD,0,Baltimore,"Idlewylde, Loch Hill, Northwood",,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.37,-76.59,22730 +21240,STANDARD,0,Baltimore,Millersville,,MD,"Anne Arundel County",America/New_York,"240,410,443",NA,US,39.17,-76.67,117 +21241,UNIQUE,0,Baltimore,,"Social Security Admin",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21244,STANDARD,0,"Windsor Mill",Baltimore,,MD,"Baltimore County",America/New_York,410,NA,US,39.33,-76.78,33130 +21250,UNIQUE,0,Baltimore,,"Univ Of Md Baltimore County",MD,"Baltimore County",America/New_York,410,NA,US,39.26,-76.71,46 +21251,UNIQUE,0,Baltimore,,"Morgan State University",MD,"Baltimore city",America/New_York,410,NA,US,39.34,-76.58,35 +21252,UNIQUE,0,Towson,Baltimore,"Towson State University",MD,"Baltimore County",America/New_York,410,NA,US,39.39,-76.61,59 +21260,STANDARD,1,Baltimore,,"Census Bureau",MD,"Baltimore City",America/New_York,410,NA,US,39.35,-76.7,0 +21261,STANDARD,1,Baltimore,Essex,"Census Bureau",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.45,0 +21263,UNIQUE,0,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21264,UNIQUE,0,Baltimore,,"M T Bank",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21265,UNIQUE,1,Baltimore,,"Verizon Telephone",MD,"Baltimore City",America/New_York,410,NA,US,39.29,-76.6,0 +21268,UNIQUE,1,Baltimore,,"Harte Hanks Direct Marketing",MD,"Baltimore City",America/New_York,410,NA,US,39.21,-76.72,0 +21270,"PO BOX",0,Baltimore,,"Reisterstown Rd Plaza",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,35 +21273,UNIQUE,0,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21274,UNIQUE,1,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.29,-76.6,0 +21275,UNIQUE,0,Baltimore,,"Wells Fargo",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21278,UNIQUE,0,Baltimore,,"Baltimore Sunpapers",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21279,UNIQUE,0,Baltimore,,"Sun Trust Bank",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21280,UNIQUE,1,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21281,"PO BOX",0,Baltimore,,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,73 +21282,"PO BOX",0,Pikesville,Baltimore,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,387 +21283,UNIQUE,1,Baltimore,"Shared Firm Zip Code",,MD,"Baltimore City",America/New_York,410,NA,US,39.29,-76.61,0 +21284,"PO BOX",0,Towson,"Baltimore, Loch Raven",,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,202 +21285,"PO BOX",0,Towson,Baltimore,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,100 +21286,STANDARD,0,Towson,"Baltimore, Loch Raven",,MD,"Baltimore County",America/New_York,"667,410,443",NA,US,39.41,-76.57,18250 +21287,STANDARD,0,Baltimore,,"Johns Hopkins, Johns Hopkins Hospital",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,34 +21288,UNIQUE,1,Baltimore,,"Household Bank",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21289,UNIQUE,0,Baltimore,,"T Rowe Price Associates Inc",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21290,UNIQUE,0,Baltimore,,"Social Security Admin",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21297,"PO BOX",0,Baltimore,,"Firms-Courtesy Reply",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,80 +21298,UNIQUE,0,Baltimore,,"Baltimore Brm",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21401,STANDARD,0,Annapolis,"Cape Saint Claire, Cpe St Claire",,MD,"Anne Arundel County",America/New_York,"410,443,301",NA,US,38.99,-76.55,35920 +21402,STANDARD,0,Annapolis,"N Severn Vlg, Naval Academy, North Severn Village",,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,38.99,-76.47,1030 +21403,STANDARD,0,Annapolis,"Highland Bch",,MD,"Anne Arundel County",America/New_York,"301,410,443",NA,US,38.97,-76.5,29020 +21404,"PO BOX",0,Annapolis,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.97,-76.5,266 +21405,STANDARD,0,Annapolis,"Sherwood Forest, Sherwood Frst",,MD,"Anne Arundel County",America/New_York,"301,410,443",NA,US,39.03,-76.56,613 +21409,STANDARD,0,Annapolis,,,MD,"Anne Arundel County",America/New_York,443,NA,US,39.02,-76.45,19780 +21411,UNIQUE,0,Annapolis,,"Comptroller Of The Treasury",MD,"Anne Arundel County",America/New_York,410,NA,US,38.97,-76.5,0 +21412,STANDARD,0,Annapolis,,"Bancroft Hall",MD,"Anne Arundel County",America/New_York,410,NA,US,38.97,-76.5,1107 +21501,"PO BOX",0,Cumberland,,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,520 +21502,STANDARD,0,Cumberland,"Cresaptown, Lavale",,MD,"Allegany County",America/New_York,"240,301",NA,US,39.65,-78.76,29730 +21503,"PO BOX",0,Cumberland,,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,56 +21504,"PO BOX",0,Cumberland,Lavale,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,93 +21505,"PO BOX",0,Cumberland,Cresaptown,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,223 +21520,STANDARD,0,Accident,,,MD,"Garrett County",America/New_York,301,NA,US,39.62,-79.32,1880 +21521,STANDARD,0,Barton,,,MD,"Allegany County",America/New_York,,NA,US,39.53,-79.01,990 +21522,STANDARD,0,Bittinger,,,MD,"Garrett County",America/New_York,301,NA,US,39.61,-79.23,154 +21523,STANDARD,0,Bloomington,,,MD,"Garrett County",America/New_York,240,NA,US,39.48,-79.08,250 +21524,"PO BOX",0,Corriganville,,,MD,"Allegany County",America/New_York,240,NA,US,39.71,-78.8,507 +21528,"PO BOX",0,"Eckhart Mines",,,MD,"Allegany County",America/New_York,240,NA,US,39.64,-78.87,59 +21529,"PO BOX",0,Ellerslie,,,MD,"Allegany County",America/New_York,240,NA,US,39.72,-78.77,680 +21530,STANDARD,0,Flintstone,,,MD,"Allegany County",America/New_York,240,NA,US,39.7,-78.56,1270 +21531,STANDARD,0,Friendsville,,,MD,"Garrett County",America/New_York,301,NA,US,39.66,-79.4,1860 +21532,STANDARD,0,Frostburg,,,MD,"Allegany County",America/New_York,"240,301",NA,US,39.66,-78.92,10160 +21536,STANDARD,0,Grantsville,Jennings,,MD,"Garrett County",America/New_York,"240,301",NA,US,39.69,-79.15,3360 +21538,STANDARD,0,Kitzmiller,Shallmar,,MD,"Garrett County",America/New_York,301,NA,US,39.41,-79.22,520 +21539,STANDARD,0,Lonaconing,,,MD,"Allegany County",America/New_York,301,NA,US,39.56,-78.97,2060 +21540,STANDARD,0,Luke,Westernport,,MD,"Allegany County",America/New_York,301,NA,US,39.48,-79.06,48 +21541,STANDARD,0,"Mc Henry","Sang Run",Mchenry,MD,"Garrett County",America/New_York,301,NA,US,39.55,-79.35,1340 +21542,"PO BOX",0,Midland,,,MD,"Allegany County",America/New_York,240,NA,US,39.6,-78.95,541 +21543,"PO BOX",0,Midlothian,,,MD,"Allegany County",America/New_York,240,NA,US,39.66,-78.96,239 +21545,STANDARD,0,"Mount Savage",,,MD,"Allegany County",America/New_York,301,NA,US,39.7,-78.85,1560 +21550,STANDARD,0,Oakland,"Crellin, Deer Park, Hutton, Loch Lyn Hght, Loch Lynn Heights, Mnt Lake Park, Mountain Lake Park, Mt Lake Park, Mtn Lk Park",,MD,"Garrett County",America/New_York,"240,301",NA,US,39.41,-79.41,11670 +21555,STANDARD,0,Oldtown,,,MD,"Allegany County",America/New_York,301,NA,US,39.54,-78.61,1380 +21556,"PO BOX",0,Pinto,,,MD,"Allegany County",America/New_York,240,NA,US,39.54,-78.89,105 +21557,STANDARD,0,Rawlings,,,MD,"Allegany County",America/New_York,240,NA,US,39.53,-78.88,1570 +21560,"PO BOX",0,"Spring Gap",,,MD,"Mineral County",America/New_York,240,NA,US,39.59,-78.69,78 +21561,STANDARD,0,Swanton,,,MD,"Garrett County",America/New_York,301,NA,US,39.47,-79.21,2060 +21562,STANDARD,0,Westernport,Mccoole,,MD,"Allegany County",America/New_York,"301,240",NA,US,39.48,-79.04,2310 +21601,STANDARD,0,Easton,,,MD,"Talbot County",America/New_York,"410,443",NA,US,38.77,-76.06,21810 +21606,UNIQUE,1,Easton,"First Fulfillment & Mgr Co",,MD,"Talbot County",America/New_York,410,NA,US,38.77,-76.07,0 +21607,STANDARD,0,Barclay,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.14,-75.86,420 +21609,"PO BOX",0,Bethlehem,,,MD,"Caroline County",America/New_York,410,NA,US,38.74,-75.93,77 +21610,STANDARD,0,Betterton,,,MD,"Kent County",America/New_York,410,NA,US,39.36,-76.07,320 +21612,STANDARD,0,Bozman,,,MD,"Talbot County",America/New_York,410,NA,US,38.75,-76.26,390 +21613,STANDARD,0,Cambridge,,,MD,"Dorchester County",America/New_York,"410,443",NA,US,38.56,-76.07,14850 +21617,STANDARD,0,Centreville,,,MD,"Queen Anne's County",America/New_York,"410,443",NA,US,39.04,-76.06,10010 +21619,STANDARD,0,Chester,,,MD,"Queen Anne's County",America/New_York,410,NA,US,38.95,-76.28,6140 +21620,STANDARD,0,Chestertown,,,MD,"Kent County",America/New_York,"410,443",NA,US,39.21,-76.07,10000 +21622,STANDARD,0,"Church Creek",,,MD,"Dorchester County",America/New_York,410,NA,US,38.5,-76.15,400 +21623,STANDARD,0,"Church Hill",,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.14,-75.98,1940 +21624,"PO BOX",0,Claiborne,,,MD,"Talbot County",America/New_York,410,NA,US,38.84,-76.27,127 +21625,STANDARD,0,Cordova,,,MD,"Talbot County",America/New_York,410,NA,US,38.87,-75.99,2160 +21626,STANDARD,0,Crapo,,,MD,"Dorchester County",America/New_York,410,NA,US,38.32,-76.12,104 +21627,STANDARD,0,Crocheron,,,MD,"Dorchester County",America/New_York,410,NA,US,38.24,-76.05,27 +21628,"PO BOX",0,Crumpton,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.23,-75.92,474 +21629,STANDARD,0,Denton,,,MD,"Caroline County",America/New_York,"410,443",NA,US,38.88,-75.82,8640 +21631,STANDARD,0,"East New Market","E New Market",,MD,"Dorchester County",America/New_York,410,NA,US,38.59,-75.92,2410 +21632,STANDARD,0,Federalsburg,,,MD,"Caroline County",America/New_York,"410,443",NA,US,38.69,-75.77,5500 +21634,STANDARD,0,"Fishing Creek",,Hoopersville,MD,"Dorchester County",America/New_York,410,NA,US,38.32,-76.23,620 +21635,STANDARD,0,Galena,Golts,,MD,"Kent County",America/New_York,410,NA,US,39.34,-75.87,1720 +21636,STANDARD,0,Goldsboro,,,MD,"Caroline County",America/New_York,410,NA,US,39.03,-75.78,1020 +21638,STANDARD,0,Grasonville,,,MD,"Queen Anne's County",America/New_York,410,NA,US,38.95,-76.19,4790 +21639,STANDARD,0,Greensboro,,,MD,"Caroline County",America/New_York,410,NA,US,38.97,-75.8,4070 +21640,STANDARD,0,Henderson,,,MD,"Caroline County",America/New_York,410,NA,US,39.07,-75.76,1470 +21641,"PO BOX",0,Hillsboro,,,MD,"Caroline County",America/New_York,410,NA,US,38.92,-75.94,172 +21643,STANDARD,0,Hurlock,,,MD,"Dorchester County",America/New_York,410,NA,US,38.62,-75.87,5250 +21644,STANDARD,0,Ingleside,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.11,-75.87,148 +21645,STANDARD,0,Kennedyville,,,MD,"Kent County",America/New_York,410,NA,US,39.3,-75.98,800 +21647,STANDARD,0,Mcdaniel,,,MD,"Talbot County",America/New_York,410,NA,US,38.82,-76.28,320 +21648,STANDARD,0,Madison,,,MD,"Dorchester County",America/New_York,410,NA,US,38.5,-76.22,186 +21649,STANDARD,0,Marydel,,,MD,"Caroline County",America/New_York,410,NA,US,39.13,-75.77,1670 +21650,STANDARD,0,Massey,,,MD,"Kent County",America/New_York,410,NA,US,39.31,-75.81,200 +21651,STANDARD,0,Millington,,,MD,"Kent County",America/New_York,410,NA,US,39.25,-75.84,2410 +21652,"PO BOX",0,Neavitt,,,MD,"Talbot County",America/New_York,410,NA,US,38.72,-76.28,176 +21653,"PO BOX",0,Newcomb,,,MD,"Talbot County",America/New_York,410,NA,US,38.75,-76.18,121 +21654,STANDARD,0,Oxford,,,MD,"Talbot County",America/New_York,410,NA,US,38.68,-76.17,990 +21655,STANDARD,0,Preston,,,MD,"Caroline County",America/New_York,410,NA,US,38.71,-75.9,4480 +21656,"PO BOX",0,Price,"Church Hill",,MD,"Queen Anne's County",America/New_York,410,NA,US,39.14,-75.99,0 +21657,STANDARD,0,"Queen Anne",,,MD,"Queen Anne's County",America/New_York,410,NA,US,38.97,-75.99,1080 +21658,STANDARD,0,Queenstown,,,MD,"Queen Anne's County",America/New_York,"410,443",NA,US,38.98,-76.15,3570 +21659,STANDARD,0,Rhodesdale,"Brookview, Eldorado, Galestown",,MD,"Dorchester County",America/New_York,"410,443",NA,US,38.59,-75.79,820 +21660,STANDARD,0,Ridgely,,,MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,3700 +21661,STANDARD,0,"Rock Hall",,,MD,"Kent County",America/New_York,410,NA,US,39.14,-76.24,2120 +21662,STANDARD,0,"Royal Oak",,,MD,"Talbot County",America/New_York,410,NA,US,38.71,-76.21,630 +21663,STANDARD,0,"Saint Michaels","St Michaels",,MD,"Talbot County",America/New_York,410,NA,US,38.78,-76.22,2720 +21664,"PO BOX",0,Secretary,,,MD,"Dorchester County",America/New_York,410,NA,US,38.61,-75.94,637 +21665,STANDARD,0,Sherwood,,,MD,"Talbot County",America/New_York,410,NA,US,38.74,-76.32,230 +21666,STANDARD,0,Stevensville,,,MD,"Queen Anne's County",America/New_York,"410,443",NA,US,38.99,-76.3,12410 +21667,STANDARD,0,"Still Pond",,,MD,"Kent County",America/New_York,410,NA,US,39.32,-76.05,300 +21668,STANDARD,0,Sudlersville,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.18,-75.85,1590 +21669,"PO BOX",0,"Taylors Island","Taylors Is",,MD,"Dorchester County",America/New_York,410,NA,US,38.46,-76.3,211 +21670,"PO BOX",0,Templeville,,,MD,"Caroline County",America/New_York,410,NA,US,39.13,-75.76,32 +21671,STANDARD,0,Tilghman,,,MD,"Talbot County",America/New_York,410,NA,US,38.69,-76.33,720 +21672,STANDARD,0,Toddville,,,MD,"Dorchester County",America/New_York,410,NA,US,38.27,-76.05,199 +21673,STANDARD,0,Trappe,,,MD,"Talbot County",America/New_York,"410,443",NA,US,38.65,-76.05,2850 +21675,STANDARD,0,Wingate,,,MD,"Dorchester County",America/New_York,410,NA,US,38.28,-76.08,81 +21676,STANDARD,0,Wittman,,,MD,"Talbot County",America/New_York,410,NA,US,38.78,-76.3,260 +21677,STANDARD,0,Woolford,,Madison,MD,"Dorchester County",America/New_York,410,NA,US,38.5,-76.18,420 +21678,STANDARD,0,Worton,Lynch,,MD,"Kent County",America/New_York,410,NA,US,39.29,-76.11,1960 +21679,STANDARD,0,"Wye Mills",,,MD,"Talbot County",America/New_York,410,NA,US,38.91,-76.08,480 +21681,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21682,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21683,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21684,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21685,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21686,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21687,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21688,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21690,UNIQUE,0,Chestertown,,"Usa Fulfillment",MD,"Kent County",America/New_York,410,NA,US,39.21,-76.07,0 +21701,STANDARD,0,Frederick,Lewistown,"Hood College",MD,"Frederick County",America/New_York,"240,301",NA,US,39.42,-77.41,34700 +21702,STANDARD,0,Frederick,"Fort Detrick","College Estates",MD,"Frederick County",America/New_York,"240,301",NA,US,39.48,-77.46,41200 +21703,STANDARD,0,Frederick,,,MD,"Frederick County",America/New_York,"301,240",NA,US,39.37,-77.47,37740 +21704,STANDARD,0,Frederick,Urbana,,MD,"Frederick County",America/New_York,"301,240",NA,US,39.35,-77.38,17990 +21705,"PO BOX",0,Frederick,,,MD,"Frederick County",America/New_York,240,NA,US,39.41,-77.41,758 +21709,UNIQUE,0,Frederick,,"State Farm Ins Co",MD,"Frederick County",America/New_York,240,NA,US,39.42,-77.41,0 +21710,STANDARD,0,Adamstown,Doubs,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.29,-77.45,4490 +21711,STANDARD,0,"Big Pool",,,MD,"Washington County",America/New_York,240,NA,US,39.66,-78,930 +21713,STANDARD,0,Boonsboro,,,MD,"Washington County",America/New_York,240,NA,US,39.5,-77.65,8940 +21714,"PO BOX",0,"Braddock Heights","Braddock Hts",,MD,"Frederick County",America/New_York,240,NA,US,39.42,-77.5,439 +21715,"PO BOX",0,Brownsville,,,MD,"Washington County",America/New_York,240,NA,US,39.38,-77.66,115 +21716,STANDARD,0,Brunswick,,Knoxville,MD,"Frederick County",America/New_York,301,NA,US,39.31,-77.61,6150 +21717,"PO BOX",0,Buckeystown,,,MD,"Frederick County",America/New_York,240,NA,US,39.34,-77.44,406 +21718,STANDARD,0,Burkittsville,,,MD,"Frederick County",America/New_York,240,NA,US,39.39,-77.63,216 +21719,STANDARD,0,Cascade,"Fort Ritchie, Highfield",,MD,"Washington County",America/New_York,"240,301",NA,US,39.7,-77.49,1150 +21720,"PO BOX",0,Cavetown,,,MD,"Washington County",America/New_York,240,NA,US,39.65,-77.57,250 +21721,"PO BOX",0,Chewsville,,,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.68,151 +21722,STANDARD,0,"Clear Spring","Big Spring",,MD,"Washington County",America/New_York,301,NA,US,39.65,-77.93,5210 +21723,STANDARD,0,Cooksville,,,MD,"Howard County",America/New_York,410,NA,US,39.33,-77,1020 +21727,STANDARD,0,Emmitsburg,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.7,-77.32,3830 +21733,STANDARD,0,Fairplay,"St James",,MD,"Washington County",America/New_York,240,NA,US,39.55,-77.76,1170 +21734,"PO BOX",0,Funkstown,,,MD,"Washington County",America/New_York,240,NA,US,39.61,-77.71,1015 +21737,STANDARD,0,Glenelg,,,MD,"Howard County",America/New_York,410,NA,US,39.25,-77.03,2280 +21738,STANDARD,0,Glenwood,,,MD,"Howard County",America/New_York,"410,443",NA,US,39.28,-77.02,3450 +21740,STANDARD,0,Hagerstown,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.63,-77.71,52680 +21741,"PO BOX",0,Hagerstown,,,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,870 +21742,STANDARD,0,Hagerstown,,Northern,MD,"Washington County",America/New_York,"240,301",NA,US,39.68,-77.65,29850 +21746,UNIQUE,0,Hagerstown,,"Md Correctional System",MD,"Washington County",America/New_York,240,NA,US,39.57,-77.71,28 +21747,"PO BOX",0,Hagerstown,,,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,0 +21748,UNIQUE,1,Hagerstown,,Citicorp,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,0 +21749,UNIQUE,0,Hagerstown,,"Citicorp Brm",MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,0 +21750,STANDARD,0,Hancock,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.7,-78.17,3190 +21754,STANDARD,0,Ijamsville,,,MD,"Frederick County",America/New_York,240,NA,US,39.33,-77.31,6990 +21755,STANDARD,0,Jefferson,,,MD,"Frederick County",America/New_York,240,NA,US,39.36,-77.53,5540 +21756,STANDARD,0,Keedysville,,,MD,"Washington County",America/New_York,301,NA,US,39.48,-77.69,3520 +21757,STANDARD,0,Keymar,"Detour, Middleburg",,MD,"Frederick County",America/New_York,,NA,US,39.59,-77.26,2630 +21758,STANDARD,0,Knoxville,Brunswick,,MD,"Frederick County",America/New_York,301,NA,US,39.35,-77.64,4490 +21759,"PO BOX",0,Ladiesburg,,,MD,"Frederick County",America/New_York,240,NA,US,39.56,-77.26,48 +21762,"PO BOX",0,Libertytown,,,MD,"Frederick County",America/New_York,240,NA,US,39.48,-77.25,490 +21765,"PO BOX",0,Lisbon,,,MD,"Howard County",America/New_York,410,NA,US,39.33,-77.07,179 +21766,STANDARD,0,"Little Orleans","Ltl Orleans",,MD,"Allegany County",America/New_York,240,NA,US,39.67,-78.39,560 +21767,STANDARD,0,Maugansville,,,MD,"Washington County",America/New_York,240,NA,US,39.7,-77.75,1050 +21769,STANDARD,0,Middletown,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.44,-77.54,11620 +21770,STANDARD,0,Monrovia,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.35,-77.25,7040 +21771,STANDARD,0,"Mount Airy",,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.37,-77.15,30120 +21773,STANDARD,0,Myersville,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.5,-77.56,5190 +21774,STANDARD,0,"New Market",,"Lake Linganore",MD,"Frederick County",America/New_York,301,NA,US,39.41,-77.27,14950 +21775,"PO BOX",0,"New Midway",,,MD,"Frederick County",America/New_York,240,NA,US,39.55,-77.3,34 +21776,STANDARD,0,"New Windsor",,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.54,-77.1,5490 +21777,STANDARD,0,"Point Of Rocks","Pt Of Rocks",,MD,"Frederick County",America/New_York,240,NA,US,39.27,-77.53,1850 +21778,STANDARD,0,"Rocky Ridge",,,MD,"Frederick County",America/New_York,240,NA,US,39.61,-77.33,920 +21779,STANDARD,0,Rohrersville,Gapland,,MD,"Washington County",America/New_York,240,NA,US,39.43,-77.65,890 +21780,STANDARD,0,Sabillasville,,,MD,"Frederick County",America/New_York,240,NA,US,39.7,-77.45,1400 +21781,"PO BOX",0,"Saint James",,,MD,"Washington County",America/New_York,240,NA,US,39.57,-77.76,84 +21782,STANDARD,0,Sharpsburg,,,MD,"Washington County",America/New_York,240,NA,US,39.45,-77.74,3630 +21783,STANDARD,0,Smithsburg,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.65,-77.57,8410 +21784,STANDARD,0,Sykesville,"Eldersburg, Gaither",,MD,"Carroll County",America/New_York,"410,443",NA,US,39.37,-76.97,38330 +21787,STANDARD,0,Taneytown,,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.65,-77.16,10010 +21788,STANDARD,0,Thurmont,Graceham,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.62,-77.4,10920 +21790,STANDARD,0,Tuscarora,,,MD,"Frederick County",America/New_York,240,NA,US,39.26,-77.5,134 +21791,STANDARD,0,"Union Bridge",Linwood,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.56,-77.17,4880 +21792,"PO BOX",0,Unionville,,,MD,"Frederick County",America/New_York,240,NA,US,39.51,-77.11,0 +21793,STANDARD,0,Walkersville,,,MD,"Frederick County",America/New_York,301,NA,US,39.48,-77.35,10090 +21794,STANDARD,0,"West Friendship","W Friendship",,MD,"Howard County",America/New_York,410,NA,US,39.3,-76.95,2630 +21795,STANDARD,0,Williamsport,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.59,-77.81,8680 +21797,STANDARD,0,Woodbine,,,MD,"Howard County",America/New_York,,NA,US,39.33,-77.06,9130 +21798,STANDARD,0,Woodsboro,,,MD,"Frederick County",America/New_York,240,NA,US,39.53,-77.31,2300 +21801,STANDARD,0,Salisbury,,,MD,"Wicomico County",America/New_York,"443,410,667",NA,US,38.38,-75.64,23890 +21802,"PO BOX",0,Salisbury,,,MD,"Wicomico County",America/New_York,410,NA,US,38.34,-75.58,1309 +21803,"PO BOX",0,Salisbury,,,MD,"Wicomico County",America/New_York,410,NA,US,38.37,-75.58,508 +21804,STANDARD,0,Salisbury,,,MD,"Wicomico County",America/New_York,"410,667,443",NA,US,38.37,-75.58,32040 +21810,"PO BOX",0,Allen,,,MD,"Wicomico County",America/New_York,410,NA,US,38.3,-75.71,163 +21811,STANDARD,0,Berlin,"Ocean Pines, Ocean Pnes",,MD,"Worcester County",America/New_York,"410,443",NA,US,38.32,-75.21,21420 +21813,STANDARD,0,Bishopville,,Bishop,MD,"Worcester County",America/New_York,"410,443",NA,US,38.44,-75.19,2760 +21814,STANDARD,0,Bivalve,,,MD,"Wicomico County",America/New_York,410,NA,US,38.3,-75.88,270 +21817,STANDARD,0,Crisfield,,,MD,"Somerset County",America/New_York,"410,443",NA,US,37.98,-75.85,3990 +21821,STANDARD,0,"Deal Island","Chance, Dames Quarter, Wenona",,MD,"Somerset County",America/New_York,410,NA,US,38.15,-75.94,660 +21822,STANDARD,0,Eden,,,MD,"Somerset County",America/New_York,,NA,US,38.28,-75.65,2450 +21824,STANDARD,0,Ewell,,"Rhodes Point",MD,"Somerset County",America/New_York,410,NA,US,37.98,-76.03,142 +21826,STANDARD,0,Fruitland,,,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.62,4550 +21829,STANDARD,0,Girdletree,,,MD,"Worcester County",America/New_York,410,NA,US,38.09,-75.39,410 +21830,STANDARD,0,Hebron,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.41,-75.68,3860 +21835,STANDARD,0,Linkwood,,,MD,"Dorchester County",America/New_York,"410,443",NA,US,38.54,-75.94,340 +21836,"PO BOX",0,Manokin,,,MD,"Somerset County",America/New_York,410,NA,US,38.11,-75.75,73 +21837,STANDARD,0,"Mardela Springs","Mardela, Mardela Spgs",,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.45,-75.75,2360 +21838,STANDARD,0,"Marion Station","Marion, Marion Sta",,MD,"Somerset County",America/New_York,410,NA,US,38.01,-75.73,1490 +21840,STANDARD,0,Nanticoke,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.27,-75.9,310 +21841,STANDARD,0,Newark,,,MD,"Worcester County",America/New_York,410,NA,US,38.25,-75.29,830 +21842,STANDARD,0,"Ocean City",,"North Ocean City, West Ocean City",MD,"Worcester County",America/New_York,"410,443",NA,US,38.35,-75.13,11680 +21843,"PO BOX",0,"Ocean City",,,MD,"Worcester County",America/New_York,410,NA,US,38.33,-75.08,1256 +21849,STANDARD,0,Parsonsburg,,,MD,"Wicomico County",America/New_York,410,NA,US,38.38,-75.47,2840 +21850,STANDARD,0,Pittsville,,,MD,"Wicomico County",America/New_York,410,NA,US,38.39,-75.41,2690 +21851,STANDARD,0,"Pocomoke City",,Pocomoke,MD,"Worcester County",America/New_York,"410,443",NA,US,38.06,-75.56,6250 +21852,"PO BOX",0,Powellville,,,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.37,0 +21853,STANDARD,0,"Princess Anne",,Oriole,MD,"Somerset County",America/New_York,"410,443",NA,US,38.2,-75.69,7050 +21856,STANDARD,0,Quantico,,Whitehaven,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.79,790 +21857,"PO BOX",0,Rehobeth,,,MD,"Somerset County",America/New_York,410,NA,US,38.03,-75.66,0 +21861,"PO BOX",0,Sharptown,,,MD,"Wicomico County",America/New_York,410,NA,US,38.54,-75.73,815 +21862,STANDARD,0,Showell,,,MD,"Worcester County",America/New_York,410,NA,US,38.4,-75.23,96 +21863,STANDARD,0,"Snow Hill",,,MD,"Worcester County",America/New_York,"410,443",NA,US,38.17,-75.39,4100 +21864,STANDARD,0,Stockton,,,MD,"Worcester County",America/New_York,410,NA,US,38.05,-75.4,590 +21865,STANDARD,0,Tyaskin,,,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.87,380 +21866,"PO BOX",0,Tylerton,,,MD,"Somerset County",America/New_York,410,NA,US,37.97,-76.02,51 +21867,"PO BOX",0,"Upper Fairmount","Fairmount, Upper Fairmt, Upper Hill",,MD,"Somerset County",America/New_York,410,NA,US,38.11,-75.79,213 +21869,STANDARD,0,Vienna,,"Elliott, Salem",MD,"Dorchester County",America/New_York,410,NA,US,38.44,-75.9,800 +21871,STANDARD,0,Westover,,"Easton Correctional Inst, Kingston, Rumbley",MD,"Somerset County",America/New_York,410,NA,US,38.12,-75.7,1600 +21872,STANDARD,0,Whaleyville,,,MD,"Worcester County",America/New_York,410,NA,US,38.4,-75.3,610 +21874,STANDARD,0,Willards,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.39,-75.34,2020 +21875,STANDARD,0,Delmar,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.45,-75.57,6250 +21890,UNIQUE,0,Westover,,"Eastern Correctional Inst, Easton Correctional Inst",MD,"Somerset County",America/New_York,410,NA,US,38.16,-75.7,0 +21901,STANDARD,0,"North East",,Northeast,MD,"Cecil County",America/New_York,"410,443",NA,US,39.6,-75.94,16440 +21902,"PO BOX",0,"Perry Point",,,MD,"Cecil County",America/New_York,410,NA,US,39.55,-76.06,121 +21903,STANDARD,0,Perryville,,,MD,"Cecil County",America/New_York,"410,443",NA,US,39.57,-76.06,4930 +21904,STANDARD,0,"Port Deposit",Bainbridge,,MD,"Cecil County",America/New_York,"410,443",NA,US,39.6,-76.11,6130 +21911,STANDARD,0,"Rising Sun",,,MD,"Cecil County",America/New_York,410,NA,US,39.69,-76.06,10170 +21912,STANDARD,0,Warwick,,,MD,"Cecil County",America/New_York,410,NA,US,39.42,-75.8,1100 +21913,"PO BOX",0,Cecilton,,,MD,"Cecil County",America/New_York,410,NA,US,39.4,-75.87,776 +21914,"PO BOX",0,Charlestown,,,MD,"Cecil County",America/New_York,410,NA,US,39.57,-75.97,813 +21915,STANDARD,0,"Chesapeake City","Chesapeake Cy",,MD,"Cecil County",America/New_York,"443,410",NA,US,39.52,-75.81,2760 +21916,"PO BOX",0,Childs,,,MD,"Cecil County",America/New_York,410,NA,US,39.64,-75.86,159 +21917,STANDARD,0,Colora,,,MD,"Cecil County",America/New_York,410,NA,US,39.66,-76.09,2340 +21918,STANDARD,0,Conowingo,,,MD,"Cecil County",America/New_York,410,NA,US,39.68,-76.16,3790 +21919,STANDARD,0,Earleville,,,MD,"Cecil County",America/New_York,410,NA,US,39.41,-75.93,2590 +21920,"PO BOX",0,"Elk Mills",,,MD,"Cecil County",America/New_York,410,NA,US,39.66,-75.83,365 +21921,STANDARD,0,Elkton,,,MD,"Cecil County",America/New_York,"410,443",NA,US,39.6,-75.82,37990 +21922,"PO BOX",0,Elkton,,,MD,"Cecil County",America/New_York,410,NA,US,39.6,-75.82,980 +21930,"PO BOX",0,Georgetown,,,MD,"Cecil County",America/New_York,410,NA,US,39.38,-75.89,222 +22003,STANDARD,0,Annandale,,,VA,"Fairfax County",America/New_York,703,NA,US,38.83,-77.21,53400 +22009,"PO BOX",0,Burke,Springfield,,VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.27,305 +22015,STANDARD,0,Burke,Springfield,,VA,"Fairfax County",America/New_York,703,NA,US,38.78,-77.27,42560 +22025,STANDARD,0,Dumfries,Montclair,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.6,-77.34,17840 +22026,STANDARD,0,Dumfries,Southbridge,,VA,"Prince William County",America/New_York,571,NA,US,38.56,-77.3,18850 +22027,STANDARD,0,"Dunn Loring",Vienna,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.89,-77.22,2230 +22030,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,571,NA,US,38.84,-77.34,48880 +22031,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.85,-77.29,30860 +22032,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.82,-77.29,28920 +22033,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,703,NA,US,38.88,-77.38,36900 +22034,STANDARD,0,Fairfax,,"Journal Newspaper",VA,"Fairfax City",America/New_York,571,NA,US,38.85,-77.29,0 +22035,STANDARD,0,Fairfax,,"Fairfax County Government",VA,"Fairfax County",America/New_York,571,NA,US,38.85,-77.36,0 +22036,STANDARD,0,Fairfax,,"Journal Newspaper",VA,"Fairfax City",America/New_York,"571,703",NA,US,38.85,-77.29,0 +22037,UNIQUE,0,Fairfax,,"Mobil Oil Corp",VA,"Fairfax City",America/New_York,571,NA,US,38.85,-77.29,67 +22038,"PO BOX",0,Fairfax,,,VA,"Fairfax City",America/New_York,571,NA,US,38.85,-77.29,415 +22039,STANDARD,0,"Fairfax Station","Fairfax Sta, Fx Station",,VA,"Fairfax County",America/New_York,571,NA,US,38.76,-77.31,19100 +22040,"PO BOX",0,"Falls Church",,,VA,"Falls Church City",America/New_York,571,NA,US,38.88,-77.17,382 +22041,STANDARD,0,"Falls Church","Baileys Crossroads, Baileys Xrds",,VA,"Fairfax County",America/New_York,703,NA,US,38.84,-77.14,23870 +22042,STANDARD,0,"Falls Church",Mosby,,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.2,31090 +22043,STANDARD,0,"Falls Church",Pimmit,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.9,-77.2,23170 +22044,STANDARD,0,"Falls Church","Seven Corners","7 Corners",VA,"Fairfax County",America/New_York,571,NA,US,38.86,-77.15,11660 +22046,STANDARD,0,"Falls Church",,,VA,"Falls Church city",America/New_York,"571,703",NA,US,38.88,-77.17,17600 +22047,UNIQUE,1,"Falls Church",,Aaa,VA,"Falls Church City",America/New_York,571,NA,US,38.86,-77.22,0 +22060,STANDARD,0,"Fort Belvoir","Ft Belvoir",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.7,-77.14,9220 +22066,STANDARD,0,"Great Falls",,,VA,"Fairfax County",America/New_York,703,NA,US,39.01,-77.28,18050 +22067,STANDARD,0,Greenway,"Mc Lean",,VA,"Fairfax County",America/New_York,703,NA,US,38.93,-77.16,0 +22079,STANDARD,0,Lorton,"Mason Neck",,VA,"Fairfax County",America/New_York,"703,571",NA,US,38.7,-77.24,33540 +22081,STANDARD,0,Merrifield,,"Northern Virginia, Northern Virginia Facility",VA,"Fairfax County",America/New_York,"571,703",NA,US,38.87,-77.24,0 +22082,UNIQUE,0,Merrifield,,"Engineering Support Center",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,0 +22092,UNIQUE,1,Herndon,,"U S Geological Survey",VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,0 +22093,UNIQUE,1,Ashburn,"Natl Assn Letter Carriers",,VA,"Loudoun County",America/New_York,571,NA,US,39.04,-77.48,0 +22095,UNIQUE,0,Herndon,Reston,"Business Reply Mail",VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,0 +22096,UNIQUE,0,Reston,Herndon,Sprint,VA,"Fairfax County",America/New_York,571,NA,US,38.95,-77.34,0 +22101,STANDARD,0,"Mc Lean",Mclean,Maclean,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.94,-77.19,29720 +22102,STANDARD,0,"Mc Lean","Mclean, Tysons, Tysons Corner, West Mclean",Maclean,VA,"Fairfax County",America/New_York,"703,571",NA,US,38.95,-77.23,23910 +22103,"PO BOX",0,"West Mclean","Mc Lean, Mclean",Maclean,VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.16,170 +22106,"PO BOX",0,"Mc Lean",Mclean,,VA,"Fairfax County",America/New_York,571,NA,US,38.94,-77.19,265 +22107,UNIQUE,0,"Mc Lean",,Gannett,VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.18,0 +22108,UNIQUE,0,"Mc Lean",,"Usa Today",VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.18,0 +22109,UNIQUE,0,"Mc Lean",,"Wachovia Bank",VA,"Fairfax County",America/New_York,571,NA,US,38.94,-77.19,0 +22116,"PO BOX",0,Merrifield,,,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,624 +22118,UNIQUE,0,Merrifield,,"Bank Of America",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,0 +22119,UNIQUE,0,Merrifield,,"Navy Federal Credit Union",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,0 +22120,UNIQUE,1,Merrifield,"Continental Telephone",,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.22,0 +22121,"PO BOX",0,"Mount Vernon",,,VA,"Fairfax County",America/New_York,571,NA,US,38.71,-77.1,74 +22122,"PO BOX",0,Newington,,,VA,"Fairfax County",America/New_York,571,NA,US,38.73,-77.2,112 +22124,STANDARD,0,Oakton,Vienna,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.89,-77.3,17910 +22125,"PO BOX",0,Occoquan,,,VA,"Prince William County",America/New_York,571,NA,US,38.68,-77.26,654 +22134,STANDARD,0,Quantico,,"Mcb Quantico, Quantico Naval Hospital",VA,"Prince William County",America/New_York,571,NA,US,38.52,-77.29,4790 +22135,UNIQUE,0,Quantico,,"Fbi Academy",VA,"Prince William County",America/New_York,571,NA,US,38.52,-77.29,0 +22150,STANDARD,0,Springfield,,,VA,"Fairfax County",America/New_York,703,NA,US,38.78,-77.17,26770 +22151,STANDARD,0,Springfield,"N Springfield, North Springfield","N Springfld",VA,"Fairfax County",America/New_York,703,NA,US,38.8,-77.21,17210 +22152,STANDARD,0,Springfield,"W Springfield, West Springfield",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.77,-77.23,29200 +22153,STANDARD,0,Springfield,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.74,-77.24,32060 +22156,UNIQUE,0,Springfield,,"Firm Zip",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22158,UNIQUE,0,Springfield,,"Army Times, Springfield Brm",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22159,STANDARD,0,Springfield,,"Army Times, Firm Zip",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22160,UNIQUE,0,Springfield,,"National Right To Work Comm",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22161,UNIQUE,0,Springfield,,"Dept Of Commerce",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22172,STANDARD,0,Triangle,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.54,-77.31,9550 +22180,STANDARD,0,Vienna,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.9,-77.26,24900 +22181,STANDARD,0,Vienna,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.91,-77.29,14760 +22182,STANDARD,0,Vienna,"Tysons, Tysons Corner",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.94,-77.27,26280 +22183,"PO BOX",0,Vienna,,,VA,"Fairfax County",America/New_York,571,NA,US,38.9,-77.26,258 +22184,UNIQUE,1,Vienna,,"National Wildlife Assoc",VA,"Fairfax County",America/New_York,571,NA,US,38.9,-77.26,0 +22185,UNIQUE,0,Vienna,Oakton,"A T & T, AT&T",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.3,0 +22191,STANDARD,0,Woodbridge,,Wdbg,VA,"Prince William County",America/New_York,"571,703",NA,US,38.63,-77.26,68120 +22192,STANDARD,0,Woodbridge,"Lake Ridge, Prince William, Prince Wm",,VA,"Prince William County",America/New_York,"571,703",NA,US,38.68,-77.31,56250 +22193,STANDARD,0,Woodbridge,"Dale City",Dalecity,VA,"Prince William County",America/New_York,"571,703",NA,US,38.64,-77.35,79970 +22194,"PO BOX",0,Woodbridge,,,VA,"Prince William County",America/New_York,571,NA,US,38.63,-77.26,666 +22195,"PO BOX",0,Woodbridge,,,VA,"Prince William County",America/New_York,571,NA,US,38.63,-77.26,1056 +22199,"PO BOX",0,Lorton,,,VA,"Fairfax County",America/New_York,571,NA,US,38.7,-77.24,474 +22201,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.89,-77.1,31480 +22202,STANDARD,0,Arlington,,"Crystal City",VA,"Arlington County",America/New_York,"571,703",NA,US,38.86,-77.05,20150 +22203,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.12,20060 +22204,STANDARD,0,Arlington,,South,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.1,46660 +22205,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"703,571",NA,US,38.88,-77.14,17630 +22206,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,703,NA,US,38.84,-77.09,18890 +22207,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"703,571",NA,US,38.91,-77.12,31550 +22209,STANDARD,0,Arlington,Rosslyn,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.9,-77.08,10950 +22210,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,264 +22211,STANDARD,0,"Fort Myer","Ft Myer",,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.07,620 +22212,UNIQUE,0,Arlington,,"Navy Mutual Aid Assoc",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22213,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.9,-77.16,3470 +22214,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.07,133 +22215,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,201 +22216,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,181 +22217,UNIQUE,0,Arlington,,"Office Of Naval Research",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22218,UNIQUE,1,Arlington,"Visa Lottery",,VA,"Arlington County",America/New_York,571,NA,US,38.88,-77.09,0 +22219,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,257 +22222,UNIQUE,1,Arlington,,"Marine Corps Institute",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22223,UNIQUE,1,Arlington,,"Marine Corps Institute, Business Reply Mail",VA,"Arlington County",America/New_York,571,NA,US,38.88,-77.09,0 +22225,UNIQUE,0,Arlington,,"Dept Of The Navy",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22226,UNIQUE,0,Arlington,,Fdic,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22227,UNIQUE,0,Arlington,,"Us Air",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22229,UNIQUE,1,Arlington,"Shared Firm Zip",,VA,"Arlington County",America/New_York,571,NA,US,38.89,-77.07,0 +22230,UNIQUE,0,Arlington,,"National Science Foundation",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22234,UNIQUE,1,Arlington,Gannett,,VA,"Arlington County",America/New_York,571,NA,US,38.89,-77.07,0 +22240,UNIQUE,0,Arlington,,"Us Navy Accounting Office",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22241,UNIQUE,0,Arlington,,"Naval Supply System Command",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22242,UNIQUE,0,Arlington,,"Navy Sea Systems Command",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22243,UNIQUE,0,Arlington,,"Naval Air System Command",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22244,UNIQUE,0,Arlington,,"Assistant Secretary Of Navy",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22245,UNIQUE,0,Arlington,,"Space & Naval Warfare System",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22246,UNIQUE,0,Arlington,,"Us Unmanned Aerial Vehicles",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22301,STANDARD,0,Alexandria,Potomac,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.82,-77.06,13270 +22302,STANDARD,0,Alexandria,,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.82,-77.08,16090 +22303,STANDARD,0,Alexandria,"Jefferson Manor, Jefferson Mnr",,VA,"Fairfax County",America/New_York,703,NA,US,38.79,-77.08,14330 +22304,STANDARD,0,Alexandria,,"Cameron Station, Theological Seminary, Trade Center",VA,"Alexandria city",America/New_York,"571,703",NA,US,38.81,-77.11,42600 +22305,STANDARD,0,Alexandria,,"George Washington",VA,"Alexandria city",America/New_York,"571,703",NA,US,38.84,-77.06,14970 +22306,STANDARD,0,Alexandria,Community,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.76,-77.1,29660 +22307,STANDARD,0,Alexandria,Belleview,,VA,"Fairfax County",America/New_York,703,NA,US,38.77,-77.06,9790 +22308,STANDARD,0,Alexandria,"Fort Hunt",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.73,-77.06,13740 +22309,STANDARD,0,Alexandria,Engleside,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.72,-77.11,31040 +22310,STANDARD,0,Alexandria,Franconia,,VA,"Fairfax County",America/New_York,703,NA,US,38.78,-77.12,28090 +22311,STANDARD,0,Alexandria,,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.83,-77.13,16590 +22312,STANDARD,0,Alexandria,Lincolnia,,VA,"Fairfax County",America/New_York,703,NA,US,38.82,-77.15,27890 +22313,"PO BOX",0,Alexandria,,,VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,457 +22314,STANDARD,0,Alexandria,,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.81,-77.06,30900 +22315,STANDARD,0,Alexandria,Kingstowne,,VA,"Fairfax County",America/New_York,703,NA,US,38.76,-77.15,26980 +22320,"PO BOX",0,Alexandria,,,VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,184 +22321,UNIQUE,1,Alexandria,"Firm Zip",,VA,"Alexandria City",America/New_York,571,NA,US,38.8,-77.05,0 +22331,STANDARD,0,Alexandria,,,VA,"Alexandria City",America/New_York,703,NA,US,38.82,-77.08,0 +22332,STANDARD,0,Alexandria,,,VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,0 +22333,UNIQUE,0,Alexandria,,"Us Army Mat Com",VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,0 +22334,UNIQUE,0,Alexandria,,"Sun Trust Bank",VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,0 +22336,UNIQUE,1,Alexandria,,"Woodward & Lothrop",VA,"Alexandria City",America/New_York,571,NA,US,38.8,-77.04,0 +22350,UNIQUE,0,Alexandria,,"Dept Of Defense, Dod",VA,,America/New_York,571,NA,US,38.81,-77.08,0 +22401,STANDARD,0,Fredericksburg,Fredericksbrg,"Enon, Fred",VA,"Fredericksburg city",America/New_York,540,NA,US,38.29,-77.48,21280 +22402,"PO BOX",0,Fredericksburg,Fredericksbrg,Fred,VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,552 +22403,"PO BOX",0,Fredericksburg,"Falmouth, Fredericksbrg",Fred,VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,620 +22404,"PO BOX",0,Fredericksburg,Fredericksbrg,Fred,VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,1119 +22405,STANDARD,0,Fredericksburg,"Falmouth, Fredericksbrg","Fred, Fredericksbg",VA,"Stafford County",America/New_York,540,NA,US,38.31,-77.4,31780 +22406,STANDARD,0,Fredericksburg,"Falmouth, Fredericksbrg","Fred, Fredbg, Frederickbg, Frederickbur, Fredericksbg, Fredericksbur",VA,"Stafford County",America/New_York,540,NA,US,38.4,-77.54,25040 +22407,STANDARD,0,Fredericksburg,Fredericksbrg,"Fred, Fredbg, Frederickbg, Frederickbur, Fredericksbg, Fredericksbur",VA,"Spotsylvania County",America/New_York,540,NA,US,38.28,-77.58,56890 +22408,STANDARD,0,Fredericksburg,Fredericksbrg,"Fred, Fredbg, Frederickbg, Frederickbur, Fredericksbg, Fredericksbur",VA,"Spotsylvania County",America/New_York,540,NA,US,38.22,-77.44,29210 +22412,UNIQUE,0,Fredericksburg,"Falmouth, Fredericksbrg","Geico Insurance",VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,0 +22427,STANDARD,0,"Bowling Green","Fort A P Hill","Bowling Grn, Ft Ap Hill",VA,"Caroline County",America/New_York,804,NA,US,38.04,-77.35,2840 +22428,UNIQUE,0,"Bowling Green",,"Boy Scouts Of America",VA,"Caroline County",America/New_York,804,NA,US,38.04,-77.35,0 +22430,"PO BOX",0,Brooke,Stafford,,VA,"Stafford County",America/New_York,540,NA,US,38.37,-77.34,71 +22432,STANDARD,0,Burgess,,,VA,"Northumberland County",America/New_York,804,NA,US,37.88,-76.34,600 +22433,STANDARD,0,"Burr Hill",,,VA,"Orange County",America/New_York,,NA,US,38.37,-77.86,250 +22435,STANDARD,0,Callao,,Walmsley,VA,"Northumberland County",America/New_York,804,NA,US,37.96,-76.55,2010 +22436,STANDARD,0,Caret,Supply,,VA,"Essex County",America/New_York,804,NA,US,37.98,-76.96,720 +22437,STANDARD,0,"Center Cross",,,VA,"Essex County",America/New_York,804,NA,US,37.8,-76.77,510 +22438,STANDARD,0,Champlain,Chance,Elevon,VA,"Essex County",America/New_York,804,NA,US,38.04,-76.98,370 +22442,"PO BOX",0,"Coles Point",,"Ragged Point Beach",VA,"Westmoreland County",America/New_York,804,NA,US,38.14,-76.63,76 +22443,STANDARD,0,"Colonial Beach","Colonial Bch, Oak Grove, Washgtns Brhp, Washingtons Birthplace",,VA,"Westmoreland County",America/New_York,804,NA,US,38.25,-76.97,7450 +22446,"PO BOX",0,Corbin,,,VA,"Caroline County",America/New_York,804,NA,US,38.19,-77.38,231 +22448,STANDARD,0,Dahlgren,,"Naval Surface Weapons Center",VA,"King George County",America/New_York,540,NA,US,38.34,-77.03,1240 +22451,"PO BOX",0,Dogue,,,VA,"King George County",America/New_York,540,NA,US,38.23,-77.21,139 +22454,STANDARD,0,Dunnsville,Howertons,,VA,"Essex County",America/New_York,804,NA,US,37.85,-76.82,1520 +22456,"PO BOX",0,Edwardsville,,,VA,"Northumberland County",America/New_York,804,NA,US,37.9,-76.36,30 +22460,STANDARD,0,Farnham,,,VA,"Richmond County",America/New_York,804,NA,US,37.88,-76.62,1440 +22463,"PO BOX",0,Garrisonville,,,VA,"Stafford County",America/New_York,540,NA,US,38.48,-77.42,348 +22469,STANDARD,0,Hague,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.07,-76.65,1740 +22471,"PO BOX",0,Hartwood,,,VA,"Stafford County",America/New_York,540,NA,US,38.39,-77.61,307 +22472,"PO BOX",0,Haynesville,,,VA,"Richmond County",America/New_York,804,NA,US,37.95,-76.66,363 +22473,STANDARD,0,Heathsville,,,VA,"Northumberland County",America/New_York,804,NA,US,37.91,-76.47,3880 +22476,STANDARD,0,Hustle,,,VA,"Essex County",America/New_York,804,NA,US,38.04,-77.06,290 +22480,STANDARD,0,Irvington,,,VA,"Lancaster County",America/New_York,804,NA,US,37.66,-76.42,1060 +22481,"PO BOX",0,Jersey,,,VA,"King George County",America/New_York,540,NA,US,38.21,-77.13,185 +22482,STANDARD,0,Kilmarnock,,,VA,"Lancaster County",America/New_York,804,NA,US,37.71,-76.38,2630 +22485,STANDARD,0,"King George",Shiloh,Owens,VA,"King George County",America/New_York,540,NA,US,38.26,-77.18,22930 +22488,STANDARD,0,Kinsale,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.05,-76.59,1490 +22501,STANDARD,0,Ladysmith,,,VA,"Caroline County",America/New_York,804,NA,US,38.01,-77.51,505 +22503,STANDARD,0,Lancaster,"Alfonso, Regina",Millenbeck,VA,"Lancaster County",America/New_York,804,NA,US,37.76,-76.46,2990 +22504,STANDARD,0,Laneview,,Butylo,VA,"Essex County",America/New_York,,NA,US,37.77,-76.73,180 +22507,"PO BOX",0,Lively,,,VA,"Lancaster County",America/New_York,804,NA,US,37.77,-76.51,334 +22508,STANDARD,0,"Locust Grove","Lake Of The Woods, Lake Of Woods, Mine Run",,VA,"Orange County",America/New_York,540,NA,US,38.33,-77.79,13550 +22509,STANDARD,0,Loretto,,,VA,"Essex County",America/New_York,804,NA,US,38.12,-77.08,31 +22511,STANDARD,0,Lottsburg,Lewisetta,,VA,"Northumberland County",America/New_York,804,NA,US,37.96,-76.51,1350 +22513,"PO BOX",0,"Merry Point",,,VA,"Lancaster County",America/New_York,804,NA,US,37.71,-76.5,121 +22514,STANDARD,0,Milford,,Gether,VA,"Caroline County",America/New_York,804,NA,US,38.02,-77.36,2080 +22517,"PO BOX",0,Mollusk,,,VA,"Lancaster County",America/New_York,804,NA,US,37.72,-76.53,308 +22520,STANDARD,0,Montross,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.09,-76.82,4810 +22523,"PO BOX",0,Morattico,,,VA,"Lancaster County",America/New_York,804,NA,US,37.8,-76.61,55 +22524,"PO BOX",0,"Mount Holly",,,VA,"Westmoreland County",America/New_York,804,NA,US,38.09,-76.71,332 +22526,"PO BOX",0,Ninde,,,VA,"King George County",America/New_York,540,NA,US,38.27,-77.05,107 +22528,"PO BOX",0,Nuttsville,,,VA,"Lancaster County",America/New_York,804,NA,US,37.79,-76.55,77 +22529,"PO BOX",0,Oldhams,,,VA,"Westmoreland County",America/New_York,804,NA,US,38,-76.68,254 +22530,"PO BOX",0,Ophelia,,,VA,"Northumberland County",America/New_York,804,NA,US,37.9,-76.29,171 +22534,STANDARD,0,Partlow,,,VA,"Spotsylvania County",America/New_York,"804,540",NA,US,38.08,-77.67,2750 +22535,STANDARD,0,"Port Royal",,,VA,"Caroline County",America/New_York,804,NA,US,38.16,-77.19,620 +22538,STANDARD,0,"Rappahannock Academy","Raphanck Acad",Rappnhanck,VA,"Caroline County",America/New_York,804,NA,US,38.2,-77.26,270 +22539,STANDARD,0,Reedville,,,VA,"Northumberland County",America/New_York,804,NA,US,37.86,-76.29,1840 +22542,STANDARD,0,Rhoadesville,,,VA,"Orange County",America/New_York,,NA,US,38.28,-77.9,1820 +22544,"PO BOX",0,"Rollins Fork",,,VA,"King George County",America/New_York,540,NA,US,38.18,-77.06,0 +22545,"PO BOX",0,Ruby,,,VA,"Stafford County",America/New_York,540,NA,US,38.5,-77.51,71 +22546,STANDARD,0,"Ruther Glen",,Rutherglen,VA,"Caroline County",America/New_York,804,NA,US,38,-77.54,16010 +22547,"PO BOX",0,Sealston,,,VA,"King George County",America/New_York,540,NA,US,38.27,-77.32,94 +22548,"PO BOX",0,Sharps,,,VA,"Richmond County",America/New_York,804,NA,US,37.82,-76.7,82 +22551,STANDARD,0,Spotsylvania,,,VA,"Spotsylvania County",America/New_York,540,NA,US,38.17,-77.7,19000 +22552,"PO BOX",0,Sparta,,,VA,"Caroline County",America/New_York,804,NA,US,37.99,-77.22,64 +22553,STANDARD,0,Spotsylvania,Snell,,VA,"Spotsylvania County",America/New_York,540,NA,US,38.27,-77.65,15540 +22554,STANDARD,0,Stafford,,,VA,"Stafford County",America/New_York,540,NA,US,38.42,-77.4,58630 +22555,"PO BOX",0,Stafford,,,VA,"Stafford County",America/New_York,540,NA,US,38.42,-77.4,1083 +22556,STANDARD,0,Stafford,,,VA,"Stafford County",America/New_York,540,NA,US,38.47,-77.51,27890 +22558,"PO BOX",0,Stratford,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.12,-76.81,0 +22560,STANDARD,0,Tappahannock,,,VA,"Essex County",America/New_York,804,NA,US,37.92,-76.86,5930 +22565,"PO BOX",0,Thornburg,,,VA,"Spotsylvania County",America/New_York,540,NA,US,38.13,-77.52,556 +22567,STANDARD,0,Unionville,,Lahore,VA,"Orange County",America/New_York,540,NA,US,38.25,-77.96,2760 +22570,"PO BOX",0,Village,,,VA,"Richmond County",America/New_York,,NA,US,37.94,-76.6,29 +22572,STANDARD,0,Warsaw,Foneswood,"Nomini Grove",VA,"Richmond County",America/New_York,804,NA,US,37.96,-76.76,5090 +22576,STANDARD,0,Weems,,,VA,"Lancaster County",America/New_York,804,NA,US,37.68,-76.44,1320 +22577,"PO BOX",0,"Sandy Point",,,VA,"Westmoreland County",America/New_York,804,NA,US,38.06,-76.55,187 +22578,STANDARD,0,"White Stone",,Whitestone,VA,"Lancaster County",America/New_York,804,NA,US,37.64,-76.39,2050 +22579,"PO BOX",0,"Wicomico Church","Wicomico Chur",,VA,"Northumberland County",America/New_York,804,NA,US,37.8,-76.31,503 +22580,STANDARD,0,Woodford,,,VA,"Caroline County",America/New_York,"804,540",NA,US,38.11,-77.4,4320 +22581,"PO BOX",0,Zacata,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.11,-76.8,0 +22601,STANDARD,0,Winchester,,,VA,"Winchester city",America/New_York,540,NA,US,39.17,-78.17,24070 +22602,STANDARD,0,Winchester,,,VA,"Frederick County",America/New_York,540,NA,US,39.14,-78.28,28230 +22603,STANDARD,0,Winchester,Hayfield,,VA,"Frederick County",America/New_York,540,NA,US,39.28,-78.21,13740 +22604,"PO BOX",0,Winchester,,,VA,"Winchester City",America/New_York,540,NA,US,39.17,-78.17,1823 +22610,STANDARD,0,Bentonville,Browntown,Overall,VA,"Warren County",America/New_York,540,NA,US,38.83,-78.31,1850 +22611,STANDARD,0,Berryville,"Mount Weather",,VA,"Clarke County",America/New_York,540,NA,US,39.14,-77.98,8360 +22620,STANDARD,0,Boyce,,,VA,"Clarke County",America/New_York,540,NA,US,39.09,-78.05,2130 +22622,"PO BOX",0,Brucetown,,,VA,"Frederick County",America/New_York,540,NA,US,39.25,-78.05,0 +22623,STANDARD,0,"Chester Gap",,,VA,"Rappahannock County",America/New_York,540,NA,US,38.85,-78.13,620 +22624,STANDARD,0,"Clear Brook",,,VA,"Frederick County",America/New_York,540,NA,US,39.26,-78.1,2470 +22625,STANDARD,0,"Cross Junction","Cross Jct, Whitacre",,VA,"Frederick County",America/New_York,540,NA,US,39.32,-78.29,3530 +22626,"PO BOX",0,"Fishers Hill",,,VA,"Shenandoah County",America/New_York,540,NA,US,38.97,-78.4,103 +22627,STANDARD,0,"Flint Hill",Huntly,,VA,"Rappahannock County",America/New_York,540,NA,US,38.76,-78.1,720 +22630,STANDARD,0,"Front Royal","Lake Frederick, Lk Frederick, Riverton",,VA,"Warren County",America/New_York,540,NA,US,38.92,-78.18,29590 +22637,STANDARD,0,Gore,,,VA,"Frederick County",America/New_York,540,NA,US,39.26,-78.33,2020 +22639,STANDARD,0,Hume,,,VA,"Fauquier County",America/New_York,,NA,US,38.83,-77.99,590 +22640,STANDARD,0,Huntly,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.8,-78.14,310 +22641,STANDARD,0,Strasburg,"Lebanon Ch, Lebanon Church",,VA,"Shenandoah County",America/New_York,540,NA,US,39.09,-78.37,250 +22642,STANDARD,0,Linden,,,VA,"Warren County",America/New_York,540,NA,US,38.9,-78.07,4300 +22643,STANDARD,0,Markham,,,VA,"Fauquier County",America/New_York,540,NA,US,38.9,-78,360 +22644,STANDARD,0,Maurertown,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.98,-78.51,2060 +22645,STANDARD,0,Middletown,,,VA,"Frederick County",America/New_York,,NA,US,39.02,-78.27,3870 +22646,"PO BOX",0,Millwood,,,VA,"Clarke County",America/New_York,540,NA,US,39.06,-78.03,408 +22649,STANDARD,0,Middletown,Reliance,,VA,"Frederick County",America/New_York,540,NA,US,39.02,-78.27,0 +22650,STANDARD,0,Rileyville,,,VA,"Page County",America/New_York,540,NA,US,38.76,-78.38,820 +22652,STANDARD,0,"Fort Valley","Saint Davids Church, Seven Fountains, Seven Fountns, St Davids Ch",,VA,"Shenandoah County",America/New_York,540,NA,US,38.84,-78.42,1290 +22654,STANDARD,0,"Star Tannery",,,VA,"Frederick County",America/New_York,,NA,US,39.08,-78.45,720 +22655,STANDARD,0,"Stephens City",,,VA,"Frederick County",America/New_York,540,NA,US,39.09,-78.22,20880 +22656,STANDARD,0,Stephenson,,,VA,"Frederick County",America/New_York,540,NA,US,39.2,-78.09,4920 +22657,STANDARD,0,Strasburg,,"Lebanon Church",VA,"Shenandoah County",America/New_York,540,NA,US,38.98,-78.35,10630 +22660,STANDARD,0,"Toms Brook",,,VA,"Shenandoah County",America/New_York,540,NA,US,38.94,-78.43,1570 +22663,STANDARD,0,"White Post",,,VA,"Frederick County",America/New_York,540,NA,US,39.05,-78.1,1570 +22664,STANDARD,0,Woodstock,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.87,-78.51,8220 +22701,STANDARD,0,Culpeper,"Raccoon Ford, Winston",Catalpa,VA,"Culpeper County",America/New_York,540,NA,US,38.47,-78,33370 +22709,STANDARD,0,Aroda,,,VA,"Madison County",America/New_York,540,NA,US,38.32,-78.24,910 +22711,STANDARD,0,Banco,,,VA,"Madison County",America/New_York,540,NA,US,38.47,-78.27,119 +22712,STANDARD,0,Bealeton,Morrisville,,VA,"Fauquier County",America/New_York,540,NA,US,38.57,-77.76,9760 +22713,STANDARD,0,Boston,,,VA,"Culpeper County",America/New_York,540,NA,US,38.54,-78.14,1310 +22714,STANDARD,0,"Brandy Station","Brandy Sta",Brandy,VA,"Culpeper County",America/New_York,540,NA,US,38.52,-77.89,970 +22715,STANDARD,0,Brightwood,,,VA,"Madison County",America/New_York,540,NA,US,38.41,-78.16,1080 +22716,STANDARD,0,Castleton,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.6,-78.1,720 +22718,STANDARD,0,Elkwood,,,VA,"Culpeper County",America/New_York,540,NA,US,38.51,-77.85,660 +22719,STANDARD,0,Etlan,Madison,,VA,"Madison County",America/New_York,540,NA,US,38.52,-78.26,280 +22720,STANDARD,0,Goldvein,,,VA,"Fauquier County",America/New_York,540,NA,US,38.44,-77.65,880 +22721,STANDARD,1,"Graves Mill",,,VA,"Madison County",America/New_York,540,NA,US,38.39,-78.28,0 +22722,STANDARD,0,Haywood,,,VA,"Madison County",America/New_York,540,NA,US,38.47,-78.23,176 +22723,STANDARD,0,Hood,,,VA,"Madison County",America/New_York,540,NA,US,38.35,-78.38,196 +22724,STANDARD,0,Jeffersonton,,,VA,"Culpeper County",America/New_York,540,NA,US,38.63,-77.91,2310 +22725,STANDARD,0,Leon,,,VA,"Madison County",America/New_York,540,NA,US,38.45,-78.15,70 +22726,STANDARD,0,Lignum,,,VA,"Culpeper County",America/New_York,540,NA,US,38.41,-77.82,740 +22727,STANDARD,0,Madison,"Banco, Etlan, Graves Mill","Aroda, Aylor, Criglersville, Shelby, Twymans Mill",VA,"Madison County",America/New_York,"434,540",NA,US,38.37,-78.25,4910 +22728,STANDARD,0,Midland,,,VA,"Fauquier County",America/New_York,540,NA,US,38.59,-77.72,2900 +22729,STANDARD,0,Mitchells,,,VA,"Culpeper County",America/New_York,540,NA,US,38.37,-78,172 +22730,STANDARD,0,Oakpark,,,VA,"Madison County",America/New_York,540,NA,US,38.36,-78.16,151 +22731,STANDARD,0,Pratts,,,VA,"Madison County",America/New_York,540,NA,US,38.34,-78.26,210 +22732,STANDARD,0,Radiant,,,VA,"Madison County",America/New_York,540,NA,US,38.31,-78.19,290 +22733,STANDARD,0,Rapidan,,,VA,"Culpeper County",America/New_York,540,NA,US,38.31,-78.06,1200 +22734,STANDARD,0,Remington,,,VA,"Fauquier County",America/New_York,540,NA,US,38.53,-77.8,3160 +22735,STANDARD,0,Reva,,,VA,"Culpeper County",America/New_York,540,NA,US,38.49,-78.13,1980 +22736,STANDARD,0,Richardsville,,,VA,"Culpeper County",America/New_York,540,NA,US,38.4,-77.72,570 +22737,STANDARD,0,Rixeyville,,,VA,"Culpeper County",America/New_York,540,NA,US,38.58,-77.97,3130 +22738,STANDARD,0,Rochelle,Uno,,VA,"Madison County",America/New_York,540,NA,US,38.29,-78.27,950 +22739,"PO BOX",0,Somerville,,,VA,"Fauquier County",America/New_York,,NA,US,38.52,-77.6,63 +22740,STANDARD,0,Sperryville,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.67,-78.25,1090 +22741,STANDARD,0,Stevensburg,,,VA,"Culpeper County",America/New_York,540,NA,US,38.43,-77.87,200 +22742,STANDARD,0,Sumerduck,,,VA,"Fauquier County",America/New_York,,NA,US,38.46,-77.72,1610 +22743,STANDARD,0,Syria,,,VA,"Madison County",America/New_York,540,NA,US,38.48,-78.32,205 +22746,STANDARD,0,Viewtown,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.63,-78.03,269 +22747,STANDARD,0,Washington,,Wash,VA,"Rappahannock County",America/New_York,540,NA,US,38.71,-78.15,1010 +22748,"PO BOX",0,Wolftown,,,VA,"Madison County",America/New_York,540,NA,US,38.35,-78.34,164 +22749,STANDARD,0,Woodville,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.6,-78.17,290 +22801,STANDARD,0,Harrisonburg,Rockingham,Harrisburg,VA,"Harrisonburg city",America/New_York,540,NA,US,38.43,-78.87,28150 +22802,STANDARD,0,Harrisonburg,Rockingham,,VA,"Harrisonburg city",America/New_York,540,NA,US,38.49,-78.86,23930 +22803,"PO BOX",0,Harrisonburg,,,VA,"Harrisonburg City",America/New_York,540,NA,US,38.51,-78.94,987 +22807,UNIQUE,0,Harrisonburg,,"Hburg, James Madison University",VA,"Harrisonburg city",America/New_York,540,NA,US,38.43,-78.87,49 +22810,STANDARD,0,Basye,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.83,-78.8,890 +22811,STANDARD,0,Bergton,,,VA,"Rockingham County",America/New_York,540,NA,US,38.79,-78.96,440 +22812,STANDARD,0,Bridgewater,,,VA,"Rockingham County",America/New_York,540,NA,US,38.38,-78.96,7530 +22815,STANDARD,0,Broadway,,,VA,"Rockingham County",America/New_York,540,NA,US,38.6,-78.79,8370 +22820,STANDARD,0,Criders,,,VA,"Rockingham County",America/New_York,540,NA,US,38.75,-79,180 +22821,STANDARD,0,Dayton,Montezuma,,VA,"Rockingham County",America/New_York,540,NA,US,38.47,-79.08,5390 +22824,STANDARD,0,Edinburg,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.82,-78.56,5550 +22827,STANDARD,0,Elkton,,,VA,"Rockingham County",America/New_York,540,NA,US,38.41,-78.61,9570 +22830,STANDARD,0,"Fulks Run",,,VA,"Rockingham County",America/New_York,540,NA,US,38.63,-78.98,1500 +22831,STANDARD,0,Hinton,,"Rawley Springs, Rawley Sprngs",VA,"Rockingham County",America/New_York,540,NA,US,38.48,-79,730 +22832,STANDARD,0,Keezletown,,,VA,"Rockingham County",America/New_York,540,NA,US,38.45,-78.76,1020 +22833,"PO BOX",0,"Lacey Spring",,,VA,"Rockingham County",America/New_York,540,NA,US,38.54,-78.73,127 +22834,STANDARD,0,Linville,,,VA,"Rockingham County",America/New_York,540,NA,US,38.56,-78.86,1240 +22835,STANDARD,0,Luray,,"Shenandoah National Park, Shndoh Nat Pk",VA,"Page County",America/New_York,540,NA,US,38.66,-78.45,9860 +22840,STANDARD,0,"Mc Gaheysville","Massanutten, Mcgaheysville","Mc Gaheysvlle",VA,"Rockingham County",America/New_York,540,NA,US,38.36,-78.74,4310 +22841,STANDARD,0,"Mount Crawford","Mt Crawford",Crosskeys,VA,"Rockingham County",America/New_York,,NA,US,38.35,-78.94,2650 +22842,STANDARD,0,"Mount Jackson",,"South Jackson",VA,"Shenandoah County",America/New_York,540,NA,US,38.74,-78.63,4530 +22843,STANDARD,0,"Mount Solon",,,VA,"Augusta County",America/New_York,540,NA,US,38.36,-79.16,2170 +22844,STANDARD,0,"New Market",,Alpine,VA,"Shenandoah County",America/New_York,540,NA,US,38.64,-78.67,3920 +22845,STANDARD,0,"Orkney Springs","Orkney Spgs",,VA,"Shenandoah County",America/New_York,540,NA,US,38.79,-78.82,55 +22846,STANDARD,0,"Penn Laird",,,VA,"Rockingham County",America/New_York,540,NA,US,38.36,-78.79,2200 +22847,STANDARD,0,Quicksburg,"Shenandoah Caverns, Shendoah Cvrn",,VA,"Shenandoah County",America/New_York,540,NA,US,38.73,-78.72,900 +22848,"PO BOX",0,"Pleasant Valley","Pleasant Vly",,VA,"Rockingham County",America/New_York,540,NA,US,38.36,-78.87,30 +22849,STANDARD,0,Shenandoah,,,VA,"Page County",America/New_York,540,NA,US,38.48,-78.62,4240 +22850,STANDARD,0,"Singers Glen",,,VA,"Rockingham County",America/New_York,540,NA,US,38.56,-78.92,900 +22851,STANDARD,0,Stanley,,,VA,"Page County",America/New_York,540,NA,US,38.57,-78.5,5000 +22853,STANDARD,0,Timberville,,,VA,"Rockingham County",America/New_York,540,NA,US,38.63,-78.77,4040 +22901,STANDARD,0,Charlottesville,Charlottesvle,Chville,VA,"Albemarle County",America/New_York,434,NA,US,38.09,-78.56,32510 +22902,STANDARD,0,Charlottesville,"Charlottesvle, Monticello",,VA,"Charlottesville city",America/New_York,434,NA,US,38.03,-78.48,19530 +22903,STANDARD,0,Charlottesville,"Charlottesvle, University",,VA,"Charlottesville city",America/New_York,434,NA,US,38.01,-78.6,26010 +22904,STANDARD,0,Charlottesville,Charlottesvle,"Newcomb Hall",VA,"Albemarle County",America/New_York,434,NA,US,38.03,-78.52,179 +22905,"PO BOX",0,Charlottesville,Charlottesvle,,VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,487 +22906,"PO BOX",0,Charlottesville,Charlottesvle,,VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,994 +22907,UNIQUE,0,Charlottesville,Charlottesvle,"Charlottesvile Brm",VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,0 +22908,UNIQUE,0,Charlottesville,Charlottesvle,"Un Va Med Ctr, Univ Of Va Med Ctr",VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,19 +22909,UNIQUE,0,Charlottesville,Charlottesvle,"State Farm Insurance",VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,0 +22910,UNIQUE,0,Charlottesville,Charlottesvle,Embarq,VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,0 +22911,STANDARD,0,Charlottesville,Charlottesvle,,VA,"Albemarle County",America/New_York,434,NA,US,38.1,-78.41,17710 +22920,STANDARD,0,Afton,,,VA,"Nelson County",America/New_York,,NA,US,38.03,-78.83,3630 +22922,STANDARD,0,Arrington,"Lowesville, Tye River",,VA,"Nelson County",America/New_York,434,NA,US,37.68,-78.9,1640 +22923,STANDARD,0,Barboursville,"Burnleys, Eheart",,VA,"Greene County",America/New_York,,NA,US,38.17,-78.28,5410 +22924,"PO BOX",0,Batesville,,,VA,"Albemarle County",America/New_York,,NA,US,38.01,-78.63,349 +22931,STANDARD,0,Covesville,,,VA,"Albemarle County",America/New_York,,NA,US,37.89,-78.7,350 +22932,STANDARD,0,Crozet,"Yancey Mills",,VA,"Albemarle County",America/New_York,434,NA,US,38.06,-78.69,9220 +22935,STANDARD,0,Dyke,"Boonesville, Nortonsville, St George",,VA,"Greene County",America/New_York,,NA,US,38.26,-78.57,940 +22936,STANDARD,0,Earlysville,,,VA,"Albemarle County",America/New_York,,NA,US,38.15,-78.48,5250 +22937,STANDARD,0,Esmont,,,VA,"Albemarle County",America/New_York,,NA,US,37.83,-78.6,1150 +22938,STANDARD,0,Faber,,,VA,"Nelson County",America/New_York,434,NA,US,37.85,-78.75,1130 +22939,STANDARD,0,Fishersville,,,VA,"Augusta County",America/New_York,540,NA,US,38.09,-78.96,5610 +22940,STANDARD,0,"Free Union","Mission Home",,VA,"Albemarle County",America/New_York,,NA,US,38.16,-78.56,1130 +22942,STANDARD,0,Gordonsville,"Zion Crossrds, Zion Crossroads","Boswells Tavern, Zion",VA,"Louisa County",America/New_York,540,NA,US,38.13,-78.18,8380 +22943,STANDARD,0,Greenwood,,,VA,"Albemarle County",America/New_York,540,NA,US,38.05,-78.77,540 +22945,"PO BOX",0,Ivy,,,VA,"Albemarle County",America/New_York,,NA,US,38.05,-78.59,444 +22946,STANDARD,0,Keene,,,VA,"Albemarle County",America/New_York,,NA,US,37.86,-78.57,260 +22947,STANDARD,0,Keswick,"Boyd Tavern, Campbell, Cismont, Cobham, Shadwell",,VA,"Albemarle County",America/New_York,,NA,US,38.02,-78.35,4780 +22948,STANDARD,0,"Locust Dale",,,VA,"Madison County",America/New_York,540,NA,US,38.36,-78.13,230 +22949,STANDARD,0,Lovingston,,,VA,"Nelson County",America/New_York,434,NA,US,37.77,-78.88,1230 +22952,STANDARD,0,Lyndhurst,Sherando,,VA,"Augusta County",America/New_York,540,NA,US,37.96,-78.96,1830 +22957,"PO BOX",0,"Montpelier Station","Mntpelier Sta",,VA,"Orange County",America/New_York,,NA,US,38.19,-78.11,117 +22958,STANDARD,0,Nellysford,,Wintergreen,VA,"Nelson County",America/New_York,434,NA,US,37.9,-78.9,1810 +22959,STANDARD,0,"North Garden",,"South Garden",VA,"Albemarle County",America/New_York,,NA,US,37.94,-78.63,1560 +22960,STANDARD,0,Orange,"Madison Mills, Montford, Nasons, Thornhill",,VA,"Orange County",America/New_York,540,NA,US,38.24,-78.11,9410 +22963,STANDARD,0,Palmyra,"Bybee, Cunningham, Wildwood, Wilmington","Lake Montcelo, Lake Monticello",VA,"Fluvanna County",America/New_York,434,NA,US,37.86,-78.26,15210 +22964,STANDARD,0,"Piney River",,,VA,"Nelson County",America/New_York,434,NA,US,37.71,-79.02,230 +22965,"PO BOX",0,Quinque,,,VA,"Greene County",America/New_York,434,NA,US,38.25,-78.38,268 +22967,STANDARD,0,Roseland,"Lowesville, Massies Mill, Wintergreen Resort, Wintergrn Rst","Massies Ml",VA,"Nelson County",America/New_York,,NA,US,37.8,-79.01,1930 +22968,STANDARD,0,Ruckersville,"Advance Mills",,VA,"Greene County",America/New_York,434,NA,US,38.23,-78.37,10100 +22969,STANDARD,0,Schuyler,,,VA,"Nelson County",America/New_York,434,NA,US,37.79,-78.69,1170 +22971,STANDARD,0,Shipman,Rockfish,,VA,"Nelson County",America/New_York,434,NA,US,37.72,-78.83,1440 +22972,STANDARD,0,Somerset,,"Old Somerset",VA,"Orange County",America/New_York,540,NA,US,38.22,-78.23,380 +22973,STANDARD,0,Stanardsville,,,VA,"Greene County",America/New_York,434,NA,US,38.3,-78.43,5560 +22974,STANDARD,0,Troy,,,VA,"Fluvanna County",America/New_York,,NA,US,37.94,-78.24,4200 +22976,STANDARD,0,Tyro,Roseland,,VA,"Nelson County",America/New_York,,NA,US,37.81,-79.06,240 +22980,STANDARD,0,Waynesboro,,Park,VA,"Waynesboro city",America/New_York,540,NA,US,38.06,-78.9,29230 +22987,"PO BOX",0,"White Hall",,,VA,"Albemarle County",America/New_York,,NA,US,38.11,-78.66,45 +22989,"PO BOX",0,"Woodberry Forest","Woodberry For","Wdberry Forst",VA,"Madison County",America/New_York,,NA,US,38.29,-78.13,195 +23001,"PO BOX",0,Achilles,,,VA,"Gloucester County",America/New_York,804,NA,US,37.28,-76.44,326 +23002,STANDARD,0,"Amelia Court House","Amelia Ct Hse","Amelia, Amelia Ch",VA,"Amelia County",America/New_York,804,NA,US,37.34,-77.96,9690 +23003,"PO BOX",0,Ark,,Akk,VA,"Gloucester County",America/New_York,804,NA,US,37.43,-76.57,810 +23004,STANDARD,0,Arvonia,,Akunia,VA,"Buckingham County",America/New_York,"804,434",NA,US,37.66,-78.41,720 +23005,STANDARD,0,Ashland,,Ashaiiu,VA,"Hanover County",America/New_York,804,NA,US,37.76,-77.47,15360 +23009,STANDARD,0,Aylett,,,VA,"King William County",America/New_York,804,NA,US,37.77,-77.12,6890 +23011,STANDARD,0,Barhamsville,,,VA,"New Kent County",America/New_York,804,NA,US,37.45,-76.84,970 +23014,STANDARD,0,Beaumont,,,VA,"Powhatan County",America/New_York,804,NA,US,37.76,-78.02,0 +23015,STANDARD,0,Beaverdam,,,VA,"Hanover County",America/New_York,804,NA,US,37.93,-77.63,4200 +23018,"PO BOX",0,Bena,,,VA,"Gloucester County",America/New_York,804,NA,US,37.27,-76.45,480 +23021,STANDARD,0,Bohannon,,,VA,"Mathews County",America/New_York,804,NA,US,37.39,-76.35,190 +23022,STANDARD,0,"Bremo Bluff",,,VA,"Fluvanna County",America/New_York,434,NA,US,37.71,-78.29,610 +23023,STANDARD,0,Bruington,,,VA,"King and Queen County",America/New_York,804,NA,US,37.77,-76.93,320 +23024,STANDARD,0,Bumpass,,,VA,"Louisa County",America/New_York,,NA,US,37.96,-77.73,7820 +23025,STANDARD,0,Cardinal,Miles,,VA,"Mathews County",America/New_York,804,NA,US,37.42,-76.37,250 +23027,STANDARD,0,Cartersville,Tamworth,,VA,"Cumberland County",America/New_York,804,NA,US,37.66,-78.1,1200 +23030,STANDARD,0,"Charles City",,,VA,"Charles City County",America/New_York,"804,757",NA,US,37.34,-77.07,4070 +23031,"PO BOX",0,Christchurch,,,VA,"Middlesex County",America/New_York,804,NA,US,37.57,-76.6,93 +23032,STANDARD,0,"Church View",,,VA,"Middlesex County",America/New_York,804,NA,US,37.67,-76.68,240 +23035,STANDARD,0,"Cobbs Creek",Blakes,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.39,1240 +23038,STANDARD,0,Columbia,,,VA,"Goochland County",America/New_York,804,NA,US,37.75,-78.16,1560 +23039,STANDARD,0,Crozier,,,VA,"Goochland County",America/New_York,,NA,US,37.63,-77.79,1040 +23040,STANDARD,0,Cumberland,,,VA,"Cumberland County",America/New_York,804,NA,US,37.49,-78.24,4040 +23043,STANDARD,0,Deltaville,,,VA,"Middlesex County",America/New_York,804,NA,US,37.55,-76.32,1440 +23045,STANDARD,0,Diggs,,,VA,"Mathews County",America/New_York,804,NA,US,37.43,-76.27,87 +23047,STANDARD,0,Doswell,,,VA,"Hanover County",America/New_York,804,NA,US,37.86,-77.46,2010 +23050,STANDARD,0,Dutton,,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.44,710 +23055,STANDARD,0,"Fork Union",,,VA,"Fluvanna County",America/New_York,434,NA,US,37.76,-78.26,940 +23056,STANDARD,0,Foster,Mobjack,,VA,"Mathews County",America/New_York,804,NA,US,37.45,-76.38,330 +23058,"PO BOX",0,"Glen Allen",,"Glenallen, Gln Alln",VA,"Henrico County",America/New_York,804,NA,US,37.66,-77.48,699 +23059,STANDARD,0,"Glen Allen",,"Glenallen, Gln Alln",VA,"Henrico County",America/New_York,804,NA,US,37.7,-77.57,37810 +23060,STANDARD,0,"Glen Allen",,"Glen Allenw, Glenallen, Gln Alln",VA,"Henrico County",America/New_York,804,NA,US,37.66,-77.48,36320 +23061,STANDARD,0,Gloucester,"Bellamy, Naxera, Pinero, Zanoni",,VA,"Gloucester County",America/New_York,804,NA,US,37.43,-76.54,18890 +23062,STANDARD,0,"Gloucester Point","Glou Point, Gloucester Pt","Glouster Point",VA,"Gloucester County",America/New_York,804,NA,US,37.26,-76.49,2420 +23063,STANDARD,0,Goochland,Fife,,VA,"Goochland County",America/New_York,804,NA,US,37.68,-77.88,4510 +23064,"PO BOX",0,Grimstead,,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.3,180 +23065,STANDARD,0,"Gum Spring",,Gumspring,VA,"Goochland County",America/New_York,,NA,US,37.77,-77.89,1470 +23066,"PO BOX",0,Gwynn,,Gwyme,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.28,361 +23067,"PO BOX",0,Hadensville,,,VA,"Goochland County",America/New_York,,NA,US,37.82,-77.99,135 +23068,STANDARD,0,Hallieford,,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.33,230 +23069,STANDARD,0,Hanover,Mangohick,,VA,"Hanover County",America/New_York,804,NA,US,37.76,-77.37,2960 +23070,STANDARD,0,Hardyville,,,VA,"Middlesex County",America/New_York,804,NA,US,37.55,-76.38,370 +23071,STANDARD,0,Hartfield,,,VA,"Middlesex County",America/New_York,804,NA,US,37.55,-76.44,1450 +23072,STANDARD,0,Hayes,,Glass,VA,"Gloucester County",America/New_York,804,NA,US,37.29,-76.45,10210 +23075,STANDARD,0,Henrico,"Highland Spgs, Highland Springs",,VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.32,8850 +23076,STANDARD,0,Hudgins,Redart,,VA,"Mathews County",America/New_York,804,NA,US,37.47,-76.32,650 +23079,STANDARD,0,Jamaica,,,VA,"Middlesex County",America/New_York,804,NA,US,37.71,-76.69,260 +23081,"PO BOX",0,Jamestown,Williamsburg,,VA,"James City County",America/New_York,757,NA,US,37.22,-76.76,0 +23083,STANDARD,0,Jetersville,,,VA,"Amelia County",America/New_York,804,NA,US,37.29,-78.09,1830 +23084,STANDARD,0,"Kents Store",,,VA,"Fluvanna County",America/New_York,540,NA,US,37.87,-78.12,1700 +23085,STANDARD,0,"King And Queen Court House","King Queen Ch","King And Qn C H, Kingqueen Court House",VA,"King and Queen County",America/New_York,804,NA,US,37.72,-76.84,330 +23086,STANDARD,0,"King William",,,VA,"King William County",America/New_York,804,NA,US,37.68,-77.01,3020 +23089,STANDARD,0,Lanexa,,,VA,"New Kent County",America/New_York,804,NA,US,37.42,-76.9,4820 +23090,"PO BOX",0,Lightfoot,,,VA,"James City",America/New_York,757,NA,US,37.34,-76.75,501 +23091,STANDARD,0,"Little Plymouth","Little Plymth",,VA,"King and Queen County",America/New_York,804,NA,US,37.66,-76.8,260 +23092,STANDARD,0,"Locust Hill",,,VA,"Middlesex County",America/New_York,804,NA,US,37.59,-76.5,470 +23093,STANDARD,0,Louisa,,,VA,"Louisa County",America/New_York,540,NA,US,38.01,-77.99,12230 +23101,"PO BOX",1,Macon,,,VA,"Powhatan County",America/New_York,804,NA,US,37.52,-77.96,22 +23102,STANDARD,0,Maidens,Dabneys,,VA,"Goochland County",America/New_York,804,NA,US,37.71,-77.83,2810 +23103,STANDARD,0,"Manakin Sabot",,"Manakin, Sabot",VA,"Goochland County",America/New_York,804,NA,US,37.64,-77.7,5800 +23105,"PO BOX",0,Mannboro,,,VA,"Amelia County",America/New_York,804,NA,US,37.25,-77.82,0 +23106,STANDARD,0,Manquin,,,VA,"King William County",America/New_York,804,NA,US,37.7,-77.15,1130 +23107,"PO BOX",0,Maryus,,,VA,"Gloucester County",America/New_York,804,NA,US,37.27,-76.4,0 +23108,STANDARD,0,Mascot,,,VA,"King and Queen County",America/New_York,804,NA,US,37.62,-76.7,131 +23109,STANDARD,0,Mathews,Beaverlett,,VA,"Mathews County",America/New_York,804,NA,US,37.43,-76.32,1900 +23110,STANDARD,0,Mattaponi,,,VA,"King and Queen County",America/New_York,804,NA,US,37.53,-76.77,580 +23111,STANDARD,0,Mechanicsville,Mechanicsvlle,,VA,"Hanover County",America/New_York,804,NA,US,37.62,-77.35,35560 +23112,STANDARD,0,Midlothian,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.43,-77.66,51730 +23113,STANDARD,0,Midlothian,,"Sycamore Square",VA,"Chesterfield County",America/New_York,804,NA,US,37.54,-77.68,26240 +23114,STANDARD,0,Midlothian,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.48,-77.65,20060 +23115,"PO BOX",0,"Millers Tavern","Millers Tavrn",,VA,"Essex County",America/New_York,804,NA,US,37.81,-76.91,483 +23116,STANDARD,0,Mechanicsville,Mechanicsvlle,,VA,"Hanover County",America/New_York,804,NA,US,37.68,-77.34,31620 +23117,STANDARD,0,Mineral,,,VA,"Louisa County",America/New_York,540,NA,US,38,-77.9,8930 +23119,STANDARD,0,Moon,,,VA,"Mathews County",America/New_York,804,NA,US,37.45,-76.28,260 +23120,STANDARD,0,Moseley,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.41,-77.77,13840 +23123,STANDARD,0,"New Canton",,,VA,"Buckingham County",America/New_York,434,NA,US,37.7,-78.3,1430 +23124,STANDARD,0,"New Kent",,,VA,"New Kent County",America/New_York,804,NA,US,37.51,-76.97,4680 +23125,STANDARD,0,"New Point",,,VA,"Mathews County",America/New_York,804,NA,US,37.34,-76.28,117 +23126,STANDARD,0,Newtown,,,VA,"King and Queen County",America/New_York,804,NA,US,37.91,-77.12,430 +23127,"PO BOX",0,Norge,,,VA,"James City County",America/New_York,757,NA,US,37.36,-76.77,326 +23128,STANDARD,0,North,"James Store",,VA,"Mathews County",America/New_York,804,NA,US,37.44,-76.43,980 +23129,STANDARD,0,Oilville,,,VA,"Goochland County",America/New_York,,NA,US,37.7,-77.78,440 +23130,STANDARD,0,Onemo,,,VA,"Mathews County",America/New_York,804,NA,US,37.39,-76.27,136 +23131,"PO BOX",0,Ordinary,,,VA,"Gloucester County",America/New_York,804,NA,US,37.31,-76.51,235 +23138,STANDARD,0,"Port Haywood","Bavon, Peary",,VA,"Mathews County",America/New_York,804,NA,US,37.38,-76.31,830 +23139,STANDARD,0,Powhatan,Macon,"Powhatand, Powhatano",VA,"Powhatan County",America/New_York,804,NA,US,37.54,-77.92,25560 +23140,STANDARD,0,"Providence Forge","Provdence Frg",,VA,"New Kent County",America/New_York,804,NA,US,37.44,-77.04,5570 +23141,STANDARD,0,Quinton,,,VA,"New Kent County",America/New_York,804,NA,US,37.53,-77.11,8520 +23146,STANDARD,0,Rockville,,,VA,"Hanover County",America/New_York,804,NA,US,37.72,-77.67,3010 +23147,"PO BOX",0,Ruthville,,,VA,"Charles City",America/New_York,804,NA,US,37.36,-77.04,209 +23148,STANDARD,0,"Saint Stephens Church","Cauthornville, Indian Neck, St Stephens Church, St Stephns Ch",,VA,"King and Queen County",America/New_York,804,NA,US,37.8,-77.05,1390 +23149,STANDARD,0,Saluda,,Glenns,VA,"Middlesex County",America/New_York,804,NA,US,37.6,-76.59,2340 +23150,STANDARD,0,Sandston,,,VA,"Henrico County",America/New_York,804,NA,US,37.51,-77.27,11310 +23153,STANDARD,0,"Sandy Hook",,,VA,"Goochland County",America/New_York,804,NA,US,37.75,-77.91,1520 +23154,"PO BOX",0,Schley,,,VA,"Gloucester County",America/New_York,804,NA,US,37.39,-76.44,44 +23155,"PO BOX",0,Severn,,,VA,"Gloucester County",America/New_York,804,NA,US,37.29,-76.41,0 +23156,STANDARD,0,Shacklefords,"Plain View",Plainview,VA,"King and Queen County",America/New_York,804,NA,US,37.54,-76.73,1420 +23160,STANDARD,0,"State Farm",,,VA,"Powhatan County",America/New_York,804,NA,US,37.63,-77.85,19 +23161,STANDARD,0,Stevensville,,,VA,"King and Queen County",America/New_York,804,NA,US,37.72,-76.92,126 +23162,"PO BOX",0,Studley,,,VA,"Hanover County",America/New_York,804,NA,US,37.67,-77.29,215 +23163,STANDARD,0,Susan,Shadow,,VA,"Mathews County",America/New_York,804,NA,US,37.36,-76.31,200 +23168,STANDARD,0,Toano,,,VA,"James City County",America/New_York,757,NA,US,37.37,-76.8,8230 +23169,STANDARD,0,Topping,Syringa,,VA,"Middlesex County",America/New_York,804,NA,US,37.59,-76.46,940 +23170,"PO BOX",0,Trevilians,,,VA,"Louisa County",America/New_York,,NA,US,38.05,-78.07,42 +23173,UNIQUE,0,Richmond,,"Univ Of Rich, University Of Rich, University Of Richmond",VA,"Richmond city",America/New_York,804,NA,US,37.58,-77.54,108 +23175,STANDARD,0,Urbanna,Warner,,VA,"Middlesex County",America/New_York,804,NA,US,37.65,-76.63,1660 +23176,STANDARD,0,Wake,,,VA,"Middlesex County",America/New_York,804,NA,US,37.56,-76.42,570 +23177,STANDARD,0,Walkerton,,,VA,"King and Queen County",America/New_York,804,NA,US,37.72,-77.02,590 +23178,"PO BOX",0,"Ware Neck",,,VA,"Gloucester County",America/New_York,804,NA,US,37.4,-76.45,168 +23180,STANDARD,0,"Water View",,,VA,"Middlesex County",America/New_York,804,NA,US,37.72,-76.61,350 +23181,STANDARD,0,"West Point",Cologne,Eltham,VA,"King William County",America/New_York,804,NA,US,37.55,-76.8,5230 +23183,"PO BOX",0,"White Marsh",,,VA,"Gloucester County",America/New_York,804,NA,US,37.34,-76.52,823 +23184,"PO BOX",0,Wicomico,,,VA,"Gloucester County",America/New_York,804,NA,US,37.29,-76.51,840 +23185,STANDARD,0,Williamsburg,,"Wlmg, Wmsbg",VA,"James City County",America/New_York,757,NA,US,37.27,-76.7,40960 +23186,UNIQUE,0,Williamsburg,,"College Of William & Mary, Wlmg",VA,"Williamsburg City",America/New_York,757,NA,US,37.27,-76.7,48 +23187,"PO BOX",0,Williamsburg,,Wlmg,VA,"Williamsburg city",America/New_York,757,NA,US,37.27,-76.72,1002 +23188,STANDARD,0,Williamsburg,,Wlmg,VA,"James City County",America/New_York,757,NA,US,37.35,-76.77,42290 +23190,"PO BOX",0,"Woods Cross Roads","Woods Crs Rds","Woods Cr Rds, Woods Cross Rds",VA,"Gloucester County",America/New_York,804,NA,US,37.43,-76.54,26 +23192,STANDARD,0,Montpelier,,,VA,"Hanover County",America/New_York,804,NA,US,37.81,-77.67,6460 +23218,"PO BOX",0,Richmond,,Capitol,VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,413 +23219,STANDARD,0,Richmond,,Capitol,VA,"Richmond city",America/New_York,804,NA,US,37.54,-77.44,2860 +23220,STANDARD,0,Richmond,,Saunders,VA,"Richmond city",America/New_York,804,NA,US,37.55,-77.46,18960 +23221,STANDARD,0,Richmond,,Stewart,VA,"Richmond city",America/New_York,804,NA,US,37.55,-77.49,12420 +23222,STANDARD,0,Richmond,,,VA,"Richmond city",America/New_York,804,NA,US,37.58,-77.42,20290 +23223,STANDARD,0,Richmond,,,VA,"Henrico County",America/New_York,804,NA,US,37.56,-77.38,40820 +23224,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield",,VA,"Richmond city",America/New_York,804,NA,US,37.5,-77.47,29150 +23225,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield","Forest Hill",VA,"Richmond city",America/New_York,804,NA,US,37.52,-77.51,32710 +23226,STANDARD,0,Richmond,,,VA,"Richmond city",America/New_York,804,NA,US,37.58,-77.52,15410 +23227,STANDARD,0,Richmond,,,VA,"Henrico County",America/New_York,804,NA,US,37.61,-77.44,20850 +23228,STANDARD,0,Henrico,Richmond,"Staples Mill",VA,"Henrico County",America/New_York,804,NA,US,37.63,-77.49,30520 +23229,STANDARD,0,Henrico,"Regency, Richmond","Tuckahoe, Westbury",VA,"Henrico County",America/New_York,804,NA,US,37.59,-77.57,32120 +23230,STANDARD,0,Richmond,,,VA,"Henrico County",America/New_York,804,NA,US,37.59,-77.49,6390 +23231,STANDARD,0,Henrico,Richmond,"Millers, Montrose, Montrose Heights, Varina",VA,"Henrico County",America/New_York,804,NA,US,37.44,-77.32,32750 +23232,STANDARD,0,Richmond,,,VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,21 +23233,STANDARD,0,Henrico,"Richmond, Ridge",,VA,"Henrico County",America/New_York,804,NA,US,37.65,-77.62,30810 +23234,STANDARD,0,Richmond,"Ampthill, N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.45,-77.47,38340 +23235,STANDARD,0,Richmond,"Bon Air, N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.51,-77.56,30750 +23236,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.48,-77.59,26310 +23237,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.4,-77.45,21770 +23238,STANDARD,0,Henrico,Richmond,,VA,"Henrico County",America/New_York,804,NA,US,37.6,-77.65,23660 +23240,STANDARD,1,Richmond,,,VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23241,"PO BOX",0,Richmond,,"Central Sta, Rich, Richmnd",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,114 +23242,"PO BOX",0,Henrico,Richmond,"Rich, Richmnd",VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,244 +23249,UNIQUE,0,Richmond,,"Mcguire Veterans Hospital",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23250,STANDARD,0,Richmond,"Henrico, Rich Int Ap, Richmond Int Airport","Air Mail Facility, Rich, Richmnd",VA,"Henrico County",America/New_York,804,NA,US,37.5,-77.32,66 +23255,"PO BOX",0,Henrico,Richmond,,VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,414 +23260,"PO BOX",0,Richmond,,"Main Office",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,369 +23261,"PO BOX",0,Richmond,,"Main Office",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,713 +23269,UNIQUE,0,Richmond,,"Div Motor Veh, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23273,UNIQUE,0,Henrico,Richmond,"County Of Henrico",VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,19 +23274,UNIQUE,0,Richmond,,"Dept Public Utilities",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23276,UNIQUE,0,Richmond,,"Capital One",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23278,UNIQUE,0,Richmond,,"Wachovia Bank",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23279,UNIQUE,0,Richmond,,"Anthem/Blue Cross Blue Shiel, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23282,UNIQUE,0,Richmond,,"Va Dept Tax",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23284,"PO BOX",0,Richmond,,"Vcu West",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23285,"PO BOX",0,Richmond,,"Rich, Richmnd",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,66 +23286,UNIQUE,0,Richmond,,"Rich, Richmond Brm",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23288,UNIQUE,0,Henrico,Richmond,"Koger Executive Ctr, Rich",VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,31 +23289,UNIQUE,0,Richmond,,"Internal Revenue Service, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23290,UNIQUE,0,Richmond,,"Dominion Virginia Power",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23291,UNIQUE,0,Richmond,,"Suntrust Bank",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23292,UNIQUE,0,Richmond,,"Bank Of America, Nationsbank Mortgage",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23293,UNIQUE,0,Richmond,,"Richmond Newspapers",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23294,STANDARD,0,Henrico,Richmond,,VA,"Henrico County",America/New_York,804,NA,US,37.63,-77.54,15610 +23295,UNIQUE,0,Richmond,,"Capital One",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.45,0 +23297,UNIQUE,0,Richmond,,"Defense General Supply Ct, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23298,STANDARD,0,Richmond,,"Vcu Mcv East",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,31 +23301,STANDARD,0,Accomac,,,VA,"Accomack County",America/New_York,757,NA,US,37.71,-75.66,1520 +23302,STANDARD,0,Assawoman,,,VA,"Accomack County",America/New_York,757,NA,US,37.87,-75.52,153 +23303,STANDARD,0,Atlantic,,,VA,"Accomack County",America/New_York,757,NA,US,37.9,-75.5,750 +23304,"PO BOX",0,"Battery Park",,,VA,"Isle of Wight County",America/New_York,757,NA,US,37,-76.57,196 +23306,STANDARD,0,"Belle Haven",,,VA,"Accomack County",America/New_York,757,NA,US,37.56,-75.87,970 +23307,STANDARD,0,Birdsnest,,,VA,"Northampton County",America/New_York,757,NA,US,37.43,-75.88,440 +23308,STANDARD,0,Bloxom,,,VA,"Accomack County",America/New_York,757,NA,US,37.83,-75.62,1370 +23310,STANDARD,0,"Cape Charles",,,VA,"Northampton County",America/New_York,757,NA,US,37.27,-76.01,2920 +23313,"PO BOX",0,Capeville,,,VA,"Northampton County",America/New_York,757,NA,US,37.2,-75.95,196 +23314,STANDARD,0,Carrollton,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.94,-76.56,8800 +23315,STANDARD,0,Carrsville,Walters,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.71,-76.82,1320 +23316,"PO BOX",0,Cheriton,,,VA,"Northampton County",America/New_York,757,NA,US,37.28,-75.96,1567 +23320,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.75,-76.22,53330 +23321,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.8,-76.42,35100 +23322,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.62,-76.23,61850 +23323,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.67,-76.3,39150 +23324,STANDARD,0,Chesapeake,"South Norfolk",,VA,"Chesapeake city",America/New_York,757,NA,US,36.8,-76.27,20290 +23325,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.81,-76.24,15540 +23326,UNIQUE,0,Chesapeake,,"Coast Guard Finance Center",VA,"Chesapeake City",America/New_York,757,NA,US,36.67,-76.3,0 +23327,"PO BOX",0,Chesapeake,,,VA,"Chesapeake City",America/New_York,757,NA,US,36.67,-76.3,577 +23328,"PO BOX",0,Chesapeake,,,VA,"Chesapeake City",America/New_York,757,NA,US,36.67,-76.3,478 +23336,STANDARD,0,"Chincoteague Island",Chincoteague,,VA,"Accomack County",America/New_York,757,NA,US,37.95,-75.33,2840 +23337,STANDARD,0,"Wallops Island","Chincoteague, Chincoteague Island, Wallops Is",,VA,"Accomack County",America/New_York,757,NA,US,37.93,-75.49,360 +23341,"PO BOX",0,Craddockville,,,VA,"Accomack County",America/New_York,757,NA,US,37.6,-75.86,218 +23345,STANDARD,0,"Davis Wharf",,,VA,"Accomack County",America/New_York,757,NA,US,37.56,-75.88,0 +23347,"PO BOX",0,Eastville,,,VA,"Northampton County",America/New_York,757,NA,US,37.35,-75.94,1224 +23350,STANDARD,0,Exmore,,,VA,"Northampton County",America/New_York,757,NA,US,37.53,-75.82,2720 +23354,STANDARD,0,Franktown,,Bayford,VA,"Northampton County",America/New_York,757,NA,US,37.46,-75.91,410 +23356,STANDARD,0,Greenbackville,Greenbackvile,,VA,"Accomack County",America/New_York,757,NA,US,38,-75.41,1320 +23357,STANDARD,0,Greenbush,,,VA,"Accomack County",America/New_York,757,NA,US,37.76,-75.67,620 +23358,STANDARD,0,Hacksneck,"Hacks Neck",,VA,"Accomack County",America/New_York,757,NA,US,37.66,-75.86,41 +23359,STANDARD,0,Hallwood,,,VA,"Accomack County",America/New_York,757,NA,US,37.87,-75.58,450 +23389,"PO BOX",0,Harborton,,,VA,"Accomack County",America/New_York,757,NA,US,37.66,-75.84,124 +23395,STANDARD,0,Horntown,,,VA,"Accomack County",America/New_York,757,NA,US,37.97,-75.46,590 +23396,STANDARD,0,"Oak Hall",,,VA,"Accomack County",America/New_York,757,NA,US,37.93,-75.54,0 +23397,"PO BOX",0,"Isle Of Wight",,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.9,-76.7,0 +23398,"PO BOX",0,Jamesville,,,VA,"Northampton County",America/New_York,757,NA,US,37.52,-75.94,281 +23399,STANDARD,0,"Jenkins Bridge","Jenkins Brg",,VA,"Accomack County",America/New_York,757,NA,US,37.91,-75.63,0 +23401,"PO BOX",0,Keller,,,VA,"Accomack County",America/New_York,757,NA,US,37.62,-75.76,372 +23404,STANDARD,0,Locustville,,,VA,"Accomack County",America/New_York,757,NA,US,37.65,-75.67,116 +23405,STANDARD,0,Machipongo,,,VA,"Northampton County",America/New_York,757,NA,US,37.4,-75.9,790 +23407,"PO BOX",0,Mappsville,,,VA,"Accomack County",America/New_York,757,NA,US,37.84,-75.58,551 +23408,"PO BOX",0,Marionville,,,VA,"Northampton County",America/New_York,757,NA,US,37.45,-75.84,115 +23409,STANDARD,0,Mears,,,VA,"Accomack County",America/New_York,757,NA,US,37.89,-75.66,67 +23410,STANDARD,0,Melfa,,,VA,"Accomack County",America/New_York,757,NA,US,37.64,-75.74,1730 +23412,"PO BOX",0,"Modest Town",,,VA,"Accomack County",America/New_York,757,NA,US,37.81,-75.57,68 +23413,"PO BOX",0,Nassawadox,Weirwood,,VA,"Northampton County",America/New_York,757,NA,US,37.47,-75.86,1040 +23414,"PO BOX",0,Nelsonia,,,VA,"Accomack County",America/New_York,757,NA,US,37.81,-75.58,407 +23415,STANDARD,0,"New Church",,,VA,"Accomack County",America/New_York,757,NA,US,37.97,-75.53,1390 +23416,STANDARD,0,"Oak Hall",,,VA,"Accomack County",America/New_York,757,NA,US,37.93,-75.54,410 +23417,STANDARD,0,Onancock,,,VA,"Accomack County",America/New_York,757,NA,US,37.7,-75.74,2940 +23418,STANDARD,0,Onley,,,VA,"Accomack County",America/New_York,757,NA,US,37.69,-75.71,1390 +23419,"PO BOX",0,Oyster,,,VA,"Northampton County",America/New_York,757,NA,US,37.28,-75.92,0 +23420,STANDARD,0,Painter,,,VA,"Accomack County",America/New_York,757,NA,US,37.58,-75.78,1720 +23421,STANDARD,0,Parksley,"Lee Mont",,VA,"Accomack County",America/New_York,757,NA,US,37.78,-75.65,3330 +23422,"PO BOX",0,Pungoteague,,,VA,"Accomack County",America/New_York,757,NA,US,37.62,-75.81,522 +23423,"PO BOX",0,Quinby,,,VA,"Accomack County",America/New_York,757,NA,US,37.55,-75.73,269 +23424,"PO BOX",0,Rescue,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.99,-76.55,222 +23426,STANDARD,0,Sanford,,,VA,"Accomack County",America/New_York,757,NA,US,37.92,-75.66,166 +23427,"PO BOX",0,Saxis,,,VA,"Accomack County",America/New_York,757,NA,US,37.92,-75.72,237 +23429,"PO BOX",0,Seaview,,,VA,"Northampton County",America/New_York,757,NA,US,37.27,-75.95,0 +23430,STANDARD,0,Smithfield,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.98,-76.61,16820 +23431,"PO BOX",0,Smithfield,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.98,-76.61,465 +23432,STANDARD,0,Suffolk,,Chuckatuck,VA,"Suffolk city",America/New_York,757,NA,US,36.88,-76.55,1470 +23433,STANDARD,0,Suffolk,,Crittenden,VA,"Suffolk city",America/New_York,757,NA,US,36.92,-76.46,1250 +23434,STANDARD,0,Suffolk,,,VA,"Suffolk city",America/New_York,757,NA,US,36.7,-76.63,44100 +23435,STANDARD,0,Suffolk,,Driver,VA,"Suffolk city",America/New_York,757,NA,US,36.84,-76.48,29490 +23436,STANDARD,0,Suffolk,,,VA,"Suffolk city",America/New_York,757,NA,US,36.89,-76.51,910 +23437,STANDARD,0,Suffolk,,Holland,VA,"Suffolk city",America/New_York,757,NA,US,36.63,-76.8,3940 +23438,STANDARD,0,Suffolk,,Whaleyville,VA,"Suffolk city",America/New_York,757,NA,US,36.58,-76.7,1690 +23439,"PO BOX",0,Suffolk,,,VA,"Suffolk City",America/New_York,757,NA,US,36.7,-76.63,1016 +23440,"PO BOX",0,Tangier,,,VA,"Accomack County",America/New_York,757,NA,US,37.82,-75.99,512 +23441,"PO BOX",0,Tasley,,,VA,"Accomack County",America/New_York,757,NA,US,37.71,-75.7,555 +23442,STANDARD,0,Temperanceville,Temperancevle,,VA,"Accomack County",America/New_York,757,NA,US,37.89,-75.54,860 +23443,"PO BOX",0,Townsend,,,VA,"Northampton County",America/New_York,757,NA,US,37.18,-75.95,194 +23450,"PO BOX",0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,851 +23451,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.87,-76.01,37610 +23452,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.85,-76.09,52720 +23453,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.78,-76.08,32740 +23454,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.82,-76.03,53080 +23455,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.89,-76.15,43600 +23456,STANDARD,0,"Virginia Beach","Princess Anne, Va Bch, Va Beach, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.73,-76.04,56380 +23457,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.61,-76.02,4270 +23458,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,155 +23459,STANDARD,0,"Virginia Beach","Fort Story, Virginia Bch","Little Creek Naval Amphibiou, Nav Amph Base, Naval Amphib Base, Naval Amphibious Base",VA,"Virginia Beach city",America/New_York,757,NA,US,36.92,-76.02,589 +23460,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.81,-76.03,865 +23461,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.78,-75.96,282 +23462,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.84,-76.15,57250 +23463,UNIQUE,0,"Virginia Beach","Virginia Bch","Chrstn Brdcst Network",VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,57 +23464,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.8,-76.19,68640 +23465,UNIQUE,0,"Virginia Beach","Virginia Bch","Chrstn Brdcst Network, Chrstn Brdcst Ntwrk Brm",VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,74 +23466,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,604 +23467,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,508 +23471,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,824 +23479,UNIQUE,0,"Virginia Beach","Virginia Bch","Lillian Vernon",VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,0 +23480,"PO BOX",0,Wachapreague,,,VA,"Accomack County",America/New_York,757,NA,US,37.62,-75.69,372 +23482,"PO BOX",0,Wardtown,,,VA,"Northampton County",America/New_York,757,NA,US,37.5,-75.87,0 +23483,"PO BOX",0,Wattsville,,,VA,"Accomack County",America/New_York,757,NA,US,37.9,-75.5,80 +23486,"PO BOX",0,"Willis Wharf",,,VA,"Northampton County",America/New_York,757,NA,US,37.51,-75.81,227 +23487,STANDARD,0,Windsor,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.8,-76.73,5740 +23488,STANDARD,0,Withams,,,VA,"Accomack County",America/New_York,757,NA,US,37.95,-75.6,190 +23501,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,893 +23502,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.86,-76.2,17230 +23503,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.95,-76.27,25050 +23504,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.86,-76.27,16000 +23505,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.91,-76.29,22260 +23506,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,0 +23507,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.86,-76.3,4830 +23508,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.88,-76.31,11620 +23509,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.88,-76.26,11170 +23510,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.85,-76.29,5920 +23511,STANDARD,0,Norfolk,"Fleet, Naval Base","Joint Forces Staff College, Naval Communications Area Ma, Norfolk Naval Air Station, Norfolk Naval Public Works C, Norfolk Naval Station",VA,"Norfolk city",America/New_York,757,NA,US,36.91,-76.33,1830 +23512,UNIQUE,1,Norfolk,,"Naval Defense Distrib Ctr",VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,33 +23513,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.89,-76.24,25020 +23514,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,242 +23515,UNIQUE,0,Norfolk,,"Fleet Marine Force Atlantic",VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,59 +23517,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.87,-76.29,4000 +23518,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.92,-76.22,26300 +23519,STANDARD,0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,0 +23520,STANDARD,1,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,0 +23521,STANDARD,1,Norfolk,,,VA,"Virginia Beach City",America/New_York,757,NA,US,36.84,-76.28,1005 +23523,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.84,-76.28,5970 +23529,UNIQUE,0,Norfolk,,"Old Dominion University",VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,14 +23541,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,408 +23551,UNIQUE,0,Norfolk,,Cinclantflt,VA,"Norfolk city",America/New_York,757,NA,US,36.92,-76.29,151 +23601,STANDARD,0,"Newport News",,"N N",VA,"Newport News city",America/New_York,757,NA,US,37.04,-76.48,22350 +23602,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,37.11,-76.52,36660 +23603,STANDARD,0,"Newport News",,"Lee Hall",VA,"Newport News city",America/New_York,757,NA,US,37.19,-76.56,3200 +23604,STANDARD,0,"Fort Eustis","Newport News",,VA,"Newport News city",America/New_York,757,NA,US,37.12,-76.59,3550 +23605,STANDARD,0,"Newport News",Hampton,,VA,"Newport News city",America/New_York,757,NA,US,37.02,-76.44,11200 +23606,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,37.07,-76.51,23570 +23607,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,36.97,-76.42,16210 +23608,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,37.15,-76.54,38960 +23609,"PO BOX",0,"Newport News",,,VA,"Newport News City",America/New_York,757,NA,US,37.07,-76.51,526 +23612,"PO BOX",0,"Newport News",,,VA,"Newport News City",America/New_York,757,NA,US,37.07,-76.51,163 +23628,UNIQUE,0,"Newport News",,"Us Army Trng Support Ctr",VA,"Newport News City",America/New_York,757,NA,US,37.07,-76.51,0 +23630,UNIQUE,0,Hampton,,"Family Fashions By Avon",VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,0 +23651,STANDARD,0,"Fort Monroe",Hampton,,VA,"Hampton city",America/New_York,757,NA,US,37.01,-76.3,440 +23661,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.01,-76.39,11350 +23662,STANDARD,0,Poquoson,Hampton,,VA,"Poquoson city",America/New_York,757,NA,US,37.12,-76.34,11900 +23663,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.03,-76.31,10970 +23664,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.04,-76.29,9040 +23665,STANDARD,0,Hampton,"Langley AFB","Langley, Langley Air Force Base",VA,"York County",America/New_York,757,NA,US,37.08,-76.37,5410 +23666,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.06,-76.41,45360 +23667,UNIQUE,0,Hampton,,"Kecoughtan Veterans Hospital",VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,48 +23668,UNIQUE,0,Hampton,,"Hampton University",VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,55 +23669,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.05,-76.34,32880 +23670,"PO BOX",0,Hampton,,,VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,338 +23681,UNIQUE,0,Hampton,,Nasa,VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,0 +23690,STANDARD,0,Yorktown,,,VA,"York County",America/New_York,757,NA,US,37.23,-76.5,3230 +23691,STANDARD,0,Yorktown,"Nav Wpns Sta, Naval Weapons Station","Naval Weapons Sta, Yorktown Naval Weapons Stati",VA,"York County",America/New_York,757,NA,US,37.26,-76.55,200 +23692,STANDARD,0,Yorktown,Grafton,,VA,"York County",America/New_York,757,NA,US,37.19,-76.46,18680 +23693,STANDARD,0,Yorktown,Tabb,,VA,"York County",America/New_York,757,NA,US,37.12,-76.45,23140 +23694,"PO BOX",0,Lackey,,,VA,"York County",America/New_York,757,NA,US,37.23,-76.54,183 +23696,STANDARD,0,Seaford,,,VA,"York County",America/New_York,757,NA,US,37.19,-76.43,3690 +23701,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.81,-76.37,20390 +23702,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.8,-76.33,9440 +23703,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.89,-76.37,23760 +23704,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.82,-76.31,13930 +23705,"PO BOX",0,Portsmouth,,,VA,"Portsmouth City",America/New_York,757,NA,US,36.83,-76.29,327 +23707,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.84,-76.34,11870 +23708,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.85,-76.31,278 +23709,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.81,-76.31,57 +23801,STANDARD,0,"Fort Lee",Petersburg,,VA,"Prince George County",America/New_York,804,NA,US,37.23,-77.33,5380 +23803,STANDARD,0,Petersburg,"N Dinwiddie, North Dinwiddie, S Chesterfld, South Chesterfield",Matoaca,VA,"Petersburg city",America/New_York,804,NA,US,37.21,-77.5,31780 +23804,"PO BOX",0,Petersburg,,,VA,"Petersburg City",America/New_York,804,NA,US,37.2,-77.39,594 +23805,STANDARD,0,Petersburg,"N Dinwiddie, North Dinwiddie, S Prince Geo, South Prince George","Walnut Hill",VA,"Petersburg city",America/New_York,804,NA,US,37.2,-77.39,16580 +23806,UNIQUE,0,"Virginia State University","Petersburg, Va State Univ","Virginia State Univ",VA,"Chesterfield County",America/New_York,804,NA,US,37.24,-77.42,60 +23821,STANDARD,0,Alberta,,,VA,"Brunswick County",America/New_York,434,NA,US,36.86,-77.88,1290 +23822,"PO BOX",0,Ammon,,,VA,"Amelia County",America/New_York,804,NA,US,37.21,-77.76,0 +23824,STANDARD,0,Blackstone,,,VA,"Nottoway County",America/New_York,434,NA,US,37.07,-78,5740 +23825,"PO BOX",1,Blackstone,,,VA,"Nottoway County",America/New_York,434,NA,US,37.08,-77.99,0 +23827,STANDARD,0,Boykins,,,VA,"Southampton County",America/New_York,757,NA,US,36.57,-77.19,1080 +23828,STANDARD,0,Branchville,,,VA,"Southampton County",America/New_York,,NA,US,36.56,-77.24,350 +23829,STANDARD,0,Capron,,,VA,"Southampton County",America/New_York,434,NA,US,36.71,-77.2,1050 +23830,STANDARD,0,Carson,,,VA,"Prince George County",America/New_York,,NA,US,37.03,-77.4,1550 +23831,STANDARD,0,Chester,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.35,-77.43,33900 +23832,STANDARD,0,Chesterfield,,"Beach, Chesterfld",VA,"Chesterfield County",America/New_York,804,NA,US,37.39,-77.59,36310 +23833,STANDARD,0,"Church Road",,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.15,-77.63,1950 +23834,STANDARD,0,"Colonial Heights","Colonial Hgts, S Chesterfld, South Chesterfield",,VA,"Colonial Heights city",America/New_York,,NA,US,37.26,-77.39,23390 +23836,STANDARD,0,Chester,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.35,-77.35,13280 +23837,STANDARD,0,Courtland,,,VA,"Southampton County",America/New_York,757,NA,US,36.71,-77.06,3520 +23838,STANDARD,0,Chesterfield,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.32,-77.63,16590 +23839,STANDARD,0,Dendron,,,VA,"Surry County",America/New_York,757,NA,US,37.08,-76.92,780 +23840,STANDARD,0,Dewitt,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.03,-77.64,1520 +23841,STANDARD,0,Dinwiddie,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.07,-77.58,3220 +23842,STANDARD,0,Disputanta,,,VA,"Prince George County",America/New_York,804,NA,US,37.12,-77.22,6520 +23843,STANDARD,0,Dolphin,,,VA,"Brunswick County",America/New_York,434,NA,US,36.83,-77.79,470 +23844,STANDARD,0,Drewryville,,,VA,"Southampton County",America/New_York,,NA,US,36.71,-77.3,500 +23845,STANDARD,0,Ebony,,,VA,"Brunswick County",America/New_York,434,NA,US,36.57,-77.99,360 +23846,STANDARD,0,Elberon,,,VA,"Surry County",America/New_York,757,NA,US,37.07,-76.88,750 +23847,STANDARD,0,Emporia,,,VA,"Greensville County",America/New_York,434,NA,US,36.69,-77.53,10020 +23850,STANDARD,0,Ford,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.14,-77.73,850 +23851,STANDARD,0,Franklin,,,VA,"Franklin city",America/New_York,757,NA,US,36.68,-76.93,11270 +23856,STANDARD,0,Freeman,,,VA,"Brunswick County",America/New_York,434,NA,US,36.8,-77.7,850 +23857,STANDARD,0,Gasburg,,,VA,"Brunswick County",America/New_York,434,NA,US,36.56,-77.89,480 +23860,STANDARD,0,Hopewell,"N Prince Geo, North Prince George",,VA,"Hopewell city",America/New_York,804,NA,US,37.29,-77.29,23980 +23866,STANDARD,0,Ivor,,,VA,"Southampton County",America/New_York,757,NA,US,36.9,-76.89,1940 +23867,STANDARD,0,Jarratt,,,VA,"Greensville County",America/New_York,434,NA,US,36.81,-77.47,1920 +23868,STANDARD,0,Lawrenceville,Triplet,,VA,"Brunswick County",America/New_York,434,NA,US,36.75,-77.85,3750 +23870,UNIQUE,0,Jarratt,,"Greenville Correctional Ctr",VA,"Sussex County",America/New_York,434,NA,US,36.81,-77.47,17 +23872,STANDARD,0,"Mc Kenney",,Mckenney,VA,"Dinwiddie County",America/New_York,804,NA,US,36.99,-77.74,2000 +23873,"PO BOX",0,Meredithville,,,VA,"Brunswick County",America/New_York,434,NA,US,36.79,-77.95,0 +23874,STANDARD,0,Newsoms,,Neusons,VA,"Southampton County",America/New_York,,NA,US,36.62,-77.12,870 +23875,STANDARD,0,"Prince George",,,VA,"Prince George County",America/New_York,804,NA,US,37.22,-77.28,10860 +23876,STANDARD,0,Rawlings,,,VA,"Brunswick County",America/New_York,434,NA,US,36.94,-77.77,370 +23878,STANDARD,0,Sedley,,,VA,"Southampton County",America/New_York,,NA,US,36.77,-76.98,1110 +23879,STANDARD,0,Skippers,,,VA,"Greensville County",America/New_York,434,NA,US,36.59,-77.6,550 +23881,STANDARD,0,"Spring Grove",,,VA,"Surry County",America/New_York,757,NA,US,37.16,-76.97,1420 +23882,STANDARD,0,"Stony Creek",,,VA,"Sussex County",America/New_York,434,NA,US,36.94,-77.4,1840 +23883,STANDARD,0,Surry,,,VA,"Surry County",America/New_York,757,NA,US,37.13,-76.83,2010 +23884,"PO BOX",0,Sussex,,,VA,"Sussex County",America/New_York,,NA,US,36.92,-77.28,22 +23885,STANDARD,0,Sutherland,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.19,-77.56,2600 +23887,STANDARD,0,Valentines,,,VA,"Brunswick County",America/New_York,434,NA,US,36.58,-77.83,350 +23888,STANDARD,0,Wakefield,,,VA,"Sussex County",America/New_York,757,NA,US,36.96,-76.98,1900 +23889,STANDARD,0,Warfield,,,VA,"Brunswick County",America/New_York,804,NA,US,36.89,-77.74,490 +23890,STANDARD,0,Waverly,,,VA,"Sussex County",America/New_York,804,NA,US,37.03,-77.09,3160 +23891,UNIQUE,0,Waverly,,"Sussex Correctional Facility",VA,"Sussex County",America/New_York,804,NA,US,37.05,-77.21,17 +23893,STANDARD,0,"White Plains",,,VA,"Brunswick County",America/New_York,434,NA,US,36.63,-77.91,350 +23894,STANDARD,0,Wilsons,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.14,-77.85,600 +23897,STANDARD,0,Yale,,,VA,"Sussex County",America/New_York,,NA,US,36.84,-77.28,450 +23898,STANDARD,0,Zuni,,,VA,"Isle of Wight County",America/New_York,,NA,US,36.86,-76.82,2020 +23899,"PO BOX",0,Claremont,,,VA,"Surry County",America/New_York,757,NA,US,37.22,-76.96,366 +23901,STANDARD,0,Farmville,,,VA,"Prince Edward County",America/New_York,434,NA,US,37.29,-78.39,10430 +23909,UNIQUE,0,Farmville,,"Longwood University",VA,"Prince Edward County",America/New_York,434,NA,US,37.3,-78.4,13 +23915,STANDARD,0,Baskerville,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.68,-78.27,640 +23917,STANDARD,0,Boydton,,"Palmer Springs, Palmersprings",VA,"Mecklenburg County",America/New_York,434,NA,US,36.66,-78.38,2250 +23919,STANDARD,0,Bracey,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.59,-78.14,2080 +23920,STANDARD,0,Brodnax,,,VA,"Brunswick County",America/New_York,434,NA,US,36.7,-78.03,2610 +23921,STANDARD,0,Buckingham,,,VA,"Buckingham County",America/New_York,434,NA,US,37.55,-78.55,1750 +23922,STANDARD,0,Burkeville,,,VA,"Nottoway County",America/New_York,434,NA,US,37.18,-78.2,1720 +23923,STANDARD,0,"Charlotte Court House","Charlotte C H","Charlotte Ch",VA,"Charlotte County",America/New_York,434,NA,US,37.05,-78.63,1890 +23924,STANDARD,0,"Chase City",,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.79,-78.46,4460 +23927,STANDARD,0,Clarksville,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.62,-78.56,3610 +23930,STANDARD,0,Crewe,,,VA,"Nottoway County",America/New_York,434,NA,US,37.18,-78.13,4460 +23934,STANDARD,0,Cullen,,,VA,"Charlotte County",America/New_York,434,NA,US,37.18,-78.63,600 +23936,STANDARD,0,Dillwyn,"Sprouses Corn, Sprouses Corner",Andersonville,VA,"Buckingham County",America/New_York,"804,434",NA,US,37.54,-78.46,4870 +23937,STANDARD,0,"Drakes Branch",,,VA,"Charlotte County",America/New_York,434,NA,US,36.99,-78.6,1370 +23938,STANDARD,0,Dundas,,,VA,"Brunswick County",America/New_York,,NA,US,36.91,-77.99,400 +23939,"PO BOX",0,Evergreen,,,VA,"Appomattox County",America/New_York,434,NA,US,37.3,-78.78,191 +23941,"PO BOX",0,"Fort Mitchell",,,VA,"Lunenburg County",America/New_York,434,NA,US,36.91,-78.48,0 +23942,STANDARD,0,"Green Bay",,Greenbay,VA,"Prince Edward County",America/New_York,434,NA,US,37.13,-78.3,880 +23943,"PO BOX",0,"Hampden Sydney","Farmville, Hmpden Sydney",,VA,"Prince Edward County",America/New_York,434,NA,US,37.25,-78.45,215 +23944,STANDARD,0,Kenbridge,,,VA,"Lunenburg County",America/New_York,434,NA,US,36.96,-78.13,3230 +23947,STANDARD,0,Keysville,,,VA,"Charlotte County",America/New_York,434,NA,US,37.03,-78.48,3360 +23950,STANDARD,0,"La Crosse","Blackridge, Forksville, South Hill","Black Ridge",VA,"Mecklenburg County",America/New_York,434,NA,US,36.69,-78.09,2950 +23952,STANDARD,0,Lunenburg,,,VA,"Lunenburg County",America/New_York,434,NA,US,36.96,-78.26,190 +23954,STANDARD,0,Meherrin,,,VA,"Prince Edward County",America/New_York,,NA,US,37.09,-78.36,1750 +23955,"PO BOX",0,Nottoway,,,VA,"Nottoway County",America/New_York,434,NA,US,37.13,-78.07,70 +23958,STANDARD,0,Pamplin,"Darlingtn Hts, Darlington Heights",,VA,"Appomattox County",America/New_York,434,NA,US,37.26,-78.68,2620 +23959,STANDARD,0,Phenix,,,VA,"Charlotte County",America/New_York,434,NA,US,37.08,-78.74,930 +23960,STANDARD,0,Prospect,,,VA,"Prince Edward County",America/New_York,434,NA,US,37.3,-78.55,1600 +23962,STANDARD,0,Randolph,,,VA,"Charlotte County",America/New_York,434,NA,US,36.97,-78.7,530 +23963,STANDARD,0,"Red House",,,VA,"Charlotte County",America/New_York,434,NA,US,37.18,-78.8,420 +23964,STANDARD,0,"Red Oak",,,VA,"Charlotte County",America/New_York,434,NA,US,36.76,-78.63,860 +23966,STANDARD,0,Rice,,,VA,"Prince Edward County",America/New_York,434,NA,US,37.27,-78.29,1960 +23967,STANDARD,0,Saxe,,,VA,"Charlotte County",America/New_York,434,NA,US,36.93,-78.66,730 +23968,STANDARD,0,Skipwith,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.73,-78.53,630 +23970,STANDARD,0,"South Hill",,"Southill, Union Level",VA,"Mecklenburg County",America/New_York,434,NA,US,36.72,-78.12,6710 +23974,STANDARD,0,Victoria,,,VA,"Lunenburg County",America/New_York,434,NA,US,36.99,-78.22,3040 +23976,STANDARD,0,Wylliesburg,,,VA,"Charlotte County",America/New_York,434,NA,US,36.85,-78.58,210 +24001,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,43 +24002,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,22 +24003,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24004,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24005,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24006,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24007,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,23 +24008,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,66 +24009,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,47 +24010,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,62 +24011,STANDARD,0,Roanoke,,,VA,"Roanoke city",America/New_York,540,NA,US,37.27,-79.94,600 +24012,STANDARD,0,Roanoke,,Bonsack,VA,"Roanoke city",America/New_York,540,NA,US,37.31,-79.9,24290 +24013,STANDARD,0,Roanoke,,,VA,"Roanoke city",America/New_York,540,NA,US,37.27,-79.92,5610 +24014,STANDARD,0,Roanoke,,"Garden City, South Roanoke",VA,"Roanoke city",America/New_York,540,NA,US,37.22,-79.91,14530 +24015,STANDARD,0,Roanoke,,"Grandin Road",VA,"Roanoke city",America/New_York,540,NA,US,37.26,-79.98,13450 +24016,STANDARD,0,Roanoke,,,VA,"Roanoke city",America/New_York,540,NA,US,37.27,-79.95,6230 +24017,STANDARD,0,Roanoke,,Melrose,VA,"Roanoke city",America/New_York,540,NA,US,37.3,-79.99,19030 +24018,STANDARD,0,Roanoke,"Cave Spring","Poages Mill",VA,"Roanoke County",America/New_York,540,NA,US,37.21,-80.04,36340 +24019,STANDARD,0,Roanoke,"Hollins, Hollins Clg",,VA,"Roanoke County",America/New_York,540,NA,US,37.35,-79.95,25590 +24020,"PO BOX",0,Roanoke,"Hollins Clg, Hollins College",,VA,"Roanoke County",America/New_York,540,NA,US,37.36,-79.94,87 +24022,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,178 +24023,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,21 +24024,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,21 +24025,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,26 +24026,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24027,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,19 +24028,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,25 +24029,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,10 +24030,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,22 +24031,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,23 +24032,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,19 +24033,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,20 +24034,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24035,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,18 +24036,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,21 +24037,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,20 +24038,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,113 +24040,UNIQUE,0,Roanoke,,Wachovia,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24042,UNIQUE,0,Roanoke,,"Norfolk Southern",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24043,UNIQUE,0,Roanoke,,"Norfolk Southern Rwy Brm",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24044,UNIQUE,1,Roanoke,,"Appalachian Pwr",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.94,0 +24045,UNIQUE,1,Roanoke,,"Blue Cross Blue Shield",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.94,0 +24048,UNIQUE,1,Roanoke,,"Allstate Ins Co",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.94,0 +24050,UNIQUE,0,Roanoke,,"Hanover Direct",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24053,STANDARD,0,Ararat,,,VA,"Patrick County",America/New_York,276,NA,US,36.6,-80.51,1770 +24054,STANDARD,0,Axton,,,VA,"Henry County",America/New_York,276,NA,US,36.66,-79.71,5260 +24055,STANDARD,0,Bassett,,"Bassett Forks, Oaklevel, Philpott, Sanville",VA,"Henry County",America/New_York,276,NA,US,36.76,-79.98,9310 +24058,"PO BOX",0,Belspring,,,VA,"Pulaski County",America/New_York,540,NA,US,37.19,-80.61,303 +24059,STANDARD,0,"Bent Mountain",,,VA,"Roanoke County",America/New_York,540,NA,US,37.15,-80.11,860 +24060,STANDARD,0,Blacksburg,,,VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,25680 +24061,UNIQUE,0,Blacksburg,,"Virginia Tech",VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,108 +24062,"PO BOX",0,Blacksburg,,,VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,499 +24063,"PO BOX",0,Blacksburg,,,VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,313 +24064,STANDARD,0,"Blue Ridge",,,VA,"Botetourt County",America/New_York,,NA,US,37.38,-79.82,4640 +24065,STANDARD,0,"Boones Mill",,,VA,"Franklin County",America/New_York,540,NA,US,37.11,-79.95,5540 +24066,STANDARD,0,Buchanan,Lithia,,VA,"Botetourt County",America/New_York,540,NA,US,37.52,-79.68,4220 +24067,STANDARD,0,Callaway,,,VA,"Franklin County",America/New_York,540,NA,US,37.01,-80.05,1960 +24068,"PO BOX",0,Christiansburg,Christiansbrg,,VA,"Montgomery County",America/New_York,540,NA,US,37.14,-80.4,980 +24069,STANDARD,0,Cascade,,"Leakesville Junction",VA,"Pittsylvania County",America/New_York,434,NA,US,36.56,-79.66,1450 +24070,STANDARD,0,Catawba,,,VA,"Roanoke County",America/New_York,540,NA,US,37.38,-80.11,1270 +24072,STANDARD,0,Check,Simpsons,,VA,"Floyd County",America/New_York,540,NA,US,37.04,-80.24,1180 +24073,STANDARD,0,Christiansburg,Christiansbrg,"Cambria, Christnsbrg, Prices Fork",VA,"Montgomery County",America/New_York,540,NA,US,37.14,-80.4,26870 +24076,STANDARD,0,Claudville,,,VA,"Patrick County",America/New_York,276,NA,US,36.59,-80.42,810 +24077,STANDARD,0,Cloverdale,,,VA,"Botetourt County",America/New_York,540,NA,US,37.37,-79.9,950 +24078,STANDARD,0,Collinsville,,,VA,"Henry County",America/New_York,276,NA,US,36.72,-79.91,5770 +24079,STANDARD,0,"Copper Hill",,"Kings Store",VA,"Floyd County",America/New_York,540,NA,US,37.08,-80.13,1440 +24082,STANDARD,0,Critz,,,VA,"Patrick County",America/New_York,276,NA,US,36.62,-80.11,370 +24083,STANDARD,0,Daleville,,,VA,"Botetourt County",America/New_York,540,NA,US,37.41,-79.92,3820 +24084,STANDARD,0,Dublin,,,VA,"Pulaski County",America/New_York,540,NA,US,37.1,-80.68,8550 +24085,STANDARD,0,"Eagle Rock",,,VA,"Botetourt County",America/New_York,540,NA,US,37.63,-79.8,1760 +24086,STANDARD,0,Eggleston,,,VA,"Giles County",America/New_York,540,NA,US,37.28,-80.63,190 +24087,STANDARD,0,Elliston,"Ironto, Lafayette",,VA,"Montgomery County",America/New_York,540,NA,US,37.21,-80.23,3030 +24088,STANDARD,0,Ferrum,Charity,Endicott,VA,"Franklin County",America/New_York,540,NA,US,36.92,-80.02,3080 +24089,STANDARD,0,Fieldale,,,VA,"Henry County",America/New_York,276,NA,US,36.7,-79.94,1980 +24090,STANDARD,0,Fincastle,,,VA,"Botetourt County",America/New_York,540,NA,US,37.49,-79.87,4050 +24091,STANDARD,0,Floyd,"Alum Ridge",,VA,"Floyd County",America/New_York,540,NA,US,36.91,-80.31,6290 +24092,STANDARD,0,"Glade Hill",,,VA,"Franklin County",America/New_York,540,NA,US,37,-79.77,2470 +24093,STANDARD,0,"Glen Lyn",,,VA,"Giles County",America/New_York,540,NA,US,37.37,-80.85,184 +24095,STANDARD,0,Goodview,,,VA,"Bedford County",America/New_York,540,NA,US,37.21,-79.71,3750 +24101,STANDARD,0,Hardy,,,VA,"Franklin County",America/New_York,540,NA,US,37.18,-79.8,5650 +24102,STANDARD,0,Henry,,,VA,"Franklin County",America/New_York,540,NA,US,36.83,-80,1200 +24104,STANDARD,0,Huddleston,,,VA,"Bedford County",America/New_York,540,NA,US,37.16,-79.48,3040 +24105,STANDARD,0,"Indian Valley",,,VA,"Floyd County",America/New_York,540,NA,US,36.91,-80.6,380 +24111,"PO BOX",0,"Mc Coy",,,VA,"Pulaski County",America/New_York,540,NA,US,37.23,-80.61,179 +24112,STANDARD,0,Martinsville,,,VA,"Henry County",America/New_York,276,NA,US,36.68,-79.86,23550 +24113,"PO BOX",0,Martinsville,,,VA,"Martinsville City",America/New_York,276,NA,US,36.68,-79.86,143 +24114,"PO BOX",0,Martinsville,,,VA,"Martinsville City",America/New_York,276,NA,US,36.68,-79.86,473 +24115,"PO BOX",0,Martinsville,,,VA,"Martinsville City",America/New_York,276,NA,US,36.68,-79.86,1135 +24120,STANDARD,0,"Meadows Of Dan","Meadows Dan",,VA,"Patrick County",America/New_York,"276,540",NA,US,36.73,-80.41,1510 +24121,STANDARD,0,Moneta,,Scruggs,VA,"Bedford County",America/New_York,540,NA,US,37.18,-79.63,9420 +24122,STANDARD,0,Montvale,,,VA,"Bedford County",America/New_York,,NA,US,37.43,-79.69,1450 +24124,STANDARD,0,Narrows,,,VA,"Giles County",America/New_York,540,NA,US,37.33,-80.8,3600 +24126,"PO BOX",0,Newbern,,,VA,"Pulaski County",America/New_York,540,NA,US,37.04,-80.68,373 +24127,STANDARD,0,"New Castle",,,VA,"Craig County",America/New_York,540,NA,US,37.5,-80.11,3500 +24128,STANDARD,0,Newport,,,VA,"Giles County",America/New_York,540,NA,US,37.29,-80.49,1570 +24129,"PO BOX",0,"New River",,,VA,"Pulaski County",America/New_York,540,NA,US,37.12,-80.57,151 +24130,STANDARD,0,Oriskany,,,VA,"Botetourt County",America/New_York,540,NA,US,37.61,-80,0 +24131,STANDARD,0,"Paint Bank",,,VA,"Craig County",America/New_York,540,NA,US,37.56,-80.28,86 +24132,"PO BOX",0,Parrott,,,VA,"Pulaski County",America/New_York,540,NA,US,37.21,-80.63,399 +24133,STANDARD,0,"Patrick Springs","Patrick Spgs",,VA,"Patrick County",America/New_York,276,NA,US,36.67,-80.13,1990 +24134,STANDARD,0,Pearisburg,,,VA,"Giles County",America/New_York,540,NA,US,37.32,-80.72,4800 +24136,STANDARD,0,Pembroke,,,VA,"Giles County",America/New_York,540,NA,US,37.32,-80.63,2810 +24137,STANDARD,0,Penhook,,,VA,"Franklin County",America/New_York,540,NA,US,36.98,-79.63,2080 +24138,STANDARD,0,Pilot,,,VA,"Montgomery County",America/New_York,540,NA,US,37.05,-80.36,1320 +24139,STANDARD,0,Pittsville,,,VA,"Pittsylvania County",America/New_York,,NA,US,36.98,-79.46,490 +24141,STANDARD,0,Radford,Fairlawn,,VA,"Radford city",America/New_York,540,NA,US,37.12,-80.55,13940 +24142,"PO BOX",0,Radford,,,VA,"Radford city",America/New_York,540,NA,US,37.14,-80.55,53 +24143,"PO BOX",0,Radford,,,VA,"Radford City",America/New_York,540,NA,US,37.12,-80.55,769 +24146,"PO BOX",0,Redwood,,,VA,"Franklin County",America/New_York,540,NA,US,37.01,-79.79,60 +24147,STANDARD,0,"Rich Creek",,,VA,"Giles County",America/New_York,540,NA,US,37.38,-80.82,730 +24148,STANDARD,0,Ridgeway,,,VA,"Henry County",America/New_York,276,NA,US,36.57,-79.85,6220 +24149,STANDARD,0,Riner,,Fairview,VA,"Montgomery County",America/New_York,540,NA,US,37.02,-80.43,3320 +24150,STANDARD,0,Ripplemead,Goldbond,Kimballton,VA,"Giles County",America/New_York,540,NA,US,37.38,-80.63,520 +24151,STANDARD,0,"Rocky Mount",,"Franklin Heights",VA,"Franklin County",America/New_York,540,NA,US,36.99,-79.89,15860 +24153,STANDARD,0,Salem,,"Bennett Springs, Fort Lewis, Glenvar, Hanging Rock, Kesslers Mill, Mason Cove",VA,"Salem city",America/New_York,540,NA,US,37.28,-80.05,32300 +24155,UNIQUE,0,Roanoke,,"Home Shopping Network",VA,"Roanoke City",America/New_York,540,NA,US,37.29,-80.06,0 +24157,UNIQUE,0,Roanoke,,"Home Shopping Network",VA,"Roanoke City",America/New_York,540,NA,US,37.28,-80.05,0 +24161,STANDARD,0,"Sandy Level",,,VA,"Pittsylvania County",America/New_York,434,NA,US,37,-79.55,260 +24162,STANDARD,0,Shawsville,,"Allegany Spring",VA,"Montgomery County",America/New_York,540,NA,US,37.13,-80.25,1810 +24165,STANDARD,0,Spencer,,,VA,"Henry County",America/New_York,276,NA,US,36.61,-80.01,1430 +24167,STANDARD,0,Staffordsville,Staffordsvlle,,VA,"Giles County",America/New_York,540,NA,US,37.26,-80.72,290 +24168,STANDARD,0,Stanleytown,,,VA,"Henry County",America/New_York,276,NA,US,36.73,-79.95,580 +24171,STANDARD,0,Stuart,,,VA,"Patrick County",America/New_York,276,NA,US,36.64,-80.27,6220 +24174,STANDARD,0,Thaxton,,,VA,"Bedford County",America/New_York,540,NA,US,37.35,-79.63,1960 +24175,STANDARD,0,Troutville,,Haymakertown,VA,"Botetourt County",America/New_York,540,NA,US,37.41,-79.87,7500 +24176,STANDARD,0,"Union Hall",,,VA,"Franklin County",America/New_York,540,NA,US,37,-79.68,1250 +24177,"PO BOX",0,Vesta,,,VA,"Patrick County",America/New_York,276,NA,US,36.72,-80.39,92 +24178,"PO BOX",0,Villamont,,,VA,"Bedford County",America/New_York,,NA,US,37.39,-79.74,0 +24179,STANDARD,0,Vinton,,,VA,"Roanoke County",America/New_York,540,NA,US,37.27,-79.88,16510 +24184,STANDARD,0,Wirtz,"Burnt Chimney",,VA,"Franklin County",America/New_York,540,NA,US,37.08,-79.9,4100 +24185,STANDARD,0,Woolwine,,,VA,"Patrick County",America/New_York,"540,276",NA,US,36.78,-80.28,720 +24201,STANDARD,0,Bristol,,,VA,"Bristol city",America/New_York,276,NA,US,36.61,-82.16,11940 +24202,STANDARD,0,Bristol,,,VA,"Washington County",America/New_York,276,NA,US,36.66,-82.21,10180 +24203,"PO BOX",0,Bristol,,,VA,"Bristol City",America/New_York,276,NA,US,36.61,-82.16,257 +24205,UNIQUE,0,Bristol,,"Bristol Merchandise Return",VA,"Bristol City",America/New_York,276,NA,US,36.61,-82.17,0 +24209,"PO BOX",0,Bristol,,,VA,"Bristol City",America/New_York,276,NA,US,36.61,-82.16,492 +24210,STANDARD,0,Abingdon,,Osceola,VA,"Washington County",America/New_York,276,NA,US,36.77,-82.03,12280 +24211,STANDARD,0,Abingdon,,,VA,"Washington County",America/New_York,276,NA,US,36.7,-81.96,8100 +24212,"PO BOX",0,Abingdon,,,VA,"Washington County",America/New_York,276,NA,US,36.7,-81.96,1732 +24215,"PO BOX",0,Andover,,,VA,"Wise County",America/New_York,276,NA,US,36.94,-82.78,111 +24216,STANDARD,0,Appalachia,"Exeter, Stonega",,VA,"Wise County",America/New_York,276,NA,US,36.9,-82.78,1660 +24217,STANDARD,0,Bee,,,VA,"Dickenson County",America/New_York,,NA,US,37.08,-82.19,254 +24218,"PO BOX",0,"Ben Hur",,,VA,"Lee County",America/New_York,276,NA,US,36.73,-83.08,296 +24219,STANDARD,0,"Big Stone Gap",,,VA,"Wise County",America/New_York,276,NA,US,36.86,-82.77,7050 +24220,STANDARD,0,Birchleaf,,,VA,"Dickenson County",America/New_York,276,NA,US,37.15,-82.23,510 +24221,STANDARD,0,Blackwater,,,VA,"Lee County",America/New_York,,NA,US,36.62,-83.05,500 +24224,STANDARD,0,Castlewood,,Dickensonville,VA,"Russell County",America/New_York,276,NA,US,36.87,-82.28,4020 +24225,STANDARD,0,Cleveland,,,VA,"Russell County",America/New_York,276,NA,US,36.94,-82.15,1130 +24226,STANDARD,0,Clinchco,,,VA,"Dickenson County",America/New_York,276,NA,US,37.12,-82.33,980 +24228,STANDARD,0,Clintwood,,Honeycamp,VA,"Dickenson County",America/New_York,276,NA,US,37.15,-82.45,4660 +24230,STANDARD,0,Coeburn,,,VA,"Wise County",America/New_York,276,NA,US,36.94,-82.46,5800 +24236,STANDARD,0,Damascus,,,VA,"Washington County",America/New_York,276,NA,US,36.63,-81.78,2240 +24237,STANDARD,0,Dante,Trammel,,VA,"Dickenson County",America/New_York,276,NA,US,36.98,-82.29,620 +24239,STANDARD,0,Davenport,,,VA,"Buchanan County",America/New_York,276,NA,US,37.12,-82.15,300 +24243,STANDARD,0,Dryden,,,VA,"Lee County",America/New_York,276,NA,US,36.77,-82.94,1620 +24244,STANDARD,0,Duffield,Clinchport,,VA,"Scott County",America/New_York,276,NA,US,36.71,-82.79,3530 +24245,STANDARD,0,Dungannon,,,VA,"Scott County",America/New_York,276,NA,US,36.82,-82.46,690 +24246,"PO BOX",0,"East Stone Gap","E Stone Gap",,VA,"Wise County",America/New_York,276,NA,US,36.87,-82.75,588 +24248,STANDARD,0,Ewing,,"Willow Tree",VA,"Lee County",America/New_York,276,NA,US,36.63,-83.43,1640 +24250,STANDARD,0,"Fort Blackmore","Ft Blackmore",,VA,"Scott County",America/New_York,276,NA,US,36.77,-82.58,780 +24251,STANDARD,0,"Gate City",,Snowflake,VA,"Scott County",America/New_York,276,NA,US,36.63,-82.58,6750 +24256,STANDARD,0,Haysi,,,VA,"Dickenson County",America/New_York,276,NA,US,37.2,-82.29,2020 +24258,STANDARD,0,Hiltons,,,VA,"Scott County",America/New_York,276,NA,US,36.65,-82.46,1050 +24260,STANDARD,0,Honaker,"Council, Elk Garden, Venia",Putnam,VA,"Russell County",America/New_York,276,NA,US,37.01,-81.97,3790 +24263,STANDARD,0,Jonesville,,,VA,"Lee County",America/New_York,276,NA,US,36.68,-83.11,4550 +24265,STANDARD,0,Keokee,,,VA,"Lee County",America/New_York,276,NA,US,36.86,-82.9,420 +24266,STANDARD,0,Lebanon,,"Barnett, Bolton, Carterton, Hansonville",VA,"Russell County",America/New_York,276,NA,US,36.89,-82.07,7390 +24269,STANDARD,0,"Mc Clure",,Mcclure,VA,"Dickenson County",America/New_York,276,NA,US,37.08,-82.38,141 +24270,STANDARD,0,Mendota,,,VA,"Washington County",America/New_York,,NA,US,36.72,-82.25,370 +24271,STANDARD,0,Nickelsville,,,VA,"Scott County",America/New_York,276,NA,US,36.75,-82.41,2000 +24272,STANDARD,0,Nora,,,VA,"Dickenson County",America/New_York,276,NA,US,37.02,-82.34,330 +24273,STANDARD,0,Norton,,Esserville,VA,"Norton city",America/New_York,276,NA,US,36.93,-82.62,4400 +24277,STANDARD,0,"Pennington Gap","Penningtn Gap",Pennington,VA,"Lee County",America/New_York,276,NA,US,36.75,-83.02,3430 +24279,STANDARD,0,Pound,,,VA,"Wise County",America/New_York,276,NA,US,37.12,-82.6,3040 +24280,STANDARD,0,Rosedale,,,VA,"Russell County",America/New_York,276,NA,US,36.95,-81.93,840 +24281,STANDARD,0,"Rose Hill",,,VA,"Lee County",America/New_York,276,NA,US,36.67,-83.36,1520 +24282,STANDARD,0,"Saint Charles",,,VA,"Lee County",America/New_York,276,NA,US,36.8,-83.05,360 +24283,STANDARD,0,"Saint Paul",,,VA,"Wise County",America/New_York,276,NA,US,36.9,-82.31,1780 +24290,STANDARD,0,"Weber City",,,VA,"Scott County",America/New_York,276,NA,US,36.62,-82.56,1160 +24292,STANDARD,0,Whitetop,,,VA,"Grayson County",America/New_York,276,NA,US,36.6,-81.61,260 +24293,STANDARD,0,Wise,,,VA,"Wise County",America/New_York,276,NA,US,36.97,-82.58,7510 +24301,STANDARD,0,Pulaski,,Snowville,VA,"Pulaski County",America/New_York,540,NA,US,37.05,-80.76,10420 +24311,STANDARD,0,Atkins,,,VA,"Smyth County",America/New_York,276,NA,US,36.86,-81.39,1400 +24312,STANDARD,0,Austinville,,,VA,"Carroll County",America/New_York,276,NA,US,36.82,-80.86,1750 +24313,STANDARD,0,"Barren Springs","Barren Spgs",,VA,"Wythe County",America/New_York,276,NA,US,36.91,-80.8,770 +24314,STANDARD,0,Bastian,,"Clearfork, Cove Creek, Grapefield, Hicksville",VA,"Bland County",America/New_York,,NA,US,37.15,-81.15,1040 +24315,STANDARD,0,Bland,,"Bland Correct, Bland Correctional Farm",VA,"Bland County",America/New_York,276,NA,US,37.1,-81.11,2480 +24316,STANDARD,0,Broadford,,,VA,"Tazewell County",America/New_York,276,NA,US,36.96,-81.67,75 +24317,STANDARD,0,Cana,,,VA,"Carroll County",America/New_York,276,NA,US,36.58,-80.66,2680 +24318,STANDARD,0,Ceres,,Nebo,VA,"Bland County",America/New_York,276,NA,US,37.01,-81.35,480 +24319,STANDARD,0,Chilhowie,,,VA,"Smyth County",America/New_York,276,NA,US,36.8,-81.68,5620 +24322,STANDARD,0,"Cripple Creek",,,VA,"Wythe County",America/New_York,276,NA,US,36.81,-81.1,166 +24323,STANDARD,0,Crockett,,,VA,"Wythe County",America/New_York,276,NA,US,36.88,-81.18,580 +24324,STANDARD,0,Draper,,,VA,"Pulaski County",America/New_York,,NA,US,37,-80.76,1800 +24325,STANDARD,0,Dugspur,,,VA,"Carroll County",America/New_York,276,NA,US,36.81,-80.61,730 +24326,STANDARD,0,"Elk Creek",,"Comers Rock",VA,"Grayson County",America/New_York,276,NA,US,36.73,-81.2,830 +24327,"PO BOX",0,Emory,,,VA,"Washington County",America/New_York,276,NA,US,36.75,-81.83,448 +24328,STANDARD,0,"Fancy Gap",,,VA,"Carroll County",America/New_York,276,NA,US,36.66,-80.7,1530 +24330,STANDARD,0,Fries,,"Stevens Creek",VA,"Grayson County",America/New_York,276,NA,US,36.71,-80.97,2420 +24333,STANDARD,0,Galax,,"Dalhart, Meadowcreek",VA,"Galax city",America/New_York,276,NA,US,36.66,-80.91,14020 +24340,STANDARD,0,"Glade Spring",,,VA,"Washington County",America/New_York,276,NA,US,36.79,-81.77,4280 +24343,STANDARD,0,Hillsville,,"Littlevine, Richardson",VA,"Carroll County",America/New_York,276,NA,US,36.76,-80.73,7420 +24347,STANDARD,0,Hiwassee,Allisonia,,VA,"Pulaski County",America/New_York,540,NA,US,36.97,-80.64,1460 +24348,STANDARD,0,Independence,,,VA,"Grayson County",America/New_York,276,NA,US,36.61,-81.15,3200 +24350,STANDARD,0,Ivanhoe,,,VA,"Wythe County",America/New_York,,NA,US,36.83,-80.95,980 +24351,STANDARD,0,Lambsburg,,,VA,"Carroll County",America/New_York,276,NA,US,36.58,-80.76,410 +24352,STANDARD,0,"Laurel Fork",,,VA,"Carroll County",America/New_York,"540,276",NA,US,36.71,-80.51,740 +24354,STANDARD,0,Marion,"Seven Mile Fd, Seven Mile Ford","Stony Battery, The Cedars, Thomas Bridge",VA,"Smyth County",America/New_York,276,NA,US,36.83,-81.51,10910 +24360,STANDARD,0,"Max Meadows","Fort Chiswell, Foster Falls",,VA,"Wythe County",America/New_York,276,NA,US,36.96,-80.93,4760 +24361,STANDARD,0,Meadowview,Clinchburg,,VA,"Washington County",America/New_York,276,NA,US,36.76,-81.85,3760 +24363,STANDARD,0,"Mouth Of Wilson","Mouth Wilson, Volney",,VA,"Grayson County",America/New_York,276,NA,US,36.58,-81.33,930 +24366,STANDARD,0,"Rocky Gap",,,VA,"Bland County",America/New_York,276,NA,US,37.26,-81.12,760 +24368,STANDARD,0,"Rural Retreat",,Grosclose,VA,"Wythe County",America/New_York,276,NA,US,36.89,-81.27,4230 +24370,STANDARD,0,Saltville,,,VA,"Smyth County",America/New_York,276,NA,US,36.87,-81.76,4360 +24374,STANDARD,0,Speedwell,,,VA,"Wythe County",America/New_York,276,NA,US,36.81,-81.16,580 +24375,STANDARD,0,"Sugar Grove",,,VA,"Smyth County",America/New_York,276,NA,US,36.76,-81.4,1140 +24377,STANDARD,0,Tannersville,,,VA,"Tazewell County",America/New_York,276,NA,US,36.97,-81.64,210 +24378,STANDARD,0,Troutdale,,"Trout Dale",VA,"Grayson County",America/New_York,276,NA,US,36.7,-81.43,730 +24380,STANDARD,0,Willis,,,VA,"Floyd County",America/New_York,540,NA,US,36.85,-80.48,2190 +24381,STANDARD,0,Woodlawn,,,VA,"Carroll County",America/New_York,276,NA,US,36.71,-80.81,3190 +24382,STANDARD,0,Wytheville,,"Stones Mill",VA,"Wythe County",America/New_York,276,NA,US,36.95,-81.08,11530 +24401,STANDARD,0,Staunton,,"Staunton Park, Western State Hospital",VA,"Staunton city",America/New_York,540,NA,US,38.15,-79.06,31660 +24402,"PO BOX",0,Staunton,,,VA,"Staunton City",America/New_York,540,NA,US,38.15,-79.06,1013 +24411,"PO BOX",0,"Augusta Springs","Augusta Sprgs","Augusta Spgs",VA,"Augusta County",America/New_York,540,NA,US,38.11,-79.31,145 +24412,"PO BOX",0,Bacova,,,VA,"Bath County",America/New_York,540,NA,US,38.05,-79.82,87 +24413,STANDARD,0,"Blue Grass",,,VA,"Highland County",America/New_York,540,NA,US,38.53,-79.6,200 +24415,"PO BOX",0,Brownsburg,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.92,-79.32,92 +24416,STANDARD,0,"Buena Vista",,,VA,"Buena Vista city",America/New_York,"434,540",NA,US,37.73,-79.35,6900 +24421,STANDARD,0,Churchville,,,VA,"Augusta County",America/New_York,540,NA,US,38.22,-79.16,3290 +24422,STANDARD,0,"Clifton Forge",,,VA,"Alleghany County",America/New_York,540,NA,US,37.82,-79.82,4710 +24426,STANDARD,0,Covington,"Alleghany, Jordan Mines","Camp Appalachia, Cmp Appalchia",VA,"Alleghany County",America/New_York,540,NA,US,37.77,-79.99,11840 +24430,STANDARD,0,Craigsville,,,VA,"Augusta County",America/New_York,540,NA,US,38.08,-79.38,1300 +24431,STANDARD,0,Crimora,,,VA,"Augusta County",America/New_York,540,NA,US,38.16,-78.83,2390 +24432,STANDARD,0,Deerfield,,,VA,"Augusta County",America/New_York,540,NA,US,38.19,-79.4,290 +24433,STANDARD,0,"Doe Hill",,,VA,"Highland County",America/New_York,540,NA,US,38.43,-79.44,141 +24435,STANDARD,0,Fairfield,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.88,-79.3,1610 +24437,STANDARD,0,"Fort Defiance",,,VA,"Augusta County",America/New_York,540,NA,US,38.21,-78.94,860 +24438,"PO BOX",0,"Glen Wilton",,,VA,"Botetourt County",America/New_York,540,NA,US,37.75,-79.81,73 +24439,STANDARD,0,Goshen,,,VA,"Rockbridge County",America/New_York,,NA,US,37.99,-79.5,880 +24440,STANDARD,0,Greenville,,,VA,"Augusta County",America/New_York,540,NA,US,38,-79.15,2310 +24441,STANDARD,0,Grottoes,,,VA,"Rockingham County",America/New_York,540,NA,US,38.26,-78.82,5580 +24442,STANDARD,0,"Head Waters",,,VA,"Highland County",America/New_York,540,NA,US,38.37,-79.38,83 +24445,STANDARD,0,"Hot Springs",,"Bacova Jnctn, Bacova Junction, Falling Spring, Falling Sprng, Healing Sprgs, Healing Springs",VA,"Bath County",America/New_York,540,NA,US,38,-79.83,2170 +24448,"PO BOX",0,"Iron Gate",,,VA,"Alleghany County",America/New_York,540,NA,US,37.8,-79.79,466 +24450,STANDARD,0,Lexington,,"East Lexington, West Lexington",VA,"Rockbridge County",America/New_York,540,NA,US,37.78,-79.44,12380 +24457,"PO BOX",0,"Low Moor",,Lowmoor,VA,"Alleghany County",America/New_York,540,NA,US,37.76,-79.94,315 +24458,STANDARD,0,"Mc Dowell",,Mcdowell,VA,"Highland County",America/New_York,540,NA,US,38.3,-79.52,270 +24459,STANDARD,0,Middlebrook,,,VA,"Augusta County",America/New_York,540,NA,US,38.02,-79.28,680 +24460,STANDARD,0,Millboro,,"Milboro Sprgs, Millboro Springs",VA,"Bath County",America/New_York,540,NA,US,37.96,-79.6,1220 +24463,"PO BOX",0,"Mint Spring",,,VA,"Augusta County",America/New_York,540,NA,US,38.07,-79.1,120 +24464,STANDARD,0,Montebello,,,VA,"Nelson County",America/New_York,434,NA,US,37.86,-79.13,110 +24465,STANDARD,0,Monterey,"Hightown, Mustoe","Mill Gap",VA,"Highland County",America/New_York,540,NA,US,38.41,-79.58,1030 +24467,STANDARD,0,"Mount Sidney",,,VA,"Augusta County",America/New_York,540,NA,US,38.26,-78.97,1990 +24468,STANDARD,1,Mustoe,,,VA,"Highland County",America/New_York,540,NA,US,38.32,-79.64,0 +24469,"PO BOX",0,"New Hope",,,VA,"Augusta County",America/New_York,540,NA,US,38.19,-78.9,223 +24471,STANDARD,0,"Port Republic",,"Pt Republic",VA,"Rockingham County",America/New_York,540,NA,US,38.32,-78.81,1370 +24472,STANDARD,0,Raphine,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.93,-79.23,1940 +24473,STANDARD,0,"Rockbridge Baths","Rockbdge Bath","Rockbrg Baths",VA,"Rockbridge County",America/New_York,540,NA,US,37.9,-79.41,770 +24474,"PO BOX",0,Selma,,,VA,"Alleghany County",America/New_York,540,NA,US,37.81,-79.85,424 +24476,STANDARD,0,"Steeles Tavern","Spottswood, Steeles Tavrn",,VA,"Augusta County",America/New_York,540,NA,US,37.97,-79.23,340 +24477,STANDARD,0,"Stuarts Draft",,,VA,"Augusta County",America/New_York,540,NA,US,38.02,-79.02,10390 +24479,STANDARD,0,Swoope,,,VA,"Augusta County",America/New_York,540,NA,US,38.14,-79.2,1350 +24482,STANDARD,0,Verona,,,VA,"Augusta County",America/New_York,540,NA,US,38.19,-79,4050 +24483,STANDARD,0,Vesuvius,,,VA,"Rockbridge County",America/New_York,,NA,US,37.9,-79.2,480 +24484,STANDARD,0,"Warm Springs",Bolar,,VA,"Bath County",America/New_York,540,NA,US,38.05,-79.78,660 +24485,STANDARD,0,"West Augusta",,,VA,"Augusta County",America/New_York,540,NA,US,38.27,-79.3,340 +24486,STANDARD,0,"Weyers Cave",,"Shenandoah Valley Airport",VA,"Augusta County",America/New_York,540,NA,US,38.28,-78.92,3590 +24487,STANDARD,0,Williamsville,Burnsville,,VA,"Bath County",America/New_York,540,NA,US,38.19,-79.56,220 +24501,STANDARD,0,Lynchburg,,"Miller Park",VA,"Lynchburg city",America/New_York,434,NA,US,37.4,-79.19,19720 +24502,STANDARD,0,Lynchburg,Timberlake,"Fort Hill",VA,"Lynchburg city",America/New_York,434,NA,US,37.36,-79.22,32680 +24503,STANDARD,0,Lynchburg,,Rivermont,VA,"Lynchburg city",America/New_York,434,NA,US,37.45,-79.25,17650 +24504,STANDARD,0,Lynchburg,,,VA,"Lynchburg city",America/New_York,434,NA,US,37.37,-79.05,7360 +24505,"PO BOX",0,Lynchburg,,,VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,558 +24506,"PO BOX",0,Lynchburg,,,VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,705 +24512,UNIQUE,1,Lynchburg,"Clifford And Wills",,VA,"Lynchburg City",America/New_York,434,NA,US,37.45,-79.25,0 +24513,UNIQUE,0,Lynchburg,,"J Crew",VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,0 +24514,UNIQUE,0,Lynchburg,,"Thomas Rd Bapt Church",VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,0 +24515,UNIQUE,0,Lynchburg,,"Liberty University",VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,0 +24517,STANDARD,0,Altavista,,,VA,"Campbell County",America/New_York,434,NA,US,37.12,-79.28,4600 +24520,STANDARD,0,Alton,,,VA,"Halifax County",America/New_York,434,NA,US,36.56,-79,1970 +24521,STANDARD,0,Amherst,,Falconerville,VA,"Amherst County",America/New_York,434,NA,US,37.58,-79.05,8430 +24522,STANDARD,0,Appomattox,,,VA,"Appomattox County",America/New_York,434,NA,US,37.35,-78.82,8850 +24523,STANDARD,0,Bedford,,,VA,"Bedford County",America/New_York,540,NA,US,37.32,-79.52,16080 +24526,STANDARD,0,"Big Island",,Snowden,VA,"Bedford County",America/New_York,434,NA,US,37.53,-79.36,1280 +24527,STANDARD,0,Blairs,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.68,-79.38,2510 +24528,STANDARD,0,Brookneal,,,VA,"Campbell County",America/New_York,434,NA,US,37.05,-78.94,2530 +24529,STANDARD,0,"Buffalo Junction","Buffalo Jct",,VA,"Mecklenburg County",America/New_York,434,NA,US,36.6,-78.63,1260 +24530,STANDARD,0,Callands,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.81,-79.62,850 +24531,STANDARD,0,Chatham,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.81,-79.39,6520 +24533,"PO BOX",0,Clifford,,,VA,"Amherst County",America/New_York,434,NA,US,37.65,-79.03,88 +24534,STANDARD,0,Clover,,,VA,"Halifax County",America/New_York,434,NA,US,36.83,-78.73,1280 +24535,"PO BOX",0,"Cluster Springs","Cluster Spgs",,VA,"Halifax County",America/New_York,434,NA,US,36.61,-78.91,120 +24536,STANDARD,0,"Coleman Falls",,,VA,"Bedford County",America/New_York,,NA,US,37.5,-79.33,240 +24538,STANDARD,0,Concord,,,VA,"Campbell County",America/New_York,434,NA,US,37.35,-78.98,4250 +24539,STANDARD,0,"Crystal Hill",,,VA,"Halifax County",America/New_York,434,NA,US,36.85,-78.91,212 +24540,STANDARD,0,Danville,,,VA,"Danville city",America/New_York,434,NA,US,36.63,-79.43,24870 +24541,STANDARD,0,Danville,,Schoolfield,VA,"Danville city",America/New_York,434,NA,US,36.58,-79.4,20930 +24543,"PO BOX",0,Danville,,,VA,"Danville City",America/New_York,434,NA,US,36.58,-79.4,931 +24544,UNIQUE,1,Danville,"Manufactures Hanover",,VA,"Danville City",America/New_York,434,NA,US,36.58,-79.39,0 +24549,STANDARD,0,"Dry Fork",,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.75,-79.41,3590 +24550,STANDARD,0,Evington,,,VA,"Campbell County",America/New_York,434,NA,US,37.23,-79.28,6700 +24551,STANDARD,0,Forest,,,VA,"Bedford County",America/New_York,,NA,US,37.37,-79.27,23640 +24553,STANDARD,0,Gladstone,,,VA,"Nelson County",America/New_York,434,NA,US,37.54,-78.84,1500 +24554,STANDARD,0,Gladys,,,VA,"Campbell County",America/New_York,434,NA,US,37.16,-79.08,3170 +24555,STANDARD,0,Glasgow,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.63,-79.45,1690 +24556,STANDARD,0,Goode,,,VA,"Bedford County",America/New_York,,NA,US,37.36,-79.38,3080 +24557,STANDARD,0,Gretna,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.95,-79.36,6060 +24558,STANDARD,0,Halifax,,,VA,"Halifax County",America/New_York,434,NA,US,36.76,-78.93,5250 +24562,STANDARD,0,Howardsville,Scottsville,,VA,"Buckingham County",America/New_York,434,NA,US,37.73,-78.64,390 +24563,STANDARD,0,Hurt,,,VA,"Pittsylvania County",America/New_York,434,NA,US,37.09,-79.29,4180 +24565,STANDARD,0,Java,,,VA,"Pittsylvania County",America/New_York,,NA,US,36.83,-79.23,820 +24566,STANDARD,0,Keeling,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.71,-79.3,1200 +24569,STANDARD,0,"Long Island",,,VA,"Pittsylvania County",America/New_York,434,NA,US,37.08,-79.1,760 +24570,STANDARD,0,Lowry,,,VA,"Bedford County",America/New_York,,NA,US,37.35,-79.42,72 +24571,STANDARD,0,"Lynch Station",,,VA,"Campbell County",America/New_York,,NA,US,37.14,-79.36,1520 +24572,STANDARD,0,"Madison Heights","Madison Hts","Wrights Shop",VA,"Amherst County",America/New_York,434,NA,US,37.43,-79.1,14210 +24574,STANDARD,0,Monroe,,,VA,"Amherst County",America/New_York,434,NA,US,37.6,-79.24,3260 +24576,"PO BOX",0,Naruna,,,VA,"Campbell County",America/New_York,434,NA,US,37.13,-78.95,182 +24577,STANDARD,0,Nathalie,"Lennig, Republican Grove, Republicn Grv",,VA,"Halifax County",America/New_York,434,NA,US,36.93,-78.95,3890 +24578,STANDARD,0,"Natural Bridge","Natural Brg",,VA,"Rockbridge County",America/New_York,540,NA,US,37.63,-79.55,850 +24579,STANDARD,0,"Natural Bridge Station","Naturl Br Sta",,VA,"Rockbridge County",America/New_York,540,NA,US,37.58,-79.5,1140 +24580,STANDARD,0,Nelson,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.55,-78.67,470 +24581,STANDARD,0,Norwood,,,VA,"Nelson County",America/New_York,434,NA,US,37.66,-78.81,0 +24586,STANDARD,0,Ringgold,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.6,-79.3,4610 +24588,STANDARD,0,Rustburg,,,VA,"Campbell County",America/New_York,434,NA,US,37.28,-79.1,8220 +24589,STANDARD,0,Scottsburg,,,VA,"Halifax County",America/New_York,434,NA,US,36.75,-78.79,1730 +24590,STANDARD,0,Scottsville,,,VA,"Albemarle County",America/New_York,434,NA,US,37.79,-78.49,6990 +24592,STANDARD,0,"South Boston",Turbeville,,VA,"Halifax County",America/New_York,434,NA,US,36.7,-78.9,10940 +24593,STANDARD,0,"Spout Spring",,,VA,"Appomattox County",America/New_York,434,NA,US,37.35,-78.91,1820 +24594,STANDARD,0,Sutherlin,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.62,-79.18,1350 +24595,"PO BOX",0,"Sweet Briar",,,VA,"Amherst County",America/New_York,434,NA,US,37.56,-79.08,188 +24597,STANDARD,0,"Vernon Hill",Ingram,,VA,"Halifax County",America/New_York,,NA,US,36.79,-79.12,1000 +24598,STANDARD,0,Virgilina,,,VA,"Halifax County",America/New_York,434,NA,US,36.6,-78.79,1450 +24599,STANDARD,0,Wingina,,,VA,"Buckingham County",America/New_York,,NA,US,37.64,-78.73,540 +24601,"PO BOX",0,Amonate,,,VA,"Tazewell County",America/New_York,276,NA,US,37.19,-81.65,50 +24602,STANDARD,0,Bandy,,,VA,"Tazewell County",America/New_York,276,NA,US,37.14,-81.7,500 +24603,STANDARD,0,"Big Rock",Conaway,,VA,"Buchanan County",America/New_York,276,NA,US,37.35,-82.2,620 +24604,"PO BOX",0,Bishop,,,VA,"Tazewell County",America/New_York,276,NA,US,37.21,-81.53,204 +24605,STANDARD,0,Bluefield,Yards,,VA,"Tazewell County",America/New_York,276,NA,US,37.23,-81.26,6710 +24606,"PO BOX",0,Boissevain,,,VA,"Tazewell County",America/New_York,276,NA,US,37.28,-81.39,322 +24607,"PO BOX",0,Breaks,,,VA,"Buchanan County",America/New_York,276,NA,US,37.29,-82.28,308 +24608,"PO BOX",0,"Burkes Garden",Tazewell,,VA,"Tazewell County",America/New_York,276,NA,US,37.1,-81.35,24 +24609,STANDARD,0,"Cedar Bluff",,"Belfast Mills, Indian, Steeleburg, Wardell",VA,"Tazewell County",America/New_York,276,NA,US,37.01,-81.81,4990 +24612,"PO BOX",0,Doran,,,VA,"Tazewell County",America/New_York,276,NA,US,37.09,-81.84,877 +24613,STANDARD,0,"Falls Mills",,,VA,"Tazewell County",America/New_York,276,NA,US,37.26,-81.33,680 +24614,STANDARD,0,Grundy,,"Royal City, Stacy",VA,"Buchanan County",America/New_York,276,NA,US,37.27,-82.1,4840 +24619,"PO BOX",0,Horsepen,,,VA,"McDowell County",America/New_York,,NA,US,37.23,-81.49,63 +24620,STANDARD,0,Hurley,,,VA,"Buchanan County",America/New_York,276,NA,US,37.42,-82.02,1500 +24622,STANDARD,0,"Jewell Ridge","Jewell Valley",,VA,"Buchanan County",America/New_York,276,NA,US,37.18,-81.8,530 +24624,"PO BOX",0,"Keen Mountain",,,VA,"Buchanan County",America/New_York,,NA,US,37.2,-81.95,232 +24627,"PO BOX",0,Mavisdale,,,VA,"Buchanan County",America/New_York,,NA,US,37.19,-82.21,386 +24628,STANDARD,0,Maxie,Harman,,VA,"Buchanan County",America/New_York,276,NA,US,37.31,-82.19,370 +24630,STANDARD,0,"North Tazewell","N Tazewell, Tiptop",,VA,"Tazewell County",America/New_York,276,NA,US,37.16,-81.5,4830 +24631,STANDARD,0,Oakwood,Patterson,,VA,"Buchanan County",America/New_York,276,NA,US,37.21,-81.98,800 +24634,STANDARD,0,"Pilgrims Knob",,,VA,"Buchanan County",America/New_York,276,NA,US,37.29,-81.9,410 +24635,"PO BOX",0,Pocahontas,,,VA,"Tazewell County",America/New_York,276,NA,US,37.3,-81.34,544 +24637,STANDARD,0,"Pounding Mill",,"Paint Lick",VA,"Tazewell County",America/New_York,276,NA,US,37.04,-81.73,2900 +24639,STANDARD,0,Raven,,,VA,"Tazewell County",America/New_York,276,NA,US,37.16,-81.9,2060 +24640,"PO BOX",0,"Red Ash",,,VA,"Tazewell County",America/New_York,276,NA,US,37.12,-81.87,46 +24641,STANDARD,0,Richlands,,,VA,"Tazewell County",America/New_York,276,NA,US,37.09,-81.8,4020 +24646,STANDARD,0,Rowe,,,VA,"Buchanan County",America/New_York,276,NA,US,37.12,-82.03,450 +24647,"PO BOX",0,"Shortt Gap",,,VA,"Buchanan County",America/New_York,,NA,US,37.18,-81.84,62 +24649,STANDARD,0,"Swords Creek",,"Dye, Lynn Spring",VA,"Russell County",America/New_York,276,NA,US,37.08,-81.91,1430 +24651,STANDARD,0,Tazewell,,"Gratton, Maxwell",VA,"Tazewell County",America/New_York,276,NA,US,37.12,-81.51,4410 +24656,STANDARD,0,Vansant,,,VA,"Buchanan County",America/New_York,276,NA,US,37.23,-82.08,2340 +24657,STANDARD,0,Whitewood,,,VA,"Buchanan County",America/New_York,276,NA,US,37.26,-81.88,271 +24658,"PO BOX",0,Wolford,,,VA,"Buchanan County",America/New_York,,NA,US,37.38,-81.99,224 +24701,STANDARD,0,Bluefield,"Bluewell, Green Valley","Ada, Brush Fork, Ceres, Littlesburg, Lorton Lick, Sandlick",WV,"Mercer County",America/New_York,"304,681",NA,US,37.26,-81.21,14750 +24712,STANDARD,0,Athens,,,WV,"Mercer County",America/New_York,304,NA,US,37.42,-81.01,1510 +24714,STANDARD,0,Beeson,,,WV,"Mercer County",America/New_York,304,NA,US,37.48,-81.19,121 +24715,STANDARD,0,Bramwell,,,WV,"Mercer County",America/New_York,304,NA,US,37.34,-81.32,310 +24716,"PO BOX",0,Bud,,,WV,"Wyoming County",America/New_York,304,NA,US,37.52,-81.35,553 +24719,"PO BOX",0,Covel,,,WV,"Wyoming County",America/New_York,304,NA,US,37.49,-81.33,104 +24724,STANDARD,0,Freeman,Coaldale,,WV,"Mercer County",America/New_York,304,NA,US,37.33,-81.3,109 +24726,STANDARD,0,Herndon,,,WV,"Wyoming County",America/New_York,304,NA,US,37.51,-81.36,330 +24729,"PO BOX",0,Hiawatha,,,WV,"Mercer County",America/New_York,304,NA,US,37.45,-81.26,38 +24731,STANDARD,0,Kegley,,,WV,"Mercer County",America/New_York,304,NA,US,37.4,-81.13,340 +24732,"PO BOX",0,Kellysville,,,WV,"Mercer County",America/New_York,304,NA,US,37.34,-80.9,107 +24733,STANDARD,0,Lashmeet,,,WV,"Mercer County",America/New_York,304,NA,US,37.44,-81.21,700 +24736,STANDARD,0,Matoaka,Dott,Giatto,WV,"Mercer County",America/New_York,304,NA,US,37.41,-81.24,450 +24737,"PO BOX",0,Montcalm,,,WV,"Mercer County",America/New_York,304,NA,US,37.35,-81.25,728 +24738,"PO BOX",0,Nemours,,,WV,"Mercer County",America/New_York,304,NA,US,37.3,-81.31,176 +24739,STANDARD,0,Princeton,Oakvale,,WV,"Mercer County",America/New_York,304,NA,US,37.33,-80.96,53 +24740,STANDARD,0,Princeton,"Elgood, Oakvale",,WV,"Mercer County",America/New_York,304,NA,US,37.36,-81.1,12970 +24747,STANDARD,0,Rock,"Duhring, Mc Comas",,WV,"Mercer County",America/New_York,304,NA,US,37.38,-81.23,1830 +24751,"PO BOX",0,Wolfe,,,WV,"Mercer County",America/New_York,304,NA,US,37.29,-81.22,32 +24801,STANDARD,0,Welch,"Capels, Coalwood, Havaco, Hemphill, Skygusty, Superior, Wolf Pen",Maitland,WV,"McDowell County",America/New_York,"304,681",NA,US,37.43,-81.58,2460 +24808,STANDARD,0,Anawalt,Leckie,,WV,"McDowell County",America/New_York,304,NA,US,37.33,-81.44,270 +24811,"PO BOX",0,Avondale,,Garland,WV,"McDowell County",America/New_York,304,NA,US,37.41,-81.8,359 +24813,"PO BOX",0,Bartley,,,WV,"McDowell County",America/New_York,304,NA,US,37.33,-81.73,204 +24815,STANDARD,0,Berwind,"Canebrake, Vallscreek",,WV,"McDowell County",America/New_York,304,NA,US,37.26,-81.66,230 +24816,"PO BOX",0,"Big Sandy",,,WV,"McDowell County",America/New_York,304,NA,US,37.46,-81.71,90 +24817,"PO BOX",0,Bradshaw,,,WV,"McDowell County",America/New_York,304,NA,US,37.35,-81.8,523 +24818,STANDARD,0,Brenton,,,WV,"Wyoming County",America/New_York,304,NA,US,37.6,-81.62,760 +24822,STANDARD,0,"Clear Fork",,,WV,"Wyoming County",America/New_York,304,NA,US,37.64,-81.69,530 +24823,STANDARD,0,"Coal Mountain",,,WV,"Wyoming County",America/New_York,304,NA,US,37.67,-81.73,240 +24826,"PO BOX",0,Cucumber,,,WV,"McDowell County",America/New_York,304,NA,US,37.28,-81.61,73 +24827,STANDARD,0,Cyclone,,,WV,"Wyoming County",America/New_York,304,NA,US,37.74,-81.66,810 +24828,STANDARD,0,Davy,"Asco, Twin Branch",,WV,"McDowell County",America/New_York,"304,681",NA,US,37.47,-81.65,470 +24829,STANDARD,0,Eckman,,,WV,"McDowell County",America/New_York,304,NA,US,37.4,-81.46,118 +24830,STANDARD,0,Elbert,Filbert,,WV,"McDowell County",America/New_York,"304,681",NA,US,37.33,-81.52,111 +24831,STANDARD,0,Elkhorn,,,WV,"McDowell County",America/New_York,304,NA,US,37.39,-81.41,110 +24834,"PO BOX",0,Fanrock,,,WV,"Wyoming County",America/New_York,304,NA,US,37.55,-81.63,148 +24836,"PO BOX",0,Gary,,,WV,"McDowell County",America/New_York,304,NA,US,37.36,-81.53,536 +24839,STANDARD,0,Hanover,,,WV,"Wyoming County",America/New_York,304,NA,US,37.56,-81.81,720 +24842,"PO BOX",1,Hemphill,,,WV,"McDowell County",America/New_York,304,NA,US,37.44,-81.59,0 +24843,"PO BOX",0,Hensley,,,WV,"McDowell County",America/New_York,304,NA,US,37.49,-81.71,85 +24844,STANDARD,0,Iaeger,,Steeles,WV,"McDowell County",America/New_York,304,NA,US,37.46,-81.81,1220 +24845,"PO BOX",0,"Ikes Fork",,,WV,"Wyoming County",America/New_York,304,NA,US,37.53,-81.79,233 +24846,STANDARD,0,Isaban,,,WV,"Mingo County",America/New_York,304,NA,US,37.53,-81.91,144 +24847,"PO BOX",0,Itmann,,,WV,"Wyoming County",America/New_York,304,NA,US,37.58,-81.42,247 +24848,"PO BOX",0,Jenkinjones,,,WV,"McDowell County",America/New_York,304,NA,US,37.28,-81.43,86 +24849,STANDARD,0,Jesse,,,WV,"Wyoming County",America/New_York,304,NA,US,37.66,-81.55,210 +24850,STANDARD,0,Jolo,,,WV,"McDowell County",America/New_York,304,NA,US,37.33,-81.83,580 +24851,"PO BOX",0,Justice,,,WV,"Mingo County",America/New_York,304,NA,US,37.59,-81.84,302 +24853,"PO BOX",0,Kimball,Vivian,,WV,"McDowell County",America/New_York,304,NA,US,37.42,-81.5,632 +24854,"PO BOX",0,Kopperston,,,WV,"Wyoming County",America/New_York,304,NA,US,37.75,-81.56,280 +24855,STANDARD,0,Kyle,,,WV,"McDowell County",America/New_York,304,NA,US,37.4,-81.42,54 +24857,"PO BOX",0,Lynco,,Lillydale,WV,"Wyoming County",America/New_York,304,NA,US,37.67,-81.66,513 +24859,"PO BOX",0,Marianna,Pineville,,WV,"Wyoming County",America/New_York,304,NA,US,37.61,-81.57,0 +24860,STANDARD,0,Matheny,,,WV,"Wyoming County",America/New_York,304,NA,US,37.68,-81.59,390 +24861,"PO BOX",0,Maybeury,,,WV,"McDowell County",America/New_York,304,NA,US,37.37,-81.35,197 +24862,STANDARD,0,Mohawk,,,WV,"McDowell County",America/New_York,304,NA,US,37.47,-81.96,260 +24866,"PO BOX",0,Newhall,,,WV,"McDowell County",America/New_York,304,NA,US,37.26,-81.6,170 +24867,"PO BOX",0,"New Richmond",,,WV,"Wyoming County",America/New_York,304,NA,US,37.6,-81.44,151 +24868,STANDARD,0,Northfork,"Algoma, Ashland, Crumpler, Keystone, Mc Dowell, Powhatan, Worth",,WV,"McDowell County",America/New_York,"304,681",NA,US,37.41,-81.42,780 +24869,STANDARD,0,"North Spring",,,WV,"Wyoming County",America/New_York,304,NA,US,37.56,-81.84,179 +24870,STANDARD,0,Oceana,,"Crany, Hatcher, Rollins Branch, Toneyfork",WV,"Wyoming County",America/New_York,"304,681",NA,US,37.69,-81.63,2800 +24871,"PO BOX",0,Pageton,,,WV,"McDowell County",America/New_York,304,NA,US,37.36,-81.47,165 +24872,STANDARD,0,Panther,,,WV,"McDowell County",America/New_York,304,NA,US,37.49,-81.88,520 +24873,STANDARD,0,Paynesville,,,WV,"McDowell County",America/New_York,"304,681",NA,US,37.37,-81.88,370 +24874,STANDARD,0,Pineville,,,WV,"Wyoming County",America/New_York,304,NA,US,37.58,-81.53,2230 +24878,"PO BOX",0,Premier,,,WV,"McDowell County",America/New_York,304,NA,US,37.43,-81.63,260 +24879,STANDARD,0,Raysal,,Atwell,WV,"McDowell County",America/New_York,304,NA,US,37.31,-81.76,290 +24880,STANDARD,0,"Rock View",,,WV,"Wyoming County",America/New_York,304,NA,US,37.65,-81.53,254 +24881,"PO BOX",0,Roderfield,,,WV,"McDowell County",America/New_York,304,NA,US,37.43,-81.68,432 +24882,STANDARD,0,Simon,,,WV,"Wyoming County",America/New_York,304,NA,US,37.61,-81.76,320 +24884,STANDARD,0,Squire,,,WV,"McDowell County",America/New_York,304,NA,US,37.26,-81.56,206 +24887,"PO BOX",0,Switchback,,,WV,"McDowell County",America/New_York,304,NA,US,37.37,-81.4,44 +24888,"PO BOX",0,Thorpe,,,WV,"McDowell County",America/New_York,304,NA,US,37.39,-81.48,161 +24892,STANDARD,0,War,"Caretta, English, Yukon",,WV,"McDowell County",America/New_York,"304,681",NA,US,37.3,-81.68,730 +24894,"PO BOX",0,Warriormine,,,WV,"McDowell County",America/New_York,304,NA,US,37.27,-81.71,208 +24895,"PO BOX",0,Wilcoe,,,WV,"McDowell County",America/New_York,304,NA,US,37.38,-81.55,117 +24898,STANDARD,0,Wyoming,,,WV,"Wyoming County",America/New_York,304,NA,US,37.59,-81.61,157 +24901,STANDARD,0,Lewisburg,,,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.8,-80.43,7640 +24902,"PO BOX",0,Fairlea,,,WV,"Greenbrier County",America/New_York,304,NA,US,37.77,-80.45,105 +24910,STANDARD,0,Alderson,Dawson,,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.72,-80.64,2960 +24915,STANDARD,0,Arbovale,,,WV,"Pocahontas County",America/New_York,"304,681",NA,US,38.45,-79.75,350 +24916,STANDARD,0,Asbury,Alta,,WV,"Greenbrier County",America/New_York,304,NA,US,37.81,-80.56,310 +24918,STANDARD,0,Ballard,,,WV,"Monroe County",America/New_York,304,NA,US,37.51,-80.75,1160 +24920,STANDARD,0,Bartow,,,WV,"Pocahontas County",America/New_York,304,NA,US,38.58,-79.71,250 +24924,STANDARD,0,Buckeye,,,WV,"Pocahontas County",America/New_York,681,NA,US,38.19,-80.14,340 +24925,STANDARD,0,Caldwell,,,WV,"Greenbrier County",America/New_York,304,NA,US,37.75,-80.34,870 +24927,STANDARD,0,Cass,"Stony Bottom",,WV,"Pocahontas County",America/New_York,"681,304",NA,US,38.45,-79.89,270 +24931,STANDARD,0,Crawley,"Clintonville, Kieffer, Sam Black",,WV,"Greenbrier County",America/New_York,304,NA,US,37.94,-80.61,1340 +24934,STANDARD,0,Dunmore,,,WV,"Pocahontas County",America/New_York,304,NA,US,38.35,-79.82,410 +24935,STANDARD,0,"Forest Hill","Indian Mills",,WV,"Summers County",America/New_York,304,NA,US,37.55,-80.83,400 +24938,STANDARD,0,Frankford,"Anthony, Friars Hill",,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.91,-80.38,1300 +24941,STANDARD,0,"Gap Mills","Sweet Springs",,WV,"Monroe County",America/New_York,304,NA,US,37.56,-80.41,770 +24943,STANDARD,0,"Grassy Meadows","Grassy Mdws",,WV,"Greenbrier County",America/New_York,304,NA,US,37.84,-80.74,118 +24944,STANDARD,0,"Green Bank",,,WV,"Pocahontas County",America/New_York,304,NA,US,38.39,-79.78,510 +24945,STANDARD,0,Greenville,,,WV,"Monroe County",America/New_York,304,NA,US,37.53,-80.66,400 +24946,STANDARD,0,Hillsboro,"Droop, Mill Point, Seebert",,WV,"Pocahontas County",America/New_York,"681,304",NA,US,38.13,-80.21,940 +24951,STANDARD,0,Lindside,,,WV,"Monroe County",America/New_York,304,NA,US,37.45,-80.66,1330 +24954,STANDARD,0,Marlinton,"Minehaha Spgs, Minnehaha Springs",Minnehaha,WV,"Pocahontas County",America/New_York,"681,304",NA,US,38.22,-80.08,2570 +24957,STANDARD,0,Maxwelton,,,WV,"Greenbrier County",America/New_York,304,NA,US,37.89,-80.43,420 +24961,STANDARD,1,"White Sulphur Springs",,,WV,"Greenbrier County",America/New_York,304,NA,US,37.97,-80.11,0 +24962,STANDARD,0,"Pence Springs",,,WV,"Summers County",America/New_York,304,NA,US,37.66,-80.72,136 +24963,STANDARD,0,Peterstown,Bozoo,,WV,"Monroe County",America/New_York,304,NA,US,37.44,-80.76,3170 +24966,STANDARD,0,Renick,"Auto, Falling Sprg",,WV,"Greenbrier County",America/New_York,304,NA,US,37.98,-80.36,970 +24970,STANDARD,0,Ronceverte,"Fort Spring, Organ Cave",,WV,"Greenbrier County",America/New_York,304,NA,US,37.74,-80.47,3320 +24974,STANDARD,0,Secondcreek,,,WV,"Monroe County",America/New_York,304,NA,US,37.64,-80.45,179 +24976,STANDARD,0,"Sinks Grove",Pickaway,,WV,"Monroe County",America/New_York,304,NA,US,37.66,-80.52,910 +24977,STANDARD,0,Smoot,"Meadow Bluff",,WV,"Greenbrier County",America/New_York,304,NA,US,37.9,-80.69,380 +24981,STANDARD,0,Talcott,Ballengee,,WV,"Summers County",America/New_York,304,NA,US,37.65,-80.75,560 +24983,STANDARD,0,Union,"Glace, Sarton, Willow Bend",,WV,"Monroe County",America/New_York,304,NA,US,37.59,-80.54,1800 +24984,STANDARD,0,Waiteville,,,WV,"Monroe County",America/New_York,304,NA,US,37.48,-80.43,90 +24985,STANDARD,0,Wayside,,,WV,"Monroe County",America/New_York,304,NA,US,37.58,-80.7,225 +24986,STANDARD,0,"White Sulphur Springs","Neola, Wht Sphr Spgs, Wht Sulphur S, Wht Sulphur Spgs",,WV,"Greenbrier County",America/New_York,304,NA,US,37.79,-80.29,4050 +24991,STANDARD,0,Williamsburg,Trout,,WV,"Greenbrier County",America/New_York,304,NA,US,38.02,-80.5,330 +24993,STANDARD,0,Wolfcreek,,,WV,"Monroe County",America/New_York,304,NA,US,37.66,-80.63,55 +25002,"PO BOX",0,Alloy,,,WV,"Fayette County",America/New_York,304,NA,US,38.13,-81.24,155 +25003,STANDARD,0,"Alum Creek",,,WV,"Lincoln County",America/New_York,304,NA,US,38.28,-81.84,2080 +25005,STANDARD,0,Amma,,,WV,"Roane County",America/New_York,681,NA,US,38.58,-81.26,260 +25007,STANDARD,0,Arnett,,,WV,"Raleigh County",America/New_York,304,NA,US,37.84,-81.43,360 +25008,STANDARD,0,Artie,,,WV,"Raleigh County",America/New_York,304,NA,US,37.95,-81.34,152 +25009,STANDARD,0,Ashford,,,WV,"Boone County",America/New_York,304,NA,US,38.19,-81.71,750 +25011,"PO BOX",0,Bancroft,,,WV,"Putnam County",America/New_York,304,NA,US,38.51,-81.84,519 +25015,STANDARD,0,Belle,"Diamond, Dupont City, Quincy, Shrewsbury, Witcher",,WV,"Kanawha County",America/New_York,304,NA,US,38.23,-81.53,3300 +25019,STANDARD,0,Bickmore,Fola,,WV,"Clay County",America/New_York,304,NA,US,38.37,-81.1,430 +25021,STANDARD,0,Bim,,,WV,"Boone County",America/New_York,304,NA,US,37.92,-81.68,201 +25022,"PO BOX",0,Blair,,,WV,"Logan County",America/New_York,304,NA,US,37.86,-81.83,143 +25024,STANDARD,0,Bloomingrose,,,WV,"Boone County",America/New_York,304,NA,US,38.15,-81.62,350 +25025,STANDARD,0,Blount,,,WV,"Kanawha County",America/New_York,304,NA,US,38.3,-81.38,143 +25026,"PO BOX",0,"Blue Creek",,,WV,"Kanawha County",America/New_York,304,NA,US,38.47,-81.51,101 +25028,STANDARD,0,"Bob White",,,WV,"Boone County",America/New_York,304,NA,US,37.95,-81.72,328 +25030,STANDARD,0,Bomont,,,WV,"Clay County",America/New_York,304,NA,US,38.45,-81.23,350 +25031,"PO BOX",0,Boomer,,,WV,"Fayette County",America/New_York,304,NA,US,38.15,-81.27,514 +25033,STANDARD,0,Buffalo,,,WV,"Putnam County",America/New_York,304,NA,US,38.61,-81.98,1780 +25035,STANDARD,0,"Cabin Creek",,Chelyan,WV,"Kanawha County",America/New_York,304,NA,US,38.17,-81.52,870 +25036,"PO BOX",0,Cannelton,,,WV,"Fayette County",America/New_York,304,NA,US,38.21,-81.26,495 +25039,STANDARD,0,"Cedar Grove",,,WV,"Kanawha County",America/New_York,304,NA,US,38.22,-81.42,790 +25040,"PO BOX",0,"Charlton Heights","Charlton Hgts",,WV,"Fayette County",America/New_York,304,NA,US,38.13,-81.24,460 +25043,STANDARD,0,Clay,,,WV,"Clay County",America/New_York,304,NA,US,38.46,-81.08,1160 +25044,STANDARD,0,"Clear Creek",,,WV,"Raleigh County",America/New_York,304,NA,US,37.89,-81.31,250 +25045,STANDARD,0,Clendenin,"Clio, Corton, Quick",,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.48,-81.34,3850 +25047,STANDARD,0,Clothier,,,WV,"Logan County",America/New_York,304,NA,US,37.92,-81.77,230 +25048,STANDARD,0,Colcord,,,WV,"Raleigh County",America/New_York,304,NA,US,37.95,-81.44,141 +25049,STANDARD,0,Comfort,,,WV,"Boone County",America/New_York,304,NA,US,38.12,-81.57,550 +25051,STANDARD,0,Costa,,,WV,"Boone County",America/New_York,304,NA,US,38.16,-81.71,174 +25053,STANDARD,0,Danville,,,WV,"Boone County",America/New_York,304,NA,US,38.08,-81.83,3030 +25054,"PO BOX",0,Dawes,,,WV,"Kanawha County",America/New_York,304,NA,US,38.11,-81.49,579 +25057,"PO BOX",0,"Deep Water",,,WV,"Fayette County",America/New_York,304,NA,US,38.12,-81.25,218 +25059,STANDARD,0,Dixie,,,WV,"Fayette County",America/New_York,304,NA,US,38.23,-81.21,430 +25060,STANDARD,0,Dorothy,Ameagle,,WV,"Raleigh County",America/New_York,304,NA,US,37.96,-81.49,280 +25061,"PO BOX",0,Drybranch,,,WV,"Kanawha County",America/New_York,304,NA,US,38.17,-81.44,385 +25062,STANDARD,0,"Dry Creek",,,WV,"Raleigh County",America/New_York,304,NA,US,37.88,-81.43,198 +25063,STANDARD,0,Duck,"Elmira, Harrison, Strange Creek",,WV,"Braxton County",America/New_York,"304,681",NA,US,38.56,-80.97,1070 +25064,STANDARD,0,Dunbar,,,WV,"Kanawha County",America/New_York,304,NA,US,38.36,-81.73,7320 +25067,STANDARD,0,"East Bank","Crown Hill",,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.21,-81.44,810 +25070,"PO BOX",0,Eleanor,,,WV,"Putnam County",America/New_York,304,NA,US,38.53,-81.93,1700 +25071,STANDARD,0,Elkview,Frame,,WV,"Kanawha County",America/New_York,304,NA,US,38.43,-81.47,8760 +25075,STANDARD,0,Eskdale,"Carbon, Decota, Kayford, Leewood, Ohley",,WV,"Kanawha County",America/New_York,304,NA,US,38.06,-81.41,450 +25076,"PO BOX",0,Ethel,,,WV,"Logan County",America/New_York,304,NA,US,37.87,-81.93,354 +25079,STANDARD,0,"Falling Rock",,,WV,"Kanawha County",America/New_York,304,NA,US,38.47,-81.38,160 +25081,STANDARD,0,Foster,,,WV,"Boone County",America/New_York,304,NA,US,38.09,-81.77,900 +25082,STANDARD,0,"Fraziers Bottom","Fraziers Btm, Pliny",,WV,"Putnam County",America/New_York,304,NA,US,38.54,-82.02,1730 +25083,STANDARD,0,Gallagher,"Burnwell, Livingston, Mahan, Standard, Whittaker",,WV,"Kanawha County",America/New_York,304,NA,US,38.07,-81.37,390 +25085,STANDARD,0,"Gauley Bridge",Brownsville,,WV,"Fayette County",America/New_York,304,NA,US,38.17,-81.21,680 +25086,"PO BOX",0,Glasgow,,,WV,"Kanawha County",America/New_York,304,NA,US,38.2,-81.42,714 +25088,STANDARD,0,Glen,,,WV,"Clay County",America/New_York,304,NA,US,38.35,-81.23,91 +25090,"PO BOX",0,"Glen Ferris",,,WV,"Fayette County",America/New_York,304,NA,US,38.16,-81.22,104 +25093,STANDARD,0,Gordon,,,WV,"Boone County",America/New_York,304,NA,US,37.99,-81.68,221 +25102,"PO BOX",0,Handley,,,WV,"Kanawha County",America/New_York,304,NA,US,38.18,-81.36,246 +25103,STANDARD,0,Hansford,,,WV,"Kanawha County",America/New_York,304,NA,US,38.18,-81.38,230 +25106,STANDARD,0,Henderson,,,WV,"Mason County",America/New_York,304,NA,US,38.83,-82.13,480 +25107,STANDARD,0,Hernshaw,,,WV,"Kanawha County",America/New_York,304,NA,US,38.2,-81.61,440 +25108,STANDARD,0,Hewett,,,WV,"Boone County",America/New_York,304,NA,US,37.96,-81.85,510 +25109,"PO BOX",0,Hometown,,,WV,"Putnam County",America/New_York,304,NA,US,38.53,-81.85,410 +25110,"PO BOX",0,Hugheston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.22,-81.31,368 +25111,STANDARD,0,Indore,,,WV,"Clay County",America/New_York,304,NA,US,38.35,-81.16,410 +25112,"PO BOX",0,Institute,,,WV,"Kanawha County",America/New_York,304,NA,US,38.38,-81.77,400 +25113,STANDARD,0,Ivydale,"Big Otter",,WV,"Clay County",America/New_York,"304,681",NA,US,38.52,-81.02,560 +25114,STANDARD,0,Jeffrey,Ramage,,WV,"Boone County",America/New_York,304,NA,US,37.99,-81.79,300 +25115,STANDARD,0,"Kanawha Falls",,,WV,"Fayette County",America/New_York,304,NA,US,38.12,-81.18,22 +25118,STANDARD,0,Kimberly,,,WV,"Fayette County",America/New_York,304,NA,US,38.12,-81.32,390 +25119,STANDARD,0,Kincaid,,,WV,"Fayette County",America/New_York,304,NA,US,38.04,-81.28,370 +25121,STANDARD,0,Lake,,,WV,"Logan County",America/New_York,304,NA,US,37.92,-81.9,490 +25123,STANDARD,0,Leon,"Arbuckle, Grimms Landing, Grimms Lndg, Robertsburg",,WV,"Mason County",America/New_York,304,NA,US,38.74,-81.95,2560 +25124,STANDARD,0,Liberty,,,WV,"Putnam County",America/New_York,304,NA,US,38.63,-81.76,1040 +25125,STANDARD,0,Lizemores,Bentree,,WV,"Clay County",America/New_York,304,NA,US,38.33,-81.16,560 +25126,"PO BOX",0,London,,,WV,"Kanawha County",America/New_York,304,NA,US,38.2,-81.37,210 +25130,STANDARD,0,Madison,,,WV,"Boone County",America/New_York,304,NA,US,38.05,-81.8,2810 +25132,STANDARD,0,Mammoth,,,WV,"Kanawha County",America/New_York,304,NA,US,38.29,-81.34,190 +25133,STANDARD,0,Maysel,,,WV,"Clay County",America/New_York,304,NA,US,38.48,-81.12,500 +25134,"PO BOX",0,Miami,,,WV,"Kanawha County",America/New_York,304,NA,US,38.16,-81.49,399 +25136,STANDARD,0,Montgomery,,,WV,"Fayette County",America/New_York,304,NA,US,38.17,-81.31,970 +25139,STANDARD,0,"Mount Carbon",,,WV,"Fayette County",America/New_York,304,NA,US,38.14,-81.29,420 +25140,STANDARD,0,Naoma,"Montcoal, Stickney, Sundial",,WV,"Raleigh County",America/New_York,304,NA,US,37.89,-81.52,550 +25141,STANDARD,0,Nebo,,,WV,"Clay County",America/New_York,304,NA,US,38.62,-81.02,238 +25142,STANDARD,0,Nellis,,,WV,"Boone County",America/New_York,304,NA,US,38.15,-81.73,270 +25143,STANDARD,0,Nitro,,,WV,"Kanawha County",America/New_York,304,NA,US,38.42,-81.82,7070 +25148,STANDARD,0,Orgas,,,WV,"Boone County",America/New_York,304,NA,US,38.05,-81.56,240 +25149,"PO BOX",0,Ottawa,,,WV,"Boone County",America/New_York,304,NA,US,37.94,-81.76,227 +25152,"PO BOX",0,Page,,,WV,"Fayette County",America/New_York,304,NA,US,38.06,-81.25,222 +25154,STANDARD,0,Peytona,,,WV,"Boone County",America/New_York,304,NA,US,38.12,-81.7,630 +25156,"PO BOX",0,Pinch,,,WV,"Kanawha County",America/New_York,304,NA,US,38.18,-81.34,867 +25159,STANDARD,0,Poca,Lanham,,WV,"Putnam County",America/New_York,304,NA,US,38.47,-81.81,4400 +25160,STANDARD,0,"Pond Gap",,Amelia,WV,"Kanawha County",America/New_York,304,NA,US,38.28,-81.28,210 +25161,STANDARD,0,Powellton,,,WV,"Fayette County",America/New_York,304,NA,US,38.05,-81.32,370 +25162,"PO BOX",0,Pratt,,,WV,"Kanawha County",America/New_York,304,NA,US,38.21,-81.39,529 +25164,STANDARD,0,Procious,"Ovapa, Pigeon",,WV,"Clay County",America/New_York,681,NA,US,38.5,-81.21,890 +25165,STANDARD,0,Racine,,,WV,"Boone County",America/New_York,304,NA,US,38.16,-81.65,470 +25168,STANDARD,0,"Red House",,,WV,"Putnam County",America/New_York,304,NA,US,38.55,-81.89,2450 +25169,STANDARD,0,Ridgeview,,,WV,"Boone County",America/New_York,304,NA,US,38.15,-81.78,250 +25173,STANDARD,0,Robson,"Beards Fork",,WV,"Fayette County",America/New_York,304,NA,US,38.09,-81.24,300 +25174,STANDARD,0,"Rock Creek",,,WV,"Raleigh County",America/New_York,304,NA,US,37.87,-81.41,300 +25177,STANDARD,0,"Saint Albans",Jefferson,,WV,"Kanawha County",America/New_York,304,NA,US,38.37,-81.81,19350 +25180,STANDARD,0,Saxon,,,WV,"Raleigh County",America/New_York,304,NA,US,37.78,-81.43,50 +25181,STANDARD,0,Seth,Prenter,"Williams Mountain",WV,"Boone County",America/New_York,304,NA,US,38.09,-81.64,1060 +25183,"PO BOX",0,Sharples,,,WV,"Logan County",America/New_York,304,NA,US,37.93,-81.8,142 +25185,UNIQUE,0,"Mount Olive",,"Mt Olive Crrctnl Complex",WV,"Fayette County",America/New_York,304,NA,US,38.24,-81.24,69 +25186,"PO BOX",0,Smithers,Longacre,,WV,"Fayette County",America/New_York,304,NA,US,38.17,-81.3,791 +25187,STANDARD,0,Southside,,,WV,"Mason County",America/New_York,304,NA,US,38.7,-81.99,490 +25193,STANDARD,0,Sylvester,,,WV,"Boone County",America/New_York,304,NA,US,38.04,-81.51,250 +25201,"PO BOX",0,Tad,,,WV,"Kanawha County",America/New_York,304,NA,US,38.34,-81.49,344 +25202,STANDARD,0,Tornado,"Upper Falls",,WV,"Kanawha County",America/New_York,304,NA,US,38.33,-81.85,1220 +25203,STANDARD,0,"Turtle Creek",,,WV,"Boone County",America/New_York,304,NA,US,38.02,-81.88,240 +25204,STANDARD,0,Twilight,Bandytown,,WV,"Boone County",America/New_York,304,NA,US,37.92,-81.62,123 +25205,"PO BOX",0,Uneeda,,,WV,"Boone County",America/New_York,304,NA,US,38.02,-81.79,423 +25206,STANDARD,0,Van,,,WV,"Boone County",America/New_York,304,NA,US,37.95,-81.69,380 +25208,STANDARD,0,Wharton,"Bald Knob, Barrett",,WV,"Boone County",America/New_York,304,NA,US,37.9,-81.69,610 +25209,STANDARD,0,Whitesville,"Garrison, Packsville, Pettus",,WV,"Boone County",America/New_York,"304,681",NA,US,37.97,-81.53,730 +25211,"PO BOX",0,Widen,,,WV,"Clay County",America/New_York,304,NA,US,38.45,-80.88,72 +25213,STANDARD,0,Winfield,,,WV,"Putnam County",America/New_York,304,NA,US,38.52,-81.88,5690 +25214,STANDARD,0,Winifrede,,,WV,"Kanawha County",America/New_York,304,NA,US,38.19,-81.54,470 +25231,STANDARD,0,Advent,,,WV,"Jackson County",America/New_York,304,NA,US,38.62,-81.56,43 +25234,STANDARD,0,Arnoldsburg,"Sand Ridge",,WV,"Calhoun County",America/New_York,"304,681",NA,US,38.78,-81.12,680 +25235,STANDARD,0,Chloe,Floe,,WV,"Calhoun County",America/New_York,304,NA,US,38.67,-81.09,730 +25239,STANDARD,0,Cottageville,,,WV,"Jackson County",America/New_York,304,NA,US,38.85,-81.81,1360 +25241,STANDARD,0,Evans,,,WV,"Jackson County",America/New_York,304,NA,US,38.8,-81.8,1550 +25243,STANDARD,0,Gandeeville,Harmony,,WV,"Roane County",America/New_York,304,NA,US,38.69,-81.46,750 +25244,STANDARD,0,Gay,,,WV,"Jackson County",America/New_York,304,NA,US,38.77,-81.55,550 +25245,STANDARD,0,Given,"Rock Castle",,WV,"Jackson County",America/New_York,304,NA,US,38.7,-81.76,850 +25247,"PO BOX",0,Hartford,"Hartford City",,WV,"Mason County",America/New_York,304,NA,US,39.01,-82.01,458 +25248,STANDARD,0,Kenna,"Kentuck, Romance",,WV,"Jackson County",America/New_York,304,NA,US,38.67,-81.66,2630 +25251,STANDARD,0,"Left Hand",,,WV,"Roane County",America/New_York,681,NA,US,38.61,-81.24,300 +25252,STANDARD,0,"Le Roy","Duncan, Liverpool",,WV,"Jackson County",America/New_York,304,NA,US,38.95,-81.51,870 +25253,STANDARD,0,Letart,,,WV,"Mason County",America/New_York,"681,304",NA,US,38.88,-81.97,1570 +25259,STANDARD,0,Looneyville,"Linden, Tariff",,WV,"Roane County",America/New_York,304,NA,US,38.66,-81.29,530 +25260,STANDARD,0,Mason,Clifton,,WV,"Mason County",America/New_York,"304,681",NA,US,39,-82.03,1230 +25261,STANDARD,0,Millstone,,,WV,"Calhoun County",America/New_York,304,NA,US,38.85,-81.07,250 +25262,STANDARD,0,Millwood,,,WV,"Jackson County",America/New_York,304,NA,US,38.9,-81.81,830 +25264,STANDARD,0,"Mount Alto",,,WV,"Jackson County",America/New_York,304,NA,US,38.86,-81.87,300 +25265,"PO BOX",0,"New Haven",,,WV,"Mason County",America/New_York,304,NA,US,38.99,-81.96,1284 +25266,STANDARD,0,Newton,Uler,,WV,"Roane County",America/New_York,304,NA,US,38.59,-81.15,570 +25267,STANDARD,0,Normantown,"Letter Gap, Lockney, Stumptown",,WV,"Gilmer County",America/New_York,304,NA,US,38.89,-80.95,560 +25268,STANDARD,0,Orma,Minnora,,WV,"Calhoun County",America/New_York,304,NA,US,38.74,-81.09,430 +25270,STANDARD,0,Reedy,,,WV,"Roane County",America/New_York,304,NA,US,38.89,-81.42,680 +25271,STANDARD,0,Ripley,"Statts Mills",Fairplain,WV,"Jackson County",America/New_York,"304,681",NA,US,38.82,-81.7,7460 +25275,STANDARD,0,Sandyville,,,WV,"Jackson County",America/New_York,304,NA,US,38.9,-81.64,1840 +25276,STANDARD,0,Spencer,,,WV,"Roane County",America/New_York,304,NA,US,38.8,-81.35,5450 +25285,STANDARD,0,Wallback,"Valley Fork",,WV,"Clay County",America/New_York,304,NA,US,38.54,-81.1,550 +25286,STANDARD,0,Walton,,,WV,"Roane County",America/New_York,304,NA,US,38.6,-81.4,1110 +25287,STANDARD,0,"West Columbia",Lakin,,WV,"Mason County",America/New_York,"304,681",NA,US,38.95,-82.05,560 +25301,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.35,-81.63,1710 +25302,STANDARD,0,Charleston,"Big Chimney",,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.39,-81.6,11460 +25303,STANDARD,0,"South Charleston","Charleston, S Charleston",,WV,"Kanawha County",America/New_York,304,NA,US,38.36,-81.69,6360 +25304,STANDARD,0,Charleston,,"Kanawha City",WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.59,6310 +25305,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.34,-81.61,0 +25306,STANDARD,0,Charleston,Malden,,WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.5,5150 +25309,STANDARD,0,"South Charleston","Charleston, S Charleston",,WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.75,10170 +25311,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.37,-81.56,7030 +25312,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.45,-81.66,7230 +25313,STANDARD,0,Charleston,"Cross Lanes",,WV,"Kanawha County",America/New_York,304,NA,US,38.42,-81.76,10510 +25314,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.64,13070 +25315,STANDARD,0,Charleston,"Chesapeake, Marmet",,WV,"Kanawha County",America/New_York,304,NA,US,38.22,-81.56,2210 +25317,UNIQUE,0,Charleston,,"Wv Dept Of Motor Veh",WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25320,STANDARD,0,Charleston,Sissonville,,WV,"Kanawha County",America/New_York,304,NA,US,38.54,-81.63,4200 +25321,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,108 +25322,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,109 +25323,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,95 +25324,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,77 +25325,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,62 +25326,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,62 +25327,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,78 +25328,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,70 +25329,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,57 +25330,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,72 +25331,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25332,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25333,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25334,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25335,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25336,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25337,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,26 +25338,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25339,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,260 +25350,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25356,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,357 +25357,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,141 +25358,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,125 +25360,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,745 +25361,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,187 +25362,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,549 +25364,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,373 +25365,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,174 +25375,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,137 +25387,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25389,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.35,-81.63,0 +25392,UNIQUE,0,Charleston,,"United Bank",WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25396,UNIQUE,0,Charleston,,Verizon,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25401,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.46,-77.97,11740 +25402,"PO BOX",0,Martinsburg,,,WV,"Berkeley County",America/New_York,304,NA,US,39.46,-77.96,2220 +25403,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.47,-78.01,13860 +25404,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.46,-77.96,19200 +25405,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,304,NA,US,39.41,-77.96,12200 +25410,"PO BOX",0,Bakerton,,,WV,"Washington County",America/New_York,304,NA,US,39.36,-77.76,101 +25411,STANDARD,0,"Berkeley Springs","Berkeley Spgs, Hancock, Unger",,WV,"Morgan County",America/New_York,304,NA,US,39.55,-78.21,10770 +25413,STANDARD,0,"Bunker Hill",,,WV,"Berkeley County",America/New_York,304,NA,US,39.32,-78.05,8450 +25414,STANDARD,0,"Charles Town",,,WV,"Jefferson County",America/New_York,304,NA,US,39.28,-77.85,17310 +25419,STANDARD,0,"Falling Waters","Falling Wtrs",,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.55,-77.89,10620 +25420,STANDARD,0,Gerrardstown,,,WV,"Berkeley County",America/New_York,304,NA,US,39.37,-78.11,3840 +25421,STANDARD,0,Glengary,,,WV,"Berkeley County",America/New_York,304,NA,US,39.38,-78.15,222 +25422,STANDARD,0,"Great Cacapon",,,WV,"Morgan County",America/New_York,304,NA,US,39.62,-78.29,1230 +25423,"PO BOX",0,Halltown,,,WV,"Jefferson County",America/New_York,304,NA,US,39.31,-77.76,195 +25425,STANDARD,0,"Harpers Ferry",Bolivar,,WV,"Jefferson County",America/New_York,304,NA,US,39.32,-77.74,11780 +25427,STANDARD,0,Hedgesville,"Cherry Run, Jones Springs",,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.55,-77.99,14650 +25428,STANDARD,0,Inwood,,,WV,"Berkeley County",America/New_York,304,NA,US,39.35,-78.05,11510 +25429,UNIQUE,1,Martinsburg,"N Thompson Outfitters",,WV,"Berkeley County",America/New_York,304,NA,US,39.32,-77.94,0 +25430,STANDARD,0,Kearneysville,Middleway,,WV,"Jefferson County",America/New_York,304,NA,US,39.38,-77.88,7640 +25431,STANDARD,0,Levels,,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.49,-78.57,240 +25432,STANDARD,0,Millville,,,WV,"Jefferson County",America/New_York,304,NA,US,39.31,-77.78,257 +25434,STANDARD,0,"Paw Paw",,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.53,-78.45,1700 +25437,STANDARD,0,Points,,,WV,"Hampshire County",America/New_York,304,NA,US,39.43,-78.57,400 +25438,STANDARD,0,Ranson,,"Forrester Center",WV,"Jefferson County",America/New_York,304,NA,US,39.32,-77.86,6520 +25440,"PO BOX",0,Ridgeway,,,WV,"Berkeley County",America/New_York,304,NA,US,39.3,-78.07,0 +25441,"PO BOX",0,Rippon,,,WV,"Jefferson County",America/New_York,304,NA,US,39.22,-77.9,317 +25442,STANDARD,0,"Shenandoah Junction","Shendoah Jct",,WV,"Jefferson County",America/New_York,304,NA,US,39.35,-77.84,1690 +25443,STANDARD,0,Shepherdstown,,,WV,"Jefferson County",America/New_York,304,NA,US,39.43,-77.8,6450 +25444,STANDARD,0,Slanesville,,,WV,"Hampshire County",America/New_York,304,NA,US,39.37,-78.52,700 +25446,STANDARD,0,"Summit Point",,,WV,"Jefferson County",America/New_York,304,NA,US,39.24,-77.95,1260 +25501,STANDARD,0,Alkol,,,WV,"Lincoln County",America/New_York,304,NA,US,38.15,-81.97,990 +25502,STANDARD,0,"Apple Grove",,,WV,"Mason County",America/New_York,304,NA,US,38.66,-82.12,910 +25503,STANDARD,0,Ashton,,,WV,"Mason County",America/New_York,304,NA,US,38.61,-82.12,630 +25504,STANDARD,0,Barboursville,,,WV,"Cabell County",America/New_York,304,NA,US,38.4,-82.29,10440 +25505,STANDARD,0,"Big Creek",,,WV,"Logan County",America/New_York,304,NA,US,38.01,-82.03,250 +25506,STANDARD,0,Branchland,"Palermo, Sias",,WV,"Lincoln County",America/New_York,304,NA,US,38.25,-82.25,3220 +25507,"PO BOX",0,Ceredo,,,WV,"Wayne County",America/New_York,304,NA,US,38.4,-82.56,1274 +25508,STANDARD,0,Chapmanville,Shively,,WV,"Logan County",America/New_York,304,NA,US,37.97,-82.01,6410 +25510,STANDARD,0,Culloden,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.06,4310 +25511,STANDARD,0,Dunlow,,,WV,"Wayne County",America/New_York,"681,304",NA,US,38.03,-82.34,650 +25512,STANDARD,0,"East Lynn",,,WV,"Wayne County",America/New_York,304,NA,US,38.19,-82.32,690 +25514,STANDARD,0,"Fort Gay",Glenhayes,,WV,"Wayne County",America/New_York,304,NA,US,38.11,-82.59,2890 +25515,STANDARD,0,"Gallipolis Ferry","Galipolis Fry",,WV,"Mason County",America/New_York,304,NA,US,38.76,-82.11,1630 +25517,STANDARD,0,Genoa,Radnor,,WV,"Wayne County",America/New_York,"304,681",NA,US,38.07,-82.46,1260 +25520,STANDARD,0,Glenwood,,,WV,"Mason County",America/New_York,304,NA,US,38.54,-82.14,1090 +25521,STANDARD,0,Griffithsville,Griffithsvle,,WV,"Lincoln County",America/New_York,304,NA,US,38.24,-81.99,810 +25523,STANDARD,0,Hamlin,Sweetland,,WV,"Lincoln County",America/New_York,"304,681",NA,US,38.27,-82.1,2030 +25524,STANDARD,0,Harts,"Ferrellsburg, Leet",,WV,"Lincoln County",America/New_York,304,NA,US,38.03,-82.13,2480 +25526,STANDARD,0,Hurricane,,,WV,"Putnam County",America/New_York,"304,681",NA,US,38.43,-82.01,19950 +25529,STANDARD,0,Julian,,,WV,"Boone County",America/New_York,304,NA,US,38.13,-81.86,600 +25530,STANDARD,0,Kenova,,,WV,"Wayne County",America/New_York,304,NA,US,38.4,-82.58,4550 +25534,STANDARD,0,Kiahsville,"Cove Gap",,WV,"Wayne County",America/New_York,304,NA,US,38.06,-82.26,132 +25535,STANDARD,0,Lavalette,,,WV,"Wayne County",America/New_York,304,NA,US,38.32,-82.41,2130 +25537,STANDARD,0,Lesage,,,WV,"Cabell County",America/New_York,304,NA,US,38.48,-82.3,1710 +25540,STANDARD,0,Midkiff,,,WV,"Lincoln County",America/New_York,304,NA,US,38.18,-82.16,230 +25541,STANDARD,0,Milton,,,WV,"Cabell County",America/New_York,304,NA,US,38.43,-82.13,8290 +25544,STANDARD,0,Myra,,,WV,"Lincoln County",America/New_York,304,NA,US,38.22,-82.13,34 +25545,STANDARD,0,Ona,,,WV,"Cabell County",America/New_York,304,NA,US,38.48,-82.22,4140 +25547,STANDARD,0,"Pecks Mill",,,WV,"Logan County",America/New_York,304,NA,US,37.92,-81.95,770 +25550,STANDARD,0,"Point Pleasant","Pt Pleasant",,WV,"Mason County",America/New_York,304,NA,US,38.85,-82.13,6780 +25555,STANDARD,0,Prichard,,,WV,"Wayne County",America/New_York,304,NA,US,38.21,-82.56,1770 +25557,STANDARD,0,Ranger,,,WV,"Lincoln County",America/New_York,304,NA,US,38.11,-82.17,950 +25559,STANDARD,0,"Salt Rock",,,WV,"Cabell County",America/New_York,304,NA,US,38.32,-82.24,1860 +25560,STANDARD,0,"Scott Depot",,,WV,"Putnam County",America/New_York,"304,681",NA,US,38.44,-81.89,8580 +25562,"PO BOX",0,Shoals,,,WV,"Wayne County",America/New_York,304,NA,US,38.32,-82.53,127 +25564,STANDARD,0,Sod,,,WV,"Lincoln County",America/New_York,304,NA,US,38.26,-81.88,1070 +25565,STANDARD,0,Spurlockville,Morrisvale,,WV,"Lincoln County",America/New_York,304,NA,US,38.1,-81.96,430 +25567,STANDARD,0,Sumerco,,,WV,"Lincoln County",America/New_York,304,NA,US,38.19,-81.89,670 +25569,"PO BOX",0,Teays,,,WV,"Putnam County",America/New_York,304,NA,US,38.43,-81.89,117 +25570,STANDARD,0,Wayne,,,WV,"Wayne County",America/New_York,304,NA,US,38.22,-82.44,4670 +25571,STANDARD,0,"West Hamlin",,,WV,"Lincoln County",America/New_York,304,NA,US,38.28,-82.19,1940 +25572,STANDARD,0,Woodville,Alkol,,WV,"Lincoln County",America/New_York,304,NA,US,38.15,-81.89,0 +25573,STANDARD,0,Yawkey,,,WV,"Lincoln County",America/New_York,304,NA,US,38.2,-81.95,620 +25601,STANDARD,0,Logan,"Mitchell Hts, Monaville, Rossmore, West Logan",,WV,"Logan County",America/New_York,304,NA,US,37.84,-81.98,3890 +25606,"PO BOX",0,Accoville,,Crown,WV,"Logan County",America/New_York,304,NA,US,37.78,-81.85,803 +25607,STANDARD,0,Amherstdale,Robinette,,WV,"Logan County",America/New_York,304,NA,US,37.8,-81.75,620 +25608,STANDARD,0,Baisden,,,WV,"Mingo County",America/New_York,304,NA,US,37.57,-81.89,470 +25611,"PO BOX",0,Bruno,,,WV,"Logan County",America/New_York,304,NA,US,37.69,-81.88,448 +25612,STANDARD,0,Chauncey,,,WV,"Logan County",America/New_York,304,NA,US,37.76,-81.96,97 +25614,STANDARD,0,Cora,,,WV,"Logan County",America/New_York,304,NA,US,37.83,-82.03,220 +25617,STANDARD,0,Davin,,,WV,"Logan County",America/New_York,304,NA,US,37.71,-81.78,620 +25621,STANDARD,0,Gilbert,Hampden,,WV,"Mingo County",America/New_York,304,NA,US,37.61,-81.86,1730 +25624,"PO BOX",0,Henlawson,,,WV,"Logan County",America/New_York,304,NA,US,37.9,-81.98,368 +25625,STANDARD,0,Holden,,,WV,"Logan County",America/New_York,304,NA,US,37.82,-82.08,960 +25628,"PO BOX",0,Kistler,,,WV,"Logan County",America/New_York,304,NA,US,37.76,-81.85,418 +25630,"PO BOX",0,Lorado,Lundale,,WV,"Logan County",America/New_York,304,NA,US,37.79,-81.7,499 +25632,STANDARD,0,Lyburn,"Earling, Taplin",,WV,"Logan County",America/New_York,304,NA,US,37.74,-81.93,330 +25634,"PO BOX",0,Mallory,,,WV,"Logan County",America/New_York,304,NA,US,37.74,-81.84,631 +25635,STANDARD,0,Man,"Hunt, Landville",,WV,"Logan County",America/New_York,"304,681",NA,US,37.71,-81.89,1430 +25637,"PO BOX",0,"Mount Gay",,,WV,"Logan County",America/New_York,304,NA,US,37.86,-82.03,1055 +25638,STANDARD,0,Omar,Barnabus,,WV,"Logan County",America/New_York,304,NA,US,37.76,-81.99,710 +25639,"PO BOX",0,"Peach Creek",,,WV,"Logan County",America/New_York,304,NA,US,37.87,-81.96,560 +25644,"PO BOX",0,"Sarah Ann",,,WV,"Logan County",America/New_York,304,NA,US,37.72,-82.03,256 +25646,"PO BOX",0,Stollings,"Mc Connell",,WV,"Logan County",America/New_York,304,NA,US,37.84,-81.93,951 +25647,"PO BOX",0,Switzer,,,WV,"Logan County",America/New_York,304,NA,US,37.79,-81.98,672 +25649,"PO BOX",0,Verdunville,,,WV,"Logan County",America/New_York,304,NA,US,37.85,-82.05,1075 +25650,STANDARD,0,Verner,Emmett,,WV,"Mingo County",America/New_York,304,NA,US,37.67,-81.82,240 +25651,STANDARD,0,Wharncliffe,,,WV,"Mingo County",America/New_York,304,NA,US,37.55,-81.97,460 +25652,"PO BOX",0,Whitman,,,WV,"Logan County",America/New_York,304,NA,US,37.81,-82.03,958 +25653,"PO BOX",0,Wilkinson,,,WV,"Logan County",America/New_York,304,NA,US,37.83,-82,364 +25654,STANDARD,0,Yolyn,Dehue,,WV,"Logan County",America/New_York,304,NA,US,37.8,-81.87,81 +25661,STANDARD,0,Williamson,"Nolan, Sprigg",,WV,"Mingo County",America/New_York,304,NA,US,37.67,-82.27,3900 +25665,"PO BOX",0,Borderland,,,WV,"Mingo County",America/New_York,304,NA,US,37.72,-82.28,152 +25666,STANDARD,0,Breeden,,,WV,"Mingo County",America/New_York,304,NA,US,37.92,-82.27,190 +25667,"PO BOX",0,Chattaroy,,,WV,"Mingo County",America/New_York,304,NA,US,37.7,-82.26,507 +25669,STANDARD,0,Crum,,,WV,"Wayne County",America/New_York,304,NA,US,37.93,-82.39,710 +25670,STANDARD,0,Delbarton,"Myrtle, Stirrat",,WV,"Mingo County",America/New_York,"304,681",NA,US,37.7,-82.18,3360 +25671,STANDARD,0,Dingess,,,WV,"Mingo County",America/New_York,304,NA,US,37.87,-82.18,880 +25672,STANDARD,0,Edgarton,"Thacker, Vulcan",,WV,"Mingo County",America/New_York,304,NA,US,37.58,-82.11,266 +25674,STANDARD,0,Kermit,,,WV,"Mingo County",America/New_York,"304,681",NA,US,37.87,-82.35,1890 +25676,STANDARD,0,Lenore,,,WV,"Mingo County",America/New_York,304,NA,US,37.8,-82.27,1090 +25678,STANDARD,0,Matewan,"Blackberry City, Blckberry Cty, Lobata, Meador",,WV,"Mingo County",America/New_York,304,NA,US,37.62,-82.16,1250 +25685,"PO BOX",0,Naugatuck,,,WV,"Martin County",America/New_York,304,NA,US,37.8,-82.33,404 +25686,"PO BOX",0,Newtown,,,WV,"Mingo County",America/New_York,304,NA,US,37.63,-82.06,218 +25688,"PO BOX",0,"North Matewan",,,WV,"Mingo County",America/New_York,304,NA,US,37.62,-82.12,353 +25690,"PO BOX",0,Ragland,,,WV,"Mingo County",America/New_York,304,NA,US,37.69,-82.12,350 +25691,"PO BOX",0,Rawl,,,WV,"Mingo County",America/New_York,304,NA,US,37.65,-82.2,208 +25692,"PO BOX",0,"Red Jacket",,,WV,"Mingo County",America/New_York,304,NA,US,37.64,-82.13,413 +25696,"PO BOX",0,Varney,,,WV,"Mingo County",America/New_York,304,NA,US,37.68,-82.12,593 +25699,STANDARD,0,Wilsondale,,,WV,"Wayne County",America/New_York,"304,681",NA,US,37.95,-82.36,135 +25701,STANDARD,0,Huntington,,,WV,"Cabell County",America/New_York,"304,681",NA,US,38.41,-82.43,15510 +25702,STANDARD,0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.43,-82.31,4920 +25703,STANDARD,0,Huntington,,,WV,"Cabell County",America/New_York,"304,681",NA,US,38.42,-82.42,2080 +25704,STANDARD,0,Huntington,,,WV,"Wayne County",America/New_York,"304,681",NA,US,38.31,-82.49,11620 +25705,STANDARD,0,Huntington,Alltizer,"Beverly Hills",WV,"Cabell County",America/New_York,304,NA,US,38.4,-82.36,16390 +25706,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,41 +25707,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,18 +25708,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25709,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25710,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25711,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,31 +25712,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,49 +25713,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,59 +25714,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,28 +25715,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25716,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,33 +25717,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25718,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25719,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25720,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,22 +25721,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,37 +25722,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25723,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25724,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25725,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25726,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25727,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25728,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25729,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,42 +25755,UNIQUE,0,Huntington,,"Marshall University",WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,34 +25770,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25771,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25772,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,25 +25773,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,21 +25774,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,33 +25775,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,29 +25776,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,25 +25777,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,31 +25778,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,14 +25779,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25801,STANDARD,0,Beckley,,"East Beckley",WV,"Raleigh County",America/New_York,"304,681",NA,US,37.78,-81.18,22750 +25802,"PO BOX",0,Beckley,Sprague,,WV,"Raleigh County",America/New_York,304,NA,US,37.78,-81.18,1372 +25810,"PO BOX",0,"Allen Junction","Allen Jct",,WV,"Wyoming County",America/New_York,304,NA,US,37.59,-81.35,142 +25811,STANDARD,0,Amigo,,,WV,"Wyoming County",America/New_York,304,NA,US,37.56,-81.29,107 +25812,STANDARD,0,Ansted,,,WV,"Fayette County",America/New_York,304,NA,US,38.13,-81.1,1270 +25813,STANDARD,0,Beaver,"Blue Jay, Glen Morgan",,WV,"Raleigh County",America/New_York,304,NA,US,37.74,-81.15,4190 +25817,STANDARD,0,Bolt,,,WV,"Raleigh County",America/New_York,304,NA,US,37.76,-81.41,600 +25818,"PO BOX",0,Bradley,,,WV,"Raleigh County",America/New_York,304,NA,US,37.86,-81.19,1157 +25820,STANDARD,0,"Camp Creek",,,WV,"Mercer County",America/New_York,304,NA,US,37.51,-81.16,320 +25823,STANDARD,0,"Coal City","Jonben, Whitby",,WV,"Raleigh County",America/New_York,681,NA,US,37.67,-81.21,1530 +25825,STANDARD,0,"Cool Ridge",,,WV,"Raleigh County",America/New_York,304,NA,US,37.64,-81.08,1830 +25826,"PO BOX",0,Corinne,,,WV,"Wyoming County",America/New_York,304,NA,US,37.58,-81.36,250 +25827,STANDARD,0,"Crab Orchard",,,WV,"Raleigh County",America/New_York,"304,681",NA,US,37.74,-81.23,2370 +25831,STANDARD,0,Danese,"Clifftop, Maplewood",,WV,"Fayette County",America/New_York,304,NA,US,37.96,-80.93,1000 +25832,STANDARD,0,Daniels,"Glade Springs",,WV,"Raleigh County",America/New_York,304,NA,US,37.72,-81.12,4040 +25833,"PO BOX",0,Dothan,,,WV,"Fayette County",America/New_York,304,NA,US,37.99,-81.21,0 +25836,"PO BOX",0,Eccles,,,WV,"Raleigh County",America/New_York,304,NA,US,37.79,-81.26,413 +25837,STANDARD,0,Edmond,,,WV,"Fayette County",America/New_York,304,NA,US,38.05,-81.03,250 +25839,STANDARD,0,Fairdale,,,WV,"Raleigh County",America/New_York,304,NA,US,37.78,-81.39,1070 +25840,STANDARD,0,Fayetteville,"Beckwith, Cunard, Wriston","Gatewood, Tourison",WV,"Fayette County",America/New_York,304,NA,US,38.05,-81.1,6490 +25841,STANDARD,0,"Flat Top",,,WV,"Mercer County",America/New_York,304,NA,US,37.58,-81.11,460 +25843,STANDARD,0,Ghent,,,WV,"Raleigh County",America/New_York,304,NA,US,37.61,-81.09,800 +25844,STANDARD,0,"Glen Daniel",,,WV,"Raleigh County",America/New_York,"304,681",NA,US,37.77,-81.33,1030 +25845,STANDARD,0,"Glen Fork",,,WV,"Wyoming County",America/New_York,304,NA,US,37.7,-81.53,510 +25846,STANDARD,0,"Glen Jean",,,WV,"Fayette County",America/New_York,304,NA,US,37.93,-81.17,290 +25848,STANDARD,0,"Glen Rogers",,,WV,"Wyoming County",America/New_York,304,NA,US,37.73,-81.44,213 +25849,STANDARD,0,"Glen White",,,WV,"Raleigh County",America/New_York,304,NA,US,37.73,-81.28,227 +25851,"PO BOX",0,Harper,,,WV,"Raleigh County",America/New_York,304,NA,US,37.79,-81.26,367 +25853,"PO BOX",0,Helen,,,WV,"Raleigh County",America/New_York,304,NA,US,37.64,-81.31,153 +25854,STANDARD,0,Hico,,,WV,"Fayette County",America/New_York,304,NA,US,38.11,-80.94,890 +25855,STANDARD,0,Hilltop,,,WV,"Fayette County",America/New_York,304,NA,US,37.94,-81.16,415 +25857,STANDARD,0,Josephine,,,WV,"Raleigh County",America/New_York,304,NA,US,37.64,-81.28,155 +25860,"PO BOX",0,Lanark,,,WV,"Raleigh County",America/New_York,304,NA,US,37.81,-81.12,229 +25862,STANDARD,0,Lansing,,,WV,"Fayette County",America/New_York,304,NA,US,38.09,-81.06,250 +25864,STANDARD,0,Layland,"Lawton, Terry",,WV,"Fayette County",America/New_York,304,NA,US,37.87,-80.99,230 +25865,STANDARD,0,Lester,,,WV,"Raleigh County",America/New_York,304,NA,US,37.73,-81.3,1040 +25866,"PO BOX",0,Lochgelly,,,WV,"Fayette County",America/New_York,304,NA,US,38.03,-81.07,243 +25868,STANDARD,0,Lookout,,,WV,"Fayette County",America/New_York,304,NA,US,38.07,-80.97,490 +25870,STANDARD,0,Maben,,Pierpont,WV,"Wyoming County",America/New_York,304,NA,US,37.63,-81.39,187 +25871,"PO BOX",0,Mabscott,,,WV,"Raleigh County",America/New_York,304,NA,US,37.77,-81.21,870 +25873,"PO BOX",0,"Mac Arthur",,,WV,"Raleigh County",America/New_York,304,NA,US,37.75,-81.21,917 +25875,"PO BOX",0,"Mc Graws",,,WV,"Wyoming County",America/New_York,304,NA,US,37.68,-81.46,251 +25876,STANDARD,0,Saulsville,"Mc Graws",,WV,"Wyoming County",America/New_York,304,NA,US,37.63,-81.44,27 +25878,"PO BOX",0,Midway,Pemberton,,WV,"Raleigh County",America/New_York,304,NA,US,37.72,-81.23,678 +25879,"PO BOX",0,Minden,,,WV,"Fayette County",America/New_York,304,NA,US,37.98,-81.11,336 +25880,STANDARD,0,"Mount Hope",,Kilsyth,WV,"Raleigh County",America/New_York,"304,681",NA,US,37.89,-81.17,4100 +25882,STANDARD,0,Mullens,,,WV,"Wyoming County",America/New_York,"304,681",NA,US,37.57,-81.38,1470 +25888,UNIQUE,0,"Mount Hope",,"Boy Scouts Of America",WV,,America/New_York,,NA,US,37.9,-81.17,0 +25901,STANDARD,0,"Oak Hill","Harvey, Redstar, Summerlee",,WV,"Fayette County",America/New_York,"304,681",NA,US,37.98,-81.14,8330 +25902,STANDARD,0,Odd,,,WV,"Raleigh County",America/New_York,304,NA,US,37.56,-81.23,280 +25904,"PO BOX",0,Pax,,,WV,"Fayette County",America/New_York,304,NA,US,37.93,-81.28,439 +25906,"PO BOX",0,"Piney View",,,WV,"Raleigh County",America/New_York,304,NA,US,37.84,-81.13,436 +25907,"PO BOX",0,Prince,,,WV,"Fayette County",America/New_York,304,NA,US,37.86,-81.09,88 +25908,STANDARD,0,Princewick,"Winding Gulf",,WV,"Raleigh County",America/New_York,681,NA,US,37.68,-81.25,250 +25909,"PO BOX",0,Prosperity,,,WV,"Raleigh County",America/New_York,304,NA,US,37.83,-81.2,745 +25911,"PO BOX",0,Raleigh,,,WV,"Raleigh County",America/New_York,304,NA,US,37.76,-81.17,222 +25913,STANDARD,0,Ravencliff,,,WV,"Wyoming County",America/New_York,304,NA,US,37.69,-81.49,250 +25915,STANDARD,0,Rhodell,"East Gulf, Mead",,WV,"Raleigh County",America/New_York,304,NA,US,37.6,-81.3,269 +25916,"PO BOX",0,Sabine,,,WV,"Wyoming County",America/New_York,304,NA,US,37.67,-81.49,119 +25917,STANDARD,0,Scarbro,Kingston,,WV,"Fayette County",America/New_York,304,NA,US,37.99,-81.22,1390 +25918,STANDARD,0,"Shady Spring",Abraham,,WV,"Raleigh County",America/New_York,304,NA,US,37.7,-81.09,3640 +25919,"PO BOX",0,Skelton,,,WV,"Raleigh County",America/New_York,304,NA,US,37.8,-81.19,177 +25920,STANDARD,0,"Slab Fork",,,WV,"Raleigh County",America/New_York,304,NA,US,37.69,-81.33,175 +25921,"PO BOX",0,Sophia,"Mcalpin, Tams",,WV,"Raleigh County",America/New_York,304,NA,US,37.7,-81.25,1871 +25922,STANDARD,0,Spanishburg,,,WV,"Mercer County",America/New_York,304,NA,US,37.45,-81.11,400 +25926,STANDARD,1,Beckley,Sprague,,WV,"Raleigh County",America/New_York,304,NA,US,37.79,-81.18,0 +25927,"PO BOX",0,Stanaford,,,WV,"Raleigh County",America/New_York,304,NA,US,37.81,-81.15,360 +25928,STANDARD,0,Stephenson,,,WV,"Wyoming County",America/New_York,304,NA,US,37.57,-81.33,260 +25932,STANDARD,0,Surveyor,,,WV,"Raleigh County",America/New_York,304,NA,US,37.75,-81.3,350 +25936,STANDARD,0,Thurmond,,,WV,"Fayette County",America/New_York,304,NA,US,37.96,-81.08,26 +25938,STANDARD,0,Victor,Ramsey,,WV,"Fayette County",America/New_York,304,NA,US,38.14,-81.03,1100 +25942,"PO BOX",0,Winona,,,WV,"Fayette County",America/New_York,304,NA,US,38.02,-80.96,181 +25943,"PO BOX",0,Wyco,,,WV,"Wyoming County",America/New_York,304,NA,US,37.61,-81.34,84 +25951,STANDARD,0,Hinton,"Brooks, True",,WV,"Summers County",America/New_York,304,NA,US,37.66,-80.88,3630 +25958,STANDARD,0,Charmco,"Bingham, Hines, Orient Hill",,WV,"Greenbrier County",America/New_York,304,NA,US,38.02,-80.75,510 +25962,STANDARD,0,Rainelle,"Bellwood, Corliss, Hilton Village, Hilton Vlg, Lilly Park",,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.96,-80.77,2540 +25965,STANDARD,1,Elton,,,WV,"Summers County",America/New_York,304,NA,US,37.83,-80.78,0 +25966,"PO BOX",0,"Green Sulphur Springs","Grn Sphr Spgs, Meadow Bridge",,WV,"Summers County",America/New_York,304,NA,US,37.79,-80.83,109 +25969,STANDARD,0,"Jumping Branch","Jumping Br, Streeter",,WV,"Summers County",America/New_York,304,NA,US,37.65,-80.98,890 +25971,STANDARD,0,Lerona,,,WV,"Mercer County",America/New_York,304,NA,US,37.5,-80.98,890 +25972,"PO BOX",0,Leslie,Bellburn,,WV,"Greenbrier County",America/New_York,304,NA,US,38.03,-80.74,156 +25976,STANDARD,0,"Meadow Bridge","Elton, Lockbridge",,WV,"Fayette County",America/New_York,304,NA,US,37.86,-80.85,1670 +25977,STANDARD,0,"Meadow Creek",,,WV,"Summers County",America/New_York,304,NA,US,37.8,-80.91,68 +25978,STANDARD,0,Nimitz,,,WV,"Summers County",America/New_York,304,NA,US,37.62,-80.93,520 +25979,STANDARD,0,Pipestem,Lovern,,WV,"Summers County",America/New_York,304,NA,US,37.53,-80.96,690 +25981,STANDARD,0,Quinwood,"Crichton, Marfrance",,WV,"Greenbrier County",America/New_York,304,NA,US,38.1,-80.71,580 +25984,STANDARD,0,Rupert,"Duo, Kessler",,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.96,-80.68,1280 +25985,STANDARD,0,Sandstone,,,WV,"Summers County",America/New_York,304,NA,US,37.76,-80.88,330 +25986,"PO BOX",0,"Spring Dale",,,WV,"Fayette County",America/New_York,304,NA,US,37.87,-80.81,133 +25989,STANDARD,0,"White Oak",,,WV,"Raleigh County",America/New_York,304,NA,US,37.68,-81.07,320 +26003,STANDARD,0,Wheeling,"Bethlehem, Elm Grove, Mozart, Overbrook, Warwood",,WV,"Ohio County",America/New_York,304,NA,US,40.07,-80.69,34360 +26030,"PO BOX",0,"Beech Bottom",,,WV,"Brooke County",America/New_York,304,NA,US,40.22,-80.66,568 +26031,STANDARD,0,Benwood,,,WV,"Marshall County",America/New_York,304,NA,US,40.01,-80.73,1540 +26032,STANDARD,0,Bethany,,,WV,"Brooke County",America/New_York,304,NA,US,40.2,-80.56,460 +26033,STANDARD,0,Cameron,,,WV,"Marshall County",America/New_York,"304,681",NA,US,39.82,-80.57,2230 +26034,STANDARD,0,Chester,,,WV,"Hancock County",America/New_York,304,NA,US,40.61,-80.56,3670 +26035,STANDARD,0,Colliers,,,WV,"Brooke County",America/New_York,304,NA,US,40.34,-80.55,2140 +26036,STANDARD,0,Dallas,,,WV,"Marshall County",America/New_York,304,NA,US,39.96,-80.55,440 +26037,STANDARD,0,Follansbee,,,WV,"Brooke County",America/New_York,304,NA,US,40.33,-80.59,5530 +26038,STANDARD,0,"Glen Dale",,,WV,"Marshall County",America/New_York,304,NA,US,39.94,-80.75,2650 +26039,STANDARD,0,"Glen Easton",,,WV,"Marshall County",America/New_York,304,NA,US,39.83,-80.66,800 +26040,STANDARD,0,Mcmechen,,,WV,"Marshall County",America/New_York,304,NA,US,39.98,-80.73,1490 +26041,STANDARD,0,Moundsville,,,WV,"Marshall County",America/New_York,304,NA,US,39.92,-80.74,12520 +26047,STANDARD,0,"New Cumberland","New Cumberlnd","New Cumbrlnd",WV,"Hancock County",America/New_York,304,NA,US,40.49,-80.6,5010 +26050,STANDARD,0,Newell,,,WV,"Hancock County",America/New_York,304,NA,US,40.61,-80.6,1140 +26055,STANDARD,0,Proctor,,,WV,"Marshall County",America/New_York,304,NA,US,39.72,-80.75,1420 +26056,"PO BOX",0,"New Manchester","New Manchestr","New Manchstr",WV,"Hancock County",America/New_York,304,NA,US,40.53,-80.58,520 +26058,"PO BOX",0,"Short Creek",,,WV,"Brooke County",America/New_York,304,NA,US,40.22,-80.58,84 +26059,STANDARD,0,Triadelphia,,,WV,"Ohio County",America/New_York,304,NA,US,40.05,-80.62,2940 +26060,STANDARD,0,"Valley Grove",,,WV,"Ohio County",America/New_York,304,NA,US,40.09,-80.57,1550 +26062,STANDARD,0,Weirton,,,WV,"Hancock County",America/New_York,"304,681",NA,US,40.4,-80.56,18140 +26070,STANDARD,0,Wellsburg,,,WV,"Brooke County",America/New_York,304,NA,US,40.28,-80.6,7010 +26074,"PO BOX",0,"West Liberty",,,WV,"Ohio County",America/New_York,304,NA,US,40.16,-80.59,180 +26075,"PO BOX",0,"Windsor Heights","Windsor Hts",,WV,"Brooke County",America/New_York,304,NA,US,40.19,-80.67,367 +26101,STANDARD,0,Parkersburg,,,WV,"Wood County",America/New_York,"304,681",NA,US,39.26,-81.54,22180 +26102,"PO BOX",0,Parkersburg,,,WV,"Wood County",America/New_York,304,NA,US,39.26,-81.54,636 +26103,"PO BOX",0,Parkersburg,"Fort Neal",,WV,"Wood County",America/New_York,304,NA,US,39.26,-81.54,370 +26104,STANDARD,0,Parkersburg,"N Parkersburg, North Hills, North Parkersburg",,WV,"Wood County",America/New_York,"304,681",NA,US,39.28,-81.48,13400 +26105,STANDARD,0,Vienna,Parkersburg,,WV,"Wood County",America/New_York,"681,304",NA,US,39.32,-81.53,10630 +26106,UNIQUE,0,Parkersburg,,"Bureau Of Public Debt",WV,"Wood County",America/New_York,304,NA,US,39.26,-81.54,0 +26120,UNIQUE,0,"Mineral Wells","Coldwater Creek",,WV,"Wood County",America/New_York,304,NA,US,39.17,-81.53,0 +26121,UNIQUE,0,"Mineral Wells","Coldwater Creek",,WV,"Wood County",America/New_York,304,NA,US,39.17,-81.53,0 +26133,STANDARD,0,Belleville,,,WV,"Wood County",America/New_York,304,NA,US,39.12,-81.67,1220 +26134,STANDARD,0,Belmont,"Eureka, Willow Island",,WV,"Pleasants County",America/New_York,304,NA,US,39.37,-81.29,680 +26136,STANDARD,0,"Big Bend","Five Forks",,WV,"Calhoun County",America/New_York,304,NA,US,38.98,-81.13,390 +26137,STANDARD,0,"Big Springs","Nobe, Tanner",,WV,"Calhoun County",America/New_York,304,NA,US,38.97,-80.99,590 +26138,STANDARD,0,Brohard,,,WV,"Wirt County",America/New_York,304,NA,US,39.02,-81.19,141 +26141,STANDARD,0,Creston,Annamoriah,,WV,"Calhoun County",America/New_York,304,NA,US,38.93,-81.25,330 +26142,STANDARD,0,Davisville,,,WV,"Wood County",America/New_York,304,NA,US,39.21,-81.46,2230 +26143,STANDARD,0,Elizabeth,"Hughes River, Limestone Hill, Limestone Hl, Newark, Spring Valley, Standing Stone, Stndg Stone",,WV,"Wirt County",America/New_York,"304,681",NA,US,39.06,-81.39,3630 +26146,STANDARD,0,Friendly,"Bens Run",,WV,"Tyler County",America/New_York,304,NA,US,39.51,-81.06,940 +26147,STANDARD,0,Grantsville,,,WV,"Calhoun County",America/New_York,"304,681",NA,US,38.92,-81.09,1370 +26148,STANDARD,0,Macfarlan,,,WV,"Ritchie County",America/New_York,304,NA,US,39.07,-81.18,164 +26149,STANDARD,0,Middlebourne,Wick,,WV,"Tyler County",America/New_York,304,NA,US,39.49,-80.9,1900 +26150,STANDARD,0,"Mineral Wells",,,WV,"Wood County",America/New_York,304,NA,US,39.17,-81.53,5260 +26151,STANDARD,0,"Mount Zion",,,WV,"Calhoun County",America/New_York,304,NA,US,38.88,-81.17,320 +26152,STANDARD,0,Munday,,,WV,"Wirt County",America/New_York,304,NA,US,39.01,-81.2,54 +26155,STANDARD,0,"New Martinsville","N Martinsvlle",,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.66,-80.85,6940 +26159,STANDARD,0,"Paden City",,,WV,"Wetzel County",America/New_York,304,NA,US,39.6,-80.93,2200 +26160,STANDARD,0,Palestine,"Blue Goose, Lynncamp, Sanoma, Somervlle Frk, Sommerville Fork, Two Run",,WV,"Wirt County",America/New_York,304,NA,US,38.96,-81.42,760 +26161,STANDARD,0,Petroleum,,,WV,"Ritchie County",America/New_York,304,NA,US,39.18,-81.25,340 +26162,STANDARD,0,"Porters Falls",,,WV,"Wetzel County",America/New_York,304,NA,US,39.57,-80.76,101 +26164,STANDARD,0,Ravenswood,"Murraysville, Sherman",,WV,"Jackson County",America/New_York,304,NA,US,38.95,-81.76,6400 +26167,STANDARD,0,Reader,,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.57,-80.74,730 +26169,STANDARD,0,Rockport,,,WV,"Wood County",America/New_York,"304,681",NA,US,39.07,-81.57,660 +26170,STANDARD,0,"Saint Marys",,,WV,"Pleasants County",America/New_York,"304,681",NA,US,39.4,-81.19,4870 +26175,STANDARD,0,Sistersville,,,WV,"Tyler County",America/New_York,304,NA,US,39.55,-80.99,2550 +26178,STANDARD,0,Smithville,"Burnt House",,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.06,-81.06,420 +26180,STANDARD,0,Walker,Freeport,,WV,"Wood County",America/New_York,304,NA,US,39.18,-81.36,1840 +26181,STANDARD,0,Washington,"New England",,WV,"Wood County",America/New_York,304,NA,US,39.24,-81.67,5630 +26184,STANDARD,0,Waverly,,,WV,"Wood County",America/New_York,304,NA,US,39.3,-81.33,1930 +26187,STANDARD,0,Williamstown,,,WV,"Wood County",America/New_York,304,NA,US,39.4,-81.45,5530 +26201,STANDARD,0,Buckhannon,"Century, Tennerton",Hodgesville,WV,"Upshur County",America/New_York,304,NA,US,38.98,-80.22,15360 +26202,STANDARD,0,Fenwick,,,WV,"Nicholas County",America/New_York,304,NA,US,38.22,-80.64,440 +26203,STANDARD,0,Erbacon,,,WV,"Webster County",America/New_York,304,NA,US,38.54,-80.56,226 +26205,STANDARD,0,Craigsville,Cottle,,WV,"Nicholas County",America/New_York,304,NA,US,38.32,-80.64,2710 +26206,STANDARD,0,Cowen,Boggs,,WV,"Webster County",America/New_York,"304,681",NA,US,38.41,-80.55,1900 +26208,STANDARD,0,"Camden On Gauley","Camden On Gly, Gauley Mills",,WV,"Webster County",America/New_York,304,NA,US,38.36,-80.59,580 +26209,"PO BOX",0,Snowshoe,Slatyfork,,WV,"Pocahontas County",America/New_York,304,NA,US,38.4,-79.99,224 +26210,STANDARD,0,Adrian,,,WV,"Upshur County",America/New_York,304,NA,US,38.91,-80.3,187 +26215,STANDARD,0,Cleveland,"Rock Cave",,WV,"Webster County",America/New_York,304,NA,US,38.71,-80.37,93 +26217,STANDARD,0,Diana,,,WV,"Webster County",America/New_York,304,NA,US,38.58,-80.42,250 +26218,STANDARD,0,"French Creek",Alexander,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.25,2180 +26219,"PO BOX",0,Frenchton,,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.25,0 +26222,STANDARD,0,"Hacker Valley",Replete,,WV,"Webster County",America/New_York,"304,681",NA,US,38.67,-80.39,410 +26224,STANDARD,0,Helvetia,,,WV,"Randolph County",America/New_York,304,NA,US,38.72,-80.18,139 +26228,STANDARD,0,"Kanawha Head",,,WV,"Upshur County",America/New_York,304,NA,US,38.76,-80.37,52 +26229,"PO BOX",0,Lorentz,,,WV,"Upshur County",America/New_York,304,NA,US,38.99,-80.29,0 +26230,STANDARD,0,Pickens,,,WV,"Randolph County",America/New_York,304,NA,US,38.65,-80.19,94 +26234,STANDARD,0,"Rock Cave",,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.34,890 +26236,STANDARD,0,Selbyville,,,WV,"Upshur County",America/New_York,304,NA,US,38.74,-80.23,58 +26237,STANDARD,0,Tallmansville,,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.15,500 +26238,STANDARD,0,Volga,,,WV,"Barbour County",America/New_York,304,NA,US,39.11,-80.17,660 +26241,STANDARD,0,Elkins,,,WV,"Randolph County",America/New_York,"304,681",NA,US,38.92,-79.85,11440 +26250,STANDARD,0,Belington,,,WV,"Barbour County",America/New_York,304,NA,US,39.02,-79.93,4250 +26253,STANDARD,0,Beverly,,,WV,"Randolph County",America/New_York,304,NA,US,38.84,-79.87,2730 +26254,STANDARD,0,Bowden,Wymer,,WV,"Randolph County",America/New_York,304,NA,US,38.94,-79.63,270 +26257,STANDARD,0,Coalton,,,WV,"Randolph County",America/New_York,304,NA,US,38.9,-80,810 +26259,"PO BOX",0,Dailey,,,WV,"Randolph County",America/New_York,304,NA,US,38.8,-79.9,324 +26260,STANDARD,0,Davis,"Canaan Valley",,WV,"Tucker County",America/New_York,"681,304",NA,US,39.13,-79.46,1050 +26261,STANDARD,0,Richwood,,,WV,"Nicholas County",America/New_York,304,NA,US,38.22,-80.53,1510 +26263,STANDARD,0,Dryfork,,,WV,"Randolph County",America/New_York,304,NA,US,38.94,-79.43,360 +26264,STANDARD,0,Durbin,,,WV,"Pocahontas County",America/New_York,304,NA,US,38.54,-79.82,530 +26266,STANDARD,0,Upperglade,,,WV,"Webster County",America/New_York,304,NA,US,38.43,-80.5,230 +26267,STANDARD,0,Ellamore,,,WV,"Randolph County",America/New_York,304,NA,US,38.93,-80.08,440 +26268,STANDARD,0,Glady,,,WV,"Randolph County",America/New_York,304,NA,US,38.75,-79.74,29 +26269,STANDARD,0,Hambleton,,,WV,"Tucker County",America/New_York,681,NA,US,39.08,-79.64,820 +26270,STANDARD,0,Harman,,,WV,"Randolph County",America/New_York,"304,681",NA,US,38.92,-79.52,580 +26271,STANDARD,0,Hendricks,,,WV,"Tucker County",America/New_York,304,NA,US,39.03,-79.56,250 +26273,STANDARD,0,Huttonsville,,,WV,"Randolph County",America/New_York,304,NA,US,38.71,-79.97,730 +26275,"PO BOX",0,Junior,,,WV,"Barbour County",America/New_York,304,NA,US,38.97,-79.95,587 +26276,STANDARD,0,Kerens,,,WV,"Randolph County",America/New_York,304,NA,US,39.02,-79.75,380 +26278,STANDARD,0,Mabie,,,WV,"Randolph County",America/New_York,304,NA,US,38.83,-80.03,470 +26280,STANDARD,0,"Mill Creek",,,WV,"Randolph County",America/New_York,681,NA,US,38.73,-79.97,1530 +26282,STANDARD,0,Monterville,,,WV,"Randolph County",America/New_York,304,NA,US,38.51,-80.16,89 +26283,STANDARD,0,Montrose,,,WV,"Randolph County",America/New_York,304,NA,US,39.06,-79.81,1340 +26285,STANDARD,0,Norton,,,WV,"Randolph County",America/New_York,304,NA,US,38.91,-79.94,270 +26287,STANDARD,0,Parsons,"Saint George",,WV,"Tucker County",America/New_York,"304,681",NA,US,39.09,-79.67,2600 +26288,STANDARD,0,"Webster Springs","Curtin, Parcoal, Webster Spgs",,WV,"Webster County",America/New_York,"304,681",NA,US,38.47,-80.41,2300 +26289,STANDARD,0,"Red Creek",,,WV,"Tucker County",America/New_York,304,NA,US,39,-79.5,70 +26291,STANDARD,0,Slatyfork,,,WV,"Pocahontas County",America/New_York,"304,681",NA,US,38.39,-80.15,380 +26292,STANDARD,0,Thomas,,,WV,"Tucker County",America/New_York,"304,681",NA,US,39.14,-79.49,640 +26293,STANDARD,0,"Valley Bend",,,WV,"Randolph County",America/New_York,304,NA,US,38.78,-79.94,570 +26294,STANDARD,0,"Valley Head",Mingo,,WV,"Randolph County",America/New_York,681,NA,US,38.52,-80.03,520 +26296,"PO BOX",0,Whitmer,Job,,WV,"Randolph County",America/New_York,304,NA,US,38.76,-79.6,132 +26298,STANDARD,0,Bergoo,,,WV,"Webster County",America/New_York,304,NA,US,38.48,-80.24,89 +26301,STANDARD,0,Clarksburg,"Country Club, Dawmont, Laurel Park, Laurel Valley, Nutter Fort, Stonewood",,WV,"Harrison County",America/New_York,"304,681",NA,US,39.28,-80.33,22690 +26302,"PO BOX",0,Clarksburg,,,WV,"Harrison County",America/New_York,304,NA,US,39.28,-80.33,1291 +26306,UNIQUE,0,Clarksburg,,Fbi,WV,"Harrison County",America/New_York,304,NA,US,39.28,-80.33,0 +26320,STANDARD,0,Alma,Wilbur,,WV,"Tyler County",America/New_York,304,NA,US,39.42,-80.82,610 +26321,STANDARD,0,"Alum Bridge",Vadis,,WV,"Lewis County",America/New_York,304,NA,US,39.04,-80.69,260 +26323,"PO BOX",0,Anmoore,,,WV,"Harrison County",America/New_York,304,NA,US,39.26,-80.29,726 +26325,STANDARD,0,Auburn,,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.09,-80.85,227 +26327,STANDARD,0,Berea,,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.13,-80.92,39 +26330,STANDARD,0,Bridgeport,"Brushy Fork, Lake Ridge, Maple Lake",,WV,"Harrison County",America/New_York,"304,681",NA,US,39.29,-80.25,14750 +26335,STANDARD,0,Burnsville,Gem,,WV,"Braxton County",America/New_York,304,NA,US,38.85,-80.65,950 +26337,STANDARD,0,Cairo,,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.2,-81.15,910 +26338,STANDARD,0,Camden,,,WV,"Lewis County",America/New_York,304,NA,US,39.09,-80.61,520 +26339,STANDARD,0,"Center Point",,,WV,"Doddridge County",America/New_York,304,NA,US,39.42,-80.62,142 +26342,STANDARD,0,"Coxs Mills",,,WV,"Gilmer County",America/New_York,"304,681",NA,US,39.03,-80.85,390 +26343,STANDARD,0,Crawford,,,WV,"Lewis County",America/New_York,304,NA,US,38.83,-80.4,420 +26346,STANDARD,0,Ellenboro,Highland,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.29,-81.06,740 +26347,STANDARD,0,Flemington,"Astor, Brownton, Wendel",,WV,"Taylor County",America/New_York,304,NA,US,39.26,-80.12,1870 +26348,STANDARD,0,Folsom,,,WV,"Wetzel County",America/New_York,304,NA,US,39.46,-80.52,220 +26349,"PO BOX",0,Galloway,,,WV,"Barbour County",America/New_York,304,NA,US,39.24,-80.13,130 +26351,STANDARD,0,Glenville,"Baldwin, Gilmer",,WV,"Gilmer County",America/New_York,304,NA,US,38.93,-80.83,2160 +26354,STANDARD,0,Grafton,"Belgium, Harmony Grove, Haymond, White Day",,WV,"Taylor County",America/New_York,304,NA,US,39.34,-80.01,8550 +26361,"PO BOX",0,Gypsy,,,WV,"Harrison County",America/New_York,304,NA,US,39.37,-80.32,373 +26362,STANDARD,0,Harrisville,"Hazelgreen, Mahone, Newberne",,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.21,-81.04,2450 +26366,"PO BOX",0,Haywood,,,WV,"Harrison County",America/New_York,304,NA,US,39.38,-80.33,150 +26369,"PO BOX",0,Hepzibah,,,WV,"Harrison County",America/New_York,304,NA,US,39.33,-80.33,527 +26372,STANDARD,0,Horner,,,WV,"Lewis County",America/New_York,304,NA,US,38.95,-80.36,650 +26374,STANDARD,0,Independence,,,WV,"Preston County",America/New_York,304,NA,US,39.44,-79.88,1230 +26376,STANDARD,0,Ireland,Wildcat,,WV,"Lewis County",America/New_York,304,NA,US,38.75,-80.47,340 +26377,STANDARD,0,Jacksonburg,"Alvy, Lima",,WV,"Wetzel County",America/New_York,304,NA,US,39.53,-80.65,490 +26378,STANDARD,0,"Jane Lew",Kincheloe,,WV,"Lewis County",America/New_York,304,NA,US,39.1,-80.4,3790 +26384,STANDARD,0,Linn,,,WV,"Gilmer County",America/New_York,304,NA,US,38.96,-80.71,330 +26385,STANDARD,0,"Lost Creek",Mcwhorter,,WV,"Harrison County",America/New_York,304,NA,US,39.15,-80.35,3240 +26386,STANDARD,0,Lumberport,Dola,,WV,"Harrison County",America/New_York,304,NA,US,39.37,-80.34,2010 +26404,STANDARD,0,Meadowbrook,,,WV,"Harrison County",America/New_York,304,NA,US,39.34,-80.31,320 +26405,STANDARD,0,Moatsville,Kasson,,WV,"Barbour County",America/New_York,304,NA,US,39.22,-79.9,1000 +26408,STANDARD,0,"Mount Clare",Craigmoore,,WV,"Harrison County",America/New_York,304,NA,US,39.2,-80.31,2540 +26410,STANDARD,0,Newburg,,,WV,"Preston County",America/New_York,304,NA,US,39.4,-79.82,790 +26411,STANDARD,0,"New Milton",,,WV,"Doddridge County",America/New_York,304,NA,US,39.17,-80.71,530 +26412,STANDARD,0,Orlando,,,WV,"Lewis County",America/New_York,304,NA,US,38.87,-80.53,380 +26415,STANDARD,0,Pennsboro,"Greenwood, Mountain, Toll Gate",,WV,"Ritchie County",America/New_York,304,NA,US,39.28,-80.97,2600 +26416,STANDARD,0,Philippi,,,WV,"Barbour County",America/New_York,304,NA,US,39.15,-80.04,5590 +26419,STANDARD,0,"Pine Grove",Hastings,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.56,-80.68,840 +26421,STANDARD,0,Pullman,,,WV,"Ritchie County",America/New_York,304,NA,US,39.18,-80.94,220 +26422,"PO BOX",0,Reynoldsville,,,WV,"Harrison County",America/New_York,304,NA,US,39.29,-80.44,377 +26424,"PO BOX",0,Rosemont,,,WV,"Taylor County",America/New_York,304,NA,US,39.27,-80.17,282 +26425,STANDARD,0,Rowlesburg,Manheim,,WV,"Preston County",America/New_York,304,NA,US,39.28,-79.76,770 +26426,STANDARD,0,Salem,"Bristol, Industrial, Wolf Summit",,WV,"Harrison County",America/New_York,"304,681",NA,US,39.28,-80.56,5400 +26430,STANDARD,0,"Sand Fork","Stouts Mills",,WV,"Gilmer County",America/New_York,304,NA,US,38.87,-80.76,360 +26431,STANDARD,0,Shinnston,"Adamsville, Francis Mine, Owings, Peora, Pine Bluff, Saltwell",,WV,"Harrison County",America/New_York,304,NA,US,39.39,-80.29,5110 +26434,"PO BOX",0,Shirley,,,WV,"Tyler County",America/New_York,304,NA,US,39.4,-80.78,67 +26435,"PO BOX",0,Simpson,,,WV,"Taylor County",America/New_York,304,NA,US,39.27,-80.09,203 +26436,"PO BOX",0,Smithburg,,,WV,"Doddridge County",America/New_York,304,NA,US,39.3,-80.72,162 +26437,STANDARD,0,Smithfield,,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.53,-80.51,340 +26438,"PO BOX",0,Spelter,,,WV,"Harrison County",America/New_York,304,NA,US,39.35,-80.32,295 +26440,STANDARD,0,Thornton,,,WV,"Taylor County",America/New_York,304,NA,US,39.34,-79.93,1040 +26443,STANDARD,0,Troy,,,WV,"Gilmer County",America/New_York,304,NA,US,39.08,-80.75,197 +26444,STANDARD,0,Tunnelton,,,WV,"Preston County",America/New_York,304,NA,US,39.39,-79.74,2550 +26447,STANDARD,0,Walkersville,Roanoke,,WV,"Lewis County",America/New_York,"304,681",NA,US,38.91,-80.48,960 +26448,STANDARD,0,Wallace,,,WV,"Harrison County",America/New_York,304,NA,US,39.4,-80.48,960 +26451,STANDARD,0,"West Milford",,,WV,"Harrison County",America/New_York,304,NA,US,39.2,-80.4,630 +26452,STANDARD,0,Weston,"Valley Chapel",,WV,"Lewis County",America/New_York,"304,681",NA,US,39.04,-80.46,7940 +26456,STANDARD,0,"West Union",Blandville,,WV,"Doddridge County",America/New_York,304,NA,US,39.29,-80.77,2740 +26461,STANDARD,1,Wilsonburg,Clarksburg,,WV,"Harrison County",America/New_York,304,NA,US,39.29,-80.39,0 +26463,"PO BOX",0,Wyatt,,,WV,"Harrison County",America/New_York,304,NA,US,39.43,-80.39,152 +26501,STANDARD,0,Morgantown,Westover,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.63,-80.04,14910 +26502,"PO BOX",0,Morgantown,Westover,,WV,"Monongalia County",America/New_York,304,NA,US,39.63,-79.94,229 +26504,"PO BOX",0,Morgantown,"Star City",,WV,"Monongalia County",America/New_York,304,NA,US,39.63,-79.94,337 +26505,STANDARD,0,Morgantown,"Booth, Everettville, Star City",Sabraton,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.63,-79.94,18700 +26506,STANDARD,0,Morgantown,,,WV,"Monongalia County",America/New_York,"681,304",NA,US,39.63,-79.94,28 +26507,"PO BOX",0,Morgantown,,"Cheat Lake",WV,"Monongalia County",America/New_York,304,NA,US,39.63,-79.94,704 +26508,STANDARD,0,Morgantown,"Little Falls","Cheat Lake, Sabraton",WV,"Monongalia County",America/New_York,"304,681",NA,US,39.6,-79.9,30840 +26519,STANDARD,0,Albright,,,WV,"Preston County",America/New_York,"304,681",NA,US,39.49,-79.63,1450 +26520,"PO BOX",0,Arthurdale,,,WV,"Preston County",America/New_York,304,NA,US,39.49,-79.82,812 +26521,STANDARD,0,Blacksville,,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.71,-80.23,420 +26524,STANDARD,0,Bretz,,,WV,"Preston County",America/New_York,304,NA,US,39.55,-79.81,129 +26525,STANDARD,0,"Bruceton Mills","Brandonville, Bruceton Mls, Cuzzart, Hazelton",,WV,"Preston County",America/New_York,"304,681",NA,US,39.65,-79.64,4630 +26527,"PO BOX",0,Cassville,,,WV,"Monongalia County",America/New_York,304,NA,US,39.66,-80.05,193 +26531,"PO BOX",0,Dellslow,,,WV,"Monongalia County",America/New_York,304,NA,US,39.6,-79.89,1099 +26534,"PO BOX",0,Granville,,,WV,"Monongalia County",America/New_York,304,NA,US,39.64,-79.99,938 +26537,STANDARD,0,Kingwood,,,WV,"Preston County",America/New_York,304,NA,US,39.47,-79.68,4850 +26541,STANDARD,0,Maidsville,Core,,WV,"Monongalia County",America/New_York,"681,304",NA,US,39.7,-79.99,3060 +26542,STANDARD,0,Masontown,Cascade,,WV,"Preston County",America/New_York,681,NA,US,39.55,-79.8,2110 +26543,STANDARD,0,Osage,,,WV,"Monongalia County",America/New_York,304,NA,US,39.66,-80,154 +26544,"PO BOX",0,Pentress,,,WV,"Monongalia County",America/New_York,304,NA,US,39.69,-80.18,247 +26546,STANDARD,0,Pursglove,,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.7,-80.06,500 +26547,STANDARD,0,Reedsville,,,WV,"Preston County",America/New_York,304,NA,US,39.51,-79.8,2480 +26554,STANDARD,0,Fairmont,"Jordan, Monongah, Pleasant Valley, Pleasant Vly, White Hall",Bellview,WV,"Marion County",America/New_York,"304,681",NA,US,39.48,-80.14,33980 +26555,"PO BOX",0,Fairmont,"Monongah, Whitehall","Pleasant Valley",WV,"Marion County",America/New_York,304,NA,US,39.48,-80.14,1076 +26559,"PO BOX",0,Barrackville,,,WV,"Marion County",America/New_York,304,NA,US,39.5,-80.17,1341 +26560,STANDARD,0,Baxter,,,WV,"Marion County",America/New_York,304,NA,US,39.54,-80.15,129 +26561,STANDARD,0,"Big Run",,,WV,"Wetzel County",America/New_York,304,NA,US,39.59,-80.57,0 +26562,STANDARD,0,Burton,Coburn,,WV,"Wetzel County",America/New_York,304,NA,US,39.66,-80.39,520 +26563,"PO BOX",0,Carolina,,,WV,"Marion County",America/New_York,304,NA,US,39.48,-80.27,340 +26566,"PO BOX",0,Colfax,,,WV,"Marion County",America/New_York,304,NA,US,39.43,-80.12,96 +26568,STANDARD,0,Enterprise,,,WV,"Harrison County",America/New_York,304,NA,US,39.42,-80.28,430 +26570,STANDARD,0,Fairview,,,WV,"Monongalia County",America/New_York,304,NA,US,39.59,-80.24,2770 +26571,STANDARD,0,Farmington,,,WV,"Marion County",America/New_York,304,NA,US,39.51,-80.25,1750 +26572,"PO BOX",0,"Four States",,,WV,"Marion County",America/New_York,304,NA,US,39.49,-80.31,183 +26574,"PO BOX",0,"Grant Town",,,WV,"Marion County",America/New_York,304,NA,US,39.59,-80.19,423 +26575,STANDARD,0,Hundred,,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.68,-80.45,640 +26576,"PO BOX",0,Idamay,,,WV,"Marion County",America/New_York,304,NA,US,39.49,-80.26,437 +26578,"PO BOX",0,Kingmont,,,WV,"Marion County",America/New_York,304,NA,US,39.45,-80.15,259 +26581,STANDARD,0,Littleton,"Knob Fork, Wileyville",,WV,"Wetzel County",America/New_York,304,NA,US,39.69,-80.51,730 +26582,STANDARD,0,Mannington,,,WV,"Marion County",America/New_York,304,NA,US,39.52,-80.34,4030 +26585,STANDARD,0,Metz,,,WV,"Marion County",America/New_York,304,NA,US,39.61,-80.43,390 +26586,STANDARD,0,"Montana Mines",,,WV,"Marion County",America/New_York,304,NA,US,39.52,-80.1,155 +26587,STANDARD,0,Rachel,,,WV,"Marion County",America/New_York,304,NA,US,39.52,-80.29,280 +26588,STANDARD,0,Rivesville,,,WV,"Marion County",America/New_York,304,NA,US,39.53,-80.12,2550 +26590,STANDARD,0,Wana,Wadestown,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.7,-80.31,610 +26591,STANDARD,0,Worthington,,,WV,"Marion County",America/New_York,304,NA,US,39.45,-80.26,1240 +26601,STANDARD,0,Sutton,"Centralia, Herold, Newville",,WV,"Braxton County",America/New_York,304,NA,US,38.66,-80.71,3190 +26610,STANDARD,0,"Birch River",,,WV,"Nicholas County",America/New_York,"304,681",NA,US,38.49,-80.75,860 +26611,STANDARD,0,Cedarville,Flower,,WV,"Gilmer County",America/New_York,304,NA,US,38.84,-80.84,239 +26615,STANDARD,0,Copen,,,WV,"Braxton County",America/New_York,304,NA,US,38.84,-80.72,101 +26617,STANDARD,0,Dille,,,WV,"Clay County",America/New_York,"304,681",NA,US,38.5,-80.83,171 +26619,STANDARD,0,Exchange,Riffle,,WV,"Braxton County",America/New_York,304,NA,US,38.79,-80.76,440 +26621,STANDARD,0,Flatwoods,Corley,,WV,"Braxton County",America/New_York,304,NA,US,38.72,-80.65,650 +26623,STANDARD,0,Frametown,"Clem, Glendon, Wilsie",,WV,"Braxton County",America/New_York,304,NA,US,38.62,-80.88,1040 +26624,STANDARD,0,Gassaway,Chapel,,WV,"Braxton County",America/New_York,304,NA,US,38.67,-80.77,2070 +26627,STANDARD,0,Heaters,,,WV,"Braxton County",America/New_York,304,NA,US,38.75,-80.59,360 +26629,STANDARD,0,"Little Birch",Tesla,,WV,"Braxton County",America/New_York,304,NA,US,38.57,-80.7,330 +26631,STANDARD,0,Napier,"Falls Mill",,WV,"Braxton County",America/New_York,304,NA,US,38.77,-80.57,170 +26636,STANDARD,0,Rosedale,"Nicut, Perkins",,WV,"Gilmer County",America/New_York,304,NA,US,38.78,-80.89,390 +26638,STANDARD,0,Shock,,,WV,"Gilmer County",America/New_York,304,NA,US,38.76,-80.99,133 +26651,STANDARD,0,Summersville,,,WV,"Nicholas County",America/New_York,"304,681",NA,US,38.28,-80.84,7190 +26656,STANDARD,0,Belva,,,WV,"Nicholas County",America/New_York,304,NA,US,38.28,-81.16,290 +26660,STANDARD,0,Calvin,,,WV,"Nicholas County",America/New_York,304,NA,US,38.36,-80.7,280 +26662,STANDARD,0,Canvas,,,WV,"Nicholas County",America/New_York,304,NA,US,38.26,-80.73,810 +26667,"PO BOX",0,Drennen,,,WV,"Nicholas County",America/New_York,304,NA,US,38.24,-81.01,184 +26671,"PO BOX",0,Gilboa,,,WV,"Nicholas County",America/New_York,304,NA,US,38.29,-80.96,219 +26675,"PO BOX",0,"Keslers Cross Lanes","Kesler Cr Lns",Poe,WV,"Nicholas County",America/New_York,304,NA,US,38.24,-80.94,103 +26676,STANDARD,0,Leivasy,,,WV,"Nicholas County",America/New_York,304,NA,US,38.16,-80.65,330 +26678,STANDARD,0,"Mount Lookout",,,WV,"Nicholas County",America/New_York,304,NA,US,38.17,-80.9,1010 +26679,STANDARD,0,"Mount Nebo",Runa,,WV,"Nicholas County",America/New_York,304,NA,US,38.19,-80.8,1520 +26680,STANDARD,0,Nallen,Russelville,,WV,"Fayette County",America/New_York,304,NA,US,38.1,-80.88,270 +26681,STANDARD,0,Nettie,,,WV,"Nicholas County",America/New_York,304,NA,US,38.23,-80.73,1310 +26684,STANDARD,0,Pool,,,WV,"Nicholas County",America/New_York,304,NA,US,38.16,-80.85,85 +26690,STANDARD,0,Swiss,Jodie,,WV,"Fayette County",America/New_York,304,NA,US,38.18,-81.09,290 +26691,STANDARD,0,Tioga,,,WV,"Nicholas County",America/New_York,304,NA,US,38.39,-80.67,310 +26704,STANDARD,0,Augusta,,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.3,-78.59,4310 +26705,STANDARD,0,Aurora,Amboy,,WV,"Preston County",America/New_York,304,NA,US,39.29,-79.56,900 +26707,"PO BOX",0,Bayard,Wilson,,WV,"Grant County",America/New_York,304,NA,US,39.26,-79.36,282 +26710,STANDARD,0,Burlington,Medley,,WV,"Mineral County",America/New_York,"304,681",NA,US,39.36,-78.91,1680 +26711,STANDARD,0,"Capon Bridge",,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.28,-78.47,2290 +26714,STANDARD,0,Delray,,,WV,"Hampshire County",America/New_York,304,NA,US,39.19,-78.6,310 +26716,STANDARD,0,Eglon,"Horse Shoe Rn, Horse Shoe Run",,WV,"Preston County",America/New_York,"304,681",NA,US,39.29,-79.51,540 +26717,STANDARD,0,"Elk Garden",,,WV,"Mineral County",America/New_York,304,NA,US,39.38,-79.15,830 +26719,STANDARD,0,"Fort Ashby",,,WV,"Mineral County",America/New_York,304,NA,US,39.49,-78.76,2550 +26720,STANDARD,0,Gormania,,,WV,"Grant County",America/New_York,304,NA,US,39.28,-79.33,184 +26722,STANDARD,0,"Green Spring",,,WV,"Hampshire County",America/New_York,304,NA,US,39.5,-78.64,480 +26726,STANDARD,0,Keyser,"Rocket Center, Scherr, Short Gap",,WV,"Mineral County",America/New_York,"304,681",NA,US,39.43,-78.98,10910 +26731,STANDARD,0,Lahmansville,,,WV,"Grant County",America/New_York,304,NA,US,39.17,-79.07,290 +26739,STANDARD,0,"Mount Storm",,,WV,"Grant County",America/New_York,304,NA,US,39.27,-79.24,680 +26743,STANDARD,0,"New Creek",,,WV,"Mineral County",America/New_York,304,NA,US,39.29,-79.08,1370 +26750,STANDARD,0,Piedmont,,,WV,"Mineral County",America/New_York,304,NA,US,39.48,-79.04,590 +26753,STANDARD,0,Ridgeley,"Carpendale, Patterson Creek, Patterson Crk",,WV,"Mineral County",America/New_York,304,NA,US,39.64,-78.77,5420 +26755,STANDARD,0,Rio,Kirby,,WV,"Hampshire County",America/New_York,304,NA,US,39.17,-78.72,560 +26757,STANDARD,0,Romney,"Three Chrs, Three Churches",,WV,"Hampshire County",America/New_York,304,NA,US,39.34,-78.75,4920 +26761,STANDARD,0,Shanks,,,WV,"Hampshire County",America/New_York,304,NA,US,39.26,-78.7,470 +26763,STANDARD,0,Springfield,,,WV,"Hampshire County",America/New_York,304,NA,US,39.45,-78.69,1390 +26764,STANDARD,0,"Terra Alta","Corinth, Hopemont",,WV,"Preston County",America/New_York,304,NA,US,39.44,-79.54,3400 +26767,STANDARD,0,"Wiley Ford",,,WV,"Mineral County",America/New_York,304,NA,US,39.62,-78.76,570 +26801,STANDARD,0,Baker,,,WV,"Hardy County",America/New_York,304,NA,US,39.04,-78.74,1110 +26802,STANDARD,0,Brandywine,"Fort Seybert","Ft Seybert",WV,"Pendleton County",America/New_York,304,NA,US,38.62,-79.24,920 +26804,STANDARD,0,Circleville,,,WV,"Pendleton County",America/New_York,304,NA,US,38.67,-79.49,510 +26807,STANDARD,0,Franklin,,,WV,"Pendleton County",America/New_York,304,NA,US,38.64,-79.33,2400 +26808,STANDARD,0,"High View",,,WV,"Hampshire County",America/New_York,304,NA,US,39.2,-78.45,710 +26810,STANDARD,0,"Lost City","Lost River",,WV,"Hardy County",America/New_York,304,NA,US,38.99,-78.76,260 +26812,STANDARD,0,Mathias,,,WV,"Hardy County",America/New_York,304,NA,US,38.87,-78.86,1340 +26814,STANDARD,0,Riverton,,,WV,"Pendleton County",America/New_York,304,NA,US,38.74,-79.43,340 +26815,STANDARD,0,"Sugar Grove",Moyers,,WV,"Pendleton County",America/New_York,304,NA,US,38.51,-79.32,540 +26817,STANDARD,0,Bloomery,,,WV,"Hampshire County",America/New_York,304,NA,US,39.38,-78.37,410 +26818,STANDARD,0,Fisher,,,WV,"Hardy County",America/New_York,304,NA,US,39.05,-79,740 +26823,"PO BOX",0,"Capon Springs",,,WV,"Hampshire County",America/New_York,304,NA,US,39.13,-78.48,101 +26833,STANDARD,0,Maysville,,,WV,"Grant County",America/New_York,"304,681",NA,US,39.11,-79.16,1910 +26836,STANDARD,0,Moorefield,Rig,,WV,"Hardy County",America/New_York,"304,681",NA,US,39.06,-78.96,5820 +26838,STANDARD,0,Milam,,,WV,"Hardy County",America/New_York,304,NA,US,38.81,-79.09,26 +26845,STANDARD,0,"Old Fields",,,WV,"Hardy County",America/New_York,304,NA,US,39.14,-78.95,730 +26847,STANDARD,0,Petersburg,"Arthur, Dorcas, Landes Sta, Landes Station",,WV,"Grant County",America/New_York,"304,681",NA,US,38.99,-79.12,5170 +26851,STANDARD,0,Wardensville,,,WV,"Hardy County",America/New_York,"304,681",NA,US,39.07,-78.59,1780 +26852,STANDARD,0,Purgitsville,Junction,,WV,"Hampshire County",America/New_York,304,NA,US,39.23,-78.92,710 +26855,STANDARD,0,Cabins,,,WV,"Grant County",America/New_York,304,NA,US,38.99,-79.2,630 +26865,STANDARD,0,"Yellow Spring",Lehew,,WV,"Hampshire County",America/New_York,304,NA,US,39.18,-78.49,400 +26866,STANDARD,0,"Upper Tract",,,WV,"Pendleton County",America/New_York,304,NA,US,38.79,-79.25,680 +26884,STANDARD,0,"Seneca Rocks",,,WV,"Pendleton County",America/New_York,304,NA,US,38.83,-79.37,520 +26886,"PO BOX",0,Onego,,,WV,"Pendleton County",America/New_York,304,NA,US,38.81,-79.47,110 +27006,STANDARD,0,Advance,"Bermuda Run","Bixby, Fork, Hillsdale, Redland",NC,"Davie County",America/New_York,336,NA,US,35.93,-80.4,13890 +27007,STANDARD,0,Ararat,,"Ash Hill",NC,"Surry County",America/New_York,336,NA,US,36.4,-80.56,1890 +27009,STANDARD,0,"Belews Creek",,"Belew Creek",NC,"Forsyth County",America/New_York,336,NA,US,36.25,-80.06,2600 +27010,"PO BOX",0,Bethania,,,NC,"Forsyth County",America/New_York,336,NA,US,36.14,-80.3,318 +27011,STANDARD,0,Boonville,,"Booneville, Longtown, Richmond Hill",NC,"Yadkin County",America/New_York,336,NA,US,36.23,-80.7,4550 +27012,STANDARD,0,Clemmons,,,NC,"Forsyth County",America/New_York,336,NA,US,36.02,-80.38,27600 +27013,STANDARD,0,Cleveland,Barber,"Amity, Cool Spring, Mount Vernon",NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.73,-80.67,5430 +27014,"PO BOX",0,Cooleemee,,,NC,"Davie County",America/New_York,336,NA,US,35.81,-80.55,1437 +27016,STANDARD,0,Danbury,,Hartman,NC,"Stokes County",America/New_York,336,NA,US,36.45,-80.22,1350 +27017,STANDARD,0,Dobson,,"Copeland, Devotion, Fairview Cross Roads, Rockford, Stony Knoll",NC,"Surry County",America/New_York,336,NA,US,36.39,-80.72,7330 +27018,STANDARD,0,"East Bend",,,NC,"Yadkin County",America/New_York,336,NA,US,36.21,-80.5,6590 +27019,STANDARD,0,Germanton,,,NC,"Stokes County",America/New_York,336,NA,US,36.26,-80.23,3320 +27020,STANDARD,0,Hamptonville,,"Brooks Cross Roads, Buck Shoals, Cycle, Eagle, Marler, Winders Cross Roads",NC,"Yadkin County",America/New_York,336,NA,US,36.11,-80.81,5230 +27021,STANDARD,0,King,,,NC,"Stokes County",America/New_York,336,NA,US,36.27,-80.35,15050 +27022,STANDARD,0,Lawsonville,,"Harts Store",NC,"Stokes County",America/New_York,336,NA,US,36.51,-80.22,1210 +27023,STANDARD,0,Lewisville,,"West Bend",NC,"Forsyth County",America/New_York,336,NA,US,36.09,-80.4,12630 +27024,STANDARD,0,Lowgap,,,NC,"Surry County",America/New_York,336,NA,US,36.52,-80.84,2020 +27025,STANDARD,0,Madison,,Ellisboro,NC,"Rockingham County",America/New_York,336,NA,US,36.38,-79.97,9120 +27027,STANDARD,0,Mayodan,,Ayersville,NC,"Rockingham County",America/New_York,336,NA,US,36.41,-79.97,3070 +27028,STANDARD,0,Mocksville,,Farmington,NC,"Davie County",America/New_York,336,NA,US,35.89,-80.55,22870 +27030,STANDARD,0,"Mount Airy",,"Mt Airy, Round Peak, White Sulphur Springs",NC,"Surry County",America/New_York,336,NA,US,36.5,-80.61,29530 +27031,"PO BOX",0,"Mount Airy",,"Mt Airy",NC,"Surry County",America/New_York,336,NA,US,36.44,-80.63,186 +27040,STANDARD,0,Pfafftown,,"Dosier, Seward, Vienna",NC,"Forsyth County",America/New_York,336,NA,US,36.17,-80.39,11400 +27041,STANDARD,0,"Pilot Mountain","Pilot Mtn","Pilot Mnt, Pilot Mt, Pilot Mts",NC,"Surry County",America/New_York,336,NA,US,36.38,-80.47,6660 +27042,STANDARD,0,"Pine Hall",,,NC,"Stokes County",America/New_York,336,NA,US,36.35,-80.06,600 +27043,STANDARD,0,Pinnacle,,"Dalton, Perch, Shoal",NC,"Stokes County",America/New_York,336,NA,US,36.33,-80.4,5340 +27045,STANDARD,0,"Rural Hall",,Stanleyville,NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,8730 +27046,STANDARD,0,"Sandy Ridge",,,NC,"Stokes County",America/New_York,336,NA,US,36.5,-80.11,1620 +27047,STANDARD,0,Siloam,,,NC,"Surry County",America/New_York,336,NA,US,36.32,-80.57,950 +27048,STANDARD,0,Stoneville,,"Matrimony, Price",NC,"Rockingham County",America/New_York,336,NA,US,36.46,-79.9,6710 +27049,"PO BOX",0,Toast,,,NC,"Surry County",America/New_York,336,NA,US,36.49,-80.63,848 +27050,STANDARD,0,Tobaccoville,,,NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.39,3470 +27051,STANDARD,0,Walkertown,,,NC,"Forsyth County",America/New_York,336,NA,US,36.17,-80.15,7130 +27052,STANDARD,0,"Walnut Cove",,"Brook Cove, Fulp, Meadow",NC,"Stokes County",America/New_York,336,NA,US,36.29,-80.13,8370 +27053,STANDARD,0,Westfield,,"W Field",NC,"Stokes County",America/New_York,336,NA,US,36.47,-80.35,2520 +27054,STANDARD,0,Woodleaf,,,NC,"Rowan County",America/New_York,336,NA,US,35.76,-80.59,2380 +27055,STANDARD,0,Yadkinville,,"Branon, Center, Courtney, Footsville, Lone Hickory, Shacktown",NC,"Yadkin County",America/New_York,336,NA,US,36.13,-80.65,12030 +27094,UNIQUE,0,"Rural Hall",,"Princess House",NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,0 +27098,UNIQUE,0,"Rural Hall",,"Hanes Brands Inc",NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,0 +27099,UNIQUE,0,"Rural Hall",,"Hanes Brands Inc",NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,0 +27101,STANDARD,0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,14790 +27102,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,411 +27103,STANDARD,0,"Winston Salem",,"Ardmore, Hanes, Muddy Creek",NC,"Forsyth County",America/New_York,336,NA,US,36.06,-80.32,30740 +27104,STANDARD,0,"Winston Salem",,"Peace Haven Estates",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.32,26910 +27105,STANDARD,0,"Winston Salem",,"North, Sedges Garden",NC,"Forsyth County",America/New_York,336,NA,US,36.16,-80.23,32260 +27106,STANDARD,0,"Winston Salem",,"Mount Tabor, Oldtown",NC,"Forsyth County",America/New_York,336,NA,US,36.14,-80.32,40470 +27107,STANDARD,0,"Winston Salem",,"Eller, Gumtree, Waughtown",NC,"Forsyth County",America/New_York,336,NA,US,36.01,-80.18,42250 +27108,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,19 +27109,STANDARD,0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.13,-80.28,73 +27110,UNIQUE,0,"Winston Salem",,"Ws State Univ",NC,"Forsyth County",America/New_York,336,NA,US,36.09,-80.22,59 +27111,UNIQUE,0,"Winston Salem",,"Wachovia Bldg Vim",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27113,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,317 +27114,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,420 +27115,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,383 +27116,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,496 +27117,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,393 +27120,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,282 +27127,STANDARD,0,"Winston Salem",,Waughtown,NC,"Forsyth County",America/New_York,336,NA,US,36.02,-80.28,33890 +27130,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,210 +27150,UNIQUE,0,"Winston Salem",,"Wachovia Bank",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,102 +27151,UNIQUE,1,Winston-salem,"Winston Salem","Wachovia Master Chrg",NC,"Forsyth County",America/New_York,336,NA,US,36.11,-80.24,0 +27152,UNIQUE,0,"Winston Salem",,"Integon Corp",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27155,UNIQUE,0,"Winston Salem",,"Veterans Affairs",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27156,UNIQUE,1,Winston-salem,"Winston Salem","Piedmont Aviation",NC,"Forsyth County",America/New_York,336,NA,US,36.14,-80.22,0 +27157,UNIQUE,0,"Winston Salem",,"Bowman Gray School Of Med, Nc Baptist Hospital",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,47 +27198,UNIQUE,0,"Winston Salem",,"Winston Salem Courtesy Reply",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27199,UNIQUE,0,"Winston Salem",,"Winston Salem Brm",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27201,"PO BOX",0,Alamance,,,NC,"Alamance County",America/New_York,,NA,US,36.03,-79.48,439 +27202,"PO BOX",0,Altamahaw,,,NC,"Alamance County",America/New_York,,NA,US,36.17,-79.5,248 +27203,STANDARD,0,Asheboro,,,NC,"Randolph County",America/New_York,336,NA,US,35.71,-79.81,17450 +27204,"PO BOX",0,Asheboro,,,NC,"Randolph County",America/New_York,336,NA,US,35.71,-79.81,2340 +27205,STANDARD,0,Asheboro,,,NC,"Randolph County",America/New_York,336,NA,US,35.65,-79.84,28530 +27207,STANDARD,0,"Bear Creek",,"Harpers Crossroads",NC,"Chatham County",America/New_York,919,NA,US,35.6,-79.36,3090 +27208,STANDARD,0,Bennett,,,NC,"Chatham County",America/New_York,"910,336",NA,US,35.57,-79.52,1390 +27209,STANDARD,0,Biscoe,,,NC,"Montgomery County",America/New_York,910,NA,US,35.36,-79.78,3850 +27212,STANDARD,0,Blanch,,Blanche,NC,"Caswell County",America/New_York,336,NA,US,36.51,-79.28,1170 +27213,"PO BOX",0,Bonlee,,,NC,"Chatham County",America/New_York,,NA,US,35.61,-79.44,233 +27214,STANDARD,0,"Browns Summit",,"Brightwood, Brown Summit, Busick, Monticello, Osceola, Rudd",NC,"Guilford County",America/New_York,336,NA,US,36.21,-79.67,11080 +27215,STANDARD,0,Burlington,"Glen Raven",Burl,NC,"Alamance County",America/New_York,336,NA,US,36.08,-79.44,37790 +27216,"PO BOX",0,Burlington,,,NC,"Alamance County",America/New_York,336,NA,US,36.08,-79.44,1247 +27217,STANDARD,0,Burlington,"Green Level",,NC,"Alamance County",America/New_York,336,NA,US,36.19,-79.38,32500 +27220,UNIQUE,1,Burlington,,"Kayser Roth",NC,"Alamance County",America/New_York,336,NA,US,36.02,-79.48,0 +27228,"PO BOX",0,Bynum,Pittsboro,,NC,"Chatham County",America/New_York,,NA,US,35.77,-79.15,106 +27229,STANDARD,0,Candor,,Canden,NC,"Montgomery County",America/New_York,910,NA,US,35.29,-79.74,3630 +27230,"PO BOX",0,"Cedar Falls",,,NC,"Randolph County",America/New_York,336,NA,US,35.8,-79.72,247 +27231,STANDARD,0,"Cedar Grove",,,NC,"Orange County",America/New_York,919,NA,US,36.2,-79.17,1730 +27233,STANDARD,0,Climax,,,NC,"Randolph County",America/New_York,,NA,US,35.89,-79.71,2980 +27235,STANDARD,0,Colfax,,,NC,"Guilford County",America/New_York,336,NA,US,36.09,-80.01,4600 +27237,"PO BOX",0,Cumnock,Sanford,,NC,"Lee County",America/New_York,919,NA,US,35.54,-79.23,0 +27239,STANDARD,0,Denton,,"Handy, Healing Springs, High Rock, Jacksons Creek, New Hope Academy, Newsom",NC,"Davidson County",America/New_York,336,NA,US,35.63,-80.11,7410 +27242,STANDARD,0,"Eagle Springs",,,NC,"Moore County",America/New_York,,NA,US,35.3,-79.65,1550 +27243,STANDARD,0,Efland,,Buckhorn,NC,"Orange County",America/New_York,919,NA,US,36.06,-79.17,4290 +27244,STANDARD,0,Elon,"Elon College","Ossipee, Stonycreek",NC,"Alamance County",America/New_York,336,NA,US,36.09,-79.51,9970 +27247,"PO BOX",0,Ether,,,NC,"Montgomery County",America/New_York,910,NA,US,35.44,-79.78,218 +27248,STANDARD,0,Franklinville,,"Grays Chapel, Millboro",NC,"Randolph County",America/New_York,336,NA,US,35.74,-79.69,3800 +27249,STANDARD,0,Gibsonville,,,NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.54,11450 +27252,STANDARD,0,Goldston,,,NC,"Chatham County",America/New_York,919,NA,US,35.59,-79.32,1440 +27253,STANDARD,0,Graham,,,NC,"Alamance County",America/New_York,336,NA,US,36.06,-79.39,27030 +27256,"PO BOX",0,Gulf,,,NC,"Chatham County",America/New_York,,NA,US,35.57,-79.28,196 +27258,STANDARD,0,"Haw River",,,NC,"Alamance County",America/New_York,336,NA,US,36.09,-79.36,6380 +27259,"PO BOX",0,Highfalls,,,NC,"Chatham County",America/New_York,,NA,US,35.48,-79.53,158 +27260,STANDARD,0,"High Point",,"Deep River, Freemans Mills, Glenola, H P, High Pnt",NC,"Guilford County",America/New_York,336,NA,US,35.95,-79.99,19500 +27261,"PO BOX",0,"High Point",,,NC,"Guilford County",America/New_York,336,NA,US,35.98,-79.99,1220 +27262,STANDARD,0,"High Point",,Emerywood,NC,"Guilford County",America/New_York,336,NA,US,35.96,-80.04,19100 +27263,STANDARD,0,"High Point",Archdale,"Allen Jay",NC,"Randolph County",America/New_York,336,NA,US,35.91,-79.94,18650 +27264,"PO BOX",0,"High Point",,,NC,"Guilford County",America/New_York,336,NA,US,35.98,-79.99,141 +27265,STANDARD,0,"High Point",,,NC,"Guilford County",America/New_York,336,NA,US,35.98,-79.99,46780 +27268,UNIQUE,0,"High Point",,"High Point University",NC,"Guilford County",America/New_York,,NA,US,35.95,-80.01,0 +27278,STANDARD,0,Hillsborough,,"Hillsboro, West Hillsborough",NC,"Orange County",America/New_York,919,NA,US,36.07,-79.1,25920 +27281,STANDARD,0,"Jackson Springs","Foxfire Village, Foxfire Vlg, Jackson Spgs","Foxfire, Marcus, Wind Blow",NC,"Moore County",America/New_York,,NA,US,35.19,-79.64,2390 +27282,STANDARD,0,Jamestown,,,NC,"Guilford County",America/New_York,336,NA,US,35.99,-79.93,15080 +27283,STANDARD,0,Julian,,,NC,"Guilford County",America/New_York,336,NA,US,35.95,-79.63,2830 +27284,STANDARD,0,Kernersville,,"Guthrie, Matthewstown, Talleys Crossing, Union Cross",NC,"Forsyth County",America/New_York,336,NA,US,36.11,-80.07,50110 +27285,"PO BOX",0,Kernersville,,,NC,"Forsyth County",America/New_York,336,NA,US,36.11,-80.07,940 +27288,STANDARD,0,Eden,,"Boulevard, Draper, Leaksville, Meadow Summit, New Leaksville, Spray",NC,"Rockingham County",America/New_York,336,NA,US,36.5,-79.74,17850 +27289,"PO BOX",0,Eden,,,NC,"Rockingham County",America/New_York,336,NA,US,36.5,-79.74,1111 +27291,STANDARD,0,Leasburg,,"Frogsboro, Osmond",NC,"Caswell County",America/New_York,336,NA,US,36.4,-79.16,1260 +27292,STANDARD,0,Lexington,,"Arcadia, Arnold, Churchland, Cid, Cotton Grove, Enterprise, Feezor, Gordontown, Hannersville, Hedrick Grove, Holly Grove, Lex, Petersville, Reeds Cross Roads, Reedy Creek, Silver Valley, South Lexington, Tyro, Yadkin, Yadkin College",NC,"Davidson County",America/New_York,336,NA,US,35.8,-80.25,31840 +27293,"PO BOX",0,Lexington,,,NC,"Davidson County",America/New_York,336,NA,US,35.8,-80.25,1131 +27294,UNIQUE,0,Lexington,,"National Wholesale Co Inc",NC,"Davidson County",America/New_York,336,NA,US,35.8,-80.25,0 +27295,STANDARD,0,Lexington,,,NC,"Davidson County",America/New_York,336,NA,US,35.87,-80.31,33450 +27298,STANDARD,0,Liberty,,Kimesville,NC,"Randolph County",America/New_York,336,NA,US,35.85,-79.57,9270 +27299,STANDARD,0,Linwood,,,NC,"Davidson County",America/New_York,336,NA,US,35.75,-80.39,4480 +27301,STANDARD,0,"Mc Leansville",,Mcleansville,NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.66,9600 +27302,STANDARD,0,Mebane,,,NC,"Alamance County",America/New_York,919,NA,US,36.09,-79.27,29080 +27305,STANDARD,0,Milton,,Estelle,NC,"Caswell County",America/New_York,336,NA,US,36.53,-79.2,1210 +27306,STANDARD,0,"Mount Gilead",,Wadeville,NC,"Montgomery County",America/New_York,"704,910",NA,US,35.21,-80,5150 +27310,STANDARD,0,"Oak Ridge",,,NC,"Guilford County",America/New_York,336,NA,US,36.17,-79.98,8630 +27311,STANDARD,0,Pelham,,,NC,"Caswell County",America/New_York,336,NA,US,36.5,-79.46,2630 +27312,STANDARD,0,Pittsboro,"Fearrington, Fearrington Village",,NC,"Chatham County",America/New_York,919,NA,US,35.71,-79.17,19740 +27313,STANDARD,0,"Pleasant Garden","Pleasant Gdn","Pleasant Gdns",NC,"Guilford County",America/New_York,336,NA,US,35.96,-79.77,6220 +27314,STANDARD,0,"Prospect Hill",,,NC,"Caswell County",America/New_York,336,NA,US,36.25,-79.2,940 +27315,STANDARD,0,Providence,,,NC,"Caswell County",America/New_York,336,NA,US,36.5,-79.36,1620 +27316,STANDARD,0,Ramseur,Coleridge,"Parks Crossroads",NC,"Randolph County",America/New_York,336,NA,US,35.73,-79.65,5710 +27317,STANDARD,0,Randleman,,"Level Cross, New Salem",NC,"Randolph County",America/New_York,336,NA,US,35.81,-79.8,15080 +27320,STANDARD,0,Reidsville,,"Camp Springs, Cherrygrove, Harrison Cross Roads, Midway, Monroeton",NC,"Rockingham County",America/New_York,336,NA,US,36.34,-79.67,31210 +27321,UNIQUE,1,Reidsville,,"Burlington House",NC,"Rockingham County",America/New_York,336,NA,US,36.35,-79.66,0 +27322,UNIQUE,1,Reidsville,,"Chase Packaging Inc",NC,"Rockingham County",America/New_York,336,NA,US,36.35,-79.66,0 +27323,"PO BOX",0,Reidsville,,,NC,"Rockingham County",America/New_York,336,NA,US,36.34,-79.67,1300 +27325,STANDARD,0,Robbins,Glendon,,NC,"Moore County",America/New_York,910,NA,US,35.43,-79.58,5220 +27326,STANDARD,0,Ruffin,,"Allison, Casville, Oregon Hill, Powells Store, Quick",NC,"Rockingham County",America/New_York,336,NA,US,36.45,-79.55,3020 +27330,STANDARD,0,Sanford,"Buffalo Lake, Colon","Carbonton, Haw Branch, Jonesboro Heights, Osgood, Pine View, Shallowell, Swan Station, Tramway, White Hill",NC,"Lee County",America/New_York,919,NA,US,35.47,-79.18,33820 +27331,"PO BOX",0,Sanford,,,NC,"Lee County",America/New_York,919,NA,US,35.47,-79.18,3264 +27332,STANDARD,0,Sanford,,,NC,"Lee County",America/New_York,919,NA,US,35.36,-79.13,28200 +27340,"PO BOX",0,Saxapahaw,,,NC,"Alamance County",America/New_York,,NA,US,35.95,-79.32,314 +27341,STANDARD,0,Seagrove,,,NC,"Randolph County",America/New_York,"336,910",NA,US,35.54,-79.77,4480 +27342,"PO BOX",0,Sedalia,,,NC,"Guilford County",America/New_York,336,NA,US,36.14,-79.57,266 +27343,STANDARD,0,Semora,,,NC,"Person County",America/New_York,,NA,US,36.49,-79.14,1300 +27344,STANDARD,0,"Siler City",,"Silk Hope",NC,"Chatham County",America/New_York,919,NA,US,35.72,-79.46,15510 +27349,STANDARD,0,"Snow Camp",,"Rock Creek",NC,"Alamance County",America/New_York,336,NA,US,35.86,-79.41,5560 +27350,STANDARD,0,Sophia,,,NC,"Randolph County",America/New_York,336,NA,US,35.81,-79.89,5580 +27351,"PO BOX",0,Southmont,,,NC,"Davidson County",America/New_York,336,NA,US,35.81,-80.26,756 +27355,STANDARD,0,Staley,,"Soapstone Mountain",NC,"Randolph County",America/New_York,336,NA,US,35.79,-79.55,2240 +27356,STANDARD,0,Star,,,NC,"Montgomery County",America/New_York,910,NA,US,35.4,-79.78,2410 +27357,STANDARD,0,Stokesdale,,,NC,"Rockingham County",America/New_York,,NA,US,36.23,-79.98,8600 +27358,STANDARD,0,Summerfield,,,NC,"Guilford County",America/New_York,336,NA,US,36.2,-79.89,14390 +27359,"PO BOX",0,Swepsonville,,,NC,"Alamance County",America/New_York,,NA,US,36.02,-79.35,400 +27360,STANDARD,0,Thomasville,,"Erwin Heights",NC,"Davidson County",America/New_York,336,NA,US,35.88,-80.07,39500 +27361,"PO BOX",0,Thomasville,,,NC,"Davidson County",America/New_York,336,NA,US,35.88,-80.07,1915 +27370,STANDARD,0,Trinity,,,NC,"Randolph County",America/New_York,336,NA,US,35.88,-80.01,13440 +27371,STANDARD,0,Troy,,"Flint Hill, Lovejoy, Moratock, Okeewemee, Ophir, Queen, Uwharie",NC,"Montgomery County",America/New_York,910,NA,US,35.36,-79.89,5940 +27373,"PO BOX",0,Wallburg,,,NC,"Davidson County",America/New_York,336,NA,US,36.01,-80.14,306 +27374,"PO BOX",0,Welcome,,,NC,"Davidson County",America/New_York,336,NA,US,35.91,-80.25,1612 +27375,"PO BOX",0,Wentworth,,,NC,"Rockingham County",America/New_York,336,NA,US,36.4,-79.76,63 +27376,STANDARD,0,"West End","Seven Lakes",,NC,"Moore County",America/New_York,910,NA,US,35.24,-79.53,9130 +27377,STANDARD,0,Whitsett,,"Stoney Creek",NC,"Guilford County",America/New_York,336,NA,US,36.03,-79.59,9570 +27379,STANDARD,0,Yanceyville,,,NC,"Caswell County",America/New_York,336,NA,US,36.4,-79.34,3550 +27395,STANDARD,1,Greensboro,"Greensboro Bmc",,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.79,0 +27401,STANDARD,0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.77,12970 +27402,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,870 +27403,STANDARD,0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,13570 +27404,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,479 +27405,STANDARD,0,Greensboro,,"Hamtown, Mount Zion, Rankin, Summit, Tennessee Acres",NC,"Guilford County",America/New_York,336,NA,US,36.11,-79.74,40490 +27406,STANDARD,0,Greensboro,,"Forest Oaks, South Greensboro, Spring Valley, Vandalia",NC,"Guilford County",America/New_York,336,NA,US,36,-79.76,50590 +27407,STANDARD,0,Greensboro,,"Groomtown, Hilltop, Sedgefield",NC,"Guilford County",America/New_York,336,NA,US,36.01,-79.88,41910 +27408,STANDARD,0,Greensboro,,"Country Park Acres, Guilford Courthouse National, Plaza",NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.81,16310 +27409,STANDARD,0,Greensboro,,"Guilford, Guilford College",NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.94,14710 +27410,STANDARD,0,Greensboro,,"Friendship, Greensboro High Point Winsto, Guilford, Guilford College, Ridgefield",NC,"Guilford County",America/New_York,336,NA,US,36.12,-79.89,48960 +27411,UNIQUE,0,Greensboro,,"A&T State University",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,67 +27412,UNIQUE,0,Greensboro,,"Unc Greensboro",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27413,UNIQUE,0,Greensboro,,"Unc Greensboro",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,115 +27415,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,763 +27416,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,520 +27417,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,634 +27419,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,895 +27420,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,631 +27425,"PO BOX",0,Greensboro,,"A M F Greensboro, Amf G Boro, Amf Greensboro",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,151 +27427,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,73 +27429,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,307 +27435,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,92 +27438,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,387 +27455,STANDARD,0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.18,-79.81,27760 +27480,UNIQUE,1,Greensboro,,"Sears Roebuck",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.79,0 +27495,STANDARD,0,Greensboro,,"Greensboro Ndc",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27497,UNIQUE,0,Greensboro,,"Usps Hr Shared Svcs",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.95,0 +27498,UNIQUE,0,Greensboro,,"Greensboro Courtesy Reply, United States Postal Service",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27499,UNIQUE,0,Greensboro,,"Greensboro Brm",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27501,STANDARD,0,Angier,,,NC,"Harnett County",America/New_York,919,NA,US,35.51,-78.73,18560 +27502,STANDARD,0,Apex,,,NC,"Wake County",America/New_York,919,NA,US,35.72,-78.84,43450 +27503,STANDARD,0,Bahama,,,NC,"Durham County",America/New_York,919,NA,US,36.17,-78.88,3360 +27504,STANDARD,0,Benson,,,NC,"Johnston County",America/New_York,919,NA,US,35.37,-78.54,14280 +27505,STANDARD,0,Broadway,,,NC,"Harnett County",America/New_York,919,NA,US,35.45,-79.05,6210 +27506,"PO BOX",0,"Buies Creek",,,NC,"Harnett County",America/New_York,,NA,US,35.4,-78.74,1115 +27507,STANDARD,0,Bullock,,,NC,"Granville County",America/New_York,919,NA,US,36.5,-78.55,1460 +27508,STANDARD,0,Bunn,,,NC,"Franklin County",America/New_York,,NA,US,35.95,-78.25,1540 +27509,STANDARD,0,Butner,,,NC,"Granville County",America/New_York,919,NA,US,36.13,-78.77,3490 +27510,STANDARD,0,Carrboro,,,NC,"Orange County",America/New_York,919,NA,US,35.91,-79.08,11780 +27511,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.78,-78.79,29930 +27512,"PO BOX",0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.78,-78.79,840 +27513,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.8,-78.8,43980 +27514,STANDARD,0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.92,-79.04,20150 +27515,"PO BOX",0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.92,-79.04,677 +27516,STANDARD,0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.91,-79.15,36160 +27517,STANDARD,0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.84,-79.03,25280 +27518,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.73,-78.77,20670 +27519,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.81,-78.88,62420 +27520,STANDARD,0,Clayton,,"Archer Lodge, Whitley Heights",NC,"Johnston County",America/New_York,919,NA,US,35.64,-78.45,39970 +27521,STANDARD,0,Coats,,,NC,"Harnett County",America/New_York,910,NA,US,35.4,-78.66,5540 +27522,STANDARD,0,Creedmoor,,,NC,"Granville County",America/New_York,919,NA,US,36.12,-78.68,11960 +27523,STANDARD,0,Apex,,,NC,"Wake County",America/New_York,919,NA,US,35.77,-78.94,14170 +27524,STANDARD,0,"Four Oaks",,,NC,"Johnston County",America/New_York,919,NA,US,35.44,-78.42,11250 +27525,STANDARD,0,Franklinton,,,NC,"Franklin County",America/New_York,919,NA,US,36.1,-78.45,14370 +27526,STANDARD,0,"Fuquay Varina",,Duncan,NC,"Wake County",America/New_York,919,NA,US,35.54,-78.83,50630 +27527,STANDARD,0,Clayton,"Archer Lodge",,NC,"Johnston County",America/New_York,919,NA,US,35.63,-78.36,30600 +27528,STANDARD,0,Clayton,,,NC,"Johnston County",America/New_York,919,NA,US,35.65,-78.45,966 +27529,STANDARD,0,Garner,,,NC,"Wake County",America/New_York,919,NA,US,35.69,-78.62,48110 +27530,STANDARD,0,Goldsboro,,"Patetown, Walnut Creek, Webtown",NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.97,30230 +27531,STANDARD,0,Goldsboro,"Seymour Johnson A F B, Seymour Johnson AFB, Sjafb",,NC,"Wayne County",America/New_York,919,NA,US,35.34,-77.96,475 +27532,"PO BOX",0,Goldsboro,,,NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.97,771 +27533,"PO BOX",0,Goldsboro,,,NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.97,949 +27534,STANDARD,0,Goldsboro,,,NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.9,27370 +27536,STANDARD,0,Henderson,,,NC,"Vance County",America/New_York,252,NA,US,36.32,-78.41,13510 +27537,STANDARD,0,Henderson,,,NC,"Vance County",America/New_York,252,NA,US,36.37,-78.37,19400 +27539,STANDARD,0,Apex,,,NC,"Wake County",America/New_York,919,NA,US,35.67,-78.81,25070 +27540,STANDARD,0,"Holly Springs",,,NC,"Wake County",America/New_York,919,NA,US,35.65,-78.83,41370 +27541,STANDARD,0,"Hurdle Mills",,,NC,"Person County",America/New_York,,NA,US,36.25,-79.08,3570 +27542,STANDARD,0,Kenly,,Bagley,NC,"Johnston County",America/New_York,919,NA,US,35.59,-78.12,8280 +27543,"PO BOX",0,Kipling,,,NC,"Harnett County",America/New_York,,NA,US,35.48,-78.81,234 +27544,STANDARD,0,Kittrell,,,NC,"Vance County",America/New_York,252,NA,US,36.22,-78.44,3420 +27545,STANDARD,0,Knightdale,,,NC,"Wake County",America/New_York,919,NA,US,35.79,-78.48,28960 +27546,STANDARD,0,Lillington,,,NC,"Harnett County",America/New_York,910,NA,US,35.39,-78.81,15300 +27549,STANDARD,0,Louisburg,Centerville,,NC,"Franklin County",America/New_York,919,NA,US,36.1,-78.29,19440 +27551,STANDARD,0,Macon,,,NC,"Warren County",America/New_York,252,NA,US,36.43,-78.08,1490 +27552,"PO BOX",0,Mamers,,,NC,"Harnett County",America/New_York,,NA,US,35.41,-78.94,437 +27553,STANDARD,0,Manson,,"Soul City",NC,"Warren County",America/New_York,,NA,US,36.47,-78.29,1720 +27555,"PO BOX",0,Micro,,,NC,"Johnston County",America/New_York,,NA,US,35.56,-78.2,820 +27556,"PO BOX",0,Middleburg,,,NC,"Vance County",America/New_York,252,NA,US,36.41,-78.31,534 +27557,STANDARD,0,Middlesex,,Emit,NC,"Nash County",America/New_York,,NA,US,35.78,-78.2,6700 +27559,STANDARD,0,Moncure,,,NC,"Chatham County",America/New_York,,NA,US,35.62,-79.08,2230 +27560,STANDARD,0,Morrisville,,,NC,"Wake County",America/New_York,919,NA,US,35.83,-78.83,34640 +27562,STANDARD,0,"New Hill",,,NC,"Chatham County",America/New_York,,NA,US,35.64,-78.99,2960 +27563,STANDARD,0,Norlina,,,NC,"Warren County",America/New_York,252,NA,US,36.44,-78.19,3570 +27564,STANDARD,1,Creedmoor,,,NC,"Granville County",America/New_York,919,NA,US,36.11,-78.68,0 +27565,STANDARD,0,Oxford,,,NC,"Granville County",America/New_York,919,NA,US,36.31,-78.58,21140 +27568,"PO BOX",0,"Pine Level",,,NC,"Johnston County",America/New_York,,NA,US,35.51,-78.24,1374 +27569,STANDARD,0,Princeton,,,NC,"Johnston County",America/New_York,919,NA,US,35.46,-78.16,7580 +27570,"PO BOX",0,Ridgeway,,,NC,"Warren County",America/New_York,252,NA,US,36.42,-78.26,221 +27571,STANDARD,0,Rolesville,,,NC,"Wake County",America/New_York,919,NA,US,35.92,-78.45,8200 +27572,STANDARD,0,Rougemont,,,NC,"Person County",America/New_York,,NA,US,36.22,-78.93,6000 +27573,STANDARD,0,Roxboro,,,NC,"Person County",America/New_York,336,NA,US,36.4,-78.98,8740 +27574,STANDARD,0,Roxboro,,,NC,"Person County",America/New_York,"336,919",NA,US,36.41,-78.85,12170 +27576,STANDARD,0,Selma,,,NC,"Johnston County",America/New_York,919,NA,US,35.53,-78.28,14850 +27577,STANDARD,0,Smithfield,,,NC,"Johnston County",America/New_York,919,NA,US,35.5,-78.34,20440 +27581,STANDARD,0,Stem,,,NC,"Granville County",America/New_York,919,NA,US,36.19,-78.72,3400 +27582,"PO BOX",0,Stovall,,,NC,"Granville County",America/New_York,919,NA,US,36.47,-78.58,616 +27583,STANDARD,0,Timberlake,,,NC,"Person County",America/New_York,336,NA,US,36.28,-78.95,6650 +27584,"PO BOX",0,Townsville,,,NC,"Vance County",America/New_York,252,NA,US,36.5,-78.42,664 +27586,"PO BOX",0,Vaughan,,,NC,"Warren County",America/New_York,252,NA,US,36.44,-77.98,80 +27587,STANDARD,0,"Wake Forest",,,NC,"Wake County",America/New_York,919,NA,US,35.97,-78.52,69520 +27588,"PO BOX",0,"Wake Forest",,,NC,"Wake County",America/New_York,919,NA,US,35.97,-78.52,1043 +27589,STANDARD,0,Warrenton,,,NC,"Warren County",America/New_York,252,NA,US,36.4,-78.15,5350 +27591,STANDARD,0,Wendell,"Eagle Rock",,NC,"Wake County",America/New_York,919,NA,US,35.78,-78.36,21930 +27592,STANDARD,0,"Willow Spring",,"Kennebec, Willow Springs",NC,"Wake County",America/New_York,,NA,US,35.54,-78.66,16380 +27593,"PO BOX",0,"Wilsons Mills",,"Wilsons Mill",NC,"Johnston County",America/New_York,,NA,US,35.58,-78.35,608 +27594,"PO BOX",0,Wise,,,NC,"Warren County",America/New_York,252,NA,US,36.48,-78.18,347 +27596,STANDARD,0,Youngsville,,,NC,"Franklin County",America/New_York,919,NA,US,36.02,-78.47,17290 +27597,STANDARD,0,Zebulon,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.31,22890 +27599,UNIQUE,0,"Chapel Hill",,"Unc Chapel Hill Admin, Univ Of Nc, University Of Nc",NC,"Orange County",America/New_York,919,NA,US,35.92,-79.04,64 +27601,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.77,-78.63,6770 +27602,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,404 +27603,STANDARD,0,Raleigh,,Mccullers,NC,"Wake County",America/New_York,919,NA,US,35.66,-78.65,43030 +27604,STANDARD,0,Raleigh,Brentwood,"Wake Crossroads, Wilders Grove",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.56,38590 +27605,STANDARD,0,Raleigh,,"Cameron Village",NC,"Wake County",America/New_York,919,NA,US,35.79,-78.65,4530 +27606,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.74,-78.72,33360 +27607,STANDARD,0,Raleigh,,"Nc State University, Ncsu Student Housing, State University",NC,"Wake County",America/New_York,919,NA,US,35.81,-78.72,16260 +27608,STANDARD,0,Raleigh,,"Five Points",NC,"Wake County",America/New_York,919,NA,US,35.81,-78.65,10860 +27609,STANDARD,0,Raleigh,,"North Hills",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,31800 +27610,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.74,-78.55,61170 +27611,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,971 +27612,STANDARD,0,Raleigh,,"Crabtree Valley, Duraleigh",NC,"Wake County",America/New_York,919,NA,US,35.85,-78.71,34310 +27613,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.93,-78.71,44200 +27614,STANDARD,0,Raleigh,,"North Hills",NC,"Wake County",America/New_York,919,NA,US,35.95,-78.62,33840 +27615,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.9,-78.64,41020 +27616,STANDARD,0,Raleigh,Brentwood,,NC,"Wake County",America/New_York,919,NA,US,35.87,-78.54,49940 +27617,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.91,-78.77,17950 +27619,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,776 +27620,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,849 +27621,"PO BOX",1,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27622,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,456 +27623,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,103 +27624,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,706 +27625,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27626,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,29 +27627,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,318 +27628,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,158 +27629,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,561 +27634,UNIQUE,0,Raleigh,,"Nc Dept Revenue",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27635,UNIQUE,0,Raleigh,,"Nc Library",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27636,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,131 +27640,UNIQUE,0,Raleigh,,"Nc Dept Revenue",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27650,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,126 +27656,UNIQUE,0,Raleigh,,"Nationwide Ins Co",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27658,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,306 +27661,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,222 +27668,UNIQUE,0,Raleigh,,"National Info Syst Supt Cntr",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27675,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,341 +27676,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27690,UNIQUE,0,Raleigh,,"Raleigh Brm",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27695,UNIQUE,0,Raleigh,,"Nc State Univ",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,95 +27697,UNIQUE,0,Raleigh,,"Nc Dept Motor Vehicle",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27698,UNIQUE,0,Raleigh,,"Carolina Power And Light Co",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27699,UNIQUE,0,Raleigh,,"Nc Centralized Mailing",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,92 +27701,STANDARD,0,Durham,,"East Durham",NC,"Durham County",America/New_York,919,NA,US,36,-78.9,16870 +27702,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,932 +27703,STANDARD,0,Durham,,"East Durham",NC,"Durham County",America/New_York,919,NA,US,35.96,-78.81,53400 +27704,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,36.04,-78.83,33370 +27705,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,36.03,-78.98,36620 +27706,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,0 +27707,STANDARD,0,Durham,"Shannon Plaza",,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,37990 +27708,UNIQUE,0,Durham,,"Duke, Duke University",NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,309 +27709,"PO BOX",0,Durham,"Research Triangle Park, Rtp",,NC,"Durham County",America/New_York,919,NA,US,35.92,-78.83,747 +27710,UNIQUE,0,Durham,,"Duke Medical Ctr",NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,22 +27711,UNIQUE,0,Durham,"Research Triangle Park, Rtp","Environ Protect Agency, Research Triangle Pk",NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,0 +27712,STANDARD,0,Durham,"Eno Valley","North Durham",NC,"Durham County",America/New_York,919,NA,US,36.1,-78.9,20560 +27713,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.9,-78.92,47410 +27715,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,675 +27717,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,736 +27722,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,451 +27801,STANDARD,0,"Rocky Mount",,"Dortches, Rocky Mt",NC,"Edgecombe County",America/New_York,252,NA,US,35.91,-77.73,14740 +27802,"PO BOX",0,"Rocky Mount",,,NC,"Nash County",America/New_York,252,NA,US,35.95,-77.81,2175 +27803,STANDARD,0,"Rocky Mount",,,NC,"Nash County",America/New_York,252,NA,US,35.9,-77.86,17130 +27804,STANDARD,0,"Rocky Mount","Wesleyan Col, Wesleyan College",,NC,"Nash County",America/New_York,252,NA,US,35.95,-77.81,24390 +27805,STANDARD,0,Aulander,,,NC,"Hertford County",America/New_York,252,NA,US,36.22,-77.11,2630 +27806,STANDARD,0,Aurora,,Royal,NC,"Beaufort County",America/New_York,252,NA,US,35.3,-76.78,1670 +27807,STANDARD,0,Bailey,,,NC,"Nash County",America/New_York,252,NA,US,35.78,-78.11,6020 +27808,STANDARD,0,Bath,,,NC,"Beaufort County",America/New_York,252,NA,US,35.47,-76.81,2090 +27809,STANDARD,0,Battleboro,,Drake,NC,"Nash County",America/New_York,,NA,US,36.04,-77.75,3870 +27810,STANDARD,0,Belhaven,,,NC,"Beaufort County",America/New_York,252,NA,US,35.54,-76.62,2760 +27811,"PO BOX",0,Bellarthur,,,NC,"Pitt County",America/New_York,252,NA,US,35.57,-77.49,314 +27812,STANDARD,0,Bethel,,,NC,"Pitt County",America/New_York,252,NA,US,35.8,-77.37,1930 +27813,"PO BOX",0,"Black Creek",,,NC,"Wilson County",America/New_York,252,NA,US,35.63,-77.93,858 +27814,STANDARD,0,"Blounts Creek",,,NC,"Beaufort County",America/New_York,252,NA,US,35.36,-76.92,1330 +27815,UNIQUE,0,"Rocky Mount",,Qvc,NC,"Nash County",America/New_York,252,NA,US,35.92,-77.67,0 +27816,STANDARD,0,Castalia,,,NC,"Nash County",America/New_York,,NA,US,36.08,-78.05,2210 +27817,STANDARD,0,Chocowinity,,,NC,"Beaufort County",America/New_York,252,NA,US,35.51,-77.09,6500 +27818,STANDARD,0,Como,,,NC,"Hertford County",America/New_York,252,NA,US,36.49,-77.01,980 +27819,"PO BOX",0,Conetoe,,,NC,"Edgecombe County",America/New_York,252,NA,US,35.81,-77.45,613 +27820,STANDARD,0,Conway,Milwaukee,,NC,"Northampton County",America/New_York,252,NA,US,36.43,-77.22,2080 +27821,STANDARD,0,Edward,,,NC,"Beaufort County",America/New_York,252,NA,US,35.32,-76.89,220 +27822,STANDARD,0,"Elm City",,,NC,"Wilson County",America/New_York,252,NA,US,35.8,-77.86,7300 +27823,STANDARD,0,Enfield,,,NC,"Halifax County",America/New_York,252,NA,US,36.17,-77.66,5230 +27824,STANDARD,0,Engelhard,,,NC,"Hyde County",America/New_York,252,NA,US,35.54,-76.02,990 +27825,"PO BOX",0,Everetts,,,NC,"Martin County",America/New_York,252,NA,US,35.83,-77.17,299 +27826,STANDARD,0,Fairfield,,,NC,"Hyde County",America/New_York,,NA,US,35.57,-76.24,510 +27827,"PO BOX",0,Falkland,,,NC,"Pitt County",America/New_York,252,NA,US,35.7,-77.51,291 +27828,STANDARD,0,Farmville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.59,7210 +27829,STANDARD,0,Fountain,,,NC,"Pitt County",America/New_York,252,NA,US,35.67,-77.63,1440 +27830,STANDARD,0,Fremont,Eureka,,NC,"Wayne County",America/New_York,919,NA,US,35.54,-77.97,3670 +27831,STANDARD,0,Garysburg,Gumberry,,NC,"Northampton County",America/New_York,252,NA,US,36.44,-77.55,2160 +27832,STANDARD,0,Gaston,,,NC,"Northampton County",America/New_York,252,NA,US,36.49,-77.64,2270 +27833,"PO BOX",0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,615 +27834,STANDARD,0,Greenville,,"East Carolina Univ, East Carolina University, Pactolus",NC,"Pitt County",America/New_York,252,NA,US,35.66,-77.38,42820 +27835,"PO BOX",0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,1368 +27836,"PO BOX",0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,604 +27837,STANDARD,0,Grimesland,,,NC,"Pitt County",America/New_York,252,NA,US,35.56,-77.19,5400 +27839,STANDARD,0,Halifax,,,NC,"Halifax County",America/New_York,252,NA,US,36.32,-77.59,2050 +27840,STANDARD,0,Hamilton,,,NC,"Martin County",America/New_York,252,NA,US,35.94,-77.2,420 +27841,"PO BOX",0,Hassell,,,NC,"Martin County",America/New_York,252,NA,US,35.91,-77.28,213 +27842,STANDARD,0,Henrico,,,NC,"Northampton County",America/New_York,252,NA,US,36.53,-77.83,1160 +27843,STANDARD,0,Hobgood,,,NC,"Halifax County",America/New_York,,NA,US,36.02,-77.39,770 +27844,STANDARD,0,Hollister,,Essex,NC,"Halifax County",America/New_York,252,NA,US,36.25,-77.92,2200 +27845,STANDARD,0,Jackson,Lasker,,NC,"Northampton County",America/New_York,252,NA,US,36.39,-77.41,1220 +27846,STANDARD,0,Jamesville,,,NC,"Martin County",America/New_York,252,NA,US,35.81,-76.89,2450 +27847,STANDARD,0,Kelford,,,NC,"Bertie County",America/New_York,252,NA,US,36.18,-77.22,570 +27849,STANDARD,0,"Lewiston Woodville",Lewiston,Woodville,NC,"Bertie County",America/New_York,252,NA,US,36.11,-77.17,1170 +27850,STANDARD,0,Littleton,,,NC,"Halifax County",America/New_York,252,NA,US,36.43,-77.91,5100 +27851,STANDARD,0,Lucama,,Lunana,NC,"Wilson County",America/New_York,252,NA,US,35.64,-78,4540 +27852,STANDARD,0,Macclesfield,,"Old Sparta",NC,"Edgecombe County",America/New_York,252,NA,US,35.75,-77.67,2280 +27853,STANDARD,0,Margarettsville,Margarettsvl,Margaretsville,NC,"Northampton County",America/New_York,252,NA,US,36.53,-77.35,340 +27854,STANDARD,1,Milwaukee,,,NC,"Northampton County",America/New_York,252,NA,US,36.4,-77.23,0 +27855,STANDARD,0,Murfreesboro,,,NC,"Hertford County",America/New_York,252,NA,US,36.44,-77.09,4160 +27856,STANDARD,0,Nashville,Momeyer,,NC,"Nash County",America/New_York,252,NA,US,35.96,-77.95,14740 +27857,STANDARD,0,"Oak City",,,NC,"Martin County",America/New_York,252,NA,US,35.96,-77.3,910 +27858,STANDARD,0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,37920 +27860,STANDARD,0,Pantego,,,NC,"Beaufort County",America/New_York,252,NA,US,35.58,-76.65,1660 +27861,"PO BOX",0,Parmele,,,NC,"Martin County",America/New_York,252,NA,US,35.81,-77.32,129 +27862,STANDARD,0,Pendleton,,,NC,"Northampton County",America/New_York,252,NA,US,36.47,-77.19,540 +27863,STANDARD,0,Pikeville,,,NC,"Wayne County",America/New_York,919,NA,US,35.49,-77.98,11350 +27864,STANDARD,0,Pinetops,,,NC,"Edgecombe County",America/New_York,252,NA,US,35.79,-77.63,3800 +27865,STANDARD,0,Pinetown,,,NC,"Beaufort County",America/New_York,252,NA,US,35.66,-76.85,1570 +27866,STANDARD,0,"Pleasant Hill",,,NC,"Northampton County",America/New_York,252,NA,US,36.51,-77.54,560 +27867,"PO BOX",0,Potecasi,,,NC,"Northampton County",America/New_York,252,NA,US,36.36,-77.23,219 +27868,"PO BOX",0,"Red Oak",,,NC,"Nash County",America/New_York,252,NA,US,36.03,-77.9,528 +27869,STANDARD,0,"Rich Square",,,NC,"Northampton County",America/New_York,252,NA,US,36.27,-77.28,1540 +27870,STANDARD,0,"Roanoke Rapids","Roanoke Rapid, Roanoke Rapids Air Force Sta, Ronok Rpd Afs",,NC,"Halifax County",America/New_York,252,NA,US,36.45,-77.65,21220 +27871,STANDARD,0,Robersonville,,"Bear Grass",NC,"Martin County",America/New_York,252,NA,US,35.82,-77.25,3430 +27872,STANDARD,0,Roxobel,,,NC,"Bertie County",America/New_York,252,NA,US,36.2,-77.23,310 +27873,"PO BOX",0,Saratoga,,,NC,"Wilson County",America/New_York,252,NA,US,35.65,-77.77,574 +27874,STANDARD,0,"Scotland Neck",,,NC,"Halifax County",America/New_York,252,NA,US,36.13,-77.42,3340 +27875,STANDARD,0,Scranton,,,NC,"Hyde County",America/New_York,,NA,US,35.46,-76.5,310 +27876,STANDARD,0,Seaboard,,,NC,"Northampton County",America/New_York,252,NA,US,36.49,-77.44,900 +27877,"PO BOX",0,Severn,,,NC,"Northampton County",America/New_York,252,NA,US,36.51,-77.18,326 +27878,"PO BOX",0,Sharpsburg,,,NC,"Nash County",America/New_York,252,NA,US,35.86,-77.83,2736 +27879,"PO BOX",0,Simpson,,,NC,"Pitt County",America/New_York,252,NA,US,35.57,-77.28,425 +27880,STANDARD,0,Sims,,,NC,"Wilson County",America/New_York,252,NA,US,35.76,-78.05,3120 +27881,"PO BOX",0,Speed,,,NC,"Edgecombe County",America/New_York,252,NA,US,35.98,-77.44,128 +27882,STANDARD,0,"Spring Hope",,,NC,"Nash County",America/New_York,252,NA,US,35.94,-78.1,6360 +27883,STANDARD,0,Stantonsburg,,,NC,"Wilson County",America/New_York,252,NA,US,35.6,-77.82,3050 +27884,STANDARD,0,Stokes,,,NC,"Pitt County",America/New_York,252,NA,US,35.71,-77.27,1290 +27885,STANDARD,0,Swanquarter,,,NC,"Hyde County",America/New_York,252,NA,US,35.4,-76.27,780 +27886,STANDARD,0,Tarboro,"Leggett, Princeville",,NC,"Edgecombe County",America/New_York,252,NA,US,35.9,-77.55,15780 +27887,"PO BOX",0,Tillery,,,NC,"Halifax County",America/New_York,252,NA,US,36.25,-77.48,163 +27888,STANDARD,0,Walstonburg,,,NC,"Greene County",America/New_York,252,NA,US,35.59,-77.69,2140 +27889,STANDARD,0,Washington,,Wash,NC,"Beaufort County",America/New_York,252,NA,US,35.55,-77.05,23160 +27890,STANDARD,0,Weldon,,,NC,"Halifax County",America/New_York,252,NA,US,36.42,-77.6,1760 +27891,STANDARD,0,Whitakers,,,NC,"Nash County",America/New_York,252,NA,US,36.1,-77.71,4190 +27892,STANDARD,0,Williamston,"Bear Grass, Beargrass",,NC,"Martin County",America/New_York,252,NA,US,35.85,-77.05,11550 +27893,STANDARD,0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.73,-77.92,30310 +27894,"PO BOX",0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.73,-77.92,1581 +27895,"PO BOX",0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.73,-77.92,835 +27896,STANDARD,0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.79,-77.98,18950 +27897,STANDARD,0,Woodland,George,,NC,"Northampton County",America/New_York,252,NA,US,36.33,-77.21,1120 +27906,"PO BOX",0,"Elizabeth City","Elizabeth Cty",,NC,"Pasquotank County",America/New_York,252,NA,US,36.29,-76.22,955 +27907,"PO BOX",0,"Elizabeth City","Elizabeth Cty",,NC,"Pasquotank County",America/New_York,252,NA,US,36.29,-76.22,252 +27909,STANDARD,0,"Elizabeth City","Elizabeth Cty","Eliz City, Elizabeth City Coast Guard A",NC,"Pasquotank County",America/New_York,252,NA,US,36.29,-76.22,33100 +27910,STANDARD,0,Ahoskie,,,NC,"Hertford County",America/New_York,252,NA,US,36.28,-76.98,8300 +27915,"PO BOX",0,Avon,,Kinnakeet,NC,"Dare County",America/New_York,252,NA,US,35.43,-75.49,786 +27916,STANDARD,0,Aydlett,,,NC,"Currituck County",America/New_York,252,NA,US,36.32,-75.9,750 +27917,STANDARD,0,Barco,,,NC,"Currituck County",America/New_York,252,NA,US,36.39,-75.97,600 +27919,STANDARD,0,Belvidere,,,NC,"Perquimans County",America/New_York,252,NA,US,36.26,-76.53,990 +27920,"PO BOX",0,Buxton,,"Cape Hatteras Naval Facility",NC,"Dare County",America/New_York,252,NA,US,35.24,-75.53,1518 +27921,STANDARD,0,Camden,,,NC,"Camden County",America/New_York,252,NA,US,36.32,-76.16,4640 +27922,STANDARD,0,Cofield,,,NC,"Hertford County",America/New_York,252,NA,US,36.35,-76.9,630 +27923,STANDARD,0,Coinjock,,,NC,"Currituck County",America/New_York,252,NA,US,36.34,-75.95,550 +27924,STANDARD,0,Colerain,,,NC,"Bertie County",America/New_York,252,NA,US,36.2,-76.76,2200 +27925,STANDARD,0,Columbia,,,NC,"Tyrrell County",America/New_York,252,NA,US,35.91,-76.25,2960 +27926,STANDARD,0,Corapeake,,,NC,"Gates County",America/New_York,252,NA,US,36.53,-76.57,1320 +27927,STANDARD,0,Corolla,,,NC,"Currituck County",America/New_York,252,NA,US,36.37,-75.83,1080 +27928,STANDARD,0,Creswell,,,NC,"Washington County",America/New_York,252,NA,US,35.87,-76.39,1470 +27929,STANDARD,0,Currituck,,,NC,"Currituck County",America/New_York,252,NA,US,36.44,-76.01,1690 +27930,"PO BOX",0,Hertford,,,NC,"Perquimans County",America/New_York,252,NA,US,36.18,-76.33,0 +27932,STANDARD,0,Edenton,,,NC,"Chowan County",America/New_York,252,NA,US,36.05,-76.6,10180 +27935,STANDARD,0,Eure,,,NC,"Gates County",America/New_York,252,NA,US,36.42,-76.85,1260 +27936,"PO BOX",0,Frisco,,,NC,"Dare County",America/New_York,252,NA,US,35.24,-75.58,688 +27937,STANDARD,0,Gates,,,NC,"Gates County",America/New_York,252,NA,US,36.5,-76.76,3130 +27938,STANDARD,0,Gatesville,,,NC,"Gates County",America/New_York,252,NA,US,36.4,-76.75,1090 +27939,STANDARD,0,Grandy,,,NC,"Currituck County",America/New_York,252,NA,US,36.24,-75.87,2370 +27941,STANDARD,0,Harbinger,,,NC,"Currituck County",America/New_York,252,NA,US,36.1,-75.81,540 +27942,STANDARD,0,Harrellsville,,,NC,"Hertford County",America/New_York,252,NA,US,36.3,-76.79,570 +27943,"PO BOX",0,Hatteras,,,NC,"Dare County",America/New_York,252,NA,US,35.22,-75.68,675 +27944,STANDARD,0,Hertford,,,NC,"Perquimans County",America/New_York,252,NA,US,36.18,-76.47,9710 +27946,STANDARD,0,Hobbsville,,,NC,"Gates County",America/New_York,252,NA,US,36.34,-76.6,990 +27947,STANDARD,0,Jarvisburg,,,NC,"Currituck County",America/New_York,252,NA,US,36.2,-75.86,900 +27948,STANDARD,0,"Kill Devil Hills","Kill Devil Hl",,NC,"Dare County",America/New_York,252,NA,US,36.01,-75.66,11180 +27949,STANDARD,0,"Kitty Hawk","Duck, Southern Shores, Southrn Shore",Collington,NC,"Dare County",America/New_York,252,NA,US,36.07,-75.71,8120 +27950,STANDARD,0,"Knotts Island",,Woodleigh,NC,"Currituck County",America/New_York,252,NA,US,36.51,-75.91,1630 +27953,STANDARD,0,"Manns Harbor","East Lake",,NC,"Dare County",America/New_York,252,NA,US,35.81,-75.91,830 +27954,STANDARD,0,Manteo,,"Cape Hatteras National Seash, Fort Raleigh City, Fort Raleigh National Histor, Wright Brothers National Mem",NC,"Dare County",America/New_York,252,NA,US,35.89,-75.66,6040 +27956,STANDARD,0,Maple,,,NC,"Currituck County",America/New_York,252,NA,US,36.41,-76,310 +27957,STANDARD,0,"Merry Hill",,,NC,"Bertie County",America/New_York,252,NA,US,36.01,-76.77,1190 +27958,STANDARD,0,Moyock,,,NC,"Currituck County",America/New_York,252,NA,US,36.48,-76.13,11420 +27959,STANDARD,0,"Nags Head",,,NC,"Dare County",America/New_York,252,NA,US,35.94,-75.62,2810 +27960,"PO BOX",0,Ocracoke,,Portsmouth,NC,"Hyde County",America/New_York,252,NA,US,35.07,-76,827 +27962,STANDARD,0,Plymouth,,,NC,"Washington County",America/New_York,252,NA,US,35.86,-76.74,5520 +27964,STANDARD,0,"Point Harbor",,,NC,"Currituck County",America/New_York,252,NA,US,36.08,-75.8,500 +27965,STANDARD,0,"Poplar Branch",,,NC,"Currituck County",America/New_York,252,NA,US,36.28,-75.89,460 +27966,STANDARD,0,"Powells Point",,,NC,"Currituck County",America/New_York,252,NA,US,36.15,-75.85,1120 +27967,"PO BOX",0,Powellsville,,,NC,"Bertie County",America/New_York,252,NA,US,36.23,-76.9,777 +27968,"PO BOX",0,Rodanthe,,,NC,"Dare County",America/New_York,252,NA,US,35.73,-75.51,435 +27969,"PO BOX",0,Roduco,,,NC,"Gates County",America/New_York,252,NA,US,36.46,-76.81,78 +27970,STANDARD,0,Roper,,,NC,"Washington County",America/New_York,252,NA,US,35.87,-76.61,2430 +27972,"PO BOX",0,Salvo,,,NC,"Dare County",America/New_York,252,NA,US,35.55,-75.47,77 +27973,STANDARD,0,Shawboro,,,NC,"Currituck County",America/New_York,252,NA,US,36.4,-76.09,1430 +27974,STANDARD,0,Shiloh,,,NC,"Camden County",America/New_York,252,NA,US,36.27,-76.08,1030 +27976,STANDARD,0,"South Mills",,,NC,"Camden County",America/New_York,252,NA,US,36.44,-76.32,3540 +27978,STANDARD,0,"Stumpy Point",,,NC,"Dare County",America/New_York,252,NA,US,35.73,-75.74,116 +27979,STANDARD,0,Sunbury,,,NC,"Gates County",America/New_York,252,NA,US,36.44,-76.6,1210 +27980,STANDARD,0,Tyner,,,NC,"Chowan County",America/New_York,252,NA,US,36.25,-76.63,1780 +27981,STANDARD,0,Wanchese,,,NC,"Dare County",America/New_York,252,NA,US,35.83,-75.64,1450 +27982,"PO BOX",0,Waves,,,NC,"Dare County",America/New_York,252,NA,US,35.57,-75.47,56 +27983,STANDARD,0,Windsor,Askewville,,NC,"Bertie County",America/New_York,252,NA,US,36,-76.94,6240 +27985,"PO BOX",0,Winfall,,,NC,"Perquimans County",America/New_York,252,NA,US,36.21,-76.45,380 +27986,STANDARD,0,Winton,,,NC,"Hertford County",America/New_York,252,NA,US,36.38,-76.93,910 +28001,STANDARD,0,Albemarle,,"Millingport, North Albemarle, Palestine, Plyler, River Haven, South Albemarle",NC,"Stanly County",America/New_York,"704,980",NA,US,35.36,-80.19,21510 +28002,"PO BOX",0,Albemarle,,,NC,"Stanly County",America/New_York,704,NA,US,35.36,-80.19,1663 +28006,STANDARD,0,Alexis,,,NC,"Gaston County",America/New_York,,NA,US,35.41,-81.09,1060 +28007,"PO BOX",0,Ansonville,,,NC,"Anson County",America/New_York,704,NA,US,35.1,-80.1,808 +28009,"PO BOX",0,Badin,,"Badin Air National Guard Sta",NC,"Stanly County",America/New_York,704,NA,US,35.4,-80.11,1521 +28010,"PO BOX",0,"Barium Springs","Barium Spngs",,NC,"Iredell County",America/New_York,704,NA,US,35.72,-80.9,219 +28012,STANDARD,0,Belmont,,"Catawba Heights",NC,"Gaston County",America/New_York,"704,980",NA,US,35.24,-81.04,21650 +28016,STANDARD,0,"Bessemer City",,,NC,"Gaston County",America/New_York,"704,980",NA,US,35.28,-81.28,10830 +28017,"PO BOX",0,"Boiling Springs","Boiling Spgs",,NC,"Cleveland County",America/New_York,704,NA,US,35.25,-81.67,1741 +28018,STANDARD,0,Bostic,"Golden Valley","Bostic Yard, Corinth, Golden, Sunshine, Washburn Store",NC,"Rutherford County",America/New_York,828,NA,US,35.36,-81.83,4240 +28019,"PO BOX",0,Caroleen,,,NC,"Rutherford County",America/New_York,828,NA,US,35.28,-81.79,739 +28020,STANDARD,0,Casar,,,NC,"Cleveland County",America/New_York,704,NA,US,35.51,-81.61,2020 +28021,STANDARD,0,Cherryville,,Flay,NC,"Gaston County",America/New_York,704,NA,US,35.38,-81.38,11000 +28023,STANDARD,0,"China Grove",Kannapolis,,NC,"Rowan County",America/New_York,704,NA,US,35.57,-80.58,13740 +28024,"PO BOX",0,Cliffside,,,NC,"Rutherford County",America/New_York,828,NA,US,35.23,-81.77,710 +28025,STANDARD,0,Concord,Kannapolis,"Flowes Store, North Concord, Sidestown, Stonewall Jackson Training S",NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.4,-80.59,49300 +28026,"PO BOX",0,Concord,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.4,-80.59,858 +28027,STANDARD,0,Concord,Kannapolis,,NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.41,-80.68,66820 +28031,STANDARD,0,Cornelius,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.48,-80.86,28180 +28032,STANDARD,0,Cramerton,,,NC,"Gaston County",America/New_York,704,NA,US,35.23,-81.08,2930 +28033,STANDARD,0,Crouse,,,NC,"Lincoln County",America/New_York,704,NA,US,35.42,-81.3,2690 +28034,STANDARD,0,Dallas,,,NC,"Gaston County",America/New_York,704,NA,US,35.31,-81.17,15910 +28035,"PO BOX",0,Davidson,,"Davidson College",NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.5,-80.83,56 +28036,STANDARD,0,Davidson,Kannapolis,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.49,-80.84,18230 +28037,STANDARD,0,Denver,,,NC,"Lincoln County",America/New_York,"704,980",NA,US,35.53,-81.03,23430 +28038,"PO BOX",0,Earl,,,NC,"Cleveland County",America/New_York,704,NA,US,35.19,-81.53,780 +28039,"PO BOX",0,"East Spencer",,,NC,"Rowan County",America/New_York,,NA,US,35.68,-80.44,1104 +28040,STANDARD,0,Ellenboro,,"Dobbinsville, Hollis",NC,"Rutherford County",America/New_York,"704,828,980",NA,US,35.32,-81.75,5880 +28041,"PO BOX",0,Faith,,,NC,"Rowan County",America/New_York,,NA,US,35.58,-80.46,1369 +28042,"PO BOX",0,Fallston,,,NC,"Cleveland County",America/New_York,704,NA,US,35.42,-81.5,1015 +28043,STANDARD,0,"Forest City","Alexander Mills, Alexander Mls",,NC,"Rutherford County",America/New_York,828,NA,US,35.33,-81.86,15930 +28052,STANDARD,0,Gastonia,,"Boogertown, Crowders, Groves, Pinkney, Ridge, Smyre, South Gastonia, Victory",NC,"Gaston County",America/New_York,"704,980",NA,US,35.21,-81.23,28030 +28053,"PO BOX",0,Gastonia,,,NC,"Gaston County",America/New_York,704,NA,US,35.25,-81.17,1072 +28054,STANDARD,0,Gastonia,,"Ragan Village, Ranlo, Spencer Mountain",NC,"Gaston County",America/New_York,"704,980",NA,US,35.25,-81.17,32380 +28055,"PO BOX",0,Gastonia,,,NC,"Gaston County",America/New_York,704,NA,US,35.25,-81.17,404 +28056,STANDARD,0,Gastonia,,,NC,"Gaston County",America/New_York,"704,980",NA,US,35.22,-81.13,30630 +28070,"PO BOX",0,Huntersville,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.41,-80.84,1634 +28071,STANDARD,0,"Gold Hill",,,NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.52,-80.33,2620 +28072,"PO BOX",0,"Granite Quarry","Granite Qry",,NC,"Rowan County",America/New_York,,NA,US,35.61,-80.44,1469 +28073,STANDARD,0,Grover,,,NC,"Cleveland County",America/New_York,704,NA,US,35.17,-81.45,4270 +28074,"PO BOX",0,Harris,,,NC,"Rutherford County",America/New_York,828,NA,US,35.24,-81.87,367 +28075,STANDARD,0,Harrisburg,,,NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.32,-80.66,20740 +28076,"PO BOX",0,Henrietta,,,NC,"Rutherford County",America/New_York,828,NA,US,35.26,-81.79,986 +28077,"PO BOX",0,"High Shoals",,,NC,"Gaston County",America/New_York,704,NA,US,35.4,-81.2,609 +28078,STANDARD,0,Huntersville,,"Caldwell, Hicks Crossroads, Long Creek",NC,"Mecklenburg County",America/New_York,704,NA,US,35.41,-80.84,61680 +28079,STANDARD,0,"Indian Trail","Lake Park","Hemby, Hemby Bridge, Indian Trl",NC,"Union County",America/New_York,704,NA,US,35.07,-80.67,37000 +28080,STANDARD,0,"Iron Station",,,NC,"Lincoln County",America/New_York,704,NA,US,35.44,-81.15,7210 +28081,STANDARD,0,Kannapolis,,"Centerview, Fisher Town, Glass, Royal Oaks, Shady Brook",NC,"Cabarrus County",America/New_York,704,NA,US,35.5,-80.67,24070 +28082,"PO BOX",0,Kannapolis,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.49,-80.62,788 +28083,STANDARD,0,Kannapolis,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.49,-80.62,21620 +28086,STANDARD,0,"Kings Mountain","Kings Mtn",,NC,"Cleveland County",America/New_York,"704,980",NA,US,35.24,-81.34,23510 +28088,STANDARD,0,Landis,,,NC,"Rowan County",America/New_York,,NA,US,35.54,-80.61,2930 +28089,"PO BOX",0,Lattimore,,,NC,"Cleveland County",America/New_York,704,NA,US,35.32,-81.66,469 +28090,STANDARD,0,Lawndale,,"Belwood, Delight, Double Shoals, Toluca",NC,"Cleveland County",America/New_York,704,NA,US,35.41,-81.56,6290 +28091,STANDARD,0,Lilesville,,,NC,"Anson County",America/New_York,704,NA,US,34.96,-79.98,1650 +28092,STANDARD,0,Lincolnton,"Boger City",,NC,"Lincoln County",America/New_York,"704,980",NA,US,35.47,-81.24,32080 +28093,"PO BOX",0,Lincolnton,,,NC,"Lincoln County",America/New_York,704,NA,US,35.47,-81.24,1540 +28097,STANDARD,0,Locust,,"Western Hills",NC,"Stanly County",America/New_York,"704,980",NA,US,35.25,-80.43,6110 +28098,STANDARD,0,Lowell,,,NC,"Gaston County",America/New_York,"704,980",NA,US,35.26,-81.1,3370 +28101,STANDARD,0,"Mc Adenville",,,NC,"Gaston County",America/New_York,704,NA,US,35.26,-81.08,800 +28102,"PO BOX",0,"Mc Farlan",,,NC,"Anson County",America/New_York,704,NA,US,34.81,-79.97,128 +28103,STANDARD,0,Marshville,,"Olive Branch",NC,"Union County",America/New_York,704,NA,US,34.98,-80.36,9120 +28104,STANDARD,0,Matthews,"Stallings, Weddington, Wesley Chapel",,NC,"Union County",America/New_York,"704,980",NA,US,35.06,-80.69,33060 +28105,STANDARD,0,Matthews,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.12,-80.71,40420 +28106,"PO BOX",0,Matthews,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.12,-80.71,1256 +28107,STANDARD,0,Midland,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.22,-80.5,8070 +28108,"PO BOX",0,"Mineral Springs","Mineral Spgs",,NC,"Union County",America/New_York,704,NA,US,34.93,-80.68,579 +28109,"PO BOX",0,Misenheimer,,,NC,"Stanly County",America/New_York,704,NA,US,35.48,-80.28,267 +28110,STANDARD,0,Monroe,Unionville,,NC,"Union County",America/New_York,"704,980",NA,US,35.07,-80.52,48030 +28111,"PO BOX",0,Monroe,,,NC,"Union County",America/New_York,704,NA,US,34.98,-80.54,2008 +28112,STANDARD,0,Monroe,,,NC,"Union County",America/New_York,"704,980",NA,US,34.98,-80.54,23430 +28114,STANDARD,0,Mooresboro,,,NC,"Rutherford County",America/New_York,"704,828",NA,US,35.23,-81.75,5280 +28115,STANDARD,0,Mooresville,,"Doolie, Mayhew, Mazeppa",NC,"Iredell County",America/New_York,"704,980",NA,US,35.57,-80.81,38130 +28117,STANDARD,0,Mooresville,,,NC,"Iredell County",America/New_York,"704,980",NA,US,35.57,-80.9,42630 +28119,STANDARD,0,Morven,,,NC,"Anson County",America/New_York,704,NA,US,34.86,-80,2000 +28120,STANDARD,0,"Mount Holly","Mt Holly",,NC,"Gaston County",America/New_York,704,NA,US,35.3,-81.03,20840 +28123,"PO BOX",0,"Mount Mourne",Mooresville,"Mt Mourne",NC,"Iredell County",America/New_York,704,NA,US,35.53,-80.86,360 +28124,STANDARD,0,"Mount Pleasant","Mt Pleasant",,NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.4,-80.43,6200 +28125,STANDARD,0,"Mount Ulla",,"Bear Poplar, Mt Ulla",NC,"Rowan County",America/New_York,,NA,US,35.65,-80.72,2430 +28126,"PO BOX",0,Newell,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.27,-80.73,280 +28127,STANDARD,0,"New London","Badin Lake","Nw London",NC,"Stanly County",America/New_York,"336,704",NA,US,35.44,-80.21,5600 +28128,STANDARD,0,Norwood,,"Aquadale, Cottonville, Porter",NC,"Stanly County",America/New_York,"980,704",NA,US,35.22,-80.12,6230 +28129,STANDARD,0,Oakboro,"Red Cross","Frog Pond",NC,"Stanly County",America/New_York,704,NA,US,35.22,-80.32,4930 +28130,"PO BOX",0,"Paw Creek",,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.27,-80.93,360 +28133,STANDARD,0,Peachland,,"Fountain Hill, White Store",NC,"Anson County",America/New_York,704,NA,US,34.99,-80.26,2200 +28134,STANDARD,0,Pineville,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.08,-80.88,10760 +28135,STANDARD,0,Polkton,,,NC,"Anson County",America/New_York,"704,980",NA,US,35,-80.2,2950 +28136,"PO BOX",0,Polkville,Shelby,,NC,"Cleveland County",America/New_York,704,NA,US,35.41,-81.64,767 +28137,STANDARD,0,Richfield,,Pooletown,NC,"Stanly County",America/New_York,"336,704",NA,US,35.47,-80.25,2540 +28138,STANDARD,0,Rockwell,,,NC,"Rowan County",America/New_York,"704,980",NA,US,35.55,-80.4,9250 +28139,STANDARD,0,Rutherfordton,,"Gilkey, Logan Station, Ruth, Shingle Hollow, Westminster",NC,"Rutherford County",America/New_York,828,NA,US,35.36,-81.96,15520 +28144,STANDARD,0,Salisbury,"East Spencer","Correll Park",NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.66,-80.48,18790 +28145,"PO BOX",0,Salisbury,,,NC,"Rowan County",America/New_York,704,NA,US,35.66,-80.48,1801 +28146,STANDARD,0,Salisbury,"Granite Qry, Granite Quarry",,NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.62,-80.39,24600 +28147,STANDARD,0,Salisbury,,,NC,"Rowan County",America/New_York,"704,980",NA,US,35.68,-80.56,21550 +28150,STANDARD,0,Shelby,Kingstown,"Patterson Springs",NC,"Cleveland County",America/New_York,"704,980",NA,US,35.28,-81.54,22270 +28151,"PO BOX",0,Shelby,,,NC,"Cleveland County",America/New_York,704,NA,US,35.28,-81.54,2055 +28152,STANDARD,0,Shelby,,,NC,"Cleveland County",America/New_York,"980,704",NA,US,35.24,-81.6,19640 +28159,STANDARD,0,Spencer,,,NC,"Rowan County",America/New_York,336,NA,US,35.69,-80.43,2600 +28160,STANDARD,0,Spindale,,,NC,"Rutherford County",America/New_York,828,NA,US,35.36,-81.92,2970 +28163,STANDARD,0,Stanfield,,,NC,"Stanly County",America/New_York,704,NA,US,35.23,-80.42,4660 +28164,STANDARD,0,Stanley,,Lowesville,NC,"Gaston County",America/New_York,"704,980",NA,US,35.35,-81.09,13500 +28166,STANDARD,0,Troutman,,"Bells Cross Roads",NC,"Iredell County",America/New_York,"704,980",NA,US,35.7,-80.89,9180 +28167,STANDARD,0,"Union Mills",,,NC,"Rutherford County",America/New_York,828,NA,US,35.49,-81.96,1980 +28168,STANDARD,0,Vale,,,NC,"Lincoln County",America/New_York,704,NA,US,35.53,-81.39,8860 +28169,"PO BOX",0,Waco,,,NC,"Cleveland County",America/New_York,704,NA,US,35.36,-81.42,776 +28170,STANDARD,0,Wadesboro,,,NC,"Anson County",America/New_York,"704,980",NA,US,34.96,-80.06,8820 +28173,STANDARD,0,Waxhaw,Marvin,,NC,"Union County",America/New_York,704,NA,US,34.92,-80.74,61240 +28174,STANDARD,0,Wingate,,,NC,"Union County",America/New_York,704,NA,US,34.98,-80.44,6980 +28201,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,32 +28202,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.23,-80.84,11310 +28203,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.21,-80.86,15000 +28204,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.21,-80.83,6970 +28205,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.22,-80.79,38300 +28206,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.26,-80.82,10640 +28207,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,8590 +28208,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.23,-80.91,31580 +28209,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.18,-80.85,19870 +28210,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.13,-80.86,39700 +28211,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.17,-80.8,28280 +28212,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.74,33220 +28213,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.29,-80.73,35970 +28214,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.28,-80.97,37580 +28215,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.24,-80.69,52790 +28216,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.31,-80.89,47540 +28217,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.17,-80.91,23470 +28218,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,290 +28219,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,302 +28220,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,406 +28221,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,273 +28222,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,363 +28223,UNIQUE,0,Charlotte,,"Unc Charlotte",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,86 +28224,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,675 +28226,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.1,-80.82,37170 +28227,STANDARD,0,Charlotte,"Mint Hill",,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.65,51710 +28228,UNIQUE,0,Charlotte,,"United States Postal Service",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,43 +28229,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,556 +28230,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,150 +28231,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,131 +28232,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,162 +28233,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,202 +28234,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,129 +28235,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,105 +28236,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,153 +28237,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,75 +28241,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,1082 +28242,UNIQUE,0,Charlotte,,"Duke Power Co",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28243,UNIQUE,0,Charlotte,,AT&T,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28244,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.22,-80.84,0 +28246,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.83,0 +28247,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,620 +28250,UNIQUE,1,Charlotte,,"Charlotte Water Dept",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28253,UNIQUE,0,Charlotte,,Gmac,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28254,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28255,UNIQUE,0,Charlotte,,"Bank Of America, Nc Natl Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,249 +28256,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,876 +28258,UNIQUE,0,Charlotte,,"Branch Bank And Trust (Bb&T)",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28260,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28262,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.32,-80.74,33580 +28263,UNIQUE,0,Charlotte,,"First Citizens Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.21,-80.69,17 +28265,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28266,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,475 +28269,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.34,-80.8,72430 +28270,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.11,-80.76,32450 +28271,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.22,-80.84,417 +28272,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28273,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.13,-80.95,35190 +28274,UNIQUE,0,Charlotte,,"Queens College",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,26 +28275,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28277,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.05,-80.82,69800 +28278,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.13,-81.01,29310 +28280,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.23,-80.84,0 +28281,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.83,0 +28282,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.22,-80.85,54 +28284,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28285,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.83,0 +28287,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28288,UNIQUE,0,Charlotte,,"Wachovia Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,241 +28289,UNIQUE,0,Charlotte,,"Branch Bank And Trust (Bb&T)",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28290,UNIQUE,0,Charlotte,,"Jp Morgan Chase",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28296,UNIQUE,0,Charlotte,,"Wachovia Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28297,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,314 +28299,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,244 +28301,STANDARD,0,Fayetteville,"E Fayetteville, E Fayettevlle, East Fayetteville","E Fayettevill, Eastover, Fay, Vander",NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.87,11260 +28302,"PO BOX",0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.87,1007 +28303,STANDARD,0,Fayetteville,,Eutaw,NC,"Cumberland County",America/New_York,910,NA,US,35.09,-78.96,26200 +28304,STANDARD,0,Fayetteville,,Lafayette,NC,"Cumberland County",America/New_York,910,NA,US,35.03,-78.99,31330 +28305,STANDARD,0,Fayetteville,,Haymount,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.91,5230 +28306,STANDARD,0,Fayetteville,,"Fayetteville Municipal Airpo, Lakedale",NC,"Bladen County",America/New_York,910,NA,US,34.96,-78.9,39020 +28307,STANDARD,0,"Fort Bragg",Fayetteville,,NC,"Cumberland County",America/New_York,910,NA,US,35.13,-79,13540 +28308,STANDARD,0,"Pope Army Airfield","Fayetteville, Pope Army Af",,NC,"Cumberland County",America/New_York,910,NA,US,35.17,-79.02,705 +28309,"PO BOX",0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.87,694 +28310,UNIQUE,0,"Fort Bragg",,"Fort Bragg Military",NC,"Cumberland County",America/New_York,,NA,US,35.16,-79.04,6506 +28311,STANDARD,0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.17,-78.89,30690 +28312,STANDARD,0,Fayetteville,Eastover,,NC,"Cumberland County",America/New_York,910,NA,US,34.93,-78.72,17050 +28314,STANDARD,0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-79.03,48330 +28315,STANDARD,0,Aberdeen,,,NC,"Moore County",America/New_York,910,NA,US,35.13,-79.42,11140 +28318,STANDARD,0,Autryville,,,NC,"Sampson County",America/New_York,910,NA,US,34.99,-78.64,3990 +28319,"PO BOX",0,Barnesville,,,NC,"Robeson County",America/New_York,910,NA,US,34.4,-79.04,54 +28320,STANDARD,0,Bladenboro,Butters,,NC,"Bladen County",America/New_York,910,NA,US,34.53,-78.79,6200 +28323,STANDARD,0,Bunnlevel,,,NC,"Harnett County",America/New_York,,NA,US,35.31,-78.83,4010 +28325,"PO BOX",0,Calypso,,,NC,"Duplin County",America/New_York,910,NA,US,35.15,-78.1,580 +28326,STANDARD,0,Cameron,,,NC,"Harnett County",America/New_York,919,NA,US,35.32,-79.25,22370 +28327,STANDARD,0,Carthage,"Whisper Pnes, Whispering Pines",,NC,"Moore County",America/New_York,910,NA,US,35.34,-79.41,16320 +28328,STANDARD,0,Clinton,,,NC,"Sampson County",America/New_York,910,NA,US,35,-78.33,21010 +28329,"PO BOX",0,Clinton,,,NC,"Sampson County",America/New_York,910,NA,US,35,-78.33,2914 +28330,"PO BOX",0,Cordova,,,NC,"Richmond County",America/New_York,910,NA,US,34.91,-79.82,875 +28331,"PO BOX",0,Cumberland,,,NC,"Cumberland County",America/New_York,910,NA,US,35.03,-79.01,434 +28332,"PO BOX",0,Dublin,,,NC,"Bladen County",America/New_York,910,NA,US,34.66,-78.74,800 +28333,STANDARD,0,Dudley,,,NC,"Wayne County",America/New_York,919,NA,US,35.27,-78.03,9420 +28334,STANDARD,0,Dunn,,,NC,"Sampson County",America/New_York,910,NA,US,35.31,-78.61,19890 +28335,"PO BOX",0,Dunn,,,NC,"Harnett County",America/New_York,910,NA,US,35.31,-78.61,1695 +28337,STANDARD,0,Elizabethtown,,"White Lake",NC,"Bladen County",America/New_York,910,NA,US,34.62,-78.61,7890 +28338,STANDARD,0,Ellerbe,,,NC,"Richmond County",America/New_York,910,NA,US,35.07,-79.76,3300 +28339,STANDARD,0,Erwin,,,NC,"Harnett County",America/New_York,910,NA,US,35.32,-78.67,5440 +28340,STANDARD,0,Fairmont,,Raynham,NC,"Robeson County",America/New_York,910,NA,US,34.49,-79.11,7560 +28341,STANDARD,0,Faison,,,NC,"Duplin County",America/New_York,910,NA,US,35.11,-78.13,3540 +28342,"PO BOX",0,Falcon,,,NC,"Cumberland County",America/New_York,910,NA,US,35.19,-78.64,411 +28343,STANDARD,0,Gibson,,,NC,"Scotland County",America/New_York,910,NA,US,34.75,-79.6,1200 +28344,STANDARD,0,Godwin,,,NC,"Sampson County",America/New_York,910,NA,US,35.21,-78.68,2720 +28345,STANDARD,0,Hamlet,,,NC,"Richmond County",America/New_York,910,NA,US,34.88,-79.7,9610 +28347,STANDARD,0,Hoffman,,,NC,"Richmond County",America/New_York,910,NA,US,35.03,-79.54,730 +28348,STANDARD,0,"Hope Mills",,,NC,"Cumberland County",America/New_York,910,NA,US,34.97,-78.95,33880 +28349,STANDARD,0,Kenansville,,,NC,"Duplin County",America/New_York,910,NA,US,34.96,-77.96,2930 +28350,"PO BOX",0,Lakeview,,,NC,"Moore County",America/New_York,,NA,US,35.24,-79.31,577 +28351,STANDARD,0,"Laurel Hill",,,NC,"Scotland County",America/New_York,910,NA,US,34.8,-79.54,3800 +28352,STANDARD,0,Laurinburg,,"E Laurinburg, East Laurinburg",NC,"Scotland County",America/New_York,910,NA,US,34.76,-79.47,17700 +28353,"PO BOX",0,Laurinburg,,,NC,"Scotland County",America/New_York,910,NA,US,34.76,-79.47,2202 +28355,"PO BOX",0,"Lemon Springs",,,NC,"Lee County",America/New_York,919,NA,US,35.38,-79.2,673 +28356,STANDARD,0,Linden,,,NC,"Harnett County",America/New_York,910,NA,US,35.25,-78.74,4770 +28357,STANDARD,0,"Lumber Bridge",,,NC,"Robeson County",America/New_York,,NA,US,34.88,-79.07,2200 +28358,STANDARD,0,Lumberton,,"Biggs Park",NC,"Robeson County",America/New_York,910,NA,US,34.63,-79.01,25780 +28359,"PO BOX",0,Lumberton,,,NC,"Robeson County",America/New_York,910,NA,US,34.63,-79.01,4827 +28360,STANDARD,0,Lumberton,,,NC,"Robeson County",America/New_York,910,NA,US,34.67,-79.07,9910 +28362,"PO BOX",0,Marietta,,,NC,"Robeson County",America/New_York,910,NA,US,34.36,-79.12,259 +28363,STANDARD,0,Marston,,,NC,"Richmond County",America/New_York,910,NA,US,34.96,-79.55,940 +28364,STANDARD,0,Maxton,,,NC,"Robeson County",America/New_York,910,NA,US,34.73,-79.35,10460 +28365,STANDARD,0,"Mount Olive",,,NC,"Wayne County",America/New_York,919,NA,US,35.19,-78.06,13000 +28366,STANDARD,0,"Newton Grove",,,NC,"Sampson County",America/New_York,910,NA,US,35.25,-78.35,4750 +28367,"PO BOX",0,Norman,,,NC,"Richmond County",America/New_York,910,NA,US,35.17,-79.72,311 +28368,"PO BOX",0,Olivia,,,NC,"Harnett County",America/New_York,,NA,US,35.37,-79.11,788 +28369,STANDARD,0,Orrum,,,NC,"Robeson County",America/New_York,910,NA,US,34.46,-79.01,1780 +28370,"PO BOX",0,Pinehurst,,,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.46,1707 +28371,STANDARD,0,Parkton,,,NC,"Robeson County",America/New_York,910,NA,US,34.9,-79.01,6130 +28372,STANDARD,0,Pembroke,,,NC,"Robeson County",America/New_York,910,NA,US,34.68,-79.19,10500 +28373,STANDARD,0,Pinebluff,,,NC,"Moore County",America/New_York,910,NA,US,35.1,-79.47,2160 +28374,STANDARD,0,Pinehurst,,,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.46,17430 +28375,"PO BOX",0,Proctorville,,,NC,"Robeson County",America/New_York,910,NA,US,34.48,-79.04,347 +28376,STANDARD,0,Raeford,,,NC,"Hoke County",America/New_York,910,NA,US,34.97,-79.22,38540 +28377,STANDARD,0,"Red Springs",,,NC,"Robeson County",America/New_York,910,NA,US,34.81,-79.18,9440 +28378,"PO BOX",0,Rex,,,NC,"Robeson County",America/New_York,910,NA,US,34.85,-79.05,231 +28379,STANDARD,0,Rockingham,,,NC,"Richmond County",America/New_York,910,NA,US,34.93,-79.76,19170 +28380,"PO BOX",0,Rockingham,,,NC,"Richmond County",America/New_York,910,NA,US,34.93,-79.76,1741 +28382,STANDARD,0,Roseboro,,,NC,"Sampson County",America/New_York,910,NA,US,34.95,-78.51,6030 +28383,STANDARD,0,Rowland,Raynham,,NC,"Robeson County",America/New_York,910,NA,US,34.53,-79.29,5650 +28384,STANDARD,0,"Saint Pauls",,,NC,"Bladen County",America/New_York,910,NA,US,34.8,-78.97,9550 +28385,STANDARD,0,Salemburg,,,NC,"Sampson County",America/New_York,910,NA,US,35.01,-78.5,2810 +28386,STANDARD,0,Shannon,Rennert,,NC,"Robeson County",America/New_York,,NA,US,34.83,-79.11,4800 +28387,STANDARD,0,"Southern Pines","Southern Pnes",,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.4,13730 +28388,"PO BOX",0,"Southern Pines","Southern Pnes",,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.4,1735 +28390,STANDARD,0,"Spring Lake",,"Olde Farm",NC,"Harnett County",America/New_York,,NA,US,35.17,-78.98,19750 +28391,STANDARD,0,Stedman,,,NC,"Cumberland County",America/New_York,910,NA,US,35.01,-78.69,4960 +28392,STANDARD,0,"Tar Heel",,,NC,"Bladen County",America/New_York,910,NA,US,34.73,-78.79,1470 +28393,STANDARD,0,Turkey,,,NC,"Sampson County",America/New_York,910,NA,US,34.99,-78.18,1710 +28394,STANDARD,0,Vass,,,NC,"Moore County",America/New_York,910,NA,US,35.25,-79.28,4750 +28395,STANDARD,0,Wade,,,NC,"Cumberland County",America/New_York,910,NA,US,35.16,-78.73,2320 +28396,STANDARD,0,Wagram,,,NC,"Scotland County",America/New_York,910,NA,US,34.88,-79.36,2160 +28398,STANDARD,0,Warsaw,Bowdens,,NC,"Duplin County",America/New_York,910,NA,US,34.99,-78.08,5840 +28399,STANDARD,0,"White Oak",,,NC,"Bladen County",America/New_York,910,NA,US,34.74,-78.7,1400 +28401,STANDARD,0,Wilmington,"Cape Fear",Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.27,-77.96,16190 +28402,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,1269 +28403,STANDARD,0,Wilmington,,"University Of Nc, Wilm",NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,24360 +28404,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,330 +28405,STANDARD,0,Wilmington,,"New Hanover County Airport, Wilm",NC,"New Hanover County",America/New_York,910,NA,US,34.26,-77.87,27130 +28406,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,1102 +28407,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,55 +28408,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,507 +28409,STANDARD,0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.15,-77.86,32550 +28410,UNIQUE,0,Wilmington,,"Bedford Fair Industries, Willow Ridge, Wilm",NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,0 +28411,STANDARD,0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.3,-77.79,34620 +28412,STANDARD,0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.14,-77.93,36290 +28420,STANDARD,0,Ash,,,NC,"Brunswick County",America/New_York,910,NA,US,34.07,-78.47,2890 +28421,STANDARD,0,Atkinson,,,NC,"Pender County",America/New_York,910,NA,US,34.52,-78.17,1240 +28422,STANDARD,0,Bolivia,,"Sunset Harbor",NC,"Brunswick County",America/New_York,910,NA,US,34.07,-78.14,6850 +28423,STANDARD,0,Bolton,,,NC,"Columbus County",America/New_York,910,NA,US,34.31,-78.4,1670 +28424,"PO BOX",0,Brunswick,,,NC,"Columbus County",America/New_York,910,NA,US,34.29,-78.7,382 +28425,STANDARD,0,Burgaw,"Saint Helena",,NC,"Pender County",America/New_York,910,NA,US,34.55,-77.92,8640 +28428,STANDARD,0,"Carolina Beach","Carolina Bch",,NC,"New Hanover County",America/New_York,910,NA,US,34.04,-77.89,6170 +28429,STANDARD,0,"Castle Hayne",,,NC,"New Hanover County",America/New_York,910,NA,US,34.35,-77.9,7460 +28430,STANDARD,0,"Cerro Gordo",,,NC,"Columbus County",America/New_York,910,NA,US,34.32,-78.92,1410 +28431,STANDARD,0,Chadbourn,,,NC,"Columbus County",America/New_York,910,NA,US,34.32,-78.82,5410 +28432,STANDARD,0,Clarendon,,,NC,"Columbus County",America/New_York,910,NA,US,34.17,-78.76,1690 +28433,STANDARD,0,Clarkton,,Emerson,NC,"Bladen County",America/New_York,910,NA,US,34.48,-78.65,3580 +28434,STANDARD,0,Council,,,NC,"Bladen County",America/New_York,910,NA,US,34.42,-78.46,840 +28435,STANDARD,0,Currie,,"Moores Creek National Battle",NC,"Pender County",America/New_York,910,NA,US,34.46,-78.1,1960 +28436,STANDARD,0,Delco,,,NC,"Columbus County",America/New_York,910,NA,US,34.28,-78.27,1800 +28438,STANDARD,0,Evergreen,Boardman,,NC,"Columbus County",America/New_York,910,NA,US,34.4,-78.9,1330 +28439,STANDARD,0,"Fair Bluff",,,NC,"Columbus County",America/New_York,910,NA,US,34.31,-79.03,980 +28441,STANDARD,0,Garland,Ingold,,NC,"Sampson County",America/New_York,910,NA,US,34.78,-78.39,2740 +28442,STANDARD,0,Hallsboro,,,NC,"Columbus County",America/New_York,910,NA,US,34.29,-78.59,1250 +28443,STANDARD,0,Hampstead,,,NC,"Pender County",America/New_York,910,NA,US,34.36,-77.71,23030 +28444,STANDARD,0,Harrells,,,NC,"Sampson County",America/New_York,910,NA,US,34.72,-78.2,1800 +28445,STANDARD,0,"Holly Ridge","Surf City, Topsail Beach",,NC,"Onslow County",America/New_York,910,NA,US,34.49,-77.55,8580 +28447,STANDARD,0,Ivanhoe,,,NC,"Sampson County",America/New_York,910,NA,US,34.6,-78.25,930 +28448,STANDARD,0,Kelly,,,NC,"Bladen County",America/New_York,910,NA,US,34.46,-78.32,680 +28449,STANDARD,0,"Kure Beach",,"Fort Fisher Air Force Statio",NC,"New Hanover County",America/New_York,910,NA,US,33.99,-77.91,1830 +28450,STANDARD,0,"Lake Waccamaw",,,NC,"Columbus County",America/New_York,910,NA,US,34.31,-78.51,1820 +28451,STANDARD,0,Leland,"Belville, Navassa, Northwest",,NC,"Brunswick County",America/New_York,910,NA,US,34.24,-78,34070 +28452,STANDARD,0,Longwood,,,NC,"Brunswick County",America/New_York,910,NA,US,34,-78.54,600 +28453,STANDARD,0,Magnolia,,,NC,"Duplin County",America/New_York,,NA,US,34.89,-78.05,3110 +28454,STANDARD,0,"Maple Hill",,,NC,"Onslow County",America/New_York,,NA,US,34.66,-77.69,2660 +28455,STANDARD,0,Nakina,,,NC,"Columbus County",America/New_York,910,NA,US,34.13,-78.66,1460 +28456,STANDARD,0,Riegelwood,"East Arcadia, Sandyfield","Acme, Northwest",NC,"Columbus County",America/New_York,910,NA,US,34.34,-78.26,2920 +28457,STANDARD,0,"Rocky Point",,,NC,"Pender County",America/New_York,910,NA,US,34.43,-77.88,9850 +28458,STANDARD,0,"Rose Hill",Greenevers,,NC,"Duplin County",America/New_York,910,NA,US,34.82,-78.02,4740 +28459,"PO BOX",0,Shallotte,,,NC,"Brunswick County",America/New_York,910,NA,US,33.97,-78.38,3161 +28460,STANDARD,0,"Sneads Ferry","N Topsail Bch, N Topsail Beach",,NC,"Onslow County",America/New_York,910,NA,US,34.55,-77.37,11210 +28461,STANDARD,0,Southport,"Bald Head Isl, Bald Head Island, Blng Spg Lks, Boiling Spring Lakes, Oak Island, Saint James","Bald Head, Bling Spr Lks",NC,"Brunswick County",America/New_York,910,NA,US,33.92,-78.02,19750 +28462,STANDARD,0,Supply,"Holden Beach",,NC,"Brunswick County",America/New_York,910,NA,US,34.01,-78.26,10410 +28463,STANDARD,0,"Tabor City",,,NC,"Columbus County",America/New_York,910,NA,US,34.14,-78.87,5860 +28464,STANDARD,0,Teachey,,,NC,"Duplin County",America/New_York,910,NA,US,34.78,-78.02,1830 +28465,STANDARD,0,"Oak Island","Caswell Beach","Fort Caswell, Ft Caswell, Long Beach, Sunny Point Mil Ocean, Sunny Point Military Ocean T, Yaupon Beach",NC,"Brunswick County",America/New_York,910,NA,US,33.91,-78.1,7110 +28466,STANDARD,0,Wallace,,,NC,"Duplin County",America/New_York,910,NA,US,34.73,-77.99,7570 +28467,STANDARD,0,Calabash,"Carolina Shor, Carolina Shores, Ocean Isl Bch, Ocean Isle Beach",,NC,"Brunswick County",America/New_York,910,NA,US,33.89,-78.57,9860 +28468,STANDARD,0,"Sunset Beach",Shallotte,"Sunset Bch",NC,"Brunswick County",America/New_York,910,NA,US,33.87,-78.51,4390 +28469,STANDARD,0,"Ocean Isle Beach","Ocean Isl Bch, Shallotte","Ocean Isle",NC,"Brunswick County",America/New_York,910,NA,US,33.93,-78.47,7550 +28470,STANDARD,0,Shallotte,"S Brunswick, South Brunswick",,NC,"Brunswick County",America/New_York,910,NA,US,33.95,-78.39,8410 +28472,STANDARD,0,Whiteville,,,NC,"Columbus County",America/New_York,910,NA,US,34.32,-78.7,14420 +28478,STANDARD,0,Willard,Watha,,NC,"Pender County",America/New_York,,NA,US,34.69,-77.98,3720 +28479,STANDARD,0,Winnabow,,,NC,"Brunswick County",America/New_York,910,NA,US,34.1,-78.02,5440 +28480,STANDARD,0,"Wrightsville Beach","Writsvlle Bch",,NC,"New Hanover County",America/New_York,910,NA,US,34.23,-77.8,2470 +28501,STANDARD,0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.27,-77.59,13460 +28502,"PO BOX",0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.27,-77.59,1303 +28503,"PO BOX",0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.27,-77.59,802 +28504,STANDARD,0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.22,-77.63,16970 +28508,STANDARD,0,Albertson,,,NC,"Duplin County",America/New_York,252,NA,US,35.11,-77.85,2090 +28509,"PO BOX",0,Alliance,,,NC,"Pamlico County",America/New_York,252,NA,US,35.14,-76.8,485 +28510,STANDARD,0,Arapahoe,"Minnesott Bch, Minnesott Beach",,NC,"Pamlico County",America/New_York,252,NA,US,35.01,-76.82,1370 +28511,STANDARD,0,Atlantic,,,NC,"Carteret County",America/New_York,252,NA,US,34.89,-76.33,450 +28512,STANDARD,0,"Atlantic Beach","Atlantic Bch, Indian Beach, Pine Knoll Shores, Pks, Salter Path","Atlanticbeach, Fort Macon Coast Guard Base",NC,"Carteret County",America/New_York,,NA,US,34.7,-76.73,2950 +28513,STANDARD,0,Ayden,,,NC,"Pitt County",America/New_York,252,NA,US,35.47,-77.42,8080 +28515,STANDARD,0,Bayboro,Mesic,,NC,"Pamlico County",America/New_York,252,NA,US,35.18,-76.7,1600 +28516,STANDARD,0,Beaufort,,"Cape Lookout National Seasho",NC,"Carteret County",America/New_York,252,NA,US,34.72,-76.65,9390 +28518,STANDARD,0,Beulaville,,,NC,"Duplin County",America/New_York,910,NA,US,34.92,-77.77,6930 +28519,"PO BOX",0,Bridgeton,,,NC,"Craven County",America/New_York,252,NA,US,35.12,-77.02,1121 +28520,STANDARD,0,"Cedar Island",,,NC,"Carteret County",America/New_York,252,NA,US,35,-76.32,210 +28521,STANDARD,0,Chinquapin,,,NC,"Duplin County",America/New_York,910,NA,US,34.82,-77.74,1780 +28522,"PO BOX",0,Comfort,,,NC,"Jones County",America/New_York,,NA,US,35.01,-77.49,133 +28523,STANDARD,0,"Cove City",,,NC,"Craven County",America/New_York,252,NA,US,35.18,-77.32,2180 +28524,STANDARD,0,Davis,,,NC,"Carteret County",America/New_York,,NA,US,34.79,-76.47,290 +28525,STANDARD,0,"Deep Run",,,NC,"Lenoir County",America/New_York,252,NA,US,35.15,-77.69,2890 +28526,STANDARD,0,Dover,,"Fort Barnwell",NC,"Craven County",America/New_York,252,NA,US,35.21,-77.43,1840 +28527,STANDARD,0,Ernul,,,NC,"Craven County",America/New_York,252,NA,US,35.29,-77.03,1040 +28528,STANDARD,0,Gloucester,,,NC,"Carteret County",America/New_York,,NA,US,34.72,-76.54,510 +28529,STANDARD,0,Grantsboro,,"Kennells Beach",NC,"Pamlico County",America/New_York,252,NA,US,35.07,-76.85,1730 +28530,STANDARD,0,Grifton,,,NC,"Pitt County",America/New_York,252,NA,US,35.37,-77.43,5960 +28531,STANDARD,0,"Harkers Island","Harkers Is",,NC,"Carteret County",America/New_York,,NA,US,34.69,-76.55,1010 +28532,STANDARD,0,Havelock,,,NC,"Craven County",America/New_York,252,NA,US,34.9,-76.89,19250 +28533,STANDARD,0,"Cherry Point",Havelock,"Cherry Point Marine Corps Ai, Mcas Cherry Point",NC,"Craven County",America/New_York,252,NA,US,34.9,-76.9,2306 +28537,STANDARD,0,Hobucken,,,NC,"Pamlico County",America/New_York,252,NA,US,35.26,-76.53,141 +28538,STANDARD,0,Hookerton,,,NC,"Greene County",America/New_York,,NA,US,35.42,-77.58,1900 +28539,STANDARD,0,Hubert,,,NC,"Onslow County",America/New_York,910,NA,US,34.66,-77.23,15080 +28540,STANDARD,0,Jacksonville,,"New River Marine Corps Air S",NC,"Onslow County",America/New_York,910,NA,US,34.76,-77.4,42380 +28541,"PO BOX",0,Jacksonville,,,NC,"Onslow County",America/New_York,910,NA,US,34.76,-77.4,877 +28542,"PO BOX",0,"Camp Lejeune",Jacksonville,"Cp Lejeune Mcb, Cp Lejeunemcb, Lejeune",NC,"Onslow County",America/New_York,910,NA,US,34.68,-77.34,7332 +28543,STANDARD,0,"Tarawa Terrace","Jacksonville, Tarawa Ter","Tarawa, Tarawa Tr",NC,"Onslow County",America/New_York,910,NA,US,34.73,-77.37,3870 +28544,STANDARD,0,"Midway Park",Jacksonville,,NC,"Onslow County",America/New_York,910,NA,US,34.73,-77.3,4240 +28545,STANDARD,0,"Mccutcheon Field","Jacksonville, Mccutchn Fld","Mc Cutcheon Field",NC,"Onslow County",America/New_York,910,NA,US,34.67,-77.52,1177 +28546,STANDARD,0,Jacksonville,,,NC,"Onslow County",America/New_York,910,NA,US,34.8,-77.36,42290 +28547,STANDARD,0,"Camp Lejeune",,"Naval Hos, Naval Hospital",NC,"Onslow County",America/New_York,910,NA,US,34.68,-77.34,6710 +28551,STANDARD,0,"La Grange",,,NC,"Lenoir County",America/New_York,252,NA,US,35.3,-77.78,11090 +28552,STANDARD,0,Lowland,,,NC,"Pamlico County",America/New_York,252,NA,US,35.3,-76.57,152 +28553,STANDARD,0,Marshallberg,,,NC,"Carteret County",America/New_York,252,NA,US,34.73,-76.51,340 +28554,"PO BOX",0,Maury,,,NC,"Greene County",America/New_York,252,NA,US,35.48,-77.59,568 +28555,STANDARD,0,Maysville,,,NC,"Onslow County",America/New_York,910,NA,US,34.9,-77.23,4480 +28556,STANDARD,0,Merritt,,,NC,"Pamlico County",America/New_York,252,NA,US,35.11,-76.69,680 +28557,STANDARD,0,"Morehead City",,,NC,"Carteret County",America/New_York,252,NA,US,34.72,-76.73,13160 +28560,STANDARD,0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,23520 +28561,"PO BOX",0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,1645 +28562,STANDARD,0,"New Bern","Trent Woods",,NC,"Craven County",America/New_York,252,NA,US,35.08,-77.13,35480 +28563,"PO BOX",0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,694 +28564,"PO BOX",0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,350 +28570,STANDARD,0,Newport,Bogue,,NC,"Carteret County",America/New_York,252,NA,US,34.78,-76.86,18810 +28571,STANDARD,0,Oriental,,,NC,"Pamlico County",America/New_York,252,NA,US,35.03,-76.68,2200 +28572,STANDARD,0,"Pink Hill",,,NC,"Duplin County",America/New_York,252,NA,US,35.05,-77.74,5260 +28573,STANDARD,0,Pollocksville,,,NC,"Jones County",America/New_York,252,NA,US,35,-77.22,1750 +28574,STANDARD,0,Richlands,,,NC,"Onslow County",America/New_York,910,NA,US,34.89,-77.54,16560 +28575,"PO BOX",0,"Salter Path",,,NC,"Carteret County",America/New_York,,NA,US,34.71,-76.88,381 +28577,STANDARD,0,Sealevel,,,NC,"Carteret County",America/New_York,252,NA,US,34.89,-76.39,210 +28578,STANDARD,0,"Seven Springs",,,NC,"Wayne County",America/New_York,252,NA,US,35.22,-77.84,4920 +28579,STANDARD,0,Smyrna,Williston,,NC,"Carteret County",America/New_York,,NA,US,34.76,-76.51,470 +28580,STANDARD,0,"Snow Hill",,,NC,"Greene County",America/New_York,252,NA,US,35.45,-77.67,8140 +28581,STANDARD,0,Stacy,Sealevel,,NC,"Carteret County",America/New_York,252,NA,US,34.85,-76.41,170 +28582,STANDARD,0,Stella,,,NC,"Onslow County",America/New_York,252,NA,US,34.77,-77.12,1900 +28583,"PO BOX",0,Stonewall,,,NC,"Pamlico County",America/New_York,252,NA,US,35.13,-76.74,232 +28584,STANDARD,0,Swansboro,"Cape Carteret, Cedar Point, Peletier",,NC,"Carteret County",America/New_York,"252,910",NA,US,34.69,-77.12,12630 +28585,STANDARD,0,Trenton,,,NC,"Jones County",America/New_York,252,NA,US,35.06,-77.35,2950 +28586,STANDARD,0,Vanceboro,,,NC,"Craven County",America/New_York,252,NA,US,35.3,-77.15,5730 +28587,STANDARD,0,Vandemere,,,NC,"Pamlico County",America/New_York,252,NA,US,35.18,-76.66,210 +28589,"PO BOX",0,Williston,,,NC,"Carteret County",America/New_York,,NA,US,34.8,-76.49,148 +28590,STANDARD,0,Winterville,,,NC,"Pitt County",America/New_York,252,NA,US,35.52,-77.39,25660 +28594,STANDARD,0,"Emerald Isle",,,NC,"Carteret County",America/New_York,252,NA,US,34.69,-76.97,3970 +28601,STANDARD,0,Hickory,,"Bethlehem, Lenoir Rhyne, Longview, View Mont",NC,"Catawba County",America/New_York,828,NA,US,35.77,-81.33,44580 +28602,STANDARD,0,Hickory,,"Long View, Longview, Mountain View, Mt View",NC,"Catawba County",America/New_York,828,NA,US,35.73,-81.32,24150 +28603,"PO BOX",0,Hickory,,,NC,"Catawba County",America/New_York,828,NA,US,35.73,-81.32,3286 +28604,STANDARD,0,"Banner Elk","Beech Mountain, Beech Mtn, Seven Devils, Sugar Mountain, Sugar Mtn","Balm, Elk Valley, Foscoe, Grandfather, Kellersville, Matney, Norwood Hollow, Rominger, White Rock",NC,"Watauga County",America/New_York,828,NA,US,36.16,-81.87,5260 +28605,STANDARD,0,"Blowing Rock",,"Aho, Bamboo, Mayview Park",NC,"Watauga County",America/New_York,828,NA,US,36.12,-81.67,3420 +28606,STANDARD,0,Boomer,,,NC,"Wilkes County",America/New_York,336,NA,US,36.05,-81.32,1670 +28607,STANDARD,0,Boone,,"Adams, Deerfield, Grandview Heights, Hillcrest, Hodges Gap, Laxon, Meat Camp, Perkinsville, Rutherwood, Sands, Shulls Mills",NC,"Watauga County",America/New_York,828,NA,US,36.2,-81.66,18950 +28608,UNIQUE,0,Boone,,"Appalachian State Univ",NC,"Watauga County",America/New_York,828,NA,US,36.2,-81.66,273 +28609,STANDARD,0,Catawba,Longisland,,NC,"Catawba County",America/New_York,828,NA,US,35.7,-81.07,5370 +28610,STANDARD,0,Claremont,,,NC,"Catawba County",America/New_York,828,NA,US,35.71,-81.15,9000 +28611,STANDARD,0,Collettsville,,,NC,"Caldwell County",America/New_York,828,NA,US,36.01,-81.74,590 +28612,STANDARD,0,"Connelly Springs","Connelly Spg",,NC,"Burke County",America/New_York,828,NA,US,35.65,-81.54,9040 +28613,STANDARD,0,Conover,,,NC,"Catawba County",America/New_York,828,NA,US,35.7,-81.21,20600 +28615,STANDARD,0,Creston,,"Ashland, Fig, Grayson, Parker",NC,"Ashe County",America/New_York,336,NA,US,36.44,-81.65,1450 +28616,"PO BOX",0,Crossnore,,,NC,"Avery County",America/New_York,828,NA,US,36.02,-81.93,640 +28617,STANDARD,0,Crumpler,,"Chestnut Hill, Nathans Creek, Shatley Springs, Weaversford",NC,"Ashe County",America/New_York,336,NA,US,36.47,-81.37,1680 +28618,STANDARD,0,"Deep Gap",Triplett,"Meadow Creek, Stony Fork",NC,"Watauga County",America/New_York,828,NA,US,36.23,-81.51,2140 +28619,"PO BOX",0,Drexel,,,NC,"Burke County",America/New_York,828,NA,US,35.75,-81.6,2613 +28621,STANDARD,0,Elkin,,,NC,"Surry County",America/New_York,336,NA,US,36.25,-80.84,8200 +28622,STANDARD,0,"Elk Park",,"Cranberry, Darkridge, Flat Springs, Heaton, Whaley",NC,"Avery County",America/New_York,828,NA,US,36.15,-81.98,1790 +28623,STANDARD,0,Ennice,,"Barrett, Saddle",NC,"Alleghany County",America/New_York,336,NA,US,36.55,-81,1280 +28624,STANDARD,0,Ferguson,,"Champion, Darby, Denny, Hendrix",NC,"Wilkes County",America/New_York,336,NA,US,36.13,-81.41,1200 +28625,STANDARD,0,Statesville,,,NC,"Iredell County",America/New_York,"980,704",NA,US,35.87,-80.89,33090 +28626,STANDARD,0,Fleetwood,,,NC,"Ashe County",America/New_York,336,NA,US,36.3,-81.51,2060 +28627,STANDARD,0,"Glade Valley",,"Cherry Lane, Hare",NC,"Alleghany County",America/New_York,336,NA,US,36.48,-81.05,1030 +28628,"PO BOX",0,"Glen Alpine",,,NC,"Burke County",America/New_York,828,NA,US,35.73,-81.79,1641 +28629,STANDARD,0,"Glendale Springs","Glendale Spgs",,NC,"Ashe County",America/New_York,336,NA,US,36.35,-81.37,233 +28630,STANDARD,0,"Granite Falls",Sawmills,"Baton, Dudley Shoals, Grace Chapel",NC,"Caldwell County",America/New_York,828,NA,US,35.8,-81.42,16180 +28631,STANDARD,0,"Grassy Creek",,"Helton, Sussex",NC,"Ashe County",America/New_York,336,NA,US,36.56,-81.4,510 +28633,UNIQUE,0,Lenoir,,"Broyhill Furniture",NC,"Caldwell County",America/New_York,828,NA,US,35.9,-81.53,0 +28634,STANDARD,0,Harmony,,"Countyline, Houstonville",NC,"Iredell County",America/New_York,"336,704,980",NA,US,35.95,-80.77,4270 +28635,STANDARD,0,Hays,,Hayes,NC,"Wilkes County",America/New_York,336,NA,US,36.24,-81.11,3000 +28636,STANDARD,0,Hiddenite,,Vashti,NC,"Alexander County",America/New_York,704,NA,US,35.9,-81.09,4330 +28637,STANDARD,0,Hildebran,,,NC,"Burke County",America/New_York,"704,828",NA,US,35.71,-81.42,1930 +28638,STANDARD,0,Hudson,,,NC,"Caldwell County",America/New_York,828,NA,US,35.84,-81.48,10260 +28640,STANDARD,0,Jefferson,,"Orion, Rhine, Theta, Wagoner",NC,"Ashe County",America/New_York,336,NA,US,36.42,-81.46,3840 +28641,"PO BOX",0,"Jonas Ridge",,,NC,"Avery County",America/New_York,828,NA,US,35.97,-81.89,225 +28642,STANDARD,0,Jonesville,,Arlington,NC,"Yadkin County",America/New_York,336,NA,US,36.23,-80.84,4280 +28643,STANDARD,0,Lansing,Husk,"Apple Grove, Ball, Bly, Brandon, Comet, Dolinger, Farmers Store, Little Horse Creek, Sturgills, Tuckerdale",NC,"Ashe County",America/New_York,336,NA,US,36.49,-81.5,2390 +28644,STANDARD,0,"Laurel Springs","Laurel Spgs",,NC,"Alleghany County",America/New_York,,NA,US,36.44,-81.25,1160 +28645,STANDARD,0,Lenoir,"Boone, Cajahs Mountain, Cajahs Mtn, Cedar Rock","Brown Mountain Beach, Edgemont, Gamewell, Joyceton, Kings Creek, Laytown, Mortimer, Upton, Valmead, Warrior",NC,"Caldwell County",America/New_York,828,NA,US,35.9,-81.53,36150 +28646,"PO BOX",0,Linville,,,NC,"Avery County",America/New_York,828,NA,US,36.08,-81.85,827 +28647,"PO BOX",0,"Linville Falls","Linville Fls",,NC,"Avery County",America/New_York,828,NA,US,35.94,-81.97,248 +28649,STANDARD,0,"Mc Grady",,"Halls Mills, Mcgrady, Radical",NC,"Wilkes County",America/New_York,336,NA,US,36.33,-81.23,750 +28650,STANDARD,0,Maiden,,,NC,"Catawba County",America/New_York,828,NA,US,35.57,-81.2,11460 +28651,STANDARD,0,"Millers Creek",Wilbar,,NC,"Wilkes County",America/New_York,336,NA,US,36.18,-81.23,5370 +28652,"PO BOX",0,Minneapolis,,"Carpenter Bottom",NC,"Avery County",America/New_York,828,NA,US,36.1,-81.99,221 +28653,"PO BOX",0,Montezuma,,,NC,"Avery County",America/New_York,828,NA,US,36.05,-81.9,258 +28654,STANDARD,0,"Moravian Falls","Moravian Fls",,NC,"Wilkes County",America/New_York,336,NA,US,36.1,-81.18,2990 +28655,STANDARD,0,Morganton,,"Bridgewater, Brindle Town, Burkemont, Calvin, Enola, Joy, Oak Hill, Petersburg, Pleasant Grove, Sunnyside",NC,"Burke County",America/New_York,828,NA,US,35.74,-81.69,41630 +28656,UNIQUE,0,"North Wilkesboro","N Wilkesboro","Lowes Co Inc",NC,"Wilkes County",America/New_York,336,NA,US,36.16,-81.14,0 +28657,STANDARD,0,Newland,,"Altamont, Beech Bottom, Chestnut Dale, Cranberry Gap, Hughes, Ingalls, Pyatte, Roaring Creek, Senia, Spear, Stamey Branch, Three Mile, Valley",NC,"Avery County",America/New_York,828,NA,US,36.08,-81.92,6660 +28658,STANDARD,0,Newton,,"Blackburn, Drums Crossroads, Duan, Olivers Crossroads, Propst Crossroads, South Newton, Startown",NC,"Catawba County",America/New_York,"704,828,980",NA,US,35.66,-81.21,23140 +28659,STANDARD,0,"North Wilkesboro","N Wilkesboro","Call, Cricket, Fairplains, Hunting Creek, Mulberry, Quarry, Spurgeon, Windy Gap",NC,"Wilkes County",America/New_York,336,NA,US,36.16,-81.14,16000 +28660,STANDARD,0,Olin,,,NC,"Iredell County",America/New_York,704,NA,US,35.95,-80.85,1910 +28661,"PO BOX",0,Patterson,,"Happy Valley",NC,"Caldwell County",America/New_York,828,NA,US,36.03,-81.58,634 +28662,"PO BOX",0,Pineola,,,NC,"Avery County",America/New_York,828,NA,US,36.02,-81.9,424 +28663,STANDARD,0,"Piney Creek",,,NC,"Alleghany County",America/New_York,336,NA,US,36.55,-81.3,500 +28664,"PO BOX",0,Plumtree,,,NC,"Avery County",America/New_York,828,NA,US,35.98,-82,443 +28665,STANDARD,0,Purlear,,"Maple Springs, Parsonville, Walsh",NC,"Wilkes County",America/New_York,336,NA,US,36.21,-81.38,2010 +28666,"PO BOX",0,Icard,,,NC,"Burke County",America/New_York,828,NA,US,35.73,-81.47,1608 +28667,"PO BOX",0,Rhodhiss,,Rhodhizz,NC,"Caldwell County",America/New_York,,NA,US,35.77,-81.43,753 +28668,STANDARD,0,"Roaring Gap",,,NC,"Alleghany County",America/New_York,336,NA,US,36.4,-80.98,290 +28669,STANDARD,0,"Roaring River",,Lomax,NC,"Wilkes County",America/New_York,336,NA,US,36.21,-81,2320 +28670,STANDARD,0,Ronda,,"Clingman, Dimmette",NC,"Wilkes County",America/New_York,336,NA,US,36.22,-80.94,2280 +28671,"PO BOX",0,"Rutherford College","Rutherfrd Clg, Rutherfrd Col",,NC,"Burke County",America/New_York,828,NA,US,35.75,-81.53,1219 +28672,STANDARD,0,Scottville,,"Peden, Topia",NC,"Ashe County",America/New_York,336,NA,US,36.48,-81.33,50 +28673,STANDARD,0,"Sherrills Ford","Sherrills Frd",,NC,"Catawba County",America/New_York,828,NA,US,35.57,-80.99,6110 +28674,UNIQUE,1,"North Wilkesboro","N Wilkesboro","Northwestern Bank",NC,"Wilkes County",America/New_York,336,NA,US,36.15,-81.14,0 +28675,STANDARD,0,Sparta,Whitehead,"Edwards Crossroads, Stratford, Twin Oaks",NC,"Alleghany County",America/New_York,336,NA,US,36.5,-81.13,4990 +28676,STANDARD,0,"State Road",,"Kapps Mill, Mountain Park, State Rd",NC,"Surry County",America/New_York,336,NA,US,36.33,-80.85,3010 +28677,STANDARD,0,Statesville,,"Bradfords Cross Roads, Celeste Hinkle, Charles, East Monbo, Elmwood, Eufola, Loray, Love Valley, Sharon, Statesville West",NC,"Iredell County",America/New_York,"704,980",NA,US,35.78,-80.88,29860 +28678,STANDARD,0,"Stony Point",,,NC,"Alexander County",America/New_York,704,NA,US,35.86,-81.04,4250 +28679,STANDARD,0,"Sugar Grove",,"Amantha, Beech Creek, Peoria, Sweetwater",NC,"Watauga County",America/New_York,828,NA,US,36.26,-81.83,1650 +28680,"PO BOX",0,Morganton,,,NC,"Burke County",America/New_York,828,NA,US,35.74,-81.69,3560 +28681,STANDARD,0,Taylorsville,,"All Healing Springs, Ellendale, Kilby, Liledown, Little River, Paynes Store",NC,"Alexander County",America/New_York,828,NA,US,35.92,-81.17,20340 +28682,STANDARD,0,Terrell,,,NC,"Catawba County",America/New_York,828,NA,US,35.58,-80.97,1180 +28683,STANDARD,0,Thurmond,,Doughton,NC,"Surry County",America/New_York,336,NA,US,36.36,-80.94,1350 +28684,STANDARD,0,Todd,,"Brownwood, Tamarack, Toliver, Woodford",NC,"Ashe County",America/New_York,,NA,US,36.3,-81.6,1600 +28685,STANDARD,0,Traphill,,"Abshers, Dockery, Joynes, Moxley",NC,"Wilkes County",America/New_York,336,NA,US,36.35,-81.03,1360 +28687,"PO BOX",0,Statesville,,,NC,"Iredell County",America/New_York,704,NA,US,35.78,-80.88,2114 +28688,"PO BOX",0,Turnersburg,,,NC,"Iredell County",America/New_York,704,NA,US,35.9,-80.8,147 +28689,STANDARD,0,"Union Grove",,Osbornville,NC,"Iredell County",America/New_York,"336,704",NA,US,36.02,-80.86,1740 +28690,STANDARD,0,Valdese,,,NC,"Burke County",America/New_York,828,NA,US,35.74,-81.55,7530 +28691,"PO BOX",0,"Valle Crucis","Banner Elk",,NC,"Watauga County",America/New_York,828,NA,US,36.21,-81.78,281 +28692,STANDARD,0,Vilas,,"Reese, Sherwood",NC,"Watauga County",America/New_York,828,NA,US,36.27,-81.81,3390 +28693,STANDARD,0,Warrensville,,Clifton,NC,"Ashe County",America/New_York,336,NA,US,36.46,-81.55,1130 +28694,STANDARD,0,"West Jefferson","W Jefferson","Baldwin, Beaver Creek, Idlewild, Index, Smethport, Treetop",NC,"Ashe County",America/New_York,336,NA,US,36.39,-81.49,6590 +28697,STANDARD,0,Wilkesboro,,Goshen,NC,"Wilkes County",America/New_York,336,NA,US,36.14,-81.16,10420 +28698,STANDARD,0,Zionville,,"Mabel, Silverstone",NC,"Watauga County",America/New_York,828,NA,US,36.32,-81.74,1650 +28699,"PO BOX",0,Scotts,,,NC,"Alexander County",America/New_York,704,NA,US,35.84,-81,247 +28701,STANDARD,0,Alexander,,,NC,"Buncombe County",America/New_York,828,NA,US,35.7,-82.63,3580 +28702,STANDARD,0,Almond,,,NC,"Graham County",America/New_York,828,NA,US,35.41,-83.61,350 +28704,STANDARD,0,Arden,,"Oak Park, Royal Pines, West Haven",NC,"Buncombe County",America/New_York,828,NA,US,35.46,-82.58,19900 +28705,STANDARD,0,Bakersville,,,NC,"Mitchell County",America/New_York,828,NA,US,36.01,-82.15,4710 +28707,"PO BOX",0,Balsam,,,NC,"Jackson County",America/New_York,828,NA,US,35.42,-83.08,455 +28708,STANDARD,0,"Balsam Grove",,,NC,"Transylvania County",America/New_York,828,NA,US,35.22,-82.87,460 +28709,STANDARD,0,Barnardsville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.77,-82.45,1790 +28710,"PO BOX",0,"Bat Cave",,,NC,"Henderson County",America/New_York,828,NA,US,35.45,-82.28,254 +28711,STANDARD,0,"Black Mountain","Black Mtn",,NC,"Buncombe County",America/New_York,828,NA,US,35.61,-82.33,11260 +28712,STANDARD,0,Brevard,,,NC,"Transylvania County",America/New_York,828,NA,US,35.23,-82.73,14800 +28713,STANDARD,0,"Bryson City",,"Alarka, Ela, Needmore",NC,"Swain County",America/New_York,828,NA,US,35.42,-83.44,7310 +28714,STANDARD,0,Burnsville,,,NC,"Yancey County",America/New_York,828,NA,US,35.91,-82.29,12580 +28715,STANDARD,0,Candler,"Biltmore Lake",,NC,"Buncombe County",America/New_York,828,NA,US,35.53,-82.69,23420 +28716,STANDARD,0,Canton,,,NC,"Haywood County",America/New_York,828,NA,US,35.54,-82.84,15020 +28717,STANDARD,0,Cashiers,,,NC,"Jackson County",America/New_York,828,NA,US,35.1,-83.09,2240 +28718,STANDARD,0,"Cedar Mountain","Cedar Mtn",,NC,"Transylvania County",America/New_York,828,NA,US,35.14,-82.64,530 +28719,STANDARD,0,Cherokee,,"Ocono Lufty",NC,"Jackson County",America/New_York,828,NA,US,35.47,-83.31,7670 +28720,"PO BOX",0,"Chimney Rock",,,NC,"Rutherford County",America/New_York,828,NA,US,35.45,-82.25,127 +28721,STANDARD,0,Clyde,,,NC,"Haywood County",America/New_York,828,NA,US,35.53,-82.91,8940 +28722,STANDARD,0,Columbus,,,NC,"Polk County",America/New_York,828,NA,US,35.24,-82.2,5360 +28723,STANDARD,0,Cullowhee,,"East Laport, Erastus, Norton, Speedwell",NC,"Jackson County",America/New_York,828,NA,US,35.31,-83.17,4710 +28724,"PO BOX",0,Dana,,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.37,2199 +28725,"PO BOX",0,Dillsboro,,,NC,"Jackson County",America/New_York,828,NA,US,35.37,-83.26,1039 +28726,STANDARD,0,"East Flat Rock","E Flat Rock",,NC,"Henderson County",America/New_York,828,NA,US,35.28,-82.41,2950 +28727,"PO BOX",0,Edneyville,,,NC,"Henderson County",America/New_York,828,NA,US,35.39,-82.32,1031 +28728,"PO BOX",0,Enka,,"Enka Village",NC,"Buncombe County",America/New_York,828,NA,US,35.56,-82.65,1484 +28729,STANDARD,0,Etowah,,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.6,3370 +28730,STANDARD,0,Fairview,,,NC,"Buncombe County",America/New_York,828,NA,US,35.52,-82.4,8670 +28731,STANDARD,0,"Flat Rock",,,NC,"Henderson County",America/New_York,828,NA,US,35.27,-82.44,7820 +28732,STANDARD,0,Fletcher,"Mills River","Carolina Hills",NC,"Henderson County",America/New_York,828,NA,US,35.43,-82.5,17290 +28733,STANDARD,0,"Fontana Dam",,,NC,"Graham County",America/New_York,828,NA,US,35.43,-83.81,64 +28734,STANDARD,0,Franklin,,"Burningtown, Cartoogechaye, Cowee, Cullasaja, East Franklin, Ellijay, Hickory Knoll, Higdonville, Iotla, Prentiss, Riverside, Union, Watauga",NC,"Macon County",America/New_York,828,NA,US,35.18,-83.38,22120 +28735,STANDARD,0,Gerton,,,NC,"Henderson County",America/New_York,828,NA,US,35.48,-82.35,230 +28736,STANDARD,0,Glenville,,,NC,"Jackson County",America/New_York,828,NA,US,35.19,-83.08,540 +28737,"PO BOX",0,Glenwood,Marion,,NC,"McDowell County",America/New_York,828,NA,US,35.6,-81.97,63 +28738,"PO BOX",0,Hazelwood,,,NC,"Haywood County",America/New_York,828,NA,US,35.47,-83,595 +28739,STANDARD,0,Hendersonville,"Hendersonvlle, Laurel Park",,NC,"Henderson County",America/New_York,828,NA,US,35.26,-82.55,17120 +28740,STANDARD,0,"Green Mountain","Green Mtn","Double Island, Green Mt, Greenmountain, Grn Mountain, Lower Pig Pen, Pleasant Gap, Relief, Upper Pig Pen",NC,"Yancey County",America/New_York,828,NA,US,36.09,-82.27,1800 +28741,STANDARD,0,Highlands,,,NC,"Macon County",America/New_York,828,NA,US,35.05,-83.19,3030 +28742,STANDARD,0,"Horse Shoe",,,NC,"Henderson County",America/New_York,828,NA,US,35.39,-82.64,2830 +28743,STANDARD,0,"Hot Springs",,"Bluff, Joe, Luck, Paint Rock, Spring Creek, Trust",NC,"Madison County",America/New_York,828,NA,US,35.8,-82.88,1520 +28744,"PO BOX",0,Franklin,,,NC,"Macon County",America/New_York,828,NA,US,35.18,-83.38,2031 +28745,STANDARD,0,"Lake Junaluska","Lk Junaluska",Assembly,NC,"Haywood County",America/New_York,828,NA,US,35.52,-82.97,1220 +28746,STANDARD,0,"Lake Lure",,,NC,"Rutherford County",America/New_York,828,NA,US,35.44,-82.2,2190 +28747,STANDARD,0,"Lake Toxaway",,,NC,"Transylvania County",America/New_York,828,NA,US,35.13,-82.93,1550 +28748,STANDARD,0,Leicester,,,NC,"Buncombe County",America/New_York,828,NA,US,35.65,-82.68,10860 +28749,"PO BOX",0,"Little Switzerland","Ltl Switzrlnd",,NC,"McDowell County",America/New_York,828,NA,US,35.84,-82.1,352 +28750,"PO BOX",0,Lynn,,,NC,"Polk County",America/New_York,828,NA,US,35.23,-82.25,354 +28751,STANDARD,0,"Maggie Valley",,,NC,"Haywood County",America/New_York,828,NA,US,35.51,-83.09,3380 +28752,STANDARD,0,Marion,,,NC,"McDowell County",America/New_York,828,NA,US,35.68,-82,23990 +28753,STANDARD,0,Marshall,,,NC,"Madison County",America/New_York,828,NA,US,35.79,-82.68,9080 +28754,STANDARD,0,"Mars Hill",,,NC,"Madison County",America/New_York,828,NA,US,35.82,-82.55,6510 +28755,"PO BOX",0,Micaville,,,NC,"Yancey County",America/New_York,828,NA,US,35.9,-82.21,661 +28756,STANDARD,0,"Mill Spring",,,NC,"Polk County",America/New_York,828,NA,US,35.29,-82.16,3470 +28757,"PO BOX",0,Montreat,,,NC,"Buncombe County",America/New_York,828,NA,US,35.65,-82.31,532 +28758,"PO BOX",0,"Mountain Home","Hendersonville, Hendersonvlle",,NC,"Henderson County",America/New_York,828,NA,US,35.36,-82.5,1617 +28759,STANDARD,0,"Mills River",,,NC,"Henderson County",America/New_York,828,NA,US,35.39,-82.57,6820 +28760,"PO BOX",0,Naples,,,NC,"Henderson County",America/New_York,828,NA,US,35.4,-82.47,570 +28761,STANDARD,0,Nebo,,,NC,"McDowell County",America/New_York,828,NA,US,35.71,-81.93,6680 +28762,STANDARD,0,"Old Fort",,,NC,"McDowell County",America/New_York,828,NA,US,35.63,-82.17,5780 +28763,STANDARD,0,Otto,,,NC,"Macon County",America/New_York,828,NA,US,35.06,-83.38,2290 +28765,"PO BOX",0,Penland,,,NC,"Mitchell County",America/New_York,828,NA,US,35.96,-82.12,128 +28766,STANDARD,0,Penrose,,,NC,"Transylvania County",America/New_York,828,NA,US,35.25,-82.62,1400 +28768,STANDARD,0,"Pisgah Forest",,,NC,"Transylvania County",America/New_York,828,NA,US,35.27,-82.67,5850 +28770,"PO BOX",0,Ridgecrest,,,NC,"Buncombe County",America/New_York,828,NA,US,35.59,-82.3,351 +28771,STANDARD,0,Robbinsville,"Lake Santeetlah, Lk Santeetlah, Tapoco",,NC,"Graham County",America/New_York,828,NA,US,35.32,-83.8,6490 +28772,STANDARD,0,Rosman,,,NC,"Transylvania County",America/New_York,828,NA,US,35.12,-82.83,1570 +28773,STANDARD,0,Saluda,,,NC,"Polk County",America/New_York,828,NA,US,35.23,-82.34,2710 +28774,STANDARD,0,Sapphire,,,NC,"Transylvania County",America/New_York,828,NA,US,35.1,-83,910 +28775,STANDARD,0,"Scaly Mountain","Scaly Mtn",,NC,"Macon County",America/New_York,828,NA,US,35.01,-83.31,480 +28776,"PO BOX",0,Skyland,,,NC,"Buncombe County",America/New_York,828,NA,US,35.48,-82.52,1104 +28777,STANDARD,0,"Spruce Pine",,,NC,"Mitchell County",America/New_York,828,NA,US,35.91,-82.06,7170 +28778,STANDARD,0,Swannanoa,,,NC,"Buncombe County",America/New_York,828,NA,US,35.6,-82.39,8530 +28779,STANDARD,0,Sylva,,,NC,"Jackson County",America/New_York,828,NA,US,35.37,-83.22,12400 +28781,STANDARD,0,Topton,Aquone,,NC,"Macon County",America/New_York,,NA,US,35.22,-83.64,650 +28782,STANDARD,0,Tryon,,,NC,"Polk County",America/New_York,828,NA,US,35.2,-82.23,4700 +28783,STANDARD,0,Tuckasegee,,,NC,"Jackson County",America/New_York,828,NA,US,35.27,-83.12,1120 +28784,"PO BOX",0,Tuxedo,,,NC,"Henderson County",America/New_York,828,NA,US,35.22,-82.42,209 +28785,STANDARD,0,Waynesville,,,NC,"Haywood County",America/New_York,828,NA,US,35.63,-83.02,6420 +28786,STANDARD,0,Waynesville,Hazelwood,,NC,"Haywood County",America/New_York,828,NA,US,35.48,-82.99,16960 +28787,STANDARD,0,Weaverville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.69,-82.55,19390 +28788,"PO BOX",0,Webster,,,NC,"Jackson County",America/New_York,828,NA,US,35.35,-83.21,776 +28789,STANDARD,0,Whittier,,,NC,"Jackson County",America/New_York,828,NA,US,35.43,-83.27,4910 +28790,STANDARD,0,Zirconia,,,NC,"Henderson County",America/New_York,828,NA,US,35.2,-82.48,2640 +28791,STANDARD,0,Hendersonville,Hendersonvlle,,NC,"Henderson County",America/New_York,828,NA,US,35.36,-82.51,12460 +28792,STANDARD,0,Hendersonville,Hendersonvlle,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.46,27100 +28793,"PO BOX",0,Hendersonville,Hendersonvlle,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.46,2318 +28801,STANDARD,0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.59,-82.56,10200 +28802,"PO BOX",0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,1439 +28803,STANDARD,0,Asheville,"Biltmore Forest, Biltmore Frst",,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,27610 +28804,STANDARD,0,Asheville,Woodfin,,NC,"Buncombe County",America/New_York,828,NA,US,35.65,-82.56,18260 +28805,STANDARD,0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.63,-82.48,15340 +28806,STANDARD,0,Asheville,,"West Ashville",NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.61,35610 +28810,STANDARD,0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,0 +28813,"PO BOX",0,Asheville,,Biltmor,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,653 +28814,"PO BOX",0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,748 +28815,"PO BOX",0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,1007 +28816,"PO BOX",0,Asheville,,"W Asheville",NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,1505 +28901,STANDARD,0,Andrews,,,NC,"Cherokee County",America/New_York,828,NA,US,35.19,-83.82,3990 +28902,STANDARD,0,Brasstown,,,NC,"Clay County",America/New_York,828,NA,US,35.02,-83.96,1150 +28903,"PO BOX",0,Culberson,,,NC,"Cherokee County",America/New_York,828,NA,US,34.99,-84.16,118 +28904,STANDARD,0,Hayesville,,,NC,"Clay County",America/New_York,828,NA,US,35.04,-83.81,7130 +28905,STANDARD,0,Marble,,,NC,"Cherokee County",America/New_York,828,NA,US,35.17,-83.92,2380 +28906,STANDARD,0,Murphy,,,NC,"Cherokee County",America/New_York,828,NA,US,35.09,-84.02,15360 +28909,STANDARD,0,Warne,,,NC,"Clay County",America/New_York,828,NA,US,34.99,-83.9,780 +29001,STANDARD,0,Alcolu,,,SC,"Clarendon County",America/New_York,803,NA,US,33.76,-80.15,1630 +29002,"PO BOX",0,Ballentine,,,SC,"Richland County",America/New_York,,NA,US,34.14,-81.06,218 +29003,STANDARD,0,Bamberg,,Midway,SC,"Bamberg County",America/New_York,803,NA,US,33.29,-81.03,4860 +29006,STANDARD,0,Batesburg,"Batesburg Leesville, Batsbrg Levil","Holtson Crossroads, Kneece, New Holland Crossroads, Samaria, Summerland",SC,"Lexington County",America/New_York,803,NA,US,33.9,-81.54,7770 +29009,STANDARD,0,Bethune,,,SC,"Kershaw County",America/New_York,843,NA,US,34.41,-80.34,1920 +29010,STANDARD,0,Bishopville,Wisacky,"Alcot, Ashland, Lucknow, Manville, Mccutchen Crossroads, Mechanicsville, Stokes Bridge",SC,"Lee County",America/New_York,803,NA,US,34.21,-80.24,8440 +29014,STANDARD,0,Blackstock,,"Cornwell, Douglass, Stover, Woodward",SC,"Chester County",America/New_York,,NA,US,34.55,-81.15,1420 +29015,STANDARD,0,Blair,,,SC,"Fairfield County",America/New_York,803,NA,US,34.49,-81.35,1240 +29016,STANDARD,0,Blythewood,,,SC,"Richland County",America/New_York,803,NA,US,34.21,-80.97,23970 +29018,STANDARD,0,Bowman,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.34,-80.68,2810 +29020,STANDARD,0,Camden,,"Antioch, Dusty Bend, Kirkland, Kirkwood, Red Hill, Shamokin",SC,"Kershaw County",America/New_York,803,NA,US,34.26,-80.61,19590 +29021,"PO BOX",0,Camden,,"Antioch, Dusty Bend, Kirkland, Kirkwood, Red Hill, Shamokin",SC,"Kershaw County",America/New_York,803,NA,US,34.56,-80.58,314 +29030,STANDARD,0,Cameron,"Lone Star",Creston,SC,"Calhoun County",America/New_York,803,NA,US,33.55,-80.71,1490 +29031,STANDARD,0,Carlisle,,"Leeds, Tuckertown",SC,"Union County",America/New_York,,NA,US,34.59,-81.46,970 +29032,STANDARD,0,Cassatt,,,SC,"Kershaw County",America/New_York,,NA,US,34.34,-80.47,3530 +29033,STANDARD,0,Cayce,"West Columbia","Cayce W Cola",SC,"Lexington County",America/New_York,803,NA,US,33.95,-81.06,9640 +29036,STANDARD,0,Chapin,,"Lake Murray",SC,"Lexington County",America/New_York,803,NA,US,34.16,-81.34,25440 +29037,STANDARD,0,Chappells,,Bigcreek,SC,"Newberry County",America/New_York,864,NA,US,34.18,-81.87,710 +29038,STANDARD,0,Cope,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.37,-81,2100 +29039,STANDARD,0,Cordova,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.43,-80.92,3040 +29040,STANDARD,0,Dalzell,,"Gaillard Crossroads, Woodrow",SC,"Sumter County",America/New_York,803,NA,US,34.03,-80.45,7810 +29041,"PO BOX",0,"Davis Station",,,SC,"Clarendon County",America/New_York,,NA,US,33.6,-80.22,169 +29042,STANDARD,0,Denmark,,,SC,"Bamberg County",America/New_York,803,NA,US,33.31,-81.13,3180 +29044,STANDARD,0,Eastover,"Mcentire Jngb","Congaree, Mcentire Air National Guard, Wateree",SC,"Richland County",America/New_York,803,NA,US,33.87,-80.69,4070 +29045,STANDARD,0,Elgin,,Pontiac,SC,"Kershaw County",America/New_York,803,NA,US,34.16,-80.79,24610 +29046,"PO BOX",0,Elliott,,,SC,"Lee County",America/New_York,803,NA,US,34.1,-80.15,312 +29047,STANDARD,0,Elloree,,Felderville,SC,"Orangeburg County",America/New_York,803,NA,US,33.52,-80.57,2720 +29048,STANDARD,0,Eutawville,,"Eutaw Springs",SC,"Orangeburg County",America/New_York,"843,803",NA,US,33.39,-80.34,3750 +29051,STANDARD,0,Gable,,,SC,"Sumter County",America/New_York,803,NA,US,33.86,-80.13,680 +29052,STANDARD,0,Gadsden,,Kingville,SC,"Richland County",America/New_York,803,NA,US,33.84,-80.74,1420 +29053,STANDARD,0,Gaston,,,SC,"Lexington County",America/New_York,803,NA,US,33.81,-81.1,15570 +29054,STANDARD,0,Gilbert,,,SC,"Lexington County",America/New_York,803,NA,US,33.92,-81.39,9710 +29055,STANDARD,0,"Great Falls",,Beckhamville,SC,"Chester County",America/New_York,803,NA,US,34.57,-80.9,3260 +29056,STANDARD,0,Greeleyville,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.57,-79.98,1650 +29058,STANDARD,0,"Heath Springs",,"Pleasant Hill, Stoneboro",SC,"Lancaster County",America/New_York,803,NA,US,34.59,-80.67,3880 +29059,STANDARD,0,"Holly Hill",,Bowyer,SC,"Orangeburg County",America/New_York,803,NA,US,33.32,-80.41,4750 +29061,STANDARD,0,Hopkins,,"Horrel Hill",SC,"Richland County",America/New_York,803,NA,US,33.88,-80.84,11930 +29062,"PO BOX",0,Horatio,,,SC,"Sumter County",America/New_York,803,NA,US,34,-80.61,206 +29063,STANDARD,0,Irmo,,,SC,"Richland County",America/New_York,,NA,US,34.09,-81.18,34750 +29065,STANDARD,0,Jenkinsville,Monticello,,SC,"Fairfield County",America/New_York,803,NA,US,34.25,-81.26,580 +29067,STANDARD,0,Kershaw,,"Abney, Spring Mills, Taxahaw, White Bluff",SC,"Lancaster County",America/New_York,803,NA,US,34.54,-80.58,7260 +29069,STANDARD,0,Lamar,,"Cypress Crossroads, Oats",SC,"Darlington County",America/New_York,843,NA,US,34.16,-80.06,4070 +29070,STANDARD,0,Leesville,"Batesburg Leesville, Batsbrg Levil","Delmar, Fairview Crossroads, Lake Murray Shores, Steedman, Summit",SC,"Lexington County",America/New_York,803,NA,US,33.91,-81.51,13550 +29071,"PO BOX",0,Lexington,,,SC,"Lexington County",America/New_York,803,NA,US,33.98,-81.22,1112 +29072,STANDARD,0,Lexington,,"Barr, Edmund, Macedon, Red Bank",SC,"Lexington County",America/New_York,803,NA,US,33.98,-81.22,59300 +29073,STANDARD,0,Lexington,,,SC,"Lexington County",America/New_York,803,NA,US,33.89,-81.24,42410 +29074,"PO BOX",0,"Liberty Hill",,,SC,"Kershaw County",America/New_York,,NA,US,34.47,-80.8,259 +29075,STANDARD,0,"Little Mountain","Little Mtn",,SC,"Newberry County",America/New_York,803,NA,US,34.19,-81.41,2780 +29078,STANDARD,0,Lugoff,,,SC,"Kershaw County",America/New_York,803,NA,US,34.22,-80.68,14880 +29079,"PO BOX",0,Lydia,,,SC,"Darlington County",America/New_York,843,NA,US,34.29,-80.11,477 +29080,STANDARD,0,Lynchburg,,"Atkins, Motbridge, Shiloh, South Lynchburg",SC,"Lee County",America/New_York,803,NA,US,34.05,-80.07,2250 +29081,STANDARD,0,Ehrhardt,,,SC,"Bamberg County",America/New_York,803,NA,US,33.09,-81.01,870 +29082,STANDARD,0,Lodge,,,SC,"Colleton County",America/New_York,843,NA,US,33.06,-80.95,450 +29101,STANDARD,0,"Mc Bee",,"Clyde, Mcbee, Robinson",SC,"Chesterfield County",America/New_York,843,NA,US,34.46,-80.25,2540 +29102,STANDARD,0,Manning,Paxville,"Bloomville, Foreston, Jordan, Wilson",SC,"Clarendon County",America/New_York,803,NA,US,33.69,-80.21,14030 +29104,STANDARD,0,Mayesville,"Saint Charles",Scottsville,SC,"Sumter County",America/New_York,803,NA,US,33.98,-80.2,1190 +29105,STANDARD,0,Monetta,,"Hibernia, Jones Crossroads, Watsonia",SC,"Aiken County",America/New_York,803,NA,US,33.84,-81.61,1330 +29107,STANDARD,0,Neeses,Livingston,,SC,"Orangeburg County",America/New_York,803,NA,US,33.53,-81.12,2260 +29108,STANDARD,0,Newberry,,,SC,"Newberry County",America/New_York,803,NA,US,34.27,-81.61,16060 +29111,STANDARD,0,"New Zion",,"Oak Dale, Oakdale, Union Crossroads, Workman",SC,"Clarendon County",America/New_York,,NA,US,33.77,-80.01,1230 +29112,STANDARD,0,North,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.61,-81.1,3590 +29113,STANDARD,0,Norway,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.44,-81.12,1150 +29114,STANDARD,0,Olanta,,"Mckenzie Crossroads",SC,"Florence County",America/New_York,843,NA,US,33.93,-79.93,1660 +29115,STANDARD,0,Orangeburg,,"Bolen Town, Jamison, Pecan Way Terrace",SC,"Orangeburg County",America/New_York,803,NA,US,33.49,-80.86,20080 +29116,"PO BOX",0,Orangeburg,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.49,-80.86,2147 +29117,UNIQUE,0,Orangeburg,,"Sc State University",SC,"Orangeburg County",America/New_York,803,NA,US,33.5,-80.85,221 +29118,STANDARD,0,Orangeburg,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.57,-80.89,12250 +29122,"PO BOX",0,Peak,,,SC,"Newberry County",America/New_York,,NA,US,34.24,-81.33,72 +29123,STANDARD,0,Pelion,,Thor,SC,"Lexington County",America/New_York,803,NA,US,33.78,-81.24,6080 +29125,STANDARD,0,Pinewood,Rimini,"Millford, Panola",SC,"Sumter County",America/New_York,803,NA,US,33.73,-80.46,2200 +29126,STANDARD,0,Pomaria,,Glympville,SC,"Newberry County",America/New_York,,NA,US,34.26,-81.41,2180 +29127,STANDARD,0,Prosperity,,"Slighs, Stockman, Stoney Hill",SC,"Newberry County",America/New_York,803,NA,US,34.21,-81.53,8130 +29128,STANDARD,0,Rembert,Borden,"Boykin, Dunkins Mill, Hagood, Pisgah, Spring Hill",SC,"Sumter County",America/New_York,,NA,US,34.09,-80.51,3540 +29129,STANDARD,0,"Ridge Spring",,,SC,"Aiken County",America/New_York,803,NA,US,33.84,-81.66,2520 +29130,STANDARD,0,Ridgeway,,"Longtown, Smallwood",SC,"Fairfield County",America/New_York,803,NA,US,34.3,-80.96,5340 +29132,"PO BOX",0,Rion,,,SC,"Fairfield County",America/New_York,803,NA,US,34.3,-81.16,59 +29133,STANDARD,0,Rowesville,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.37,-80.83,750 +29135,STANDARD,0,"Saint Matthews","Fort Motte, St Matthews","Hammond Crossroads, Singleton",SC,"Calhoun County",America/New_York,803,NA,US,33.66,-80.77,6750 +29137,STANDARD,0,Salley,Perry,"Berlin, Kitchings Mill",SC,"Aiken County",America/New_York,803,NA,US,33.56,-81.3,2040 +29138,STANDARD,0,Saluda,,"Emory, Fruit Hill, Richland Springs",SC,"Saluda County",America/New_York,864,NA,US,34,-81.77,8740 +29142,STANDARD,0,Santee,,Parlers,SC,"Orangeburg County",America/New_York,803,NA,US,33.48,-80.48,4000 +29143,"PO BOX",0,Sardinia,,,SC,"Clarendon County",America/New_York,,NA,US,33.77,-80.01,0 +29145,STANDARD,0,Silverstreet,,,SC,"Newberry County",America/New_York,,NA,US,34.21,-81.71,660 +29146,STANDARD,0,Springfield,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.49,-81.27,1290 +29147,"PO BOX",0,"State Park",,,SC,"Richland County",America/New_York,803,NA,US,34.09,-80.97,78 +29148,STANDARD,0,Summerton,,"Davis Crossroads, Goat Island Resort, St Paul",SC,"Clarendon County",America/New_York,803,NA,US,33.6,-80.35,4570 +29150,STANDARD,0,Sumter,Oswego,"Bon Air, Brogdon, Frens, Highway Four Forty One, Hoyt Heights, Stateburg",SC,"Sumter County",America/New_York,803,NA,US,33.94,-80.39,32190 +29151,"PO BOX",0,Sumter,,,SC,"Sumter County",America/New_York,803,NA,US,33.94,-80.39,2316 +29152,STANDARD,0,"Shaw AFB",,,SC,"Sumter County",America/New_York,803,NA,US,33.97,-80.45,2330 +29153,STANDARD,0,Sumter,,,SC,"Sumter County",America/New_York,803,NA,US,33.96,-80.31,12670 +29154,STANDARD,0,Sumter,,,SC,"Sumter County",America/New_York,803,NA,US,33.88,-80.44,26170 +29160,STANDARD,0,Swansea,,,SC,"Lexington County",America/New_York,803,NA,US,33.73,-81.1,6540 +29161,STANDARD,0,Timmonsville,,"Cartersville, Peniel Crossroads, Sardis",SC,"Florence County",America/New_York,843,NA,US,34.13,-79.94,8810 +29162,STANDARD,0,Turbeville,,,SC,"Clarendon County",America/New_York,843,NA,US,33.89,-80.01,2090 +29163,STANDARD,0,Vance,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.43,-80.42,1560 +29164,STANDARD,0,Wagener,,"Bethcar, H L Crossroads, New Holland, Rocky Springs, Seivern",SC,"Aiken County",America/New_York,803,NA,US,33.65,-81.36,3600 +29166,STANDARD,0,Ward,,,SC,"Saluda County",America/New_York,,NA,US,33.85,-81.73,680 +29168,STANDARD,0,Wedgefield,,,SC,"Sumter County",America/New_York,803,NA,US,33.89,-80.54,2670 +29169,STANDARD,0,"West Columbia",,"Cayce, Dixiana, Kathwood, Pineridge, Saluda Gardens, Saluda Terrace, South Congaree, Springdale, Westover Acres",SC,"Lexington County",America/New_York,803,NA,US,33.99,-81.08,16810 +29170,STANDARD,0,"West Columbia",,Cayce,SC,"Lexington County",America/New_York,803,NA,US,33.94,-81.15,19380 +29171,"PO BOX",0,"West Columbia",Cayce,,SC,"Lexington County",America/New_York,803,NA,US,33.99,-81.08,1117 +29172,STANDARD,0,"West Columbia",Cayce,,SC,"Lexington County",America/New_York,803,NA,US,33.91,-81.08,7660 +29175,STANDARD,0,Westville,,"De Kalb, Dekalb",SC,"Kershaw County",America/New_York,,NA,US,34.45,-80.58,260 +29177,"PO BOX",0,"White Rock",,,SC,"Richland County",America/New_York,,NA,US,34.14,-81.06,330 +29178,STANDARD,0,Whitmire,,,SC,"Newberry County",America/New_York,803,NA,US,34.5,-81.61,2450 +29180,STANDARD,0,Winnsboro,"White Oak","Greenbrier, Winnsboro Mills",SC,"Fairfield County",America/New_York,803,NA,US,34.37,-81.08,10510 +29201,STANDARD,0,Columbia,,"Market Center, Olympia, State Hospital",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,8300 +29202,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,33.99,-81.03,1631 +29203,STANDARD,0,Columbia,,"Bendale, Crafts Farrow, Crane Forest, Denny Terrace, Eau Claire, Fairfield Terrace, Farrow Terrace, Greenview, Haskell Heights, Hollywood Hills, Killian, Lincolnshire, Ridgewood, Stark Terrace",SC,"Richland County",America/New_York,803,NA,US,34.1,-81.04,29930 +29204,STANDARD,0,Columbia,,"Bayview, Edgewood",SC,"Richland County",America/New_York,803,NA,US,34.03,-81,13160 +29205,STANDARD,0,Columbia,,"Five Points",SC,"Richland County",America/New_York,803,NA,US,33.99,-81,16970 +29206,STANDARD,0,Columbia,,"Arcadia Lakes, Forest Acres, Forest Lake, Ravenwood, Sandwood",SC,"Richland County",America/New_York,803,NA,US,34.03,-80.96,18530 +29207,"PO BOX",0,Columbia,,"Fort Jackson",SC,"Richland County",America/New_York,803,NA,US,34.04,-80.85,467 +29208,UNIQUE,0,Columbia,,"University Of Sc, Usc",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,132 +29209,STANDARD,0,Columbia,,"Bluff Estates, Capitol View, Cedar Terrace, Eastmont, Galaxy, Hazelwood Acres, Leesburg, Mountain Brook, Twin Lake Hill",SC,"Richland County",America/New_York,803,NA,US,33.93,-80.95,28920 +29210,STANDARD,0,Columbia,,"Dutch Fork",SC,"Richland County",America/New_York,803,NA,US,34.05,-81.11,27230 +29211,"PO BOX",0,Columbia,,Capitol,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,416 +29212,STANDARD,0,Columbia,,Harbison,SC,"Lexington County",America/New_York,803,NA,US,34.08,-81.2,26330 +29214,UNIQUE,0,Columbia,,"Sc Tax Comm",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29215,UNIQUE,0,Columbia,,"Bell South",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29216,UNIQUE,0,Columbia,,"Sc Dept Of Motor Vehicles",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29217,UNIQUE,0,Columbia,,"City Of Columbia",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29218,UNIQUE,0,Columbia,,"Sc Electric And Gas",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29219,UNIQUE,0,Columbia,,"Blue Cross Blue Shield Of Sc",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,14 +29220,UNIQUE,0,Columbia,,"Baptist Medical Center",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,30 +29221,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,961 +29222,STANDARD,0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29223,STANDARD,0,Columbia,,"North Pointe, Northeast",SC,"Richland County",America/New_York,803,NA,US,34.09,-80.92,44200 +29224,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,974 +29225,UNIQUE,0,Columbia,,"Univ Of Sc Students Mail",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,97 +29226,UNIQUE,0,Columbia,,"Wells Fargo",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,26 +29227,UNIQUE,0,Columbia,,"Wells Fargo",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29228,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,157 +29229,STANDARD,0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34.14,-80.89,48540 +29230,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,677 +29240,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,359 +29250,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,417 +29260,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,442 +29290,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,611 +29292,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29301,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.01,28230 +29302,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.88,-81.84,14620 +29303,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,35,-81.96,17470 +29304,"PO BOX",0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,2180 +29305,"PO BOX",0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,518 +29306,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,12780 +29307,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.98,-81.83,15550 +29316,STANDARD,0,"Boiling Springs","Boiling Spgs, Spartanburg",,SC,"Spartanburg County",America/New_York,864,NA,US,35.04,-81.98,26240 +29318,STANDARD,1,"Boiling Springs","Boiling Spgs",Spartanburg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,55 +29319,UNIQUE,0,Spartanburg,,"Dennys Corporation, Sptbg",SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,0 +29320,"PO BOX",0,Arcadia,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.96,-81.99,644 +29321,STANDARD,0,Buffalo,,,SC,"Union County",America/New_York,864,NA,US,34.72,-81.68,2080 +29322,STANDARD,0,Campobello,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.11,-82.14,8070 +29323,STANDARD,0,Chesnee,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.14,-81.86,13740 +29324,"PO BOX",0,Clifton,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.98,-81.83,250 +29325,STANDARD,0,Clinton,,,SC,"Laurens County",America/New_York,864,NA,US,34.47,-81.86,11020 +29329,"PO BOX",0,Converse,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.99,-81.84,406 +29330,STANDARD,0,Cowpens,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.01,-81.8,6910 +29331,"PO BOX",0,"Cross Anchor",,,SC,"Spartanburg County",America/New_York,864,NA,US,34.65,-81.84,248 +29332,STANDARD,0,"Cross Hill",,,SC,"Laurens County",America/New_York,864,NA,US,34.3,-81.98,2040 +29333,"PO BOX",0,Drayton,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.97,-81.91,583 +29334,STANDARD,0,Duncan,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.13,14110 +29335,STANDARD,0,Enoree,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.65,-81.96,3730 +29336,"PO BOX",0,Fairforest,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-81.99,699 +29338,"PO BOX",0,Fingerville,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.14,-82,192 +29340,STANDARD,0,Gaffney,,,SC,"Cherokee County",America/New_York,864,NA,US,35.07,-81.65,16000 +29341,STANDARD,0,Gaffney,,,SC,"Cherokee County",America/New_York,864,NA,US,35.11,-81.71,16540 +29342,"PO BOX",0,Gaffney,,,SC,"Cherokee County",America/New_York,864,NA,US,35.07,-81.65,1747 +29346,"PO BOX",0,Glendale,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-81.84,347 +29348,"PO BOX",0,Gramling,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.07,-82.16,293 +29349,STANDARD,0,Inman,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.05,-82.09,31220 +29351,STANDARD,0,Joanna,,,SC,"Laurens County",America/New_York,864,NA,US,34.41,-81.81,1160 +29353,STANDARD,0,Jonesville,,,SC,"Union County",America/New_York,864,NA,US,34.83,-81.67,3220 +29355,STANDARD,0,Kinards,,,SC,"Laurens County",America/New_York,,NA,US,34.29,-81.83,620 +29356,STANDARD,0,Landrum,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.17,-82.18,7400 +29360,STANDARD,0,Laurens,,,SC,"Laurens County",America/New_York,864,NA,US,34.5,-82.02,16920 +29364,"PO BOX",0,Lockhart,,,SC,"Union County",America/New_York,864,NA,US,34.79,-81.46,569 +29365,STANDARD,0,Lyman,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-82.12,11980 +29368,"PO BOX",0,Mayo,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.08,-81.86,917 +29369,STANDARD,0,Moore,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.87,-82.02,14650 +29370,STANDARD,0,Mountville,,,SC,"Laurens County",America/New_York,864,NA,US,34.33,-81.95,820 +29372,STANDARD,0,Pacolet,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.89,-81.76,3630 +29373,"PO BOX",0,"Pacolet Mills",,,SC,"Spartanburg County",America/New_York,864,NA,US,34.92,-81.75,539 +29374,STANDARD,0,Pauline,"Glenn Springs",,SC,"Spartanburg County",America/New_York,,NA,US,34.83,-81.87,3180 +29375,"PO BOX",0,Reidville,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.86,-82.11,446 +29376,STANDARD,0,Roebuck,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.87,-81.96,7230 +29377,"PO BOX",0,Startex,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.09,707 +29378,"PO BOX",0,Una,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.97,-81.97,1394 +29379,STANDARD,0,Union,,,SC,"Union County",America/New_York,864,NA,US,34.72,-81.62,13820 +29384,STANDARD,0,Waterloo,,,SC,"Laurens County",America/New_York,864,NA,US,34.35,-82.05,3260 +29385,STANDARD,0,Wellford,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-82.09,7360 +29386,"PO BOX",0,"White Stone",,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-81.85,133 +29388,STANDARD,0,Woodruff,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.74,-82.03,13550 +29390,UNIQUE,1,Duncan,"Bmg Columbia Hse Video Club",,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.14,0 +29391,UNIQUE,1,Duncan,"Bmg Columbia House Acs",,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.14,0 +29395,UNIQUE,0,Jonesville,,"Disney Direct Marketing",SC,"Union County",America/New_York,864,NA,US,34.84,-81.68,0 +29401,STANDARD,0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.93,5720 +29402,"PO BOX",0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,626 +29403,STANDARD,0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.81,-79.94,13520 +29404,STANDARD,0,"Charleston AFB","Charleston, Chas AFB, Joint Base Charleston, Jt Base Chas","Chas, N Charleston, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.9,-80.06,1910 +29405,STANDARD,0,"North Charleston","Charleston, N Charleston","Chas, Chas Hgts, No Chas, Pinehaven",SC,"Charleston County",America/New_York,843,NA,US,32.86,-79.98,19460 +29406,STANDARD,0,Charleston,"N Charleston, North Charleston","Chas, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.94,-80.04,22430 +29407,STANDARD,0,Charleston,,"Chas, Saint Andrews, St Andrews",SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,29890 +29409,UNIQUE,0,Charleston,,"Chas, The Citadel",SC,"Charleston County",America/New_York,843,NA,US,32.8,-79.96,227 +29410,STANDARD,0,Hanahan,"Charleston, N Charleston, North Charleston",Chas,SC,"Berkeley County",America/New_York,843,NA,US,32.91,-80.01,17030 +29412,STANDARD,0,Charleston,,"Chas, James Island",SC,"Charleston County",America/New_York,843,NA,US,32.71,-79.95,34530 +29413,"PO BOX",0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,962 +29414,STANDARD,0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.84,-80.09,39010 +29415,"PO BOX",0,"North Charleston","Charleston, N Charleston",Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,802 +29416,"PO BOX",0,Charleston,,,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,501 +29417,"PO BOX",0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,941 +29418,STANDARD,0,"North Charleston","Charleston, N Charleston","Ch Hgts, Charleston Heights, Charleston Hts, Chas, Chas Hgts, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.91,-80.09,19970 +29419,"PO BOX",0,"North Charleston","Charleston, N Charleston","Chas, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.93,-80.1,1139 +29420,STANDARD,0,"North Charleston","Charleston, N Charleston","Chas, No Chas",SC,"Dorchester County",America/New_York,843,NA,US,32.93,-80.1,20650 +29422,"PO BOX",0,Charleston,,,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,758 +29423,"PO BOX",0,Charleston,"N Charleston, North Charleston",Chas,SC,"Charleston County",America/New_York,843,NA,US,32.98,-80.07,818 +29424,UNIQUE,0,Charleston,,"Chas, The College Of Charleston",SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.94,64 +29425,UNIQUE,0,Charleston,,"Chas, Medical University Of Sc",SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,0 +29426,STANDARD,0,"Adams Run",Jericho,Osborn,SC,"Charleston County",America/New_York,,NA,US,32.8,-80.37,1380 +29429,STANDARD,0,Awendaw,"Mount Pleasant, Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,33.03,-79.61,3710 +29430,"PO BOX",1,Bethera,"Moncks Corner",,SC,"Berkeley County",America/New_York,843,NA,US,33.2,-79.78,0 +29431,STANDARD,0,Bonneau,,,SC,"Berkeley County",America/New_York,843,NA,US,33.3,-79.95,5360 +29432,STANDARD,0,Branchville,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.25,-80.81,2100 +29433,"PO BOX",0,Canadys,,,SC,"Colleton County",America/New_York,843,NA,US,33.05,-80.62,49 +29434,STANDARD,0,Cordesville,,,SC,"Berkeley County",America/New_York,843,NA,US,33.13,-79.88,470 +29435,STANDARD,0,Cottageville,,,SC,"Colleton County",America/New_York,843,NA,US,32.93,-80.47,3280 +29436,STANDARD,0,Cross,,,SC,"Berkeley County",America/New_York,843,NA,US,33.32,-80.14,3440 +29437,STANDARD,0,Dorchester,,,SC,"Dorchester County",America/New_York,843,NA,US,33.13,-80.39,1920 +29438,STANDARD,0,"Edisto Island",Edisto,"Edisto Beach",SC,"Charleston County",America/New_York,843,NA,US,32.56,-80.28,2460 +29439,"PO BOX",0,"Folly Beach",,,SC,"Charleston County",America/New_York,843,NA,US,32.65,-79.95,1979 +29440,STANDARD,0,Georgetown,,Maryville,SC,"Georgetown County",America/New_York,843,NA,US,33.36,-79.29,21740 +29442,"PO BOX",0,Georgetown,,,SC,"Georgetown County",America/New_York,843,NA,US,33.36,-79.29,2591 +29445,STANDARD,0,"Goose Creek",,,SC,"Berkeley County",America/New_York,843,NA,US,32.98,-79.99,51940 +29446,STANDARD,0,"Green Pond",Greenpond,,SC,"Colleton County",America/New_York,843,NA,US,32.73,-80.61,850 +29447,"PO BOX",0,Grover,,,SC,"Dorchester County",America/New_York,843,NA,US,33.1,-80.59,63 +29448,STANDARD,0,Harleyville,,,SC,"Dorchester County",America/New_York,843,NA,US,33.21,-80.44,2010 +29449,STANDARD,0,Hollywood,"Meggett, Yonges Island",Rantowels,SC,"Charleston County",America/New_York,843,NA,US,32.75,-80.2,7090 +29450,STANDARD,0,Huger,,,SC,"Berkeley County",America/New_York,843,NA,US,33.09,-79.8,2760 +29451,STANDARD,0,"Isle Of Palms","Dewees Island",,SC,"Charleston County",America/New_York,843,NA,US,32.8,-79.75,4280 +29452,"PO BOX",0,Jacksonboro,,,SC,"Colleton County",America/New_York,843,NA,US,32.77,-80.45,451 +29453,STANDARD,0,Jamestown,Shulerville,,SC,"Berkeley County",America/New_York,843,NA,US,33.28,-79.69,970 +29455,STANDARD,0,"Johns Island","Kiawah Island, Seabrook Isl, Seabrook Island",,SC,"Charleston County",America/New_York,843,NA,US,32.72,-80.07,23600 +29456,STANDARD,0,Ladson,,"College Park",SC,"Dorchester County",America/New_York,843,NA,US,33,-80.1,31030 +29457,"PO BOX",0,"Johns Island",,,SC,"Charleston County",America/New_York,843,NA,US,32.72,-80.07,1005 +29458,STANDARD,0,"Mc Clellanville",Mcclellanvle,Mcclellanville,SC,"Charleston County",America/New_York,843,NA,US,33.08,-79.46,2080 +29461,STANDARD,0,"Moncks Corner",,,SC,"Berkeley County",America/New_York,843,NA,US,33.19,-79.99,36210 +29464,STANDARD,0,"Mount Pleasant","Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,32.82,-79.86,45370 +29465,"PO BOX",0,"Mount Pleasant","Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,32.82,-79.86,1175 +29466,STANDARD,0,"Mount Pleasant","Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,32.88,-79.79,39500 +29468,STANDARD,0,Pineville,,,SC,"Berkeley County",America/New_York,843,NA,US,33.42,-80.02,1420 +29469,STANDARD,0,Pinopolis,,,SC,"Berkeley County",America/New_York,843,NA,US,33.26,-80.06,780 +29470,STANDARD,0,Ravenel,,,SC,"Charleston County",America/New_York,843,NA,US,32.77,-80.22,3910 +29471,STANDARD,0,Reevesville,,,SC,"Dorchester County",America/New_York,843,NA,US,33.2,-80.64,1290 +29472,STANDARD,0,Ridgeville,,,SC,"Dorchester County",America/New_York,,NA,US,33.08,-80.3,7580 +29474,STANDARD,0,"Round O",,,SC,"Colleton County",America/New_York,843,NA,US,32.93,-80.54,1850 +29475,STANDARD,0,Ruffin,,,SC,"Colleton County",America/New_York,843,NA,US,33,-80.81,2190 +29476,"PO BOX",0,Russellville,,,SC,"Berkeley County",America/New_York,843,NA,US,33.39,-79.97,157 +29477,STANDARD,0,"Saint George",,"St George",SC,"Dorchester County",America/New_York,843,NA,US,33.18,-80.58,5310 +29479,STANDARD,0,"Saint Stephen",Alvin,,SC,"Berkeley County",America/New_York,843,NA,US,33.4,-79.92,5290 +29481,STANDARD,0,Smoaks,,,SC,"Colleton County",America/New_York,843,NA,US,33.08,-80.81,1370 +29482,STANDARD,0,"Sullivans Island","Sullivans Is",,SC,"Charleston County",America/New_York,843,NA,US,32.76,-79.85,1850 +29483,STANDARD,0,Summerville,Knightsville,,SC,"Dorchester County",America/New_York,843,NA,US,33.05,-80.19,49760 +29484,"PO BOX",0,Summerville,,Summ,SC,"Dorchester County",America/New_York,843,NA,US,33,-80.17,2060 +29485,STANDARD,0,Summerville,"Ladson, Lincolnville",Summ,SC,"Dorchester County",America/New_York,843,NA,US,33,-80.17,51600 +29486,STANDARD,0,Summerville,,"Carnes Crossroads, Carnes Xrds",SC,"Berkeley County",America/New_York,,NA,US,33.02,-80.18,25250 +29487,STANDARD,0,"Wadmalaw Island","Wadmalaw Is",,SC,"Charleston County",America/New_York,843,NA,US,32.68,-80.16,2280 +29488,STANDARD,0,Walterboro,Ritter,,SC,"Colleton County",America/New_York,843,NA,US,32.9,-80.67,18370 +29492,STANDARD,0,Charleston,"Cainhoy, Daniel Island, Wando",,SC,"Berkeley County",America/New_York,843,NA,US,32.9,-79.91,17340 +29493,"PO BOX",0,Williams,,,SC,"Colleton County",America/New_York,843,NA,US,33.03,-80.84,165 +29501,STANDARD,0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,38910 +29502,"PO BOX",0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,1833 +29503,"PO BOX",0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,876 +29504,"PO BOX",0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,1095 +29505,STANDARD,0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.13,-79.69,21420 +29506,STANDARD,0,Florence,Quinby,,SC,"Florence County",America/New_York,843,NA,US,34.21,-79.65,14830 +29510,STANDARD,0,Andrews,,,SC,"Georgetown County",America/New_York,843,NA,US,33.44,-79.56,8630 +29511,STANDARD,0,Aynor,,,SC,"Horry County",America/New_York,843,NA,US,33.99,-79.2,4850 +29512,STANDARD,0,Bennettsville,,,SC,"Marlboro County",America/New_York,843,NA,US,34.63,-79.68,12580 +29516,STANDARD,0,Blenheim,,,SC,"Marlboro County",America/New_York,843,NA,US,34.51,-79.65,620 +29518,STANDARD,0,Cades,,Hebron,SC,"Williamsburg County",America/New_York,843,NA,US,33.79,-79.85,970 +29519,"PO BOX",0,Centenary,,,SC,"Marion County",America/New_York,843,NA,US,34.03,-79.35,373 +29520,STANDARD,0,Cheraw,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.69,-79.89,11030 +29525,STANDARD,0,Clio,,,SC,"Marlboro County",America/New_York,843,NA,US,34.57,-79.54,1640 +29526,STANDARD,0,Conway,,,SC,"Horry County",America/New_York,843,NA,US,33.83,-79.04,37020 +29527,STANDARD,0,Conway,Bucksport,,SC,"Horry County",America/New_York,843,NA,US,33.79,-79.15,21210 +29528,"PO BOX",0,Conway,,,SC,"Horry County",America/New_York,843,NA,US,33.83,-79.04,1759 +29530,STANDARD,0,Coward,,,SC,"Florence County",America/New_York,843,NA,US,33.97,-79.74,2310 +29532,STANDARD,0,Darlington,,,SC,"Darlington County",America/New_York,843,NA,US,34.29,-79.87,15550 +29536,STANDARD,0,Dillon,"Floyd Dale","Floyd Dl",SC,"Dillon County",America/New_York,843,NA,US,34.42,-79.36,13120 +29540,STANDARD,0,Darlington,,,SC,"Darlington County",America/New_York,843,NA,US,34.38,-79.85,4770 +29541,STANDARD,0,Effingham,,,SC,"Florence County",America/New_York,843,NA,US,34.06,-79.74,7850 +29543,STANDARD,0,Fork,,,SC,"Dillon County",America/New_York,843,NA,US,34.28,-79.27,410 +29544,STANDARD,0,"Galivants Ferry","Aynor, Galivants Fry",,SC,"Horry County",America/New_York,843,NA,US,34.05,-79.24,5440 +29545,STANDARD,0,"Green Sea",,,SC,"Horry County",America/New_York,843,NA,US,34.16,-78.97,1390 +29546,STANDARD,0,Gresham,"Brittons Neck",,SC,"Marion County",America/New_York,843,NA,US,33.93,-79.41,1910 +29547,STANDARD,0,Hamer,"S Of Border, South Of The Border",,SC,"Dillon County",America/New_York,843,NA,US,34.5,-79.33,2270 +29550,STANDARD,0,Hartsville,,,SC,"Darlington County",America/New_York,843,NA,US,34.36,-80.08,24690 +29551,"PO BOX",0,Hartsville,,,SC,"Darlington County",America/New_York,843,NA,US,34.36,-80.08,2034 +29554,STANDARD,0,Hemingway,,Stuckey,SC,"Williamsburg County",America/New_York,843,NA,US,33.75,-79.44,7020 +29555,STANDARD,0,Johnsonville,Poston,,SC,"Florence County",America/New_York,843,NA,US,33.81,-79.44,4940 +29556,STANDARD,0,Kingstree,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.66,-79.82,9300 +29560,STANDARD,0,"Lake City",,,SC,"Florence County",America/New_York,843,NA,US,33.86,-79.75,10450 +29563,STANDARD,0,"Lake View",,,SC,"Dillon County",America/New_York,843,NA,US,34.34,-79.16,2010 +29564,STANDARD,0,Lane,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.52,-79.88,740 +29565,STANDARD,0,Latta,,,SC,"Dillon County",America/New_York,843,NA,US,34.33,-79.43,5590 +29566,STANDARD,0,"Little River",,,SC,"Horry County",America/New_York,843,NA,US,33.87,-78.63,18480 +29567,STANDARD,0,"Little Rock",,,SC,"Dillon County",America/New_York,843,NA,US,34.56,-79.43,630 +29568,STANDARD,0,Longs,,,SC,"Horry County",America/New_York,843,NA,US,33.93,-78.73,13520 +29569,STANDARD,0,Loris,,,SC,"Horry County",America/New_York,843,NA,US,34.05,-78.89,14720 +29570,STANDARD,0,"Mc Coll",,Mccoll,SC,"Marlboro County",America/New_York,843,NA,US,34.66,-79.54,2980 +29571,STANDARD,0,Marion,,,SC,"Marion County",America/New_York,843,NA,US,34.17,-79.4,12040 +29572,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.77,-78.78,9730 +29573,"PO BOX",1,Minturn,,,SC,"Dillon County",America/New_York,843,NA,US,34.51,-79.47,92 +29574,STANDARD,0,Mullins,,,SC,"Marion County",America/New_York,843,NA,US,34.2,-79.25,8480 +29575,STANDARD,0,"Myrtle Beach","Surfside Bch, Surfside Beach",Surfside,SC,"Horry County",America/New_York,843,NA,US,33.63,-78.97,15880 +29576,STANDARD,0,"Murrells Inlet","Murrells Inlt","Garden City, Garden City Beach",SC,"Horry County",America/New_York,843,NA,US,33.55,-79.05,28360 +29577,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.69,-78.89,28000 +29578,"PO BOX",0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.69,-78.89,2789 +29579,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.75,-78.92,43590 +29580,STANDARD,0,Nesmith,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.65,-79.51,910 +29581,STANDARD,0,Nichols,,,SC,"Horry County",America/New_York,843,NA,US,34.23,-79.14,3250 +29582,STANDARD,0,"North Myrtle Beach","Atlantic Bch, Atlantic Beach, Cherry Grove, Cherry Grove Beach, N Myrtle Bch, Ocean Drive","Crescent Beach, N Myrtle Beach, Ocean Dr Beach, Ocean Drive Beach",SC,"Horry County",America/New_York,843,NA,US,33.82,-78.67,15880 +29583,STANDARD,0,Pamplico,,,SC,"Florence County",America/New_York,843,NA,US,33.99,-79.56,3960 +29584,STANDARD,0,Patrick,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.57,-80.04,1810 +29585,STANDARD,0,"Pawleys Island","Litchfield, N Litchfield, Pawleys Isl","Pawleys Is",SC,"Georgetown County",America/New_York,843,NA,US,33.52,-79.14,15430 +29587,"PO BOX",0,"Myrtle Beach","Surfside Bch, Surfside Beach",,SC,"Horry County",America/New_York,843,NA,US,33.69,-78.89,1450 +29588,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.63,-79.02,41460 +29589,"PO BOX",0,Rains,,,SC,"Marion County",America/New_York,843,NA,US,34.09,-79.31,459 +29590,STANDARD,0,Salters,Trio,,SC,"Williamsburg County",America/New_York,843,NA,US,33.59,-79.85,1730 +29591,STANDARD,0,Scranton,,,SC,"Florence County",America/New_York,843,NA,US,33.91,-79.74,3730 +29592,STANDARD,0,Sellers,,,SC,"Dillon County",America/New_York,843,NA,US,34.28,-79.47,870 +29593,STANDARD,0,"Society Hill",,,SC,"Darlington County",America/New_York,843,NA,US,34.5,-79.85,1440 +29594,"PO BOX",0,Tatum,,,SC,"Marlboro County",America/New_York,843,NA,US,34.64,-79.58,226 +29596,STANDARD,0,Wallace,,,SC,"Marlboro County",America/New_York,843,NA,US,34.72,-79.84,1790 +29597,"PO BOX",0,"North Myrtle Beach","N Myrtle Bch",,SC,"Horry County",America/New_York,843,NA,US,33.82,-78.67,1107 +29598,"PO BOX",0,"North Myrtle Beach","N Myrtle Bch",,SC,"Horry County",America/New_York,843,NA,US,33.82,-78.67,528 +29601,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.85,-82.4,9000 +29602,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,1004 +29603,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,139 +29604,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,659 +29605,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.77,-82.38,30830 +29606,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,1115 +29607,STANDARD,0,Greenville,,"Batesville, Gville",SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,36610 +29608,"PO BOX",0,Greenville,,"Gville, Park Place",SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,805 +29609,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.39,26000 +29610,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,762 +29611,STANDARD,0,Greenville,Powdersville,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.46,24860 +29612,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,68 +29613,UNIQUE,0,Greenville,,"Furman University, Gville",SC,"Greenville County",America/New_York,864,NA,US,34.92,-82.44,64 +29614,UNIQUE,0,Greenville,,"Bob Jones University, Gville",SC,"Greenville County",America/New_York,864,NA,US,34.87,-82.36,368 +29615,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.86,-82.3,33490 +29616,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,752 +29617,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.47,22210 +29620,STANDARD,0,Abbeville,,,SC,"Abbeville County",America/New_York,864,NA,US,34.17,-82.37,10660 +29621,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.51,-82.64,36900 +29622,"PO BOX",0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.51,-82.64,2111 +29623,"PO BOX",0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.51,-82.64,397 +29624,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.44,-82.62,11210 +29625,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.56,-82.76,23310 +29626,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.46,-82.76,10920 +29627,STANDARD,0,Belton,,,SC,"Anderson County",America/New_York,864,NA,US,34.52,-82.49,15500 +29628,STANDARD,0,"Calhoun Falls",,,SC,"Abbeville County",America/New_York,864,NA,US,34.09,-82.59,1810 +29630,STANDARD,0,Central,,,SC,"Pickens County",America/New_York,864,NA,US,34.72,-82.78,10250 +29631,STANDARD,0,Clemson,,,SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.81,8120 +29632,UNIQUE,0,Clemson,,"Clemson University",SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.81,103 +29633,"PO BOX",0,Clemson,,,SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.81,763 +29634,UNIQUE,0,Clemson,,"Clemson University",SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.84,34 +29635,STANDARD,0,Cleveland,,,SC,"Greenville County",America/New_York,864,NA,US,35.08,-82.63,1220 +29636,"PO BOX",0,Conestee,,,SC,"Greenville County",America/New_York,864,NA,US,34.78,-82.4,441 +29638,STANDARD,0,Donalds,"Shoals Jct, Shoals Junction",,SC,"Abbeville County",America/New_York,864,NA,US,34.37,-82.34,2300 +29639,STANDARD,0,"Due West",,,SC,"Abbeville County",America/New_York,864,NA,US,34.33,-82.38,1080 +29640,STANDARD,0,Easley,,,SC,"Pickens County",America/New_York,864,NA,US,34.88,-82.58,26080 +29641,"PO BOX",0,Easley,,,SC,"Pickens County",America/New_York,864,NA,US,34.82,-82.58,1757 +29642,STANDARD,0,Easley,Powdersville,,SC,"Pickens County",America/New_York,864,NA,US,34.82,-82.58,31740 +29643,STANDARD,0,"Fair Play",,,SC,"Oconee County",America/New_York,864,NA,US,34.51,-82.98,2560 +29644,STANDARD,0,"Fountain Inn",,,SC,"Greenville County",America/New_York,864,NA,US,34.69,-82.2,18810 +29645,STANDARD,0,"Gray Court",,Ora,SC,"Laurens County",America/New_York,864,NA,US,34.6,-82.11,8830 +29646,STANDARD,0,Greenwood,,Gwd,SC,"Greenwood County",America/New_York,864,NA,US,34.19,-82.15,20940 +29647,UNIQUE,0,Greenwood,,"Gwd, Park Seed Co",SC,"Greenwood County",America/New_York,864,NA,US,34.19,-82.15,0 +29648,"PO BOX",0,Greenwood,,Gwd,SC,"Greenwood County",America/New_York,864,NA,US,34.19,-82.15,1182 +29649,STANDARD,0,Greenwood,,Gwd,SC,"Greenwood County",America/New_York,864,NA,US,34.24,-82.15,21770 +29650,STANDARD,0,Greer,,,SC,"Greenville County",America/New_York,864,NA,US,34.9,-82.26,34280 +29651,STANDARD,0,Greer,Duncan,,SC,"Greenville County",America/New_York,864,NA,US,34.93,-82.23,44010 +29652,"PO BOX",0,Greer,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.23,1385 +29653,STANDARD,0,Hodges,,,SC,"Greenwood County",America/New_York,864,NA,US,34.28,-82.24,4050 +29654,STANDARD,0,"Honea Path",,,SC,"Anderson County",America/New_York,864,NA,US,34.44,-82.39,8430 +29655,STANDARD,0,Iva,,,SC,"Anderson County",America/New_York,864,NA,US,34.3,-82.66,5850 +29656,"PO BOX",0,"La France",,,SC,"Anderson County",America/New_York,864,NA,US,34.62,-82.73,392 +29657,STANDARD,0,Liberty,,,SC,"Pickens County",America/New_York,864,NA,US,34.79,-82.69,12950 +29658,STANDARD,0,"Long Creek",,,SC,"Oconee County",America/New_York,864,NA,US,34.77,-83.25,290 +29659,"PO BOX",0,Lowndesville,,,SC,"Abbeville County",America/New_York,864,NA,US,34.21,-82.64,245 +29661,STANDARD,0,Marietta,,,SC,"Greenville County",America/New_York,,NA,US,35.03,-82.49,4610 +29662,STANDARD,0,Mauldin,,,SC,"Greenville County",America/New_York,864,NA,US,34.78,-82.3,13440 +29664,STANDARD,0,"Mountain Rest",,,SC,"Oconee County",America/New_York,864,NA,US,34.86,-83.15,1320 +29665,"PO BOX",0,Newry,,,SC,"Oconee County",America/New_York,864,NA,US,34.73,-82.91,158 +29666,STANDARD,0,"Ninety Six",,,SC,"Greenwood County",America/New_York,864,NA,US,34.17,-82.02,5740 +29667,STANDARD,0,Norris,Cateechee,,SC,"Pickens County",America/New_York,864,NA,US,34.76,-82.75,350 +29669,STANDARD,0,Pelzer,,,SC,"Anderson County",America/New_York,864,NA,US,34.64,-82.46,10980 +29670,STANDARD,0,Pendleton,,,SC,"Anderson County",America/New_York,864,NA,US,34.65,-82.78,7640 +29671,STANDARD,0,Pickens,,,SC,"Pickens County",America/New_York,864,NA,US,34.88,-82.7,15540 +29672,STANDARD,0,Seneca,,,SC,"Oconee County",America/New_York,864,NA,US,34.75,-82.93,10820 +29673,STANDARD,0,Piedmont,Powdersville,,SC,"Greenville County",America/New_York,864,NA,US,34.71,-82.46,25570 +29675,"PO BOX",0,Richland,,,SC,"Oconee County",America/New_York,864,NA,US,34.7,-83.02,116 +29676,STANDARD,0,Salem,,,SC,"Oconee County",America/New_York,864,NA,US,34.89,-82.97,4980 +29677,"PO BOX",0,"Sandy Springs",,,SC,"Anderson County",America/New_York,864,NA,US,34.59,-82.75,641 +29678,STANDARD,0,Seneca,,,SC,"Oconee County",America/New_York,864,NA,US,34.68,-82.95,17680 +29679,"PO BOX",0,Seneca,,,SC,"Oconee County",America/New_York,864,NA,US,34.68,-82.95,1185 +29680,STANDARD,0,Simpsonville,,,SC,"Greenville County",America/New_York,864,NA,US,34.69,-82.29,31890 +29681,STANDARD,0,Simpsonville,,,SC,"Greenville County",America/New_York,864,NA,US,34.73,-82.25,59040 +29682,STANDARD,0,"Six Mile",,,SC,"Pickens County",America/New_York,864,NA,US,34.8,-82.81,3570 +29683,"PO BOX",0,Slater,,,SC,"Greenville County",America/New_York,864,NA,US,35.03,-82.49,389 +29684,STANDARD,0,Starr,,,SC,"Anderson County",America/New_York,864,NA,US,34.37,-82.69,4070 +29685,STANDARD,0,Sunset,,,SC,"Pickens County",America/New_York,864,NA,US,34.99,-82.84,1500 +29686,STANDARD,0,Tamassee,,,SC,"Oconee County",America/New_York,864,NA,US,34.96,-83.05,790 +29687,STANDARD,0,Taylors,,,SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.31,39060 +29688,"PO BOX",0,Tigerville,,,SC,"Greenville County",America/New_York,864,NA,US,35.07,-82.37,298 +29689,STANDARD,0,Townville,,,SC,"Anderson County",America/New_York,864,NA,US,34.56,-82.89,3660 +29690,STANDARD,0,"Travelers Rest","Travelers Rst",,SC,"Greenville County",America/New_York,864,NA,US,34.96,-82.43,19050 +29691,STANDARD,0,Walhalla,,,SC,"Oconee County",America/New_York,864,NA,US,34.77,-83.06,8930 +29692,STANDARD,0,"Ware Shoals",,,SC,"Laurens County",America/New_York,864,NA,US,34.39,-82.24,3680 +29693,STANDARD,0,Westminster,Madison,,SC,"Oconee County",America/New_York,864,NA,US,34.66,-83.09,11940 +29695,UNIQUE,0,Hodges,,"Wayside Nurseries",SC,"Greenwood County",America/New_York,864,NA,US,34.28,-82.24,0 +29696,STANDARD,0,"West Union",,,SC,"Oconee County",America/New_York,864,NA,US,34.76,-83.04,4270 +29697,STANDARD,0,Williamston,,,SC,"Anderson County",America/New_York,864,NA,US,34.61,-82.47,11560 +29698,UNIQUE,1,Greenville,,"Bmg Columbia Hse Music Club",SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.09,0 +29702,STANDARD,0,Blacksburg,"Cherokee Falls, Cherokee Fls, Kings Creek",,SC,"Cherokee County",America/New_York,864,NA,US,35.12,-81.51,8010 +29703,"PO BOX",0,"Bowling Green",,,SC,"York County",America/New_York,803,NA,US,35.1,-81.22,389 +29704,STANDARD,0,Catawba,,,SC,"York County",America/New_York,803,NA,US,34.85,-80.91,3220 +29706,STANDARD,0,Chester,,,SC,"Chester County",America/New_York,803,NA,US,34.7,-81.21,16030 +29707,STANDARD,0,"Fort Mill","Indian Land","Ft Mill",SC,"Lancaster County",America/New_York,803,NA,US,34.99,-80.86,30080 +29708,STANDARD,0,"Fort Mill","Tega Cay","Ft Mill",SC,"York County",America/New_York,803,NA,US,35.05,-80.99,37990 +29709,STANDARD,0,Chesterfield,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.73,-80.08,4980 +29710,STANDARD,0,Clover,"Lake Wylie, River Hills","Lk Wylie",SC,"York County",America/New_York,803,NA,US,35.11,-81.22,35170 +29712,STANDARD,0,Edgemoor,,,SC,"Chester County",America/New_York,803,NA,US,34.8,-81.01,2100 +29714,STANDARD,0,"Fort Lawn",,"Ft Lawn",SC,"Chester County",America/New_York,803,NA,US,34.7,-80.89,2420 +29715,STANDARD,0,"Fort Mill",,,SC,"York County",America/New_York,803,NA,US,35,-80.94,37350 +29716,"PO BOX",0,"Fort Mill",,,SC,"York County",America/New_York,803,NA,US,35,-80.94,889 +29717,STANDARD,0,"Hickory Grove",,,SC,"York County",America/New_York,803,NA,US,34.98,-81.41,1170 +29718,STANDARD,0,Jefferson,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.65,-80.38,3040 +29720,STANDARD,0,Lancaster,,,SC,"Lancaster County",America/New_York,803,NA,US,34.72,-80.77,41640 +29721,"PO BOX",0,Lancaster,,,SC,"Lancaster County",America/New_York,803,NA,US,34.72,-80.77,3087 +29722,UNIQUE,0,Lancaster,,"Hosiery Corp Of America",SC,"Lancaster County",America/New_York,803,NA,US,34.72,-80.77,0 +29724,"PO BOX",0,Lando,,,SC,"Chester County",America/New_York,803,NA,US,34.77,-81.01,55 +29726,STANDARD,0,"Mc Connells",,Mcconnells,SC,"York County",America/New_York,803,NA,US,34.86,-81.22,1620 +29727,STANDARD,0,"Mount Croghan",,,SC,"Chesterfield County",America/New_York,843,NA,US,34.76,-80.22,1230 +29728,STANDARD,0,Pageland,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.77,-80.38,7460 +29729,STANDARD,0,Richburg,Lando,,SC,"Chester County",America/New_York,803,NA,US,34.71,-81.02,2040 +29730,STANDARD,0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.93,-81.02,47710 +29731,"PO BOX",0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.93,-81.02,1492 +29732,STANDARD,0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.97,-81.08,53030 +29733,UNIQUE,0,"Rock Hill",,"Winthrop University, Withrop College",SC,"York County",America/New_York,803,NA,US,34.94,-81.03,119 +29734,STANDARD,0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.93,-81.02,0 +29741,STANDARD,0,Ruby,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.74,-80.17,1490 +29742,STANDARD,0,Sharon,,,SC,"York County",America/New_York,"803,864",NA,US,34.95,-81.34,2060 +29743,STANDARD,0,Smyrna,,,SC,"York County",America/New_York,"864,803",NA,US,35.04,-81.41,1130 +29744,"PO BOX",0,"Van Wyck",,,SC,"Lancaster County",America/New_York,803,NA,US,34.91,-80.84,370 +29745,STANDARD,0,York,,,SC,"York County",America/New_York,803,NA,US,34.99,-81.23,28710 +29801,STANDARD,0,Aiken,Vaucluse,,SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,21060 +29802,"PO BOX",0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,2023 +29803,STANDARD,0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.49,-81.76,35700 +29804,"PO BOX",0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,671 +29805,STANDARD,0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.65,-81.6,5140 +29808,UNIQUE,0,Aiken,,"Ei Dupont Corp",SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,0 +29809,STANDARD,0,"New Ellenton",,,SC,"Aiken County",America/New_York,803,NA,US,33.41,-81.68,2020 +29810,STANDARD,0,Allendale,,Seigling,SC,"Allendale County",America/New_York,803,NA,US,33,-81.3,3270 +29812,STANDARD,0,Barnwell,Kline,Snelling,SC,"Barnwell County",America/New_York,803,NA,US,33.24,-81.36,9100 +29813,"PO BOX",0,Hilda,,,SC,"Barnwell County",America/New_York,803,NA,US,33.27,-81.24,75 +29816,"PO BOX",0,Bath,,,SC,"Aiken County",America/New_York,803,NA,US,33.5,-81.87,1309 +29817,STANDARD,0,Blackville,,,SC,"Barnwell County",America/New_York,803,NA,US,33.36,-81.28,3240 +29819,STANDARD,0,Bradley,,"Callison, Promised Land",SC,"Greenwood County",America/New_York,864,NA,US,34.04,-82.21,1190 +29821,STANDARD,0,"Clarks Hill",,,SC,"McCormick County",America/New_York,864,NA,US,33.63,-82.14,1190 +29822,"PO BOX",0,Clearwater,,,SC,"Aiken County",America/New_York,803,NA,US,33.5,-81.9,1588 +29824,STANDARD,0,Edgefield,,"Cleora, Meeting Street, Pleasant Lane",SC,"Edgefield County",America/New_York,803,NA,US,33.78,-81.93,4980 +29826,"PO BOX",0,Elko,,,SC,"Barnwell County",America/New_York,803,NA,US,33.39,-81.36,253 +29827,STANDARD,0,Fairfax,,Barton,SC,"Allendale County",America/New_York,803,NA,US,32.95,-81.23,2130 +29828,STANDARD,0,Gloverville,,,SC,"Aiken County",America/New_York,803,NA,US,33.52,-81.83,710 +29829,STANDARD,0,Graniteville,,,SC,"Aiken County",America/New_York,803,NA,US,33.56,-81.81,10630 +29831,STANDARD,0,Jackson,,"Dunbarton, Savannah River Plant",SC,"Aiken County",America/New_York,803,NA,US,33.32,-81.79,3170 +29832,STANDARD,0,Johnston,,,SC,"Edgefield County",America/New_York,803,NA,US,33.83,-81.8,4300 +29834,"PO BOX",0,Langley,,"Breeze Hill",SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.86,1409 +29835,STANDARD,0,"Mc Cormick",,"Bordeaux, Britts, Willington",SC,"McCormick County",America/New_York,864,NA,US,33.91,-82.29,5070 +29836,STANDARD,0,Martin,,,SC,"Allendale County",America/New_York,803,NA,US,33.06,-81.47,300 +29838,STANDARD,0,Modoc,,Colliers,SC,"Edgefield County",America/New_York,864,NA,US,33.75,-82.15,460 +29839,"PO BOX",0,Montmorenci,,,SC,"Aiken County",America/New_York,803,NA,US,33.52,-81.63,484 +29840,STANDARD,0,"Mount Carmel",,,SC,"McCormick County",America/New_York,864,NA,US,34,-82.5,190 +29841,STANDARD,0,"North Augusta","Beech Island, Belvedere, Clearwater",,SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.95,27170 +29842,STANDARD,0,"Beech Island",Clearwater,,SC,"Aiken County",America/New_York,803,NA,US,33.48,-81.89,6330 +29843,STANDARD,0,Olar,,,SC,"Bamberg County",America/New_York,803,NA,US,33.18,-81.18,860 +29844,"PO BOX",0,Parksville,,,SC,"McCormick County",America/New_York,864,NA,US,33.78,-82.21,145 +29845,STANDARD,0,"Plum Branch",Parksville,,SC,"McCormick County",America/New_York,864,NA,US,33.84,-82.25,880 +29846,"PO BOX",0,Sycamore,,,SC,"Allendale County",America/New_York,803,NA,US,33.03,-81.22,115 +29847,STANDARD,0,Trenton,,Eureka,SC,"Edgefield County",America/New_York,,NA,US,33.74,-81.84,4040 +29848,STANDARD,0,Troy,,,SC,"Greenwood County",America/New_York,864,NA,US,33.97,-82.08,650 +29849,STANDARD,0,Ulmer,,,SC,"Allendale County",America/New_York,803,NA,US,33.09,-81.2,260 +29850,"PO BOX",0,Vaucluse,,,SC,"Aiken County",America/New_York,803,NA,US,33.61,-81.82,169 +29851,STANDARD,0,Warrenville,,"Burnettown, Mixville, Stiefeltown",SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.82,6760 +29853,STANDARD,0,Williston,,"White Pond",SC,"Barnwell County",America/New_York,803,NA,US,33.4,-81.42,5040 +29856,STANDARD,0,Windsor,,,SC,"Aiken County",America/New_York,803,NA,US,33.48,-81.51,2260 +29860,STANDARD,0,"North Augusta",,,SC,"Edgefield County",America/New_York,803,NA,US,33.61,-81.98,14830 +29861,"PO BOX",0,"North Augusta",,,SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.95,1547 +29899,UNIQUE,0,"Mc Cormick",,"Mccormick Correctional Inst",SC,"McCormick County",America/New_York,864,NA,US,33.93,-82.25,0 +29901,"PO BOX",0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.42,-80.68,1623 +29902,STANDARD,0,Beaufort,,"Laurel Bay, Naval Hospital",SC,"Beaufort County",America/New_York,843,NA,US,32.33,-80.68,12420 +29903,"PO BOX",0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.42,-80.68,1428 +29904,"PO BOX",0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.46,-80.72,420 +29905,"PO BOX",0,"Parris Island",Beaufort,,SC,"Beaufort County",America/New_York,843,NA,US,32.35,-80.68,240 +29906,STANDARD,0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.45,-80.75,18510 +29907,STANDARD,0,Beaufort,"Ladys Island","Ladies Island",SC,"Beaufort County",America/New_York,843,NA,US,32.43,-80.64,12410 +29909,STANDARD,0,Okatie,Bluffton,"Callawassie Island, Spring Island, Sun City",SC,"Beaufort County",America/New_York,843,NA,US,32.3,-80.92,20520 +29910,STANDARD,0,Bluffton,,"Brighton Beach, Pritchardville",SC,"Beaufort County",America/New_York,843,NA,US,32.23,-80.86,44260 +29911,STANDARD,0,Brunson,,,SC,"Hampton County",America/New_York,803,NA,US,32.92,-81.18,1240 +29912,STANDARD,0,Coosawhatchie,,,SC,"Jasper County",America/New_York,843,NA,US,32.58,-80.93,18 +29913,"PO BOX",0,Crocketville,,,SC,"Hampton County",America/New_York,803,NA,US,32.91,-81.07,0 +29914,"PO BOX",0,Dale,,,SC,"Beaufort County",America/New_York,843,NA,US,32.55,-80.69,31 +29915,STANDARD,0,"Daufuskie Island","Daufuskie Is",,SC,"Beaufort County",America/New_York,843,NA,US,32.12,-80.86,440 +29916,STANDARD,0,"Early Branch",,"Barkersville, Fechtig, Grays",SC,"Hampton County",America/New_York,843,NA,US,32.74,-80.92,1150 +29918,STANDARD,0,Estill,,Nixville,SC,"Hampton County",America/New_York,803,NA,US,32.75,-81.24,3310 +29920,STANDARD,0,"Saint Helena Island","Fripp Island, St Helena Is","Dataw Island, Frogmore, Harbor Isl",SC,"Beaufort County",America/New_York,843,NA,US,32.38,-80.56,8110 +29921,"PO BOX",0,Furman,,,SC,"Hampton County",America/New_York,803,NA,US,32.68,-81.18,244 +29922,STANDARD,0,Garnett,,"Brighton, Robertville, Shirley",SC,"Hampton County",America/New_York,803,NA,US,32.6,-81.24,730 +29923,"PO BOX",0,Gifford,,,SC,"Hampton County",America/New_York,803,NA,US,32.86,-81.23,313 +29924,STANDARD,0,Hampton,,,SC,"Hampton County",America/New_York,803,NA,US,32.86,-81.1,3400 +29925,"PO BOX",0,"Hilton Head Island","Hilton Head",,SC,"Beaufort County",America/New_York,843,NA,US,32.19,-80.74,1988 +29926,STANDARD,0,"Hilton Head Island","Hilton Head",,SC,"Beaufort County",America/New_York,843,NA,US,32.19,-80.74,22420 +29927,STANDARD,0,Hardeeville,,"Bellinger, Harbville, Limehouse, Purysburgh",SC,"Jasper County",America/New_York,843,NA,US,32.27,-81.07,7440 +29928,STANDARD,0,"Hilton Head Island","Hilton Head",Fairfield,SC,"Beaufort County",America/New_York,843,NA,US,32.16,-80.76,13550 +29929,STANDARD,0,Islandton,,"Ashton, Moselle",SC,"Colleton County",America/New_York,843,NA,US,32.9,-80.93,900 +29931,"PO BOX",0,Lobeco,,,SC,"Beaufort County",America/New_York,843,NA,US,32.55,-80.74,467 +29932,STANDARD,0,Luray,,,SC,"Hampton County",America/New_York,803,NA,US,32.82,-81.35,230 +29933,"PO BOX",0,Miley,,,SC,"Hampton County",America/New_York,803,NA,US,32.94,-81.03,0 +29934,STANDARD,0,Pineland,,,SC,"Jasper County",America/New_York,,NA,US,32.6,-81.15,800 +29935,STANDARD,0,"Port Royal",,,SC,"Beaufort County",America/New_York,843,NA,US,32.38,-80.69,3240 +29936,STANDARD,0,Ridgeland,Coosawhatchie,"Gillisonville, Mitchellville, Switzerland",SC,"Jasper County",America/New_York,843,NA,US,32.48,-80.98,11120 +29938,"PO BOX",0,"Hilton Head Island","Hilton Head",,SC,"Beaufort County",America/New_York,843,NA,US,32.19,-80.74,1784 +29939,"PO BOX",0,Scotia,Estill,,SC,"Hampton County",America/New_York,803,NA,US,32.68,-81.24,122 +29940,STANDARD,0,Seabrook,,Coosaw,SC,"Beaufort County",America/New_York,843,NA,US,32.56,-80.73,2910 +29941,STANDARD,0,Sheldon,,,SC,"Beaufort County",America/New_York,843,NA,US,32.55,-80.81,530 +29943,STANDARD,0,Tillman,,Tarboro,SC,"Jasper County",America/New_York,843,NA,US,32.46,-81.1,470 +29944,STANDARD,0,Varnville,,,SC,"Hampton County",America/New_York,803,NA,US,32.85,-81.08,3810 +29945,STANDARD,0,Yemassee,,"Blake, Gardens Corner, Pocataligo, Salkehatchie, White Hall, Whitehall",SC,"Hampton County",America/New_York,843,NA,US,32.69,-80.85,3370 +30002,STANDARD,0,"Avondale Estates","Avondale Est",,GA,"DeKalb County",America/New_York,"404,678",NA,US,33.77,-84.26,5640 +30003,"PO BOX",0,Norcross,,Rockbridge,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,551 +30004,STANDARD,0,Alpharetta,Milton,,GA,"Fulton County",America/New_York,678,NA,US,34.14,-84.29,64590 +30005,STANDARD,0,Alpharetta,"Johns Creek",,GA,"Fulton County",America/New_York,678,NA,US,34.09,-84.22,36680 +30006,"PO BOX",0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,1112 +30007,"PO BOX",0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,259 +30008,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.9,-84.59,25700 +30009,STANDARD,0,Alpharetta,Milton,,GA,"Fulton County",America/New_York,678,NA,US,34.08,-84.31,18080 +30010,"PO BOX",0,Norcross,"Peachtree Cor, Peachtree Corners",,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,784 +30011,STANDARD,0,Auburn,Carl,,GA,"Barrow County",America/New_York,678,NA,US,34.01,-83.83,16340 +30012,STANDARD,0,Conyers,,,GA,"Rockdale County",America/New_York,"470,678,770",NA,US,33.66,-84.01,23960 +30013,STANDARD,0,Conyers,,,GA,"Rockdale County",America/New_York,"470,678,770",NA,US,33.65,-83.97,25020 +30014,STANDARD,0,Covington,Porterdale,"Walnut Grove",GA,"Newton County",America/New_York,"470,678,770",NA,US,33.6,-83.85,31960 +30015,"PO BOX",0,Covington,,,GA,"Newton County",America/New_York,678,NA,US,33.6,-83.85,1785 +30016,STANDARD,0,Covington,Porterdale,,GA,"Newton County",America/New_York,"470,678,770",NA,US,33.52,-83.93,50420 +30017,STANDARD,0,Grayson,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.89,-83.95,23440 +30018,"PO BOX",0,Jersey,,,GA,"Walton County",America/New_York,678,NA,US,33.71,-83.8,286 +30019,STANDARD,0,Dacula,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.98,-83.88,47410 +30021,STANDARD,0,Clarkston,,,GA,"DeKalb County",America/New_York,"404,678",NA,US,33.81,-84.24,21900 +30022,STANDARD,0,Alpharetta,"Johns Creek",,GA,"Fulton County",America/New_York,678,NA,US,34.06,-84.27,62820 +30023,"PO BOX",0,Alpharetta,,,GA,"Fulton County",America/New_York,678,NA,US,34.06,-84.27,643 +30024,STANDARD,0,Suwanee,"Johns Creek",,GA,"Gwinnett County",America/New_York,"470,678",NA,US,34.05,-84.07,81610 +30025,STANDARD,0,"Social Circle",,,GA,"Walton County",America/New_York,"470,678,770",NA,US,33.65,-83.71,9120 +30026,"PO BOX",0,"North Metro",Duluth,,GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,15 +30028,STANDARD,0,Cumming,,,GA,"Forsyth County",America/New_York,"470,678,770",NA,US,34.29,-84.18,28660 +30029,"PO BOX",0,"North Metro",Duluth,,GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,0 +30030,STANDARD,0,Decatur,,,GA,"DeKalb County",America/New_York,404,NA,US,33.77,-84.29,27450 +30031,"PO BOX",0,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.77,-84.29,1305 +30032,STANDARD,0,Decatur,,"Belvedere, Dunaire",GA,"DeKalb County",America/New_York,404,NA,US,33.74,-84.26,34620 +30033,STANDARD,0,Decatur,,"North Decatur, Vista Grove",GA,"DeKalb County",America/New_York,404,NA,US,33.81,-84.28,25790 +30034,STANDARD,0,Decatur,,,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.69,-84.25,37900 +30035,STANDARD,0,Decatur,,Snapfinger,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.72,-84.2,18260 +30036,"PO BOX",0,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.77,-84.29,839 +30037,"PO BOX",0,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.77,-84.29,1054 +30038,STANDARD,0,Lithonia,Stonecrest,,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.67,-84.14,34630 +30039,STANDARD,0,Snellville,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.8,-84.03,44310 +30040,STANDARD,0,Cumming,,,GA,"Forsyth County",America/New_York,"470,678,770",NA,US,34.2,-84.13,75040 +30041,STANDARD,0,Cumming,,,GA,"Forsyth County",America/New_York,"470,678,770",NA,US,34.2,-84.1,68880 +30042,"PO BOX",0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-83.99,737 +30043,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34,-84.01,79510 +30044,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.92,-84.07,83580 +30045,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,33.94,-83.93,39190 +30046,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,470,NA,US,33.94,-83.99,34780 +30047,STANDARD,0,Lilburn,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.88,-84.13,62210 +30048,"PO BOX",0,Lilburn,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.88,-84.13,1316 +30049,"PO BOX",0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.64,-84.26,725 +30052,STANDARD,0,Loganville,"Walnut Grove",,GA,"Walton County",America/New_York,,NA,US,33.83,-83.89,67170 +30054,STANDARD,0,Oxford,,,GA,"Newton County",America/New_York,678,NA,US,33.62,-83.87,10390 +30055,STANDARD,0,Mansfield,,,GA,"Jasper County",America/New_York,,NA,US,33.51,-83.73,3230 +30056,STANDARD,0,Newborn,,,GA,"Jasper County",America/New_York,,NA,US,33.51,-83.69,2300 +30058,STANDARD,0,Lithonia,Stonecrest,,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.71,-84.1,48920 +30060,STANDARD,0,Marietta,,"Atlanta Naval Air Station, Dobbins AFB, Dobbins Air Force Base",GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.95,-84.54,31060 +30061,"PO BOX",0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,1272 +30062,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"678,770",NA,US,34,-84.47,62910 +30063,UNIQUE,0,Marietta,,Lockheed,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,41 +30064,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.94,-84.61,46240 +30065,"PO BOX",0,Marietta,,Mreta,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,611 +30066,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,34.03,-84.51,54720 +30067,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"678,770",NA,US,33.93,-84.46,38460 +30068,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"678,770",NA,US,33.97,-84.43,33330 +30069,UNIQUE,0,Marietta,"Dobbins AFB","Dobbins Air Force Base",GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,41 +30070,"PO BOX",0,Porterdale,,,GA,"Newton County",America/New_York,678,NA,US,33.57,-83.89,1069 +30071,STANDARD,0,Norcross,"Berkeley Lake, Peachtree Cor, Peachtree Corners",,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,22320 +30072,"PO BOX",0,"Pine Lake",,,GA,"DeKalb County",America/New_York,678,NA,US,33.79,-84.21,1132 +30073,STANDARD,1,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.7,-84.25,206 +30074,"PO BOX",0,Redan,Lithonia,,GA,"Dekalb County",America/New_York,678,NA,US,33.73,-84.15,503 +30075,STANDARD,0,Roswell,"Mountain Park","Sandy Plains",GA,"Fulton County",America/New_York,678,NA,US,34.03,-84.35,53880 +30076,STANDARD,0,Roswell,,,GA,"Fulton County",America/New_York,678,NA,US,34.03,-84.31,39820 +30077,"PO BOX",0,Roswell,,,GA,"Fulton County",America/New_York,678,NA,US,34.03,-84.35,937 +30078,STANDARD,0,Snellville,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.85,-84,35210 +30079,STANDARD,0,Scottdale,,,GA,"DeKalb County",America/New_York,"404,678",NA,US,33.79,-84.26,2820 +30080,STANDARD,0,Smyrna,,,GA,"Cobb County",America/New_York,678,NA,US,33.86,-84.51,44280 +30081,"PO BOX",0,Smyrna,,,GA,"Cobb County",America/New_York,678,NA,US,33.86,-84.51,1158 +30082,STANDARD,0,Smyrna,,,GA,"Cobb County",America/New_York,678,NA,US,33.85,-84.54,24780 +30083,STANDARD,0,"Stone Mountain","Stone Mtn","Memorial Square, St Mountain, St Mtn",GA,"DeKalb County",America/New_York,"678,770,404",NA,US,33.8,-84.17,47380 +30084,STANDARD,0,Tucker,,,GA,"DeKalb County",America/New_York,678,NA,US,33.85,-84.22,35060 +30085,"PO BOX",0,Tucker,,,GA,"Dekalb County",America/New_York,678,NA,US,33.85,-84.22,828 +30086,"PO BOX",0,"Stone Mountain","Stone Mtn","St Mountain",GA,"Dekalb County",America/New_York,404,NA,US,33.8,-84.17,1204 +30087,STANDARD,0,"Stone Mountain","Smoke Rise, Stone Mtn",,GA,"DeKalb County",America/New_York,"404,678,770",NA,US,33.81,-84.13,34590 +30088,STANDARD,0,"Stone Mountain","Stone Mtn",,GA,"DeKalb County",America/New_York,"404,678,770",NA,US,33.76,-84.18,22840 +30090,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.95,-84.54,0 +30091,"PO BOX",0,Norcross,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,903 +30092,STANDARD,0,"Peachtree Corners","Berkeley Lake, Norcross, Peachtree Cor",Parkway,GA,"Gwinnett County",America/New_York,678,NA,US,33.97,-84.23,32090 +30093,STANDARD,0,Norcross,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.91,-84.18,44520 +30094,STANDARD,0,Conyers,,,GA,"Rockdale County",America/New_York,"770,470,678",NA,US,33.61,-84.05,28310 +30095,"PO BOX",0,Duluth,,,GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,747 +30096,STANDARD,0,Duluth,"Berkeley Lake, Peachtree Cor, Peachtree Corners",,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34,-84.15,60360 +30097,STANDARD,0,Duluth,"Johns Creek, Peachtree Cor, Peachtree Corners",,GA,"Fulton County",America/New_York,"470,678,770",NA,US,34.03,-84.15,46340 +30098,UNIQUE,0,Duluth,,"State Farm Insurance Co",GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,28 +30099,UNIQUE,0,Duluth,,"Primerica Financial Services",GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,0 +30101,STANDARD,0,Acworth,,"Oak Grove",GA,"Cobb County",America/New_York,"678,770",NA,US,34.05,-84.67,57910 +30102,STANDARD,0,Acworth,,,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.1,-84.63,38510 +30103,STANDARD,0,Adairsville,,,GA,"Bartow County",America/New_York,"470,678,770",NA,US,34.36,-84.91,13110 +30104,STANDARD,0,Aragon,,,GA,"Polk County",America/New_York,678,NA,US,34.04,-85.05,4040 +30105,STANDARD,0,Armuchee,,,GA,"Floyd County",America/New_York,706,NA,US,34.47,-85.21,2110 +30106,STANDARD,0,Austell,,,GA,"Cobb County",America/New_York,"770,678",NA,US,33.82,-84.64,19140 +30107,STANDARD,0,"Ball Ground",,,GA,"Cherokee County",America/New_York,"770,678",NA,US,34.33,-84.37,14670 +30108,STANDARD,0,Bowdon,,,GA,"Carroll County",America/New_York,"470,678,770",NA,US,33.53,-85.25,6690 +30109,"PO BOX",0,"Bowdon Junction","Bowdon Jct",,GA,"Carroll County",America/New_York,678,NA,US,33.65,-85.13,151 +30110,STANDARD,0,Bremen,,,GA,"Haralson County",America/New_York,"678,770",NA,US,33.7,-85.15,11820 +30111,"PO BOX",0,Clarkdale,,,GA,"Cobb County",America/New_York,678,NA,US,33.82,-84.65,314 +30112,"PO BOX",0,Carrollton,,,GA,"Carroll County",America/New_York,678,NA,US,33.58,-85.08,1616 +30113,STANDARD,0,Buchanan,,,GA,"Haralson County",America/New_York,"678,770",NA,US,33.8,-85.18,5090 +30114,STANDARD,0,Canton,"Holly Springs",,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.24,-84.49,51740 +30115,STANDARD,0,Canton,"Holly Springs",,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.2,-84.4,44680 +30116,STANDARD,0,Carrollton,,,GA,"Carroll County",America/New_York,"678,770",NA,US,33.54,-85,20630 +30117,STANDARD,0,Carrollton,,"University Of West Georgia",GA,"Carroll County",America/New_York,"678,770",NA,US,33.58,-85.07,27610 +30118,UNIQUE,0,Carrollton,,"University Of West Georgia",GA,"Carroll County",America/New_York,678,NA,US,33.57,-85.1,101 +30119,UNIQUE,0,Carrollton,,Southwire,GA,"Carroll County",America/New_York,678,NA,US,33.58,-85.07,0 +30120,STANDARD,0,Cartersville,Euharlee,"North Corners",GA,"Bartow County",America/New_York,"470,678,770",NA,US,34.16,-84.8,37530 +30121,STANDARD,0,Cartersville,Emerson,,GA,"Bartow County",America/New_York,"470,678,770",NA,US,34.21,-84.78,19900 +30122,STANDARD,0,"Lithia Springs","Lithia Spgs",,GA,"Douglas County",America/New_York,678,NA,US,33.77,-84.64,20410 +30123,"PO BOX",0,Cassville,,,GA,"Bartow County",America/New_York,,NA,US,34.23,-84.84,906 +30124,STANDARD,0,"Cave Spring",,,GA,"Floyd County",America/New_York,706,NA,US,34.1,-85.33,2440 +30125,STANDARD,0,Cedartown,,,GA,"Polk County",America/New_York,"470,678,770",NA,US,34.01,-85.25,20320 +30126,STANDARD,0,Mableton,Smyrna,,GA,"Cobb County",America/New_York,678,NA,US,33.81,-84.56,35960 +30127,STANDARD,0,"Powder Springs","Powder Spgs",,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.86,-84.68,63510 +30129,"PO BOX",0,Coosa,,,GA,"Floyd County",America/New_York,706,NA,US,34.22,-85.39,434 +30132,STANDARD,0,Dallas,,,GA,"Paulding County",America/New_York,"678,770",NA,US,33.91,-84.83,40960 +30133,"PO BOX",0,Douglasville,,,GA,"Douglas County",America/New_York,678,NA,US,33.74,-84.74,1123 +30134,STANDARD,0,Douglasville,,,GA,"Douglas County",America/New_York,"678,770",NA,US,33.74,-84.74,40210 +30135,STANDARD,0,Douglasville,,,GA,"Douglas County",America/New_York,"678,770",NA,US,33.67,-84.73,60000 +30137,STANDARD,0,Emerson,,,GA,"Bartow County",America/New_York,,NA,US,34.12,-84.76,1450 +30138,"PO BOX",0,"Esom Hill",,,GA,"Cleburne County",America/New_York,678,NA,US,33.93,-85.37,75 +30139,STANDARD,0,Fairmount,,,GA,"Gordon County",America/New_York,"706,770",NA,US,34.44,-84.7,3670 +30140,"PO BOX",0,Felton,,,GA,"Haralson County",America/New_York,678,NA,US,33.88,-85.21,118 +30141,STANDARD,0,Hiram,,,GA,"Paulding County",America/New_York,678,NA,US,33.86,-84.77,21110 +30142,"PO BOX",0,"Holly Springs",,,GA,"Cherokee County",America/New_York,678,NA,US,34.17,-84.49,574 +30143,STANDARD,0,Jasper,"Big Canoe",,GA,"Pickens County",America/New_York,"678,770,706",NA,US,34.46,-84.42,21460 +30144,STANDARD,0,Kennesaw,,"Barrett Parkway",GA,"Cobb County",America/New_York,678,NA,US,34.02,-84.61,44120 +30145,STANDARD,0,Kingston,Euharlee,,GA,"Bartow County",America/New_York,"678,770",NA,US,34.23,-84.94,7180 +30146,"PO BOX",0,Lebanon,,,GA,"Cherokee County",America/New_York,678,NA,US,34.21,-84.44,259 +30147,STANDARD,0,Lindale,,,GA,"Floyd County",America/New_York,706,NA,US,34.18,-85.18,3780 +30148,STANDARD,0,"Marble Hill",,Marblehill,GA,"Pickens County",America/New_York,"678,770,706",NA,US,34.46,-84.26,610 +30149,"PO BOX",0,"Mount Berry",Rome,,GA,"Floyd County",America/New_York,706,NA,US,34.31,-85.23,347 +30150,"PO BOX",0,"Mount Zion",,,GA,"Carroll County",America/New_York,678,NA,US,33.63,-85.18,197 +30151,"PO BOX",0,Nelson,,,GA,"Pickens County",America/New_York,,NA,US,34.38,-84.37,402 +30152,STANDARD,0,Kennesaw,,,GA,"Cobb County",America/New_York,678,NA,US,33.99,-84.65,41190 +30153,STANDARD,0,Rockmart,Braswell,,GA,"Polk County",America/New_York,"470,678,770",NA,US,34,-85.04,16400 +30154,"PO BOX",0,Douglasville,,,GA,"Douglas County",America/New_York,678,NA,US,33.74,-84.74,744 +30156,"PO BOX",0,Kennesaw,,,GA,"Cobb County",America/New_York,678,NA,US,33.99,-84.65,872 +30157,STANDARD,0,Dallas,,,GA,"Paulding County",America/New_York,"678,770",NA,US,33.88,-84.87,45250 +30160,"PO BOX",0,Kennesaw,,,GA,"Cobb County",America/New_York,678,NA,US,33.99,-84.65,372 +30161,STANDARD,0,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.24,-85.17,27600 +30162,"PO BOX",0,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.26,-85.18,1153 +30163,"PO BOX",1,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.26,-85.18,0 +30164,"PO BOX",0,Rome,,,GA,"Newton County",America/New_York,706,NA,US,33.4,-83.83,965 +30165,STANDARD,0,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.26,-85.18,35040 +30168,STANDARD,0,Austell,,,GA,"Cobb County",America/New_York,"678,770",NA,US,33.78,-84.59,22540 +30169,"PO BOX",0,Canton,,,GA,"Cherokee County",America/New_York,678,NA,US,34.14,-84.3,843 +30170,STANDARD,0,Roopville,,Ephesus,GA,"Carroll County",America/New_York,"678,770",NA,US,33.45,-85.13,2690 +30171,STANDARD,0,Rydal,,,GA,"Bartow County",America/New_York,,NA,US,34.37,-84.7,3330 +30172,"PO BOX",0,Shannon,,,GA,"Floyd County",America/New_York,706,NA,US,34.33,-85.08,1257 +30173,STANDARD,0,"Silver Creek",,,GA,"Floyd County",America/New_York,706,NA,US,34.13,-85.13,5460 +30175,STANDARD,0,"Talking Rock",,"White Stone",GA,"Pickens County",America/New_York,706,NA,US,34.5,-84.5,5430 +30176,STANDARD,0,Tallapoosa,,,GA,"Haralson County",America/New_York,"470,678,770",NA,US,33.75,-85.29,5780 +30177,STANDARD,0,Tate,,,GA,"Pickens County",America/New_York,"678,706,770",NA,US,34.41,-84.38,530 +30178,STANDARD,0,Taylorsville,,,GA,"Bartow County",America/New_York,,NA,US,34.08,-84.98,3680 +30179,STANDARD,0,Temple,,,GA,"Carroll County",America/New_York,"470,678,770",NA,US,33.73,-85.03,15770 +30180,STANDARD,0,"Villa Rica",,,GA,"Carroll County",America/New_York,"678,770",NA,US,33.73,-84.92,33850 +30182,STANDARD,0,Waco,,,GA,"Carroll County",America/New_York,,NA,US,33.7,-85.18,2260 +30183,STANDARD,0,Waleska,,"Lake Arrowhead",GA,"Cherokee County",America/New_York,678,NA,US,34.31,-84.55,5260 +30184,STANDARD,0,White,,,GA,"Bartow County",America/New_York,,NA,US,34.28,-84.74,6570 +30185,STANDARD,0,Whitesburg,,,GA,"Carroll County",America/New_York,,NA,US,33.49,-84.91,3480 +30187,STANDARD,0,Winston,,,GA,"Douglas County",America/New_York,678,NA,US,33.65,-84.86,8640 +30188,STANDARD,0,Woodstock,"Holly Springs, Mountain Park",,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.1,-84.51,61190 +30189,STANDARD,0,Woodstock,,,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.12,-84.57,35810 +30204,STANDARD,0,Barnesville,Aldora,,GA,"Lamar County",America/New_York,"470,678,770",NA,US,33.05,-84.15,9900 +30205,STANDARD,0,Brooks,,,GA,"Fayette County",America/New_York,,NA,US,33.29,-84.45,3320 +30206,STANDARD,0,Concord,,,GA,"Pike County",America/New_York,"678,770",NA,US,33.09,-84.43,2750 +30212,"PO BOX",0,Experiment,,,GA,"Spalding County",America/New_York,678,NA,US,33.27,-84.27,717 +30213,STANDARD,0,Fairburn,,,GA,"Fulton County",America/New_York,770,NA,US,33.56,-84.58,34710 +30214,STANDARD,0,Fayetteville,Woolsey,,GA,"Fayette County",America/New_York,"770,678",NA,US,33.49,-84.49,29280 +30215,STANDARD,0,Fayetteville,,,GA,"Fayette County",America/New_York,"678,770",NA,US,33.44,-84.46,34640 +30216,STANDARD,0,Flovilla,,"Indian Springs",GA,"Butts County",America/New_York,678,NA,US,33.25,-83.89,1700 +30217,STANDARD,0,Franklin,"Centralhatchee, Ctrlhatchee",,GA,"Heard County",America/New_York,706,NA,US,33.28,-85.09,7050 +30218,STANDARD,0,Gay,,,GA,"Meriwether County",America/New_York,706,NA,US,33.09,-84.57,1710 +30219,"PO BOX",1,Glenn,,,GA,"Heard County",America/New_York,706,NA,US,33.28,-85.12,0 +30220,STANDARD,0,Grantville,"Lone Oak",,GA,"Coweta County",America/New_York,"470,678,770",NA,US,33.23,-84.82,4630 +30222,STANDARD,0,Greenville,Stovall,,GA,"Meriwether County",America/New_York,706,NA,US,33.02,-84.71,3510 +30223,STANDARD,0,Griffin,,,GA,"Spalding County",America/New_York,"770,470,678",NA,US,33.29,-84.28,29970 +30224,STANDARD,0,Griffin,,,GA,"Spalding County",America/New_York,"470,678,770",NA,US,33.24,-84.27,22150 +30228,STANDARD,0,Hampton,,,GA,"Henry County",America/New_York,770,NA,US,33.38,-84.28,42490 +30229,"PO BOX",0,Haralson,,,GA,"Coweta County",America/New_York,678,NA,US,33.22,-84.57,193 +30230,STANDARD,0,Hogansville,"Lone Oak",,GA,"Troup County",America/New_York,706,NA,US,33.16,-84.9,7470 +30233,STANDARD,0,Jackson,,,GA,"Butts County",America/New_York,"470,678,770",NA,US,33.29,-83.96,20040 +30234,STANDARD,0,Jenkinsburg,,,GA,"Butts County",America/New_York,678,NA,US,33.32,-84.03,1790 +30236,STANDARD,0,Jonesboro,"Lake Spivey",,GA,"Clayton County",America/New_York,"770,678",NA,US,33.52,-84.35,41100 +30237,"PO BOX",0,Jonesboro,,,GA,"Clayton County",America/New_York,678,NA,US,33.52,-84.35,1145 +30238,STANDARD,0,Jonesboro,,,GA,"Clayton County",America/New_York,"678,770",NA,US,33.49,-84.38,35500 +30240,STANDARD,0,Lagrange,,,GA,"Troup County",America/New_York,"706,762",NA,US,33.04,-85.12,24550 +30241,STANDARD,0,Lagrange,,,GA,"Troup County",America/New_York,"762,706",NA,US,33.03,-84.98,20680 +30248,STANDARD,0,"Locust Grove",,,GA,"Henry County",America/New_York,"678,770",NA,US,33.34,-84.1,25740 +30250,"PO BOX",0,Lovejoy,,,GA,"Clayton County",America/New_York,678,NA,US,33.44,-84.31,362 +30251,STANDARD,0,Luthersville,,,GA,"Meriwether County",America/New_York,"470,678,770",NA,US,33.2,-84.74,1860 +30252,STANDARD,0,Mcdonough,,,GA,"Henry County",America/New_York,"678,770",NA,US,33.47,-84.06,44530 +30253,STANDARD,0,Mcdonough,,"Mc Donough",GA,"Henry County",America/New_York,"678,770",NA,US,33.45,-84.14,54170 +30256,STANDARD,0,Meansville,,,GA,"Pike County",America/New_York,,NA,US,33.04,-84.3,2380 +30257,STANDARD,0,Milner,,,GA,"Lamar County",America/New_York,678,NA,US,33.11,-84.19,4020 +30258,STANDARD,0,Molena,,,GA,"Pike County",America/New_York,678,NA,US,33.01,-84.5,2260 +30259,STANDARD,0,Moreland,,,GA,"Coweta County",America/New_York,678,NA,US,33.28,-84.77,3340 +30260,STANDARD,0,Morrow,"Lake City",,GA,"Clayton County",America/New_York,404,NA,US,33.57,-84.34,22520 +30261,"PO BOX",0,Lagrange,Mountville,,GA,"Troup County",America/New_York,706,NA,US,33.03,-84.98,31 +30263,STANDARD,0,Newnan,Raymond,,GA,"Coweta County",America/New_York,"470,678,770",NA,US,33.37,-84.78,50790 +30264,"PO BOX",0,Newnan,,,GA,"Coweta County",America/New_York,678,NA,US,33.37,-84.78,1068 +30265,STANDARD,0,Newnan,,Shenandoah,GA,"Coweta County",America/New_York,"470,678,770",NA,US,33.41,-84.71,33560 +30266,"PO BOX",0,"Orchard Hill",,,GA,"Spalding County",America/New_York,678,NA,US,33.18,-84.21,459 +30268,STANDARD,0,Palmetto,"Chatt Hills, Chattahoochee Hills",,GA,"Fulton County",America/New_York,678,NA,US,33.52,-84.66,9460 +30269,STANDARD,0,"Peachtree City","Peachtree Cty",,GA,"Fayette County",America/New_York,"678,770",NA,US,33.39,-84.56,37400 +30270,UNIQUE,0,"Peachtree City","Fayetteville, Peachtree Cty","Peachtree City Parcel Return",GA,"Fayette County",America/New_York,678,NA,US,33.4,-84.6,0 +30271,"PO BOX",0,Newnan,,,GA,"Coweta County",America/New_York,678,NA,US,33.37,-84.78,961 +30272,"PO BOX",0,"Red Oak",,,GA,"Fulton County",America/New_York,678,NA,US,33.62,-84.53,642 +30273,STANDARD,0,Rex,,,GA,"Clayton County",America/New_York,678,NA,US,33.58,-84.27,16270 +30274,STANDARD,0,Riverdale,,,GA,"Clayton County",America/New_York,"678,770",NA,US,33.56,-84.4,29150 +30275,"PO BOX",0,Sargent,,,GA,"Coweta County",America/New_York,678,NA,US,33.44,-84.87,253 +30276,STANDARD,0,Senoia,,,GA,"Coweta County",America/New_York,"678,770",NA,US,33.31,-84.55,16820 +30277,STANDARD,0,Sharpsburg,,,GA,"Coweta County",America/New_York,678,NA,US,33.38,-84.65,20990 +30281,STANDARD,0,Stockbridge,,,GA,"Henry County",America/New_York,"678,770",NA,US,33.54,-84.24,60480 +30284,"PO BOX",0,"Sunny Side",,,GA,"Spalding County",America/New_York,678,NA,US,33.34,-84.29,497 +30285,STANDARD,0,"The Rock",,,GA,"Upson County",America/New_York,,NA,US,32.96,-84.24,630 +30286,STANDARD,0,Thomaston,,,GA,"Upson County",America/New_York,706,NA,US,32.89,-84.32,18400 +30287,"PO BOX",0,Morrow,,,GA,"Clayton County",America/New_York,404,NA,US,33.57,-84.34,239 +30288,STANDARD,0,Conley,,,GA,"Clayton County",America/New_York,,NA,US,33.65,-84.33,7370 +30289,"PO BOX",0,Turin,,,GA,"Coweta County",America/New_York,678,NA,US,33.32,-84.63,242 +30290,STANDARD,0,Tyrone,,,GA,"Fayette County",America/New_York,"678,770",NA,US,33.46,-84.59,9000 +30291,STANDARD,0,"Union City",,,GA,"Fulton County",America/New_York,678,NA,US,33.57,-84.54,19980 +30292,STANDARD,0,Williamson,,,GA,"Pike County",America/New_York,"678,770",NA,US,33.18,-84.36,5690 +30293,STANDARD,0,Woodbury,,,GA,"Meriwether County",America/New_York,706,NA,US,32.98,-84.58,2230 +30294,STANDARD,0,Ellenwood,,,GA,"DeKalb County",America/New_York,,NA,US,33.63,-84.26,37600 +30295,STANDARD,0,Zebulon,,,GA,"Pike County",America/New_York,"470,678,770",NA,US,33.1,-84.34,4070 +30296,STANDARD,0,Riverdale,,,GA,"Clayton County",America/New_York,678,NA,US,33.56,-84.44,24560 +30297,STANDARD,0,"Forest Park","Fort Gillem, Gillem Enclave, Gillem Enclv",,GA,"Clayton County",America/New_York,404,NA,US,33.62,-84.37,23090 +30298,"PO BOX",0,"Forest Park",,Forest,GA,"Clayton County",America/New_York,404,NA,US,33.61,-84.35,875 +30301,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.85,-84.39,1009 +30302,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,774 +30303,STANDARD,0,Atlanta,,"Atl, Georgia State University",GA,"Fulton County",America/New_York,"470,404,678",NA,US,33.75,-84.39,1800 +30304,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30305,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"678,404,470,770",NA,US,33.83,-84.38,22750 +30306,STANDARD,0,Atlanta,,"Atl, North Highland Finance",GA,"Fulton County",America/New_York,404,NA,US,33.78,-84.34,20460 +30307,STANDARD,0,Atlanta,,"Atl, Little Five Points Pstl Str",GA,"DeKalb County",America/New_York,404,NA,US,33.76,-84.33,17540 +30308,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678",NA,US,33.77,-84.37,13770 +30309,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"678,404",NA,US,33.78,-84.38,22880 +30310,STANDARD,0,Atlanta,,"Atl, Fort Mcpherson",GA,"Fulton County",America/New_York,"404,678",NA,US,33.72,-84.42,19900 +30311,STANDARD,0,Atlanta,"South Fulton",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.72,-84.48,25150 +30312,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"470,404,678,770",NA,US,33.74,-84.38,17770 +30313,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,470,678",NA,US,33.76,-84.4,2940 +30314,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.42,11130 +30315,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"678,404",NA,US,33.7,-84.38,24320 +30316,STANDARD,0,Atlanta,,Atl,GA,"DeKalb County",America/New_York,404,NA,US,33.72,-84.32,26920 +30317,STANDARD,0,Atlanta,,Atl,GA,"DeKalb County",America/New_York,404,NA,US,33.75,-84.32,11610 +30318,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.78,-84.44,39770 +30319,STANDARD,0,Atlanta,"Brookhaven, Sandy Spgs, Sandy Springs","Atl, North Atlanta",GA,"DeKalb County",America/New_York,"678,770",NA,US,33.87,-84.33,36360 +30320,"PO BOX",0,Atlanta,,"Atl, Logistics & Distribution Ctr",GA,"Clayton County",America/New_York,404,NA,US,33.63,-84.43,312 +30321,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,1247 +30322,UNIQUE,0,Atlanta,,"Atl, Emory University",GA,"DeKalb County",America/New_York,678,NA,US,33.79,-84.33,252 +30324,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.81,-84.36,23340 +30325,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.44,475 +30326,STANDARD,0,Atlanta,Brookhaven,Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.85,-84.36,6150 +30327,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.86,-84.42,21940 +30328,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.93,-84.38,34380 +30329,STANDARD,0,Atlanta,Brookhaven,"Atl, Briarcliff",GA,"DeKalb County",America/New_York,"404,470",NA,US,33.82,-84.32,23410 +30330,UNIQUE,1,Atlanta,"Fort Mcpherson, Ft Mcpherson",Atl,GA,"Fulton County",America/New_York,678,NA,US,33.7,-84.43,121 +30331,STANDARD,0,Atlanta,"South Fulton",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.71,-84.53,46720 +30332,UNIQUE,0,Atlanta,,"Atl, Georgia Tech",GA,"Fulton County",America/New_York,404,NA,US,33.78,-84.4,793 +30333,"PO BOX",0,Atlanta,,"Atl, Druid Hills",GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.32,198 +30334,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678,770,470",NA,US,33.75,-84.39,257 +30336,STANDARD,0,Atlanta,"South Fulton","Atl, Industrial",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.57,1370 +30337,STANDARD,0,Atlanta,"College Park, South Fulton",Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.64,-84.46,8580 +30338,STANDARD,0,Atlanta,"Dunwoody, Sandy Spgs, Sandy Springs","Atl, North Springs",GA,"DeKalb County",America/New_York,"404,470,678,770",NA,US,33.94,-84.31,34840 +30339,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs, Vinings","Atl, Cumberland, Overlook Sru, Vinnings",GA,"Cobb County",America/New_York,"404,470,678,770",NA,US,33.86,-84.47,25130 +30340,STANDARD,0,Atlanta,Doraville,Atl,GA,"DeKalb County",America/New_York,"678,470,770",NA,US,33.89,-84.25,25050 +30341,STANDARD,0,Atlanta,Chamblee,Atl,GA,"DeKalb County",America/New_York,"404,470,770,678",NA,US,33.9,-84.3,27350 +30342,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs","Atl, Tuxedo",GA,"Fulton County",America/New_York,"470,678,770,404",NA,US,33.88,-84.37,27680 +30343,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,260 +30344,STANDARD,0,Atlanta,"East Point",Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.68,-84.46,26670 +30345,STANDARD,0,Atlanta,,Atl,GA,"DeKalb County",America/New_York,"770,470,678",NA,US,33.85,-84.28,21850 +30346,STANDARD,0,Atlanta,Dunwoody,Atl,GA,"DeKalb County",America/New_York,"404,770,470,678",NA,US,33.92,-84.34,4870 +30347,STANDARD,1,Atlanta,"Atl, Executive Park",,GA,"Fulton County",America/New_York,404,NA,US,33.82,-84.33,242 +30348,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.83,-84.38,41 +30349,STANDARD,0,Atlanta,"College Park, South Fulton",Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.61,-84.49,66560 +30350,STANDARD,0,Atlanta,"Dunwoody, Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,"404,770,678",NA,US,33.97,-84.32,28970 +30353,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30354,STANDARD,0,Atlanta,Hapeville,Atl,GA,"Fulton County",America/New_York,"770,404,678",NA,US,33.66,-84.39,12290 +30355,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.83,-84.36,836 +30356,"PO BOX",0,Atlanta,Dunwoody,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.94,-84.33,418 +30357,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.38,646 +30358,"PO BOX",0,Atlanta,"Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,702 +30359,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.82,-84.32,549 +30360,STANDARD,0,Atlanta,"Doraville, Dunwoody","Atl, Winters Chapel",GA,"DeKalb County",America/New_York,"470,404,678,770",NA,US,33.93,-84.27,13510 +30361,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.78,-84.38,58 +30362,"PO BOX",0,Atlanta,Doraville,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,981 +30363,STANDARD,0,Atlanta,,,GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.4,2240 +30364,"PO BOX",0,Atlanta,"East Point",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.67,-84.46,880 +30366,"PO BOX",0,Atlanta,Chamblee,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.88,-84.29,375 +30368,UNIQUE,0,Atlanta,,"Atl, Suntrust",GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30369,STANDARD,0,Atlanta,,,GA,"Fulton County",America/New_York,"678,404,470",NA,US,33.8,-84.47,0 +30370,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30371,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30374,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.57,-84.39,0 +30375,UNIQUE,0,Atlanta,,"Atl, Att Bellsouth",GA,"Fulton County",America/New_York,404,NA,US,33.77,-84.38,0 +30376,STANDARD,1,Atlanta,Atl,,GA,"Fulton County",America/New_York,404,NA,US,33.81,-84.35,0 +30377,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,286 +30378,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30379,STANDARD,1,Atlanta,Atl,,GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30380,UNIQUE,0,Atlanta,,"Atl, Atlanta Postal Credit Union",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30384,UNIQUE,0,Atlanta,,"Atl, Bank America",GA,"Fulton County",America/New_York,404,NA,US,33.89,-84.45,0 +30385,UNIQUE,0,Atlanta,,"Atl, Att Bellsouth",GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30386,UNIQUE,1,Atlanta,Atl,"Sears Roebuck Co",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30387,UNIQUE,1,Atlanta,Atl,"J C Penney",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30388,UNIQUE,0,Atlanta,,"Atl, Avon",GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30389,UNIQUE,1,Atlanta,Atl,"Atlanta Gas Light",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30390,UNIQUE,1,Atlanta,Atl,"J C Penney",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30392,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30394,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30396,UNIQUE,0,Atlanta,,"Atl, Georgia Power",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30398,UNIQUE,0,Atlanta,,"Atl, Bank America",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30399,UNIQUE,1,Atlanta,Atl,"Bankamerica Corporation",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30401,STANDARD,0,Swainsboro,"Covena, Summertown","Blun, Blundale, Dellwood, Gary, Kemp, Lexsy, Modoc, Wesley",GA,"Emanuel County",America/New_York,"478,912",NA,US,32.59,-82.33,10560 +30410,STANDARD,0,Ailey,,"Higgston, Mcgregor",GA,"Montgomery County",America/New_York,912,NA,US,32.18,-82.57,1280 +30411,STANDARD,0,Alamo,,,GA,"Wheeler County",America/New_York,"912,478",NA,US,32.14,-82.77,2020 +30412,"PO BOX",0,Alston,,,GA,"Montgomery County",America/New_York,912,NA,US,32.08,-82.49,150 +30413,STANDARD,0,Bartow,,,GA,"Jefferson County",America/New_York,478,NA,US,32.88,-82.47,1190 +30414,"PO BOX",0,Bellville,,,GA,"Evans County",America/New_York,912,NA,US,32.15,-81.97,193 +30415,STANDARD,0,Brooklet,,"Akin, Arcola, Denmark, Hubert, Ivanhoe, Mcgregor, Stilson",GA,"Bulloch County",America/New_York,912,NA,US,32.38,-81.66,6780 +30417,STANDARD,0,Claxton,,,GA,"Evans County",America/New_York,912,NA,US,32.16,-81.9,7900 +30420,STANDARD,0,Cobbtown,,Aline,GA,"Tattnall County",America/New_York,912,NA,US,32.28,-82.13,1410 +30421,STANDARD,0,Collins,,,GA,"Tattnall County",America/New_York,912,NA,US,32.18,-82.1,2400 +30423,"PO BOX",0,Daisy,,,GA,"Evans County",America/New_York,912,NA,US,32.15,-81.83,337 +30424,"PO BOX",0,Dover,,,GA,"Screven County",America/New_York,912,NA,US,32.57,-81.71,77 +30425,STANDARD,0,Garfield,,,GA,"Emanuel County",America/New_York,478,NA,US,32.65,-82.09,1110 +30426,STANDARD,0,Girard,,,GA,"Burke County",America/New_York,912,NA,US,33.04,-81.71,790 +30427,STANDARD,0,Glennville,,Mendes,GA,"Tattnall County",America/New_York,912,NA,US,31.93,-81.93,8800 +30428,STANDARD,0,Glenwood,,,GA,"Wheeler County",America/New_York,912,NA,US,32.18,-82.67,1770 +30429,"PO BOX",0,Hagan,,,GA,"Evans County",America/New_York,912,NA,US,32.17,-81.94,1364 +30434,STANDARD,0,Louisville,,"Grange, Rosier, Vidette",GA,"Jefferson County",America/New_York,478,NA,US,32.99,-82.4,4390 +30436,STANDARD,0,Lyons,"Oak Park","Cedar Crossing, Ohoopee, Santa Claus",GA,"Toombs County",America/New_York,912,NA,US,32.2,-82.32,9150 +30438,"PO BOX",0,Manassas,,,GA,"Tattnall County",America/New_York,912,NA,US,32.17,-82.02,71 +30439,STANDARD,0,Metter,,Excelsior,GA,"Candler County",America/New_York,912,NA,US,32.39,-82.06,7890 +30441,STANDARD,0,Midville,,"Coleman Lake, Colemans Lake, Green Way, Greenway, Herndon",GA,"Emanuel County",America/New_York,478,NA,US,32.82,-82.23,1620 +30442,STANDARD,0,Millen,Perkins,"Birdsville, Butts, Emmalane, Scarboro, Thrift",GA,"Jenkins County",America/New_York,478,NA,US,32.8,-81.94,5780 +30445,STANDARD,0,"Mount Vernon",,,GA,"Montgomery County",America/New_York,912,NA,US,32.18,-82.59,2090 +30446,STANDARD,0,Newington,,,GA,"Screven County",America/New_York,912,NA,US,32.58,-81.5,1230 +30447,"PO BOX",0,Norristown,,,GA,"Emanuel County",America/New_York,478,NA,US,32.56,-82.55,0 +30448,"PO BOX",0,Nunez,,,GA,"Emanuel County",America/New_York,478,NA,US,32.49,-82.36,190 +30449,"PO BOX",0,Oliver,,,GA,"Screven County",America/New_York,912,NA,US,32.52,-81.53,171 +30450,STANDARD,0,Portal,,Aaron,GA,"Bulloch County",America/New_York,912,NA,US,32.53,-81.93,2170 +30451,"PO BOX",0,Pulaski,,,GA,"Candler County",America/New_York,912,NA,US,32.39,-81.95,325 +30452,STANDARD,0,Register,,,GA,"Bulloch County",America/New_York,912,NA,US,32.36,-81.88,1250 +30453,STANDARD,0,Reidsville,,,GA,"Tattnall County",America/New_York,912,NA,US,32.08,-82.11,5070 +30454,STANDARD,0,Rockledge,,,GA,"Laurens County",America/New_York,478,NA,US,32.44,-82.73,580 +30455,STANDARD,0,"Rocky Ford",,,GA,"Screven County",America/New_York,912,NA,US,32.66,-81.82,510 +30456,STANDARD,0,Sardis,,,GA,"Burke County",America/New_York,"478,912",NA,US,32.97,-81.76,1570 +30457,STANDARD,0,Soperton,,,GA,"Treutlen County",America/New_York,912,NA,US,32.37,-82.59,4480 +30458,STANDARD,0,Statesboro,,,GA,"Bulloch County",America/New_York,912,NA,US,32.44,-81.77,24520 +30459,"PO BOX",0,Statesboro,,,GA,"Bulloch County",America/New_York,912,NA,US,32.44,-81.77,2235 +30460,UNIQUE,0,Statesboro,,"Ga Southern University",GA,"Bulloch County",America/New_York,912,NA,US,32.42,-81.78,254 +30461,STANDARD,0,Statesboro,,,GA,"Bulloch County",America/New_York,912,NA,US,32.51,-81.72,13240 +30464,"PO BOX",0,Stillmore,,,GA,"Emanuel County",America/New_York,478,NA,US,32.44,-82.22,518 +30467,STANDARD,0,Sylvania,Hiltonia,,GA,"Screven County",America/New_York,912,NA,US,32.75,-81.63,9330 +30470,STANDARD,0,Tarrytown,,,GA,"Montgomery County",America/New_York,912,NA,US,32.31,-82.55,770 +30471,STANDARD,0,"Twin City",,Canoochee,GA,"Emanuel County",America/New_York,"478,912",NA,US,32.58,-82.15,3370 +30473,STANDARD,0,Uvalda,,,GA,"Montgomery County",America/New_York,912,NA,US,32.03,-82.5,2050 +30474,STANDARD,0,Vidalia,,"Center, Charles, Kibbee, Normantown, Petross",GA,"Toombs County",America/New_York,912,NA,US,32.21,-82.4,12500 +30475,"PO BOX",0,Vidalia,,,GA,"Toombs County",America/New_York,912,NA,US,32.22,-82.37,2406 +30477,STANDARD,0,Wadley,,Moxley,GA,"Jefferson County",America/New_York,478,NA,US,32.86,-82.4,2440 +30499,UNIQUE,0,Reidsville,,"Georgia State Penitentiary",GA,"Tattnall County",America/New_York,912,NA,US,32.08,-82.11,0 +30501,STANDARD,0,Gainesville,,Westside,GA,"Hall County",America/New_York,"470,678,770",NA,US,34.29,-83.83,24830 +30502,"PO BOX",0,"Chestnut Mountain","Chestnut Mtn, Oakwood",,GA,"Hall County",America/New_York,678,NA,US,34.19,-83.85,384 +30503,"PO BOX",0,Gainesville,,,GA,"Hall County",America/New_York,678,NA,US,34.29,-83.83,2112 +30504,STANDARD,0,Gainesville,,,GA,"Hall County",America/New_York,"470,678,770",NA,US,34.27,-83.89,25280 +30506,STANDARD,0,Gainesville,,,GA,"Hall County",America/New_York,678,NA,US,34.35,-83.9,40210 +30507,STANDARD,0,Gainesville,,,GA,"Hall County",America/New_York,"770,470,678",NA,US,34.25,-83.77,28330 +30510,STANDARD,0,Alto,,,GA,"Habersham County",America/New_York,,NA,US,34.47,-83.57,5680 +30511,STANDARD,0,Baldwin,,,GA,"Banks County",America/New_York,,NA,US,34.48,-83.53,3150 +30512,STANDARD,0,Blairsville,,,GA,"Union County",America/New_York,706,NA,US,34.87,-83.95,16590 +30513,STANDARD,0,"Blue Ridge",,,GA,"Fannin County",America/New_York,"762,706",NA,US,34.86,-84.32,9610 +30514,"PO BOX",0,Blairsville,,,GA,"Union County",America/New_York,706,NA,US,34.87,-83.95,2962 +30515,"PO BOX",0,Buford,,,GA,"Gwinnett County",America/New_York,678,NA,US,34.11,-83.99,1072 +30516,STANDARD,0,Bowersville,,,GA,"Hart County",America/New_York,706,NA,US,34.37,-83.08,1630 +30517,STANDARD,0,Braselton,,,GA,"Jackson County",America/New_York,"706,762",NA,US,34.13,-83.8,15720 +30518,STANDARD,0,Buford,"Rest Haven, Sugar Hill",Sugarhill,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34.11,-83.99,50830 +30519,STANDARD,0,Buford,,,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34.09,-83.94,48280 +30520,STANDARD,0,Canon,,,GA,"Franklin County",America/New_York,,NA,US,34.34,-83.11,3530 +30521,STANDARD,0,Carnesville,,,GA,"Franklin County",America/New_York,706,NA,US,34.36,-83.23,4330 +30522,STANDARD,0,"Cherry Log",,,GA,"Gilmer County",America/New_York,"706,762",NA,US,34.8,-84.34,950 +30523,STANDARD,0,Clarkesville,,,GA,"Habersham County",America/New_York,"706,762",NA,US,34.6,-83.52,11230 +30525,STANDARD,0,Clayton,,,GA,"Rabun County",America/New_York,706,NA,US,34.87,-83.4,7120 +30527,STANDARD,0,Clermont,,,GA,"Hall County",America/New_York,"678,770",NA,US,34.47,-83.77,4300 +30528,STANDARD,0,Cleveland,,,GA,"White County",America/New_York,706,NA,US,34.59,-83.76,19740 +30529,STANDARD,0,Commerce,,,GA,"Jackson County",America/New_York,"706,762",NA,US,34.2,-83.46,10310 +30530,STANDARD,0,Commerce,,,GA,"Banks County",America/New_York,"706,762",NA,US,34.22,-83.39,5610 +30531,STANDARD,0,Cornelia,,,GA,"Habersham County",America/New_York,706,NA,US,34.51,-83.52,10010 +30533,STANDARD,0,Dahlonega,,,GA,"Lumpkin County",America/New_York,706,NA,US,34.53,-83.98,19880 +30534,STANDARD,0,Dawsonville,,,GA,"Dawson County",America/New_York,706,NA,US,34.42,-84.11,26510 +30535,STANDARD,0,Demorest,,,GA,"Habersham County",America/New_York,706,NA,US,34.56,-83.54,6190 +30536,STANDARD,0,Ellijay,,,GA,"Gilmer County",America/New_York,706,NA,US,34.66,-84.33,6430 +30537,STANDARD,0,Dillard,"Sky Valley",,GA,"Rabun County",America/New_York,706,NA,US,34.97,-83.38,1110 +30538,STANDARD,0,Eastanollee,,,GA,"Stephens County",America/New_York,706,NA,US,34.49,-83.25,2630 +30539,"PO BOX",0,"East Ellijay",,,GA,"Gilmer County",America/New_York,706,NA,US,34.68,-84.47,2028 +30540,STANDARD,0,Ellijay,"East Ellijay",,GA,"Gilmer County",America/New_York,706,NA,US,34.69,-84.48,16020 +30541,STANDARD,0,Epworth,,,GA,"Fannin County",America/New_York,706,NA,US,34.92,-84.51,1530 +30542,STANDARD,0,"Flowery Branch","Flowery Br",,GA,"Hall County",America/New_York,"470,678,770",NA,US,34.18,-83.92,34450 +30543,STANDARD,0,Gillsville,,,GA,"Hall County",America/New_York,678,NA,US,34.31,-83.63,4470 +30544,"PO BOX",1,Habersham,Demorest,,GA,"Habersham County",America/New_York,706,NA,US,34.56,-83.54,0 +30545,STANDARD,0,Helen,,,GA,"White County",America/New_York,706,NA,US,34.7,-83.72,990 +30546,STANDARD,0,Hiawassee,,,GA,"Towns County",America/New_York,706,NA,US,34.94,-83.75,6390 +30547,STANDARD,0,Homer,,,GA,"Banks County",America/New_York,706,NA,US,34.33,-83.49,3000 +30548,STANDARD,0,Hoschton,,,GA,"Jackson County",America/New_York,706,NA,US,34.09,-83.76,20520 +30549,STANDARD,0,Jefferson,Arcade,,GA,"Jackson County",America/New_York,706,NA,US,34.13,-83.59,25150 +30552,STANDARD,0,Lakemont,,,GA,"Rabun County",America/New_York,706,NA,US,34.78,-83.41,1370 +30553,STANDARD,0,Lavonia,,,GA,"Franklin County",America/New_York,706,NA,US,34.43,-83.1,6550 +30554,STANDARD,0,Lula,,,GA,"Hall County",America/New_York,"678,770",NA,US,34.39,-83.66,7040 +30555,STANDARD,0,"Mc Caysville",,"Fry, Mccaysville",GA,"Fannin County",America/New_York,706,NA,US,34.98,-84.37,1750 +30557,STANDARD,0,Martin,Avalon,,GA,"Stephens County",America/New_York,,NA,US,34.48,-83.18,4010 +30558,STANDARD,0,Maysville,,,GA,"Jackson County",America/New_York,706,NA,US,34.25,-83.55,4510 +30559,STANDARD,0,"Mineral Bluff",,,GA,"Fannin County",America/New_York,706,NA,US,34.91,-84.27,3640 +30560,STANDARD,0,Morganton,,,GA,"Fannin County",America/New_York,706,NA,US,34.87,-84.24,3910 +30562,"PO BOX",0,"Mountain City",,,GA,"Rabun County",America/New_York,706,NA,US,34.91,-83.38,997 +30563,STANDARD,0,"Mount Airy",,,GA,"Habersham County",America/New_York,706,NA,US,34.51,-83.5,4890 +30564,STANDARD,0,Murrayville,,,GA,"Hall County",America/New_York,678,NA,US,34.44,-83.89,4150 +30565,STANDARD,0,Nicholson,,,GA,"Jackson County",America/New_York,706,NA,US,34.11,-83.43,4290 +30566,STANDARD,0,Oakwood,,,GA,"Hall County",America/New_York,678,NA,US,34.23,-83.88,7980 +30567,STANDARD,0,Pendergrass,,,GA,"Jackson County",America/New_York,706,NA,US,34.16,-83.67,3750 +30568,STANDARD,0,"Rabun Gap",,,GA,"Rabun County",America/New_York,706,NA,US,34.95,-83.39,1710 +30571,STANDARD,0,"Sautee Nacoochee","Saute Nacoche, Sautee",,GA,"White County",America/New_York,706,NA,US,34.74,-83.71,2720 +30572,STANDARD,0,Suches,,,GA,"Union County",America/New_York,"762,706",NA,US,34.73,-84.06,860 +30573,"PO BOX",0,"Tallulah Falls","Tallulah Fls",,GA,"Rabun County",America/New_York,,NA,US,34.75,-83.42,209 +30575,STANDARD,0,Talmo,,,GA,"Jackson County",America/New_York,706,NA,US,34.21,-83.71,1470 +30576,STANDARD,0,Tiger,,,GA,"Rabun County",America/New_York,706,NA,US,34.84,-83.43,2190 +30577,STANDARD,0,Toccoa,,Avalon,GA,"Stephens County",America/New_York,706,NA,US,34.57,-83.32,17570 +30580,"PO BOX",0,Turnerville,,,GA,"Habersham County",America/New_York,706,NA,US,34.68,-83.42,398 +30581,"PO BOX",0,Wiley,,,GA,"Rabun County",America/New_York,706,NA,US,34.8,-83.42,339 +30582,STANDARD,0,"Young Harris",,,GA,"Towns County",America/New_York,"706,762",NA,US,34.93,-83.84,4030 +30596,UNIQUE,1,Alto,,"Ga Industrial Institute",GA,"Habersham County",America/New_York,706,NA,US,34.44,-83.59,0 +30597,UNIQUE,0,Dahlonega,,"North Georgia College",GA,"Lumpkin County",America/New_York,706,NA,US,34.53,-83.98,44 +30598,"PO BOX",0,"Toccoa Falls",,,GA,"Stephens County",America/New_York,706,NA,US,34.57,-83.32,285 +30599,UNIQUE,0,Commerce,,Baker-Taylor,GA,"Jackson County",America/New_York,706,NA,US,34.2,-83.46,0 +30601,STANDARD,0,Athens,,,GA,"Clarke County",America/New_York,"706,762",NA,US,34,-83.34,14460 +30602,UNIQUE,0,Athens,,"University Of Georgia",GA,"Clarke County",America/New_York,706,NA,US,33.94,-83.37,77 +30603,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,624 +30604,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,1230 +30605,STANDARD,0,Athens,,,GA,"Clarke County",America/New_York,762,NA,US,33.91,-83.32,24080 +30606,STANDARD,0,Athens,,"Navy Supply Corps School",GA,"Clarke County",America/New_York,"706,762,678,770",NA,US,33.95,-83.39,33630 +30607,STANDARD,0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,34.02,-83.45,9500 +30608,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,990 +30609,UNIQUE,0,Athens,,"University Of Georgia",GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.38,110 +30612,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,94 +30619,STANDARD,0,Arnoldsville,,,GA,"Oglethorpe County",America/New_York,706,NA,US,33.91,-83.21,1390 +30620,STANDARD,0,Bethlehem,,,GA,"Barrow County",America/New_York,678,NA,US,33.93,-83.76,13930 +30621,STANDARD,0,Bishop,"N High Shoals, North High Shoals",,GA,"Oconee County",America/New_York,706,NA,US,33.81,-83.43,5690 +30622,STANDARD,0,Bogart,,,GA,"Oconee County",America/New_York,"470,678,770",NA,US,33.94,-83.53,10200 +30623,"PO BOX",0,Bostwick,,,GA,"Morgan County",America/New_York,,NA,US,33.73,-83.54,491 +30624,STANDARD,0,Bowman,,,GA,"Elbert County",America/New_York,706,NA,US,34.2,-83.02,2190 +30625,STANDARD,0,Buckhead,,,GA,"Morgan County",America/New_York,,NA,US,33.56,-83.36,2170 +30627,STANDARD,0,Carlton,,,GA,"Oglethorpe County",America/New_York,706,NA,US,34.04,-83.03,1840 +30628,STANDARD,0,Colbert,,,GA,"Madison County",America/New_York,706,NA,US,34.03,-83.21,6150 +30629,STANDARD,0,Comer,,,GA,"Madison County",America/New_York,706,NA,US,34.06,-83.12,4050 +30630,STANDARD,0,Crawford,,,GA,"Oglethorpe County",America/New_York,706,NA,US,33.88,-83.15,2100 +30631,STANDARD,0,Crawfordville,,,GA,"Taliaferro County",America/New_York,706,NA,US,33.55,-82.89,1140 +30633,STANDARD,0,Danielsville,,,GA,"Madison County",America/New_York,706,NA,US,34.12,-83.22,7020 +30634,STANDARD,0,"Dewy Rose",,,GA,"Elbert County",America/New_York,706,NA,US,34.16,-82.95,2010 +30635,STANDARD,0,Elberton,,,GA,"Elbert County",America/New_York,706,NA,US,34.1,-82.86,12490 +30638,"PO BOX",0,Farmington,,,GA,"Oconee County",America/New_York,706,NA,US,33.81,-83.4,241 +30639,"PO BOX",0,"Franklin Springs","Franklin Spgs",,GA,"Franklin County",America/New_York,706,NA,US,34.28,-83.14,425 +30641,STANDARD,0,"Good Hope",,,GA,"Walton County",America/New_York,,NA,US,33.78,-83.6,1700 +30642,STANDARD,0,Greensboro,,"Reynolds Plantation",GA,"Greene County",America/New_York,"706,762",NA,US,33.57,-83.18,11990 +30643,STANDARD,0,Hartwell,,,GA,"Hart County",America/New_York,706,NA,US,34.35,-82.93,13380 +30645,"PO BOX",0,"High Shoals",,,GA,,America/New_York,,NA,US,33.81,-83.5,195 +30646,STANDARD,0,Hull,,,GA,"Madison County",America/New_York,706,NA,US,34.01,-83.29,6860 +30647,"PO BOX",0,Ila,,,GA,"Madison County",America/New_York,706,NA,US,34.17,-83.29,670 +46792,STANDARD,0,Warren,,"Buckeye, Dillman, Meth Mem Home, Methodist Mem Home, Methodist Memorial Home, Mount Zion, Pleasant Plain, Plum Tree, Salamonie",IN,"Huntington County",America/Indiana/Indianapolis,260,NA,US,40.68,-85.42,3470 +46793,STANDARD,0,Waterloo,,Sedan,IN,"DeKalb County",America/Indiana/Indianapolis,260,NA,US,41.43,-85.02,3920 +46794,STANDARD,0,Wawaka,Brimfield,"Brimfld, Cosperville, Diamond Lake, Waldron Lake",IN,"Noble County",America/Indiana/Indianapolis,260,NA,US,41.48,-85.48,1230 +46795,STANDARD,0,Wolcottville,,"Adams Lake, Lakeside, Pretty Lake, Shady Nook, Timberhurst, Witmer Manor, Woodland Park, Woodruff",IN,"LaGrange County",America/Indiana/Indianapolis,260,NA,US,41.52,-85.36,5850 +46796,"PO BOX",0,Wolflake,,"Wolf Lake",IN,"Noble County",America/Indiana/Indianapolis,260,NA,US,41.32,-85.48,210 +46797,STANDARD,0,Woodburn,,"Edgerton, Maumee",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.12,-84.85,3820 +46798,STANDARD,0,Yoder,,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,40.93,-85.2,1220 +46799,"PO BOX",0,Zanesville,,,IN,"Wells County",America/Indiana/Indianapolis,260,NA,US,40.91,-85.29,526 +46801,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,44 +46802,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.17,7200 +46803,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,7840 +46804,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.05,-85.24,26630 +46805,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.1,-85.12,17330 +46806,STANDARD,0,"Fort Wayne",,"Diplomat, Diplomat Plaza, Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.05,-85.09,21420 +46807,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.04,-85.15,14750 +46808,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.1,-85.18,16570 +46809,STANDARD,0,"Fort Wayne",,"Ft Wayne, Waynedale",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41,-85.21,7720 +46814,STANDARD,0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.05,-85.3,16210 +46815,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.1,-85.06,25180 +46816,STANDARD,0,"Fort Wayne",,"Diplomat, Ft Wayne, Maples, Southtown, Southtown Mall",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41,-85.04,16270 +46818,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.16,-85.25,19630 +46819,STANDARD,0,"Fort Wayne",,"Ft Wayne, Poe, Waynedale",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,40.97,-85.13,8020 +46825,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.15,-85.13,25750 +46835,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.15,-85.04,33110 +46845,STANDARD,0,"Fort Wayne",,"Ft Wayne, Hazelwood",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.21,-85.11,27850 +46850,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,28 +46851,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,35 +46852,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,38 +46853,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,58 +46854,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,50 +46855,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,59 +46856,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,20 +46857,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46858,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46859,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,76 +46860,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46861,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46862,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,34 +46863,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,35 +46864,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,50 +46865,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,65 +46866,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,101 +46867,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,65 +46868,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,58 +46869,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,56 +46885,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,236 +46895,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,164 +46896,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,243 +46897,UNIQUE,0,"Fort Wayne",,"Business Reply, Fort Wayne Brm",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46898,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,283 +46899,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,172 +46901,STANDARD,0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.53,-86.17,32550 +46902,STANDARD,0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.47,-86.13,32490 +46903,"PO BOX",0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.47,-86.13,392 +46904,"PO BOX",0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.47,-86.13,778 \ No newline at end of file diff --git a/quarkus-modules/quarkus-vs-springboot/pom.xml b/quarkus-modules/quarkus-vs-springboot/pom.xml index 4ec10f385d..2e9d0b8a7f 100644 --- a/quarkus-modules/quarkus-vs-springboot/pom.xml +++ b/quarkus-modules/quarkus-vs-springboot/pom.xml @@ -16,7 +16,7 @@ quarkus-project - + spring-project \ No newline at end of file diff --git a/quarkus-modules/quarkus-vs-springboot/spring-project/pom.xml b/quarkus-modules/quarkus-vs-springboot/spring-project/pom.xml index c3ee41223f..cbca49a633 100644 --- a/quarkus-modules/quarkus-vs-springboot/spring-project/pom.xml +++ b/quarkus-modules/quarkus-vs-springboot/spring-project/pom.xml @@ -103,9 +103,10 @@ org.apache.maven.plugins maven-compiler-plugin + 3.12.1 - ${maven.compiler.source.version} - ${maven.compiler.target.version} + ${maven.compiler.release} + ${maven.compiler.release} @@ -117,16 +118,30 @@ Spring release https://repo.spring.io/release + + spring-milestone + Spring Milestone + https://repo.spring.io/milestone + + + spring-snapshot + Spring Snapshot + https://repo.spring.io/snapshot + + - spring-release - Spring release - https://repo.spring.io/release + spring-milestone + Spring milestone + https://repo.spring.io/milestone + + + native @@ -158,6 +173,7 @@ org.springframework.experimental spring-aot-maven-plugin + ${spring-native.version} test-generate @@ -194,6 +210,7 @@ org.springframework.experimental spring-aot-maven-plugin + ${spring-native.version} test-generate @@ -257,6 +274,7 @@ 3.1.0 0.9.11 2.0.8 + 17 \ No newline at end of file diff --git a/quarkus-modules/quarkus-vs-springboot/wrk/zip_code_database.csv b/quarkus-modules/quarkus-vs-springboot/wrk/zip_code_database.csv new file mode 100644 index 0000000000..e1fcdaca8d --- /dev/null +++ b/quarkus-modules/quarkus-vs-springboot/wrk/zip_code_database.csv @@ -0,0 +1,12079 @@ +zip,type,decommissioned,primary_city,acceptable_cities,unacceptable_cities,state,county,timezone,area_codes,world_region,country,latitude,longitude,irs_estimated_population +00501,UNIQUE,0,Holtsville,,"Internal Revenue Service",NY,"Suffolk County",America/New_York,631,NA,US,40.81,-73.04,562 +00544,UNIQUE,0,Holtsville,,"Internal Revenue Service",NY,"Suffolk County",America/New_York,631,NA,US,40.81,-73.04,0 +00601,STANDARD,0,Adjuntas,,"Colinas Del Gigante, Jard De Adjuntas, Urb San Joaquin",PR,"Adjuntas Municipio",America/Puerto_Rico,"787,939",NA,US,18.16,-66.72,0 +00602,STANDARD,0,Aguada,,"Alts De Aguada, Bo Guaniquilla, Comunidad Las Flores, Ext Los Robles, Sect Juan Ramirez, Sect La Ceiba, Sect Mariano Concepcion, Urb Isabel La Catolica",PR,"Aguada Municipio",America/Puerto_Rico,"787,939",NA,US,18.38,-67.18,0 +00603,STANDARD,0,Aguadilla,Ramey,"Bda Caban, Bda Esteves, Bo Borinquen, Bo Ceiba Baja, Brisas Del Paraiso, Ext El Prado, Ext Marbella, Jard De Borinquen, Las Brisas, Repto Jimenez, Repto Juan Aguiar, Repto Lopez, Repto Tres Palmas, Sect Las Villas, Urb Borinquen, Urb Cristal, Urb El Prado, Urb Esteves, Urb Garcia, Urb Las Americas, Urb Las Casitas Country Club, Urb Maleza Gdns, Urb Marbella, Urb Ramey, Urb Rubianes, Urb San Carlos, Urb Santa Marta, Urb Victoria, Villa Alegria, Villa Linda, Villa Lydia, Villa Universitaria, Villas De Almeria, Vista Alegre, Vista Verde",PR,"Aguadilla Municipio",America/Puerto_Rico,787,NA,US,18.43,-67.15,0 +00604,"PO BOX",0,Aguadilla,Ramey,,PR,,America/Puerto_Rico,,NA,US,18.43,-67.15,0 +00605,"PO BOX",0,Aguadilla,,,PR,,America/Puerto_Rico,,NA,US,18.43,-67.15,0 +00606,STANDARD,0,Maricao,,"Urb San Juan Bautista",PR,"Maricao Municipio",America/Puerto_Rico,"787,939",NA,US,18.18,-66.98,0 +00610,STANDARD,0,Anasco,,"Brisas De Anasco, Est De Valle Verde, Jard De Anasco, Paseo Del Valle, Repto Daguey, Sect Sanchez, Urb Los Arboles, Urb San Antonio, Urb Valle Real",PR,"Anasco Municipio",America/Puerto_Rico,787,NA,US,18.28,-67.14,0 +00611,"PO BOX",0,Angeles,,,PR,,America/Puerto_Rico,,NA,US,18.28,-66.79,0 +00612,STANDARD,0,Arecibo,,"Alt De Juncos, Alt De San Felipe, Bda Duhamel, Bo El Pasaje, Bo Islote, Bo Islote Ii, Bo Jarealitos, Bo Obrero, Bo Santana, Ciudad Atlantis, Comunidad Buenos Aires, Est De Arecibo, Est De Balseiro, Ext Marisol, Ext Tanama, Ext Villa Los Santos I, Ext Villa Los Santos Ii, Hacienda Toledo, Jard De Arecibo, Jard De San Rafael, Parc Mattey, Parc Navas, Parc Perez, Parc Rodriguez Olmo, Parq De Jardines, Paseo De La Reina, Paseo Del Prado, Paseos Reales, Repto Diosesano, Repto Marquez, Repto San Jose, Repto San Juan, Rpto Capitolio, Sect Abra, Sect El Cano, Sect Las Animas, Sect Muelle, Urb Arecibo Gdns, Urb Brisas Del Mar Ii, Urb College Park, Urb Costas Del Atlantico, Urb El Paraiso, Urb Factor, Urb Garcia, Urb Garden View, Urb La Mucura, Urb Las Brisas, Urb Los Aires, Urb Los Corales, Urb Los Llanos, Urb Los Pinos, Urb Los Pinos Ii, Urb Marisol, Urb Martell, Urb Ocean Vw, Urb Paseos Del Prado, Urb Radioville, Urb Regional, Urb San Daniel, Urb San Felipe, Urb San Lorenzo, Urb Tanama, Urb University Gdns, Urb Vict",PR,"Arecibo Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.73,0 +00613,"PO BOX",0,Arecibo,,,PR,,America/Puerto_Rico,,NA,US,18.45,-66.73,0 +00614,"PO BOX",0,Arecibo,,,PR,,America/Puerto_Rico,,NA,US,18.45,-66.73,0 +00616,STANDARD,0,Bajadero,,"Brisas Del Valle",PR,"Arecibo Municipio",America/Puerto_Rico,787,NA,US,18.42,-66.67,0 +00617,STANDARD,0,Barceloneta,,"Atlantic View Village, Bda Catalana, Brisas De Llanadas, Brisas Del Monte, Est De Barceloneta, Est De Florida, Ext Est De Imbery, Ext Parc Punta Palmas, Isla De Roque Estates, Parc Garrochales, Parc Imbery, Parc Magueyes, Parc Palenque, Parc Punta Palmas, Parc Tiburon, Repto Las Llanadas, Urb Cataluna, Urb Cimarrona Ct, Urb City Paradise, Urb Las Delicias, Urb Las Praderas, Urb Las Praderas Ii, Urb Ortega, Urb Palmeras, Urb Plazuela Estates, Urb Sol Naciente, Villa Barcelona, Villa Central, Villa Georgetti, Villas De La Sabana",PR,"Barceloneta Municipio",America/Puerto_Rico,787,NA,US,18.45,-66.56,0 +00622,STANDARD,0,Boqueron,,"Villa Taina",PR,"Cabo Rojo Municipio",America/Puerto_Rico,787,NA,US,17.99,-67.15,0 +00623,STANDARD,0,"Cabo Rojo",,"Alts De Joyuda, Alts Del Mar, Bo Ballaja, Bo Monte Grande, Est De Miramar, Est Reales, Ext Elizabeth, Ext La Concepcion, Ext Parc Elizabeth, Ext Sierra Linda, Finquita Betances, Haciendas De Belvedere, Haciendas De Cabo Rojo, Haciendas De Miramar, Jard Del Puerto, Mans De Cabo Rojo, Mansiones, Parc Betances, Parc Elizabeth, Parc Las 35, Parc Las Margaritas, Parc Puerto Real, Paseos De Plan Bonito, Qtas De Cabo Rojo, Qtas De Miradero, Qtas Del Deportivo, Repto Miradero, Repto Oliveras, Urb Alta Vista, Urb Ana Maria, Urb Borinquen, Urb El Retiro, Urb Elizabeth, Urb Joyuda Coast, Urb Kofresi, Urb La Concepcion, Urb Las Vistas, Urb Monte Grande, Urb Monte Rio, Urb Montesol, Urb Ramirez, Urb Remanso De Cabo Rojo, Urb San Miguel, Urb Sierra Linda, Villa Aida, Villa Del Carmen, Villa Luisa, Villas De Plan Bonito",PR,"Cabo Rojo Municipio",America/Puerto_Rico,787,NA,US,18.08,-67.14,0 +00624,STANDARD,0,Penuelas,,"Alt De Penuelas Ii, Alts De Penuelas, Brisas De Guayanes, Colinas De Penuelas, Ext Alts De Penuelas Ii, Jard De Penuelas, Mans De Puerto Galexda, Portales De Vista Bahia, Repto Kennedy, Sect Mal Paso, Urb El Madrigal, Urb El Penon, Urb Guayanes, Urb Llanos De Sabana Palma, Urb Monte Verde, Urb Penuelas Valley, Urb Rio Sol, Urb Riverside, Urb Sagrado Corazon, Valle Alto, Villa Esmeralda, Vista Bahia",PR,"Penuelas Municipio",America/Puerto_Rico,787,NA,US,18.06,-66.72,0 +00692,STANDARD,0,"Vega Alta",,"Alts De Cerro Gordo 1&2, Alts De Cerro Gordo 3&4, Bda Corea, Bo Brenas, Comunidad Manantial, Est Cerro Gordo, Est Del Valle, Est San Nicolas, Ext La Esperanza, Ext La Inmaculada, Ext Sanchez, Ext Santa Ana, Ext Santa Maria, Ext Santa Rita, Hacienda El Molino, Parc Carmen, Parc Ponderosa, Urb Cerro Gordo Hls, Urb Cielo Dorado, Urb Golden Vlg, Urb Grand Palm Ii, Urb Isomar, Urb La Esperanza, Urb La Inmaculada, Urb La Inmaculada Ct, Urb Las Colinas, Urb Las Palmas Cerro Gordo, Urb Puesta Del Sol, Urb Santa Ana, Urb Santa Rita, Urb Sierra Maestra, Urb Treasure Pt, Urb Vega Dorada, Urb Velomas, Villa Linares, Vistas De La Vega",PR,"Vega Alta Municipio",America/Puerto_Rico,787,NA,US,18.41,-66.32,0 +00693,STANDARD,0,"Vega Baja",,"Alt De Vega Baja, Bda Collazo, Bda Sandin, Bo Algarrobo, Bo Carmelita, Bo La Trocha, Bo Las Granjas, Bo Ojo De Agua, Bo Pueblo Nuevo, Bo Yeguada, Brisas De Tortuguero, Brisas Del Mar, Ceiba Sabana, Ciudad Real, Colinas Del Marquez, Comunidad Bethel, Est De Tortuguero, Ext Ocean Front, Hacienda La Arboleda, Haciendas De Monteverde, Jard De Vega Baja, Los Naranjos, Ocean Park, Parc Amadeo, Qtas De Tortuguero, Repto Sobrino, Sect Arenales, Sect Brisas Del Rosario, Sect El Lido, Sect Lomba, Sect Miraflores, Urb Alborada, Urb Atlantic View, Urb Brasilia, Urb Cabo Caribe, Urb Camino Del Sol, Urb Ciara Del Sol, Urb El Rosario, Urb El Verde, Urb Guarico, Urb La Cruv, Urb Las Delicias, Urb Las Flores, Urb Las Terrenas, Urb Los Almendros, Urb Los Hucares, Urb Monte Carlo, Urb Ocean Front, Urb San Agustin, Urb San Demetrio, Urb San Vicente, Urb Vega Baja Lakes, Urb Vega Serena, Villa Del Rosario, Villa Los Pescadores, Villa Pinares, Villa Real, Villa Rosa 2, Villas De La Playa, Vista Verde",PR,"Vega Baja Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.39,0 +00694,"PO BOX",0,"Vega Baja",,,PR,"Vega Baja Municipio",America/Puerto_Rico,,NA,US,18.48,-66.39,0 +00698,STANDARD,0,Yauco,,"Alts De Yauco, Alts Del Cafetal, Bda Galarza, Bda Las Delicias, Bda Lluberas, Bo Alto De Cuba, Bo Palomas, Colinas De Yauco, Est De Yauco, Est De Yodimar, Ext Alts De Yauco, Ext Alts De Yauco Ii, Hacienda Mariani, Haciendas Florida, Jard De Borinquen, Jard De Montblanc, Jard M Blanco, Qtas De Valle Verde, Repto Esperanza, Res Barinas, Sect La Vega, Sect Las Pelas, Sect Pueblo Nuevo, Urb Barinas, Urb Buena Vista, Urb Costa Sur, Urb El Rocio, Urb El Rosario, Urb Hill View, Urb La Quinta, Urb Los Angeles, Urb Los Pinos, Urb Luchetti, Urb Mifedo, Urb Monteverde, Urb Roosevelt, Urb San Francisco, Urb Turnkey, Veredas De Yauco, Villa Milagros, Villa Olimpia, Villas Del Cafetal, Villas Del Cafetal Ii, Vista Real, Vistas De Monte Sol, Vistas Del Palmar",PR,"Yauco Municipio",America/Puerto_Rico,787,NA,US,18.03,-66.86,0 +00703,STANDARD,0,"Aguas Buenas",,"Est Del Rio, Mans De Aguas Buenas, Urb San Antonio",PR,"Aguas Buenas Municipio",America/Puerto_Rico,787,NA,US,18.25,-66.1,0 +00704,STANDARD,0,Aguirre,,"Est De Trinitaria, Ext El Coqui, Parc Cabasa, Parc Parque, Paseo Costa Del Sur, Sect Lanausse, Urb Eugene Rice, Urb Gonzalez, Urb La Fabrica, Urb Monte Soria 2, Villas Del Coqui",PR,"Salinas Municipio",America/Puerto_Rico,,NA,US,17.96,-66.22,0 +00705,STANDARD,0,Aibonito,,"Bda San Luis, Bo Llanos, Brisas De Aibonito, Colinas De San Francisco, Est Del Llano, Ext Bella Vista, Ext San Luis, Ext Villa Rosales, Praderas De Aibonito, Repto Robles, Urb Bella Vista, Urb Buena Vista, Urb Golden Vlg Iv, Urb La Providencia, Villa De La Rosa, Villa Rosales, Villas Del Coqui",PR,"Aibonito Municipio",America/Puerto_Rico,787,NA,US,18.14,-66.26,0 +00707,STANDARD,0,Maunabo,,"Brisas De Emajaguas, Jard Los Almendros, Urb San Pedro, Villa Alegre, Villas De Maunabo",PR,"Maunabo Municipio",America/Puerto_Rico,"787,939",NA,US,18,-65.9,0 +00714,STANDARD,0,Arroyo,,"Brisas Del Mar, Calle Estancias De Mirasol, Ext Jard De Arroyo, Jard De Arroyo, Jard De Lafayette, Parq De Guasimas, Qtas De Guasima, Repto Bello Mar, Urb Arroyo Del Mar, Urb Belinda, URB LAS 500, Urb Miramar 1, Urb Palmar 2, Urb San Antonio, Villas De Arroyo, Villas De Lafayette",PR,"Arroyo Municipio",America/Puerto_Rico,"787,939",NA,US,17.97,-66.06,0 +00715,STANDARD,0,Mercedita,Ponce,"Bo Calzada, Bo La Cuarta, Brisas De Maravilla, Central Mercedita",PR,"Ponce Municipio",America/Puerto_Rico,787,NA,US,18.01,-66.56,0 +00716,STANDARD,0,Ponce,Mercedita,"Bo Bucana, Bo Campo Alegre, Bo Sabanetas, Bo Tenerias, Comunidad Tabaiba, Est Del Carmen, Ext Alhambra, Ext Alta Vista, Ext Villa Del Carmen, Hillcrest Village, Jard Alhambra, Jard Fagot, Parc Amalia Marin, Parc Sabanetas, Parq Del Rio, Repto Anaida, Repto Sabanetas, Sect Los Potes, Sect Playita, Sect Salistral, Urb Alhambra, Urb Alhambra Ct, Urb Alta Vista, Urb Anaida, Urb Bella Vista, Urb Camino Del Sur, Urb Costa Caribe, Urb Costa Sabana, Urb El Monte, Urb Flamboyanes, Urb Las Monjitas, Urb Los Almendros, Urb Los Caobos, Urb Sagrado Corazon, Urb San Tomas, Urb Santa Clara, Valle Real, Valle Verde, Villa De Juan, Villa Del Carmen, Villa Del Sagrado Corazon, Villa Esperanza, Villa Flores, Villa Pampanos, Villa Tabaiba, Vista Point, Vistas Del Mar",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,17.98,-66.6,0 +00717,STANDARD,0,Ponce,,"Bda Belgica, Bda Mariani, Bda Salazar, Bda Santa Rosa, Bo Caracoles, Bo Cuatro Calles, Bo San Anton, Ext Salazar, Repto Universitario, Urb Buena Vista, Urb Constancia, Urb Constancia Gdns, Urb El Bosque, Urb Los Maestros, Urb Mariani, Urb Mercedita, Urb Patio Laboy, Urb Perla Del Sur, Urb San Antonio, Urb San Jorge, Urb Santa Maria, Urb Starlight, Villa Grillasca, Vista Alegre",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,18,-66.61,0 +00718,STANDARD,0,Naguabo,,"Bo Mariana, Brisas De Naguabo, Hacienda Grande, Jard De Esperanza, Jard De La Via, Jard Del Este, Mans Playa Hucares, Repto Santiago, Urb Casabella, Urb City Palace, Urb Diplo, Urb Juan Mendoza, Urb Promised Land, Urb Ramon Rivero, Urb Santo Tomas, Villa Del Rosario",PR,"Naguabo Municipio",America/Puerto_Rico,787,NA,US,18.21,-65.73,0 +00719,STANDARD,0,Naranjito,,"Jard De Naranjito, Sect Chevres",PR,"Naranjito Municipio",America/Puerto_Rico,787,NA,US,18.3,-66.24,0 +00720,STANDARD,0,Orocovis,,"Alt De Orocovis, Urb Santa Teresita, Villas De Orocovix I, Villas De Orocovix Ii",PR,"Orocovis Municipio",America/Puerto_Rico,"787,939",NA,US,18.22,-66.39,0 +00721,"PO BOX",0,Palmer,"Rio Grande",,PR,,America/Puerto_Rico,,NA,US,18.37,-65.77,0 +00723,STANDARD,0,Patillas,,"Jard De Mamey, Jard De Patillas, Parq Del Sol, Portales De Jacaboa, Urb El Paraiso, Urb Mariani, Urb San Benito, Urb San Jose, Urb San Martin, Urb Solimar, Valle Alto, Valle De La Providencia, Villas De Patillas",PR,"Patillas Municipio",America/Puerto_Rico,,NA,US,18,-66.01,0 +00725,STANDARD,0,Caguas,,"Alt De Caguas, Alt Del Turabo, Bda Morales, Bosques De La Sierra, Brisas Del Parque I, Brisas Del Parque Ii, Est El Verde, Ext Caguax, Ext El Verde, Ext La Granja, Ext Villa Blanca, Hacienda Borinquen, Jard Pla, Lomas De La Serrania, Parq Las Mercedes, Paseo Del Rio, Qtas De San Luis 1, Qtas De San Luis 2, Qtas De Villa Blanca, Repto Caguax, Repto Solano, Res Bairoa, Terr De Borinquen, Urb Balcones Las Catalinas, Urb Batista, Urb Billy Suarez, Urb Bonneville Gardens, Urb Bonneville Gdns, Urb Bonneville Terr, Urb Borinquen Valley, Urb Borinquen Valley 2, Urb Brooklyn, Urb Bunker, Urb Caguas Milenio, Urb Caguas Milenio Ii, Urb Caguas Norte, Urb Caribe Gardens, Urb Caribe Gdns, Urb Condado Moderno, Urb Condado Viejo, Urb El Retiro, Urb El Rincon De La Serrania, Urb El Verde, Urb Grillo, Urb Jose Delgado, Urb Jose Mercado, Urb La Granja, Urb La Hacienda, Urb La Meseta, Urb Machin, Urb Mariolga, Urb Montefiori, Urb Monticielo, Urb Myrlena, Urb Nazario, Urb Notre Dame, Urb Paradise, Urb San Alfonso, Urb San Antonio",PR,"Caguas Municipio",America/Puerto_Rico,"787,939",NA,US,18.23,-66.03,0 +00726,"PO BOX",0,Caguas,,,PR,,America/Puerto_Rico,,NA,US,18.23,-66.03,0 +00727,STANDARD,0,Caguas,,"Alt De La Fuente, Alt Villa Del Rey, Bosque Verde, Chalets De Bairoa, Ciudad Jardin De Bairoa, Est De Bairoa, Est Degetau, Est Del Turabo, Hacienda San Jose, Jard De Caguas, La Cima I, Mans De Ciudad Jardin Bairoa, Mans El Paraiso, Parq Del Monte, Parq Del Monte 2, Parq Del Rio, Parq Las Haciendas, Repto San Jose, Sect Altos De La Fuente, Urb Altomonte, Urb Altos De La Fuente, Urb Arbolada, Urb Asomante, Urb Bairoa Golden Gate Ii, Urb Bairoa Golden Gates, Urb Bairoa Park, Urb Bonneville Hts, Urb Bonneville Manor, Urb Bonneville Vly, Urb Cautiva, Urb Diamond Vlg, Urb El Valle, Urb Idamaris Gardens, Urb Idamaris Gdns, Urb La Estancia, Urb La Reserva, Urb Las Nubes, Urb Mirador De Bairoa, Urb Palmas Del Turabo, Urb Sanjuanera, Urb Surena, Urb Terralinda, Urb Turabo Gardens, Urb Turabo Gdns, Valle Tolima, Valle Verde, Villa Caliz, Villa Caribe, Villa Del Rey 3, Villa Del Rey 4, Villa Del Rey 5, Villa Esperanza, Villa Hermosa, Villa Nueva",PR,"Caguas Municipio",America/Puerto_Rico,"787,939",NA,US,18.22,-66.07,0 +00728,STANDARD,0,Ponce,,"Bda Baldorioty, Bo Magueyes, Bosque Senorial, Brisas Del Mar, Comunidad Punta Diamante, Ext Jard Del Caribe, Ext Las Delicias 2, Ext Punto Oro, Ext Villa Paraiso, Hacienda La Matilde, Hacienda Las Lomas, Jard Del Caribe, Jard Del Caribe 5, Parc El Tuque, Parc Magueyes, Parc Nueva Vida, Parc Nuevas Magueyes, Parc Quebrada Limon, Qtas Del Sur, Res Canas Housing, Res Perla Del Bucana, Sect La Cotorra, Sect Las Batatas, Sect Las Cucharas, Sect Playita, Urb Baldorioty, Urb Baramaya, Urb Bello Horizonte, Urb Canas, Urb Casa Mia, Urb La Providencia, Urb Las Delicias, Urb Las Margaritas, Urb Morell Campos, Urb Punto Oro, Urb Rio Canas, Urb San Antonio, Urb San Jose, Valle Altamira, Valle De Andalucia, Valle Del Rey, Villa Delicias, Villa Paraiso, Villa Rio Canas",PR,"Ponce Municipio",America/Puerto_Rico,,NA,US,17.99,-66.66,0 +00729,STANDARD,0,Canovanas,,"Brisas De Canovanas, Brisas De Loiza, Ciudad Jardin De Canovanas, Est Del Rio, Ext Villas De Loiza, Haciendas De Canovanas, Jard De Canovanas, Jard De Palmarejo, Las Quintas De Altamira, Parc Central, Parc Monteverde, Parc San Isidro, Parc Villa Delicias, Qtas De Canovanas, Qtas Jard De Parmarejo, Urb Country View, Urb Country View Loiza, Urb Del Pilar, Urb Forest Plantation, Urb Las Haciendas Canovanas, Urb Las Vegas, Urb Loiza Valley, Urb Los Eucaliptos, Urb Pueblo Indio, Urb River Gdns, Urb River Plantation, Urb River Valley, Urb River Valley Pk, Urb Town Pk, Urb Usubal, Villas De Loiza, Villas Del Este, Villas Doradas",PR,"Canovanas Municipio",America/Puerto_Rico,787,NA,US,18.37,-65.9,0 +00730,STANDARD,0,Ponce,,"Alt De Jacaranda, Alt Del Madrigal, Bda Borinquen, Bda Clausells, Bda Ferran, Bda Tamarindo, Bo La Ponderosa, Bo Magueyes, Bo Pueblito Nuevo, Bo Tamarindo, Comunidad Playita Ferry, Est Del Golf Club, Ext El Madrigal, Ext La Guadalupe, Ext Qtas De Monserrate, Ext Santa Teresita, Ext Valle Alto, Jard De Ponce, Lomas De Country Club, Qtas De Monserrate, Sect Clausell, Sect La Ponderosa, Sect Las Canitas, Sect Playita, Urb El Madrigal, Urb Ferry Barranca, Urb Glenview Gdns, Urb Jacaranda, Urb Jaime L Drew, Urb La Guadalupe, Urb La Lula, Urb La Rambla, Urb Las Monjitas, Urb Morell Campos, Urb Nuevo Mameyes, Urb Santa Teresita, Urb Tibes, Valle Alto, Villa Dos Rios",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,18.03,-66.62,0 +00731,STANDARD,0,Ponce,,"Urb Riberas De Bucana, Urb Terra Senorial",PR,"Ponce Municipio",America/Puerto_Rico,787,NA,US,18.11,-66.63,0 +00732,"PO BOX",0,Ponce,,,PR,,America/Puerto_Rico,,NA,US,17.98,-66.6,0 +00733,"PO BOX",0,Ponce,,,PR,,America/Puerto_Rico,,NA,US,17.98,-66.6,0 +00734,"PO BOX",0,Ponce,,,PR,,America/Puerto_Rico,,NA,US,17.98,-66.6,0 +00735,STANDARD,0,Ceiba,"Roosevelt Rds, Roosevelt Roads","Brisas De Ceiba, Ext Villa Del Pilar, Jard Avila, Jard De Ceiba, Jard De Ceiba Ii, Parc Calderonas, Parc Calderonas Nuevas, Paseo De La Costa, Paseos De Ceiba, Res La Ceiba, Urb Celina, Urb Roosevelt Gdns, Urb Santa Maria, Urb Vegas De Ceiba, Villa Del Pilar, Villa Flores",PR,"Ceiba Municipio",America/Puerto_Rico,787,NA,US,18.25,-65.68,0 +00736,STANDARD,0,Cayey,,"Bda Buena Vista, Bda Cantera, Bda Nueva, Bda Polvorin, Bda Vieques, Bo Beatriz, Bo Carite, Bo Cedro, Bo Farallon, Bo Guavate, Bo Las Parras, Bo Mogote, Bo Montellano, Bo Pedro Avila, Bo Vegas, Chalets Las Muesas, Colinas De Cayey, Colinas View, Comunidad San Tomas, Est De Las Brumas, Est De Monte Rio, Hacienda Vistas Del Plata, Jard De Cayey, Jard Del Caribe, Mans De Los Cedros, Mans Monte Verde, Parc El Polvorin, Paseo De Las Brumas, Praderas Del Plata, Repto Ana Luisa, Repto Montellano, Sect Pepe Hoyo, Sect Sanchez, Urb Aponte, Urb Bosch, Urb Carrasquillo, Urb El Remanso, Urb El Rocio, Urb El Torito, Urb Fullana, Urb La Planicie, Urb La Plata, Urb Las Muesas, Urb Minima, Urb Mirador Echevarri, Urb Mirador Universitario, Urb Miradores De Cayey, Urb San Cristobal, Urb San Martin, Valle Alto, Villa Verde",PR,"Cayey Municipio",America/Puerto_Rico,"787,939",NA,US,18.11,-66.16,0 +00737,"PO BOX",0,Cayey,,,PR,,America/Puerto_Rico,,NA,US,18.11,-66.16,0 +00738,STANDARD,0,Fajardo,,"Alts De Monte Brisas, Alts De San Pedro, Bda Obrera, Bda Roosevelt, Bo Jerusalen, Bo Proyecto Fema, Bo Proyecto Veve Calzada 3, Bo Vega Baja, Ext Melendez, Ext Veve Calzada, Jard De Monte Brisas, La Costa Apts, Mans Punta Del Este, Qtas De Fajardo, Terr Demajagua, Terr Demajagua 2, Urb Alhambra, Urb Altamira, Urb Baralt, Urb Batey, Urb Fajardo Gdns, Urb Garcia Ponce, Urb La Costa Gdns Homes, Urb Marines, Urb Melendez, Urb Monte Brisas 1, Urb Monte Brisas 2, Urb Monte Brisas 3, Urb Monte Brisas 5, Urb Monte Vista, Urb Montemar, Urb Naranjo Valley, Urb Puertas Del Sol, Urb Rafael Bermudez, Urb San Pedro, Urb Santa Isidra 1, Urb Santa Isidra 2, Urb Santa Isidra 3, Urb Santa Isidra 4, Urb Veve Calzada, Urb Viera, Valle Verde, Villa Clarita, Villa Marina, Vistas Del Convento, Vistas Del Mar",PR,"Fajardo Municipio",America/Puerto_Rico,"787,939",NA,US,18.33,-65.65,0 +00739,STANDARD,0,Cidra,,"Bosque Real, Ciudad Primavera, Est Del Bosque, Hacienda Primavera, Jard De Rabanal, Jard Treasure Island, Parc Gandara, Parc Gandara Ii, Sect Campobello, Sect Lozada, Urb Campo Bello, Urb Campo Lago, Urb Campo Primavera, Urb Domingo Alejandro, Urb Domingo Rodriguez, Urb Ferrer, Urb Freire, Urb Monte Primavera, Urb Sabanera, Urb Treasure Vly, Villa Del Carmen, Villas De San Ignacio, Vista Monte, Vistas De Sabanera",PR,"Cidra Municipio",America/Puerto_Rico,787,NA,US,18.17,-66.15,0 +00740,STANDARD,0,"Puerto Real",,"Valle Puerto Real",PR,"Fajardo Municipio",America/Puerto_Rico,,NA,US,18.33,-65.63,0 +00741,STANDARD,0,"Punta Santiago","Punta Stgo","Urb Verdemar, Villa Palmira",PR,"Humacao Municipio",America/Puerto_Rico,,NA,US,18.16,-65.75,0 +00742,STANDARD,0,"Roosevelt Roads","Ceiba, Roosevelt Rds",,PR,,America/Puerto_Rico,,NA,US,18.27,-65.65,0 +00744,"PO BOX",0,"Rio Blanco",,,PR,,America/Puerto_Rico,,NA,US,18.22,-65.79,0 +00745,STANDARD,0,"Rio Grande",,"Alt Rio Grande, Bda Shangai, Est Del Sol, Ext Est Del Sol, Hacienda Las Garzas, Jard Rio Grande, Parc La Dolores, Repto Costa Del Sol, Urb Cambalache I, Urb Cambalache Ii, Urb Casa Verde, Urb Coco Beach, Urb Galateo, Urb Jose H Ramirez, Urb Jose Ph Hernandez, Urb Los Arboles, Urb Los Maestros, Urb Miramelinda Estate, Urb Pedregales, Urb Ponderosa, Urb Rio Grande Est, Urb Rio Grande Hls, Urb Sra Del Carmen, Villa Realidad, Villa Vizcay, Villas De Rio Grande, Vistas De Rio Grande I, Vistas De Rio Grande Ii, Vistas Del Mar",PR,"Rio Grande Municipio",America/Puerto_Rico,787,NA,US,18.38,-65.83,0 +00751,STANDARD,0,Salinas,,"Bo Coco Nuevo, Bo Coco Viejo, Bo Playita, Bo Santa Ana I, Bo Santa Ana Iii, Brisas De Evelymar, Est De Evelymar, Ext Carmen, Ext Monserrate, Jard De Salinas, Sect Campito, Urb Corales Del Mar, Urb La Arboleda, Urb La Carmen, Urb La Providencia, Urb Las Antillas, Urb Las Mercedes, Urb Llanos De Providencia, Urb Marbella, Urb Monserrate, Urb Salimar, Villa Cofresi, Villa Natalia",PR,"Salinas Municipio",America/Puerto_Rico,787,NA,US,17.97,-66.29,0 +00754,STANDARD,0,"San Lorenzo",,"Alt De San Lorenzo, Bda Roosevelt, Bosque Llano, Ciudad Masso, Ext Alt De San Lorenzo, Ext Bda Roosevelt, Ext Jard De San Lorenzo, Ext Tamarindo, Hacienda Florida, Jard De Cerro Gordo, Jard De San Lorenzo, Mans De Monte Sereno, Paseo De Las Flores, Paseo De San Lorenzo, Urb Los Caminos, Urb Los Flamboyanes, Urb Masso, Urb Monte Rey, Urb Munoz Marin, Urb Portal Del Sol, Urb San Lorenzo Valley, Urb Santa Clara, Urb Savannah Real, Urb Tamarindo 1, Urb Valentina, Urb Valentina 2, Villas Del Hato, Vistas De San Lorenzo",PR,"San Lorenzo Municipio",America/Puerto_Rico,787,NA,US,18.19,-65.96,0 +00757,STANDARD,0,"Santa Isabel",,"Alt De Santa Isabel, Bda Felicia 1, Bda San Felipe, Brisas Del Prado, Est De Santa Isabel, Ext Bda Monserrate, Hacienda Concordia, Hacienda Condcordia 2, Hacienda Isabel, Jard De Santa Isabel, Paseo Jacaranda, Portal De La Reina, Praderas Del Sur, Sect Villa Del Mar, Urb Alborada, Urb Buenos Aires, Urb Santiago Apostol, Valle Costero, Villa Camarero, Villa Retiro Sur, Villa Serena",PR,"Santa Isabel Municipio",America/Puerto_Rico,787,NA,US,17.97,-66.4,0 +00765,STANDARD,0,Vieques,,"Bo Coffi, Bo Tortuguero, Urb Isabel Ii, Urb Lucila Franco",PR,"Vieques Municipio",America/Puerto_Rico,787,NA,US,18.13,-65.44,0 +00766,STANDARD,0,Villalba,,"Alt De Villalba, Alts Del Alba, Bo Camarones, Est De Mayoral, Est De Santa Rosa, Ext Est De Mayoral, Portales Del Alba, Qtas Del Alba, Urb La Vega, Urb Las Alondras, Urb Luceros De Villalba, Urb Tierra Santa, Villa Alba, Villa Laura, Vista Alegre, Vista Bella",PR,"Villalba Municipio",America/Puerto_Rico,"787,939",NA,US,18.13,-66.48,0 +00767,STANDARD,0,Yabucoa,,"Alts De Terralinda, Ext Villas De Buenaventura, Jard De Yabucoa, Parq Ind Juan Martin, Repto Horizonte, Sect Piedra Azul, Urb Calvario, Urb Jaime C Rodriguez, Urb Los Angeles, Urb Mendez, Urb Santa Elena, Urb Santa Maria, Valles De Yabucoa, Villa El Recreo, Villa Hilda, Villas De Buenaventura",PR,"Yabucoa Municipio",America/Puerto_Rico,787,NA,US,18.04,-65.87,0 +00769,STANDARD,0,Coamo,,"Alts De Coamo, Bda San Antonio, Est De Coamo, Est De Hucar, Ext Jard De Coamo, Hacienda Del Rio, Hacienda Miraflores, Haciendas Monterrey, Jard De Coamo, Jard De Santa Ana, Mans De Coamo, Parc Niagara, Parq De Las Flores, Paseo Real, Qtas De Coamo, Urb Bella Vista Est, Urb Coamo Gdns, Urb El Bosque, Urb El Eden, Urb El Mirador, Urb La Arboleda, Urb Las Aguilas, Urb Las Fuentes De Coamo, Urb Monte Flores, Urb Monte Real, Urb Mountain Vw, Urb Paraiso De Coamo, Urb Provincias Del Rio 1, Urb Provincias Del Rio 2, Urb San Antonio, Urb Vistamar, Valle Abajo, Valle Arriba, Valle Escondido, Villa Cristina, Villa Madrid, Villa Santa Catalina, Villa Tropical, Vista Del Sol, Vistas De Coamo",PR,"Coamo Municipio",America/Puerto_Rico,787,NA,US,18.08,-66.36,0 +00771,STANDARD,0,"Las Piedras",,"Colinas De San Agustin, Est De Los Artesanos, Est Del Rocio, Ext La Inmaculada, Ext Las Mercedes, Jard De Oriente, Mans De Las Piedras, Mans De Los Artesanos, Olympic Hls, Paseo De Los Artesanos, Paseo Samaritano, Portales De Las Piedras, Repto Arenales, Urb April Gdns, Urb Camino Sereno, Urb Campo Real, Urb La Estancia, Urb La Inmaculada, Urb Las Campinas I, Urb Las Campinas Ii, Urb Las Campinas Iii, Urb Olimpic Cts, Urb Olimpic Pk, Urb Olivia Pk, Urb Olympic Ville, Urb Oriente, Urb Palma Royale, Urb Park Hurst, Valle Piedras, Villa Las Mercedes, Villas De San Cristobal, Villas De San Cristobal Ii, Vistas Del Rio",PR,"Las Piedras Municipio",America/Puerto_Rico,787,NA,US,18.18,-65.86,0 +00772,STANDARD,0,Loiza,,"Jard De Loiza, Sect Villa Canona, Urb Santiago, Vistas Del Oceano",PR,"Loiza Municipio",America/Puerto_Rico,,NA,US,18.43,-65.88,0 +00773,STANDARD,0,Luquillo,,"Brisas De Luquillo, Brisas Del Mar, Est Del Atlantico, Hacienda Margarita, Hacienda Paloma, Hacienda Paloma Ii, Urb Alamar, Urb Costa Azul, Urb Los Paisajes, Urb Luquillo Lomas, Urb Luquillo Mar, Urb Paisaje Del Lago, Urb Paisajes Del Rio, Urb River Edge Hl, Urb Solimar, Urb Vilomar, Villa Angelina, Vistas De Luquillo, Vistas De Luquillo Ii",PR,"Luquillo Municipio",America/Puerto_Rico,"787,939",NA,US,18.37,-65.71,0 +00775,"PO BOX",0,Culebra,,,PR,"Culebra Municipio",America/Puerto_Rico,,NA,US,18.33,-65.3,0 +00777,STANDARD,0,Juncos,,"Bda Flores, Brisas Del Prado, Ciudad Jardin Juncos, Colinas De Juncos, Colinas Del Este, Est De Juncos, Est De La Ceiba, Ext Jard De Barcelona, Haciendas De Juncos, Haciendas De Tena, Jard De Barcelona, Jard De Ceiba Norte, Jard Del Valenciano, Mans De Juncos, Paseo De La Ceiba, Paseo Palma Real, Portales De Juncos, Repto Valenciano, Sect Canales, Sect Cuatro Calles, Urb Cerro Ceiba, Urb Diamaris, Urb El Cid, Urb El Encanto, Urb La Ceiba, Urb Lirios, Urb Lirios Cala, Urb Lirios Cala Ii, Urb Loma Alta, Urb Los Almendros, Urb Madrid, Urb Senderos De Juncos, Urb Valencia 1, Urb Valencia 2, Urb Virginia Vly, Villa Ana, Villa Graciela, Villas Central Victoria",PR,"Juncos Municipio",America/Puerto_Rico,787,NA,US,18.22,-65.91,0 +00778,STANDARD,0,Gurabo,,"Alt De Montebrisas, Alts De Hato Nuevo, Bda Campamento, Bda Nueva, Ciudad Jardin, Est De Gran Vista, Est De Santa Barbara, Est Siervas De Maria, Ext Llanos De Gurabo, Ext Villa Marina, Jard De Gurabo, Lomas Del Sol, Mans De Navarro, Mans De Santa Barbara, Parc Nuevas, Parq Las Americas, Paseo De Santa Barbara, Praderas De Navarro, Repto San Jose, Senderos De Gurabo, Turabo Industrial Park, Urb Altapaz, Urb Bajo Costo, Urb Campinas De Navarro, Urb El Vivero, Urb Gran Vista I, Urb Gran Vista Ii, Urb Heavenly Vw Est, Urb Horizonte, Urb Llanos De Gurabo, Urb Los Flamboyanes, Urb Los Paisajes, Urb Los Robles, Urb Los Suenos, Urb Monte Alto, Urb Monte Subacio, Urb Oreilly, Urb Paraiso De Gurabo, Urb Preciosa, Urb Reina De Los Angeles, Urb Sabanera Del Rio, Urb Veredas, Valle De Ensueno, Valle De Santa Barbara, Valle Del Tesoro, Villa Alegre, Villa Marina, Villas De Gurabo, Villas Del Carmen, Vista Lago",PR,"Gurabo Municipio",America/Puerto_Rico,787,NA,US,18.25,-65.97,0 +00780,STANDARD,0,"Coto Laurel",Ponce,"Bo Verdum, Brisas De Juliana, Brisas Del Laurel, Est Del Laurel, Est Del Monte, Ext Lago Horizonte, Hacienda Juliana, Haciendas Del Monte, Mans Del Lago, Mans Del Sur, Mans Real, Urb El Laurel, Urb Lago Horizonte, Urb Laurel Sur, Urb Llanos Del Sur, Urb Santa America, Urb Santa Rita, Urb Santa Rita 2, Urb Santa Rita 3, Urb Sombras Del Real, Villas Del Laurel 1, Villas Del Laurel 2, Villas Del Turey",PR,"Ponce Municipio",America/Puerto_Rico,"787,939",NA,US,18.09,-66.57,0 +00782,STANDARD,0,Comerio,,"Urb Ariel, Urb La Hacienda, Urb La Plata, Urb Pasarell, Urb Rio Plata, Urb Sabana Del Palmar",PR,"Comerio Municipio",America/Puerto_Rico,787,NA,US,18.22,-66.22,0 +00783,STANDARD,0,Corozal,,"Bda Sostre, Bo Pueblo, Colinas De Corozal, Ext Sylvia, Loma Linda, Sect Cienagueta, Urb Cerromonte, Urb Cibuco, Urb El Centro, Urb Las Brisas, Urb Maria Del Carmen, Urb Monterey, Urb Monteverde, Urb San Feliz, Urb Sobrino, Urb Sylvia, Valle De Aramana",PR,"Corozal Municipio",America/Puerto_Rico,787,NA,US,18.34,-66.31,0 +00784,STANDARD,0,Guayama,,"Alts Del Olimpo, Bda Blondet, Bda Borinquen, Bda Marin, Bda Santa Ana, Bo Corazon, Bo Machete, Bo Olimpo, Brisas Del Mar, Chalets De Brisas Del Mar, Comunidad Miramar, Comunidad Puente Jobos, Comunidad San Martin, Hacienda Guamani, Hacienda Jazmin, Hacienda Los Recreos, Jard De Guamani, Jard De Monte Olivo, Jardines De La Reina, Parc Nueva Olimpo, Urb Algarrobos, Urb Bello Horizonte, Urb Camino De La Princesa, Urb Caribe Mar, Urb Costa Azul, Urb Dorado, Urb El Legado Golf Resort, Urb Green Hls, Urb Guayama Valley, Urb La Hacienda, Urb La Pradera, Urb Rexmanor, Urb Villamar, Urb Vistamar, Urb Vistamar 3, Urb Vives, Valles De Guayama, Villa Rosa, Villa Rosa 1, Villa Rosa 2, Villa Rosa 3, Villa Universitaria",PR,"Guayama Municipio",America/Puerto_Rico,"787,939",NA,US,17.97,-66.11,0 +00785,"PO BOX",0,Guayama,,,PR,,America/Puerto_Rico,,NA,US,17.97,-66.11,0 +00786,"PO BOX",0,"La Plata",,,PR,"Aibonito Municipio",America/Puerto_Rico,,NA,US,18.16,-66.23,0 +00791,STANDARD,0,Humacao,,"Alts De San Benito, Bda Azucena, Bda Obrera, Bda Praa, Ciudad Cristiana, Colinas Del Este, Est De La Loma, Ext Cotto Mabu, Ext Roig, Ext San Antonio, Jard Central, Jard De Humacao, Mans Del Caribe, Parq De Candelero, Plaza Del Mar, Qtas De Humacao, Repto San Felipe, Urb Arboleda, Urb Buzo, Urb El Paraiso, Urb El Recreo, Urb La Estancia, Urb La Patagonia, Urb Las Leandras, Urb Los Maestros, Urb Los Rosales, Urb Los Sauces, Urb Mabu, Urb Miradero, Urb Palacios Del Sol, Urb Palmanova, Urb Palmas Plantation, Urb Palmas Reales, Urb Pereyo, Urb Rivera Donato, Urb San Antonio, Urb San Francisco, Urb Sunrise, Villa Franca 2, Villa Humacao, Villa Oriente, Villa Universitaria, Villas De Candelero, Villas Del Rio, Vista Alegre, Vista Hermosa",PR,"Humacao Municipio",America/Puerto_Rico,787,NA,US,18.15,-65.81,0 +00792,"PO BOX",0,Humacao,,,PR,,America/Puerto_Rico,,NA,US,18.15,-65.81,0 +00794,STANDARD,0,Barranquitas,,"Bda Alemania, Urb Campo Cristal, Urb San Cristobal, Vistas De Montecielo",PR,"Barranquitas Municipio",America/Puerto_Rico,787,NA,US,18.18,-66.3,0 +00795,STANDARD,0,"Juana Diaz",,"Alts De Rosandramar, Alts Del Encanto, Brisas Del Sur, Brisas Del Valle, Colinas De San Martin, Colinas De Verde Azul, Colinas Del Prado, Comunidad Monte Cristo, Est De Juana Diaz, Est Del Rio, Est El Guayabal, Ext Del Carmen, Ext Jacaguax, Ext La Fe, Ext Las Flores, Ext Las Marias, Hacienda Casa Blanca, Hacienda Las Vegas, Jard De Santo Domingo, Mans Camino Real, Mans En Paseo De Reyes, Paseo Del Parque, Paseo Sol Y Mar, Portal Del Valle, Qtas De Altamira, Sect Las Flores, Urb Camino Real, Urb Del Carmen, Urb Hermanos Santiago, Urb Jacaguax, Urb La Esperanza, Urb Las Flores, Urb Las Marias, Urb Las Quintas, Urb Los Reyes, Urb Monte Sol, Urb Palacios Del Prado, Urb San Martin, Urb San Martin Ii, Urb Santa Rita 4, Urb Tomas Carrion Maduro, Valle Hucares, Valle Sereno, Villa El Encanto, Villa Norma, Villas Del Prado, Villas Del Sol",PR,"Juana Diaz Municipio",America/Puerto_Rico,"939,787",NA,US,18.05,-66.5,0 +00801,"PO BOX",0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,,NA,US,18.35,-64.93,0 +00802,STANDARD,0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,340,NA,US,18.35,-64.93,0 +00803,"PO BOX",0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,,NA,US,18.35,-64.93,0 +00804,"PO BOX",0,"St Thomas","Charlotte Ama, Charlotte Amalie",,VI,,America/St_Thomas,,NA,US,18.35,-64.93,0 +00805,"PO BOX",0,"St Thomas",,,VI,,America/St_Thomas,,NA,US,18.34,-64.93,0 +00820,STANDARD,0,Christiansted,"St Croix",,VI,,America/St_Thomas,340,NA,US,17.74,-64.7,0 +00821,"PO BOX",0,Christiansted,,,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00822,"PO BOX",0,Christiansted,,,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00823,"PO BOX",0,Christiansted,"St Croix",,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00824,"PO BOX",0,Christiansted,"St Croix",,VI,,America/St_Thomas,,NA,US,17.74,-64.7,0 +00830,STANDARD,0,"St John","Cruz Bay",,VI,,America/St_Thomas,,NA,US,18.33,-64.79,0 +00831,"PO BOX",0,"St John","Cruz Bay",,VI,,America/St_Thomas,,NA,US,18.33,-64.79,0 +00840,STANDARD,0,Frederiksted,,,VI,,America/St_Thomas,340,NA,US,17.71,-64.88,0 +00841,"PO BOX",0,Frederiksted,,,VI,,America/St_Thomas,,NA,US,17.71,-64.88,0 +00850,STANDARD,0,Kingshill,,,VI,,America/St_Thomas,340,NA,US,17.76,-64.82,0 +00851,"PO BOX",0,Kingshill,,,VI,,America/St_Thomas,,NA,US,17.73,-64.8,0 +00901,STANDARD,0,"San Juan","Old San Juan, Viejo San Juan, Viejo Sn Juan",,PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.47,-66.1,0 +00902,"PO BOX",0,"San Juan","Old San Juan, Viejo San Juan, Viejo Sn Juan",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00906,"PO BOX",0,"San Juan","Pta De Tierra, Puerta De Tierra",,PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.46,-66.09,0 +00907,STANDARD,0,"San Juan","Condado, Miramar, Santurce","Bda Figueroa",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.08,0 +00908,"PO BOX",0,"San Juan",,"Santurce, Santurce Station",PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00909,STANDARD,0,"San Juan","Fdez Juncos, Fernandez Juncos, Minillas, Santurce","Urb Hipodromo",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.44,-66.07,0 +00910,"PO BOX",0,"San Juan","Fdez Juncos, Fernandez Juncos",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00911,STANDARD,0,"San Juan",Santurce,"Loiza Street",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.06,0 +00912,STANDARD,0,"San Juan",Santurce,,PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.45,-66.06,0 +00913,STANDARD,0,"San Juan","Isla Verde, Santurce",,PR,"San Juan Municipio",America/Puerto_Rico,"939,787",NA,US,18.45,-66.04,0 +00914,"PO BOX",0,"San Juan",Santurce,"Loiza Street",PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00915,STANDARD,0,"San Juan","Barrio Obrero, Bo Obrero, Santurce","Bda Buena Vista, Sect Cantera, Sect La Playita",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.05,0 +00916,"PO BOX",0,"San Juan","Barrio Obrero, Santurce",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00917,STANDARD,0,"San Juan","Hato Rey","Bda Bitumul, Bda Buena Vista, Bda Israel, Bda Las Monjas, Sect El Relincho, Urb Davila & Llenza, Urb El Prado, Urb Floral Park, Urb Perez Morris, Urb Pinero, Urb Quintana, Urb Umpierre",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.42,-66.05,0 +00918,STANDARD,0,"San Juan",,"Bda Tokio, Ext Roosevelt, Parq Central, Urb Baldrich, Urb El Vedado, Urb Hyde Pk, Urb Jb Huyke, Urb Los Ingenieros, Urb Los Maestros, Urb Roosevelt, Villa Pica",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.42,-66.07,0 +00919,"PO BOX",0,"San Juan","Hato Rey",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00920,STANDARD,0,"San Juan","Caparra, Caparra Hills, Caparra Ter, Caparra Terrace, Pto Nuevo, Puerto Nuevo","Bechara Ind Park, Mario Julia Ind Park, Monterrey Ind Park, Rio Piedras, San Miguel Ind Park, Urb Altamira, Urb Caparra Hts, Urb Puerto Nuevo, Urb San Patricio, Urb Summit Hls, Villa Borinquen",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-66.09,0 +00921,STANDARD,0,"San Juan","College Park, Pto Nuevo, Puerto Nuevo, Rio Piedras","Ext College Park, Parq De San Ignacio, Repto Landrau, Repto Metropolitano, Urb Altamesa, Urb Caparra Terr, Urb College Park, Urb Coop V Borinquen, Urb La Riviera, Urb La Riviera Ind Park, Urb Las Americas, Urb Las Lomas, Urb Puerto Nuevo, Urb Santiago Iglesias, Villa El Salvador, Villa Magna",PR,"San Juan Municipio",America/Puerto_Rico,939,NA,US,18.39,-66.09,0 +00922,"PO BOX",0,"San Juan","Caparra, Caparra Hills, Caparra Ter, Caparra Terrace",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00923,STANDARD,0,"San Juan",,"65th Infantry, Bo Capetillo, Repto America, Repto San Jose, Urb Casas Yoyo, Urb Del Carmen, Urb Dos Pinos, Urb Dos Pinos Townhouse, Urb Embalse San Jose, Urb Los Maestros, Urb Matienzo Cintron, Urb Open Land, Urb San Agustin, Urb San Jose, Urb Santa Barbara, Urb Valencia, Urb Victoria, Valle Universitario, Villa Dos Pinos, Villa Granada, Vista Del Cano",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.41,-66.04,0 +00924,STANDARD,0,"San Juan","Rio Piedras","65th Infantry, Alt De Berwind, Bda El Polvorin, Bda Hernandez, Bda Santo Domingo, Ciudad Central I, Colinas De Monte Carlo, Colinas Verde, Ext Colinas Verde, Ext Town Park, Mans De San Martin, Parc Falu, Parc Hill Brothers, Sect Los Penas, Urb Berwind Est, Urb Club Manor, Urb Country Club, Urb Delicias, Urb El Cemi, Urb El Comandante, Urb Gonzalez Seijo, Urb Highland Pk, Urb La Vista, Urb Las Virtudes, Urb Luarca, Urb Monte Carlo, Urb Sabana Llana, Urb San Martin, Urb Sevilla, Urb Town Pk, Urb Vosburg, Villa Capri, Villa Navarra, Villa Olimpica, Villa Prades, Villa Rosales, Vista Del Atlantico",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.4,-66.01,0 +00925,STANDARD,0,"San Juan","Rio Piedras","Bda Blondet, University Station, Urb Cabrera, Urb Gonzalez, Urb Santa Rita",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.4,-66.05,0 +00926,STANDARD,0,"San Juan","Cupey, Rio Piedras","Alts Del Remanso, Alturas De Borinquen Gdns, Bda Vista Alegre, Bo Buen Consejo, Bo Canejas, Bo Carraizo, Bo Dulce, Bo Quebrada Arena, Bo Tortugo, Bo Venezuela, Camino Del Bosque, Ciudad Senorial, Colinas De Cupey, Est De San Geraldo, Ext Alameda, Ext Mans De Vilanova, Ext Milaville, Hacienda De Carraizo, Hacienda Las Ceibas, Ind Victor Fernandez, Jard Botanico Sur, Jard De Caldas, Las Flores De Montehiedra, Los Arboles De Montehiedra, Mans Colinas De Cupey, Mans De Caldas, Mans De Park Gdns, Mans De Rio Piedras, Mans De Romany, Mans De Villanova, Palmares De Monteverde, Palmas De Carraizo, Parq Ind Quebrada Arenas, Parq Senorial, Paseo Alto, Paseo De La Fuente, Paseo Del Parque, Paseo Del Prado, Paseo Las Brisas, Paseo Las Vistas, Paseo Mayor, Paseo Real, Paseo San Juan, Qtas De Cupey, Repto Contemporaneo, Repto De Diego, Repto Oyola, Repto Universitario, Repto Veterano, Sect Betancourt, Sect Hoyo, Sect La Corte, Sect La Marina, Sect Paracochero, Senderos Estate, Urb Alamein, Urb Beverly Hills Ct, Urb Borinqu",PR,"San Juan Municipio",America/Puerto_Rico,787,NA,US,18.35,-66.05,0 +00927,STANDARD,0,"San Juan","Rio Piedras","Bda Villamil, Ext Santa Maria, Jard De Vedruna, Jard Metropolitano, Parq De Santa Maria, University Gardens, Urb Antonsanti, Urb Belisa, Urb Caribe, Urb Hyde Pk, Urb San Francisco, Urb San Ignacio, Urb Santa Ana, Urb Santa Maria, Urb University Gardens, Urb University Gdns, Villa Los Olmos, Villa Nevarez, Villas De Palma Real, Villas De San Francisco, Villas De San Ignacio",PR,"San Juan Municipio",America/Puerto_Rico,"787,939",NA,US,18.4,-66.06,0 +00928,"PO BOX",0,"San Juan","Rio Piedras",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00929,"PO BOX",0,"San Juan","Rio Piedras","65th Infantry",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00930,"PO BOX",0,"San Juan","Rio Piedras, San Jose",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00931,"PO BOX",0,"San Juan","Rio Piedras",,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00933,"PO BOX",0,"San Juan",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00934,STANDARD,0,"Fort Buchanan",,"Urb Coconut Grove, Urb Coqui Gdns, Urb Las Colinas",PR,"Guaynabo Municipio",America/Puerto_Rico,787,NA,US,18.41,-66.12,0 +00935,UNIQUE,0,"San Juan",,"Centro Medico Metropolitano",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00936,"PO BOX",0,"San Juan","Barrio Obrero, Caparra, Cupey, Minillas, Old San Juan, Rio Piedras, San Jose, Santurce","65th Infantry, Gpo, Loiza Street, Santurce Station",PR,"San Juan Municipio",America/Puerto_Rico,,NA,US,18.4,-66.07,0 +00937,"PO BOX",0,"San Juan",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00939,UNIQUE,0,"San Juan",,"Unique Brm",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00940,"PO BOX",0,"San Juan","Minillas, Santurce",,PR,,America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00949,STANDARD,0,"Toa Baja",Levittown,"Alt Hacienda Dorada, Alts De Covadonga, Bo Campanilla, Bo Candelaria, Bo Palo Seco, Brisas De Campanero, Brisas De Campanero Ii, Comunidad Punta Salinas, Ext La Inmaculada, Ext Lagos De Plata, Hacienda Del Norte, Hacienda Del Norte 2, Mans Del Lago, Mans Del Mar, Mans Del Norte, Mans Del Sur, Parq Punta Salinas, Pradera, Pradera Norte, Qta Real, Repto Anamar, Res Campanilla, Sect La Pra, Urb Almira, Urb Altagracia, Urb Camino Del Mar, Urb Campanillas, Urb Covadonga, Urb Dos Rios, Urb El Naranjal, Urb El Plantio, Urb La Inmaculada, Urb La Rosaleda I, Urb La Rosaleda Ii, Urb Lagos De Plata, Urb Las Colinas, Urb Las Gaviotas, Urb Levittown, Urb Levittown Lakes, Urb Levittville, Urb Pabellones, Urb San Pedro, Urb Santa Maria, Urb Toaville, Urb Valparaiso, Villa De Levittown, Vista Del Lago",PR,"Toa Baja Municipio",America/Puerto_Rico,"787,939",NA,US,18.44,-66.25,0 +00950,"PO BOX",0,"Toa Baja",,,PR,"Dorado Municipio",America/Puerto_Rico,,NA,US,18.46,-66.23,0 +00951,"PO BOX",0,"Toa Baja",,,PR,"Toa Baja Municipio",America/Puerto_Rico,,NA,US,18.43,-66.25,0 +00952,STANDARD,0,"Sabana Seca",,"Mans Del Sol",PR,"Toa Baja Municipio",America/Puerto_Rico,,NA,US,18.42,-66.19,0 +00953,STANDARD,0,"Toa Alta",,"Alt De Bucarabones, Alts De Montecasino, Alts Del Toa, Brisas De Montecasino, Ciudad Jardin I, Ciudad Jardin Ii, Ciudad Jardin Iii, Colinas De Plata, Est De La Fuente, Hacienda Del Toa, Hacienda El Paraiso, Hacienda El Pilar, Haciendas De Borinquen, Jard De Casablanca, Jard De Escorial, Jard De La Fuente, Jard De Mediterraneo, Jard De Toa Alta, Mans De Montecasino I, Mans De Montecasino Ii, Mans Del Toa, Plaza De La Fuente, Praderas Del Rio, Qtas De Plaza Aquarium, Repto San Jose, Sect Los Rodriguez, Terr Del Toa, Urb Casitas De La Fuente, Urb Fuentebella, Urb Gran Vista, Urb La Providencia, Urb Las Cascadas, Urb Las Cascadas Ii, Urb Los Arboles, Urb Madelaine, Urb Monte Lago Est, Urb Monte Sol, Urb Monte Verde, Urb Montecasino, Urb Montecasino Hts, Urb Palacio Imperial, Urb Palacios De Marbella, Urb Palacios De Versalles, Urb Palacios Del Monte, Urb Palacios Del Rio I, Urb Palacios Del Rio Ii, Urb Palacios Reales, Urb Portobello, Urb San Fernando, Urb Toa Alta Hts, Urb Toalinda, Urb Town Hls, Urb Veredas Del",PR,"Toa Alta Municipio",America/Puerto_Rico,"939,787",NA,US,18.39,-66.25,0 +00954,"PO BOX",0,"Toa Alta",,,PR,"Toa Alta",America/Puerto_Rico,,NA,US,18.39,-66.25,0 +00955,"PO BOX",0,"San Juan",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00956,STANDARD,0,Bayamon,,"Alts De Bayamon, Bosque De Las Flores, Bosque De Las Palmas, Bosque De Los Pinos, Ciudad Interamericana, Est Del Bosque, Ext Campo Alegre, Ext Oller, Ext Santa Juanita, Ext Vista Bella, Haciendas El Zorzal, Jard De Bayamonte, Lomas Verdes, Mans De Sierra Taina, Urb Agustin Stahl, Urb Aventura, Urb Bayamon Hls, Urb Campo Alegre, Urb Country Est, Urb El Cortijo, Urb Forest View, Urb Francisco Oller, Urb Golden Hls, Urb Irlanda Hts, Urb Lomas Verde, Urb Los Faroles, Urb Magnolia Gardens, Urb Magnolia Gdns, Urb Royal Palm, Urb Royal Town, Urb Santa Juanita, Urb Sunny Hls, Valle Bello Chalets, Villa Contessa, Villas De Buena Vista, Villas De Santa Juanita, Villas Del Caribe, Vista Bella",PR,"Bayamon Municipio",America/Puerto_Rico,"939,787",NA,US,18.32,-66.17,0 +00957,STANDARD,0,Bayamon,,"Alt De Cana, Alt De Sans Souci, Bda Calderon, Bo Los Angeles, Colinas De Bayoan, Est De Cerro Gordo, Ext Rexville, Parc Van Scoy, Urb Alhambra, Urb Bayamon Gdns, Urb Bella Vista, Urb Cana, Urb Flamingo Hls, Urb Flamingo Ter, Urb Los Dominicos, Urb May Fair, Urb Miraflores, Urb Montanez, Urb Panorama, Urb Panorama Estates, Urb Panorama Vlg, Urb Patio De Rexville, Urb Rexville, Urb Royal Gdns, Urb San Fernando, Urb Sans Souci, Urb Santa Catalina, Urb Santa Elena, Urb Santa Elenita, Urb Santa Monica, Urb Sierra Linda, Valle De Cerro Gordo, Villa Arrieta, Vista Alta",PR,"Bayamon Municipio",America/Puerto_Rico,"787,939",NA,US,18.37,-66.19,0 +00958,"PO BOX",0,Bayamon,,,PR,Bayamon,America/Puerto_Rico,,NA,US,18.28,-66.13,0 +00959,STANDARD,0,Bayamon,,"Alt De Flamboyan, Alt Del Rio, Bda Pesquera, Bo Cerro Gordo, Bo Hato Tejas, Colinas Vista Alegre, Ext Forest Hls, Ext Hnas Davila, Ext La Milagrosa, Ext Villa Rica, Flamboyan Gardens, Ind Minillas, Jard De Caparra, Parc Juan Sanchez, Parq De Torrimar, Parq Flamingo, Parq San Miguel, Parq Valencia, Qtas De Flamingo, Qtas Del Norte, Repto Davila, Repto Flamingo, Repto Rivera, Repto Valencia, Urb Altos De Torrimar, Urb Braulio Dueno, Urb Casa Linda Ct, Urb Flamboyan Gardens, Urb Flamboyan Gdns, Urb Forest Hls, Urb Hnas Davila, Urb La Milagrosa, Urb Las Americas, Urb Riberas Del Rio, Urb Riviera Court, Urb Riviera Village, Urb San Rafael Est, Urb San Rafael Est Ii, Urb Santa Rosa, Urb Tortuguero, Urb Versalles, Urb Victoria Hts, Villa Betania, Villa De San Agustin, Villa Del Rio Bayamon, Villa Rica, Villa Verde, Villas De Caparra, Villas De San Miguel, Vista Alegre",PR,"Bayamon Municipio",America/Puerto_Rico,"939,787",NA,US,18.39,-66.15,0 +00960,"PO BOX",0,Bayamon,,,PR,"Bayamon Municipio",America/Puerto_Rico,,NA,US,18.42,-66.15,0 +00961,STANDARD,0,Bayamon,,"Bda La Cambija, Bo Hato Tejas, Bo Volcan, Bo Volcan Arenas, Brisas De Corea, Comunidad El Volcan, Ind Corujo, Ind Luchetti, Qta Del Rio, Qtas De Boulevar, Repto Teresita, Sect Punta Brava, Urb Campo Verde, Urb El Coqui, Urb Enramada, Urb Estancias, Urb Fronteras, Urb Los Almendros, Urb Mirabella Vlg, Urb Monte Claro, Urb Rio Hondo 1, Urb Rio Hondo 2, Urb Rio Hondo 3, Urb Rio Hondo 4, Urb Rio Plantation, Urb River Vw, Urb Riverside Park, Urb Santa Cruz, Urb Sierra Bayamon, Urb Veredas, Valle Verde 1, Valle Verde 2, Valle Verde 3, Villa Espana",PR,"Bayamon Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-66.17,0 +00962,STANDARD,0,Catano,,"Bda Vietnam, Bo Juana Matos, Bo Palmas, Jard De Catano I, Jard De Catano Ii, Parc William Fuertes, Repto Paraiso, Sect La Puntilla, Urb Bahia, Urb Bajo Costo, Urb Bay View, Urb Catano Pueblo, Urb El Coqui 2, Urb Las Vegas, Urb Marina Bahia, Urb Proyecto 141, Villa Aurora, Vista Del Morro",PR,"Catano Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.15,0 +00963,"PO BOX",0,Catano,,,PR,Catano,America/Puerto_Rico,,NA,US,18.43,-66.11,0 +00965,STANDARD,0,Guaynabo,,"Bda Vietnam, Bo Amelia, Bo Sabana, Urb Sunset Harbor, Villa Concepcion 1, Villa Concepcion 2",PR,"Guaynabo Municipio",America/Puerto_Rico,787,NA,US,18.43,-66.11,0 +00966,STANDARD,0,Guaynabo,,"Alt De Torrimar, Bda Buen Samaritano, Bda San Miguel, Bo Buen Samaritano, Bo Juan Domingo, Chalet De La Reina, Est De Torrimar, Ext Victor Braeger, Ext Villa Caparra, Mans De Tintillo, Mans Garden Hls, Parq De Villa Caparra, Parq Mediterraneo, Repto Santana, Terrs De Tintillo, Urb Arboleda, Urb Garden Ct, Urb Garden Hls, Urb Garden Hls Est, Urb Garden Hls Villas, Urb Gardenville, Urb Las Ramblas, Urb Los Frailes Norte, Urb Martin Ct, Urb Novas Ct, Urb Prado Alto, Urb Sevilla Biltmore, Urb Suchville, Urb Susan Ct, Urb Susan Ct Chalets, Urb Tintillo Gdns, Urb Tintillo Hls, Urb Tintilo Gardens, Urb Torrimar, Urb Victor Braeger, Villa Caparra, Villa Verde, Villas De Caparra, Villas De Prado Alto, Villas De Tintillos, Villas De Trujillo",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.4,-66.12,0 +00968,STANDARD,0,Guaynabo,,"Alt De San Patricio, Amelia Ind Park, Caparra Hls Ind Park, Ext Alts De San Patricio, Metro Office Park, Parq San Patricio, Rexco Ind Park, Urb Caparra Hls, Urb Golden Gate, Urb Parkside, Urb San Patricio, Urb San Patricio Meadows",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-66.1,0 +00969,STANDARD,0,Guaynabo,,"Alt De Santa Maria, Alt De Torrimar, Alt De Torrimar Este, Bosque De Los Frailes, Chalets De Altavista, Chalets De Santa Clara, Colinas De Guaynabo, Colinas De Parkville, Colinas Metropolitana, Est Del Parque, Est Reales, Ext Parkville, Ext Santa Paula, Ext Terrs De Guaynabo, Mans De Alejandrino, Mans De Guaynabo, Mans De Santa Paula, Mans Reales, Parq De Bucare, Parq De Bucare Ii, Parq San Ramon, Parq Torremolinos, Qtas Reales, Repto La Esperanza, Terrs De Guaynabo, Urb Alto Apolo, Urb Alto Apolo States, Urb Apolo, Urb Baldwin Mansions, Urb Baldwin Park, Urb Bellomonte, Urb Bucare, Urb Bucare Gdns, Urb Cerro Real, Urb Colimar, Urb Collegeville, Urb El Alamo, Urb El Jard De Guaynabo, Urb El Palmar De Torrimar, Urb Frailes Sur, Urb Highland Gardens, Urb Highland Gdns, Urb Juan Ponce De Leon, Urb La Colina, Urb La Lomita, Urb La Villa De Torrimar, Urb Las Ramblas, Urb Los Frailes Sur, Urb Mallorca, Urb Monte Alvernia, Urb Monte Olimpo, Urb Munoz Rivera, Urb Oasis Gardens, Urb Oasis Gdns, Urb Palma Real, Urb Par",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.38,-66.11,0 +00970,"PO BOX",0,Guaynabo,,,PR,,America/Puerto_Rico,,NA,US,18.38,-66.11,0 +00971,STANDARD,0,Guaynabo,,"Bel Air, Finca Elena, Urb Artesia Residences, Urb Camino Del Monte, Urb La Fontana De Torrimar, Urb Riverside",PR,"Guaynabo Municipio",America/Puerto_Rico,"787,939",NA,US,18.32,-66.12,0 +00975,UNIQUE,0,"San Juan",,"Bureau Of Census",PR,"San Juan",America/Puerto_Rico,,NA,US,18.4,-66.06,0 +00976,STANDARD,0,"Trujillo Alto",Trujillo,"Alt De Fairview, Alt Interamericana, Bda Gonzalez, Bosque Del Lago, Ciudad Universitaria, Colinas De Fairview, Jard De Trujillo, Lomas De Trujillo, Mans San Rafael, Parc Saint Just, Parq Del Monte, Parq Del Rio, Parq Ind Saint Just, Parq Montebello, Repto San Rafael, Saint Just, Sect La Pra, Terr De Cupey, Urb Altavilla, Urb Antillana, Urb Corrientes, Urb El Conquistador, Urb Entrerios, Urb Golden Hls, Urb Interamericana Gdn, Urb La Cima, Urb Lago Alto, Urb Lantigua, Urb Lourdes, Urb Monte Trujillo, Urb Montebello Est, Urb Pacifica, Urb Primavera, Urb Riachuelo, Urb Rincon Espanol, Urb Rio Cristal, Urb Riverwalk, Urb Round Hls, Urb San Rafael Vlg, Urb Sunville, Urb Wonderville, Valle San Juan, Villa Blanca, Villa De Caney, Villas Del Sol",PR,"Trujillo Alto Municipio",America/Puerto_Rico,"787,939",NA,US,18.36,-66.01,0 +00977,"PO BOX",0,"Trujillo Alto",Trujillo,,PR,,America/Puerto_Rico,,NA,US,18.36,-66.01,0 +00978,"PO BOX",0,"Saint Just",,,PR,"San Juan",America/Puerto_Rico,,NA,US,18.37,-66.01,0 +00979,STANDARD,0,Carolina,,"Ext Villamar, Isla Verde, Parq De Isla Verde, Urb Atlantic View, Urb Biascochea, Urb Cape Sea Vlg, Urb La Marina, Urb Los Angeles, Urb Palmar Norte, Urb Palmar Sur, Urb Villamar, Villa La Marina",PR,"Carolina Municipio",America/Puerto_Rico,787,NA,US,18.44,-66.03,0 +00981,"PO BOX",0,Carolina,,"Isla Verde",PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +00982,STANDARD,0,Carolina,,"Alt De Villa Fontana, Isla Verde, Qtas De Country Club, Urb Country Club, Urb El Comandante, Villa Flores",PR,"Carolina Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-65.99,0 +00983,STANDARD,0,Carolina,,"Isla Verde, Jard De Country Club, La Ceramica Ind Park, Mans De Vistamar Marina, Urb Bahia Vistamar, Urb Castellana Garden, Urb Castellana Gdn, Urb Eduardo J Saldana, Urb Sabana Gardens, Urb Sabana Gdns, Urb Vistamar, Urb Vistamar Marina, Valle Arriba Hts, Villa Asturias, Villa Fontana, Villa Fontana Pk, Villa Venecia",PR,"Carolina Municipio",America/Puerto_Rico,787,NA,US,18.4,-65.98,0 +00984,"PO BOX",0,Carolina,,,PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +00985,STANDARD,0,Carolina,,"Bda Buena Vista, Bo Buena Vista, Bo Villa Caridad, Bo Villa Esperanza, Bo Villa Justicia, Est De San Fernando, Isla Verde, Jard De Borinquen, Jard De Buena Vista, Urb Jose S Quinones, Urb Rosa Maria, Villa Carolina, Villa Cooperativa, Villas Del Sol",PR,"Carolina Municipio",America/Puerto_Rico,"787,939",NA,US,18.41,-65.95,0 +00986,"PO BOX",0,Carolina,,,PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +00987,STANDARD,0,Carolina,,"Alt De Parq Ecuestre, Bo Buenaventura, Bo Colo, Bo Martin Gonzalez, Brisas De Metropolis, Chalets De La Fuente Ii, Ciudad Central Ii, Ciudad Centro, Ciudad Jardin, Est Del Parque, Ext Parq Ecuestre, Hacienda Real, Isla Verde, Jard De Carolina, Loma Alta, Lomas De Carolina, Mans De Carolina, Parq Ecuestre, Parq Ind Jn Matos, Paseo De La Alhambra, Paseo Del Prado, Qtas De Campeche, Sect Barraza 3, Sect Barrazas, Terrs De Carolina, Urb Carolina Alta, Urb Colinitas De Cacao, Urb Los Arboles, Urb Los Caciques, Urb Los Colobos, Urb Metropolis, Urb Mountain Vw, Urb Paraiso De Carolina, Urb Remanzo Taino, Urb Rolling Hls, Valle Escondido, Villa De San Anton, Villa Del Madrigal",PR,"Carolina Municipio",America/Puerto_Rico,"787,939",NA,US,18.34,-65.94,0 +00988,"PO BOX",0,Carolina,,,PR,Carolina,America/Puerto_Rico,,NA,US,18.4,-65.98,0 +01001,STANDARD,0,Agawam,,,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.61,15240 +01002,STANDARD,0,Amherst,"Cushman, Pelham","South Amherst",MA,"Hampshire County",America/New_York,413,NA,US,42.37,-72.52,16070 +01003,STANDARD,0,Amherst,,,MA,"Hampshire County",America/New_York,413,NA,US,42.39,-72.52,184 +01004,"PO BOX",0,Amherst,,,MA,"Hampshire County",America/New_York,413,NA,US,42.37,-72.52,794 +01005,STANDARD,0,Barre,,,MA,"Worcester County",America/New_York,978,NA,US,42.42,-72.1,4420 +01007,STANDARD,0,Belchertown,,,MA,"Hampshire County",America/New_York,413,NA,US,42.27,-72.4,14520 +01008,STANDARD,0,Blandford,,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.93,1160 +01009,"PO BOX",0,Bondsville,,,MA,"Hampden County",America/New_York,413,NA,US,42.2,-72.34,1238 +01010,STANDARD,0,Brimfield,,"East Brimfield",MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.2,3560 +01011,STANDARD,0,Chester,,,MA,"Hampden County",America/New_York,413,NA,US,42.28,-72.98,1050 +01012,STANDARD,0,Chesterfield,,,MA,"Hampshire County",America/New_York,413,NA,US,42.4,-72.85,630 +01013,STANDARD,0,Chicopee,Willimansett,,MA,"Hampden County",America/New_York,413,NA,US,42.15,-72.6,19020 +01014,"PO BOX",0,Chicopee,,,MA,"Hampden County",America/New_York,413,NA,US,42.17,-72.57,354 +01020,STANDARD,0,Chicopee,,,MA,"Hampden County",America/New_York,413,NA,US,42.17,-72.57,25700 +01021,"PO BOX",0,Chicopee,,,MA,"Hampden County",America/New_York,413,NA,US,42.17,-72.57,566 +01022,STANDARD,0,Chicopee,"Westover AFB",,MA,"Hampden County",America/New_York,413,NA,US,42.2,-72.54,1720 +01026,STANDARD,0,Cummington,,"West Cummington",MA,"Hampshire County",America/New_York,413,NA,US,42.46,-72.9,840 +01027,STANDARD,0,Easthampton,"E Hampton, Mount Tom, Westhampton",Loudville,MA,"Hampshire County",America/New_York,413,NA,US,42.26,-72.68,16210 +01028,STANDARD,0,"East Longmeadow","E Longmeadow",,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.51,15560 +01029,"PO BOX",0,"East Otis",,"Big Pond, E Otis",MA,"Berkshire County",America/New_York,413,NA,US,42.17,-73.03,557 +01030,STANDARD,0,"Feeding Hills",,,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.67,10880 +01031,STANDARD,0,Gilbertville,,"Old Furnace",MA,"Worcester County",America/New_York,413,NA,US,42.33,-72.2,990 +01032,STANDARD,0,Goshen,,Lithia,MA,"Hampshire County",America/New_York,413,NA,US,42.46,-72.81,470 +01033,STANDARD,0,Granby,,,MA,"Hampshire County",America/New_York,413,NA,US,42.26,-72.52,5760 +01034,STANDARD,0,Granville,Tolland,"Granville Center, West Granville",MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.86,1810 +01035,STANDARD,0,Hadley,,"North Hadley",MA,"Hampshire County",America/New_York,413,NA,US,42.35,-72.58,4650 +01036,STANDARD,0,Hampden,,Hampton,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.41,4700 +01037,"PO BOX",0,Hardwick,,,MA,"Worcester County",America/New_York,,NA,US,42.35,-72.2,779 +01038,STANDARD,0,Hatfield,,"West Hatfield",MA,"Hampshire County",America/New_York,413,NA,US,42.37,-72.6,2300 +01039,STANDARD,0,Haydenville,"West Whately",,MA,"Hampshire County",America/New_York,,NA,US,42.39,-72.7,1320 +01040,STANDARD,0,Holyoke,,Halyoke,MA,"Hampden County",America/New_York,413,NA,US,42.21,-72.64,29720 +01041,"PO BOX",0,Holyoke,,Halyoke,MA,"Hampden County",America/New_York,413,NA,US,42.21,-72.64,1408 +01050,STANDARD,0,Huntington,Montgomery,"Crescent Mills, Hntgtn, Knightville, North Chester, South Worthington",MA,"Hampshire County",America/New_York,413,NA,US,42.23,-72.88,2270 +01053,STANDARD,0,Leeds,,,MA,"Hampshire County",America/New_York,413,NA,US,42.35,-72.71,1520 +01054,STANDARD,0,Leverett,,"East Leverett, North Leverett",MA,"Franklin County",America/New_York,,NA,US,42.45,-72.5,1680 +01056,STANDARD,0,Ludlow,,,MA,"Hampden County",America/New_York,413,NA,US,42.16,-72.48,18100 +01057,STANDARD,0,Monson,,,MA,"Hampden County",America/New_York,413,NA,US,42.09,-72.31,7520 +01059,"PO BOX",0,"North Amherst",Amherst,,MA,"Hampshire County",America/New_York,413,NA,US,42.4,-72.52,70 +01060,STANDARD,0,Northampton,,"North Hampton",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.63,11010 +01061,"PO BOX",0,Northampton,,"North Hampton",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.67,469 +01062,STANDARD,0,Florence,"Bay State Village, Bay State Vlg, Northampton","North Hampton",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.67,10010 +01063,UNIQUE,0,Northampton,,"North Hampton, Smith College",MA,"Hampshire County",America/New_York,413,NA,US,42.32,-72.64,177 +01066,"PO BOX",0,"North Hatfield","N Hatfield","No Hatfield",MA,"Hampshire County",America/New_York,413,NA,US,42.41,-72.66,402 +01068,STANDARD,0,Oakham,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.35,-72.05,1790 +01069,STANDARD,0,Palmer,,,MA,"Hampden County",America/New_York,413,NA,US,42.16,-72.32,6950 +01070,STANDARD,0,Plainfield,,,MA,"Hampshire County",America/New_York,413,NA,US,42.51,-72.91,530 +01071,STANDARD,0,Russell,,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.85,1440 +01072,STANDARD,0,Shutesbury,,,MA,"Franklin County",America/New_York,,NA,US,42.45,-72.4,1390 +01073,STANDARD,0,Southampton,,,MA,"Hampshire County",America/New_York,413,NA,US,42.23,-72.73,6050 +01074,"PO BOX",0,"South Barre",,,MA,"Worcester County",America/New_York,351,NA,US,42.39,-72.09,655 +01075,STANDARD,0,"South Hadley",,"S Hadley, So Hadley, South Hadley Falls",MA,"Hampshire County",America/New_York,413,NA,US,42.26,-72.56,14610 +01077,STANDARD,0,Southwick,,,MA,"Hampden County",America/New_York,413,NA,US,42.05,-72.76,8880 +01079,"PO BOX",0,Thorndike,,,MA,"Hampden County",America/New_York,413,NA,US,42.2,-72.33,992 +01080,STANDARD,0,"Three Rivers",,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.37,1960 +01081,STANDARD,0,Wales,,,MA,"Hampden County",America/New_York,413,NA,US,42.06,-72.21,1520 +01082,STANDARD,0,Ware,Hardwick,,MA,"Hampshire County",America/New_York,413,NA,US,42.25,-72.24,8920 +01083,"PO BOX",0,Warren,,,MA,"Worcester County",America/New_York,,NA,US,42.21,-72.19,3037 +01084,STANDARD,0,"West Chesterfield","W Chesterfld",,MA,"Hampshire County",America/New_York,413,NA,US,42.39,-72.88,137 +01085,STANDARD,0,Westfield,Montgomery,,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.75,34400 +01086,"PO BOX",0,Westfield,,,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.79,886 +01088,STANDARD,0,"West Hatfield","W Hatfield",,MA,"Hampshire County",America/New_York,413,NA,US,42.39,-72.64,530 +01089,STANDARD,0,"West Springfield","W Springfield","West Springfld",MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.65,25250 +01090,"PO BOX",0,"West Springfield","W Springfield",,MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.65,510 +01092,"PO BOX",0,"West Warren",,"W Warren",MA,"Worcester County",America/New_York,,NA,US,42.19,-72.24,1332 +01093,"PO BOX",0,Whately,,,MA,"Franklin County",America/New_York,,NA,US,42.44,-72.65,516 +01094,"PO BOX",0,Wheelwright,,,MA,"Worcester County",America/New_York,,NA,US,42.35,-72.14,340 +01095,STANDARD,0,Wilbraham,,,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.43,14200 +01096,STANDARD,0,Williamsburg,,"S Chesterfield, South Chesterfield",MA,"Hampshire County",America/New_York,413,NA,US,42.4,-72.76,2260 +01097,"PO BOX",0,Woronoco,,,MA,"Hampden County",America/New_York,413,NA,US,42.18,-72.83,88 +01098,STANDARD,0,Worthington,,,MA,"Hampshire County",America/New_York,413,NA,US,42.41,-72.93,1090 +01101,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,2038 +01102,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01103,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.59,1660 +01104,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.13,-72.57,19740 +01105,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.58,7930 +01106,STANDARD,0,Longmeadow,Springfield,,MA,"Hampden County",America/New_York,413,NA,US,42.04,-72.57,15310 +01107,STANDARD,0,Springfield,,"Brightwood, Spfld",MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.61,8170 +01108,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.08,-72.56,22420 +01109,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,22080 +01111,UNIQUE,0,Springfield,,"Mass Mutual Life Ins Co",MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01115,"PO BOX",0,Springfield,,"Bay State W Tower",MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,25 +01116,"PO BOX",0,Longmeadow,"E Longmeadow, East Longmeadow",,MA,"Hampden County",America/New_York,413,NA,US,42.04,-72.57,82 +01118,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.09,-72.53,13060 +01119,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.51,10910 +01128,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.09,-72.49,2560 +01129,STANDARD,0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.49,6490 +01133,UNIQUE,1,Springfield,,"Monarch Life Ins Co",MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.59,0 +01138,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,688 +01139,"PO BOX",0,Springfield,,Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,467 +01144,STANDARD,0,Springfield,,,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01151,STANDARD,0,"Indian Orchard","Indian Orch, Springfield",Spfld,MA,"Hampden County",America/New_York,413,NA,US,42.15,-72.51,7700 +01152,STANDARD,0,Springfield,,,MA,"Hampden County",America/New_York,413,NA,US,42.11,-72.53,0 +01195,STANDARD,1,Springfield,"Springfield Bmc",,MA,"Hampden County",America/New_York,413,NA,US,42.1,-72.58,0 +01199,UNIQUE,0,Springfield,,"Baystate Medical, Spfld",MA,"Hampden County",America/New_York,413,NA,US,42.12,-72.6,0 +01201,STANDARD,0,Pittsfield,,Allendale,MA,"Berkshire County",America/New_York,413,NA,US,42.45,-73.26,37180 +01202,"PO BOX",0,Pittsfield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.45,-73.26,1387 +01203,"PO BOX",0,Pittsfield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.45,-73.26,0 +01220,STANDARD,0,Adams,,,MA,"Berkshire County",America/New_York,413,NA,US,42.62,-73.11,7100 +01222,STANDARD,0,"Ashley Falls",,,MA,"Berkshire County",America/New_York,413,NA,US,42.05,-73.33,720 +01223,STANDARD,0,Becket,Washington,"Becket Corners, Sherwood Forest",MA,"Berkshire County",America/New_York,413,NA,US,42.33,-73.07,2010 +01224,STANDARD,0,Berkshire,Lanesborough,,MA,"Berkshire County",America/New_York,413,NA,US,42.51,-73.2,160 +01225,STANDARD,0,Cheshire,,,MA,"Berkshire County",America/New_York,413,NA,US,42.55,-73.15,2930 +01226,STANDARD,0,Dalton,,,MA,"Berkshire County",America/New_York,413,NA,US,42.47,-73.16,5710 +01227,"PO BOX",0,Dalton,,,MA,"Berkshire County",America/New_York,413,NA,US,42.47,-73.16,262 +01229,"PO BOX",0,Glendale,,,MA,"Berkshire County",America/New_York,413,NA,US,42.28,-73.34,163 +01230,STANDARD,0,"Great Barrington","Egremont, Gt Barrington, N Egremont, New Marlboro, New Marlborou, New Marlborough, North Egremont, Simons Rock","Alford, Berkshire Heights, Hartsville, Risingdale, Van Deusenville",MA,"Berkshire County",America/New_York,413,NA,US,42.19,-73.35,6170 +01235,STANDARD,0,Hinsdale,Peru,,MA,"Berkshire County",America/New_York,413,NA,US,42.42,-73.07,2470 +01236,STANDARD,0,Housatonic,,,MA,"Berkshire County",America/New_York,413,NA,US,42.27,-73.38,1420 +01237,STANDARD,0,Lanesborough,"Hancock, New Ashford",,MA,"Berkshire County",America/New_York,413,NA,US,42.51,-73.22,2700 +01238,STANDARD,0,Lee,,"W Becket",MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.25,5090 +01240,STANDARD,0,Lenox,,,MA,"Berkshire County",America/New_York,413,NA,US,42.35,-73.28,4030 +01242,"PO BOX",0,"Lenox Dale",,,MA,"Berkshire County",America/New_York,413,NA,US,42.33,-73.25,559 +01243,"PO BOX",0,Middlefield,,,MA,"Hampshire County",America/New_York,413,NA,US,42.35,-73.01,315 +01244,"PO BOX",0,"Mill River",,,MA,"Berkshire County",America/New_York,413,NA,US,42.12,-73.26,328 +01245,STANDARD,0,Monterey,"West Otis",,MA,"Berkshire County",America/New_York,413,NA,US,42.18,-73.21,660 +01247,STANDARD,0,"North Adams","Clarksburg, Florida","N Adams, No Adams",MA,"Berkshire County",America/New_York,413,NA,US,42.68,-73.11,11340 +01252,STANDARD,0,"North Egremont","N Egremont","No Egremont",MA,"Berkshire County",America/New_York,413,NA,US,42.17,-73.44,281 +01253,STANDARD,0,Otis,,"Cold Spring, North Otis",MA,"Berkshire County",America/New_York,413,NA,US,42.21,-73.11,720 +01254,STANDARD,0,Richmond,,,MA,"Berkshire County",America/New_York,413,NA,US,42.37,-73.36,1000 +01255,STANDARD,0,Sandisfield,,"South Sandisfield",MA,"Berkshire County",America/New_York,413,NA,US,42.11,-73.13,610 +01256,STANDARD,0,Savoy,,,MA,"Berkshire County",America/New_York,413,NA,US,42.56,-73.02,600 +01257,STANDARD,0,Sheffield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.1,-73.34,2080 +01258,"PO BOX",0,"South Egremont","Mount Washington, Mt Washington, S Egremont","So Egremont",MA,"Berkshire County",America/New_York,413,NA,US,42.11,-73.46,580 +01259,STANDARD,0,Southfield,,,MA,"Berkshire County",America/New_York,413,NA,US,42.07,-73.23,430 +01260,"PO BOX",0,"South Lee",,,MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.34,254 +01262,"PO BOX",0,Stockbridge,,,MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.32,1342 +01263,UNIQUE,0,Stockbridge,,"Assoc Of Marian Helpers, Marian Helpers, Marion Fathers",MA,"Berkshire County",America/New_York,413,NA,US,42.3,-73.32,0 +01264,"PO BOX",0,Tyringham,Lee,,MA,"Berkshire County",America/New_York,413,NA,US,42.24,-73.19,198 +01266,STANDARD,0,"West Stockbridge","Alford, W Stockbridge","Interlaken, West Stockbridge Center",MA,"Berkshire County",America/New_York,413,NA,US,42.31,-73.39,1190 +01267,STANDARD,0,Williamstown,,"Williamstn, Wmstown",MA,"Berkshire County",America/New_York,413,NA,US,42.7,-73.2,5220 +01270,STANDARD,0,Windsor,,"East Windsor",MA,"Berkshire County",America/New_York,413,NA,US,42.51,-73.04,700 +01301,STANDARD,0,Greenfield,Leyden,,MA,"Franklin County",America/New_York,413,NA,US,42.58,-72.59,13940 +01302,"PO BOX",0,Greenfield,,,MA,"Franklin County",America/New_York,413,NA,US,42.58,-72.59,502 +01330,STANDARD,0,Ashfield,,"South Ashfield",MA,"Franklin County",America/New_York,413,NA,US,42.53,-72.78,1280 +01331,STANDARD,0,Athol,Phillipston,,MA,"Worcester County",America/New_York,978,NA,US,42.59,-72.23,11340 +01337,STANDARD,0,Bernardston,Leyden,,MA,"Franklin County",America/New_York,413,NA,US,42.66,-72.55,2470 +01338,STANDARD,0,Buckland,,,MA,"Franklin County",America/New_York,413,NA,US,42.57,-72.82,210 +01339,STANDARD,0,Charlemont,Hawley,"West Hawley",MA,"Franklin County",America/New_York,,NA,US,42.63,-72.88,1200 +01340,STANDARD,0,Colrain,Shattuckville,,MA,"Franklin County",America/New_York,413,NA,US,42.66,-72.68,1510 +01341,STANDARD,0,Conway,,,MA,"Franklin County",America/New_York,413,NA,US,42.51,-72.68,1470 +01342,STANDARD,0,Deerfield,,"East Deerfield, West Deerfield",MA,"Franklin County",America/New_York,413,NA,US,42.55,-72.6,1320 +01343,STANDARD,0,Drury,,,MA,"Berkshire County",America/New_York,413,NA,US,42.66,-72.98,153 +01344,STANDARD,0,Erving,,"Farley, Stoneville",MA,"Franklin County",America/New_York,,NA,US,42.6,-72.4,1420 +01346,STANDARD,0,Heath,Charlemont,,MA,"Franklin County",America/New_York,413,NA,US,42.66,-72.83,330 +01347,"PO BOX",0,"Lake Pleasant",,,MA,"Franklin County",America/New_York,,NA,US,42.56,-72.52,165 +01349,STANDARD,0,"Millers Falls",,,MA,"Franklin County",America/New_York,413,NA,US,42.56,-72.48,750 +01350,"PO BOX",0,"Monroe Bridge",Monroe,,MA,"Franklin County",America/New_York,,NA,US,42.72,-72.98,35 +01351,STANDARD,0,Montague,,,MA,"Franklin County",America/New_York,413,NA,US,42.53,-72.53,2080 +01354,STANDARD,0,Gill,"Mount Hermon, Mt Hermon, Northfield Mount Hermon, Northfield Mt Hermon",,MA,"Franklin County",America/New_York,413,NA,US,42.62,-72.51,1410 +01355,STANDARD,0,"New Salem",,,MA,"Franklin County",America/New_York,978,NA,US,42.5,-72.33,850 +01360,STANDARD,0,Northfield,,"N Field, No Field",MA,"Franklin County",America/New_York,413,NA,US,42.7,-72.43,2690 +01364,STANDARD,0,Orange,Warwick,"Blissville, Eagleville, Lake Mattawa, N Orange, North Orange",MA,"Franklin County",America/New_York,978,NA,US,42.59,-72.3,6330 +01366,STANDARD,0,Petersham,,,MA,"Worcester County",America/New_York,978,NA,US,42.48,-72.18,1090 +01367,STANDARD,0,Rowe,,"Hoosac Tunnel, Zoar",MA,"Franklin County",America/New_York,413,NA,US,42.7,-72.9,410 +01368,STANDARD,0,Royalston,"S Royalston",,MA,"Worcester County",America/New_York,978,NA,US,42.68,-72.18,1090 +01370,STANDARD,0,"Shelburne Falls","Shelburne Fls","Baptist Corner, East Charlemont, Shelburne",MA,"Franklin County",America/New_York,413,NA,US,42.6,-72.74,3500 +01373,STANDARD,0,"South Deerfield","S Deerfield","So Deerfield",MA,"Franklin County",America/New_York,413,NA,US,42.47,-72.59,4030 +01375,STANDARD,0,Sunderland,,,MA,"Franklin County",America/New_York,413,NA,US,42.46,-72.58,2750 +01376,STANDARD,0,"Turners Falls",,,MA,"Franklin County",America/New_York,413,NA,US,42.59,-72.55,4270 +01378,STANDARD,0,Warwick,Orange,,MA,"Franklin County",America/New_York,978,NA,US,42.68,-72.33,650 +01379,STANDARD,0,Wendell,,,MA,"Franklin County",America/New_York,,NA,US,42.55,-72.4,690 +01380,STANDARD,0,"Wendell Depot",,,MA,"Franklin County",America/New_York,,NA,US,42.58,-72.37,81 +01420,STANDARD,0,Fitchburg,,,MA,"Worcester County",America/New_York,"978,508",NA,US,42.58,-71.81,34250 +01430,STANDARD,0,Ashburnham,,"South Ashburnham",MA,"Worcester County",America/New_York,978,NA,US,42.63,-71.9,5850 +01431,STANDARD,0,Ashby,,,MA,"Middlesex County",America/New_York,978,NA,US,42.68,-71.81,2920 +01432,STANDARD,0,Ayer,,"Devens, Fort Devens, Ft Devens",MA,"Middlesex County",America/New_York,978,NA,US,42.56,-71.58,7440 +01434,STANDARD,0,Devens,Ayer,,MA,"Worcester County",America/New_York,,NA,US,42.53,-71.61,420 +01436,STANDARD,0,Baldwinville,,"Otter River",MA,"Worcester County",America/New_York,,NA,US,42.6,-72.07,2570 +01438,"PO BOX",0,"East Templeton","E Templeton",,MA,"Worcester County",America/New_York,,NA,US,42.56,-72.03,704 +01440,STANDARD,0,Gardner,,,MA,"Worcester County",America/New_York,978,NA,US,42.58,-71.98,16810 +01441,UNIQUE,0,Westminster,,Tyco,MA,"Worcester County",America/New_York,351,NA,US,42.58,-71.98,0 +01450,STANDARD,0,Groton,,,MA,"Middlesex County",America/New_York,978,NA,US,42.6,-71.57,10850 +01451,STANDARD,0,Harvard,,,MA,"Worcester County",America/New_York,978,NA,US,42.5,-71.58,5320 +01452,STANDARD,0,Hubbardston,,,MA,"Worcester County",America/New_York,978,NA,US,42.48,-72.01,4160 +01453,STANDARD,0,Leominster,,,MA,"Worcester County",America/New_York,"508,978",NA,US,42.51,-71.77,38370 +01460,STANDARD,0,Littleton,,Pingryville,MA,"Middlesex County",America/New_York,"508,781,978",NA,US,42.53,-71.47,9820 +01462,STANDARD,0,Lunenburg,,,MA,"Worcester County",America/New_York,"508,978",NA,US,42.59,-71.72,11070 +01463,STANDARD,0,Pepperell,,"E Pepperell, East Pepperell",MA,"Middlesex County",America/New_York,"351,978",NA,US,42.66,-71.58,10910 +01464,STANDARD,0,Shirley,"Shirley Center, Shirley Ctr",,MA,"Middlesex County",America/New_York,978,NA,US,42.54,-71.65,5650 +01467,"PO BOX",0,"Still River",,,MA,"Worcester County",America/New_York,,NA,US,42.49,-71.61,318 +01468,STANDARD,0,Templeton,,,MA,"Worcester County",America/New_York,978,NA,US,42.55,-72.06,4130 +01469,STANDARD,0,Townsend,,,MA,"Middlesex County",America/New_York,978,NA,US,42.66,-71.7,6810 +01470,UNIQUE,0,Groton,,"New England Business Brm",MA,"Middlesex County",America/New_York,351,NA,US,42.6,-71.57,0 +01471,UNIQUE,0,Groton,,"New England Business Svc Inc",MA,"Middlesex County",America/New_York,351,NA,US,42.6,-71.57,0 +01472,"PO BOX",0,"West Groton",,"W Groton",MA,"Middlesex County",America/New_York,,NA,US,42.61,-71.62,352 +01473,STANDARD,0,Westminster,,,MA,"Worcester County",America/New_York,978,NA,US,42.55,-71.9,7940 +01474,STANDARD,0,"West Townsend","Townsend, W Townsend",,MA,"Middlesex County",America/New_York,978,NA,US,42.66,-71.74,1880 +01475,STANDARD,0,Winchendon,,,MA,"Worcester County",America/New_York,978,NA,US,42.68,-72.04,8850 +01477,"PO BOX",1,"Winchendon Springs","Winchdon Spgs",,MA,"Worcester County",America/New_York,351,NA,US,42.69,-72.01,214 +01501,STANDARD,0,Auburn,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.2,-71.83,15780 +01503,STANDARD,0,Berlin,,,MA,"Worcester County",America/New_York,978,NA,US,42.38,-71.63,3000 +01504,STANDARD,0,Blackstone,,"E Blackstone, East Blackstone, Millerville",MA,"Worcester County",America/New_York,"508,774",NA,US,42.04,-71.53,8490 +01505,STANDARD,0,Boylston,,Morningdale,MA,"Worcester County",America/New_York,"508,774",NA,US,42.35,-71.73,4630 +01506,STANDARD,0,Brookfield,,,MA,"Worcester County",America/New_York,413,NA,US,42.21,-72.1,3020 +01507,STANDARD,0,Charlton,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.13,-71.96,12310 +01508,"PO BOX",0,"Charlton City",,"Richardson Corners",MA,"Worcester County",America/New_York,,NA,US,42.13,-71.96,958 +01509,"PO BOX",0,"Charlton Depot","Charlton Dept, Charlton Dpt",,MA,"Worcester County",America/New_York,,NA,US,42.13,-71.96,52 +01510,STANDARD,0,Clinton,,,MA,"Worcester County",America/New_York,978,NA,US,42.41,-71.68,13190 +01515,STANDARD,0,"East Brookfield","E Brookfield",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.22,-72.04,2140 +01516,STANDARD,0,Douglas,"East Douglas",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.05,-71.73,8470 +01517,"PO BOX",1,"East Princeton","E Princeton",,MA,"Worcester County",America/New_York,,NA,US,42.46,-71.89,0 +01518,STANDARD,0,Fiskdale,Sturbridge,,MA,"Worcester County",America/New_York,"774,508",NA,US,42.12,-72.11,3120 +01519,STANDARD,0,Grafton,,"Hassanamisco Indian Reservat",MA,"Worcester County",America/New_York,"508,774",NA,US,42.2,-71.68,7030 +01520,STANDARD,0,Holden,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.35,-71.85,15860 +01521,STANDARD,0,Holland,Fiskdale,Halland,MA,"Hampden County",America/New_York,508,NA,US,42.05,-72.15,2260 +01522,STANDARD,0,Jefferson,,,MA,"Worcester County",America/New_York,,NA,US,42.38,-71.87,3310 +01523,STANDARD,0,Lancaster,,"North Lancaster",MA,"Worcester County",America/New_York,,NA,US,42.45,-71.66,6030 +01524,STANDARD,0,Leicester,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.25,-71.9,6090 +01525,"PO BOX",0,Linwood,,,MA,"Worcester County",America/New_York,,NA,US,42.11,-71.63,1058 +01526,"PO BOX",0,Manchaug,,,MA,"Worcester County",America/New_York,,NA,US,42.12,-71.76,534 +01527,STANDARD,0,Millbury,,"East Millbury",MA,"Worcester County",America/New_York,"508,774",NA,US,42.19,-71.76,12730 +01529,STANDARD,0,Millville,,,MA,"Worcester County",America/New_York,,NA,US,42.03,-71.58,3020 +01531,STANDARD,0,"New Braintree",,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.31,-72.13,930 +01532,STANDARD,0,Northborough,,Northboro,MA,"Worcester County",America/New_York,"508,774",NA,US,42.31,-71.64,15150 +01534,STANDARD,0,Northbridge,,Rockdale,MA,"Worcester County",America/New_York,,NA,US,42.15,-71.65,5800 +01535,STANDARD,0,"North Brookfield","N Brookfield",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.27,-72.08,4140 +01536,STANDARD,0,"North Grafton",,"N Grafton, No Grafton",MA,"Worcester County",America/New_York,,NA,US,42.23,-71.69,6930 +01537,STANDARD,0,"North Oxford",,,MA,"Worcester County",America/New_York,508,NA,US,42.16,-71.88,2040 +01538,"PO BOX",0,"North Uxbridge","N Uxbridge",,MA,"Worcester County",America/New_York,,NA,US,42.05,-71.64,584 +01540,STANDARD,0,Oxford,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.11,-71.87,10280 +01541,STANDARD,0,Princeton,,,MA,"Worcester County",America/New_York,978,NA,US,42.45,-71.86,3420 +01542,STANDARD,0,Rochdale,,,MA,"Worcester County",America/New_York,,NA,US,42.2,-71.9,2100 +01543,STANDARD,0,Rutland,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.36,-71.95,8730 +01545,STANDARD,0,Shrewsbury,,Edgemere,MA,"Worcester County",America/New_York,"508,774",NA,US,42.3,-71.71,36410 +01546,UNIQUE,0,Shrewsbury,,"Central Mass P & D Ctr",MA,"Worcester County",America/New_York,508,NA,US,42.3,-71.71,0 +01550,STANDARD,0,Southbridge,,"Globe Village, Sandersdale",MA,"Worcester County",America/New_York,"508,774",NA,US,42.08,-72.03,15000 +01560,STANDARD,0,"South Grafton",,Saundersville,MA,"Worcester County",America/New_York,,NA,US,42.17,-71.68,4420 +01561,"PO BOX",0,"South Lancaster","S Lancaster","So Lancaster",MA,"Worcester County",America/New_York,,NA,US,42.44,-71.69,1100 +01562,STANDARD,0,Spencer,,"Lambs Grove",MA,"Worcester County",America/New_York,"508,774",NA,US,42.24,-71.99,10200 +01564,STANDARD,0,Sterling,,"Sterling Junction",MA,"Worcester County",America/New_York,978,NA,US,42.43,-71.75,7790 +01566,STANDARD,0,Sturbridge,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.09,-72.06,6430 +01568,STANDARD,0,Upton,,"W Upton, West Upton",MA,"Worcester County",America/New_York,"508,774",NA,US,42.17,-71.61,7640 +01569,STANDARD,0,Uxbridge,,,MA,"Worcester County",America/New_York,"774,508",NA,US,42.08,-71.6,13130 +01570,STANDARD,0,Webster,"Dudley Hill",,MA,"Worcester County",America/New_York,"508,774",NA,US,42.04,-71.87,15140 +01571,STANDARD,0,Dudley,,,MA,"Worcester County",America/New_York,,NA,US,42.05,-71.93,10480 +01580,UNIQUE,1,Westborough,,"Emc, Westboro",MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.61,0 +01581,STANDARD,0,Westborough,,Westboro,MA,"Worcester County",America/New_York,"508,774",NA,US,42.26,-71.61,20030 +01582,UNIQUE,1,Westborough,,"National Grid Co, Westboro",MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.61,0 +01583,STANDARD,0,"West Boylston",,"Oakdale, Westboylston",MA,"Worcester County",America/New_York,,NA,US,42.36,-71.78,6770 +01585,STANDARD,0,"West Brookfield","W Brookfield",Westbrookfield,MA,"Worcester County",America/New_York,"508,413",NA,US,42.23,-72.14,3850 +01586,"PO BOX",0,"West Millbury",Millbury,,MA,"Worcester County",America/New_York,,NA,US,42.19,-71.76,0 +01588,STANDARD,0,Whitinsville,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.11,-71.67,9140 +01590,STANDARD,0,Sutton,"Wilkinsonvile, Wilkinsonville",,MA,"Worcester County",America/New_York,,NA,US,42.15,-71.76,8810 +01601,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,322 +01602,STANDARD,0,Worcester,,"West Side",MA,"Worcester County",America/New_York,,NA,US,42.27,-71.85,20370 +01603,STANDARD,0,Worcester,,"Webster Square",MA,"Worcester County",America/New_York,508,NA,US,42.24,-71.84,17210 +01604,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.25,-71.77,31160 +01605,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.29,-71.79,22130 +01606,STANDARD,0,Worcester,,Greendale,MA,"Worcester County",America/New_York,508,NA,US,42.32,-71.8,18170 +01607,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.23,-71.79,7610 +01608,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"774,978,508",NA,US,42.26,-71.8,3020 +01609,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"508,774,978",NA,US,42.29,-71.83,12920 +01610,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.25,-71.81,16760 +01611,STANDARD,0,"Cherry Valley",,,MA,"Worcester County",America/New_York,,NA,US,42.23,-71.87,1990 +01612,STANDARD,0,Paxton,Worcester,,MA,"Worcester County",America/New_York,,NA,US,42.31,-71.93,4400 +01613,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,1369 +01614,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,68 +01615,"PO BOX",0,Worcester,,,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,13 +01653,UNIQUE,0,Worcester,,Allmerica,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,0 +01654,UNIQUE,1,Worcester,,Verizon,MA,"Worcester County",America/New_York,508,NA,US,42.26,-71.8,0 +01655,STANDARD,0,Worcester,,,MA,"Worcester County",America/New_York,"508,774,978",NA,US,42.26,-71.8,0 +01701,STANDARD,0,Framingham,,"Framingham Center, Framingham So, Saxonville",MA,"Middlesex County",America/New_York,"508,774,781,978",NA,US,42.3,-71.43,30960 +01702,STANDARD,0,Framingham,,,MA,"Middlesex County",America/New_York,"508,774,781,978",NA,US,42.28,-71.44,27520 +01703,"PO BOX",0,Framingham,,,MA,"Middlesex County",America/New_York,508,NA,US,42.3,-71.43,160 +01704,"PO BOX",0,Framingham,,,MA,"Middlesex County",America/New_York,508,NA,US,42.3,-71.43,385 +01705,"PO BOX",0,Framingham,,,MA,"Middlesex County",America/New_York,508,NA,US,42.3,-71.43,71 +01718,STANDARD,0,Acton,,,MA,"Middlesex County",America/New_York,"508,978,781",NA,US,42.52,-71.43,650 +01719,STANDARD,0,Boxborough,"Acton, Boxboro",,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.5,-71.5,5310 +01720,STANDARD,0,Acton,,"W Acton, West Acton",MA,"Middlesex County",America/New_York,"781,508,978",NA,US,42.48,-71.46,22480 +01721,STANDARD,0,Ashland,,,MA,"Middlesex County",America/New_York,,NA,US,42.25,-71.46,17680 +01730,STANDARD,0,Bedford,,,MA,"Middlesex County",America/New_York,"781,857",NA,US,42.48,-71.26,13720 +01731,STANDARD,0,"Hanscom AFB",Bedford,,MA,"Middlesex County",America/New_York,"857,781",NA,US,42.46,-71.28,2340 +01740,STANDARD,0,Bolton,,,MA,"Worcester County",America/New_York,978,NA,US,42.43,-71.6,5580 +01741,STANDARD,0,Carlisle,,,MA,"Middlesex County",America/New_York,,NA,US,42.53,-71.35,5260 +01742,STANDARD,0,Concord,,"W Concord, West Concord",MA,"Middlesex County",America/New_York,978,NA,US,42.45,-71.35,17320 +01745,STANDARD,0,Fayville,Southborough,Southboro,MA,"Worcester County",America/New_York,,NA,US,42.29,-71.5,420 +01746,STANDARD,0,Holliston,,,MA,"Middlesex County",America/New_York,"508,774",NA,US,42.2,-71.43,14680 +01747,STANDARD,0,Hopedale,,,MA,"Worcester County",America/New_York,,NA,US,42.12,-71.54,5710 +01748,STANDARD,0,Hopkinton,,,MA,"Middlesex County",America/New_York,"508,774",NA,US,42.22,-71.52,18000 +01749,STANDARD,0,Hudson,,,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.39,-71.56,18500 +01752,STANDARD,0,Marlborough,,Marlboro,MA,"Middlesex County",America/New_York,"508,774,978",NA,US,42.34,-71.54,36140 +01754,STANDARD,0,Maynard,,,MA,"Middlesex County",America/New_York,978,NA,US,42.42,-71.45,9820 +01756,STANDARD,0,Mendon,,,MA,"Worcester County",America/New_York,,NA,US,42.1,-71.55,6220 +01757,STANDARD,0,Milford,,,MA,"Worcester County",America/New_York,"508,774",NA,US,42.14,-71.51,26240 +01760,STANDARD,0,Natick,,"N Natick, No Natick, North Natick, S Natick, So Natick, South Natick",MA,"Middlesex County",America/New_York,"508,774",NA,US,42.28,-71.35,34390 +01770,STANDARD,0,Sherborn,,,MA,"Middlesex County",America/New_York,,NA,US,42.23,-71.36,4320 +01772,STANDARD,0,Southborough,,Southboro,MA,"Worcester County",America/New_York,"508,978",NA,US,42.3,-71.51,10070 +01773,STANDARD,0,Lincoln,,"Lincoln Center",MA,"Middlesex County",America/New_York,781,NA,US,42.41,-71.3,5370 +01775,STANDARD,0,Stow,,,MA,"Middlesex County",America/New_York,,NA,US,42.43,-71.5,7240 +01776,STANDARD,0,Sudbury,,"N Sudbury, North Sudbury",MA,"Middlesex County",America/New_York,978,NA,US,42.36,-71.4,18920 +01778,STANDARD,0,Wayland,,Cochituate,MA,"Middlesex County",America/New_York,"508,774",NA,US,42.36,-71.36,14070 +01784,"PO BOX",0,Woodville,,,MA,"Middlesex County",America/New_York,,NA,US,42.23,-71.55,150 +01801,STANDARD,0,Woburn,,,MA,"Middlesex County",America/New_York,"339,617,781,978",NA,US,42.48,-71.15,37040 +01803,STANDARD,0,Burlington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.5,-71.2,25140 +01805,UNIQUE,0,Burlington,,"Lahey Clinic Med Ctr",MA,"Middlesex County",America/New_York,339,NA,US,42.5,-71.2,0 +01806,UNIQUE,1,Woburn,At&t,,MA,"Middlesex County",America/New_York,339,NA,US,42.47,-71.15,0 +01807,UNIQUE,1,Woburn,,"National Grid",MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,0 +01808,UNIQUE,1,Woburn,,At&t,MA,"Middlesex County",America/New_York,339,NA,US,42.5,-71.12,0 +01810,STANDARD,0,Andover,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.65,-71.14,34300 +01812,UNIQUE,0,Andover,,"Internal Revenue Service",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,0 +01813,UNIQUE,0,Woburn,,"Mellon Financial Services",MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,0 +01815,UNIQUE,0,Woburn,,"Bank Of America",MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,0 +01821,STANDARD,0,Billerica,,,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.55,-71.26,29760 +01822,"PO BOX",0,Billerica,,,MA,"Middlesex County",America/New_York,351,NA,US,42.55,-71.26,0 +01824,STANDARD,0,Chelmsford,"Kates Corner, S Chelmsford",,MA,"Middlesex County",America/New_York,,NA,US,42.59,-71.36,25670 +01826,STANDARD,0,Dracut,,,MA,"Middlesex County",America/New_York,,NA,US,42.68,-71.3,30570 +01827,STANDARD,0,Dunstable,,,MA,"Middlesex County",America/New_York,,NA,US,42.66,-71.48,3370 +01830,STANDARD,0,Haverhill,,,MA,"Essex County",America/New_York,978,NA,US,42.78,-71.08,22530 +01831,"PO BOX",0,Haverhill,,,MA,"Essex County",America/New_York,351,NA,US,42.78,-71.08,992 +01832,STANDARD,0,Haverhill,,,MA,"Essex County",America/New_York,978,NA,US,42.79,-71.13,22060 +01833,STANDARD,0,Georgetown,Haverhill,,MA,"Essex County",America/New_York,"351,978",NA,US,42.73,-70.98,8160 +01834,STANDARD,0,Groveland,,,MA,"Essex County",America/New_York,,NA,US,42.75,-71.03,6500 +01835,STANDARD,0,Haverhill,"Bradford, Ward Hill",,MA,"Essex County",America/New_York,978,NA,US,42.75,-71.09,13410 +01840,STANDARD,0,Lawrence,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.71,-71.16,4860 +01841,STANDARD,0,Lawrence,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.71,-71.16,45810 +01842,"PO BOX",0,Lawrence,,,MA,"Essex County",America/New_York,351,NA,US,42.7,-71.16,1297 +01843,STANDARD,0,Lawrence,,"S Lawrence, South Lawrence",MA,"Essex County",America/New_York,"508,978",NA,US,42.7,-71.16,24610 +01844,STANDARD,0,Methuen,,,MA,"Essex County",America/New_York,,NA,US,42.74,-71.18,48180 +01845,STANDARD,0,"North Andover",,"N Andover",MA,"Essex County",America/New_York,,NA,US,42.7,-71.11,28090 +01850,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,"781,978",NA,US,42.66,-71.3,13800 +01851,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,"781,978",NA,US,42.63,-71.32,28740 +01852,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,"781,978",NA,US,42.63,-71.3,29640 +01853,"PO BOX",0,Lowell,,,MA,"Middlesex County",America/New_York,351,NA,US,42.63,-71.32,1641 +01854,STANDARD,0,Lowell,,,MA,"Middlesex County",America/New_York,978,NA,US,42.65,-71.35,20230 +01860,STANDARD,0,Merrimac,,,MA,"Essex County",America/New_York,978,NA,US,42.83,-71,6300 +01862,STANDARD,0,"North Billerica","N Billerica",,MA,"Middlesex County",America/New_York,"508,978",NA,US,42.58,-71.3,9640 +01863,STANDARD,0,"North Chelmsford","N Chelmsford",,MA,"Middlesex County",America/New_York,,NA,US,42.63,-71.39,8700 +01864,STANDARD,0,"North Reading",,"N Reading",MA,"Middlesex County",America/New_York,978,NA,US,42.58,-71.08,15130 +01865,"PO BOX",0,"Nutting Lake",,"Nuttings Lake",MA,"Middlesex County",America/New_York,,NA,US,42.54,-71.25,397 +01866,"PO BOX",0,Pinehurst,,,MA,"Middlesex County",America/New_York,,NA,US,42.53,-71.23,178 +01867,STANDARD,0,Reading,,,MA,"Middlesex County",America/New_York,781,NA,US,42.53,-71.1,24830 +01876,STANDARD,0,Tewksbury,,,MA,"Middlesex County",America/New_York,,NA,US,42.61,-71.23,28800 +01879,STANDARD,0,Tyngsboro,,Tyngsborough,MA,"Middlesex County",America/New_York,978,NA,US,42.68,-71.41,11800 +01880,STANDARD,0,Wakefield,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.5,-71.06,25390 +01885,"PO BOX",0,"West Boxford",,,MA,"Essex County",America/New_York,,NA,US,42.67,-71.03,331 +01886,STANDARD,0,Westford,,"Forge Village, Nabnasset",MA,"Middlesex County",America/New_York,"508,978",NA,US,42.58,-71.43,24610 +01887,STANDARD,0,Wilmington,,,MA,"Middlesex County",America/New_York,978,NA,US,42.55,-71.16,22600 +01888,"PO BOX",0,Woburn,,,MA,"Middlesex County",America/New_York,339,NA,US,42.48,-71.15,242 +01889,UNIQUE,0,"North Reading",,"Massachusetts District, N Reading",MA,"Middlesex County",America/New_York,351,NA,US,42.56,-71.06,0 +01890,STANDARD,0,Winchester,,,MA,"Middlesex County",America/New_York,781,NA,US,42.45,-71.14,22370 +01899,UNIQUE,0,Andover,,"Bar Coded Irs",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,0 +01901,STANDARD,0,Lynn,,,MA,"Essex County",America/New_York,"339,781",NA,US,42.46,-70.95,1680 +01902,STANDARD,0,Lynn,,,MA,"Essex County",America/New_York,"339,781",NA,US,42.47,-70.94,41340 +01903,"PO BOX",0,Lynn,,,MA,"Essex County",America/New_York,339,NA,US,42.47,-70.96,1107 +01904,STANDARD,0,Lynn,"East Lynn",,MA,"Essex County",America/New_York,"508,978",NA,US,42.47,-70.96,18870 +01905,STANDARD,0,Lynn,"West Lynn",,MA,"Essex County",America/New_York,"617,339,781",NA,US,42.47,-70.98,24070 +01906,STANDARD,0,Saugus,,,MA,"Essex County",America/New_York,"339,617,781",NA,US,42.46,-71.01,25750 +01907,STANDARD,0,Swampscott,,,MA,"Essex County",America/New_York,,NA,US,42.47,-70.91,14120 +01908,STANDARD,0,Nahant,,,MA,"Essex County",America/New_York,,NA,US,42.43,-70.93,3160 +01910,UNIQUE,0,Lynn,,"General Elec Co",MA,"Essex County",America/New_York,339,NA,US,42.47,-70.96,0 +01913,STANDARD,0,Amesbury,,,MA,"Essex County",America/New_York,978,NA,US,42.85,-70.92,15210 +01915,STANDARD,0,Beverly,,"Beverly Farms",MA,"Essex County",America/New_York,"508,978",NA,US,42.57,-70.87,35240 +01921,STANDARD,0,Boxford,,,MA,"Essex County",America/New_York,,NA,US,42.67,-70.98,8150 +01922,STANDARD,0,Byfield,Newbury,,MA,"Essex County",America/New_York,,NA,US,42.75,-70.93,3040 +01923,STANDARD,0,Danvers,,,MA,"Essex County",America/New_York,"351,978",NA,US,42.57,-70.95,26050 +01929,STANDARD,0,Essex,,,MA,"Essex County",America/New_York,978,NA,US,42.63,-70.77,3380 +01930,STANDARD,0,Gloucester,,Magnolia,MA,"Essex County",America/New_York,"508,978",NA,US,42.62,-70.66,25740 +01931,"PO BOX",0,Gloucester,,,MA,"Essex County",America/New_York,351,NA,US,42.62,-70.66,554 +01936,"PO BOX",0,Hamilton,,,MA,"Essex County",America/New_York,,NA,US,42.61,-70.86,361 +01937,"PO BOX",0,Hathorne,,,MA,"Essex County",America/New_York,,NA,US,42.59,-70.98,375 +01938,STANDARD,0,Ipswich,,,MA,"Essex County",America/New_York,978,NA,US,42.67,-70.83,12880 +01940,STANDARD,0,Lynnfield,,"South Lynnfield",MA,"Essex County",America/New_York,781,NA,US,42.53,-71.04,13070 +01944,STANDARD,0,Manchester,"Manchester By The Sea",,MA,"Essex County",America/New_York,"508,978",NA,US,42.56,-70.76,5070 +01945,STANDARD,0,Marblehead,,Mhead,MA,"Essex County",America/New_York,781,NA,US,42.5,-70.85,20130 +01949,STANDARD,0,Middleton,,,MA,"Essex County",America/New_York,,NA,US,42.6,-71.01,8340 +01950,STANDARD,0,Newburyport,,"Plum Island",MA,"Essex County",America/New_York,978,NA,US,42.81,-70.88,16930 +01951,STANDARD,0,Newbury,Newburyport,"Plum Island",MA,"Essex County",America/New_York,978,NA,US,42.77,-70.85,3400 +01952,STANDARD,0,Salisbury,"Salisbury Bch, Salisbury Beach",,MA,"Essex County",America/New_York,,NA,US,42.83,-70.84,7780 +01960,STANDARD,0,Peabody,,"West Peabody",MA,"Essex County",America/New_York,"508,978",NA,US,42.53,-70.97,48300 +01961,"PO BOX",0,Peabody,,,MA,"Essex County",America/New_York,351,NA,US,42.53,-70.97,315 +01965,"PO BOX",0,"Prides Crossing","Prides Xing",,MA,"Essex County",America/New_York,351,NA,US,42.56,-70.86,428 +01966,STANDARD,0,Rockport,,"Pigeon Cove",MA,"Essex County",America/New_York,"508,351,978",NA,US,42.64,-70.61,6420 +01969,STANDARD,0,Rowley,,,MA,"Essex County",America/New_York,978,NA,US,42.72,-70.89,5980 +01970,STANDARD,0,Salem,,,MA,"Essex County",America/New_York,"508,978",NA,US,42.51,-70.9,36430 +01971,"PO BOX",0,Salem,,,MA,"Essex County",America/New_York,351,NA,US,42.51,-70.89,356 +01982,STANDARD,0,"South Hamilton","S Hamilton",,MA,"Essex County",America/New_York,978,NA,US,42.62,-70.86,6970 +01983,STANDARD,0,Topsfield,,,MA,"Essex County",America/New_York,978,NA,US,42.63,-70.95,6330 +01984,STANDARD,0,Wenham,,,MA,"Essex County",America/New_York,,NA,US,42.6,-70.88,3670 +01985,STANDARD,0,"West Newbury",,,MA,"Essex County",America/New_York,978,NA,US,42.8,-71,4440 +02018,"PO BOX",0,Accord,Hingham,,MA,"Plymouth County",America/New_York,339,NA,US,42.17,-70.88,123 +02019,STANDARD,0,Bellingham,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.09,-71.47,15950 +02020,"PO BOX",0,"Brant Rock",,,MA,"Plymouth County",America/New_York,,NA,US,42.08,-70.64,759 +02021,STANDARD,0,Canton,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.15,-71.13,22440 +02025,STANDARD,0,Cohasset,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.23,-70.8,8160 +02026,STANDARD,0,Dedham,,,MA,"Norfolk County",America/New_York,"617,781",NA,US,42.24,-71.17,23360 +02027,"PO BOX",0,Dedham,,,MA,"Norfolk County",America/New_York,339,NA,US,42.24,-71.17,183 +02030,STANDARD,0,Dover,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.24,-71.27,5950 +02031,STANDARD,1,"East Mansfield","Mansfield, E Mansfield",,MA,"Bristol County",America/New_York,508,NA,US,42.02,-71.17,0 +02032,STANDARD,0,"East Walpole",,"E Walpole",MA,"Norfolk County",America/New_York,"508,774,339,781",NA,US,42.15,-71.21,4680 +02035,STANDARD,0,Foxboro,Foxborough,,MA,"Norfolk County",America/New_York,"781,508,774",NA,US,42.06,-71.24,17420 +02038,STANDARD,0,Franklin,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.08,-71.38,31300 +02040,"PO BOX",0,Greenbush,Scituate,,MA,"Plymouth County",America/New_York,339,NA,US,42.19,-70.76,122 +02041,"PO BOX",0,"Green Harbor",,,MA,"Plymouth County",America/New_York,,NA,US,42.1,-70.71,843 +02043,STANDARD,0,Hingham,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.23,-70.88,23520 +02044,UNIQUE,0,Hingham,,"Shared Firm Zip Code",MA,"Plymouth County",America/New_York,339,NA,US,42.23,-70.88,0 +02045,STANDARD,0,Hull,,"Nantasket Beach",MA,"Plymouth County",America/New_York,781,NA,US,42.3,-70.9,9010 +02047,"PO BOX",0,Humarock,,,MA,"Plymouth County",America/New_York,339,NA,US,42.13,-70.69,649 +02048,STANDARD,0,Mansfield,,,MA,"Bristol County",America/New_York,"508,774",NA,US,42.02,-71.21,22930 +02050,STANDARD,0,Marshfield,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.09,-70.7,22610 +02051,"PO BOX",0,"Marshfield Hills","Marshfld Hls",,MA,"Plymouth County",America/New_York,,NA,US,42.15,-70.73,752 +02052,STANDARD,0,Medfield,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.18,-71.3,12950 +02053,STANDARD,0,Medway,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.16,-71.43,12770 +02054,STANDARD,0,Millis,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.16,-71.35,8050 +02055,"PO BOX",0,Minot,Scituate,,MA,"Plymouth County",America/New_York,339,NA,US,42.19,-70.76,77 +02056,STANDARD,0,Norfolk,,,MA,"Norfolk County",America/New_York,,NA,US,42.11,-71.31,10160 +02059,"PO BOX",0,"North Marshfield","N Marshfield",,MA,"Plymouth County",America/New_York,,NA,US,42.1,-70.71,363 +02060,"PO BOX",0,"North Scituate","N Scituate, Scituate",,MA,"Plymouth County",America/New_York,339,NA,US,42.21,-70.76,237 +02061,STANDARD,0,Norwell,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.16,-70.78,11240 +02062,STANDARD,0,Norwood,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.18,-71.19,27960 +02065,"PO BOX",0,"Ocean Bluff",Marshfield,,MA,"Plymouth County",America/New_York,,NA,US,42.1,-70.71,447 +02066,STANDARD,0,Scituate,,"Scituate Center, Scituate Harbor",MA,"Plymouth County",America/New_York,"339,781",NA,US,42.18,-70.73,17810 +02067,STANDARD,0,Sharon,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.11,-71.18,18280 +02070,"PO BOX",0,Sheldonville,,,MA,"Norfolk County",America/New_York,,NA,US,42.05,-71.35,182 +02071,STANDARD,0,"South Walpole",,"S Walpole",MA,"Norfolk County",America/New_York,"508,774,781",NA,US,42.1,-71.27,1010 +02072,STANDARD,0,Stoughton,,,MA,"Norfolk County",America/New_York,781,NA,US,42.11,-71.1,26430 +02081,STANDARD,0,Walpole,,,MA,"Norfolk County",America/New_York,"781,508,774",NA,US,42.13,-71.24,19030 +02090,STANDARD,0,Westwood,,Islington,MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.21,-71.21,15880 +02093,STANDARD,0,Wrentham,,,MA,"Norfolk County",America/New_York,"508,774",NA,US,42.06,-71.33,11410 +02108,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,857,339",NA,US,42.36,-71.06,3770 +02109,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.37,-71.05,3820 +02110,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"508,774,617,781,857,978",NA,US,42.36,-71.05,3660 +02111,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,781,978,339,857",NA,US,42.35,-71.06,5950 +02112,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,574 +02113,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"781,617",NA,US,42.37,-71.06,5090 +02114,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,339,857",NA,US,42.36,-71.07,10610 +02115,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.34,-71.1,9770 +02116,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"508,617,781,978,857",NA,US,42.35,-71.08,14920 +02117,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,443 +02118,STANDARD,0,Boston,Roxbury,,MA,"Suffolk County",America/New_York,"857,617",NA,US,42.34,-71.07,21420 +02119,STANDARD,0,Roxbury,Boston,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.32,-71.09,22500 +02120,STANDARD,0,"Roxbury Crossing","Boston, Mission Hill, Roxbury, Roxbury Xing",,MA,"Suffolk County",America/New_York,"857,617",NA,US,42.33,-71.1,7340 +02121,STANDARD,0,Dorchester,"Boston, Grove Hall",,MA,"Suffolk County",America/New_York,"617,781,857",NA,US,42.31,-71.09,23330 +02122,STANDARD,0,Dorchester,Boston,,MA,"Suffolk County",America/New_York,"781,617,857",NA,US,42.29,-71.04,20730 +02123,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,449 +02124,STANDARD,0,"Dorchester Center","Boston, Dorchester, Dorchestr Ctr",,MA,"Suffolk County",America/New_York,617,NA,US,42.29,-71.07,43660 +02125,STANDARD,0,Dorchester,"Boston, Uphams Corner",,MA,"Suffolk County",America/New_York,"617,857,781",NA,US,42.32,-71.06,27640 +02126,STANDARD,0,Mattapan,Boston,"Hyde Park",MA,"Suffolk County",America/New_York,617,NA,US,42.27,-71.1,20480 +02127,STANDARD,0,"South Boston",Boston,"S Boston",MA,"Suffolk County",America/New_York,"617,774,781,978,857",NA,US,42.33,-71.04,29350 +02128,STANDARD,0,"East Boston",Boston,"E Boston",MA,"Suffolk County",America/New_York,"617,857",NA,US,42.36,-71.01,33980 +02129,STANDARD,0,Charlestown,Boston,,MA,"Suffolk County",America/New_York,"857,617,781",NA,US,42.38,-71.06,16480 +02130,STANDARD,0,"Jamaica Plain",Boston,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.3,-71.11,30960 +02131,STANDARD,0,Roslindale,Boston,,MA,"Suffolk County",America/New_York,617,NA,US,42.28,-71.13,27520 +02132,STANDARD,0,"West Roxbury",Boston,"W Roxbury",MA,"Suffolk County",America/New_York,"617,781",NA,US,42.28,-71.16,25120 +02133,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"339,508,781,857,978,617",NA,US,42.35,-71.06,0 +02134,STANDARD,0,Allston,Boston,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.35,-71.13,12700 +02135,STANDARD,0,Brighton,Boston,"Jamaica Plain",MA,"Suffolk County",America/New_York,"617,857",NA,US,42.35,-71.15,30670 +02136,STANDARD,0,"Hyde Park","Boston, Readville",,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.26,-71.13,32270 +02137,"PO BOX",0,Readville,"Boston, Hyde Park",,MA,"Suffolk County",America/New_York,617,NA,US,42.25,-71.12,180 +02138,STANDARD,0,Cambridge,,,MA,"Middlesex County",America/New_York,"508,617,857",NA,US,42.38,-71.14,22070 +02139,STANDARD,0,Cambridge,,"Cambridgeport, Inman Square",MA,"Middlesex County",America/New_York,"339,781,978,508,617,857",NA,US,42.37,-71.11,26870 +02140,STANDARD,0,Cambridge,"N Cambridge, North Cambridge","Porter Square",MA,"Middlesex County",America/New_York,617,NA,US,42.39,-71.13,17780 +02141,STANDARD,0,Cambridge,"E Cambridge, East Cambridge",,MA,"Middlesex County",America/New_York,"339,617,508,781,857,978",NA,US,42.37,-71.08,10580 +02142,STANDARD,0,Cambridge,,"Kendall Square",MA,"Middlesex County",America/New_York,"508,781,857,978,339,617",NA,US,42.36,-71.08,2550 +02143,STANDARD,0,Somerville,,"E Somerville, East Somerville",MA,"Middlesex County",America/New_York,"617,857",NA,US,42.38,-71.1,20810 +02144,STANDARD,0,Somerville,"W Somerville, West Somerville",,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.4,-71.12,19420 +02145,STANDARD,0,Somerville,"Winter Hill",,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.39,-71.1,22130 +02148,STANDARD,0,Malden,,,MA,"Middlesex County",America/New_York,"857,339,617,781",NA,US,42.43,-71.05,54910 +02149,STANDARD,0,Everett,,,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.4,-71.05,39200 +02150,STANDARD,0,Chelsea,,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.39,-71.03,32690 +02151,STANDARD,0,Revere,,"Beachmont, Revere Beach",MA,"Suffolk County",America/New_York,"617,339,781",NA,US,42.41,-70.99,49600 +02152,STANDARD,0,Winthrop,,,MA,"Suffolk County",America/New_York,"617,857",NA,US,42.37,-70.98,16070 +02153,"PO BOX",0,Medford,"Tufts Univ, Tufts University",,MA,"Middlesex County",America/New_York,617,NA,US,42.42,-71.1,0 +02155,STANDARD,0,Medford,,,MA,"Middlesex County",America/New_York,"617,339,781",NA,US,42.42,-71.1,49560 +02156,"PO BOX",0,"West Medford",,"W Medford",MA,"Middlesex County",America/New_York,339,NA,US,42.42,-71.13,20 +02163,STANDARD,0,Boston,Cambridge,"Soldiers Field",MA,"Suffolk County",America/New_York,"339,781,978,508,617,857",NA,US,42.37,-71.12,520 +02169,STANDARD,0,Quincy,,"Houghs Neck, Quincy Center, South Quincy, West Quincy",MA,"Norfolk County",America/New_York,"617,857",NA,US,42.26,-71,50500 +02170,STANDARD,0,Quincy,Wollaston,,MA,"Norfolk County",America/New_York,"617,857",NA,US,42.27,-71.02,18130 +02171,STANDARD,0,Quincy,"North Quincy, Squantum","Marina Bay, N Quincy, No Quincy, Norfolk Downs",MA,"Norfolk County",America/New_York,"617,857",NA,US,42.29,-71.02,16970 +02176,STANDARD,0,Melrose,,,MA,"Middlesex County",America/New_York,"339,617,781",NA,US,42.45,-71.05,27490 +02180,STANDARD,0,Stoneham,,,MA,"Middlesex County",America/New_York,"617,781",NA,US,42.47,-71.09,21610 +02184,STANDARD,0,Braintree,,"Braintree Highlands, Braintree Hld, E Braintree, East Braintree",MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.2,-71,36360 +02185,"PO BOX",0,Braintree,,,MA,"Norfolk County",America/New_York,339,NA,US,42.2,-71,257 +02186,STANDARD,0,Milton,,"East Milton",MA,"Norfolk County",America/New_York,617,NA,US,42.24,-71.08,26500 +02187,"PO BOX",0,"Milton Village","Milton Vlg",,MA,"Norfolk County",America/New_York,617,NA,US,42.26,-71.08,63 +02188,STANDARD,0,Weymouth,,"Weymouth Lndg",MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.2,-70.96,13550 +02189,STANDARD,0,"East Weymouth",Weymouth,,MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.2,-70.94,13410 +02190,STANDARD,0,"South Weymouth","S Weymouth, Weymouth","Weymouth Nas",MA,"Norfolk County",America/New_York,,NA,US,42.17,-70.95,17100 +02191,STANDARD,0,"North Weymouth","N Weymouth, Weymouth",,MA,"Norfolk County",America/New_York,"339,617,781",NA,US,42.24,-70.94,7630 +02196,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,793 +02199,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"339,857,978,508,617,781",NA,US,42.35,-71.08,1240 +02201,UNIQUE,0,Boston,,"Boston City Hall",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,15 +02203,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,857,NA,US,42.36,-71.06,0 +02204,UNIQUE,0,Boston,,"Mass Tax, Massachusetts Tax",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02205,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,1678 +02206,UNIQUE,0,Boston,,"State Street Corporation",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02207,UNIQUE,1,Boston,,"Bell Atlantic Telephone Co",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.05,0 +02210,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"617,774,781,857,978",NA,US,42.35,-71.04,4340 +02211,UNIQUE,0,Boston,,"Bank Of America",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02212,UNIQUE,0,Boston,,"Bank Of America",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02215,STANDARD,0,Boston,,"Boston University, Kenmore",MA,"Suffolk County",America/New_York,"617,857",NA,US,42.35,-71.1,7510 +02216,UNIQUE,1,Boston,,"John Hancock P O Box 192",MA,"Suffolk County",America/New_York,617,NA,US,42.34,-71.07,17 +02217,UNIQUE,0,Boston,,"John Hancock P O Box 505",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02222,STANDARD,0,Boston,,,MA,"Suffolk County",America/New_York,"857,617,781",NA,US,42.35,-71.06,0 +02228,"PO BOX",1,"East Boston",Boston,,MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,93 +02238,"PO BOX",0,Cambridge,"Harvard Sq, Harvard Square",,MA,"Middlesex County",America/New_York,617,NA,US,42.37,-71.11,534 +02239,UNIQUE,1,Cambridge,"Com/energy Services",,MA,"Middlesex County",America/New_York,617,NA,US,42.36,-71.1,0 +02241,UNIQUE,0,Boston,,"Bank Of America, Fleet Bank Boston",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02266,UNIQUE,1,Boston,,"Boston Financial Data Servic",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02269,"PO BOX",0,Quincy,,,MA,"Norfolk County",America/New_York,617,NA,US,42.26,-71,478 +02283,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,"617,781,978,508,857",NA,US,42.35,-71.06,0 +02284,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,"508,617,781,857,978",NA,US,42.35,-71.06,0 +02293,UNIQUE,0,Boston,,"Fidelity Service Company",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02295,UNIQUE,1,Boston,,"John Hancock Mutual Ins",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02297,UNIQUE,0,Boston,,"Cash Management",MA,"Suffolk County",America/New_York,617,NA,US,42.35,-71.06,0 +02298,"PO BOX",0,Boston,,,MA,"Suffolk County",America/New_York,617,NA,US,42.34,-71.05,0 +02301,STANDARD,0,Brockton,,,MA,"Plymouth County",America/New_York,"508,774,781",NA,US,42.08,-71.02,57670 +02302,STANDARD,0,Brockton,,,MA,"Plymouth County",America/New_York,"508,774,781",NA,US,42.09,-71,31920 +02303,"PO BOX",0,Brockton,,,MA,"Plymouth County",America/New_York,508,NA,US,42.08,-71.02,1583 +02304,"PO BOX",0,Brockton,,,MA,"Plymouth County",America/New_York,508,NA,US,42.08,-71.02,323 +02305,"PO BOX",0,Brockton,,,MA,"Plymouth County",America/New_York,508,NA,US,42.08,-71.02,464 +02322,STANDARD,0,Avon,,,MA,"Norfolk County",America/New_York,,NA,US,42.13,-71.05,4480 +02324,STANDARD,0,Bridgewater,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.98,-70.97,22530 +02325,UNIQUE,0,Bridgewater,,"Bridgewater State College",MA,"Plymouth County",America/New_York,508,NA,US,41.98,-70.97,10 +02327,"PO BOX",0,Bryantville,,,MA,"Plymouth County",America/New_York,,NA,US,42.06,-70.8,613 +02330,STANDARD,0,Carver,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.88,-70.76,10460 +02331,"PO BOX",0,Duxbury,,,MA,"Plymouth County",America/New_York,339,NA,US,42.04,-70.67,1883 +02332,STANDARD,0,Duxbury,,,MA,"Plymouth County",America/New_York,781,NA,US,42.04,-70.67,14590 +02333,STANDARD,0,"East Bridgewater","E Bridgewater, E Bridgewtr",,MA,"Plymouth County",America/New_York,"508,774",NA,US,42.03,-70.95,13580 +02334,"PO BOX",0,Easton,,,MA,"Bristol County",America/New_York,508,NA,US,42.03,-71.1,375 +02337,"PO BOX",0,Elmwood,,,MA,"Plymouth County",America/New_York,,NA,US,42.01,-70.96,119 +02338,STANDARD,0,Halifax,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,41.98,-70.86,7450 +02339,STANDARD,0,Hanover,,"Assinippi, West Hanover",MA,"Plymouth County",America/New_York,781,NA,US,42.11,-70.81,14590 +02340,UNIQUE,1,Hanover,,Wearguard,MA,"Plymouth County",America/New_York,339,NA,US,42.11,-70.81,0 +02341,STANDARD,0,Hanson,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.06,-70.85,9950 +02343,STANDARD,0,Holbrook,,,MA,"Norfolk County",America/New_York,,NA,US,42.14,-71,10240 +02344,UNIQUE,0,Middleboro,Middleborough,"Aetna Life & Casualty Co",MA,"Plymouth County",America/New_York,508,NA,US,41.86,-70.9,0 +02345,"PO BOX",0,Manomet,,,MA,"Plymouth County",America/New_York,,NA,US,41.92,-70.56,1470 +02346,STANDARD,0,Middleboro,,Middleborough,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.86,-70.9,21890 +02347,STANDARD,0,Lakeville,,,MA,"Plymouth County",America/New_York,774,NA,US,41.85,-70.95,10840 +02348,UNIQUE,0,Lakeville,"Middleboro, Middleborough",Talbots,MA,"Plymouth County",America/New_York,508,NA,US,41.86,-70.9,0 +02349,UNIQUE,0,Middleboro,Middleborough,"Ocean Spray",MA,"Plymouth County",America/New_York,508,NA,US,41.86,-70.9,0 +02350,"PO BOX",0,Monponsett,,,MA,"Plymouth County",America/New_York,,NA,US,42.02,-70.84,494 +02351,STANDARD,0,Abington,,"North Abington",MA,"Plymouth County",America/New_York,,NA,US,42.11,-70.95,15540 +02355,"PO BOX",0,"North Carver",,"East Carver",MA,"Plymouth County",America/New_York,,NA,US,41.91,-70.79,409 +02356,STANDARD,0,"North Easton",,"N Easton, No Easton",MA,"Bristol County",America/New_York,"508,774",NA,US,42.05,-71.1,12020 +02357,UNIQUE,0,"North Easton","Stonehill Clg","Stonehill Coll, Stonehill College",MA,"Bristol County",America/New_York,508,NA,US,42.06,-71.08,14 +02358,"PO BOX",0,"North Pembroke","N Pembroke",,MA,"Plymouth County",America/New_York,,NA,US,42.09,-70.78,282 +02359,STANDARD,0,Pembroke,,"East Pembroke",MA,"Plymouth County",America/New_York,"339,781",NA,US,42.06,-70.8,16960 +02360,STANDARD,0,Plymouth,,Cedarville,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.95,-70.66,52730 +02361,"PO BOX",0,Plymouth,,,MA,"Plymouth County",America/New_York,508,NA,US,41.95,-70.66,252 +02362,"PO BOX",0,Plymouth,,,MA,"Plymouth County",America/New_York,508,NA,US,41.95,-70.66,981 +02364,STANDARD,0,Kingston,,"Rocky Nook, Silver Lake",MA,"Plymouth County",America/New_York,"339,617,781",NA,US,41.99,-70.71,12540 +02366,"PO BOX",0,"South Carver",,,MA,"Plymouth County",America/New_York,,NA,US,41.85,-70.66,385 +02367,STANDARD,0,Plympton,,,MA,"Plymouth County",America/New_York,,NA,US,41.95,-70.81,2840 +02368,STANDARD,0,Randolph,,,MA,"Norfolk County",America/New_York,"339,781",NA,US,42.17,-71.05,31550 +02370,STANDARD,0,Rockland,,,MA,"Plymouth County",America/New_York,"339,781",NA,US,42.13,-70.91,16180 +02375,STANDARD,0,"South Easton",,"S Easton, So Easton",MA,"Bristol County",America/New_York,"508,774",NA,US,42.03,-71.1,9890 +02379,STANDARD,0,"West Bridgewater","W Bridgewater",,MA,"Plymouth County",America/New_York,508,NA,US,42.01,-71,7030 +02381,"PO BOX",0,"White Horse Beach","Wht Horse Bch",,MA,"Plymouth County",America/New_York,,NA,US,41.93,-70.59,383 +02382,STANDARD,0,Whitman,,,MA,"Plymouth County",America/New_York,781,NA,US,42.08,-70.93,13990 +02420,STANDARD,0,Lexington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.46,-71.22,15380 +02421,STANDARD,0,Lexington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.44,-71.23,17920 +02445,STANDARD,0,Brookline,,,MA,"Norfolk County",America/New_York,"617,857",NA,US,42.32,-71.14,17750 +02446,STANDARD,0,Brookline,,,MA,"Norfolk County",America/New_York,"617,857",NA,US,42.34,-71.12,22940 +02447,"PO BOX",0,"Brookline Village","Brookline Vlg",,MA,"Norfolk County",America/New_York,617,NA,US,42.33,-71.13,120 +02451,STANDARD,0,Waltham,"North Waltham",,MA,"Middlesex County",America/New_York,"339,617,781,508,978",NA,US,42.38,-71.24,16060 +02452,STANDARD,0,Waltham,"North Waltham",,MA,"Middlesex County",America/New_York,"508,978,339,617,781",NA,US,42.39,-71.22,10680 +02453,STANDARD,0,Waltham,"South Waltham",,MA,"Middlesex County",America/New_York,"508,978,339,617,781",NA,US,42.37,-71.24,23010 +02454,"PO BOX",0,Waltham,,,MA,"Middlesex County",America/New_York,339,NA,US,42.38,-71.24,543 +02455,"PO BOX",0,"North Waltham",,,MA,"Middlesex County",America/New_York,339,NA,US,42.39,-71.22,81 +02456,"PO BOX",0,"New Town",,Newton,MA,"Middlesex County",America/New_York,617,NA,US,42.33,-71.2,28 +02457,"PO BOX",0,"Babson Park",,,MA,"Norfolk County",America/New_York,339,NA,US,42.3,-71.27,105 +02458,STANDARD,0,Newton,Newtonville,Riverside,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.35,-71.19,11450 +02459,STANDARD,0,"Newton Center","Newton, Newton Centre","Newton Cntr, Newton Ctr",MA,"Middlesex County",America/New_York,617,NA,US,42.31,-71.19,17470 +02460,STANDARD,0,Newtonville,Newton,,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.35,-71.2,8840 +02461,STANDARD,0,"Newton Highlands","Newton, Newton Hlds",,MA,"Middlesex County",America/New_York,617,NA,US,42.32,-71.21,7020 +02462,STANDARD,0,"Newton Lower Falls","Newton, Newton L F, Newtonville",,MA,"Middlesex County",America/New_York,617,NA,US,42.33,-71.26,1310 +02464,STANDARD,0,"Newton Upper Falls","Newton, Newton U F",,MA,"Middlesex County",America/New_York,617,NA,US,42.31,-71.22,2920 +02465,STANDARD,0,"West Newton",Newton,"W Newton",MA,"Middlesex County",America/New_York,"617,857",NA,US,42.35,-71.22,11680 +02466,STANDARD,0,Auburndale,,Newton,MA,"Middlesex County",America/New_York,617,NA,US,42.34,-71.24,6530 +02467,STANDARD,0,"Chestnut Hill","Boston Clg, Boston College",Newton,MA,"Norfolk County",America/New_York,"857,617",NA,US,42.31,-71.16,14500 +02468,STANDARD,0,Waban,,Newton,MA,"Middlesex County",America/New_York,"617,781",NA,US,42.32,-71.23,5630 +02471,"PO BOX",0,Watertown,,,MA,"Middlesex County",America/New_York,617,NA,US,42.36,-71.17,273 +02472,STANDARD,0,Watertown,"E Watertown, East Watertown",,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.37,-71.18,30230 +02474,STANDARD,0,Arlington,"E Arlington, East Arlington",,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.42,-71.16,26310 +02475,"PO BOX",0,"Arlington Heights","Arlington Hts",,MA,"Middlesex County",America/New_York,339,NA,US,42.41,-71.18,19 +02476,STANDARD,0,Arlington,,,MA,"Middlesex County",America/New_York,"339,781",NA,US,42.41,-71.16,16460 +02477,UNIQUE,0,Watertown,,"Field Premium Inc",MA,"Middlesex County",America/New_York,617,NA,US,42.36,-71.17,0 +02478,STANDARD,0,Belmont,,,MA,"Middlesex County",America/New_York,"617,857",NA,US,42.39,-71.18,25340 +02479,"PO BOX",0,Waverley,,,MA,"Middlesex County",America/New_York,,NA,US,42.39,-71.17,39 +02481,STANDARD,0,"Wellesley Hills","Wellesley, Wellesley Hls","Wellesley Fms",MA,"Norfolk County",America/New_York,"508,774,339,781",NA,US,42.31,-71.27,14710 +02482,STANDARD,0,Wellesley,,,MA,"Norfolk County",America/New_York,"339,781,508,774",NA,US,42.29,-71.3,10310 +02492,STANDARD,0,Needham,,"Needham Jct",MA,"Norfolk County",America/New_York,"508,617,774,857,339,781",NA,US,42.28,-71.24,20810 +02493,STANDARD,0,Weston,,"Cherry Brook, Hastings, Kendal Green, Silver Hill, Stony Brook",MA,"Middlesex County",America/New_York,,NA,US,42.36,-71.3,10490 +02494,STANDARD,0,"Needham Heights","Needham, Needham Hgts",,MA,"Norfolk County",America/New_York,"339,781,508,617,774,857",NA,US,42.3,-71.23,10100 +02495,"PO BOX",0,Nonantum,Newton,,MA,"Middlesex County",America/New_York,617,NA,US,42.33,-71.2,30 +02532,STANDARD,0,"Buzzards Bay",Bourne,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.75,-70.61,10210 +02534,"PO BOX",0,Cataumet,,,MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.61,916 +02535,STANDARD,0,Chilmark,"Aquinnah, Gay Head",,MA,"Dukes County",America/New_York,508,NA,US,41.34,-70.74,1190 +02536,STANDARD,0,"East Falmouth","E Falmouth, Ea Falmouth, Hatchville, Teaticket, Waquoit",,MA,"Barnstable County",America/New_York,508,NA,US,41.56,-70.55,18110 +02537,STANDARD,0,"East Sandwich","E Sandwich",,MA,"Barnstable County",America/New_York,508,NA,US,41.73,-70.43,5730 +02538,STANDARD,0,"East Wareham","E Wareham",,MA,"Plymouth County",America/New_York,774,NA,US,41.78,-70.65,4140 +02539,STANDARD,0,Edgartown,,"Chappaquiddick Island",MA,"Dukes County",America/New_York,"508,774",NA,US,41.38,-70.53,5020 +02540,STANDARD,0,Falmouth,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.56,-70.62,6280 +02541,"PO BOX",0,Falmouth,,,MA,"Barnstable County",America/New_York,508,NA,US,41.54,-70.6,594 +02542,STANDARD,0,"Buzzards Bay","Otis Angb","Otis AFB, Otis Air National Guard, Otis Ang",MA,"Barnstable County",America/New_York,"508,774",NA,US,41.71,-70.55,500 +02543,STANDARD,0,"Woods Hole",Falmouth,Woodshole,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.52,-70.66,700 +02552,"PO BOX",0,Menemsha,,,MA,"Dukes County",America/New_York,,NA,US,41.34,-70.73,46 +02553,"PO BOX",0,"Monument Beach","Monument Bch",,MA,"Barnstable County",America/New_York,508,NA,US,41.71,-70.62,1171 +02554,STANDARD,0,Nantucket,,,MA,"Nantucket County",America/New_York,"508,774",NA,US,41.27,-70.1,10410 +02556,STANDARD,0,"North Falmouth","N Falmouth",,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.64,-70.63,3280 +02557,"PO BOX",0,"Oak Bluffs",,,MA,"Dukes County",America/New_York,,NA,US,41.45,-70.56,2660 +02558,"PO BOX",0,Onset,,,MA,"Plymouth County",America/New_York,508,NA,US,41.74,-70.66,2189 +02559,STANDARD,0,Pocasset,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.69,-70.63,2930 +02561,"PO BOX",0,Sagamore,,,MA,"Barnstable County",America/New_York,508,NA,US,41.77,-70.53,884 +02562,STANDARD,0,"Sagamore Beach","Sagamore Bch",,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.79,-70.53,3090 +02563,STANDARD,0,Sandwich,,,MA,"Barnstable County",America/New_York,"774,508",NA,US,41.75,-70.49,9720 +02564,"PO BOX",0,Siasconset,Nantucket,Sconset,MA,"Nantucket County",America/New_York,508,NA,US,41.27,-70,423 +02565,"PO BOX",1,"Silver Beach","N Falmouth, North Falmouth",,MA,"Barnstable County",America/New_York,508,NA,US,41.63,-70.64,0 +02568,STANDARD,0,"Vineyard Haven","Vineyard Hvn","North Tisbury, Tisbury",MA,"Dukes County",America/New_York,"508,774",NA,US,41.45,-70.6,7250 +02571,STANDARD,0,Wareham,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.76,-70.71,9350 +02573,"PO BOX",1,"West Chop","Vineyard Haven, Vineyard Hvn",Tisbury,MA,"Dukes County",America/New_York,,NA,US,41.45,-70.6,0 +02574,"PO BOX",0,"West Falmouth","W Falmouth",,MA,"Barnstable County",America/New_York,508,NA,US,41.6,-70.64,1104 +02575,"PO BOX",0,"West Tisbury",,Tisbury,MA,"Dukes County",America/New_York,,NA,US,41.38,-70.67,1679 +02576,STANDARD,0,"West Wareham",,"W Wareham",MA,"Plymouth County",America/New_York,"508,774",NA,US,41.78,-70.75,3650 +02584,"PO BOX",0,Nantucket,,,MA,"Nantucket County",America/New_York,508,NA,US,41.26,-70.01,1904 +02601,STANDARD,0,Hyannis,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.65,-70.29,13830 +02630,STANDARD,0,Barnstable,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.7,-70.3,1930 +02631,STANDARD,0,Brewster,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.76,-70.08,9040 +02632,STANDARD,0,Centerville,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.66,-70.34,10100 +02633,STANDARD,0,Chatham,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.67,-69.96,3620 +02634,"PO BOX",0,Centerville,,,MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.34,19 +02635,STANDARD,0,Cotuit,,,MA,"Barnstable County",America/New_York,508,NA,US,41.62,-70.44,3350 +02636,STANDARD,1,Centerville,,,MA,"Barnstable County",America/New_York,508,NA,US,41.64,-70.34,0 +02637,"PO BOX",0,Cummaquid,,,MA,"Barnstable County",America/New_York,508,NA,US,41.71,-70.27,564 +02638,STANDARD,0,Dennis,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.73,-70.2,2800 +02639,STANDARD,0,"Dennis Port",Dennisport,,MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.13,2790 +02641,"PO BOX",0,"East Dennis",,"E Dennis",MA,"Barnstable County",America/New_York,508,NA,US,41.75,-70.15,1542 +02642,STANDARD,0,Eastham,,,MA,"Barnstable County",America/New_York,508,NA,US,41.83,-69.96,3680 +02643,"PO BOX",0,"East Orleans",,,MA,"Barnstable County",America/New_York,508,NA,US,41.8,-69.94,1113 +02644,STANDARD,0,Forestdale,,,MA,"Barnstable County",America/New_York,508,NA,US,41.68,-70.5,4190 +02645,STANDARD,0,Harwich,"E Harwich, East Harwich",Hardwich,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.69,-70.07,9340 +02646,STANDARD,0,"Harwich Port",,Harwichport,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.07,1740 +02647,"PO BOX",0,"Hyannis Port",,,MA,"Barnstable County",America/New_York,508,NA,US,41.63,-70.31,393 +02648,STANDARD,0,"Marstons Mills","Marstons Mls",,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.4,7320 +02649,STANDARD,0,Mashpee,,"New Seabury, South Mashpee",MA,"Barnstable County",America/New_York,508,NA,US,41.65,-70.48,13810 +02650,STANDARD,0,"North Chatham",,"N Chatham",MA,"Barnstable County",America/New_York,508,NA,US,41.7,-69.95,820 +02651,"PO BOX",0,"North Eastham",,,MA,"Barnstable County",America/New_York,508,NA,US,41.87,-70,1610 +02652,"PO BOX",0,"North Truro",,,MA,"Barnstable County",America/New_York,508,NA,US,42.04,-70.09,766 +02653,STANDARD,0,Orleans,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.79,-70,4730 +02655,STANDARD,0,Osterville,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.62,-70.38,3330 +02657,STANDARD,0,Provincetown,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,42.06,-70.2,3250 +02659,STANDARD,0,"South Chatham",,,MA,"Barnstable County",America/New_York,508,NA,US,41.68,-70.02,1090 +02660,STANDARD,0,"South Dennis",,"S Dennis",MA,"Barnstable County",America/New_York,508,NA,US,41.7,-70.15,5650 +02661,"PO BOX",0,"South Harwich",,,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.04,365 +02662,"PO BOX",0,"South Orleans",,,MA,"Barnstable County",America/New_York,508,NA,US,41.75,-69.99,862 +02663,"PO BOX",0,"South Wellfleet","S Wellfleet",,MA,"Barnstable County",America/New_York,508,NA,US,41.89,-70.01,611 +02664,STANDARD,0,"South Yarmouth","Bass River, S Yarmouth","So Yarmouth",MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.2,8740 +02666,"PO BOX",0,Truro,,,MA,"Barnstable County",America/New_York,508,NA,US,42,-70.06,1057 +02667,STANDARD,0,Wellfleet,,,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.93,-70.03,2550 +02668,STANDARD,0,"West Barnstable","W Barnstable",,MA,"Barnstable County",America/New_York,508,NA,US,41.7,-70.37,3150 +02669,"PO BOX",0,"West Chatham",,,MA,"Barnstable County",America/New_York,508,NA,US,41.68,-69.99,812 +02670,STANDARD,0,"West Dennis",,"W Dennis",MA,"Barnstable County",America/New_York,508,NA,US,41.66,-70.16,1270 +02671,STANDARD,0,"West Harwich",,,MA,"Barnstable County",America/New_York,508,NA,US,41.67,-70.11,1060 +02672,"PO BOX",0,"West Hyannisport","W Hyannisport",,MA,"Barnstable County",America/New_York,508,NA,US,41.64,-70.31,577 +02673,STANDARD,0,"West Yarmouth","W Yarmouth",,MA,"Barnstable County",America/New_York,"508,774",NA,US,41.65,-70.24,7930 +02675,STANDARD,0,"Yarmouth Port",,Yarmouthport,MA,"Barnstable County",America/New_York,508,NA,US,41.7,-70.22,6170 +02702,STANDARD,0,Assonet,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.78,-71.06,4030 +02703,STANDARD,0,Attleboro,"S Attleboro, South Attleboro",,MA,"Bristol County",America/New_York,"508,774",NA,US,41.93,-71.29,41160 +02712,"PO BOX",0,Chartley,,,MA,"Bristol County",America/New_York,508,NA,US,41.97,-71.18,272 +02713,"PO BOX",0,Cuttyhunk,,,MA,"Dukes County",America/New_York,,NA,US,41.44,-70.9,32 +02714,"PO BOX",0,Dartmouth,,,MA,"Bristol County",America/New_York,508,NA,US,41.56,-71,47 +02715,STANDARD,0,Dighton,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.82,-71.16,3790 +02717,STANDARD,0,"East Freetown",,,MA,"Bristol County",America/New_York,508,NA,US,41.75,-70.97,4760 +02718,STANDARD,0,"East Taunton",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.87,-71.01,6480 +02719,STANDARD,0,Fairhaven,,,MA,"Bristol County",America/New_York,508,NA,US,41.63,-70.9,13970 +02720,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.73,-71.12,24700 +02721,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.68,-71.15,20650 +02722,"PO BOX",0,"Fall River",,,MA,"Bristol County",America/New_York,508,NA,US,41.71,-71.1,738 +02723,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.69,-71.13,11830 +02724,STANDARD,0,"Fall River",,,MA,"Bristol County",America/New_York,508,NA,US,41.68,-71.18,13340 +02725,STANDARD,0,Somerset,,,MA,"Bristol County",America/New_York,508,NA,US,41.72,-71.19,2330 +02726,STANDARD,0,Somerset,,,MA,"Bristol County",America/New_York,508,NA,US,41.73,-71.15,14570 +02738,STANDARD,0,Marion,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.7,-70.76,5010 +02739,STANDARD,0,Mattapoisett,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.66,-70.8,6240 +02740,STANDARD,0,"New Bedford",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.64,-70.94,33850 +02741,"PO BOX",0,"New Bedford",,,MA,"Bristol County",America/New_York,508,NA,US,41.66,-70.93,157 +02742,"PO BOX",0,"New Bedford",,,MA,"Bristol County",America/New_York,508,NA,US,41.66,-70.93,334 +02743,STANDARD,0,Acushnet,"New Bedford",,MA,"Bristol County",America/New_York,508,NA,US,41.68,-70.9,9700 +02744,STANDARD,0,"New Bedford",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.61,-70.91,9960 +02745,STANDARD,0,"New Bedford",Acushnet,,MA,"Bristol County",America/New_York,508,NA,US,41.7,-70.95,21260 +02746,STANDARD,0,"New Bedford",,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.66,-70.93,12450 +02747,STANDARD,0,"North Dartmouth","Dartmouth, N Dartmouth",,MA,"Bristol County",America/New_York,508,NA,US,41.64,-71,16930 +02748,STANDARD,0,"South Dartmouth","Dartmouth, Nonquitt, S Dartmouth",,MA,"Bristol County",America/New_York,508,NA,US,41.55,-70.98,10350 +02760,STANDARD,0,"North Attleboro","N Attleboro","No Attleboro",MA,"Bristol County",America/New_York,"508,774",NA,US,41.97,-71.33,26290 +02761,"PO BOX",0,"North Attleboro","N Attleboro",,MA,"Bristol County",America/New_York,508,NA,US,41.97,-71.33,356 +02762,STANDARD,0,Plainville,,"N Attleboro",MA,"Norfolk County",America/New_York,,NA,US,42,-71.33,9110 +02763,STANDARD,0,"Attleboro Falls","Attleboro Fls, N Attleboro, North Attleboro",,MA,"Bristol County",America/New_York,"508,774",NA,US,41.97,-71.31,2140 +02764,STANDARD,0,"North Dighton","N Dighton",,MA,"Bristol County",America/New_York,508,NA,US,41.85,-71.15,3880 +02766,STANDARD,0,Norton,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.96,-71.18,16650 +02767,STANDARD,0,Raynham,,,MA,"Bristol County",America/New_York,508,NA,US,41.93,-71.04,14220 +02768,"PO BOX",0,"Raynham Center","Raynham Ctr",,MA,"Bristol County",America/New_York,508,NA,US,41.93,-71.04,502 +02769,STANDARD,0,Rehoboth,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.83,-71.26,12030 +02770,STANDARD,0,Rochester,,,MA,"Plymouth County",America/New_York,"508,774",NA,US,41.73,-70.81,5560 +02771,STANDARD,0,Seekonk,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.81,-71.33,14630 +02777,STANDARD,0,Swansea,,,MA,"Bristol County",America/New_York,508,NA,US,41.75,-71.18,15680 +02779,STANDARD,0,Berkley,,,MA,"Bristol County",America/New_York,508,NA,US,41.85,-71.08,6380 +02780,STANDARD,0,Taunton,,,MA,"Bristol County",America/New_York,"508,774",NA,US,41.9,-71.09,44760 +02783,UNIQUE,1,Taunton,,Chadwicks,MA,"Bristol County",America/New_York,508,NA,US,41.9,-71.09,0 +02790,STANDARD,0,Westport,,"Horseneck Beach",MA,"Bristol County",America/New_York,"508,774",NA,US,41.66,-71.1,15150 +02791,"PO BOX",0,"Westport Point","Westport Pt",,MA,"Bristol County",America/New_York,508,NA,US,41.52,-71.07,388 +02801,"PO BOX",0,Adamsville,,,RI,"Newport County",America/New_York,401,NA,US,41.51,-71.16,299 +02802,"PO BOX",0,Albion,,,RI,"Providence County",America/New_York,401,NA,US,41.95,-71.46,770 +02804,STANDARD,0,Ashaway,,,RI,"Washington County",America/New_York,401,NA,US,41.42,-71.78,2630 +02806,STANDARD,0,Barrington,,,RI,"Bristol County",America/New_York,401,NA,US,41.73,-71.31,16780 +02807,"PO BOX",0,"Block Island","New Shoreham",,RI,"Washington County",America/New_York,401,NA,US,41.16,-71.58,1213 +02808,STANDARD,0,Bradford,,,RI,"Washington County",America/New_York,401,NA,US,41.39,-71.75,2150 +02809,STANDARD,0,Bristol,,,RI,"Bristol County",America/New_York,401,NA,US,41.67,-71.27,17200 +02812,STANDARD,0,Carolina,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.47,-71.64,1280 +02813,STANDARD,0,Charlestown,,,RI,"Washington County",America/New_York,401,NA,US,41.38,-71.65,7160 +02814,STANDARD,0,Chepachet,,Glocester,RI,"Providence County",America/New_York,401,NA,US,41.91,-71.7,7060 +02815,STANDARD,0,Clayville,,Scituate,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.66,240 +02816,STANDARD,0,Coventry,,,RI,"Kent County",America/New_York,401,NA,US,41.68,-71.66,29910 +02817,STANDARD,0,"West Greenwich","W Greenwich",,RI,"Kent County",America/New_York,401,NA,US,41.63,-71.65,6070 +02818,STANDARD,0,"East Greenwich","E Greenwich",,RI,"Kent County",America/New_York,401,NA,US,41.63,-71.5,18190 +02822,STANDARD,0,Exeter,Escoheag,,RI,"Washington County",America/New_York,401,NA,US,41.56,-71.68,5590 +02823,"PO BOX",0,Fiskeville,,,RI,"Providence County",America/New_York,401,NA,US,41.73,-71.54,302 +02824,"PO BOX",0,Forestdale,,,RI,"Providence County",America/New_York,401,NA,US,41.97,-71.55,394 +02825,STANDARD,0,Foster,,Scituate,RI,"Providence County",America/New_York,401,NA,US,41.85,-71.76,5050 +02826,"PO BOX",0,Glendale,,Burrillville,RI,"Providence County",America/New_York,401,NA,US,41.98,-71.65,880 +02827,STANDARD,0,Greene,Coventry,,RI,"Kent County",America/New_York,401,NA,US,41.69,-71.74,2080 +02828,STANDARD,0,Greenville,,Smithfield,RI,"Providence County",America/New_York,401,NA,US,41.87,-71.55,6780 +02829,"PO BOX",0,Harmony,,Glocester,RI,"Providence County",America/New_York,401,NA,US,41.88,-71.61,405 +02830,STANDARD,0,Harrisville,Burrillville,,RI,"Providence County",America/New_York,401,NA,US,41.96,-71.67,5850 +02831,STANDARD,0,Hope,,Scituate,RI,"Providence County",America/New_York,401,NA,US,41.75,-71.56,3910 +02832,STANDARD,0,"Hope Valley",Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.51,-71.72,4470 +02833,STANDARD,0,Hopkinton,,,RI,"Washington County",America/New_York,401,NA,US,41.48,-71.77,540 +02835,STANDARD,0,Jamestown,,,RI,"Newport County",America/New_York,401,NA,US,41.48,-71.36,5130 +02836,STANDARD,0,Kenyon,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.62,91 +02837,STANDARD,0,"Little Compton","L Compton",,RI,"Newport County",America/New_York,401,NA,US,41.5,-71.16,3070 +02838,STANDARD,0,Manville,,Lincoln,RI,"Providence County",America/New_York,401,NA,US,41.96,-71.47,3000 +02839,STANDARD,0,Mapleville,,Burrillville,RI,"Providence County",America/New_York,401,NA,US,41.94,-71.64,1690 +02840,STANDARD,0,Newport,,,RI,"Newport County",America/New_York,401,NA,US,41.47,-71.3,17300 +02841,STANDARD,0,Newport,,Netc,RI,"Newport County",America/New_York,401,NA,US,41.51,-71.33,353 +02842,STANDARD,0,Middletown,,,RI,"Newport County",America/New_York,401,NA,US,41.51,-71.27,14800 +02852,STANDARD,0,"North Kingstown","N Kingstown","Davisville, Wickford",RI,"Washington County",America/New_York,401,NA,US,41.55,-71.46,21920 +02854,STANDARD,1,"North Kingstown","N Kingstown",,RI,"Washington County",America/New_York,401,NA,US,41.59,-71.45,0 +02857,STANDARD,0,"North Scituate","N Scituate, Scituate",Glocester,RI,"Providence County",America/New_York,401,NA,US,41.83,-71.63,8080 +02858,STANDARD,0,Oakland,,Burrillville,RI,"Providence County",America/New_York,401,NA,US,41.97,-71.65,570 +02859,STANDARD,0,Pascoag,,Glocester,RI,"Providence County",America/New_York,401,NA,US,41.95,-71.7,5860 +02860,STANDARD,0,Pawtucket,,,RI,"Providence County",America/New_York,401,NA,US,41.87,-71.37,38550 +02861,STANDARD,0,Pawtucket,,Darlington,RI,"Providence County",America/New_York,401,NA,US,41.88,-71.35,24060 +02862,"PO BOX",0,Pawtucket,,,RI,"Providence County",America/New_York,401,NA,US,41.87,-71.37,912 +02863,STANDARD,0,"Central Falls",,,RI,"Providence County",America/New_York,401,NA,US,41.89,-71.39,15820 +02864,STANDARD,0,Cumberland,,,RI,"Providence County",America/New_York,401,NA,US,41.94,-71.41,33430 +02865,STANDARD,0,Lincoln,,,RI,"Providence County",America/New_York,401,NA,US,41.91,-71.45,16870 +02871,STANDARD,0,Portsmouth,,,RI,"Newport County",America/New_York,401,NA,US,41.6,-71.25,16630 +02872,"PO BOX",0,"Prudence Island","Prudence Isl",,RI,"Newport County",America/New_York,401,NA,US,41.6,-71.31,160 +02873,"PO BOX",0,Rockville,,,RI,"Washington County",America/New_York,401,NA,US,41.53,-71.78,301 +02874,STANDARD,0,Saunderstown,,,RI,"Washington County",America/New_York,401,NA,US,41.51,-71.44,5870 +02875,STANDARD,0,Shannock,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.46,-71.64,310 +02876,STANDARD,0,Slatersville,,,RI,"Providence County",America/New_York,401,NA,US,41.99,-71.59,1120 +02877,STANDARD,0,Slocum,,,RI,"Washington County",America/New_York,401,NA,US,41.52,-71.54,106 +02878,STANDARD,0,Tiverton,,,RI,"Newport County",America/New_York,401,NA,US,41.65,-71.2,14610 +02879,STANDARD,0,Wakefield,"Narragansett, Peace Dale, S Kingstown, South Kingstown","East Matunuck, Green Hill, Jerusalem, Matunuck",RI,"Washington County",America/New_York,401,NA,US,41.45,-71.51,18690 +02880,"PO BOX",0,Wakefield,,,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.51,684 +02881,STANDARD,0,Kingston,,,RI,"Washington County",America/New_York,401,NA,US,41.48,-71.52,1920 +02882,STANDARD,0,Narragansett,"Point Judith","Bonnet Shores, Galilee",RI,"Washington County",America/New_York,401,NA,US,41.39,-71.48,9960 +02883,"PO BOX",0,"Peace Dale","S Kingstown, South Kingstown",,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.5,217 +02885,STANDARD,0,Warren,,,RI,"Bristol County",America/New_York,401,NA,US,41.72,-71.26,9290 +02886,STANDARD,0,Warwick,,,RI,"Kent County",America/New_York,401,NA,US,41.7,-71.46,25970 +02887,"PO BOX",0,Warwick,,,RI,"Kent County",America/New_York,401,NA,US,41.7,-71.42,344 +02888,STANDARD,0,Warwick,,,RI,"Kent County",America/New_York,401,NA,US,41.75,-71.41,17970 +02889,STANDARD,0,Warwick,,Conimicut,RI,"Kent County",America/New_York,401,NA,US,41.7,-71.42,25580 +02891,STANDARD,0,Westerly,,"Misquamicut, Watch Hill",RI,"Washington County",America/New_York,401,NA,US,41.37,-71.81,19510 +02892,STANDARD,0,"West Kingston",Richmond,"South Kingstown",RI,"Washington County",America/New_York,401,NA,US,41.5,-71.59,5090 +02893,STANDARD,0,"West Warwick",,"W Warwick",RI,"Kent County",America/New_York,401,NA,US,41.69,-71.51,26110 +02894,STANDARD,0,"Wood River Junction","Wood River Jt",,RI,"Washington County",America/New_York,401,NA,US,41.45,-71.7,780 +02895,STANDARD,0,Woonsocket,,,RI,"Providence County",America/New_York,401,NA,US,41.99,-71.5,34010 +02896,STANDARD,0,"North Smithfield","N Smithfield",,RI,"Providence County",America/New_York,401,NA,US,41.95,-71.55,9630 +02898,STANDARD,0,Wyoming,Richmond,,RI,"Washington County",America/New_York,401,NA,US,41.52,-71.67,1940 +02901,"PO BOX",0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,299 +02902,UNIQUE,0,Providence,,"Providence Journal",RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,69 +02903,STANDARD,0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,5430 +02904,STANDARD,0,Providence,"N Providence, North Providence","No Providence",RI,"Providence County",America/New_York,401,NA,US,41.86,-71.44,25300 +02905,STANDARD,0,Providence,Cranston,,RI,"Providence County",America/New_York,401,NA,US,41.78,-71.4,21710 +02906,STANDARD,0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.84,-71.39,19060 +02907,STANDARD,0,Providence,Cranston,,RI,"Providence County",America/New_York,401,NA,US,41.8,-71.42,25630 +02908,STANDARD,0,Providence,"N Providence, North Providence",,RI,"Providence County",America/New_York,401,NA,US,41.84,-71.44,30170 +02909,STANDARD,0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.45,36880 +02910,STANDARD,0,Cranston,Providence,,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.44,20050 +02911,STANDARD,0,"North Providence","N Providence, Providence","Centerdale, Centredale, No Providence",RI,"Providence County",America/New_York,401,NA,US,41.85,-71.47,13830 +02912,UNIQUE,0,Providence,,"Brown Station, Brown University",RI,"Providence County",America/New_York,401,NA,US,41.83,-71.4,375 +02914,STANDARD,0,"East Providence","E Providence",,RI,"Providence County",America/New_York,401,NA,US,41.81,-71.37,18280 +02915,STANDARD,0,Riverside,,,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.35,14650 +02916,STANDARD,0,Rumford,,,RI,"Providence County",America/New_York,401,NA,US,41.84,-71.35,7790 +02917,STANDARD,0,Smithfield,,Esmond,RI,"Providence County",America/New_York,401,NA,US,41.9,-71.53,10870 +02918,UNIQUE,0,Providence,,"Friar Station, Providence College",RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,36 +02919,STANDARD,0,Johnston,Providence,,RI,"Providence County",America/New_York,401,NA,US,41.83,-71.52,26290 +02920,STANDARD,0,Cranston,,,RI,"Providence County",America/New_York,401,NA,US,41.77,-71.47,31420 +02921,STANDARD,0,Cranston,,,RI,"Providence County",America/New_York,401,NA,US,41.76,-71.48,11770 +02940,"PO BOX",0,Providence,,,RI,"Providence County",America/New_York,401,NA,US,41.82,-71.41,1143 +03031,STANDARD,0,Amherst,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.86,-71.61,11740 +03032,STANDARD,0,Auburn,,,NH,"Rockingham County",America/New_York,603,NA,US,43,-71.34,5800 +03033,STANDARD,0,Brookline,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.73,-71.66,5500 +03034,STANDARD,0,Candia,,,NH,"Rockingham County",America/New_York,603,NA,US,43.07,-71.27,3920 +03036,STANDARD,0,Chester,,,NH,"Rockingham County",America/New_York,603,NA,US,42.95,-71.25,5240 +03037,STANDARD,0,Deerfield,,,NH,"Rockingham County",America/New_York,603,NA,US,43.14,-71.21,4600 +03038,STANDARD,0,Derry,Londonderry,,NH,"Rockingham County",America/New_York,603,NA,US,42.89,-71.28,31700 +03040,"PO BOX",0,"East Candia",,"E Candia",NH,"Rockingham County",America/New_York,603,NA,US,43.05,-71.27,25 +03041,"PO BOX",0,"East Derry",,"E Derry",NH,"Rockingham County",America/New_York,603,NA,US,42.88,-71.27,256 +03042,STANDARD,0,Epping,,,NH,"Rockingham County",America/New_York,603,NA,US,43.03,-71.07,6750 +03043,STANDARD,0,Francestown,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.98,-71.8,1500 +03044,STANDARD,0,Fremont,,,NH,"Rockingham County",America/New_York,603,NA,US,42.99,-71.14,4410 +03045,STANDARD,0,Goffstown,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.01,-71.6,12890 +03046,STANDARD,0,Dunbarton,,,NH,"Merrimack County",America/New_York,603,NA,US,43.1,-71.59,2980 +03047,STANDARD,0,Greenfield,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.95,-71.85,1490 +03048,STANDARD,0,Greenville,Mason,,NH,"Hillsborough County",America/New_York,603,NA,US,42.76,-71.79,3040 +03049,STANDARD,0,Hollis,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.73,-71.58,8400 +03051,STANDARD,0,Hudson,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.76,-71.43,24140 +03052,STANDARD,0,Litchfield,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.83,-71.46,8340 +03053,STANDARD,0,Londonderry,,,NH,"Rockingham County",America/New_York,603,NA,US,42.85,-71.36,24850 +03054,STANDARD,0,Merrimack,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.85,-71.52,25830 +03055,STANDARD,0,Milford,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.83,-71.66,14900 +03057,STANDARD,0,"Mont Vernon",,"Mount Vernon, Mt Vernon",NH,"Hillsborough County",America/New_York,603,NA,US,42.9,-71.66,2560 +03060,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.74,-71.46,25680 +03061,"PO BOX",0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.74,-71.49,931 +03062,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.74,-71.49,27150 +03063,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.78,-71.52,14990 +03064,STANDARD,0,Nashua,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.78,-71.47,13400 +03070,STANDARD,0,"New Boston",,,NH,"Hillsborough County",America/New_York,603,NA,US,42.96,-71.68,6020 +03071,STANDARD,0,"New Ipswich",,,NH,"Hillsborough County",America/New_York,603,NA,US,42.75,-71.85,4970 +03073,"PO BOX",0,"North Salem",,"N Salem, No Salem",NH,"Rockingham County",America/New_York,603,NA,US,42.83,-71.22,396 +03076,STANDARD,0,Pelham,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.73,-71.31,13740 +03077,STANDARD,0,Raymond,,,NH,"Rockingham County",America/New_York,603,NA,US,43.03,-71.17,9930 +03079,STANDARD,0,Salem,,,NH,"Rockingham County",America/New_York,603,NA,US,42.78,-71.2,28170 +03082,STANDARD,0,Lyndeborough,,Lyndeboro,NH,"Hillsborough County",America/New_York,603,NA,US,42.9,-71.75,1440 +03084,STANDARD,0,Temple,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.81,-71.83,1200 +03086,STANDARD,0,Wilton,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.84,-71.73,3790 +03087,STANDARD,0,Windham,,,NH,"Rockingham County",America/New_York,603,NA,US,42.8,-71.3,15550 +03101,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.47,2500 +03102,STANDARD,0,Manchester,,Pinardville,NH,"Hillsborough County",America/New_York,603,NA,US,43.01,-71.49,26650 +03103,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,32080 +03104,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.01,-71.44,28070 +03105,"PO BOX",0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,670 +03106,STANDARD,0,Hooksett,Manchester,,NH,"Merrimack County",America/New_York,603,NA,US,43.09,-71.45,13500 +03107,UNIQUE,1,Manchester,,"Nh Insurance",NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,0 +03108,"PO BOX",0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,936 +03109,STANDARD,0,Manchester,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.96,-71.4,9820 +03110,STANDARD,0,Bedford,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.95,-71.5,22780 +03111,UNIQUE,0,Manchester,,"Shared Firm Zip",NH,"Hillsborough County",America/New_York,603,NA,US,42.99,-71.45,0 +03215,"PO BOX",0,"Waterville Valley","Watervl Vly","Waterville Vly",NH,"Grafton County",America/New_York,603,NA,US,43.95,-71.5,314 +03216,STANDARD,0,Andover,,,NH,"Merrimack County",America/New_York,603,NA,US,43.43,-71.82,2000 +03217,STANDARD,0,Ashland,,,NH,"Grafton County",America/New_York,603,NA,US,43.69,-71.63,1900 +03218,STANDARD,0,Barnstead,,,NH,"Belknap County",America/New_York,603,NA,US,43.33,-71.29,1080 +03220,STANDARD,0,Belmont,,,NH,"Belknap County",America/New_York,603,NA,US,43.44,-71.47,6580 +03221,STANDARD,0,Bradford,,Sutton,NH,"Merrimack County",America/New_York,603,NA,US,43.27,-71.96,2050 +03222,STANDARD,0,Bristol,Alexandria,Bridgewater,NH,"Grafton County",America/New_York,603,NA,US,43.6,-71.74,4950 +03223,STANDARD,0,Campton,"Ellsworth, Thornton",,NH,"Grafton County",America/New_York,603,NA,US,43.86,-71.63,3830 +03224,STANDARD,0,Canterbury,,,NH,"Merrimack County",America/New_York,603,NA,US,43.33,-71.56,2300 +03225,STANDARD,0,"Center Barnstead","Ctr Barnstead",,NH,"Belknap County",America/New_York,603,NA,US,43.33,-71.23,3470 +03226,STANDARD,0,"Center Harbor",,"Centre Harbor, Ctr Harbor",NH,"Belknap County",America/New_York,603,NA,US,43.71,-71.52,1800 +03227,STANDARD,0,"Center Sandwich","Ctr Sandwich, Sandwich",,NH,"Carroll County",America/New_York,603,NA,US,43.83,-71.47,920 +03229,STANDARD,0,Contoocook,Hopkinton,,NH,"Merrimack County",America/New_York,603,NA,US,43.22,-71.71,5830 +03230,STANDARD,0,Danbury,,,NH,"Merrimack County",America/New_York,603,NA,US,43.52,-71.86,1140 +03231,"PO BOX",0,"East Andover",,"E Andover",NH,"Merrimack County",America/New_York,603,NA,US,43.48,-71.76,328 +03233,STANDARD,0,Elkins,,,NH,"Merrimack County",America/New_York,603,NA,US,43.42,-71.93,330 +03234,STANDARD,0,Epsom,,,NH,"Merrimack County",America/New_York,603,NA,US,43.22,-71.33,4460 +03235,STANDARD,0,Franklin,,"W Franklin, West Franklin",NH,"Merrimack County",America/New_York,603,NA,US,43.45,-71.66,7400 +03237,STANDARD,0,Gilmanton,,,NH,"Belknap County",America/New_York,603,NA,US,43.42,-71.41,2420 +03238,"PO BOX",0,Glencliff,,,NH,"Grafton County",America/New_York,603,NA,US,43.98,-71.91,153 +03240,STANDARD,0,Grafton,,,NH,"Grafton County",America/New_York,603,NA,US,43.55,-71.94,1150 +03241,STANDARD,0,Hebron,"East Hebron","E Hebron, Groton",NH,"Grafton County",America/New_York,603,NA,US,43.69,-71.8,770 +03242,STANDARD,0,Henniker,,,NH,"Merrimack County",America/New_York,603,NA,US,43.17,-71.81,3780 +03243,STANDARD,0,Hill,,,NH,"Merrimack County",America/New_York,603,NA,US,43.52,-71.7,900 +03244,STANDARD,0,Hillsborough,"Deering, Hillsboro, Windsor",,NH,"Hillsborough County",America/New_York,603,NA,US,43.12,-71.92,7060 +03245,STANDARD,0,Holderness,,,NH,"Grafton County",America/New_York,603,NA,US,43.73,-71.58,1690 +03246,STANDARD,0,Laconia,,"Lakeport, Weirs Beach",NH,"Belknap County",America/New_York,603,NA,US,43.56,-71.48,13600 +03247,"PO BOX",0,Laconia,,"Gilford, Lakeport, Weirs Beach",NH,"Belknap County",America/New_York,603,NA,US,43.56,-71.48,1611 +03249,STANDARD,0,Gilford,,Guilford,NH,"Belknap County",America/New_York,603,NA,US,43.53,-71.38,6770 +03251,STANDARD,0,Lincoln,,,NH,"Grafton County",America/New_York,603,NA,US,44.04,-71.67,1440 +03252,"PO BOX",0,Lochmere,,,NH,"Belknap County",America/New_York,603,NA,US,43.47,-71.56,205 +03253,STANDARD,0,Meredith,,,NH,"Belknap County",America/New_York,603,NA,US,43.65,-71.5,6030 +03254,STANDARD,0,Moultonborough,Moultonboro,,NH,"Carroll County",America/New_York,603,NA,US,43.75,-71.39,3750 +03255,STANDARD,0,Newbury,"Mount Sunapee","Mt Sunapee",NH,"Merrimack County",America/New_York,603,NA,US,43.32,-72.03,1910 +03256,STANDARD,0,"New Hampton",,,NH,"Belknap County",America/New_York,603,NA,US,43.6,-71.65,2180 +03257,STANDARD,0,"New London",,Sutton,NH,"Merrimack County",America/New_York,603,NA,US,43.41,-71.98,4050 +03258,STANDARD,0,Chichester,,"North Chichester",NH,"Merrimack County",America/New_York,603,NA,US,43.25,-71.39,2480 +03259,STANDARD,0,"North Sandwich","N Sandwich",,NH,"Carroll County",America/New_York,603,NA,US,43.86,-71.38,310 +03260,"PO BOX",0,"North Sutton",,"N Sutton",NH,"Merrimack County",America/New_York,603,NA,US,43.36,-71.94,633 +03261,STANDARD,0,Northwood,,,NH,"Rockingham County",America/New_York,603,NA,US,43.19,-71.15,4340 +03262,STANDARD,0,"North Woodstock","N Woodstock",,NH,"Grafton County",America/New_York,603,NA,US,44.01,-71.73,1070 +03263,STANDARD,0,Pittsfield,,,NH,"Merrimack County",America/New_York,603,NA,US,43.3,-71.33,3550 +03264,STANDARD,0,Plymouth,,Bridgewater,NH,"Grafton County",America/New_York,603,NA,US,43.73,-71.69,4060 +03266,STANDARD,0,Rumney,Dorchester,"Ellsworth, Groton",NH,"Grafton County",America/New_York,603,NA,US,43.8,-71.81,1840 +03268,STANDARD,0,Salisbury,,,NH,"Merrimack County",America/New_York,603,NA,US,43.38,-71.71,1190 +03269,STANDARD,0,Sanbornton,,,NH,"Belknap County",America/New_York,603,NA,US,43.52,-71.6,2780 +03272,"PO BOX",0,"South Newbury",,"S Newbury",NH,"Merrimack County",America/New_York,603,NA,US,43.29,-72,34 +03273,"PO BOX",0,"South Sutton",,"S Sutton",NH,"Merrimack County",America/New_York,603,NA,US,43.31,-71.92,300 +03274,"PO BOX",1,"Stinson Lake",,,NH,"Grafton County",America/New_York,603,NA,US,43.86,-71.8,0 +03275,STANDARD,0,Suncook,"Allenstown, Pembroke",,NH,"Merrimack County",America/New_York,603,NA,US,43.13,-71.45,10610 +03276,STANDARD,0,Tilton,Northfield,,NH,"Merrimack County",America/New_York,603,NA,US,43.44,-71.58,7560 +03278,STANDARD,0,Warner,,Sutton,NH,"Merrimack County",America/New_York,603,NA,US,43.28,-71.81,2850 +03279,STANDARD,0,Warren,,,NH,"Grafton County",America/New_York,603,NA,US,43.92,-71.89,640 +03280,STANDARD,0,Washington,,,NH,"Sullivan County",America/New_York,603,NA,US,43.17,-72.09,1050 +03281,STANDARD,0,Weare,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.1,-71.73,8740 +03282,STANDARD,0,Wentworth,,,NH,"Grafton County",America/New_York,603,NA,US,43.87,-71.91,820 +03284,STANDARD,0,Springfield,,"W Springfield, West Springfield",NH,"Sullivan County",America/New_York,603,NA,US,43.49,-72.03,780 +03285,STANDARD,0,Thornton,,,NH,"Grafton County",America/New_York,603,NA,US,43.93,-71.62,1530 +03287,STANDARD,0,Wilmot,,"Sutton, Wilmot Flat",NH,"Merrimack County",America/New_York,603,NA,US,43.45,-71.91,1210 +03289,"PO BOX",0,Winnisquam,,,NH,"Belknap County",America/New_York,603,NA,US,43.5,-71.49,444 +03290,STANDARD,0,Nottingham,,,NH,"Rockingham County",America/New_York,603,NA,US,43.11,-71.1,4900 +03291,STANDARD,0,"West Nottingham","W Nottingham",,NH,"Rockingham County",America/New_York,603,NA,US,43.18,-71.14,180 +03293,"PO BOX",0,Woodstock,,,NH,"Grafton County",America/New_York,603,NA,US,43.97,-71.68,189 +03298,UNIQUE,0,Tilton,,"Brm J Jill, J Jill, J Jill Brm",NH,"Belknap County",America/New_York,603,NA,US,43.44,-71.58,0 +03299,UNIQUE,0,Tilton,,"J Jill",NH,"Belknap County",America/New_York,603,NA,US,43.44,-71.58,0 +03301,STANDARD,0,Concord,,,NH,"Merrimack County",America/New_York,603,NA,US,43.23,-71.56,27400 +03302,"PO BOX",0,Concord,,,NH,"Merrimack County",America/New_York,603,NA,US,43.23,-71.56,1295 +03303,STANDARD,0,Concord,"Boscawen, Penacook, Webster",,NH,"Merrimack County",America/New_York,603,NA,US,43.31,-71.67,13830 +03304,STANDARD,0,Bow,,,NH,"Merrimack County",America/New_York,603,NA,US,43.13,-71.54,8160 +03305,UNIQUE,0,Concord,,"Nh Dept Of Safety",NH,"Merrimack County",America/New_York,603,NA,US,43.23,-71.56,0 +03307,STANDARD,0,Loudon,,,NH,"Merrimack County",America/New_York,603,NA,US,43.28,-71.46,5390 +03431,STANDARD,0,Keene,"North Swanzey, Roxbury, Surry","N Swanzey",NH,"Cheshire County",America/New_York,603,NA,US,42.95,-72.29,19230 +03435,UNIQUE,0,Keene,,"Keene State College",NH,"Cheshire County",America/New_York,603,NA,US,42.95,-72.29,11 +03440,STANDARD,0,Antrim,,,NH,"Hillsborough County",America/New_York,603,NA,US,43.03,-71.94,2460 +03441,STANDARD,0,Ashuelot,,,NH,"Cheshire County",America/New_York,603,NA,US,42.78,-72.45,350 +03442,STANDARD,0,Bennington,,,NH,"Hillsborough County",America/New_York,603,NA,US,43,-71.93,1260 +03443,STANDARD,0,Chesterfield,,,NH,"Cheshire County",America/New_York,603,NA,US,42.88,-72.46,710 +03444,STANDARD,0,Dublin,,,NH,"Cheshire County",America/New_York,603,NA,US,42.91,-72.06,1380 +03445,STANDARD,0,Sullivan,,"E Sullivan, East Sullivan, Nelson",NH,"Cheshire County",America/New_York,603,NA,US,43.01,-72.21,650 +03446,STANDARD,0,Swanzey,,"E Swanzey, East Swanzey, Swanzey Center, Swanzey Ctr",NH,"Cheshire County",America/New_York,603,NA,US,42.86,-72.28,5500 +03447,STANDARD,0,Fitzwilliam,,,NH,"Cheshire County",America/New_York,603,NA,US,42.78,-72.15,2190 +03448,STANDARD,0,Gilsum,,,NH,"Cheshire County",America/New_York,603,NA,US,43.05,-72.26,690 +03449,STANDARD,0,Hancock,,,NH,"Hillsborough County",America/New_York,603,NA,US,42.96,-71.98,1680 +03450,STANDARD,0,Harrisville,,,NH,"Cheshire County",America/New_York,603,NA,US,42.95,-72.1,870 +03451,STANDARD,0,Hinsdale,,,NH,"Cheshire County",America/New_York,603,NA,US,42.78,-72.48,3530 +03452,STANDARD,0,Jaffrey,,,NH,"Cheshire County",America/New_York,603,NA,US,42.81,-72.02,4920 +03455,STANDARD,0,Marlborough,,,NH,"Cheshire County",America/New_York,603,NA,US,42.9,-72.21,1910 +03456,STANDARD,0,Marlow,,,NH,"Cheshire County",America/New_York,603,NA,US,43.11,-72.2,710 +03457,STANDARD,0,Nelson,Munsonville,,NH,"Cheshire County",America/New_York,603,NA,US,42.99,-72.12,670 +03458,STANDARD,0,Peterborough,Sharon,,NH,"Hillsborough County",America/New_York,603,NA,US,42.87,-71.96,6200 +03461,STANDARD,0,Rindge,,,NH,"Cheshire County",America/New_York,603,NA,US,42.75,-72.01,5170 +03462,STANDARD,0,Spofford,,,NH,"Cheshire County",America/New_York,603,NA,US,42.9,-72.4,1590 +03464,STANDARD,0,Stoddard,,,NH,"Cheshire County",America/New_York,603,NA,US,43.08,-72.1,1000 +03465,STANDARD,0,Troy,,,NH,"Cheshire County",America/New_York,603,NA,US,42.83,-72.18,1940 +03466,STANDARD,0,"West Chesterfield","W Chesterfld","W Chesterfield",NH,"Cheshire County",America/New_York,603,NA,US,42.87,-72.51,1240 +03467,STANDARD,0,Westmoreland,,,NH,"Cheshire County",America/New_York,603,NA,US,42.96,-72.45,1530 +03468,"PO BOX",0,"West Peterborough","W Peterboro","W Peterborough",NH,"Hillsborough County",America/New_York,603,NA,US,42.85,-71.96,214 +03469,"PO BOX",0,"West Swanzey",,"W Swanzey",NH,"Cheshire County",America/New_York,603,NA,US,42.87,-72.32,902 +03470,STANDARD,0,Winchester,Richmond,,NH,"Cheshire County",America/New_York,603,NA,US,42.77,-72.38,4220 +03561,STANDARD,0,Littleton,,,NH,"Grafton County",America/New_York,603,NA,US,44.31,-71.76,5420 +03570,STANDARD,0,Berlin,,,NH,"Coos County",America/New_York,603,NA,US,44.48,-71.25,6760 +03574,STANDARD,0,Bethlehem,,,NH,"Grafton County",America/New_York,603,NA,US,44.28,-71.68,2270 +03575,"PO BOX",0,"Bretton Woods",,,NH,"Coos County",America/New_York,603,NA,US,44.31,-71.4,123 +03576,STANDARD,0,Colebrook,"Dixville, Stewartstown","Columbia, Dixville Notch",NH,"Coos County",America/New_York,603,NA,US,44.89,-71.49,2440 +03579,STANDARD,0,Errol,"Wentworths Location, Wntwrths Lctn",,NH,"Coos County",America/New_York,603,NA,US,44.78,-71.13,290 +03580,STANDARD,0,Franconia,Easton,,NH,"Grafton County",America/New_York,603,NA,US,44.22,-71.74,1330 +03581,STANDARD,0,Gorham,Shelburne,,NH,"Coos County",America/New_York,603,NA,US,44.39,-71.18,2760 +03582,STANDARD,0,Groveton,"Northumberland, Northumberlnd, Stark",,NH,"Coos County",America/New_York,603,NA,US,44.59,-71.51,2000 +03583,STANDARD,0,Jefferson,,Northumberland,NH,"Coos County",America/New_York,603,NA,US,44.41,-71.47,960 +03584,STANDARD,0,Lancaster,,Northumberland,NH,"Coos County",America/New_York,603,NA,US,44.48,-71.56,3070 +03585,STANDARD,0,Lisbon,"Landaff, Lyman",,NH,"Grafton County",America/New_York,603,NA,US,44.21,-71.9,2310 +03586,STANDARD,0,"Sugar Hill",,,NH,"Grafton County",America/New_York,603,NA,US,44.23,-71.78,480 +03588,STANDARD,0,Milan,Dummer,,NH,"Coos County",America/New_York,603,NA,US,44.57,-71.18,1460 +03589,"PO BOX",0,"Mount Washington","Mt Washington",,NH,"Coos County",America/New_York,603,NA,US,44.27,-71.3,0 +03590,STANDARD,0,"North Stratford","N Stratford, Stratford","Columbia, No Stratford",NH,"Coos County",America/New_York,603,NA,US,44.76,-71.58,690 +03592,STANDARD,0,Pittsburg,Clarksville,,NH,"Coos County",America/New_York,603,NA,US,45.05,-71.39,860 +03593,STANDARD,0,Randolph,,,NH,"Coos County",America/New_York,603,NA,US,44.37,-71.25,280 +03595,"PO BOX",0,"Twin Mountain",,,NH,"Coos County",America/New_York,603,NA,US,44.3,-71.5,637 +03597,"PO BOX",0,"West Stewartstown","W Stewartstwn","W Stewartstown",NH,"Coos County",America/New_York,603,NA,US,44.74,-71.38,647 +03598,STANDARD,0,Whitefield,"Carroll, Dalton",,NH,"Coos County",America/New_York,603,NA,US,44.37,-71.61,2990 +03601,STANDARD,0,Acworth,,,NH,"Sullivan County",America/New_York,603,NA,US,43.24,-72.29,390 +03602,STANDARD,0,Alstead,Langdon,"Alstead Center, East Alstead",NH,"Cheshire County",America/New_York,603,NA,US,43.15,-72.36,2400 +03603,STANDARD,0,Charlestown,,Unity,NH,"Sullivan County",America/New_York,603,NA,US,43.23,-72.42,4500 +03604,"PO BOX",0,Drewsville,,,NH,"Cheshire County",America/New_York,603,NA,US,43.13,-72.38,177 +03605,STANDARD,0,Lempster,"East Lempster","E Lempster",NH,"Sullivan County",America/New_York,603,NA,US,43.23,-72.21,910 +03607,STANDARD,0,"South Acworth",,"S Acworth, So Acworth",NH,"Sullivan County",America/New_York,603,NA,US,43.18,-72.32,240 +03608,STANDARD,0,Walpole,,,NH,"Cheshire County",America/New_York,603,NA,US,43.08,-72.43,2540 +03609,STANDARD,0,"North Walpole",,"N Walpole, No Walpole",NH,"Cheshire County",America/New_York,603,NA,US,43.14,-72.44,660 +03740,STANDARD,0,Bath,,,NH,"Grafton County",America/New_York,603,NA,US,44.16,-71.96,980 +03741,STANDARD,0,Canaan,Orange,,NH,"Grafton County",America/New_York,603,NA,US,43.64,-72.01,3700 +03743,STANDARD,0,Claremont,,Unity,NH,"Sullivan County",America/New_York,603,NA,US,43.37,-72.33,11370 +03745,STANDARD,0,Cornish,,,NH,"Sullivan County",America/New_York,603,NA,US,43.48,-72.32,1140 +03746,"PO BOX",0,"Cornish Flat",,,NH,"Sullivan County",America/New_York,603,NA,US,43.49,-72.27,501 +03748,STANDARD,0,Enfield,,,NH,"Grafton County",America/New_York,603,NA,US,43.64,-72.14,4130 +03749,"PO BOX",0,"Enfield Center","Enfield Ctr",,NH,"Grafton County",America/New_York,603,NA,US,43.57,-72.11,209 +03750,STANDARD,0,Etna,,,NH,"Grafton County",America/New_York,603,NA,US,43.71,-72.19,1060 +03751,"PO BOX",0,"Georges Mills",,,NH,"Sullivan County",America/New_York,603,NA,US,43.45,-72.09,538 +03752,STANDARD,0,Goshen,,,NH,"Sullivan County",America/New_York,603,NA,US,43.3,-72.14,720 +03753,STANDARD,0,Grantham,,,NH,"Sullivan County",America/New_York,603,NA,US,43.48,-72.13,3530 +03754,"PO BOX",0,Guild,,,NH,"Sullivan County",America/New_York,603,NA,US,43.38,-72.14,213 +03755,STANDARD,0,Hanover,,,NH,"Grafton County",America/New_York,603,NA,US,43.7,-72.27,6250 +03756,STANDARD,0,Lebanon,,"Dartmouth Hitchcock Med Ctr",NH,"Grafton County",America/New_York,603,NA,US,43.63,-72.25,0 +03765,STANDARD,0,Haverhill,,,NH,"Grafton County",America/New_York,603,NA,US,44.03,-72.06,450 +03766,STANDARD,0,Lebanon,,,NH,"Grafton County",America/New_York,603,NA,US,43.63,-72.25,8680 +03768,STANDARD,0,Lyme,,,NH,"Grafton County",America/New_York,603,NA,US,43.8,-72.15,1640 +03769,"PO BOX",0,"Lyme Center",,,NH,"Grafton County",America/New_York,603,NA,US,43.83,-72.1,118 +03770,STANDARD,0,Meriden,,,NH,"Sullivan County",America/New_York,603,NA,US,43.52,-72.27,700 +03771,STANDARD,0,Monroe,,,NH,"Grafton County",America/New_York,603,NA,US,44.28,-72.01,790 +03773,STANDARD,0,Newport,Croydon,Unity,NH,"Sullivan County",America/New_York,603,NA,US,43.37,-72.17,6530 +03774,STANDARD,0,"North Haverhill","N Haverhill","No Haverhill",NH,"Grafton County",America/New_York,603,NA,US,44.09,-71.99,1560 +03777,STANDARD,0,Orford,,,NH,"Grafton County",America/New_York,603,NA,US,43.89,-72.06,1080 +03779,STANDARD,0,Piermont,,,NH,"Grafton County",America/New_York,603,NA,US,43.96,-72.08,670 +03780,STANDARD,0,Pike,,Benton,NH,"Grafton County",America/New_York,603,NA,US,44.05,-71.99,380 +03781,STANDARD,0,Plainfield,,,NH,"Sullivan County",America/New_York,603,NA,US,43.53,-72.35,1590 +03782,STANDARD,0,Sunapee,,,NH,"Sullivan County",America/New_York,603,NA,US,43.38,-72.08,2740 +03784,STANDARD,0,"West Lebanon",,"W Lebanon",NH,"Grafton County",America/New_York,603,NA,US,43.64,-72.31,3520 +03785,STANDARD,0,Woodsville,Benton,"Easton, Landaff",NH,"Grafton County",America/New_York,603,NA,US,44.14,-72.02,1890 +03801,STANDARD,0,Portsmouth,Newington,,NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,20250 +03802,"PO BOX",0,Portsmouth,,,NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,1102 +03803,UNIQUE,0,Portsmouth,,"Air National Guard",NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,0 +03804,"PO BOX",0,Portsmouth,,,NH,"Rockingham County",America/New_York,603,NA,US,43.05,-70.78,93 +03805,STANDARD,1,Newington,Portsmouth,,NH,"Rockingham County",America/New_York,603,NA,US,43.23,-70.82,0 +03809,STANDARD,0,Alton,,,NH,"Belknap County",America/New_York,603,NA,US,43.45,-71.21,3650 +03810,STANDARD,0,"Alton Bay",,"West Alton",NH,"Belknap County",America/New_York,603,NA,US,43.48,-71.24,1700 +03811,STANDARD,0,Atkinson,,,NH,"Rockingham County",America/New_York,603,NA,US,42.83,-71.14,7020 +03812,STANDARD,0,Bartlett,"Harts Lctn, Harts Location",,NH,"Carroll County",America/New_York,603,NA,US,44.08,-71.27,480 +03813,STANDARD,0,"Center Conway",Chatham,"North Chatham, South Chatham",NH,"Carroll County",America/New_York,603,NA,US,43.97,-71.04,2960 +03814,STANDARD,0,"Center Ossipee","Ctr Ossipee",,NH,"Carroll County",America/New_York,603,NA,US,43.76,-71.12,2020 +03815,"PO BOX",0,"Center Strafford","Ctr Strafford",,NH,"Strafford County",America/New_York,603,NA,US,43.26,-71.11,111 +03816,STANDARD,0,"Center Tuftonboro","Ctr Tuftnboro","Ctr Tuftonboro, Tuftonboro",NH,"Carroll County",America/New_York,603,NA,US,43.71,-71.25,1080 +03817,STANDARD,0,Chocorua,,,NH,"Carroll County",America/New_York,603,NA,US,43.89,-71.24,540 +03818,STANDARD,0,Conway,Albany,,NH,"Carroll County",America/New_York,603,NA,US,43.97,-71.12,3530 +03819,STANDARD,0,Danville,,"S Danville, So Danville, South Danville",NH,"Rockingham County",America/New_York,603,NA,US,42.91,-71.12,4100 +03820,STANDARD,0,Dover,,,NH,"Strafford County",America/New_York,603,NA,US,43.19,-70.87,27980 +03821,"PO BOX",0,Dover,,,NH,"Strafford County",America/New_York,603,NA,US,43.19,-70.87,849 +03822,UNIQUE,0,Dover,,"Liberty Mutual Insurance",NH,"Strafford County",America/New_York,603,NA,US,43.19,-70.87,0 +03823,STANDARD,0,Madbury,,,NH,"Strafford County",America/New_York,603,NA,US,43.17,-70.93,1870 +03824,STANDARD,0,Durham,Lee,,NH,"Strafford County",America/New_York,603,NA,US,43.13,-70.92,5850 +03825,STANDARD,0,Barrington,,,NH,"Strafford County",America/New_York,603,NA,US,43.22,-71.04,9030 +03826,STANDARD,0,"East Hampstead","E Hampstead",,NH,"Rockingham County",America/New_York,603,NA,US,42.88,-71.13,2690 +03827,STANDARD,0,"East Kingston","South Hampton","E Kingston, S Hampton, So Hampton",NH,"Rockingham County",America/New_York,603,NA,US,42.92,-71.01,3200 +03830,STANDARD,0,"East Wakefield","E Wakefield",Wakefield,NH,"Carroll County",America/New_York,603,NA,US,43.61,-70.99,1360 +03832,"PO BOX",0,"Eaton Center",,"Eaton, Eaton Ctr",NH,"Carroll County",America/New_York,603,NA,US,43.9,-71.06,308 +03833,STANDARD,0,Exeter,"Brentwood, Kensington",,NH,"Rockingham County",America/New_York,603,NA,US,42.97,-70.94,21210 +03835,STANDARD,0,Farmington,,,NH,"Strafford County",America/New_York,603,NA,US,43.4,-71.07,5940 +03836,STANDARD,0,Freedom,,,NH,"Carroll County",America/New_York,603,NA,US,43.81,-71.03,1320 +03837,STANDARD,0,"Gilmanton Iron Works","Gilmanton Iw",,NH,"Belknap County",America/New_York,603,NA,US,43.43,-71.34,1240 +03838,STANDARD,0,Glen,,,NH,"Carroll County",America/New_York,603,NA,US,44.11,-71.23,1190 +03839,STANDARD,0,Rochester,,Gonic,NH,"Strafford County",America/New_York,603,NA,US,43.26,-70.99,3700 +03840,STANDARD,0,Greenland,,,NH,"Rockingham County",America/New_York,603,NA,US,43.03,-70.83,4210 +03841,STANDARD,0,Hampstead,,,NH,"Rockingham County",America/New_York,603,NA,US,42.87,-71.18,6270 +03842,STANDARD,0,Hampton,,"Hampton Beach",NH,"Rockingham County",America/New_York,603,NA,US,42.94,-70.82,14570 +03843,"PO BOX",0,Hampton,,"Hampton Beach",NH,"Rockingham County",America/New_York,603,NA,US,42.94,-70.82,998 +03844,STANDARD,0,"Hampton Falls",,,NH,"Rockingham County",America/New_York,603,NA,US,42.91,-70.86,2430 +03845,STANDARD,0,Intervale,,,NH,"Carroll County",America/New_York,603,NA,US,44.1,-71.12,1180 +03846,STANDARD,0,Jackson,,,NH,"Carroll County",America/New_York,603,NA,US,44.14,-71.18,840 +03847,"PO BOX",0,Kearsarge,,,NH,"Carroll County",America/New_York,603,NA,US,44.07,-71.12,345 +03848,STANDARD,0,Kingston,,,NH,"Rockingham County",America/New_York,603,NA,US,42.93,-71.05,5930 +03849,STANDARD,0,Madison,,,NH,"Carroll County",America/New_York,603,NA,US,43.89,-71.14,1270 +03850,"PO BOX",0,"Melvin Village","Melvin Vlg",,NH,"Carroll County",America/New_York,603,NA,US,43.69,-71.3,550 +03851,STANDARD,0,Milton,,,NH,"Strafford County",America/New_York,603,NA,US,43.44,-71.03,3620 +03852,STANDARD,0,"Milton Mills",,,NH,"Strafford County",America/New_York,603,NA,US,43.5,-70.97,570 +03853,STANDARD,0,"Mirror Lake",,,NH,"Carroll County",America/New_York,603,NA,US,43.63,-71.28,580 +03854,"PO BOX",0,"New Castle",,Newcastle,NH,"Rockingham County",America/New_York,603,NA,US,43.06,-70.72,1012 +03855,STANDARD,0,"New Durham",,,NH,"Strafford County",America/New_York,603,NA,US,43.43,-71.17,2580 +03856,STANDARD,0,Newfields,,,NH,"Rockingham County",America/New_York,603,NA,US,43.04,-70.97,1790 +03857,STANDARD,0,Newmarket,,,NH,"Rockingham County",America/New_York,603,NA,US,43.07,-70.94,8420 +03858,STANDARD,0,Newton,,,NH,"Rockingham County",America/New_York,603,NA,US,42.86,-71.03,4550 +03859,"PO BOX",0,"Newton Junction","Newton Jct",,NH,"Rockingham County",America/New_York,603,NA,US,42.86,-71.04,241 +03860,STANDARD,0,"North Conway","Hales Lctn, Hales Location","N Conway, No Conway",NH,"Carroll County",America/New_York,603,NA,US,44.05,-71.12,3900 +03861,STANDARD,0,Lee,,,NH,"Strafford County",America/New_York,603,NA,US,43.1,-71.01,4270 +03862,STANDARD,0,"North Hampton",,"N Hampton, No Hampton",NH,"Rockingham County",America/New_York,603,NA,US,42.97,-70.83,4640 +03864,STANDARD,0,Ossipee,,,NH,"Carroll County",America/New_York,603,NA,US,43.68,-71.11,1470 +03865,STANDARD,0,Plaistow,,,NH,"Rockingham County",America/New_York,603,NA,US,42.83,-71.09,7610 +03866,"PO BOX",0,Rochester,,,NH,"Strafford County",America/New_York,603,NA,US,43.3,-70.97,1032 +03867,STANDARD,0,Rochester,,,NH,"Strafford County",America/New_York,603,NA,US,43.3,-70.97,19000 +03868,STANDARD,0,Rochester,,"E Rochester, East Rochester",NH,"Strafford County",America/New_York,603,NA,US,43.32,-70.94,5470 +03869,STANDARD,0,Rollinsford,,,NH,"Strafford County",America/New_York,603,NA,US,43.23,-70.82,2450 +03870,STANDARD,0,Rye,,,NH,"Rockingham County",America/New_York,603,NA,US,43.01,-70.77,4950 +03871,"PO BOX",0,"Rye Beach",,,NH,"Rockingham County",America/New_York,603,NA,US,42.98,-70.78,571 +03872,STANDARD,0,Sanbornville,Brookfield,,NH,"Carroll County",America/New_York,603,NA,US,43.56,-71.01,3670 +03873,STANDARD,0,Sandown,,,NH,"Rockingham County",America/New_York,603,NA,US,42.92,-71.18,6300 +03874,STANDARD,0,Seabrook,,,NH,"Rockingham County",America/New_York,603,NA,US,42.89,-70.87,8110 +03875,STANDARD,0,"Silver Lake",,,NH,"Carroll County",America/New_York,603,NA,US,43.87,-71.19,780 +03878,STANDARD,0,Somersworth,,,NH,"Strafford County",America/New_York,603,NA,US,43.25,-70.88,10700 +03882,STANDARD,0,Effingham,,"S Effingham, So Effingham, South Effingham",NH,"Carroll County",America/New_York,603,NA,US,43.71,-71,1220 +03883,STANDARD,0,"South Tamworth","S Tamworth","So Tamworth",NH,"Carroll County",America/New_York,603,NA,US,43.81,-71.32,170 +03884,STANDARD,0,Strafford,,,NH,"Strafford County",America/New_York,603,NA,US,43.32,-71.18,4060 +03885,STANDARD,0,Stratham,,,NH,"Rockingham County",America/New_York,603,NA,US,43.02,-70.91,7790 +03886,STANDARD,0,Tamworth,,,NH,"Carroll County",America/New_York,603,NA,US,43.85,-71.26,1470 +03887,STANDARD,0,Union,Middleton,,NH,"Strafford County",America/New_York,603,NA,US,43.5,-71.07,2020 +03890,STANDARD,0,"West Ossipee",,"W Ossipee",NH,"Carroll County",America/New_York,603,NA,US,43.8,-71.2,790 +03894,STANDARD,0,Wolfeboro,,Tuftonboro,NH,"Carroll County",America/New_York,603,NA,US,43.58,-71.2,5410 +03896,"PO BOX",0,"Wolfeboro Falls","Wolfeboro Fls",,NH,"Carroll County",America/New_York,603,NA,US,43.59,-71.24,1311 +03897,STANDARD,0,Wonalancet,,,NH,"Carroll County",America/New_York,603,NA,US,43.87,-71.28,56 +03901,STANDARD,0,Berwick,,,ME,"York County",America/New_York,207,NA,US,43.3,-70.84,7380 +03902,STANDARD,0,"Cape Neddick",,,ME,"York County",America/New_York,207,NA,US,43.21,-70.63,2230 +03903,STANDARD,0,Eliot,,,ME,"York County",America/New_York,207,NA,US,43.15,-70.8,6420 +03904,STANDARD,0,Kittery,,,ME,"York County",America/New_York,207,NA,US,43.09,-70.73,7160 +03905,STANDARD,0,"Kittery Point",,,ME,"York County",America/New_York,207,NA,US,43.08,-70.69,1660 +03906,STANDARD,0,"North Berwick",,"N Berwick, No Berwick",ME,"York County",America/New_York,207,NA,US,43.3,-70.73,4630 +03907,STANDARD,0,Ogunquit,,,ME,"York County",America/New_York,207,NA,US,43.24,-70.59,1450 +03908,STANDARD,0,"South Berwick",,"S Berwick, So Berwick",ME,"York County",America/New_York,207,NA,US,43.23,-70.81,7030 +03909,STANDARD,0,York,,,ME,"York County",America/New_York,207,NA,US,43.14,-70.65,9350 +03910,"PO BOX",0,"York Beach",,,ME,"York County",America/New_York,207,NA,US,43.19,-70.6,1334 +03911,"PO BOX",0,"York Harbor",,,ME,"York County",America/New_York,207,NA,US,43.14,-70.63,756 +04001,STANDARD,0,Acton,,,ME,"York County",America/New_York,207,NA,US,43.53,-70.91,2340 +04002,STANDARD,0,Alfred,Lyman,,ME,"York County",America/New_York,207,NA,US,43.47,-70.71,6900 +04003,STANDARD,0,"Bailey Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-69.99,290 +04004,"PO BOX",0,"Bar Mills",,,ME,"York County",America/New_York,207,NA,US,43.61,-70.54,618 +04005,STANDARD,0,Biddeford,Dayton,,ME,"York County",America/New_York,207,NA,US,43.46,-70.44,19280 +04006,"PO BOX",0,"Biddeford Pool","Biddeford Pl",,ME,"York County",America/New_York,207,NA,US,43.44,-70.34,214 +04007,"PO BOX",0,Biddeford,,,ME,"York County",America/New_York,207,NA,US,43.46,-70.44,61 +04008,STANDARD,0,Bowdoinham,,,ME,"Sagadahoc County",America/New_York,207,NA,US,44.01,-69.89,2820 +04009,STANDARD,0,Bridgton,,,ME,"Cumberland County",America/New_York,207,NA,US,44.06,-70.72,4290 +04010,STANDARD,0,Brownfield,,,ME,"Oxford County",America/New_York,207,NA,US,43.93,-70.9,1420 +04011,STANDARD,0,Brunswick,"Birch Island, Cundys Harbor, Mere Point","Nas Brunswick",ME,"Cumberland County",America/New_York,207,NA,US,43.91,-69.96,17730 +04013,STANDARD,0,"Bustins Island","Bustins Is, S Freeport, South Freeport",,ME,"Cumberland County",America/New_York,207,NA,US,43.79,-70.07,0 +04014,"PO BOX",0,"Cape Porpoise",,,ME,"York County",America/New_York,207,NA,US,43.37,-70.43,391 +04015,STANDARD,0,Casco,,,ME,"Cumberland County",America/New_York,207,NA,US,44,-70.52,2970 +04016,"PO BOX",0,"Center Lovell",,,ME,"Oxford County",America/New_York,207,NA,US,44.17,-70.87,172 +04017,STANDARD,0,"Chebeague Island","Chebeague Is",,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-70.11,380 +04019,"PO BOX",0,"Cliff Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.1,51 +04020,STANDARD,0,Cornish,,,ME,"York County",America/New_York,207,NA,US,43.8,-70.8,1400 +04021,STANDARD,0,"Cumberland Center","Cumberland, Cumberlnd Ctr",,ME,"Cumberland County",America/New_York,207,NA,US,43.8,-70.25,6740 +04022,STANDARD,0,Denmark,,,ME,"Oxford County",America/New_York,207,NA,US,43.97,-70.8,1100 +04024,STANDARD,0,"East Baldwin",,,ME,"Cumberland County",America/New_York,207,NA,US,43.84,-70.69,510 +04027,STANDARD,0,Lebanon,,,ME,"York County",America/New_York,207,NA,US,43.39,-70.85,5720 +04028,"PO BOX",0,"East Parsonsfield","E Parsonfield",,ME,"York County",America/New_York,207,NA,US,43.72,-70.91,102 +04029,STANDARD,0,Sebago,,"E Sebago, East Sebago",ME,"Cumberland County",America/New_York,207,NA,US,43.89,-70.64,1680 +04030,STANDARD,0,"East Waterboro","E Waterboro",,ME,"York County",America/New_York,207,NA,US,43.6,-70.69,1930 +04032,STANDARD,0,Freeport,,,ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.1,7720 +04033,UNIQUE,0,Freeport,,"Ll Bean Co",ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.1,0 +04034,UNIQUE,0,Freeport,,"Ll Bean Co",ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.1,0 +04037,STANDARD,0,Fryeburg,"N Fryeburg, North Fryeburg, Stow",,ME,"Oxford County",America/New_York,207,NA,US,44.01,-70.97,3170 +04038,STANDARD,0,Gorham,,,ME,"Cumberland County",America/New_York,207,NA,US,43.68,-70.44,16190 +04039,STANDARD,0,Gray,,,ME,"Cumberland County",America/New_York,207,NA,US,43.88,-70.33,7570 +04040,STANDARD,0,Harrison,Sweden,,ME,"Cumberland County",America/New_York,207,NA,US,44.11,-70.67,2470 +04041,STANDARD,0,Hiram,,,ME,"Oxford County",America/New_York,207,NA,US,43.87,-70.8,1190 +04042,STANDARD,0,"Hollis Center",,,ME,"York County",America/New_York,207,NA,US,43.59,-70.6,4290 +04043,STANDARD,0,Kennebunk,,,ME,"York County",America/New_York,207,NA,US,43.38,-70.54,10510 +04046,STANDARD,0,Kennebunkport,Arundel,,ME,"York County",America/New_York,207,NA,US,43.35,-70.46,7040 +04047,STANDARD,0,Parsonsfield,"Kezar Falls",Maplewood,ME,"York County",America/New_York,207,NA,US,43.72,-70.92,1660 +04048,STANDARD,0,Limerick,,,ME,"York County",America/New_York,207,NA,US,43.68,-70.79,2770 +04049,STANDARD,0,Limington,,,ME,"York County",America/New_York,207,NA,US,43.73,-70.71,3400 +04050,STANDARD,0,"Long Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.15,200 +04051,STANDARD,0,Lovell,,,ME,"Oxford County",America/New_York,207,NA,US,44.12,-70.89,900 +04054,"PO BOX",0,Moody,,,ME,"York County",America/New_York,207,NA,US,43.3,-70.59,664 +04055,STANDARD,0,Naples,,,ME,"Cumberland County",America/New_York,207,NA,US,43.97,-70.6,3670 +04056,"PO BOX",0,Newfield,,,ME,"York County",America/New_York,207,NA,US,43.66,-70.88,269 +04057,"PO BOX",0,"North Bridgton","N Bridgton",,ME,"Cumberland County",America/New_York,207,NA,US,44.1,-70.7,313 +04061,STANDARD,0,"North Waterboro","N Waterboro",,ME,"York County",America/New_York,207,NA,US,43.63,-70.73,3240 +04062,STANDARD,0,Windham,"N Windham, No Windham, North Windham",,ME,"Cumberland County",America/New_York,207,NA,US,43.79,-70.4,17120 +04063,"PO BOX",0,"Ocean Park",,,ME,"York County",America/New_York,207,NA,US,43.5,-70.39,451 +04064,STANDARD,0,"Old Orchard Beach","Old Orchd Bch",,ME,"York County",America/New_York,207,NA,US,43.52,-70.38,7410 +04066,STANDARD,0,"Orrs Island",,,ME,"Cumberland County",America/New_York,207,NA,US,43.77,-69.96,550 +04068,STANDARD,0,Porter,,,ME,"Oxford County",America/New_York,207,NA,US,43.79,-70.93,1120 +04069,STANDARD,0,Pownal,,,ME,"Cumberland County",America/New_York,207,NA,US,43.89,-70.18,1540 +04070,"PO BOX",0,Scarborough,,,ME,"Cumberland County",America/New_York,207,NA,US,43.59,-70.33,1320 +04071,STANDARD,0,Raymond,"Frye Island",,ME,"Cumberland County",America/New_York,207,NA,US,43.9,-70.47,4640 +04072,STANDARD,0,Saco,,,ME,"York County",America/New_York,207,NA,US,43.53,-70.45,18590 +04073,STANDARD,0,Sanford,,,ME,"York County",America/New_York,207,NA,US,43.44,-70.78,14670 +04074,STANDARD,0,Scarborough,"Pine Point",,ME,"Cumberland County",America/New_York,207,NA,US,43.59,-70.33,19670 +04075,STANDARD,1,"Sebago Lake",Standish,,ME,"Cumberland County",America/New_York,207,NA,US,43.85,-70.63,0 +04076,STANDARD,0,Shapleigh,"N Shapleigh, North Shapleigh",,ME,"York County",America/New_York,207,NA,US,43.54,-70.84,2490 +04077,"PO BOX",0,"South Casco",,,ME,"Cumberland County",America/New_York,207,NA,US,43.87,-70.51,583 +04078,"PO BOX",0,"South Freeport","S Freeport",,ME,"Cumberland County",America/New_York,207,NA,US,43.86,-70.1,562 +04079,STANDARD,0,Harpswell,"S Harpswell, South Harpswell",,ME,"Cumberland County",America/New_York,207,NA,US,43.8,-69.98,3580 +04082,"PO BOX",0,"South Windham",Windham,,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-70.42,133 +04083,STANDARD,0,Springvale,,,ME,"York County",America/New_York,207,NA,US,43.46,-70.8,4090 +04084,STANDARD,0,Standish,"Sebago Lake",,ME,"Cumberland County",America/New_York,207,NA,US,43.73,-70.55,7020 +04085,STANDARD,0,"Steep Falls",,,ME,"Cumberland County",America/New_York,207,NA,US,43.76,-70.64,1750 +04086,STANDARD,0,Topsham,Pejepscot,,ME,"Sagadahoc County",America/New_York,207,NA,US,43.93,-69.94,8990 +04087,STANDARD,0,Waterboro,,,ME,"York County",America/New_York,207,NA,US,43.53,-70.71,2250 +04088,STANDARD,0,Waterford,,"South Waterford",ME,"Oxford County",America/New_York,207,NA,US,44.18,-70.71,1240 +04090,STANDARD,0,Wells,"Wells Beach",,ME,"York County",America/New_York,207,NA,US,43.32,-70.58,10110 +04091,STANDARD,0,"West Baldwin",,,ME,"Cumberland County",America/New_York,207,NA,US,43.83,-70.77,860 +04092,STANDARD,0,Westbrook,,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.35,16640 +04093,STANDARD,0,Buxton,,"West Buxton",ME,"York County",America/New_York,207,NA,US,43.64,-70.54,7610 +04094,"PO BOX",0,"West Kennebunk","W Kennebunk",,ME,"York County",America/New_York,207,NA,US,43.41,-70.62,565 +04095,STANDARD,0,"West Newfield",,,ME,"York County",America/New_York,207,NA,US,43.64,-70.92,1170 +04096,STANDARD,0,Yarmouth,,,ME,"Cumberland County",America/New_York,207,NA,US,43.79,-70.2,8750 +04097,STANDARD,0,"North Yarmouth","N Yarmouth",,ME,"Cumberland County",America/New_York,207,NA,US,43.84,-70.21,3960 +04098,"PO BOX",0,Westbrook,,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.35,665 +04101,STANDARD,0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,12980 +04102,STANDARD,0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.3,14440 +04103,STANDARD,0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.69,-70.29,26700 +04104,"PO BOX",0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,2334 +04105,STANDARD,0,Falmouth,Portland,"Falmouth Foreside",ME,"Cumberland County",America/New_York,207,NA,US,43.72,-70.24,12010 +04106,STANDARD,0,"South Portland","Portland, S Portland","So Portland",ME,"Cumberland County",America/New_York,207,NA,US,43.63,-70.28,22980 +04107,STANDARD,0,"Cape Elizabeth","Cape Eliz, Pond Cove, Portland",,ME,"Cumberland County",America/New_York,207,NA,US,43.56,-70.2,9170 +04108,STANDARD,0,"Peaks Island",Portland,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.18,860 +04109,STANDARD,0,Portland,"Cushing Is, Cushing Island, Diamond Cove, Diamond Is, Diamond Island, Great Diamond Island, Grt Dia Is, Little Diamond Island, Ltle Dia Is",,ME,"Cumberland County",America/New_York,207,NA,US,43.64,-70.17,55 +04110,STANDARD,0,"Cumberland Foreside","Cumb Foreside, Portland",,ME,"Cumberland County",America/New_York,207,NA,US,43.75,-70.2,1680 +04112,"PO BOX",0,Portland,,,ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,904 +04116,"PO BOX",0,"South Portland","Portland, S Portland",,ME,"Cumberland County",America/New_York,207,NA,US,43.63,-70.28,332 +04122,UNIQUE,0,Portland,,"Union Mutual Life Ins",ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,0 +04123,UNIQUE,0,Portland,,"Union Mutual Life Ins",ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,0 +04124,UNIQUE,0,Portland,,"Union Mutual Life Ins",ME,"Cumberland County",America/New_York,207,NA,US,43.66,-70.25,0 +04210,STANDARD,0,Auburn,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.24,18770 +04211,"PO BOX",0,Auburn,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.24,614 +04212,"PO BOX",0,Auburn,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.24,665 +04216,STANDARD,0,Andover,,,ME,"Oxford County",America/New_York,207,NA,US,44.63,-70.75,520 +04217,STANDARD,0,Bethel,"Albany Twp, Gilead, Mason Twp",,ME,"Oxford County",America/New_York,207,NA,US,44.4,-70.79,2920 +04219,STANDARD,0,"Bryant Pond","Milton Twp",Woodstock,ME,"Oxford County",America/New_York,207,NA,US,44.37,-70.64,1230 +04220,STANDARD,0,Buckfield,Hartford,,ME,"Oxford County",America/New_York,207,NA,US,44.28,-70.36,2680 +04221,STANDARD,0,Canton,,,ME,"Oxford County",America/New_York,207,NA,US,44.44,-70.31,790 +04222,STANDARD,0,Durham,,,ME,"Androscoggin County",America/New_York,207,NA,US,43.92,-70.12,3860 +04223,"PO BOX",0,Danville,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.03,-70.27,104 +04224,STANDARD,0,Dixfield,Carthage,,ME,"Oxford County",America/New_York,207,NA,US,44.53,-70.45,2250 +04225,"PO BOX",0,Dryden,,,ME,"Franklin County",America/New_York,207,NA,US,44.62,-70.25,215 +04226,STANDARD,0,"East Andover",,,ME,"Oxford County",America/New_York,207,NA,US,44.6,-70.68,179 +04227,"PO BOX",0,"East Dixfield",,,ME,"Oxford County",America/New_York,207,NA,US,44.57,-70.29,250 +04228,"PO BOX",0,"East Livermore","E Livermore",,ME,"Androscoggin County",America/New_York,207,NA,US,44.43,-70.12,102 +04230,"PO BOX",0,"East Poland",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.06,-70.33,152 +04231,STANDARD,0,Stoneham,"E Stoneham",,ME,"Oxford County",America/New_York,207,NA,US,44.25,-70.81,240 +04234,"PO BOX",0,"East Wilton",,,ME,"Franklin County",America/New_York,207,NA,US,44.62,-70.19,361 +04236,STANDARD,0,Greene,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.18,-70.14,3980 +04237,STANDARD,0,Hanover,,,ME,"Oxford County",America/New_York,207,NA,US,44.49,-70.73,280 +04238,STANDARD,0,Hebron,,,ME,"Oxford County",America/New_York,207,NA,US,44.19,-70.4,1180 +04239,STANDARD,0,Jay,,,ME,"Franklin County",America/New_York,207,NA,US,44.5,-70.21,3880 +04240,STANDARD,0,Lewiston,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.17,27630 +04241,"PO BOX",0,Lewiston,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.17,568 +04243,"PO BOX",0,Lewiston,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.08,-70.17,1083 +04250,STANDARD,0,Lisbon,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.01,-70.12,4010 +04252,STANDARD,0,"Lisbon Falls",Lisbon,,ME,"Androscoggin County",America/New_York,207,NA,US,44,-70.05,4240 +04253,STANDARD,0,Livermore,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.4,-70.22,1870 +04254,STANDARD,0,"Livermore Falls","Livermore Fls",,ME,"Androscoggin County",America/New_York,207,NA,US,44.47,-70.18,2350 +04255,STANDARD,0,Greenwood,,,ME,"Oxford County",America/New_York,207,NA,US,44.4,-70.7,620 +04256,STANDARD,0,"Mechanic Falls","Mechanic Fls",,ME,"Androscoggin County",America/New_York,207,NA,US,44.11,-70.39,2650 +04257,STANDARD,0,Mexico,,,ME,"Oxford County",America/New_York,207,NA,US,44.56,-70.54,2010 +04258,STANDARD,0,Minot,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.14,-70.34,2640 +04259,STANDARD,0,Monmouth,,,ME,"Kennebec County",America/New_York,207,NA,US,44.23,-70.01,2860 +04260,STANDARD,0,"New Gloucester","New Gloucestr",,ME,"Cumberland County",America/New_York,207,NA,US,43.96,-70.28,5330 +04261,STANDARD,0,Newry,Upton,,ME,"Oxford County",America/New_York,207,NA,US,44.5,-70.96,390 +04262,"PO BOX",0,"North Jay",,,ME,"Franklin County",America/New_York,207,NA,US,44.53,-70.21,81 +04263,STANDARD,0,Leeds,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.3,-70.12,1940 +04265,STANDARD,0,"North Monmouth","N Monmouth",,ME,"Kennebec County",America/New_York,207,NA,US,44.27,-70.05,780 +04266,"PO BOX",0,"North Turner",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.33,-70.25,368 +04267,"PO BOX",0,"North Waterford","N Waterford",,ME,"Oxford County",America/New_York,207,NA,US,44.21,-70.79,121 +04268,STANDARD,0,Norway,,,ME,"Oxford County",America/New_York,207,NA,US,44.21,-70.55,4100 +04270,STANDARD,0,Oxford,Otisfield,,ME,"Oxford County",America/New_York,207,NA,US,44.14,-70.5,5180 +04271,"PO BOX",0,Paris,,"Paris Hill",ME,"Oxford County",America/New_York,207,NA,US,44.26,-70.5,182 +04274,STANDARD,0,Poland,"Poland Spring",,ME,"Androscoggin County",America/New_York,207,NA,US,44.06,-70.39,5100 +04275,STANDARD,0,Roxbury,Byron,Frye,ME,"Oxford County",America/New_York,207,NA,US,44.66,-70.59,390 +04276,STANDARD,0,Rumford,"Rumford Center, Rumford Ctr, Rumford Point",,ME,"Oxford County",America/New_York,207,NA,US,44.54,-70.56,4320 +04280,STANDARD,0,Sabattus,Wales,,ME,"Androscoggin County",America/New_York,207,NA,US,44.11,-70.1,6210 +04281,STANDARD,0,"South Paris",,,ME,"Oxford County",America/New_York,207,NA,US,44.21,-70.51,4020 +04282,STANDARD,0,Turner,,,ME,"Androscoggin County",America/New_York,207,NA,US,44.25,-70.25,5190 +04284,STANDARD,0,Wayne,,,ME,"Kennebec County",America/New_York,207,NA,US,44.34,-70.06,1080 +04285,STANDARD,0,Weld,,,ME,"Franklin County",America/New_York,207,NA,US,44.69,-70.42,330 +04286,"PO BOX",0,"West Bethel",,,ME,"Oxford County",America/New_York,207,NA,US,44.4,-70.87,111 +04287,STANDARD,0,Bowdoin,"W Bowdoin","West Bowdoin",ME,"Sagadahoc County",America/New_York,207,NA,US,44.04,-70.02,2770 +04288,"PO BOX",0,"West Minot",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.17,-70.33,50 +04289,STANDARD,0,"West Paris",,,ME,"Oxford County",America/New_York,207,NA,US,44.32,-70.57,1550 +04290,STANDARD,0,Peru,,"West Peru",ME,"Oxford County",America/New_York,207,NA,US,44.5,-70.4,1280 +04291,"PO BOX",0,"West Poland",,,ME,"Androscoggin County",America/New_York,207,NA,US,44.05,-70.45,226 +04292,STANDARD,0,Sumner,,,ME,"Oxford County",America/New_York,207,NA,US,44.39,-70.43,800 +04294,STANDARD,0,Wilton,"Perkins Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.59,-70.23,3030 +04330,STANDARD,0,Augusta,"Chelsea, Sidney",Togus,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,21200 +04332,"PO BOX",0,Augusta,,,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,964 +04333,UNIQUE,0,Augusta,,"Me State Agencies",ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,637 +04336,UNIQUE,0,Augusta,,"Central Me Power Co",ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,0 +04338,"PO BOX",0,Augusta,,,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.72,228 +04341,"PO BOX",0,"Coopers Mills",,,ME,"Lincoln County",America/New_York,207,NA,US,44.27,-69.49,320 +04342,STANDARD,0,Dresden,,,ME,"Lincoln County",America/New_York,207,NA,US,44.1,-69.72,1480 +04343,"PO BOX",0,"East Winthrop",,,ME,"Kennebec County",America/New_York,207,NA,US,44.33,-69.89,354 +04344,STANDARD,0,Farmingdale,,,ME,"Kennebec County",America/New_York,207,NA,US,44.25,-69.78,2610 +04345,STANDARD,0,Gardiner,"Pittston, West Gardiner",,ME,"Kennebec County",America/New_York,207,NA,US,44.19,-69.78,10380 +04346,STANDARD,0,Randolph,,,ME,"Kennebec County",America/New_York,207,NA,US,44.23,-69.75,1470 +04347,STANDARD,0,Hallowell,,,ME,"Kennebec County",America/New_York,207,NA,US,44.29,-69.81,2290 +04348,STANDARD,0,Jefferson,Somerville,,ME,"Lincoln County",America/New_York,207,NA,US,44.2,-69.45,2770 +04349,STANDARD,0,"Kents Hill",Fayette,,ME,"Kennebec County",America/New_York,207,NA,US,44.43,-70.07,1220 +04350,STANDARD,0,Litchfield,,,ME,"Kennebec County",America/New_York,207,NA,US,44.13,-69.96,3160 +04351,STANDARD,0,Manchester,,,ME,"Kennebec County",America/New_York,207,NA,US,44.32,-69.86,2490 +04352,STANDARD,0,"Mount Vernon",,"Mt Vernon",ME,"Kennebec County",America/New_York,207,NA,US,44.5,-69.98,1520 +04353,STANDARD,0,Whitefield,,,ME,"Lincoln County",America/New_York,207,NA,US,44.17,-69.62,2050 +04354,STANDARD,0,Palermo,,,ME,"Waldo County",America/New_York,207,NA,US,44.4,-69.47,1410 +04355,STANDARD,0,Readfield,,,ME,"Kennebec County",America/New_York,207,NA,US,44.38,-69.96,2400 +04357,STANDARD,0,Richmond,,,ME,"Sagadahoc County",America/New_York,207,NA,US,44.12,-69.83,3080 +04358,STANDARD,0,"South China","China, Weeks Mills",,ME,"Kennebec County",America/New_York,207,NA,US,44.39,-69.58,3670 +04359,"PO BOX",0,"South Gardiner","S Gardiner",,ME,"Kennebec County",America/New_York,207,NA,US,44.18,-69.76,538 +04360,STANDARD,0,Vienna,,,ME,"Kennebec County",America/New_York,207,NA,US,44.53,-69.98,530 +04363,STANDARD,0,Windsor,,,ME,"Kennebec County",America/New_York,207,NA,US,44.31,-69.58,2420 +04364,STANDARD,0,Winthrop,,,ME,"Kennebec County",America/New_York,207,NA,US,44.31,-69.96,5310 +04401,STANDARD,0,Bangor,"Glenburn, Hermon, Veazie",,ME,"Penobscot County",America/New_York,207,NA,US,44.83,-68.78,35140 +04402,"PO BOX",0,Bangor,,,ME,"Penobscot County",America/New_York,207,NA,US,44.83,-68.78,1831 +04406,STANDARD,0,Abbot,"Blanchard Twp",,ME,"Piscataquis County",America/New_York,207,NA,US,45.18,-69.45,570 +04408,STANDARD,0,Aurora,"Great Pond",,ME,"Hancock County",America/New_York,207,NA,US,44.85,-68.32,197 +04410,STANDARD,0,Bradford,,,ME,"Penobscot County",America/New_York,207,NA,US,45.06,-68.93,980 +04411,STANDARD,0,Bradley,,,ME,"Penobscot County",America/New_York,207,NA,US,44.92,-68.62,1350 +04412,STANDARD,0,Brewer,,,ME,"Penobscot County",America/New_York,207,NA,US,44.77,-68.73,8490 +04413,STANDARD,0,Brookton,"Forest City Twp, Forest Twp, Frst City Twp",,ME,"Washington County",America/New_York,207,NA,US,45.52,-67.76,192 +04414,STANDARD,0,Brownville,"Barnard Twp, Ebeemee Twp, Wiliamsbg Twp, Williamsburg Twp",,ME,"Piscataquis County",America/New_York,207,NA,US,45.3,-69.03,1010 +04415,"PO BOX",0,"Brownville Junction","Brownvlle Jct",,ME,"Piscataquis County",America/New_York,207,NA,US,45.4,-69.06,337 +04416,STANDARD,0,Bucksport,"Verona Island",,ME,"Hancock County",America/New_York,207,NA,US,44.6,-68.79,4760 +04417,STANDARD,0,Burlington,,,ME,"Penobscot County",America/New_York,207,NA,US,45.2,-68.42,300 +04418,STANDARD,0,Greenbush,"Cardville, Costigan, Greenfield Twp, Greenfld Twp, Olamon",,ME,"Penobscot County",America/New_York,207,NA,US,45.08,-68.59,1320 +04419,STANDARD,0,Carmel,,,ME,"Penobscot County",America/New_York,207,NA,US,44.79,-69.05,2650 +04420,UNIQUE,0,Castine,,"Maine Maritime Academy",ME,"Hancock County",America/New_York,207,NA,US,44.38,-68.8,14 +04421,STANDARD,0,Castine,,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.81,600 +04422,STANDARD,0,Charleston,,,ME,"Penobscot County",America/New_York,207,NA,US,45.08,-69.04,1010 +04424,STANDARD,0,Danforth,Weston,,ME,"Washington County",America/New_York,207,NA,US,45.66,-67.86,620 +04426,STANDARD,0,"Dover Foxcroft","Atkinson, Bowerbank, Dovr Foxcroft, Dvr Foxcroft, Sebec",,ME,"Piscataquis County",America/New_York,207,NA,US,45.21,-69.18,3860 +04427,STANDARD,0,Corinth,,"East Corinth",ME,"Penobscot County",America/New_York,207,NA,US,44.98,-69.01,2580 +04428,STANDARD,0,Eddington,Clifton,,ME,"Penobscot County",America/New_York,207,NA,US,44.82,-68.69,2670 +04429,STANDARD,0,Holden,"Dedham, East Holden",,ME,"Penobscot County",America/New_York,207,NA,US,44.75,-68.67,4620 +04430,STANDARD,0,"East Millinocket","E Millinocket",,ME,"Penobscot County",America/New_York,207,NA,US,45.62,-68.57,1200 +04431,"PO BOX",0,"East Orland",,,ME,"Hancock County",America/New_York,207,NA,US,44.56,-68.67,342 +04434,STANDARD,0,Etna,,,ME,"Penobscot County",America/New_York,207,NA,US,44.82,-69.11,1110 +04435,STANDARD,0,Exeter,,,ME,"Penobscot County",America/New_York,207,NA,US,44.97,-69.14,760 +04438,STANDARD,0,Frankfort,,,ME,"Waldo County",America/New_York,207,NA,US,44.6,-68.87,1010 +04441,STANDARD,0,Greenville,"Beaver Cove, Frenchtown Twp, Frenchtwn Twp, Lily Bay Twp, Shirley",,ME,"Piscataquis County",America/New_York,207,NA,US,45.46,-69.59,1210 +04442,STANDARD,0,"Greenville Junction","Greenvlle Jct",,ME,"Piscataquis County",America/New_York,207,NA,US,45.47,-69.69,509 +04443,STANDARD,0,Guilford,"Eliotsvle Twp, Elliottsville Twp, Parkman, Willimantic",,ME,"Piscataquis County",America/New_York,207,NA,US,45.23,-69.35,1820 +04444,STANDARD,0,Hampden,Newburgh,,ME,"Penobscot County",America/New_York,207,NA,US,44.73,-68.95,8800 +04448,STANDARD,0,Howland,"Edinburg, Seboeis Plt",,ME,"Penobscot County",America/New_York,207,NA,US,45.25,-68.66,1040 +04449,STANDARD,0,Hudson,,,ME,"Penobscot County",America/New_York,207,NA,US,45,-68.88,1170 +04450,STANDARD,0,Kenduskeag,,,ME,"Penobscot County",America/New_York,207,NA,US,44.91,-68.93,1190 +04451,STANDARD,0,Kingman,"Kingman Twp, Macwahoc Plt",,ME,"Penobscot County",America/New_York,207,NA,US,45.54,-68.2,256 +04453,STANDARD,0,Lagrange,Maxfield,,ME,"Penobscot County",America/New_York,207,NA,US,45.16,-68.84,570 +04454,"PO BOX",0,"Lambert Lake",,,ME,"Washington County",America/New_York,207,NA,US,45.54,-67.52,66 +04455,STANDARD,0,Lee,,,ME,"Penobscot County",America/New_York,207,NA,US,45.36,-68.28,750 +04456,STANDARD,0,Levant,,,ME,"Penobscot County",America/New_York,207,NA,US,44.86,-68.93,2640 +04457,STANDARD,0,Lincoln,"Chester, Lincoln Center, Lincoln Ctr, Mattamisc Twp, Mattamiscontis Twp, Woodville",,ME,"Penobscot County",America/New_York,207,NA,US,45.36,-68.5,4710 +04459,STANDARD,0,Mattawamkeag,"Molunkus Twp",,ME,"Penobscot County",America/New_York,207,NA,US,45.51,-68.35,530 +04460,STANDARD,0,Medway,"Grindstone, Grindstone Twp, Soldiertown, Soldiertown Twp",,ME,"Penobscot County",America/New_York,207,NA,US,45.6,-68.53,1010 +04461,STANDARD,0,Milford,,,ME,"Penobscot County",America/New_York,207,NA,US,44.94,-68.64,2590 +04462,STANDARD,0,Millinocket,"Cedar Lake, Cedar Lake Twp, Indian Purch, Indian Purchase Twp, Long A Twp",,ME,"Penobscot County",America/New_York,207,NA,US,45.65,-68.69,3400 +04463,STANDARD,0,Milo,"Derby, Lake View Plt, Medford, Orneville Twp",,ME,"Piscataquis County",America/New_York,207,NA,US,45.25,-68.98,2130 +04464,STANDARD,0,Monson,,,ME,"Piscataquis County",America/New_York,207,NA,US,45.28,-69.5,510 +04467,"PO BOX",1,Olamon,,,ME,"Penobscot County",America/New_York,207,NA,US,45.12,-68.61,0 +04468,STANDARD,0,"Old Town","Alton, Argyle Twp, Indian Island",,ME,"Penobscot County",America/New_York,207,NA,US,44.95,-68.73,6890 +04469,UNIQUE,0,Orono,,"University Of Maine",ME,"Penobscot County",America/New_York,207,NA,US,44.9,-68.67,100 +04471,STANDARD,0,Orient,"Amity, Cary Plt","North Amity",ME,"Aroostook County",America/New_York,207,NA,US,45.81,-67.84,400 +04472,STANDARD,0,Orland,,,ME,"Hancock County",America/New_York,207,NA,US,44.57,-68.73,1740 +04473,STANDARD,0,Orono,,,ME,"Penobscot County",America/New_York,207,NA,US,44.88,-68.68,4290 +04474,STANDARD,0,Orrington,,,ME,"Penobscot County",America/New_York,207,NA,US,44.73,-68.82,3530 +04475,STANDARD,0,Passadumkeag,,,ME,"Penobscot County",America/New_York,207,NA,US,45.18,-68.61,280 +04476,STANDARD,0,Penobscot,,,ME,"Hancock County",America/New_York,207,NA,US,44.46,-68.71,950 +04478,STANDARD,0,Rockwood,"Little W Twp, Pittstn Acdmy, Pittston Academy Grant Twp, Plymouth Twp, Seboomook Twp, Tomhegan Twp",,ME,"Somerset County",America/New_York,207,NA,US,45.67,-69.74,240 +04479,STANDARD,0,Sangerville,,,ME,"Piscataquis County",America/New_York,207,NA,US,45.16,-69.35,1010 +04481,STANDARD,0,Sebec,Brownville,,ME,"Piscataquis County",America/New_York,207,NA,US,45.27,-69.11,510 +04485,"PO BOX",0,"Shirley Mills",Greenville,Shirley,ME,"Piscataquis County",America/New_York,207,NA,US,45.35,-69.63,124 +04487,STANDARD,0,Springfield,"Carroll Plt, Lakeville, Prentiss Twp, Webster Plt",,ME,"Penobscot County",America/New_York,207,NA,US,45.39,-68.13,530 +04488,STANDARD,0,Stetson,,,ME,"Penobscot County",America/New_York,207,NA,US,44.89,-69.14,1010 +04489,"PO BOX",0,Stillwater,,,ME,"Penobscot County",America/New_York,207,NA,US,44.91,-68.69,468 +04490,STANDARD,0,Topsfield,"Codyville Plt, Waite",,ME,"Washington County",America/New_York,207,NA,US,45.41,-67.73,210 +04491,"PO BOX",0,Vanceboro,,,ME,"Washington County",America/New_York,207,NA,US,45.56,-67.43,176 +04492,STANDARD,0,Waite,Talmadge,,ME,"Washington County",America/New_York,207,NA,US,45.32,-67.69,141 +04493,STANDARD,0,"West Enfield","Enfield, Lowell",,ME,"Penobscot County",America/New_York,207,NA,US,45.26,-68.58,1580 +04495,STANDARD,0,Winn,,,ME,"Penobscot County",America/New_York,207,NA,US,45.48,-68.37,280 +04496,STANDARD,0,Winterport,,,ME,"Waldo County",America/New_York,207,NA,US,44.65,-68.85,3410 +04497,STANDARD,0,Wytopitlock,"Bancroft, Drew Plt, Glenwood Plt, Haynesville, Reed Plt",,ME,"Aroostook County",America/New_York,207,NA,US,45.64,-68.07,210 +04530,STANDARD,0,Bath,"Arrowsic, West Bath",,ME,"Sagadahoc County",America/New_York,207,NA,US,43.93,-69.83,9740 +04535,STANDARD,0,Alna,,,ME,"Lincoln County",America/New_York,207,NA,US,44.1,-69.6,720 +04537,STANDARD,0,Boothbay,,,ME,"Lincoln County",America/New_York,207,NA,US,43.88,-69.62,1890 +04538,STANDARD,0,"Boothbay Harbor","Boothbay Hbr, Capitol Is, Capitol Island",,ME,"Lincoln County",America/New_York,207,NA,US,43.85,-69.62,1570 +04539,STANDARD,0,Bristol,,,ME,"Lincoln County",America/New_York,207,NA,US,43.95,-69.5,1100 +04541,STANDARD,0,Chamberlain,,,ME,"Lincoln County",America/New_York,207,NA,US,43.88,-69.49,75 +04543,STANDARD,0,Damariscotta,,,ME,"Lincoln County",America/New_York,207,NA,US,44.03,-69.51,2050 +04544,STANDARD,0,"East Boothbay",,,ME,"Lincoln County",America/New_York,207,NA,US,43.82,-69.59,650 +04547,STANDARD,0,Friendship,,,ME,"Knox County",America/New_York,207,NA,US,43.98,-69.33,1030 +04548,STANDARD,0,Georgetown,"Mac Mahan","Five Islands",ME,"Sagadahoc County",America/New_York,207,NA,US,43.8,-69.74,910 +04549,STANDARD,0,"Isle Of Springs","Boothbay, Is Of Springs",,ME,"Lincoln County",America/New_York,207,NA,US,43.89,-69.62,0 +04551,STANDARD,0,Bremen,Medomak,,ME,"Lincoln County",America/New_York,207,NA,US,44,-69.42,700 +04553,STANDARD,0,Newcastle,,,ME,"Lincoln County",America/New_York,207,NA,US,44.05,-69.57,1890 +04554,STANDARD,0,"New Harbor",,,ME,"Lincoln County",America/New_York,207,NA,US,43.85,-69.5,620 +04555,STANDARD,0,Nobleboro,,,ME,"Lincoln County",America/New_York,207,NA,US,44.07,-69.48,1640 +04556,STANDARD,0,Edgecomb,,,ME,"Lincoln County",America/New_York,207,NA,US,43.95,-69.63,1130 +04558,STANDARD,0,Pemaquid,"New Harbor",,ME,"Lincoln County",America/New_York,207,NA,US,43.89,-69.52,240 +04562,STANDARD,0,Phippsburg,,,ME,"Sagadahoc County",America/New_York,207,NA,US,43.82,-69.81,1830 +04563,STANDARD,0,Cushing,,,ME,"Knox County",America/New_York,207,NA,US,44.01,-69.24,1270 +04564,STANDARD,0,"Round Pond",,,ME,"Lincoln County",America/New_York,207,NA,US,43.91,-69.46,440 +04565,"PO BOX",0,"Sebasco Estates","Sebasco Ests",,ME,"Sagadahoc County",America/New_York,207,NA,US,43.77,-69.84,162 +04568,STANDARD,0,"South Bristol",,,ME,"Lincoln County",America/New_York,207,NA,US,43.86,-69.56,330 +04570,"PO BOX",0,"Squirrel Island","Boothbay Harbor, Boothbay Hbr, Squirrel Is",,ME,"Lincoln County",America/New_York,207,NA,US,43.81,-69.63,0 +04571,STANDARD,0,Trevett,,,ME,"Lincoln County",America/New_York,207,NA,US,43.89,-69.67,250 +04572,STANDARD,0,Waldoboro,,,ME,"Lincoln County",America/New_York,207,NA,US,44.09,-69.38,4400 +04573,STANDARD,0,Walpole,,,ME,"Lincoln County",America/New_York,207,NA,US,43.94,-69.55,480 +04574,STANDARD,0,Washington,,,ME,"Knox County",America/New_York,207,NA,US,44.27,-69.36,1340 +04575,"PO BOX",0,"West Boothbay Harbor","W Boothbay Ha, W Boothbay Harbor, W Boothby Hbr",,ME,"Lincoln County",America/New_York,207,NA,US,43.85,-69.65,260 +04576,STANDARD,0,Southport,Newagen,,ME,"Lincoln County",America/New_York,207,NA,US,43.81,-69.66,540 +04578,STANDARD,0,Wiscasset,"Westport Is, Westport Island",,ME,"Lincoln County",America/New_York,207,NA,US,44.01,-69.67,3920 +04579,STANDARD,0,Woolwich,,,ME,"Sagadahoc County",America/New_York,207,NA,US,43.96,-69.78,2940 +04605,STANDARD,0,Ellsworth,"Amherst, Fletchers Landing Twp, Fletchers Ldg, Lamoine, Mariaville, Osborn, Otis, Trenton, Waltham",,ME,"Hancock County",America/New_York,207,NA,US,44.58,-68.49,12070 +04606,STANDARD,0,Addison,,,ME,"Washington County",America/New_York,207,NA,US,44.54,-67.71,950 +04607,STANDARD,0,Gouldsboro,"S Gouldsboro, South Gouldsboro",,ME,"Hancock County",America/New_York,207,NA,US,44.47,-68.03,980 +04609,STANDARD,0,"Bar Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.38,-68.21,4230 +04611,"PO BOX",0,Beals,,,ME,"Washington County",America/New_York,207,NA,US,44.48,-67.58,585 +04612,STANDARD,0,Bernard,"West Tremont",,ME,"Hancock County",America/New_York,207,NA,US,44.24,-68.35,420 +04613,STANDARD,0,"Birch Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.38,-68.04,200 +04614,STANDARD,0,"Blue Hill",,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.58,2560 +04616,STANDARD,0,Brooklin,,,ME,"Hancock County",America/New_York,207,NA,US,44.26,-68.56,740 +04617,STANDARD,0,Brooksville,,,ME,"Hancock County",America/New_York,207,NA,US,44.35,-68.76,660 +04619,STANDARD,0,Calais,,,ME,"Washington County",America/New_York,207,NA,US,45.13,-67.2,2540 +04622,STANDARD,0,Cherryfield,"Beddington, Deblois",,ME,"Washington County",America/New_York,207,NA,US,44.6,-67.92,970 +04623,STANDARD,0,"Columbia Falls","Centerville, Columbia, Columbia Fls",,ME,"Washington County",America/New_York,207,NA,US,44.65,-67.72,780 +04624,STANDARD,0,Corea,,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-67.99,159 +04625,"PO BOX",0,"Cranberry Isles","Cranberry Is",,ME,"Hancock County",America/New_York,207,NA,US,44.24,-68.26,49 +04626,STANDARD,0,Cutler,,,ME,"Washington County",America/New_York,207,NA,US,44.69,-67.21,430 +04627,STANDARD,0,"Deer Isle",,,ME,"Hancock County",America/New_York,207,NA,US,44.22,-68.67,1410 +04628,STANDARD,0,Dennysville,"Edmunds Twp, Marion Twp",,ME,"Washington County",America/New_York,207,NA,US,44.9,-67.22,520 +04629,"PO BOX",0,"East Blue Hill","E Blue Hill, Surry",,ME,"Hancock County",America/New_York,207,NA,US,44.42,-68.51,56 +04630,STANDARD,0,"East Machias",,,ME,"Washington County",America/New_York,207,NA,US,44.73,-67.39,1230 +04631,STANDARD,0,Eastport,,,ME,"Washington County",America/New_York,207,NA,US,44.91,-67.01,960 +04634,STANDARD,0,Franklin,Eastbrook,,ME,"Hancock County",America/New_York,207,NA,US,44.58,-68.23,1590 +04635,"PO BOX",0,Frenchboro,,,ME,"Hancock County",America/New_York,207,NA,US,44.11,-68.36,64 +04637,"PO BOX",0,"Grand Lake Stream","Grand Lk Strm",,ME,"Washington County",America/New_York,207,NA,US,45.17,-67.77,136 +04640,STANDARD,0,Hancock,,,ME,"Hancock County",America/New_York,207,NA,US,44.52,-68.25,2040 +04642,STANDARD,0,Harborside,,,ME,"Hancock County",America/New_York,207,NA,US,44.33,-68.81,143 +04643,STANDARD,0,Harrington,,,ME,"Washington County",America/New_York,207,NA,US,44.61,-67.81,850 +04644,"PO BOX",0,"Hulls Cove",,,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.25,330 +04645,"PO BOX",0,"Isle Au Haut",Stonington,,ME,"Knox County",America/New_York,207,NA,US,44.04,-68.62,65 +04646,"PO BOX",0,Islesford,,,ME,"Hancock County",America/New_York,207,NA,US,44.25,-68.22,92 +04648,STANDARD,0,Jonesboro,,,ME,"Washington County",America/New_York,207,NA,US,44.66,-67.57,510 +04649,STANDARD,0,Jonesport,,,ME,"Washington County",America/New_York,207,NA,US,44.53,-67.59,1000 +04650,STANDARD,0,"Little Deer Isle","Ltl Deer Is",,ME,"Hancock County",America/New_York,207,NA,US,44.28,-68.71,240 +04652,STANDARD,0,Lubec,"Trescott Twp",,ME,"Washington County",America/New_York,207,NA,US,44.79,-67.11,1230 +04653,STANDARD,0,"Bass Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.21,-68.33,480 +04654,STANDARD,0,Machias,"Day Block Twp, Marshfield, Northfield, Roque Bluffs, Whitneyville",,ME,"Washington County",America/New_York,207,NA,US,44.7,-67.47,2470 +04655,STANDARD,0,Machiasport,"Bucks Harbor",,ME,"Washington County",America/New_York,207,NA,US,44.69,-67.39,760 +04657,STANDARD,0,Meddybemps,"Cathance Twp, Cooper",,ME,"Washington County",America/New_York,207,NA,US,45.03,-67.35,250 +04658,STANDARD,0,Milbridge,,,ME,"Washington County",America/New_York,207,NA,US,44.52,-67.88,1170 +04660,STANDARD,0,"Mount Desert","Otter Creek",,ME,"Hancock County",America/New_York,207,NA,US,44.34,-68.35,1350 +04662,"PO BOX",0,"Northeast Harbor","Ne Harbor",,ME,"Hancock County",America/New_York,207,NA,US,44.3,-68.29,518 +04664,STANDARD,0,Sullivan,"N Sullivan, North Sullivan",,ME,"Hancock County",America/New_York,207,NA,US,44.53,-68.15,1020 +04666,STANDARD,0,Pembroke,Charlotte,,ME,"Washington County",America/New_York,207,NA,US,44.95,-67.16,930 +04667,STANDARD,0,Perry,"Pleasant Point, Pleasant Pt",,ME,"Washington County",America/New_York,207,NA,US,44.97,-67.07,1180 +04668,STANDARD,0,Princeton,"Big Lake Twp, Grand Lake Stream, Grand Lk Strm, Greenlaw Chop, Greenlaw Chopping Twp, Indian Twp",,ME,"Washington County",America/New_York,207,NA,US,45.22,-67.57,1350 +04669,STANDARD,0,"Prospect Harbor","Prospect Hbr",,ME,"Hancock County",America/New_York,207,NA,US,44.41,-68.02,280 +04671,STANDARD,0,Robbinston,,,ME,"Washington County",America/New_York,207,NA,US,45.06,-67.16,510 +04672,"PO BOX",0,"Salsbury Cove",,,ME,"Hancock County",America/New_York,207,NA,US,44.43,-68.32,159 +04673,STANDARD,0,Sargentville,,,ME,"Hancock County",America/New_York,207,NA,US,44.31,-68.68,107 +04674,STANDARD,0,"Seal Cove",,,ME,"Hancock County",America/New_York,207,NA,US,44.3,-68.41,340 +04675,"PO BOX",0,"Seal Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.29,-68.24,276 +04676,STANDARD,0,Sedgwick,,,ME,"Hancock County",America/New_York,207,NA,US,44.35,-68.63,790 +04677,STANDARD,0,Sorrento,,,ME,"Hancock County",America/New_York,207,NA,US,44.49,-68.18,240 +04679,STANDARD,0,"Southwest Harbor","Southwest Hbr",,ME,"Hancock County",America/New_York,207,NA,US,44.27,-68.33,1670 +04680,STANDARD,0,Steuben,,,ME,"Washington County",America/New_York,207,NA,US,44.51,-67.96,990 +04681,STANDARD,0,Stonington,,,ME,"Hancock County",America/New_York,207,NA,US,44.18,-68.67,960 +04683,STANDARD,0,Sunset,,,ME,"Hancock County",America/New_York,207,NA,US,44.25,-68.79,132 +04684,STANDARD,0,Surry,,,ME,"Hancock County",America/New_York,207,NA,US,44.49,-68.5,1430 +04685,STANDARD,0,"Swans Island",Minturn,,ME,"Hancock County",America/New_York,207,NA,US,44.14,-68.45,330 +04686,STANDARD,0,Wesley,Machias,,ME,"Washington County",America/New_York,207,NA,US,44.95,-67.66,108 +04691,STANDARD,0,Whiting,,,ME,"Washington County",America/New_York,207,NA,US,44.76,-67.26,350 +04693,STANDARD,0,"Winter Harbor",,,ME,"Hancock County",America/New_York,207,NA,US,44.39,-68.08,420 +04694,STANDARD,0,Baileyville,"Alexander, Baring Plt, Crawford, Woodland Washington County",,ME,"Washington County",America/New_York,207,NA,US,45.09,-67.46,1910 +04730,STANDARD,0,Houlton,"Hammond, Hodgdon, Linneus, Littleton, Ludlow",,ME,"Aroostook County",America/New_York,207,NA,US,46.11,-67.83,8050 +04732,STANDARD,0,Ashland,"Garfield Plt, Masardis, Nashville Plt, Sheridan",,ME,"Aroostook County",America/New_York,207,NA,US,46.63,-68.4,1320 +04733,STANDARD,0,Benedicta,,,ME,"Aroostook County",America/New_York,207,NA,US,45.8,-68.41,210 +04734,"PO BOX",0,Blaine,,,ME,"Aroostook County",America/New_York,207,NA,US,46.5,-67.86,530 +04735,STANDARD,0,Bridgewater,,,ME,"Aroostook County",America/New_York,207,NA,US,46.42,-67.84,430 +04736,STANDARD,0,Caribou,"Connor Twp, Woodland",,ME,"Aroostook County",America/New_York,207,NA,US,46.86,-67.99,7460 +04737,"PO BOX",0,"Clayton Lake",,,ME,"Aroostook County",America/New_York,207,NA,US,46.61,-69.52,0 +04738,"PO BOX",0,Crouseville,,,ME,"Aroostook County",America/New_York,207,NA,US,46.76,-68.08,148 +04739,STANDARD,0,"Eagle Lake","Quimby, Winterville Plt, Wntervlle Plt",,ME,"Aroostook County",America/New_York,207,NA,US,47.04,-68.59,700 +04740,STANDARD,0,Easton,,,ME,"Aroostook County",America/New_York,207,NA,US,46.64,-67.91,1070 +04741,"PO BOX",0,"Estcourt Station","Estcourt Sta",,ME,"Aroostook County",America/New_York,207,NA,US,47.45,-69.22,0 +04742,STANDARD,0,"Fort Fairfield","Ft Fairfield",,ME,"Aroostook County",America/New_York,207,NA,US,46.76,-67.83,2700 +04743,STANDARD,0,"Fort Kent","New Canada, St John Plt",,ME,"Aroostook County",America/New_York,207,NA,US,47.26,-68.57,3650 +04744,"PO BOX",0,"Fort Kent Mills","Ft Kent Mls",,ME,"Aroostook County",America/New_York,207,NA,US,47.23,-68.58,351 +04745,STANDARD,0,Frenchville,"Upper Frenchville, Upper Frnchvl",,ME,"Aroostook County",America/New_York,207,NA,US,47.28,-68.38,880 +04746,STANDARD,0,"Grand Isle",Lille,,ME,"Aroostook County",America/New_York,207,NA,US,47.3,-68.15,280 +04747,STANDARD,0,"Island Falls","Crystal, Dyer Brook",,ME,"Aroostook County",America/New_York,207,NA,US,46,-68.27,980 +04750,STANDARD,0,Limestone,"Caswell, Loring Cm Ctr",,ME,"Aroostook County",America/New_York,207,NA,US,46.91,-67.83,1440 +04751,UNIQUE,0,Limestone,,"Defense Finance Accounting",ME,"Aroostook County",America/New_York,207,NA,US,46.91,-67.83,0 +04756,STANDARD,0,Madawaska,,,ME,"Aroostook County",America/New_York,207,NA,US,47.34,-68.33,2480 +04757,STANDARD,0,Mapleton,"Castle Hill, Chapman",,ME,"Aroostook County",America/New_York,207,NA,US,46.68,-68.16,2410 +04758,STANDARD,0,"Mars Hill",,,ME,"Aroostook County",America/New_York,207,NA,US,46.51,-67.86,1380 +04760,STANDARD,0,Monticello,,,ME,"Aroostook County",America/New_York,207,NA,US,46.3,-67.84,590 +04761,STANDARD,0,"New Limerick",Houlton,,ME,"Aroostook County",America/New_York,207,NA,US,46.1,-67.96,480 +04762,STANDARD,0,"New Sweden",,,ME,"Aroostook County",America/New_York,207,NA,US,46.94,-68.12,450 +04763,STANDARD,0,Oakfield,,,ME,"Aroostook County",America/New_York,207,NA,US,46.09,-68.15,600 +04764,STANDARD,0,Oxbow,,,ME,"Aroostook County",America/New_York,207,NA,US,46.41,-68.49,56 +04765,STANDARD,0,Patten,"Mount Chase",,ME,"Penobscot County",America/New_York,207,NA,US,45.99,-68.44,870 +04766,STANDARD,0,Perham,,,ME,"Aroostook County",America/New_York,207,NA,US,46.84,-68.19,340 +04768,STANDARD,0,Portage,"Portage Lake",,ME,"Aroostook County",America/New_York,207,NA,US,46.76,-68.47,300 +04769,STANDARD,0,"Presque Isle",,,ME,"Aroostook County",America/New_York,207,NA,US,46.68,-67.98,7490 +04772,STANDARD,0,"Saint Agatha",,,ME,"Aroostook County",America/New_York,207,NA,US,47.24,-68.31,570 +04773,STANDARD,0,"Saint David",,,ME,"Aroostook County",America/New_York,207,NA,US,47.31,-68.22,580 +04774,STANDARD,0,"Saint Francis",Allagash,,ME,"Aroostook County",America/New_York,207,NA,US,47.17,-68.89,440 +04775,"PO BOX",0,Sheridan,,,ME,"Aroostook County",America/New_York,207,NA,US,46.66,-68.41,32 +04776,STANDARD,0,Sherman,"Sherman Mills, Silver Ridge, Silver Ridge Twp",,ME,"Aroostook County",America/New_York,207,NA,US,45.81,-68.31,670 +04777,STANDARD,0,Stacyville,"Herseytown Twp, Hrsytown Twp, Sherman Sta, Sherman Station",,ME,"Penobscot County",America/New_York,207,NA,US,45.89,-68.43,260 +04779,STANDARD,0,Sinclair,"Cross Lake Twp, Cross Lke Twp",,ME,"Aroostook County",America/New_York,207,NA,US,47.16,-68.3,310 +04780,STANDARD,0,"Smyrna Mills","Hersey, Merrill, Moro Plt",,ME,"Aroostook County",America/New_York,207,NA,US,46.24,-68.29,560 +04781,STANDARD,0,Wallagrass,,"Soldier Pond",ME,"Aroostook County",America/New_York,207,NA,US,47.15,-68.57,450 +04783,STANDARD,0,Stockholm,Westmanland,,ME,"Aroostook County",America/New_York,207,NA,US,47.04,-68.14,370 +04785,STANDARD,0,"Van Buren","Cyr Plt, Hamlin",,ME,"Aroostook County",America/New_York,207,NA,US,47.16,-67.95,1600 +04786,STANDARD,0,Washburn,Wade,,ME,"Aroostook County",America/New_York,207,NA,US,46.79,-68.15,1380 +04787,STANDARD,0,Westfield,,,ME,"Aroostook County",America/New_York,207,NA,US,46.57,-67.92,350 +04841,STANDARD,0,Rockland,,,ME,"Knox County",America/New_York,207,NA,US,44.12,-69.13,5830 +04843,STANDARD,0,Camden,,,ME,"Knox County",America/New_York,207,NA,US,44.2,-69.06,4570 +04846,"PO BOX",1,"Glen Cove",,,ME,"Knox County",America/New_York,207,NA,US,44.11,-69.08,158 +04847,STANDARD,0,Hope,Camden,,ME,"Knox County",America/New_York,207,NA,US,44.26,-69.15,1490 +04848,STANDARD,0,Islesboro,,,ME,"Waldo County",America/New_York,207,NA,US,44.3,-68.9,480 +04849,STANDARD,0,Lincolnville,Northport,,ME,"Waldo County",America/New_York,207,NA,US,44.28,-69,3320 +04850,"PO BOX",0,"Lincolnville Center","Lincolnvl Ctr",,ME,"Waldo County",America/New_York,207,NA,US,44.3,-69.07,181 +04851,"PO BOX",0,Matinicus,,,ME,"Knox County",America/New_York,207,NA,US,43.86,-68.88,49 +04852,"PO BOX",0,Monhegan,,,ME,"Lincoln County",America/New_York,207,NA,US,43.76,-69.32,67 +04853,STANDARD,0,"North Haven",,,ME,"Knox County",America/New_York,207,NA,US,44.15,-68.86,380 +04854,STANDARD,0,"Owls Head",,,ME,"Knox County",America/New_York,207,NA,US,44.08,-69.05,1360 +04855,"PO BOX",0,"Port Clyde",,,ME,"Knox County",America/New_York,207,NA,US,43.93,-69.25,294 +04856,STANDARD,0,Rockport,,,ME,"Knox County",America/New_York,207,NA,US,44.18,-69.07,3420 +04858,STANDARD,0,"South Thomaston","S Thomaston",,ME,"Knox County",America/New_York,207,NA,US,44.05,-69.12,1340 +04859,STANDARD,0,"Spruce Head","Tenants Harbor, Tenants Hbr",,ME,"Knox County",America/New_York,207,NA,US,44.01,-69.17,610 +04860,STANDARD,0,"Tenants Harbor","Saint George, Tenants Hbr",,ME,"Knox County",America/New_York,207,NA,US,43.95,-69.23,1450 +04861,STANDARD,0,Thomaston,,,ME,"Knox County",America/New_York,207,NA,US,44.08,-69.18,2350 +04862,STANDARD,0,Union,Appleton,,ME,"Knox County",America/New_York,207,NA,US,44.21,-69.27,3350 +04863,STANDARD,0,Vinalhaven,,,ME,"Knox County",America/New_York,207,NA,US,44.04,-68.83,1080 +04864,STANDARD,0,Warren,,,ME,"Knox County",America/New_York,207,NA,US,44.12,-69.24,3540 +04865,"PO BOX",0,"West Rockport",,,ME,"Knox County",America/New_York,207,NA,US,44.19,-69.15,301 +04901,STANDARD,0,Waterville,"Benton, Winslow",,ME,"Kennebec County",America/New_York,207,NA,US,44.56,-69.55,19610 +04903,"PO BOX",0,Waterville,,,ME,"Kennebec County",America/New_York,207,NA,US,44.54,-69.66,1125 +04910,STANDARD,0,Albion,,,ME,"Kennebec County",America/New_York,207,NA,US,44.53,-69.44,1760 +04911,STANDARD,0,Anson,Starks,,ME,"Somerset County",America/New_York,207,NA,US,44.77,-69.97,1610 +04912,STANDARD,0,Athens,"Brighton Plt",,ME,"Somerset County",America/New_York,207,NA,US,44.92,-69.67,840 +04915,STANDARD,0,Belfast,"Swanville, Waldo",,ME,"Waldo County",America/New_York,207,NA,US,44.42,-69.02,7500 +04917,STANDARD,0,Belgrade,,,ME,"Kennebec County",America/New_York,207,NA,US,44.44,-69.83,2730 +04918,STANDARD,0,"Belgrade Lakes","Belgrade Lks",,ME,"Kennebec County",America/New_York,207,NA,US,44.52,-69.87,350 +04920,STANDARD,0,Bingham,"Concord Twp, Moscow, Pleasant Ridge Plt, Plsnt Rdg Plt",,ME,"Somerset County",America/New_York,207,NA,US,45.05,-69.87,1120 +04921,STANDARD,0,Brooks,Jackson,,ME,"Waldo County",America/New_York,207,NA,US,44.55,-69.12,1370 +04922,STANDARD,0,Burnham,,,ME,"Waldo County",America/New_York,207,NA,US,44.69,-69.42,910 +04923,STANDARD,0,Cambridge,,,ME,"Somerset County",America/New_York,207,NA,US,45.02,-69.47,340 +04924,STANDARD,0,Canaan,,,ME,"Somerset County",America/New_York,207,NA,US,44.76,-69.56,1770 +04925,STANDARD,0,Caratunk,,,ME,"Somerset County",America/New_York,207,NA,US,45.23,-69.99,71 +04926,"PO BOX",0,"China Village","China Vlg",,ME,"Kennebec County",America/New_York,207,NA,US,44.48,-69.51,498 +04927,STANDARD,0,Clinton,,,ME,"Kennebec County",America/New_York,207,NA,US,44.63,-69.5,2930 +04928,STANDARD,0,Corinna,,,ME,"Penobscot County",America/New_York,207,NA,US,44.92,-69.26,1810 +04929,STANDARD,0,Detroit,,,ME,"Somerset County",America/New_York,207,NA,US,44.79,-69.29,730 +04930,STANDARD,0,Dexter,Ripley,,ME,"Penobscot County",America/New_York,207,NA,US,45.01,-69.29,3310 +04932,STANDARD,0,Dixmont,,,ME,"Penobscot County",America/New_York,207,NA,US,44.68,-69.16,1080 +04933,"PO BOX",0,"East Newport",,,ME,"Penobscot County",America/New_York,207,NA,US,44.82,-69.23,118 +04935,"PO BOX",0,"East Vassalboro","E Vassalboro",,ME,"Kennebec County",America/New_York,207,NA,US,44.44,-69.6,136 +04936,STANDARD,0,Eustis,"Chain Of Pnds, Chain Of Ponds Twp, Coburn Gore, Jim Pond Twp",,ME,"Franklin County",America/New_York,207,NA,US,45.21,-70.47,220 +04937,STANDARD,0,Fairfield,,,ME,"Somerset County",America/New_York,207,NA,US,44.59,-69.6,5370 +04938,STANDARD,0,Farmington,"Chesterville, Industry",,ME,"Franklin County",America/New_York,207,NA,US,44.66,-70.14,6500 +04939,STANDARD,0,Garland,,,ME,"Penobscot County",America/New_York,207,NA,US,45.03,-69.16,860 +04940,STANDARD,0,"Farmington Falls","Farmingtn Fls",,ME,"Franklin County",America/New_York,207,NA,US,44.62,-70.08,284 +04941,STANDARD,0,Freedom,Montville,,ME,"Waldo County",America/New_York,207,NA,US,44.47,-69.29,1450 +04942,STANDARD,0,Harmony,"Kingsbury Plt, Mayfield Twp, Wellington",,ME,"Somerset County",America/New_York,207,NA,US,44.97,-69.54,840 +04943,STANDARD,0,Hartland,,,ME,"Somerset County",America/New_York,207,NA,US,44.88,-69.45,1470 +04944,"PO BOX",0,Hinckley,,,ME,"Somerset County",America/New_York,207,NA,US,44.69,-69.65,131 +04945,STANDARD,0,Jackman,"Dennistown, Jhnsn Mtn Twp, Johnson Mountain Twp, Long Pond Twp, Moose River, Parlin Pd Twp, Parlin Pond Twp, Sandy Bay Twp",,ME,"Somerset County",America/New_York,207,NA,US,45.62,-70.25,1040 +04947,STANDARD,0,Kingfield,"Carabaset Vly, Carrabassett Valley",,ME,"Franklin County",America/New_York,207,NA,US,44.95,-70.15,1530 +04949,STANDARD,0,Liberty,,,ME,"Waldo County",America/New_York,207,NA,US,44.38,-69.3,920 +04950,STANDARD,0,Madison,,,ME,"Somerset County",America/New_York,207,NA,US,44.79,-69.88,3610 +04951,STANDARD,0,Monroe,,,ME,"Waldo County",America/New_York,207,NA,US,44.61,-69.01,800 +04952,STANDARD,0,Morrill,Belmont,,ME,"Waldo County",America/New_York,207,NA,US,44.44,-69.14,1760 +04953,STANDARD,0,Newport,,,ME,"Penobscot County",America/New_York,207,NA,US,44.83,-69.26,2640 +04954,"PO BOX",0,"New Portland","N New Portlnd, North New Portland",,ME,"Somerset County",America/New_York,207,NA,US,44.88,-70.09,147 +04955,STANDARD,0,"New Sharon",,,ME,"Franklin County",America/New_York,207,NA,US,44.63,-70.01,1320 +04956,STANDARD,0,"New Vineyard",,,ME,"Franklin County",America/New_York,207,NA,US,44.8,-70.12,640 +04957,STANDARD,0,Norridgewock,Mercer,,ME,"Somerset County",America/New_York,207,NA,US,44.71,-69.79,3340 +04958,STANDARD,0,"North Anson",Embden,,ME,"Somerset County",America/New_York,207,NA,US,44.95,-69.94,1460 +04961,STANDARD,0,"New Portland","Carrying Place Town Twp, Caryng Pl Twp, Dead River Twp, Dead Rvr Twp, Highland Plt, Lexington Twp, N New Portland, N New Portlnd, North New Portland, Pierce Pond, Pierce Pond Twp",,ME,"Somerset County",America/New_York,207,NA,US,45.01,-70.08,760 +04962,"PO BOX",0,"North Vassalboro","N Vassalboro",,ME,"Kennebec County",America/New_York,207,NA,US,44.49,-69.63,392 +04963,STANDARD,0,Oakland,Rome,,ME,"Kennebec County",America/New_York,207,NA,US,44.55,-69.71,6390 +04964,"PO BOX",0,Oquossoc,"Adamstown Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.96,-70.77,268 +04965,STANDARD,0,Palmyra,,,ME,"Somerset County",America/New_York,207,NA,US,44.84,-69.35,1620 +04966,STANDARD,0,Phillips,"Avon, Madrid Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.82,-70.34,1250 +04967,STANDARD,0,Pittsfield,,,ME,"Somerset County",America/New_York,207,NA,US,44.77,-69.38,3340 +04969,STANDARD,0,Plymouth,,,ME,"Penobscot County",America/New_York,207,NA,US,44.76,-69.21,1140 +04970,STANDARD,0,Rangeley,"Coplin Plt, Dallas Plt, Lang Twp, Sandy River Plt, Sandy Rvr Plt",,ME,"Franklin County",America/New_York,207,NA,US,44.96,-70.64,1410 +04971,STANDARD,0,"Saint Albans",,,ME,"Somerset County",America/New_York,207,NA,US,44.91,-69.41,1650 +04972,"PO BOX",0,"Sandy Point",,,ME,"Waldo County",America/New_York,207,NA,US,44.52,-68.84,57 +04973,STANDARD,0,Searsmont,,,ME,"Waldo County",America/New_York,207,NA,US,44.36,-69.19,1230 +04974,STANDARD,0,Searsport,,,ME,"Waldo County",America/New_York,207,NA,US,44.46,-68.91,2340 +04975,"PO BOX",0,Shawmut,,,ME,"Somerset County",America/New_York,207,NA,US,44.63,-69.59,280 +04976,STANDARD,0,Skowhegan,Cornville,,ME,"Somerset County",America/New_York,207,NA,US,44.77,-69.71,7870 +04978,STANDARD,0,Smithfield,,,ME,"Somerset County",America/New_York,207,NA,US,44.63,-69.8,890 +04979,STANDARD,0,Solon,,,ME,"Somerset County",America/New_York,207,NA,US,44.94,-69.85,840 +04981,STANDARD,0,"Stockton Springs","Prospect, Stockton Spgs",,ME,"Waldo County",America/New_York,207,NA,US,44.48,-68.85,1890 +04982,STANDARD,0,Stratton,,,ME,"Franklin County",America/New_York,207,NA,US,45.14,-70.44,540 +04983,STANDARD,0,Strong,"Freeman Twp, Salem Twp",,ME,"Franklin County",America/New_York,207,NA,US,44.8,-70.22,1400 +04984,STANDARD,0,Temple,,,ME,"Franklin County",America/New_York,207,NA,US,44.68,-70.22,420 +04985,STANDARD,0,"West Forks","E Moxie Twp, East Moxie Twp, Indian Stream, Indian Stream Twp, Moxie Gore, Moxie Gore Twp, The Forks Plt",,ME,"Somerset County",America/New_York,207,NA,US,45.37,-69.93,116 +04986,STANDARD,0,Thorndike,Knox,,ME,"Waldo County",America/New_York,207,NA,US,44.57,-69.27,1330 +04987,STANDARD,0,Troy,,,ME,"Waldo County",America/New_York,207,NA,US,44.66,-69.24,860 +04988,STANDARD,0,Unity,,,ME,"Waldo County",America/New_York,207,NA,US,44.61,-69.33,1490 +04989,STANDARD,0,Vassalboro,,,ME,"Kennebec County",America/New_York,207,NA,US,44.45,-69.67,3790 +04992,"PO BOX",0,"West Farmington","W Farmington",,ME,"Franklin County",America/New_York,207,NA,US,44.66,-70.16,603 +05001,STANDARD,0,"White River Junction","White Riv Jct","Lyman, Russtown",VT,"Windsor County",America/New_York,802,NA,US,43.65,-72.32,6530 +05009,UNIQUE,0,"White River Junction","White Riv Jct","Veterans Administration",VT,"Windsor County",America/New_York,802,NA,US,43.65,-72.32,0 +05030,"PO BOX",0,Ascutney,,,VT,"Windsor County",America/New_York,802,NA,US,43.41,-72.42,792 +05031,"PO BOX",0,Barnard,,,VT,"Windsor County",America/New_York,802,NA,US,43.7,-72.59,418 +05032,STANDARD,0,Bethel,,"East Bethel, Lillieville, Olympus",VT,"Windsor County",America/New_York,802,NA,US,43.83,-72.63,2180 +05033,STANDARD,0,Bradford,,"Lower Plain, South Corinth",VT,"Orange County",America/New_York,802,NA,US,43.99,-72.12,2690 +05034,STANDARD,0,Bridgewater,,"Brgwtr, W Bridgewater, West Bridgewater",VT,"Windsor County",America/New_York,802,NA,US,43.58,-72.63,280 +05035,STANDARD,0,"Bridgewater Corners","Brdgewtr Cors, Bridgewtr Cor","Brgwtr Cors, Bridgewater Center, Bridgewater Corn, Bridgewtr Ct, W Bridgewater, West Bridgewater",VT,"Windsor County",America/New_York,802,NA,US,43.6,-72.68,510 +05036,STANDARD,0,Brookfield,,"Brookfield Center",VT,"Orange County",America/New_York,802,NA,US,44.05,-72.6,850 +05037,STANDARD,0,Brownsville,,,VT,"Windsor County",America/New_York,802,NA,US,43.45,-72.49,770 +05038,STANDARD,0,Chelsea,,,VT,"Orange County",America/New_York,802,NA,US,43.98,-72.47,1160 +05039,STANDARD,0,Corinth,,"Cookville, Corinth Center, Corinth Corners, Goose Green, West Corinth",VT,"Orange County",America/New_York,802,NA,US,44.02,-72.23,790 +05040,STANDARD,0,"East Corinth",,,VT,"Orange County",America/New_York,802,NA,US,44.09,-72.22,520 +05041,STANDARD,0,"East Randolph",,"East Brookfield, North Randolph",VT,"Orange County",America/New_York,802,NA,US,43.93,-72.55,240 +05042,STANDARD,0,"East Ryegate",Ryegate,"Mosquitoville, Ryegate Corner",VT,"Caledonia County",America/New_York,802,NA,US,44.19,-72.07,500 +05043,STANDARD,0,"East Thetford",,"E Thetford",VT,"Orange County",America/New_York,802,NA,US,43.81,-72.19,800 +05045,STANDARD,0,Fairlee,,"Ely, Lake Morey",VT,"Orange County",America/New_York,802,NA,US,43.91,-72.19,1310 +05046,STANDARD,0,Groton,,,VT,"Caledonia County",America/New_York,802,NA,US,44.22,-72.2,1080 +05047,"PO BOX",0,Hartford,,,VT,"Windsor County",America/New_York,802,NA,US,43.65,-72.32,778 +05048,STANDARD,0,Hartland,,,VT,"Windsor County",America/New_York,802,NA,US,43.55,-72.4,2280 +05049,"PO BOX",0,"Hartland Four Corners","Hartland Cors",,VT,"Windsor County",America/New_York,802,NA,US,43.54,-72.42,168 +05050,"PO BOX",0,"Mc Indoe Falls","Mc Indoe Fls, Mcindoe Falls",,VT,"Caledonia County",America/New_York,802,NA,US,44.26,-72.06,163 +05051,STANDARD,0,Newbury,,"South Newbury",VT,"Orange County",America/New_York,802,NA,US,44.08,-72.06,900 +05052,STANDARD,0,"North Hartland","N Hartland",,VT,"Windsor County",America/New_York,802,NA,US,43.59,-72.35,320 +05053,STANDARD,0,"North Pomfret",Pomfret,,VT,"Windsor County",America/New_York,802,NA,US,43.72,-72.49,290 +05054,"PO BOX",0,"North Thetford","N Thetford",,VT,"Orange County",America/New_York,802,NA,US,43.85,-72.26,145 +05055,STANDARD,0,Norwich,,,VT,"Windsor County",America/New_York,802,NA,US,43.72,-72.3,3410 +05056,STANDARD,0,Plymouth,,"Plymouth Kingdom, Plymouth Union",VT,"Windsor County",America/New_York,802,NA,US,43.53,-72.73,310 +05058,STANDARD,0,"Post Mills",,,VT,"Orange County",America/New_York,802,NA,US,43.89,-72.26,350 +05059,"PO BOX",0,Quechee,,,VT,"Windsor County",America/New_York,802,NA,US,43.64,-72.43,1420 +05060,STANDARD,0,Randolph,"Braintree, W Brookfield, West Brookfield","East Roxbury",VT,"Orange County",America/New_York,802,NA,US,43.92,-72.67,4130 +05061,STANDARD,0,"Randolph Center","Randolph Ctr",,VT,"Orange County",America/New_York,802,NA,US,43.93,-72.58,1220 +05062,STANDARD,0,Reading,,"Felchville, Hammondsville, Reading Center",VT,"Windsor County",America/New_York,802,NA,US,43.47,-72.55,630 +05065,STANDARD,0,Sharon,,,VT,"Windsor County",America/New_York,802,NA,US,43.78,-72.45,1080 +05067,STANDARD,0,"South Pomfret",Pomfret,,VT,"Windsor County",America/New_York,802,NA,US,43.68,-72.51,260 +05068,STANDARD,0,"South Royalton","Pomfret, S Royalton","East Barnard, Royalton",VT,"Windsor County",America/New_York,802,NA,US,43.82,-72.52,2610 +05069,STANDARD,0,"South Ryegate",,"Newbury Center, Swamp Rd",VT,"Caledonia County",America/New_York,,NA,US,44.2,-72.13,600 +05070,STANDARD,0,"South Strafford","S Strafford","So Strafford",VT,"Orange County",America/New_York,802,NA,US,43.83,-72.37,540 +05071,STANDARD,0,"South Woodstock","S Woodstock",,VT,"Windsor County",America/New_York,802,NA,US,43.56,-72.55,300 +05072,STANDARD,0,Strafford,,,VT,"Orange County",America/New_York,802,NA,US,43.87,-72.38,400 +05073,STANDARD,0,Taftsville,,,VT,"Windsor County",America/New_York,802,NA,US,43.62,-72.46,131 +05074,"PO BOX",0,Thetford,,"Thetford Hill",VT,"Orange County",America/New_York,802,NA,US,43.82,-72.23,234 +05075,STANDARD,0,"Thetford Center","Thetford Ctr","Rices Mills, Thet Ctr",VT,"Orange County",America/New_York,802,NA,US,43.82,-72.27,1200 +05076,STANDARD,0,Topsham,"East Corinth","Topsham Four Corners",VT,"Orange County",America/New_York,802,NA,US,44.14,-72.23,460 +05077,STANDARD,0,Tunbridge,,"North Tunbridge",VT,"Orange County",America/New_York,802,NA,US,43.88,-72.5,1010 +05079,STANDARD,0,Vershire,,,VT,"Orange County",America/New_York,802,NA,US,43.97,-72.32,580 +05081,STANDARD,0,"Wells River",,,VT,"Orange County",America/New_York,802,NA,US,44.15,-72.06,710 +05083,STANDARD,0,"West Fairlee",,"W Fairlee",VT,"Orange County",America/New_York,802,NA,US,43.92,-72.27,240 +05084,STANDARD,0,"West Hartford",Pomfret,,VT,"Windsor County",America/New_York,802,NA,US,43.73,-72.45,240 +05085,"PO BOX",0,"West Newbury",,,VT,"Orange County",America/New_York,802,NA,US,44.06,-72.12,186 +05086,STANDARD,0,"West Topsham","East Orange","Waits River",VT,"Orange County",America/New_York,802,NA,US,44.11,-72.3,700 +05088,"PO BOX",0,Wilder,,,VT,"Windsor County",America/New_York,802,NA,US,43.67,-72.31,1399 +05089,STANDARD,0,Windsor,"West Windsor","Fieldsville, Jenneville, Sheddsville",VT,"Windsor County",America/New_York,802,NA,US,43.48,-72.42,3710 +05091,STANDARD,0,Woodstock,,"W Woodstock, West Woodstock, Wood Stock",VT,"Windsor County",America/New_York,802,NA,US,43.62,-72.51,2980 +05101,STANDARD,0,"Bellows Falls",,"Gageville, North Westminster, Rockingham",VT,"Windham County",America/New_York,802,NA,US,43.13,-72.45,3370 +05141,STANDARD,0,Cambridgeport,,,VT,"Windham County",America/New_York,802,NA,US,43.15,-72.56,154 +05142,STANDARD,0,Cavendish,,,VT,"Windsor County",America/New_York,802,NA,US,43.38,-72.62,630 +05143,STANDARD,0,Chester,"Andover, Athens, Baltimore","Bartonsville, Brockways Mills, Middletown, North Windham, Peaseville, Reedville, Simonsville",VT,"Windsor County",America/New_York,802,NA,US,43.26,-72.59,3980 +05144,"PO BOX",1,"Chester Depot",Chester,"Gassetts, Spoonerville",VT,"Windsor County",America/New_York,802,NA,US,43.28,-72.63,0 +05146,STANDARD,0,Grafton,,,VT,"Windham County",America/New_York,802,NA,US,43.16,-72.61,520 +05148,STANDARD,0,Londonderry,Landgrove,"Bromley Mtn",VT,"Windham County",America/New_York,802,NA,US,43.23,-72.79,1210 +05149,STANDARD,0,Ludlow,,"Grahamville, Lake Rescue, Smithville, Tyson",VT,"Windsor County",America/New_York,802,NA,US,43.39,-72.69,1860 +05150,STANDARD,0,"North Springfield","N Springfield","N Springfld",VT,"Windsor County",America/New_York,802,NA,US,43.33,-72.53,860 +05151,STANDARD,0,Perkinsville,,"Greenbush, Weathersfield, Weathersfield Center",VT,"Windsor County",America/New_York,802,NA,US,43.36,-72.51,1100 +05152,STANDARD,0,Peru,,,VT,"Bennington County",America/New_York,802,NA,US,43.23,-72.89,360 +05153,STANDARD,0,Proctorsville,"South Reading",,VT,"Windsor County",America/New_York,802,NA,US,43.42,-72.64,690 +05154,STANDARD,0,"Saxtons River",,,VT,"Windham County",America/New_York,802,NA,US,43.14,-72.55,730 +05155,STANDARD,0,"South Londonderry","S Londonderry, Stratton Mnt, Stratton Mountain, Stratton Mtn",Rawsonville,VT,"Windham County",America/New_York,802,NA,US,43.09,-72.92,880 +05156,STANDARD,0,Springfield,,"Maple Dell, Orchard Lane, Pedden Acres, Weathersfield",VT,"Windsor County",America/New_York,802,NA,US,43.28,-72.47,7410 +05158,STANDARD,0,Westminster,,"West Minster",VT,"Windham County",America/New_York,802,NA,US,43.07,-72.45,1550 +05159,"PO BOX",0,"Westminster Station","Westmnstr Sta",Grout,VT,"Windham County",America/New_York,802,NA,US,43.04,-72.48,272 +05161,STANDARD,0,Weston,,"Weston Priory",VT,"Windsor County",America/New_York,802,NA,US,43.28,-72.8,560 +05201,STANDARD,0,Bennington,Woodford,"Bennington College, Old Bennington",VT,"Bennington County",America/New_York,802,NA,US,42.87,-73.18,12350 +05250,STANDARD,0,Arlington,"Sandgate, Sunderland, West Arlingtn, West Arlington","Arlington Center, Chiselville",VT,"Bennington County",America/New_York,802,NA,US,43.06,-73.15,3050 +05251,STANDARD,0,Dorset,,"S Dorset, So Dorset, South Dorset",VT,"Bennington County",America/New_York,802,NA,US,43.25,-73.09,1220 +05252,STANDARD,0,"East Arlington","E Arlington","Chiselville, Kansas, Sunderland",VT,"Bennington County",America/New_York,802,NA,US,43.06,-73.13,350 +05253,STANDARD,0,"East Dorset",,"E Dorset, Lake Emerald",VT,"Bennington County",America/New_York,802,NA,US,43.24,-72.99,540 +05254,"PO BOX",0,Manchester,,"Bromley Mountain, Manchester Village",VT,"Bennington County",America/New_York,802,NA,US,43.16,-73.07,926 +05255,STANDARD,0,"Manchester Center","Manchestr Ctr","Barnumville, Manchster Ctr",VT,"Bennington County",America/New_York,802,NA,US,43.17,-73.04,3660 +05257,STANDARD,0,"North Bennington","N Bennington","Barnumsville, No Bennington, Paper Mill Village, Sodom, Wolumsak",VT,"Bennington County",America/New_York,802,NA,US,42.92,-73.24,2170 +05260,STANDARD,0,"North Pownal",,"N Pownal, No Pownal",VT,"Bennington County",America/New_York,802,NA,US,42.81,-73.27,320 +05261,STANDARD,0,Pownal,,"Pownal Center, South Pownal",VT,"Bennington County",America/New_York,802,NA,US,42.76,-73.23,2100 +05262,STANDARD,0,Shaftsbury,,"North Shaftsbury, Shaftsbury Center, So Shaftsbury, South Shaftsbury",VT,"Bennington County",America/New_York,802,NA,US,42.98,-73.2,2180 +05301,STANDARD,0,Brattleboro,"Dummerston, Guilford, W Brattleboro, West Brattleboro","Brattleboro Center, Gilford, Green River, Guilford Center, Halifax, Harrisville",VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,12380 +05302,"PO BOX",0,Brattleboro,,,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,797 +05303,"PO BOX",0,Brattleboro,,,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,487 +05304,"PO BOX",0,Brattleboro,,,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.57,141 +05340,STANDARD,0,Bondville,Winhall,,VT,"Bennington County",America/New_York,802,NA,US,43.16,-72.93,730 +05341,STANDARD,0,"East Dover",Dover,,VT,"Windham County",America/New_York,802,NA,US,42.96,-72.78,400 +05342,STANDARD,0,Jacksonville,,,VT,"Windham County",America/New_York,802,NA,US,42.79,-72.82,580 +05343,STANDARD,0,Jamaica,,"East Jamaica, Pikes Falls",VT,"Windham County",America/New_York,802,NA,US,43.1,-72.8,650 +05344,"PO BOX",0,Marlboro,,"Marlboro College",VT,"Windham County",America/New_York,802,NA,US,42.86,-72.72,449 +05345,STANDARD,0,Newfane,Brookline,,VT,"Windham County",America/New_York,802,NA,US,42.98,-72.65,1470 +05346,STANDARD,0,Putney,"E Dummerston, East Dummerston, Westminster W, Westminster West","East Putney",VT,"Windham County",America/New_York,802,NA,US,42.97,-72.52,3830 +05350,STANDARD,0,Readsboro,,Heartwellville,VT,"Bennington County",America/New_York,802,NA,US,42.77,-72.94,620 +05351,STANDARD,0,"South Newfane",,,VT,"Windham County",America/New_York,802,NA,US,42.94,-72.7,341 +05352,STANDARD,0,Stamford,Readsboro,,VT,"Bennington County",America/New_York,802,NA,US,42.81,-73.08,730 +05353,STANDARD,0,Townshend,,"Harmonyville, Mary Meyer, Simpsonville",VT,"Windham County",America/New_York,802,NA,US,43.04,-72.66,940 +05354,STANDARD,0,Vernon,,,VT,"Windham County",America/New_York,802,NA,US,42.78,-72.52,1980 +05355,STANDARD,0,Wardsboro,,"South Wardsboro, Wardsborough",VT,"Windham County",America/New_York,802,NA,US,43.02,-72.8,370 +05356,STANDARD,0,"West Dover","Mount Snow","Dover, Mt Snow, W Dover",VT,"Windham County",America/New_York,802,NA,US,42.96,-72.91,1070 +05357,"PO BOX",0,"West Dummerston","W Dummerston",,VT,"Windham County",America/New_York,802,NA,US,42.92,-72.61,163 +05358,STANDARD,0,"West Halifax",,Halifax,VT,"Windham County",America/New_York,802,NA,US,42.76,-72.72,350 +05359,STANDARD,0,"West Townshend","W Townshend, Windham","South Windham",VT,"Windham County",America/New_York,802,NA,US,43.13,-72.71,490 +05360,STANDARD,0,"West Wardsboro","Stratton, W Wardsboro",,VT,"Windham County",America/New_York,802,NA,US,43,-72.95,370 +05361,STANDARD,0,Whitingham,,,VT,"Windham County",America/New_York,802,NA,US,42.78,-72.87,660 +05362,STANDARD,0,Williamsville,,,VT,"Windham County",America/New_York,802,NA,US,42.94,-72.65,260 +05363,STANDARD,0,Wilmington,"Searsburg, West Marlboro",Medburyville,VT,"Windham County",America/New_York,802,NA,US,42.86,-72.87,1930 +05401,STANDARD,0,Burlington,,"Btv, Burl, Burlingtn, Burlngtn",VT,"Chittenden County",America/New_York,802,NA,US,44.48,-73.22,18260 +05402,"PO BOX",0,Burlington,,,VT,"Chittenden County",America/New_York,802,NA,US,44.48,-73.22,854 +05403,STANDARD,0,"South Burlington","S Burlington","Queen City, Queen City Park, S Btv, S Burl, So Burlington",VT,"Chittenden County",America/New_York,802,NA,US,44.44,-73.21,17920 +05404,STANDARD,0,Winooski,,,VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.18,6220 +05405,UNIQUE,0,Burlington,,"Univ Of Vermont, Uvm",VT,"Chittenden County",America/New_York,802,NA,US,44.47,-73.2,127 +05406,"PO BOX",0,Burlington,,,VT,"Chittenden County",America/New_York,802,NA,US,44.48,-73.22,334 +05407,"PO BOX",0,"South Burlington","S Burlington","So Burlington",VT,"Chittenden County",America/New_York,802,NA,US,44.44,-73.21,388 +05408,STANDARD,0,Burlington,,"Burl, Burlngtn, N Burlington, North Burlington",VT,"Chittenden County",America/New_York,802,NA,US,44.51,-73.25,9390 +05439,UNIQUE,0,Colchester,,"St Michaels College",VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.16,16 +05440,STANDARD,0,Alburgh,Alburg,,VT,"Grand Isle County",America/New_York,802,NA,US,44.97,-73.3,1810 +05441,STANDARD,0,Bakersfield,,,VT,"Franklin County",America/New_York,802,NA,US,44.78,-72.8,600 +05442,STANDARD,0,"Belvidere Center","Belvidere Ctr","Belvidere, Belvidere Corners",VT,"Lamoille County",America/New_York,802,NA,US,44.75,-72.68,300 +05443,STANDARD,0,Bristol,Lincoln,"Downingville, Jerusalem, Rocky Dale, South Lincoln, West Lincoln",VT,"Addison County",America/New_York,802,NA,US,44.13,-73.08,5780 +05444,STANDARD,0,Cambridge,,"Binghamville, Cambridgeboro, Cloverdale, Fletcher, Pleasant Valley",VT,"Franklin County",America/New_York,,NA,US,44.63,-72.88,1820 +05445,STANDARD,0,Charlotte,,"Cedar Beach",VT,"Chittenden County",America/New_York,802,NA,US,44.3,-73.25,3730 +05446,STANDARD,0,Colchester,,"Camp Johnson, Smc, St Michaels College",VT,"Chittenden County",America/New_York,802,NA,US,44.53,-73.15,15040 +05447,STANDARD,0,"East Berkshire","E Berkshire",Berkshire,VT,"Franklin County",America/New_York,802,NA,US,44.93,-72.7,180 +05448,STANDARD,0,"East Fairfield","E Fairfield",,VT,"Franklin County",America/New_York,802,NA,US,44.8,-72.91,1100 +05449,"PO BOX",0,Colchester,,,VT,"Chittenden County",America/New_York,802,NA,US,44.53,-73.15,0 +05450,STANDARD,0,"Enosburg Falls","Enosburg Fls","Berkshire Center, Bordoville, East Enosburg, East Sheldon, Enosburg, Enosburg Center, Herrick, Hill West, S Franklin, Samsonville, So Franklin, West Berkshire, West Enosburg, Woodpecker Village",VT,"Franklin County",America/New_York,802,NA,US,44.9,-72.8,4520 +05451,"PO BOX",0,Essex,,"Essex Center",VT,"Chittenden County",America/New_York,802,NA,US,44.52,-73.05,475 +05452,STANDARD,0,"Essex Junction","Essex Jct","Brookside, Essex, Essex Ctr, Pinewood",VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.11,20510 +05453,"PO BOX",0,"Essex Junction","Essex Jct",,VT,"Chittenden County",America/New_York,802,NA,US,44.49,-73.11,509 +05454,STANDARD,0,Fairfax,,Georgia,VT,"Franklin County",America/New_York,802,NA,US,44.67,-73.02,4990 +05455,STANDARD,0,Fairfield,Sheldon,,VT,"Franklin County",America/New_York,802,NA,US,44.8,-72.95,1190 +05456,STANDARD,0,Ferrisburgh,,Ferrisburg,VT,"Addison County",America/New_York,802,NA,US,44.2,-73.25,1110 +05457,STANDARD,0,Franklin,,"E Franklin, East Franklin, Lake Carmi, Morses Line, Shawville",VT,"Franklin County",America/New_York,802,NA,US,44.98,-72.92,1410 +05458,STANDARD,0,"Grand Isle",,"Adams Landing, Pearl, Point Farm",VT,"Grand Isle County",America/New_York,802,NA,US,44.72,-73.3,1980 +05459,STANDARD,0,"Highgate Center","Highgate Ctr","Beaulieus Corner, East Highgate, Highgate, Highgate Falls, Rixford",VT,"Franklin County",America/New_York,802,NA,US,44.95,-72.99,1650 +05460,"PO BOX",0,"Highgate Springs","Highgate Sprg","Highgate Spgs",VT,"Franklin County",America/New_York,802,NA,US,44.97,-73.1,132 +05461,STANDARD,0,Hinesburg,,"Lake Iroquois, Mechanicsburg",VT,"Chittenden County",America/New_York,802,NA,US,44.33,-73.12,4700 +05462,STANDARD,0,Huntington,,"Huntingtn Ctr, Huntington Center, Huntington Lower Village",VT,"Chittenden County",America/New_York,802,NA,US,44.33,-72.98,1910 +05463,STANDARD,0,"Isle La Motte",,,VT,"Grand Isle County",America/New_York,802,NA,US,44.87,-73.33,480 +05464,STANDARD,0,Jeffersonville,Jeffersonvlle,Madonna,VT,"Lamoille County",America/New_York,802,NA,US,44.64,-72.82,2700 +05465,STANDARD,0,Jericho,"Jericho Center, Jericho Ctr","West Bolton",VT,"Chittenden County",America/New_York,802,NA,US,44.5,-72.98,5600 +05466,"PO BOX",0,Jonesville,,,VT,"Chittenden County",America/New_York,802,NA,US,44.39,-72.99,178 +05468,STANDARD,0,Milton,,"Georgia, West Milton",VT,"Chittenden County",America/New_York,802,NA,US,44.63,-73.11,13060 +05469,"PO BOX",0,Monkton,,,VT,"Addison County",America/New_York,802,NA,US,44.23,-73.15,230 +05470,"PO BOX",0,Montgomery,,,VT,"Franklin County",America/New_York,802,NA,US,44.9,-72.63,285 +05471,STANDARD,0,"Montgomery Center","Montgomry Ctr","Alpine Haven, Hectorville, Hutchins",VT,"Franklin County",America/New_York,,NA,US,44.86,-72.59,720 +05472,STANDARD,0,"New Haven",,"Barnumtown, Brookville, New Haven Jct, New Haven Junction, New Haven Mills",VT,"Addison County",America/New_York,802,NA,US,44.12,-73.15,1740 +05473,STANDARD,0,"North Ferrisburgh","N Ferrisburgh","Kimballs, Long Point, Monkton Ridge, Mount Philo, Mt Philo, No Ferrisburgh, The Hollow",VT,"Addison County",America/New_York,802,NA,US,44.24,-73.19,1300 +05474,STANDARD,0,"North Hero",,"Abnaki, Birdland, Knights Point, Lagrange, No Hero",VT,"Grand Isle County",America/New_York,802,NA,US,44.82,-73.28,940 +05476,STANDARD,0,Richford,,,VT,"Franklin County",America/New_York,802,NA,US,44.99,-72.67,2470 +05477,STANDARD,0,Richmond,"Bolton Valley",,VT,"Chittenden County",America/New_York,802,NA,US,44.4,-73,4340 +05478,STANDARD,0,"Saint Albans",,"Georgia, St Albans",VT,"Franklin County",America/New_York,802,NA,US,44.81,-73.08,13930 +05479,UNIQUE,0,"Essex Junction","Essex Jct","Eastern Reg Serv Ctr, Us Citizenship & Immigration",VT,"Franklin County",America/New_York,802,NA,US,44.81,-73.08,0 +05481,"PO BOX",0,"Saint Albans Bay","St Albans Bay",,VT,"Franklin County",America/New_York,802,NA,US,44.77,-73.21,532 +05482,STANDARD,0,Shelburne,,,VT,"Chittenden County",America/New_York,802,NA,US,44.38,-73.23,7390 +05483,STANDARD,0,Sheldon,,"Crow Hill, Fairfield Pond, Fairground, Fairgrounds, Saint Rocks, Sheldon Creek, Sheldon Junction, St Rocks, Sweek Hollow",VT,"Franklin County",America/New_York,802,NA,US,44.88,-72.95,1400 +05485,"PO BOX",0,"Sheldon Springs","Sheldon Spgs",,VT,"Franklin County",America/New_York,802,NA,US,44.9,-72.97,302 +05486,STANDARD,0,"South Hero",,"Keeler Bay, Keelers Bay, S Hero, So Hero",VT,"Grand Isle County",America/New_York,802,NA,US,44.64,-73.31,1670 +05487,STANDARD,0,Starksboro,,"Buels Gore, South Starksboro",VT,"Addison County",America/New_York,802,NA,US,44.22,-72.99,1370 +05488,STANDARD,0,Swanton,,"Fonda, Fonda Jct, Green Corner, Hog Island, Lakewood, Maquam, Popsquash, W Swanton, West Swanton",VT,"Franklin County",America/New_York,802,NA,US,44.92,-73.12,6940 +05489,STANDARD,0,Underhill,,"Underhill Flats",VT,"Chittenden County",America/New_York,802,NA,US,44.57,-72.9,3150 +05490,"PO BOX",0,"Underhill Center","Underhill Ctr",,VT,"Chittenden County",America/New_York,802,NA,US,44.52,-72.89,407 +05491,STANDARD,0,Vergennes,"Addison, Panton","Arnold Bay, Basin Harbor, Button Bay, Chimney Point, Crown Point, Mile Point, Owls Head Harbor, Potash Bay, Potash Point, Summer Point, Waltham, West Addison, West Ferrisburgh",VT,"Addison County",America/New_York,802,NA,US,44.16,-73.25,5550 +05492,STANDARD,0,Waterville,,"Belvidere Center, Belvidere Junction",VT,"Lamoille County",America/New_York,802,NA,US,44.71,-72.75,720 +05494,STANDARD,0,Westford,,Brookside,VT,"Chittenden County",America/New_York,802,NA,US,44.62,-73.02,1660 +05495,STANDARD,0,Williston,"Saint George, St George",,VT,"Chittenden County",America/New_York,802,NA,US,44.43,-73.07,10760 +05501,UNIQUE,0,Andover,,"Internal Revenue Service",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,510 +05544,UNIQUE,1,Andover,,"Irs Service Center",MA,"Essex County",America/New_York,351,NA,US,42.65,-71.14,0 +05601,"PO BOX",0,Montpelier,,,VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,801 +05602,STANDARD,0,Montpelier,"Berlin, Middlesex, Middlesex Center, Middlesex Ctr","East Montpelier Center, Gould Hill, Jones Brook, Montpelier Jct, Montpelier Junction",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,10720 +05603,UNIQUE,0,Montpelier,,"Dept Motor Vehicles",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05604,UNIQUE,0,Montpelier,,"National Life Ins",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,16 +05609,UNIQUE,0,Montpelier,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05620,UNIQUE,0,Montpelier,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05633,UNIQUE,0,Montpelier,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.26,-72.57,0 +05640,STANDARD,0,Adamant,,"Bliss Pond",VT,"Washington County",America/New_York,802,NA,US,44.35,-72.5,168 +05641,STANDARD,0,Barre,Orange,"Barre Jct, Barre Junction, Berlin, Boutswells, East Hill, Lower Websterville, Trow Hill",VT,"Washington County",America/New_York,802,NA,US,44.2,-72.5,13880 +05647,STANDARD,0,Cabot,,"East Cabot",VT,"Washington County",America/New_York,802,NA,US,44.4,-72.31,950 +05648,STANDARD,0,Calais,,,VT,"Washington County",America/New_York,802,NA,US,44.38,-72.49,460 +05649,STANDARD,0,"East Barre",,,VT,"Orange County",America/New_York,802,NA,US,44.17,-72.35,940 +05650,STANDARD,0,"East Calais",,"North Calais, South Woodbury",VT,"Washington County",America/New_York,802,NA,US,44.35,-72.44,890 +05651,STANDARD,0,"East Montpelier","E Montpelier",,VT,"Washington County",America/New_York,802,NA,US,44.28,-72.49,1560 +05652,STANDARD,0,Eden,,,VT,"Lamoille County",America/New_York,802,NA,US,44.7,-72.55,780 +05653,STANDARD,0,"Eden Mills",Eden,,VT,"Lamoille County",America/New_York,802,NA,US,44.69,-72.48,380 +05654,STANDARD,0,Graniteville,,,VT,"Washington County",America/New_York,802,NA,US,44.15,-72.47,1100 +05655,STANDARD,0,"Hyde Park",,,VT,"Lamoille County",America/New_York,802,NA,US,44.59,-72.61,2640 +05656,STANDARD,0,Johnson,,"East Johnson",VT,"Lamoille County",America/New_York,802,NA,US,44.63,-72.67,2660 +05657,"PO BOX",0,"Lake Elmore",,"Lk Elmore",VT,"Lamoille County",America/New_York,802,NA,US,44.54,-72.53,286 +05658,STANDARD,0,Marshfield,,"Lower Cabot",VT,"Washington County",America/New_York,802,NA,US,44.35,-72.35,1370 +05660,STANDARD,0,Moretown,"South Duxbury","N Fayston, No Fayston, North Fayston",VT,"Washington County",America/New_York,802,NA,US,44.25,-72.75,1740 +05661,STANDARD,0,Morrisville,"Elmore, Morristown","Cadys Falls, Cleveland Corner, Garfield, Lake Lamoille, Morrisvl, Morrisvle, Mud City",VT,"Lamoille County",America/New_York,802,NA,US,44.55,-72.59,5160 +05662,"PO BOX",0,Moscow,,,VT,"Lamoille County",America/New_York,802,NA,US,44.44,-72.71,59 +05663,STANDARD,0,Northfield,"Riverton, West Berlin","Norwich University",VT,"Washington County",America/New_York,802,NA,US,44.15,-72.65,3910 +05664,"PO BOX",0,"Northfield Falls","Northfield Fl, Northfld Fls",,VT,"Washington County",America/New_York,802,NA,US,44.17,-72.65,656 +05665,"PO BOX",0,"North Hyde Park","N Hyde Park",,VT,"Lamoille County",America/New_York,802,NA,US,44.66,-72.57,153 +05666,STANDARD,0,"North Montpelier","N Montpelier","No Montpelier",VT,"Washington County",America/New_York,802,NA,US,44.25,-72.48,148 +05667,STANDARD,0,Plainfield,,Pekin,VT,"Washington County",America/New_York,802,NA,US,44.28,-72.43,1950 +05669,STANDARD,0,Roxbury,"W Braintree, West Braintree","E Granville, East Granville, Roxbury Flat",VT,"Washington County",America/New_York,802,NA,US,44.1,-72.73,460 +05670,"PO BOX",0,"South Barre",,,VT,"Washington County",America/New_York,802,NA,US,44.16,-72.5,719 +05671,UNIQUE,0,Waterbury,,"State Of Vermont",VT,"Washington County",America/New_York,802,NA,US,44.33,-72.75,0 +05672,STANDARD,0,Stowe,,,VT,"Lamoille County",America/New_York,802,NA,US,44.46,-72.68,5030 +05673,STANDARD,0,Waitsfield,,"Fayston, Irasville, Mad River Glen, Waitsfield Common",VT,"Washington County",America/New_York,802,NA,US,44.18,-72.82,2590 +05674,STANDARD,0,Warren,,"East Warren",VT,"Washington County",America/New_York,802,NA,US,44.12,-72.85,1370 +05675,STANDARD,0,Washington,,"Sky Acres, South Washington, Washgtin, Washing, Washingtn",VT,"Orange County",America/New_York,802,NA,US,44.1,-72.43,890 +05676,STANDARD,0,Waterbury,,"Bolton, Colbyville, Duxbury, North Duxbury",VT,"Washington County",America/New_York,802,NA,US,44.33,-72.75,4770 +05677,STANDARD,0,"Waterbury Center","Waterbury Ctr",,VT,"Washington County",America/New_York,802,NA,US,44.38,-72.7,2230 +05678,"PO BOX",0,Websterville,,,VT,"Washington County",America/New_York,802,NA,US,44.16,-72.48,280 +05679,STANDARD,0,Williamstown,,,VT,"Orange County",America/New_York,802,NA,US,44.12,-72.53,2910 +05680,STANDARD,0,Wolcott,,"Branch, East Elmore, North Wolcott, Pottersville",VT,"Lamoille County",America/New_York,802,NA,US,44.55,-72.47,1880 +05681,STANDARD,0,Woodbury,,"Lake Valley",VT,"Washington County",America/New_York,802,NA,US,44.44,-72.4,320 +05682,STANDARD,0,Worcester,"N Middlesex, North Middlesex",,VT,"Washington County",America/New_York,802,NA,US,44.37,-72.55,1170 +05701,STANDARD,0,Rutland,"Mendon, S Chittenden, South Chittenden","Clementwood, East Pittsford, Glen, Heartwell, Mill Village, Rutland Town",VT,"Rutland County",America/New_York,802,NA,US,43.6,-72.97,16690 +05702,"PO BOX",0,Rutland,,,VT,"Rutland County",America/New_York,802,NA,US,43.6,-72.97,945 +05730,STANDARD,0,Belmont,,,VT,"Rutland County",America/New_York,802,NA,US,43.42,-72.81,370 +05731,"PO BOX",0,Benson,,,VT,"Rutland County",America/New_York,802,NA,US,43.72,-73.32,157 +05732,STANDARD,0,Bomoseen,,"Crystal Beach, Neshobe Beach",VT,"Rutland County",America/New_York,802,NA,US,43.63,-73.2,890 +05733,STANDARD,0,Brandon,"Goshen, Leicester, Sudbury",,VT,"Rutland County",America/New_York,802,NA,US,43.8,-73.08,5170 +05734,STANDARD,0,Bridport,,,VT,"Addison County",America/New_York,802,NA,US,43.98,-73.32,1100 +05735,STANDARD,0,Castleton,,"Castleton State College, East Hubbardton, Hubbardton",VT,"Rutland County",America/New_York,802,NA,US,43.62,-73.18,2510 +05736,STANDARD,0,"Center Rutland","Ctr Rutland",,VT,"Rutland County",America/New_York,802,NA,US,43.61,-73.01,450 +05737,STANDARD,0,Chittenden,,,VT,"Rutland County",America/New_York,802,NA,US,43.72,-72.95,630 +05738,STANDARD,0,Cuttingsville,Shrewsbury,"North Shrewsbury, Russellville",VT,"Rutland County",America/New_York,802,NA,US,43.53,-72.86,980 +05739,STANDARD,0,Danby,"Mount Tabor","Chipman Lake, Danby Corners, Scottsville, South End",VT,"Rutland County",America/New_York,802,NA,US,43.35,-73,1140 +05740,"PO BOX",0,"East Middlebury","E Middlebury",,VT,"Addison County",America/New_York,802,NA,US,43.97,-73.11,991 +05741,"PO BOX",0,"East Poultney",Poultney,,VT,"Rutland County",America/New_York,802,NA,US,43.54,-73.13,29 +05742,STANDARD,0,"East Wallingford","E Wallingford",Bowlsville,VT,"Rutland County",America/New_York,802,NA,US,43.43,-72.87,440 +05743,STANDARD,0,"Fair Haven","Benson, West Haven","Benson Landing, Fairhaven, West Castleton",VT,"Rutland County",America/New_York,802,NA,US,43.59,-73.27,3630 +05744,STANDARD,0,Florence,,,VT,"Rutland County",America/New_York,802,NA,US,43.7,-73.08,470 +05745,"PO BOX",0,"Forest Dale",,Forestdale,VT,"Rutland County",America/New_York,802,NA,US,43.82,-73.05,284 +05746,"PO BOX",0,Gaysville,,,VT,"Windsor County",America/New_York,802,NA,US,43.73,-72.74,159 +05747,STANDARD,0,Granville,,"Lower Granville",VT,"Addison County",America/New_York,802,NA,US,43.98,-72.85,200 +05748,STANDARD,0,Hancock,,,VT,"Addison County",America/New_York,802,NA,US,43.93,-72.83,290 +05750,"PO BOX",0,Hydeville,,,VT,"Rutland County",America/New_York,802,NA,US,43.6,-73.21,284 +05751,STANDARD,0,Killington,,,VT,"Rutland County",America/New_York,802,NA,US,43.67,-72.77,1180 +05753,STANDARD,0,Middlebury,"Cornwall, Weybridge","Weybridge Hill",VT,"Addison County",America/New_York,802,NA,US,44,-73.15,7460 +05757,STANDARD,0,"Middletown Springs","Middletwn Spg",,VT,"Rutland County",America/New_York,802,NA,US,43.48,-73.12,840 +05758,STANDARD,0,"Mount Holly",,"Healdville, Hortonville, Lake Hinevah, Summit",VT,"Rutland County",America/New_York,802,NA,US,43.45,-72.76,690 +05759,STANDARD,0,"North Clarendon","N Clarendon",Clarendon,VT,"Rutland County",America/New_York,802,NA,US,43.53,-72.96,1750 +05760,STANDARD,0,Orwell,,"Chipmans Point, Lake Hortonia, North Orwell",VT,"Addison County",America/New_York,802,NA,US,43.8,-73.3,1050 +05761,STANDARD,0,Pawlet,,"Brimstone Corners, East Rupert, N Pawlet, North Pawlet, North Rupert, Spankerton",VT,"Rutland County",America/New_York,802,NA,US,43.35,-73.18,1000 +05762,STANDARD,0,Pittsfield,,,VT,"Rutland County",America/New_York,802,NA,US,43.78,-72.82,430 +05763,STANDARD,0,Pittsford,"N Chittenden, North Chittenden","Fredetteville, Pittsford Mills",VT,"Rutland County",America/New_York,802,NA,US,43.7,-73.03,2480 +05764,STANDARD,0,Poultney,,"Blissville, Lake St Catherine, Rareville, South Poultney",VT,"Rutland County",America/New_York,802,NA,US,43.51,-73.23,2610 +05765,STANDARD,0,Proctor,,"True Blue",VT,"Rutland County",America/New_York,802,NA,US,43.65,-73.03,1580 +05766,STANDARD,0,Ripton,,,VT,"Addison County",America/New_York,802,NA,US,43.98,-73,410 +05767,STANDARD,0,Rochester,,,VT,"Windsor County",America/New_York,802,NA,US,43.88,-72.82,950 +05768,"PO BOX",0,Rupert,,,VT,"Bennington County",America/New_York,802,NA,US,43.26,-73.22,124 +05769,STANDARD,0,Salisbury,,"Lake Dunmore, West Salisbury",VT,"Addison County",America/New_York,802,NA,US,43.9,-73.1,1090 +05770,STANDARD,0,Shoreham,,,VT,"Addison County",America/New_York,802,NA,US,43.9,-73.32,990 +05772,STANDARD,0,Stockbridge,,,VT,"Windsor County",America/New_York,802,NA,US,43.78,-72.77,450 +05773,STANDARD,0,Wallingford,Tinmouth,"S Wallingford, South Wallingford",VT,"Rutland County",America/New_York,802,NA,US,43.48,-72.97,1880 +05774,STANDARD,0,Wells,,,VT,"Rutland County",America/New_York,802,NA,US,43.42,-73.2,1050 +05775,STANDARD,0,"West Pawlet",,,VT,"Rutland County",America/New_York,802,NA,US,43.36,-73.22,530 +05776,STANDARD,0,"West Rupert",,,VT,"Bennington County",America/New_York,802,NA,US,43.26,-73.19,230 +05777,STANDARD,0,"West Rutland","Clarendn Spgs, Clarendon Springs","Chippenhook, Ira",VT,"Rutland County",America/New_York,802,NA,US,43.59,-73.04,3020 +05778,STANDARD,0,Whiting,"West Cornwall",,VT,"Addison County",America/New_York,802,NA,US,43.87,-73.21,640 +05819,STANDARD,0,"Saint Johnsbury","St Johnsbury, Waterford","Johnsbury, West Waterford",VT,"Caledonia County",America/New_York,802,NA,US,44.41,-71.97,7020 +05820,STANDARD,0,Albany,,,VT,"Orleans County",America/New_York,802,NA,US,44.73,-72.38,360 +05821,STANDARD,0,Barnet,,"Barnet Center, Inwood, South Peacham, West Barnet",VT,"Caledonia County",America/New_York,802,NA,US,44.3,-72.05,1010 +05822,STANDARD,0,Barton,,Westmore,VT,"Orleans County",America/New_York,802,NA,US,44.74,-72.17,1740 +05823,"PO BOX",0,"Beebe Plain",,,VT,"Orleans County",America/New_York,802,NA,US,45,-72.14,142 +05824,STANDARD,0,Concord,,"Concord Corner, Kirby, Ralston Corner",VT,"Essex County",America/New_York,802,NA,US,44.43,-71.88,1000 +05825,"PO BOX",0,Coventry,,,VT,"Orleans County",America/New_York,802,NA,US,44.86,-72.25,219 +05826,STANDARD,0,Craftsbury,,"East Craftsbury",VT,"Orleans County",America/New_York,802,NA,US,44.63,-72.37,770 +05827,STANDARD,0,"Craftsbury Common","Craftsbry Cmn, Craftsbury Cm","Mill Village",VT,"Orleans County",America/New_York,802,NA,US,44.68,-72.36,480 +05828,STANDARD,0,Danville,,"Danville Center",VT,"Caledonia County",America/New_York,802,NA,US,44.42,-72.13,1840 +05829,STANDARD,0,Derby,,,VT,"Orleans County",America/New_York,802,NA,US,44.92,-72.12,2190 +05830,STANDARD,0,"Derby Line",,Holland,VT,"Orleans County",America/New_York,802,NA,US,45,-72.1,1300 +05832,STANDARD,0,"East Burke",,"Burke Mountain, E Burke",VT,"Caledonia County",America/New_York,802,NA,US,44.6,-71.92,900 +05833,STANDARD,0,"East Charleston","E Charleston",,VT,"Orleans County",America/New_York,802,NA,US,44.83,-72,190 +05836,STANDARD,0,"East Hardwick",,,VT,"Caledonia County",America/New_York,802,NA,US,44.52,-72.3,950 +05837,STANDARD,0,"East Haven",,,VT,"Essex County",America/New_York,,NA,US,44.66,-71.81,300 +05838,"PO BOX",0,"East Saint Johnsbury","E St Johnsbry",,VT,"Caledonia County",America/New_York,802,NA,US,44.44,-71.95,102 +05839,STANDARD,0,Glover,Barton,,VT,"Orleans County",America/New_York,802,NA,US,44.7,-72.18,690 +05840,"PO BOX",0,Granby,,,VT,"Essex County",America/New_York,,NA,US,44.57,-71.77,85 +05841,STANDARD,0,Greensboro,,Greensborough,VT,"Orleans County",America/New_York,802,NA,US,44.58,-72.28,280 +05842,STANDARD,0,"Greensboro Bend","Greensbro Bnd, Grnsboro Bend",Stannard,VT,"Orleans County",America/New_York,,NA,US,44.54,-72.21,530 +05843,STANDARD,0,Hardwick,,"Mackville, South Walden",VT,"Caledonia County",America/New_York,802,NA,US,44.5,-72.37,2350 +05845,STANDARD,0,Irasburg,,"Albany Center, East Albany",VT,"Orleans County",America/New_York,802,NA,US,44.81,-72.28,1100 +05846,STANDARD,0,"Island Pond",Ferdinand,Brighton,VT,"Essex County",America/New_York,,NA,US,44.81,-71.88,1020 +05847,STANDARD,0,Lowell,,,VT,"Orleans County",America/New_York,802,NA,US,44.8,-72.45,740 +05848,"PO BOX",0,"Lower Waterford","Lwr Waterford",,VT,"Caledonia County",America/New_York,802,NA,US,44.35,-71.92,114 +05849,"PO BOX",0,Lyndon,,"Lyndon Corners",VT,"Caledonia County",America/New_York,802,NA,US,44.5,-71.97,364 +05850,STANDARD,0,"Lyndon Center",,,VT,"Caledonia County",America/New_York,802,NA,US,44.54,-72.01,450 +05851,STANDARD,0,Lyndonville,,"East Lyndon, Red Village, South Wheelock, Wheelock",VT,"Caledonia County",America/New_York,802,NA,US,44.53,-72,4740 +05853,STANDARD,0,Morgan,"Morgan Ctr",,VT,"Orleans County",America/New_York,802,NA,US,44.89,-71.96,450 +05855,STANDARD,0,Newport,,"Eagle Point, Indian Point, Lake Park, Newport City, North Derby, The Bluffs, West Derby",VT,"Orleans County",America/New_York,802,NA,US,44.93,-72.2,5870 +05857,STANDARD,0,"Newport Center","Newport Ctr",,VT,"Orleans County",America/New_York,802,NA,US,44.95,-72.3,1240 +05858,STANDARD,0,"North Concord",Victory,"Gallup Mills, Granby Valley, Miles Pond",VT,"Essex County",America/New_York,802,NA,US,44.56,-71.77,230 +05859,STANDARD,0,"North Troy","Jay, Jay Peak",,VT,"Orleans County",America/New_York,802,NA,US,44.99,-72.4,1640 +05860,STANDARD,0,Orleans,Brownington,"Evansville, Westmore",VT,"Orleans County",America/New_York,802,NA,US,44.81,-72.2,2260 +05861,"PO BOX",0,Passumpsic,,"Morses Mills",VT,"Caledonia County",America/New_York,802,NA,US,44.38,-72.03,215 +05862,STANDARD,0,Peacham,,"East Peacham",VT,"Caledonia County",America/New_York,802,NA,US,44.33,-72.17,300 +05863,"PO BOX",0,"Saint Johnsbury Center","St Jhnsbry Ct",,VT,"Caledonia County",America/New_York,802,NA,US,44.47,-72,300 +05866,STANDARD,0,Sheffield,,"Sheffield Square",VT,"Caledonia County",America/New_York,802,NA,US,44.6,-72.12,550 +05867,STANDARD,0,Sutton,,"East Sutton Ridge",VT,"Caledonia County",America/New_York,802,NA,US,44.66,-72.03,620 +05868,STANDARD,0,Troy,,,VT,"Orleans County",America/New_York,802,NA,US,44.9,-72.38,310 +05871,STANDARD,0,"West Burke",,"Burke, Newark, Newark Hollow",VT,"Caledonia County",America/New_York,802,NA,US,44.64,-71.98,1330 +05872,STANDARD,0,"West Charleston","W Charleston",Charleston,VT,"Orleans County",America/New_York,802,NA,US,44.86,-72.05,640 +05873,STANDARD,0,"West Danville",,"Joes Pond, Walden",VT,"Caledonia County",America/New_York,802,NA,US,44.46,-72.22,650 +05874,STANDARD,0,Westfield,,,VT,"Orleans County",America/New_York,802,NA,US,44.88,-72.42,540 +05875,STANDARD,0,Barton,"West Glover",,VT,"Orleans County",America/New_York,802,NA,US,44.69,-72.26,450 +05901,"PO BOX",0,Averill,Canaan,,VT,"Essex County",America/New_York,,NA,US,44.94,-71.66,0 +05902,STANDARD,0,"Beecher Falls",,,VT,"Essex County",America/New_York,802,NA,US,45.01,-71.49,226 +05903,STANDARD,0,Canaan,Lemington,,VT,"Essex County",America/New_York,802,NA,US,45,-71.53,720 +05904,STANDARD,0,Gilman,,,VT,"Essex County",America/New_York,802,NA,US,44.42,-71.71,190 +05905,STANDARD,0,Guildhall,"Bloomfield, Brunswick, Maidstone","Ferdinand, Lemington",VT,"Essex County",America/New_York,802,NA,US,44.7,-71.68,600 +05906,STANDARD,0,Lunenburg,"East Concord","South Lunenburg",VT,"Essex County",America/New_York,802,NA,US,44.47,-71.68,990 +05907,STANDARD,0,Norton,,,VT,"Essex County",America/New_York,802,NA,US,45,-71.8,178 +06001,STANDARD,0,Avon,,,CT,"Hartford County",America/New_York,860,NA,US,41.8,-72.83,18690 +06002,STANDARD,0,Bloomfield,,,CT,"Hartford County",America/New_York,860,NA,US,41.81,-72.73,19330 +06006,UNIQUE,0,Windsor,,"Northeast Area",CT,"Hartford County",America/New_York,860,NA,US,41.85,-72.65,0 +06010,STANDARD,0,Bristol,,Forestville,CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.94,52790 +06011,"PO BOX",0,Bristol,,,CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.94,861 +06013,STANDARD,0,Burlington,Unionville,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.96,9200 +06016,STANDARD,0,"Broad Brook","Melrose, Windsorville",,CT,"Hartford County",America/New_York,860,NA,US,41.9,-72.54,5680 +06018,STANDARD,0,Canaan,,"No Canaan, North Canaan",CT,"Litchfield County",America/New_York,860,NA,US,42.03,-73.33,2290 +06019,STANDARD,0,Canton,Collinsville,,CT,"Hartford County",America/New_York,860,NA,US,41.86,-72.9,9210 +06020,"PO BOX",0,"Canton Center",,"Cherry Brook",CT,"Hartford County",America/New_York,860,NA,US,41.83,-72.93,183 +06021,STANDARD,0,Colebrook,,Colbrook,CT,"Litchfield County",America/New_York,,NA,US,42.02,-73.1,1180 +06022,"PO BOX",0,Collinsville,,,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.93,162 +06023,STANDARD,0,"East Berlin",,,CT,"Hartford County",America/New_York,860,NA,US,41.61,-72.72,1230 +06024,STANDARD,0,"East Canaan",,,CT,"Litchfield County",America/New_York,,NA,US,42,-73.28,500 +06025,"PO BOX",0,"East Glastonbury","E Glastonbury","E Glstnbry",CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.54,123 +06026,STANDARD,0,"East Granby",,,CT,"Hartford County",America/New_York,860,NA,US,41.93,-72.71,4970 +06027,STANDARD,0,"East Hartland",,,CT,"Hartford County",America/New_York,860,NA,US,42,-72.94,1340 +06028,"PO BOX",0,"East Windsor Hill","E Windsor Hl",,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.67,65 +06029,STANDARD,0,Ellington,,,CT,"Tolland County",America/New_York,860,NA,US,41.9,-72.46,15510 +06030,UNIQUE,0,Farmington,,"University Of Ct Health Ctr",CT,"Hartford County",America/New_York,860,NA,US,41.71,-72.83,0 +06031,STANDARD,0,"Falls Village",,"South Canaan",CT,"Litchfield County",America/New_York,860,NA,US,41.95,-73.36,960 +06032,STANDARD,0,Farmington,,"Talcott Village, The Exchange At Talcott Vill, West Farms Mall",CT,"Hartford County",America/New_York,860,NA,US,41.71,-72.83,17520 +06033,STANDARD,0,Glastonbury,,,CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.6,28620 +06034,"PO BOX",0,Farmington,,,CT,"Hartford County",America/New_York,860,NA,US,41.71,-72.83,291 +06035,STANDARD,0,Granby,,,CT,"Hartford County",America/New_York,860,NA,US,41.95,-72.78,7130 +06037,STANDARD,0,Berlin,Kensington,Kenington,CT,"Hartford County",America/New_York,860,NA,US,41.62,-72.77,18140 +06039,STANDARD,0,Lakeville,,"Hotchkiss School",CT,"Litchfield County",America/New_York,860,NA,US,41.94,-73.43,1890 +06040,STANDARD,0,Manchester,,,CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.51,31400 +06041,UNIQUE,0,Manchester,,"Jc Penney Co",CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.51,29 +06042,STANDARD,0,Manchester,,,CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.53,21640 +06043,STANDARD,0,Bolton,,,CT,"Tolland County",America/New_York,860,NA,US,41.76,-72.43,4720 +06045,"PO BOX",0,Manchester,,,CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.51,676 +06050,"PO BOX",0,"New Britain",,,CT,"Hartford County",America/New_York,860,NA,US,41.67,-72.78,1273 +06051,STANDARD,0,"New Britain",,"New Brit",CT,"Hartford County",America/New_York,860,NA,US,41.67,-72.78,24870 +06052,STANDARD,0,"New Britain",,,CT,"Hartford County",America/New_York,860,NA,US,41.66,-72.8,6740 +06053,STANDARD,0,"New Britain",,,CT,"Hartford County",America/New_York,860,NA,US,41.69,-72.79,27750 +06057,STANDARD,0,"New Hartford",,"Bakersville, Nepaug",CT,"Litchfield County",America/New_York,,NA,US,41.87,-72.97,6320 +06058,STANDARD,0,Norfolk,,,CT,"Litchfield County",America/New_York,860,NA,US,41.99,-73.19,1430 +06059,"PO BOX",0,"North Canton",,,CT,"Litchfield County",America/New_York,860,NA,US,41.96,-72.94,138 +06060,STANDARD,0,"North Granby",,,CT,"Hartford County",America/New_York,860,NA,US,42.01,-72.84,2540 +06061,"PO BOX",0,"Pine Meadow",,,CT,"Litchfield County",America/New_York,,NA,US,41.88,-72.97,290 +06062,STANDARD,0,Plainville,,,CT,"Hartford County",America/New_York,860,NA,US,41.67,-72.86,15900 +06063,STANDARD,0,Barkhamsted,"Pleasant Valley, Pleasant Vly, Winsted",,CT,"Litchfield County",America/New_York,860,NA,US,41.93,-72.97,3170 +06064,"PO BOX",0,Poquonock,,,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.67,201 +06065,STANDARD,0,Riverton,,,CT,"Hartford County",America/New_York,,NA,US,41.95,-73.02,670 +06066,STANDARD,0,"Vernon Rockville","Vernon, Vernon Rockvl","Rockville, Talcottville, Turnpike",CT,"Tolland County",America/New_York,860,NA,US,41.84,-72.45,26130 +06067,STANDARD,0,"Rocky Hill",,,CT,"Hartford County",America/New_York,860,NA,US,41.66,-72.63,19330 +06068,STANDARD,0,Salisbury,,,CT,"Litchfield County",America/New_York,,NA,US,42.01,-73.42,1150 +06069,STANDARD,0,Sharon,,"Sharon Valley, West Woods",CT,"Litchfield County",America/New_York,860,NA,US,41.87,-73.47,1750 +06070,STANDARD,0,Simsbury,,Simbury,CT,"Hartford County",America/New_York,860,NA,US,41.88,-72.81,15100 +06071,STANDARD,0,Somers,,"Connecticut State Prison",CT,"Tolland County",America/New_York,860,NA,US,41.98,-72.45,8710 +06072,"PO BOX",0,Somersville,,,CT,"Tolland County",America/New_York,860,NA,US,41.99,-72.45,371 +06073,STANDARD,0,"South Glastonbury","S Glastonbury",,CT,"Hartford County",America/New_York,860,NA,US,41.65,-72.56,5730 +06074,STANDARD,0,"South Windsor",,"Bissell, Wapping",CT,"Hartford County",America/New_York,860,NA,US,41.81,-72.61,25910 +06075,"PO BOX",0,Stafford,,,CT,"Tolland County",America/New_York,860,NA,US,41.98,-72.28,183 +06076,STANDARD,0,"Stafford Springs","Stafford Spgs, Union","Stafford Sp, West Stafford",CT,"Tolland County",America/New_York,860,NA,US,41.95,-72.3,10610 +06077,"PO BOX",0,Staffordville,,,CT,"Tolland County",America/New_York,860,NA,US,41.98,-72.31,175 +06078,STANDARD,0,Suffield,,,CT,"Hartford County",America/New_York,860,NA,US,41.98,-72.65,9700 +06079,"PO BOX",0,Taconic,,"Twin Lakes",CT,"Litchfield County",America/New_York,860,NA,US,42.03,-73.4,111 +06080,UNIQUE,0,Suffield,,"Mcdougal Correctional Fclty",CT,"Hartford County",America/New_York,860,NA,US,41.98,-72.65,10 +06081,STANDARD,0,Tariffville,,,CT,"Hartford County",America/New_York,860,NA,US,41.91,-72.77,1240 +06082,STANDARD,0,Enfield,,"Hazardville, North Thompsonville, Scitico, Thompsonville",CT,"Hartford County",America/New_York,860,NA,US,41.96,-72.56,35820 +06083,"PO BOX",0,Enfield,,,CT,"Hartford County",America/New_York,860,NA,US,41.96,-72.56,586 +06084,STANDARD,0,Tolland,,,CT,"Tolland County",America/New_York,860,NA,US,41.88,-72.36,14100 +06085,STANDARD,0,Unionville,,"Lake Garda",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.88,6900 +06087,UNIQUE,1,Unionville,,"Accr A Data",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.88,0 +06088,STANDARD,0,"East Windsor",,"Scantic, Warehouse Point",CT,"Hartford County",America/New_York,860,NA,US,41.91,-72.59,4320 +06089,STANDARD,0,Weatogue,,,CT,"Hartford County",America/New_York,860,NA,US,41.84,-72.82,3310 +06090,STANDARD,0,"West Granby",,,CT,"Hartford County",America/New_York,860,NA,US,41.95,-72.86,1120 +06091,STANDARD,0,"West Hartland",,,CT,"Hartford County",America/New_York,860,NA,US,42,-72.97,178 +06092,STANDARD,0,"West Simsbury",,,CT,"Hartford County",America/New_York,860,NA,US,41.87,-72.84,4330 +06093,STANDARD,0,"West Suffield",,"W Suffield",CT,"Hartford County",America/New_York,860,NA,US,42,-72.72,3370 +06094,"PO BOX",0,"Winchester Center","Winchestr Ctr",Winchester,CT,"Litchfield County",America/New_York,,NA,US,41.92,-73.1,260 +06095,STANDARD,0,Windsor,,Wilson,CT,"Hartford County",America/New_York,860,NA,US,41.85,-72.65,27630 +06096,STANDARD,0,"Windsor Locks",,"Bradley International Airpor",CT,"Hartford County",America/New_York,860,NA,US,41.92,-72.65,11600 +06098,STANDARD,0,Winsted,"Winchester Center, Winchestr Ctr",Winchester,CT,"Litchfield County",America/New_York,860,NA,US,41.92,-73.06,8650 +06101,STANDARD,0,Hartford,,"Htd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06102,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06103,STANDARD,0,Hartford,,Central,CT,"Hartford County",America/New_York,860,NA,US,41.77,-72.67,1780 +06104,"PO BOX",0,Hartford,,"Main Office",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06105,STANDARD,0,Hartford,"West Hartford","Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.77,-72.71,13180 +06106,STANDARD,0,Hartford,,Htfd,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,28370 +06107,STANDARD,0,"West Hartford","Hartford, West Hartfrd","W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,18480 +06108,STANDARD,0,"East Hartford",Hartford,"E Hartford, East Htfd, Forbes Village, Hartfrd, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.78,-72.62,21010 +06109,STANDARD,0,Wethersfield,Hartford,"Hfd, Htfd, Weathersfield, Weth, Wethersfld",CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.67,25700 +06110,STANDARD,0,"West Hartford","Hartford, West Hartfrd","Corbins Corner, Elmwood, W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.73,-72.73,11650 +06111,STANDARD,0,Newington,Hartford,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.73,28480 +06112,STANDARD,0,Hartford,,"Blue Hills, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.7,16990 +06114,STANDARD,0,Hartford,,"Barry Square, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.74,-72.67,21600 +06115,"PO BOX",0,Hartford,,"Hfd, Htfd, Main Office",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,35 +06117,STANDARD,0,"West Hartford","Hartford, West Hartfrd","W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.76,14360 +06118,STANDARD,0,"East Hartford",Hartford,"E Hartford, E Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.61,24120 +06119,STANDARD,0,"West Hartford","Hartford, West Hartfrd","W Hartford, W Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.73,12470 +06120,STANDARD,0,Hartford,,"Unity Plaza",CT,"Hartford County",America/New_York,860,NA,US,41.79,-72.66,9030 +06123,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,268 +06126,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,931 +06127,"PO BOX",0,"West Hartford","Hartford, West Hartfrd","W Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,257 +06128,"PO BOX",0,"East Hartford",Hartford,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.61,266 +06129,"PO BOX",0,Wethersfield,Hartford,"Weathersfield, Wethersfld",CT,"Hartford County",America/New_York,860,NA,US,41.7,-72.67,201 +06131,"PO BOX",0,Newington,Hartford,,CT,"Hartford County",America/New_York,860,NA,US,41.68,-72.73,278 +06132,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,414 +06133,"PO BOX",0,"West Hartford","Hartford, West Hartfrd","Elmwood, W Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,396 +06134,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,254 +06137,"PO BOX",0,"West Hartford","Bishops Cor, Bishops Corner, Hartford, West Hartfrd","W Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.75,-72.74,120 +06138,"PO BOX",0,"East Hartford","Hartford, Silver Lane","E Hartford",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.61,342 +06140,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,78 +06141,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,153 +06142,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,45 +06143,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,159 +06144,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,149 +06145,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,18 +06146,"PO BOX",0,Hartford,,,CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,99 +06147,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,224 +06150,UNIQUE,0,Hartford,,"Bank Of America, Hartford Natl Bank, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06151,UNIQUE,0,Hartford,,"Bank Of America, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06152,STANDARD,0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06153,UNIQUE,0,Hartford,,"Allstate, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06154,UNIQUE,0,Hartford,,"C T Mutual Insurance Co, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06155,UNIQUE,0,Hartford,,"Hartford Insurance Group, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06156,UNIQUE,0,Hartford,,"Aetna Life, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06160,UNIQUE,0,Hartford,,"Aetna Insurance, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.77,-72.69,0 +06161,UNIQUE,0,Hartford,Wethersfield,"Ct Dept Of Motor Vehicles",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06167,UNIQUE,0,Hartford,,"A A R P Pharmacy, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06176,UNIQUE,0,Hartford,,"Hfd, Htfd, Irs",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06180,UNIQUE,0,Hartford,,"Bank Of America, Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06183,UNIQUE,0,Hartford,,"Hfd, Htfd, Travelers Ins",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06199,"PO BOX",0,Hartford,,"Hfd, Htfd",CT,"Hartford County",America/New_York,860,NA,US,41.76,-72.68,0 +06226,STANDARD,0,Willimantic,,"Chestnut Hill, Conantville, Perkins Corner",CT,"Windham County",America/New_York,860,NA,US,41.71,-72.21,12970 +06230,"PO BOX",0,Abington,,,CT,"Windham County",America/New_York,860,NA,US,41.85,-72.01,113 +06231,STANDARD,0,Amston,,,CT,"Tolland County",America/New_York,860,NA,US,41.62,-72.37,3770 +06232,STANDARD,0,Andover,,,CT,"Tolland County",America/New_York,860,NA,US,41.73,-72.36,3000 +06233,"PO BOX",0,Ballouville,Killingly,,CT,"Windham County",America/New_York,860,NA,US,41.87,-71.86,214 +06234,STANDARD,0,Brooklyn,,Bkln,CT,"Windham County",America/New_York,860,NA,US,41.78,-71.95,7140 +06235,STANDARD,0,Chaplin,"Mansfield Center, Mansfield Ctr, North Windham",,CT,"Windham County",America/New_York,860,NA,US,41.8,-72.11,1980 +06237,STANDARD,0,Columbia,,,CT,"Tolland County",America/New_York,860,NA,US,41.7,-72.3,4970 +06238,STANDARD,0,Coventry,,,CT,"Tolland County",America/New_York,860,NA,US,41.78,-72.3,11420 +06239,STANDARD,0,Danielson,Killingly,"East Brooklyn, South Killingly",CT,"Windham County",America/New_York,860,NA,US,41.8,-71.88,9170 +06241,STANDARD,0,Dayville,Killingly,"Killingly Center",CT,"Windham County",America/New_York,860,NA,US,41.85,-71.84,5610 +06242,STANDARD,0,Eastford,,,CT,"Windham County",America/New_York,860,NA,US,41.9,-72.08,1280 +06243,STANDARD,0,"East Killingly","E Killingly, Killingly",,CT,"Windham County",America/New_York,860,NA,US,41.84,-71.81,240 +06244,"PO BOX",0,"East Woodstock","E Woodstock",,CT,"Windham County",America/New_York,860,NA,US,41.98,-71.97,271 +06245,"PO BOX",0,Fabyan,,,CT,"Windham County",America/New_York,860,NA,US,42.01,-71.94,0 +06246,"PO BOX",0,"Grosvenor Dale","Grosvenor Dl",,CT,"Windham County",America/New_York,860,NA,US,41.96,-71.89,220 +06247,STANDARD,0,Hampton,Scotland,,CT,"Windham County",America/New_York,860,NA,US,41.78,-72.05,2130 +06248,STANDARD,0,Hebron,,,CT,"Tolland County",America/New_York,860,NA,US,41.65,-72.36,5280 +06249,STANDARD,0,Lebanon,,Exeter,CT,"New London County",America/New_York,860,NA,US,41.66,-72.24,6640 +06250,STANDARD,0,"Mansfield Center","Mansfield Ctr","Mansfield, Mansfield Hollow, West Ashford",CT,"Tolland County",America/New_York,860,NA,US,41.77,-72.19,4400 +06251,"PO BOX",0,"Mansfield Depot","Mansfield Dpt",Merrow,CT,"Tolland County",America/New_York,860,NA,US,41.77,-72.2,74 +06254,STANDARD,0,"North Franklin","N Franklin","Franklin, Franklin Hill",CT,"New London County",America/New_York,860,NA,US,41.61,-72.14,1740 +06255,STANDARD,0,"North Grosvenordale","N Grosvenordl","North Grosvendale",CT,"Windham County",America/New_York,860,NA,US,41.98,-71.9,3930 +06256,STANDARD,0,"North Windham",,"South Chaplin",CT,"Windham County",America/New_York,860,NA,US,41.73,-72.16,1870 +06258,"PO BOX",0,Pomfret,,,CT,"Windham County",America/New_York,860,NA,US,41.9,-71.96,503 +06259,STANDARD,0,"Pomfret Center","Pomfret Ctr","Elliot, Pomfret Landing, Ponfret Center",CT,"Windham County",America/New_York,860,NA,US,41.86,-71.99,3530 +06260,STANDARD,0,Putnam,,"East Putnam, Laurel Hill, Putman, Putnam Heights, Putnm, Rhodesville, Sawyer District",CT,"Windham County",America/New_York,860,NA,US,41.91,-71.9,7800 +06262,STANDARD,0,Quinebaug,,,CT,"Windham County",America/New_York,860,NA,US,42.02,-71.95,500 +06263,"PO BOX",0,Rogers,Killingly,,CT,"Windham County",America/New_York,860,NA,US,41.84,-71.9,451 +06264,STANDARD,0,Scotland,,,CT,"Windham County",America/New_York,860,NA,US,41.69,-72.1,550 +06265,STANDARD,0,"South Willington","S Willington",,CT,"Tolland County",America/New_York,860,NA,US,41.89,-72.26,0 +06266,STANDARD,0,"South Windham",,,CT,"Windham County",America/New_York,860,NA,US,41.67,-72.17,510 +06267,"PO BOX",0,"South Woodstock","S Woodstock",,CT,"Windham County",America/New_York,860,NA,US,41.92,-71.95,258 +06268,STANDARD,0,"Storrs Mansfield","Storrs, Storrs Manfld","Gurleyville, Mansfield",CT,"Tolland County",America/New_York,860,NA,US,41.8,-72.25,5490 +06269,UNIQUE,0,"Storrs Mansfield","Storrs, Storrs Manfld","University Of Ct",CT,"Tolland County",America/New_York,860,NA,US,41.8,-72.29,337 +06277,STANDARD,0,Thompson,,"East Thompson, Mechanicsville",CT,"Windham County",America/New_York,860,NA,US,41.95,-71.86,3620 +06278,STANDARD,0,Ashford,Warrenville,,CT,"Windham County",America/New_York,860,NA,US,41.9,-72.17,3960 +06279,STANDARD,0,Willington,,"East Willington, W Willington",CT,"Tolland County",America/New_York,860,NA,US,41.86,-72.27,4660 +06280,STANDARD,0,Windham,,,CT,"Windham County",America/New_York,860,NA,US,41.7,-72.16,2730 +06281,STANDARD,0,Woodstock,,,CT,"Windham County",America/New_York,860,NA,US,41.95,-71.98,6270 +06282,STANDARD,0,"Woodstock Valley","Woodstock Vly",,CT,"Windham County",America/New_York,860,NA,US,41.94,-72.08,1100 +06320,STANDARD,0,"New London",,"Ft Trumbull, United States Coast Guard, Us Coast Guard Acad",CT,"New London County",America/New_York,860,NA,US,41.35,-72.1,20430 +06330,STANDARD,0,Baltic,,Sprague,CT,"New London County",America/New_York,860,NA,US,41.64,-72.07,2600 +06331,STANDARD,0,Canterbury,,"South Canterbury",CT,"Windham County",America/New_York,860,NA,US,41.7,-72,4790 +06332,"PO BOX",0,"Central Village","Central Vlg",,CT,"Windham County",America/New_York,860,NA,US,41.73,-71.9,943 +06333,STANDARD,0,"East Lyme",,,CT,"New London County",America/New_York,860,NA,US,41.38,-72.24,7060 +06334,STANDARD,0,Bozrah,,Fitchville,CT,"New London County",America/New_York,860,NA,US,41.54,-72.17,2200 +06335,STANDARD,0,"Gales Ferry",,,CT,"New London County",America/New_York,860,NA,US,41.43,-72.06,6470 +06336,STANDARD,0,Gilman,,,CT,"New London County",America/New_York,860,NA,US,41.58,-72.2,96 +06338,"PO BOX",0,Mashantucket,Ledyard,,CT,"New London County",America/New_York,860,NA,US,41.35,-72.09,200 +06339,STANDARD,0,Ledyard,"Gales Ferry",,CT,"New London County",America/New_York,860,NA,US,41.44,-71.99,7890 +06340,STANDARD,0,Groton,,"Borough, Center Groton, Groton Long Point, Jupiter Point, Noank, Poquonock Bridge",CT,"New London County",America/New_York,860,NA,US,41.32,-72.07,23870 +06349,"PO BOX",0,Groton,,"Naval Submarine Base, Navsub Base, Sub Base New London, Submarine Base",CT,"New London County",America/New_York,860,NA,US,41.32,-72.07,423 +06350,"PO BOX",0,Hanover,,,CT,"New London County",America/New_York,860,NA,US,41.65,-72.07,283 +06351,STANDARD,0,"Jewett City","Griswold, Lisbon","Hopeville, Preston",CT,"New London County",America/New_York,860,NA,US,41.6,-71.98,14230 +06353,STANDARD,0,Montville,,,CT,"New London County",America/New_York,860,NA,US,41.46,-72.15,290 +06354,STANDARD,0,Moosup,,,CT,"Windham County",America/New_York,860,NA,US,41.71,-71.87,4760 +06355,STANDARD,0,Mystic,,"Masons Island",CT,"New London County",America/New_York,860,NA,US,41.35,-71.97,11610 +06357,STANDARD,0,Niantic,,,CT,"New London County",America/New_York,860,NA,US,41.32,-72.22,9730 +06359,STANDARD,0,"North Stonington","N Stonington",,CT,"New London County",America/New_York,860,NA,US,41.44,-71.89,4870 +06360,STANDARD,0,Norwich,,"Norwichtown, Occum, Poquetanuck",CT,"New London County",America/New_York,860,NA,US,41.55,-72.08,30860 +06365,STANDARD,0,Preston,Norwich,,CT,"New London County",America/New_York,860,NA,US,41.55,-71.99,4420 +06370,STANDARD,0,Oakdale,,Chesterfield,CT,"New London County",America/New_York,860,NA,US,41.46,-72.18,6740 +06371,STANDARD,0,"Old Lyme",Lyme,"North Lyme",CT,"New London County",America/New_York,860,NA,US,41.31,-72.34,8920 +06372,"PO BOX",0,"Old Mystic",,,CT,"New London County",America/New_York,860,NA,US,41.36,-71.98,338 +06373,"PO BOX",0,Oneco,,,CT,"Windham County",America/New_York,860,NA,US,41.69,-71.81,574 +06374,STANDARD,0,Plainfield,,,CT,"Windham County",America/New_York,860,NA,US,41.67,-71.92,6830 +06375,STANDARD,0,"Quaker Hill",,,CT,"New London County",America/New_York,860,NA,US,41.4,-72.12,3530 +06376,"PO BOX",0,"South Lyme",,"Point O Woods",CT,"New London County",America/New_York,860,NA,US,41.29,-72.25,182 +06377,STANDARD,0,Sterling,,"North Sterling",CT,"Windham County",America/New_York,860,NA,US,41.7,-71.83,2470 +06378,STANDARD,0,Stonington,,"Lords Point, Shawondassee",CT,"New London County",America/New_York,860,NA,US,41.33,-71.9,4820 +06379,STANDARD,0,Pawcatuck,,,CT,"New London County",America/New_York,860,NA,US,41.37,-71.85,8000 +06380,STANDARD,0,Taftville,,,CT,"New London County",America/New_York,860,NA,US,41.56,-72.05,2280 +06382,STANDARD,0,Uncasville,,,CT,"New London County",America/New_York,860,NA,US,41.45,-72.12,9100 +06383,"PO BOX",0,Versailles,,,CT,"New London County",America/New_York,860,NA,US,41.58,-71.94,195 +06384,STANDARD,0,Voluntown,Glasgo,,CT,"New London County",America/New_York,860,NA,US,41.59,-71.85,2450 +06385,STANDARD,0,Waterford,,"Jordan Village, Millstone",CT,"New London County",America/New_York,860,NA,US,41.34,-72.14,14630 +06386,UNIQUE,1,Waterford,,"Bureau Business Practice, Bureau Of Business Pr",CT,"New London County",America/New_York,860,NA,US,41.33,-72.13,0 +06387,"PO BOX",0,Wauregan,,"West Wauregan",CT,"Windham County",America/New_York,860,NA,US,41.74,-71.91,714 +06388,"PO BOX",0,"West Mystic",Mystic,,CT,"New London County",America/New_York,860,NA,US,41.35,-71.98,125 +06389,STANDARD,0,Yantic,,,CT,"New London County",America/New_York,860,NA,US,41.56,-72.13,210 +06390,"PO BOX",0,"Fishers Island","Fishers Isle",,NY,"Suffolk County",America/New_York,631,NA,US,41.27,-71.99,286 +06401,STANDARD,0,Ansonia,,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.34,-73.06,16380 +06403,STANDARD,0,"Beacon Falls",,,CT,"New Haven County",America/New_York,203,NA,US,41.44,-73.04,5590 +06404,"PO BOX",0,Botsford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.39,-73.31,151 +06405,STANDARD,0,Branford,,,CT,"New Haven County",America/New_York,203,NA,US,41.28,-72.81,25270 +06408,UNIQUE,0,Cheshire,,"Macys By Mail",CT,"New Haven County",America/New_York,203,NA,US,41.5,-72.9,0 +06409,STANDARD,0,Centerbrook,,,CT,"Middlesex County",America/New_York,860,NA,US,41.35,-72.42,620 +06410,STANDARD,0,Cheshire,,,CT,"New Haven County",America/New_York,203,NA,US,41.5,-72.9,26110 +06411,UNIQUE,0,Cheshire,,"Bloomingdales By Mail Ltd",CT,"New Haven County",America/New_York,203,NA,US,41.5,-72.9,0 +06412,STANDARD,0,Chester,,,CT,"Middlesex County",America/New_York,860,NA,US,41.4,-72.45,3370 +06413,STANDARD,0,Clinton,,,CT,"Middlesex County",America/New_York,860,NA,US,41.27,-72.53,12010 +06414,"PO BOX",0,Cobalt,,,CT,"Middlesex County",America/New_York,860,NA,US,41.57,-72.55,406 +06415,STANDARD,0,Colchester,,,CT,"New London County",America/New_York,860,NA,US,41.57,-72.33,15450 +06416,STANDARD,0,Cromwell,,,CT,"Middlesex County",America/New_York,860,NA,US,41.6,-72.63,13330 +06417,STANDARD,0,"Deep River",,,CT,"Middlesex County",America/New_York,860,NA,US,41.39,-72.43,4010 +06418,STANDARD,0,Derby,,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.32,-73.08,10750 +06419,STANDARD,0,Killingworth,"Deep River",,CT,"Middlesex County",America/New_York,860,NA,US,41.35,-72.56,6150 +06420,STANDARD,0,Salem,Colchester,,CT,"New London County",America/New_York,860,NA,US,41.48,-72.27,4090 +06422,STANDARD,0,Durham,,,CT,"Middlesex County",America/New_York,860,NA,US,41.47,-72.68,7070 +06423,STANDARD,0,"East Haddam",,,CT,"Middlesex County",America/New_York,860,NA,US,41.45,-72.46,4560 +06424,STANDARD,0,"East Hampton","Haddam Neck",,CT,"Middlesex County",America/New_York,860,NA,US,41.57,-72.49,11710 +06426,STANDARD,0,Essex,,,CT,"Middlesex County",America/New_York,860,NA,US,41.35,-72.39,3100 +06437,STANDARD,0,Guilford,,,CT,"New Haven County",America/New_York,203,NA,US,41.28,-72.67,21010 +06438,STANDARD,0,Haddam,,,CT,"Middlesex County",America/New_York,860,NA,US,41.45,-72.5,2450 +06439,"PO BOX",0,Hadlyme,,,CT,"New London County",America/New_York,860,NA,US,41.4,-72.34,344 +06440,"PO BOX",0,Hawleyville,,,CT,"Fairfield County",America/New_York,203,NA,US,41.43,-73.35,97 +06441,STANDARD,0,Higganum,,,CT,"Middlesex County",America/New_York,860,NA,US,41.49,-72.55,5300 +06442,STANDARD,0,Ivoryton,,,CT,"Middlesex County",America/New_York,860,NA,US,41.34,-72.43,2540 +06443,STANDARD,0,Madison,,,CT,"New Haven County",America/New_York,203,NA,US,41.27,-72.59,17210 +06444,"PO BOX",0,Marion,,,CT,"Hartford County",America/New_York,860,NA,US,41.56,-72.92,759 +06447,STANDARD,0,Marlborough,,Marlboro,CT,"Hartford County",America/New_York,860,NA,US,41.63,-72.45,5960 +06450,STANDARD,0,Meriden,,,CT,"New Haven County",America/New_York,203,NA,US,41.53,-72.79,31140 +06451,STANDARD,0,Meriden,,,CT,"New Haven County",America/New_York,203,NA,US,41.54,-72.82,21540 +06454,UNIQUE,1,Meriden,"Travlers Insurance",,CT,"New Haven County",America/New_York,203,NA,US,41.54,-72.8,0 +06455,STANDARD,0,Middlefield,,,CT,"Middlesex County",America/New_York,860,NA,US,41.5,-72.71,2980 +06456,"PO BOX",0,"Middle Haddam",,,CT,"Middlesex County",America/New_York,860,NA,US,41.52,-72.55,437 +06457,STANDARD,0,Middletown,,,CT,"Middlesex County",America/New_York,860,NA,US,41.54,-72.65,37480 +06459,UNIQUE,0,Middletown,,Wesleyan,CT,"Middlesex County",America/New_York,860,NA,US,41.54,-72.65,195 +06460,STANDARD,0,Milford,,,CT,"New Haven County",America/New_York,203,NA,US,41.22,-73.06,34070 +06461,STANDARD,0,Milford,,,CT,"New Haven County",America/New_York,203,NA,US,41.23,-73.08,13870 +06467,"PO BOX",0,Milldale,,,CT,"Hartford County",America/New_York,860,NA,US,41.57,-72.9,477 +06468,STANDARD,0,Monroe,,"Stepney, Upper Stepney",CT,"Fairfield County",America/New_York,203,NA,US,41.36,-73.2,18560 +06469,STANDARD,0,Moodus,,,CT,"Middlesex County",America/New_York,860,NA,US,41.5,-72.45,2950 +06470,STANDARD,0,Newtown,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.41,-73.31,15340 +06471,STANDARD,0,"North Branford","N Branford",,CT,"New Haven County",America/New_York,203,NA,US,41.33,-72.77,6830 +06472,STANDARD,0,Northford,,,CT,"New Haven County",America/New_York,203,NA,US,41.38,-72.77,6190 +06473,STANDARD,0,"North Haven",,"No Haven",CT,"New Haven County",America/New_York,203,NA,US,41.38,-72.85,23130 +06474,"PO BOX",0,"North Westchester","N Westchester",,CT,"New London County",America/New_York,860,NA,US,41.56,-72.34,0 +06475,STANDARD,0,"Old Saybrook",,Fenwick,CT,"Middlesex County",America/New_York,860,NA,US,41.29,-72.36,9750 +06477,STANDARD,0,Orange,,,CT,"New Haven County",America/New_York,203,NA,US,41.27,-73.02,13950 +06478,STANDARD,0,Oxford,Seymour,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.42,-73.11,12260 +06479,STANDARD,0,Plantsville,,,CT,"Hartford County",America/New_York,860,NA,US,41.57,-72.91,9100 +06480,STANDARD,0,Portland,,,CT,"Middlesex County",America/New_York,860,NA,US,41.58,-72.62,8650 +06481,STANDARD,0,Rockfall,,,CT,"Middlesex County",America/New_York,860,NA,US,41.53,-72.69,1080 +06482,STANDARD,0,"Sandy Hook",,,CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.24,10330 +06483,STANDARD,0,Seymour,,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.4,-73.06,15180 +06484,STANDARD,0,Shelton,Huntington,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.3,-73.13,38080 +06487,"PO BOX",0,"South Britain",,,CT,"New Haven County",America/New_York,203,NA,US,41.47,-73.23,59 +06488,STANDARD,0,Southbury,,,CT,"New Haven County",America/New_York,203,NA,US,41.48,-73.22,18010 +06489,STANDARD,0,Southington,,,CT,"Hartford County",America/New_York,860,NA,US,41.6,-72.88,30650 +06491,"PO BOX",0,Stevenson,,,CT,"Fairfield County",America/New_York,203,NA,US,41.33,-73.23,88 +06492,STANDARD,0,Wallingford,Yalesville,,CT,"New Haven County",America/New_York,203,NA,US,41.44,-72.81,40750 +06493,UNIQUE,0,Wallingford,,"Ct Gen Med Claims Office, Publishers Clearing House",CT,"New Haven County",America/New_York,203,NA,US,41.44,-72.81,0 +06494,UNIQUE,0,Wallingford,,"Fosdick Corp",CT,"New Haven County",America/New_York,203,NA,US,41.44,-72.81,0 +06495,UNIQUE,0,Wallingford,,"International Masters Pub",CT,"New Haven County",America/New_York,203,NA,US,41.46,-72.8,0 +06497,STANDARD,1,Stratford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.19,-73.12,71 +06498,STANDARD,0,Westbrook,,,CT,"Middlesex County",America/New_York,860,NA,US,41.28,-72.45,5950 +06501,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,65 +06502,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,123 +06503,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,68 +06504,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,69 +06505,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,61 +06506,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,26 +06507,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06508,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06509,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,23 +06510,STANDARD,0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,"203,475",NA,US,41.31,-72.93,2040 +06511,STANDARD,0,"New Haven",Hamden,,CT,"New Haven County",America/New_York,"203,475",NA,US,41.31,-72.92,33990 +06512,STANDARD,0,"East Haven","New Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.29,-72.86,25330 +06513,STANDARD,0,"New Haven","East Haven","E Haven, Fair Haven, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.32,-72.87,30630 +06514,STANDARD,0,Hamden,"New Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.38,-72.94,22620 +06515,STANDARD,0,"New Haven",,"N Haven, Westville",CT,"New Haven County",America/New_York,203,NA,US,41.33,-72.97,13000 +06516,STANDARD,0,"West Haven","W Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.27,-72.96,45210 +06517,STANDARD,0,Hamden,"New Haven, Whitneyville",,CT,"New Haven County",America/New_York,203,NA,US,41.35,-72.91,13280 +06518,STANDARD,0,Hamden,"New Haven","Centerville Mount Carmel, Mount Carmel, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.43,-72.91,12540 +06519,STANDARD,0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,"203,475",NA,US,41.29,-72.93,11730 +06520,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,552 +06521,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06524,STANDARD,0,Bethany,"New Haven",,CT,"New Haven County",America/New_York,203,NA,US,41.42,-72.99,5190 +06525,STANDARD,0,Woodbridge,"New Haven","N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.36,-73,8800 +06530,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,101 +06531,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,99 +06532,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,136 +06533,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,64 +06534,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,23 +06535,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06536,"PO BOX",0,"New Haven",,"N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,20 +06537,UNIQUE,0,"New Haven",,"Advertising Distr Co, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06538,UNIQUE,0,"New Haven",,"Advertising Distr Co, N Haven",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06540,UNIQUE,0,"New Haven",,"Conn Bank & Trust Co",CT,"New Haven County",America/New_York,203,NA,US,41.31,-72.92,0 +06601,"PO BOX",0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,861 +06602,"PO BOX",0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06604,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.18,-73.19,20760 +06605,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.16,-73.22,18640 +06606,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.21,-73.21,39170 +06607,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.17,-73.17,6490 +06608,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.19,-73.18,11050 +06610,STANDARD,0,Bridgeport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.21,-73.16,19240 +06611,STANDARD,0,Trumbull,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.25,-73.2,35550 +06612,STANDARD,0,Easton,,,CT,"Fairfield County",America/New_York,203,NA,US,41.24,-73.31,7210 +06614,STANDARD,0,Stratford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.2,-73.13,31250 +06615,STANDARD,0,Stratford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.17,-73.13,16850 +06650,STANDARD,1,Bridgeport,,"Stratmar Fulfillment Corp",CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06673,UNIQUE,0,Bridgeport,,"Promotion Marketing Ser Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06699,UNIQUE,0,Bridgeport,,"Controlled Distribution",CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.19,0 +06701,STANDARD,0,Waterbury,,"Us Postal Service, Wtby",CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,31 +06702,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,"203,475",NA,US,41.56,-73.05,1850 +06703,"PO BOX",0,Waterbury,,,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,135 +06704,STANDARD,0,Waterbury,,"Plaza, Wtby",CT,"New Haven County",America/New_York,203,NA,US,41.59,-73.04,21590 +06705,STANDARD,0,Waterbury,Wolcott,"East End, Wtby",CT,"New Haven County",America/New_York,203,NA,US,41.55,-72.99,22420 +06706,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,11640 +06708,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,"203,475",NA,US,41.55,-73.07,24840 +06710,STANDARD,0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,"475,203",NA,US,41.57,-73.05,8480 +06712,STANDARD,0,Prospect,Waterbury,,CT,"New Haven County",America/New_York,203,NA,US,41.49,-72.97,9130 +06716,STANDARD,0,Wolcott,Waterbury,,CT,"New Haven County",America/New_York,203,NA,US,41.61,-72.98,15020 +06720,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,320 +06721,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,278 +06722,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,182 +06723,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,113 +06724,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,228 +06725,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,0 +06726,"PO BOX",0,Waterbury,,Wtby,CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,0 +06749,UNIQUE,0,Waterbury,,"Uniroyal Inc",CT,"New Haven County",America/New_York,203,NA,US,41.55,-73.03,0 +06750,STANDARD,0,Bantam,,,CT,"Litchfield County",America/New_York,860,NA,US,41.72,-73.24,1160 +06751,STANDARD,0,Bethlehem,,,CT,"Litchfield County",America/New_York,,NA,US,41.63,-73.21,3140 +06752,STANDARD,0,Bridgewater,,,CT,"Litchfield County",America/New_York,,NA,US,41.52,-73.36,1490 +06753,"PO BOX",0,Cornwall,,,CT,"Litchfield County",America/New_York,,NA,US,41.84,-73.33,168 +06754,STANDARD,0,"Cornwall Bridge","Cornwall Brg, Warren",,CT,"Litchfield County",America/New_York,,NA,US,41.81,-73.37,1360 +06755,STANDARD,0,Gaylordsville,,,CT,"Litchfield County",America/New_York,,NA,US,41.64,-73.48,1010 +06756,STANDARD,0,Goshen,,,CT,"Litchfield County",America/New_York,860,NA,US,41.85,-73.23,2610 +06757,STANDARD,0,Kent,,,CT,"Litchfield County",America/New_York,860,NA,US,41.72,-73.47,1890 +06758,STANDARD,0,Lakeside,,,CT,"Litchfield County",America/New_York,,NA,US,41.68,-73.23,180 +06759,STANDARD,0,Litchfield,,,CT,"Litchfield County",America/New_York,860,NA,US,41.74,-73.19,5080 +06762,STANDARD,0,Middlebury,,,CT,"New Haven County",America/New_York,203,NA,US,41.52,-73.12,7480 +06763,STANDARD,0,Morris,,,CT,"Litchfield County",America/New_York,,NA,US,41.68,-73.17,1830 +06770,STANDARD,0,Naugatuck,,"Union City",CT,"New Haven County",America/New_York,"203,475",NA,US,41.48,-73.05,27740 +06776,STANDARD,0,"New Milford",,Northville,CT,"Litchfield County",America/New_York,860,NA,US,41.58,-73.4,24510 +06777,STANDARD,0,"New Preston Marble Dale","New Preston, Warren, Washington Depot, Washington Dt","Marble Dale, New Preston Marbledale, New Preston-Marble Dale, Washington",CT,"Litchfield County",America/New_York,860,NA,US,41.69,-73.34,1370 +06778,STANDARD,0,Northfield,Thomaston,,CT,"Litchfield County",America/New_York,860,NA,US,41.71,-73.11,1200 +06779,STANDARD,0,Oakville,Watertown,,CT,"Litchfield County",America/New_York,860,NA,US,41.59,-73.08,7240 +06781,"PO BOX",0,Pequabuck,,,CT,"Litchfield County",America/New_York,,NA,US,41.67,-73,150 +06782,STANDARD,0,Plymouth,,,CT,"Litchfield County",America/New_York,,NA,US,41.65,-73.04,2140 +06783,STANDARD,0,Roxbury,,,CT,"Litchfield County",America/New_York,,NA,US,41.55,-73.3,1830 +06784,STANDARD,0,Sherman,,,CT,"Fairfield County",America/New_York,203,NA,US,41.58,-73.5,3300 +06785,STANDARD,0,"South Kent",,,CT,"Litchfield County",America/New_York,,NA,US,41.69,-73.46,630 +06786,STANDARD,0,Terryville,,,CT,"Litchfield County",America/New_York,,NA,US,41.67,-73,8480 +06787,STANDARD,0,Thomaston,,,CT,"Litchfield County",America/New_York,860,NA,US,41.67,-73.07,6930 +06790,STANDARD,0,Torrington,,,CT,"Litchfield County",America/New_York,860,NA,US,41.83,-73.12,29980 +06791,STANDARD,0,Harwinton,Torrington,,CT,"Litchfield County",America/New_York,860,NA,US,41.75,-73.05,5280 +06792,UNIQUE,0,Torrington,Harwinton,"Mbi Inc",CT,"Litchfield County",America/New_York,,NA,US,41.77,-73.06,0 +06793,STANDARD,0,Washington,"Washington Depot, Washington Dt","Washington Green",CT,"Litchfield County",America/New_York,860,NA,US,41.63,-73.28,880 +06794,STANDARD,0,"Washington Depot","Washington Dt",Washington,CT,"Litchfield County",America/New_York,860,NA,US,41.65,-73.32,990 +06795,STANDARD,0,Watertown,,Oakville,CT,"Litchfield County",America/New_York,860,NA,US,41.61,-73.12,13090 +06796,STANDARD,0,"West Cornwall",,,CT,"Litchfield County",America/New_York,860,NA,US,41.87,-73.33,780 +06798,STANDARD,0,Woodbury,,,CT,"Litchfield County",America/New_York,203,NA,US,41.56,-73.2,8840 +06801,STANDARD,0,Bethel,,,CT,"Fairfield County",America/New_York,203,NA,US,41.37,-73.41,18510 +06804,STANDARD,0,Brookfield,"Brookfld Ctr","Brookfield Center",CT,"Fairfield County",America/New_York,203,NA,US,41.46,-73.39,16840 +06807,STANDARD,0,"Cos Cob",,,CT,"Fairfield County",America/New_York,203,NA,US,41.06,-73.59,7050 +06810,STANDARD,0,Danbury,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.4,-73.47,44870 +06811,STANDARD,0,Danbury,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.42,-73.48,26930 +06812,STANDARD,0,"New Fairfield",,,CT,"Fairfield County",America/New_York,203,NA,US,41.48,-73.48,13130 +06813,"PO BOX",0,Danbury,,,CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,1183 +06814,UNIQUE,1,Danbury,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,0 +06816,UNIQUE,1,Danbury,,"Grolier Entrprz Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,0 +06817,UNIQUE,1,Danbury,,"Union Carbide Corp",CT,"Fairfield County",America/New_York,203,NA,US,41.4,-73.47,0 +06820,STANDARD,0,Darien,,"Noroton, Noroton Heights, Tokeneke",CT,"Fairfield County",America/New_York,203,NA,US,41.05,-73.47,21290 +06824,STANDARD,0,Fairfield,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.13,-73.28,30410 +06825,STANDARD,0,Fairfield,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.2,-73.24,19370 +06828,STANDARD,0,Fairfield,,"General Electric",CT,"Fairfield County",America/New_York,203,NA,US,41.13,-73.28,0 +06829,"PO BOX",0,Georgetown,,,CT,"Fairfield County",America/New_York,203,NA,US,41.24,-73.43,284 +06830,STANDARD,0,Greenwich,,"Belle Haven",CT,"Fairfield County",America/New_York,203,NA,US,41.06,-73.63,21340 +06831,STANDARD,0,Greenwich,,Glenville,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.66,13360 +06832,UNIQUE,1,Greenwich,Brm,,CT,"Fairfield County",America/New_York,203,NA,US,41.02,-73.62,0 +06836,"PO BOX",0,Greenwich,,,CT,"Fairfield County",America/New_York,203,NA,US,41.06,-73.63,288 +06838,"PO BOX",0,"Greens Farms",,,CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.31,191 +06840,STANDARD,0,"New Canaan",,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.49,19340 +06842,UNIQUE,1,"New Canaan",,"V I P Serv Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.49,0 +06850,STANDARD,0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.13,-73.45,18580 +06851,STANDARD,0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.4,25470 +06852,"PO BOX",0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,469 +06853,STANDARD,0,Norwalk,,Rowayton,CT,"Fairfield County",America/New_York,203,NA,US,41.07,-73.44,3530 +06854,STANDARD,0,Norwalk,,"South Norwalk",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,25510 +06855,STANDARD,0,Norwalk,,"East Norwalk",CT,"Fairfield County",America/New_York,203,NA,US,41.08,-73.4,7210 +06856,"PO BOX",0,Norwalk,,,CT,"Fairfield County",America/New_York,203,NA,US,41.11,-73.42,420 +06857,UNIQUE,0,Norwalk,,"Mbi Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06858,UNIQUE,0,Norwalk,,"Setan Industries",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06859,UNIQUE,1,Norwalk,,"Perkin Elmer Corp",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06860,UNIQUE,0,Norwalk,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.42,0 +06870,STANDARD,0,"Old Greenwich",,,CT,"Fairfield County",America/New_York,203,NA,US,41.03,-73.56,7230 +06875,"PO BOX",0,"Redding Center","Redding Ctr",,CT,"Fairfield County",America/New_York,203,NA,US,41.3,-73.38,107 +06876,"PO BOX",0,"Redding Ridge",,,CT,"Fairfield County",America/New_York,203,NA,US,41.3,-73.38,171 +06877,STANDARD,0,Ridgefield,,,CT,"Fairfield County",America/New_York,203,NA,US,41.27,-73.49,24340 +06878,STANDARD,0,Riverside,,,CT,"Fairfield County",America/New_York,203,NA,US,41.03,-73.58,8040 +06879,UNIQUE,0,Ridgefield,,"Promotion Systems Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.27,-73.49,0 +06880,STANDARD,0,Westport,,Saugatuck,CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,26050 +06881,"PO BOX",0,Westport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,222 +06883,STANDARD,0,Weston,,,CT,"Fairfield County",America/New_York,203,NA,US,41.22,-73.37,9950 +06888,UNIQUE,0,Westport,,"Promotional Dev Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,0 +06889,UNIQUE,0,Westport,,"Websters Unified",CT,"Fairfield County",America/New_York,203,NA,US,41.12,-73.34,0 +06890,STANDARD,0,Southport,,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.28,4360 +06896,STANDARD,0,Redding,"West Redding",,CT,"Fairfield County",America/New_York,203,NA,US,41.3,-73.38,8210 +06897,STANDARD,0,Wilton,,,CT,"Fairfield County",America/New_York,203,NA,US,41.18,-73.42,18040 +06901,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,"475,203",NA,US,41.05,-73.54,7270 +06902,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.06,-73.54,59640 +06903,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.14,-73.57,13830 +06904,"PO BOX",0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,890 +06905,STANDARD,0,Stamford,Ridgeway,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,20230 +06906,STANDARD,0,Stamford,,Glenbrook,CT,"Fairfield County",America/New_York,"203,475",NA,US,41.07,-73.52,8960 +06907,STANDARD,0,Stamford,,Springdale,CT,"Fairfield County",America/New_York,203,NA,US,41.1,-73.52,8940 +06910,STANDARD,0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06911,"PO BOX",0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,398 +06912,"PO BOX",0,Stamford,,,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06913,UNIQUE,0,Stamford,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06914,UNIQUE,0,Stamford,,"Shared Zip For Brm",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06920,UNIQUE,1,Stamford,,"Conn National Bank",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06921,UNIQUE,1,Stamford,,"Champion International",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06922,UNIQUE,1,Stamford,,"Clairol Co",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06925,UNIQUE,1,Stamford,,"Conn Bank & Trust",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06926,UNIQUE,0,Stamford,,"Pitney Bowes Inc",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06927,UNIQUE,0,Stamford,,Gecc,CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +06928,UNIQUE,1,Stamford,,"International Masters Pub",CT,"Fairfield County",America/New_York,203,NA,US,41.09,-73.55,0 +07001,STANDARD,0,Avenel,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.58,-74.27,13750 +07002,STANDARD,0,Bayonne,,"Bergen Point, Pamrapo",NJ,"Hudson County",America/New_York,"201,551",NA,US,40.66,-74.11,60150 +07003,STANDARD,0,Bloomfield,,"Brookdale, Grove, North Center",NJ,"Essex County",America/New_York,"862,973",NA,US,40.81,-74.18,46850 +07004,STANDARD,0,Fairfield,,,NJ,"Essex County",America/New_York,862,NA,US,40.88,-74.3,7900 +07005,STANDARD,0,Boonton,"Boonton Township, Boonton Twp","Lake Intervale, Lk Intervale, Lyonsville, Meriden, Powerville, Rockaway Valley, Taylortown",NJ,"Morris County",America/New_York,"862,973",NA,US,40.9,-74.4,15070 +07006,STANDARD,0,Caldwell,"N Caldwell, North Caldwell, W Caldwell, West Caldwell",,NJ,"Essex County",America/New_York,"201,862,973",NA,US,40.85,-74.28,24720 +07007,"PO BOX",0,Caldwell,"West Caldwell",,NJ,"Essex County",America/New_York,862,NA,US,40.83,-74.27,134 +07008,STANDARD,0,Carteret,,"West Carteret",NJ,"Middlesex County",America/New_York,732,NA,US,40.58,-74.22,23040 +07009,STANDARD,0,"Cedar Grove",,Overbrook,NJ,"Essex County",America/New_York,973,NA,US,40.85,-74.22,12030 +07010,STANDARD,0,"Cliffside Park","Cliffside Pk","Cliff Park",NJ,"Bergen County",America/New_York,"201,551",NA,US,40.82,-73.99,21420 +07011,STANDARD,0,Clifton,,"Main Avenue Station",NJ,"Passaic County",America/New_York,862,NA,US,40.88,-74.14,38600 +07012,STANDARD,0,Clifton,,Allwood,NJ,"Passaic County",America/New_York,862,NA,US,40.85,-74.16,12590 +07013,STANDARD,0,Clifton,,,NJ,"Passaic County",America/New_York,862,NA,US,40.86,-74.15,26680 +07014,STANDARD,0,Clifton,,Delawanna,NJ,"Passaic County",America/New_York,862,NA,US,40.83,-74.14,5370 +07015,"PO BOX",0,Clifton,,,NJ,"Passaic County",America/New_York,862,NA,US,40.86,-74.15,914 +07016,STANDARD,0,Cranford,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.3,22870 +07017,STANDARD,0,"East Orange",,"Ampere, Doddtown",NJ,"Essex County",America/New_York,862,NA,US,40.77,-74.21,30610 +07018,STANDARD,0,"East Orange",,"Va Hospital",NJ,"Essex County",America/New_York,862,NA,US,40.76,-74.21,24050 +07019,"PO BOX",0,"East Orange",,,NJ,"Essex County",America/New_York,862,NA,US,40.76,-74.21,1398 +07020,STANDARD,0,Edgewater,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.82,-73.97,11850 +07021,STANDARD,0,"Essex Fells",,,NJ,"Essex County",America/New_York,862,NA,US,40.82,-74.28,2250 +07022,STANDARD,0,Fairview,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.81,-74,11300 +07023,STANDARD,0,Fanwood,,,NJ,"Union County",America/New_York,908,NA,US,40.64,-74.38,7770 +07024,STANDARD,0,"Fort Lee",,"Palisade, West Fort Lee",NJ,"Bergen County",America/New_York,,NA,US,40.85,-73.97,34240 +07026,STANDARD,0,Garfield,,"Outwater, Ritz",NJ,"Bergen County",America/New_York,,NA,US,40.87,-74.1,28750 +07027,STANDARD,0,Garwood,,,NJ,"Union County",America/New_York,,NA,US,40.65,-74.32,4060 +07028,STANDARD,0,"Glen Ridge",,,NJ,"Essex County",America/New_York,862,NA,US,40.8,-74.2,7970 +07029,STANDARD,0,Harrison,"East Newark",,NJ,"Hudson County",America/New_York,"201,862",NA,US,40.74,-74.15,17070 +07030,STANDARD,0,Hoboken,,"Castle Point, Uptown, Washington Street",NJ,"Hudson County",America/New_York,862,NA,US,40.75,-74.03,44510 +07031,STANDARD,0,"North Arlington","N Arlington",,NJ,"Bergen County",America/New_York,,NA,US,40.79,-74.12,15160 +07032,STANDARD,0,Kearny,,"Arlington, South Kearny, West Arlington",NJ,"Hudson County",America/New_York,"201,551",NA,US,40.75,-74.11,34930 +07033,STANDARD,0,Kenilworth,,,NJ,"Union County",America/New_York,908,NA,US,40.67,-74.28,7960 +07034,STANDARD,0,"Lake Hiawatha",,"Lk Hiawatha",NJ,"Morris County",America/New_York,,NA,US,40.88,-74.38,9310 +07035,STANDARD,0,"Lincoln Park",,,NJ,"Morris County",America/New_York,,NA,US,40.92,-74.3,9790 +07036,STANDARD,0,Linden,"Winfield Park","Tremley, Tremley Point",NJ,"Union County",America/New_York,908,NA,US,40.62,-74.23,40530 +07039,STANDARD,0,Livingston,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.78,-74.32,30890 +07040,STANDARD,0,Maplewood,,Maplecrest,NJ,"Essex County",America/New_York,862,NA,US,40.73,-74.27,24740 +07041,STANDARD,0,Millburn,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.72,-74.3,7280 +07042,STANDARD,0,Montclair,,,NJ,"Essex County",America/New_York,862,NA,US,40.82,-74.21,24350 +07043,STANDARD,0,Montclair,"Upper Montclair, Upr Montclair",,NJ,"Essex County",America/New_York,862,NA,US,40.84,-74.2,12300 +07044,STANDARD,0,Verona,,,NJ,"Essex County",America/New_York,973,NA,US,40.83,-74.24,13870 +07045,STANDARD,0,Montville,,"Lower Montville, Montville Township",NJ,"Morris County",America/New_York,,NA,US,40.9,-74.36,10310 +07046,STANDARD,0,"Mountain Lakes","Mountain Lks",,NJ,"Morris County",America/New_York,,NA,US,40.89,-74.44,4430 +07047,STANDARD,0,"North Bergen",,"Tyler Park, Woodcliff",NJ,"Hudson County",America/New_York,,NA,US,40.79,-74.02,51500 +07050,STANDARD,0,Orange,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.76,-74.23,26250 +07051,"PO BOX",0,Orange,,,NJ,"Essex County",America/New_York,862,NA,US,40.76,-74.23,860 +07052,STANDARD,0,"West Orange",,"Town Center",NJ,"Essex County",America/New_York,862,NA,US,40.79,-74.26,44260 +07054,STANDARD,0,Parsippany,,"Parsippany Troy Hills, Troy Hills",NJ,"Morris County",America/New_York,862,NA,US,40.85,-74.4,28580 +07055,STANDARD,0,Passaic,,"Dundee, Passaic Park",NJ,"Passaic County",America/New_York,"201,862,973",NA,US,40.85,-74.12,63890 +07057,STANDARD,0,Wallington,,,NJ,"Bergen County",America/New_York,,NA,US,40.85,-74.1,10690 +07058,STANDARD,0,"Pine Brook",,Pinebrook,NJ,"Morris County",America/New_York,,NA,US,40.86,-74.34,5460 +07059,STANDARD,0,Warren,,,NJ,"Somerset County",America/New_York,,NA,US,40.63,-74.51,16280 +07060,STANDARD,0,Plainfield,"N Plainfield, North Plainfield",Muhlenberg,NJ,"Union County",America/New_York,908,NA,US,40.62,-74.42,38900 +07061,"PO BOX",0,Plainfield,,,NJ,"Union County",America/New_York,908,NA,US,40.63,-74.4,1382 +07062,STANDARD,0,Plainfield,"N Plainfield, North Plainfield",,NJ,"Union County",America/New_York,908,NA,US,40.63,-74.4,12470 +07063,STANDARD,0,Plainfield,"N Plainfield, North Plainfield",,NJ,"Union County",America/New_York,"732,908",NA,US,40.61,-74.44,12590 +07064,STANDARD,0,"Port Reading",,,NJ,"Middlesex County",America/New_York,,NA,US,40.57,-74.25,3610 +07065,STANDARD,0,Rahway,,,NJ,"Union County",America/New_York,"908,732,848",NA,US,40.6,-74.28,26500 +07066,STANDARD,0,Clark,,,NJ,"Union County",America/New_York,"732,848,908",NA,US,40.62,-74.31,15020 +07067,STANDARD,0,Colonia,,,NJ,"Middlesex County",America/New_York,,NA,US,40.59,-74.31,18320 +07068,STANDARD,0,Roseland,,,NJ,"Essex County",America/New_York,862,NA,US,40.82,-74.3,6230 +07069,STANDARD,0,Watchung,Plainfield,,NJ,"Somerset County",America/New_York,908,NA,US,40.64,-74.44,6090 +07070,STANDARD,0,Rutherford,,,NJ,"Bergen County",America/New_York,201,NA,US,40.81,-74.1,17230 +07071,STANDARD,0,Lyndhurst,,,NJ,"Bergen County",America/New_York,,NA,US,40.8,-74.11,20170 +07072,STANDARD,0,Carlstadt,,,NJ,"Bergen County",America/New_York,,NA,US,40.82,-74.06,5740 +07073,STANDARD,0,"East Rutherford","E Rutherford",,NJ,"Bergen County",America/New_York,,NA,US,40.81,-74.08,8820 +07074,STANDARD,0,Moonachie,,,NJ,"Bergen County",America/New_York,,NA,US,40.84,-74.05,2870 +07075,STANDARD,0,"Wood Ridge",,,NJ,"Bergen County",America/New_York,,NA,US,40.85,-74.08,9560 +07076,STANDARD,0,"Scotch Plains",,,NJ,"Union County",America/New_York,,NA,US,40.63,-74.37,24100 +07077,STANDARD,0,Sewaren,,,NJ,"Middlesex County",America/New_York,,NA,US,40.55,-74.26,2500 +07078,STANDARD,0,"Short Hills",,,NJ,"Essex County",America/New_York,862,NA,US,40.74,-74.33,13780 +07079,STANDARD,0,"South Orange",,,NJ,"Essex County",America/New_York,862,NA,US,40.74,-74.26,15140 +07080,STANDARD,0,"South Plainfield","S Plainfield",,NJ,"Middlesex County",America/New_York,,NA,US,40.57,-74.41,23140 +07081,STANDARD,0,Springfield,,,NJ,"Union County",America/New_York,,NA,US,40.69,-74.32,16200 +07082,STANDARD,0,Towaco,,,NJ,"Morris County",America/New_York,,NA,US,40.93,-74.34,5690 +07083,STANDARD,0,Union,,"Chestnut, Townley, Union Center",NJ,"Union County",America/New_York,908,NA,US,40.69,-74.26,51410 +07086,STANDARD,0,Weehawken,,,NJ,"Hudson County",America/New_York,"201,551,908,973,732,862",NA,US,40.77,-74.02,13250 +07087,STANDARD,0,"Union City",,"Bergenline, Summit Avenue",NJ,"Hudson County",America/New_York,"862,201,551,908,973",NA,US,40.77,-74.03,56080 +07088,STANDARD,0,Vauxhall,,,NJ,"Union County",America/New_York,908,NA,US,40.72,-74.29,3080 +07090,STANDARD,0,Westfield,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.34,30400 +07091,"PO BOX",0,Westfield,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.34,179 +07092,STANDARD,0,Mountainside,,,NJ,"Union County",America/New_York,,NA,US,40.68,-74.36,6840 +07093,STANDARD,0,"West New York",Guttenberg,"Monitor, Taurus",NJ,"Hudson County",America/New_York,,NA,US,40.79,-74.01,51180 +07094,STANDARD,0,Secaucus,,,NJ,"Hudson County",America/New_York,"201,908,973",NA,US,40.78,-74.06,18880 +07095,STANDARD,0,Woodbridge,,,NJ,"Middlesex County",America/New_York,"732,848",NA,US,40.55,-74.28,19080 +07096,"PO BOX",0,Secaucus,,"Meadows, Plaza",NJ,"Hudson County",America/New_York,201,NA,US,40.78,-74.06,210 +07097,UNIQUE,0,"Jersey City",,"Nj International And Bmc",NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,16 +07099,UNIQUE,0,Kearny,,Usps,NJ,"Hudson County",America/New_York,201,NA,US,40.75,-74.11,0 +07101,"PO BOX",0,Newark,,,NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,2371 +07102,STANDARD,0,Newark,,"Academy, Midtown, Washington Park",NJ,"Essex County",America/New_York,"201,551,732,848,862,908,973",NA,US,40.74,-74.17,8620 +07103,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,"201,551,848,862,908,973,732",NA,US,40.74,-74.2,25220 +07104,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,973,NA,US,40.77,-74.17,42280 +07105,STANDARD,0,Newark,,Ironbound,NJ,"Essex County",America/New_York,"732,201,551,848,862,908,973",NA,US,40.72,-74.14,35170 +07106,STANDARD,0,Newark,,Vailsburg,NJ,"Essex County",America/New_York,"908,973",NA,US,40.74,-74.23,26120 +07107,STANDARD,0,Newark,,Roseville,NJ,"Essex County",America/New_York,"973,908",NA,US,40.76,-74.19,32360 +07108,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,"973,201,908",NA,US,40.72,-74.2,20820 +07109,STANDARD,0,Belleville,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.79,-74.16,34350 +07110,STANDARD,0,Nutley,,,NJ,"Essex County",America/New_York,"862,973",NA,US,40.81,-74.15,27840 +07111,STANDARD,0,Irvington,,"Township Of Irvington",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.23,48030 +07112,STANDARD,0,Newark,,Weequahic,NJ,"Essex County",America/New_York,"908,973",NA,US,40.71,-74.21,22290 +07114,STANDARD,0,Newark,,,NJ,"Essex County",America/New_York,973,NA,US,40.72,-74.17,7610 +07175,UNIQUE,0,Newark,,Usps,NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07182,UNIQUE,1,Newark,"Shared Firm Zip",,NJ,"Essex County",America/New_York,862,NA,US,40.73,-74.17,0 +07184,UNIQUE,0,Newark,,"Cenlar Bank",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07188,UNIQUE,0,Newark,,"Jp Morgan Chase",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07189,UNIQUE,0,Newark,,"Bank Of America",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07191,UNIQUE,0,Newark,,"Wachovia Bank",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07192,UNIQUE,0,Newark,,"Wachovia Bank",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07193,UNIQUE,0,Newark,,"Jp Morgan Chase",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07194,UNIQUE,1,Newark,,"Midlantic National Bank",NJ,"Essex County",America/New_York,862,NA,US,40.73,-74.17,0 +07195,UNIQUE,0,Newark,,"Bank Of New York",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07198,UNIQUE,0,Newark,,"Bank Of New York",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07199,UNIQUE,0,Newark,,"Merrill Lynch Inc",NJ,"Essex County",America/New_York,862,NA,US,40.72,-74.17,0 +07201,STANDARD,0,Elizabeth,,"Betsytown, Peterstown, Union Square",NJ,"Union County",America/New_York,"908,973",NA,US,40.69,-74.17,25330 +07202,STANDARD,0,Elizabeth,,"Bayway, Elmora, Parkandbush",NJ,"Union County",America/New_York,908,NA,US,40.65,-74.22,36280 +07203,STANDARD,0,Roselle,,,NJ,"Union County",America/New_York,908,NA,US,40.65,-74.26,20280 +07204,STANDARD,0,"Roselle Park",,,NJ,"Union County",America/New_York,,NA,US,40.67,-74.27,12700 +07205,STANDARD,0,Hillside,"Ind Hillside, Industrial Hillside",,NJ,"Union County",America/New_York,,NA,US,40.69,-74.23,20920 +07206,STANDARD,0,Elizabethport,Elizabeth,,NJ,"Union County",America/New_York,908,NA,US,40.66,-74.19,26550 +07207,"PO BOX",0,Elizabeth,,,NJ,"Union County",America/New_York,908,NA,US,40.66,-74.19,2702 +07208,STANDARD,0,Elizabeth,,"North Elizabeth",NJ,"Union County",America/New_York,908,NA,US,40.67,-74.23,28820 +07302,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,"201,551,862,973,908",NA,US,40.72,-74.05,44720 +07303,"PO BOX",0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,2121 +07304,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,39700 +07305,STANDARD,0,"Jersey City",,"Ellis Island, Greenville",NJ,"Hudson County",America/New_York,201,NA,US,40.7,-74.08,56120 +07306,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.73,-74.07,47530 +07307,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,201,NA,US,40.75,-74.06,37730 +07308,"PO BOX",0,"Jersey City",,"Five Corners",NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,142 +07309,STANDARD,1,"Jersey City",,"General Lafayette",NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.03,113 +07310,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,"908,201,551,862,973",NA,US,40.73,-74.04,12330 +07311,STANDARD,0,"Jersey City",,,NJ,"Hudson County",America/New_York,"201,908,551,862,973",NA,US,40.72,-74.03,1220 +07395,UNIQUE,0,"Jersey City",,Usps,NJ,"Hudson County",America/New_York,201,NA,US,40.72,-74.08,0 +07399,UNIQUE,0,"Jersey City",,Pershing,NJ,"Hudson County",America/New_York,201,NA,US,40.71,-74.06,0 +07401,STANDARD,0,Allendale,,,NJ,"Bergen County",America/New_York,,NA,US,41.03,-74.13,6650 +07403,STANDARD,0,Bloomingdale,,,NJ,"Passaic County",America/New_York,862,NA,US,41.02,-74.33,6920 +07405,STANDARD,0,Butler,Kinnelon,"Fayson Lake, Fayson Lakes, High Crest, Lindy Lake",NJ,"Morris County",America/New_York,"862,973",NA,US,40.99,-74.34,17260 +07407,STANDARD,0,"Elmwood Park",,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.9,-74.11,19630 +07410,STANDARD,0,"Fair Lawn",,"Fairlawn, Radburn",NJ,"Bergen County",America/New_York,"201,551",NA,US,40.93,-74.11,33020 +07416,STANDARD,0,Franklin,,"Beaver Lake",NJ,"Sussex County",America/New_York,"862,973",NA,US,41.11,-74.58,5010 +07417,STANDARD,0,"Franklin Lakes","Franklin Lks",,NJ,"Bergen County",America/New_York,,NA,US,41,-74.2,10900 +07418,STANDARD,0,Glenwood,,,NJ,"Sussex County",America/New_York,862,NA,US,41.24,-74.48,2120 +07419,STANDARD,0,Hamburg,,Hardyston,NJ,"Sussex County",America/New_York,862,NA,US,41.14,-74.57,8460 +07420,STANDARD,0,Haskell,,,NJ,"Passaic County",America/New_York,862,NA,US,41.02,-74.3,4460 +07421,STANDARD,0,Hewitt,,"Awosting, Greenwood Lake, Upper Greenwood Lake",NJ,"Passaic County",America/New_York,973,NA,US,41.16,-74.35,6470 +07422,STANDARD,0,"Highland Lakes","Highland Lks","Barry Lakes",NJ,"Sussex County",America/New_York,973,NA,US,41.17,-74.44,5980 +07423,STANDARD,0,"Ho Ho Kus",,,NJ,"Bergen County",America/New_York,,NA,US,41,-74.1,4250 +07424,STANDARD,0,"Little Falls","West Paterson, Woodland Park","Great Notch, Singac",NJ,"Passaic County",America/New_York,"862,973",NA,US,40.87,-74.21,22800 +07428,"PO BOX",0,"Mc Afee",,Mcafee,NJ,"Sussex County",America/New_York,862,NA,US,41.2,-74.55,607 +07430,STANDARD,0,Mahwah,,,NJ,"Bergen County",America/New_York,201,NA,US,41.08,-74.18,22460 +07432,STANDARD,0,"Midland Park",,"Midland Pk",NJ,"Bergen County",America/New_York,,NA,US,40.99,-74.14,6770 +07435,STANDARD,0,Newfoundland,,"Green Pond, Greenpond",NJ,"Passaic County",America/New_York,973,NA,US,41.07,-74.42,2290 +07436,STANDARD,0,Oakland,,,NJ,"Bergen County",America/New_York,201,NA,US,41.03,-74.24,12480 +07438,STANDARD,0,"Oak Ridge",,"Cozy Lake, Jefferson Township, Jefferson Twp, Lake Swannanoa",NJ,"Morris County",America/New_York,,NA,US,41.04,-74.48,10740 +07439,STANDARD,0,Ogdensburg,,,NJ,"Sussex County",America/New_York,973,NA,US,41.07,-74.59,2170 +07440,STANDARD,0,Pequannock,,"Pequannock Township",NJ,"Morris County",America/New_York,,NA,US,40.94,-74.29,4290 +07442,STANDARD,0,"Pompton Lakes",,"Pompton Falls",NJ,"Passaic County",America/New_York,"862,973",NA,US,41,-74.28,10230 +07444,STANDARD,0,"Pompton Plains","Pompton Plns",,NJ,"Morris County",America/New_York,,NA,US,40.96,-74.3,10750 +07446,STANDARD,0,Ramsey,,Darlington,NJ,"Bergen County",America/New_York,"201,551",NA,US,41.05,-74.14,14890 +07450,STANDARD,0,Ridgewood,,,NJ,"Bergen County",America/New_York,201,NA,US,40.98,-74.11,24980 +07451,"PO BOX",0,Ridgewood,,,NJ,"Bergen County",America/New_York,201,NA,US,40.98,-74.11,200 +07452,STANDARD,0,"Glen Rock",,,NJ,"Bergen County",America/New_York,201,NA,US,40.96,-74.13,12290 +07456,STANDARD,0,Ringwood,,"Cupsaw Lake, Erskine, Erskine Lakes, Skyline Lakes",NJ,"Passaic County",America/New_York,973,NA,US,41.11,-74.27,11350 +07457,STANDARD,0,Riverdale,,"Pompton Junction",NJ,"Morris County",America/New_York,,NA,US,40.99,-74.3,3940 +07458,STANDARD,0,"Saddle River","U Saddle Riv, Upper Saddle River",,NJ,"Bergen County",America/New_York,,NA,US,41.02,-74.09,11090 +07460,STANDARD,0,Stockholm,Hardyston,"Cliffwood Lake, Gerard, Lake Stockholm, Lake Tamarack, Silver Lake",NJ,"Sussex County",America/New_York,862,NA,US,41.1,-74.53,3020 +07461,STANDARD,0,Sussex,Wantage,"Beemerville, Colesville, High Point, High Point Park, Wallkill Lake, Wantage Twp",NJ,"Sussex County",America/New_York,973,NA,US,41.2,-74.6,17160 +07462,STANDARD,0,Vernon,,,NJ,"Sussex County",America/New_York,973,NA,US,41.18,-74.51,5940 +07463,STANDARD,0,Waldwick,,,NJ,"Bergen County",America/New_York,,NA,US,41.01,-74.12,9810 +07465,STANDARD,0,Wanaque,,Midvale,NJ,"Passaic County",America/New_York,862,NA,US,41.04,-74.29,6120 +07470,STANDARD,0,Wayne,,"Lionshead Lake, Mountain View, Packanack Lake, Packanack Lk, Pines Lake, Preakness",NJ,"Passaic County",America/New_York,"862,973",NA,US,40.94,-74.24,50130 +07474,"PO BOX",0,Wayne,,,NJ,"Passaic County",America/New_York,862,NA,US,40.94,-74.24,586 +07477,UNIQUE,1,Wayne,,"State Farm Insurance",NJ,"Passaic County",America/New_York,862,NA,US,40.92,-74.27,0 +07480,STANDARD,0,"West Milford",,"Gordon Lakes, Pine Cliff Lake, Shady Lake, West Milford Lakes",NJ,"Passaic County",America/New_York,"862,973",NA,US,41.1,-74.39,14240 +07481,STANDARD,0,Wyckoff,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.99,-74.16,16600 +07495,STANDARD,0,Mahwah,,,NJ,"Bergen County",America/New_York,201,NA,US,41.1,-74.16,0 +07501,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"973,862",NA,US,40.91,-74.16,30470 +07502,STANDARD,0,Paterson,Totowa,Hillcrest,NJ,"Passaic County",America/New_York,973,NA,US,40.92,-74.19,15500 +07503,STANDARD,0,Paterson,,"South Paterson",NJ,"Passaic County",America/New_York,862,NA,US,40.9,-74.15,17790 +07504,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,973,NA,US,40.91,-74.14,12480 +07505,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"862,973",NA,US,40.92,-74.17,1910 +07506,STANDARD,0,Hawthorne,,,NJ,"Passaic County",America/New_York,"862,973",NA,US,40.95,-74.15,17800 +07507,"PO BOX",0,Hawthorne,,,NJ,"Passaic County",America/New_York,862,NA,US,40.95,-74.15,202 +07508,STANDARD,0,Haledon,"North Haledon, Paterson, Prospect Park","Prospect Pk",NJ,"Passaic County",America/New_York,862,NA,US,40.96,-74.18,22310 +07509,"PO BOX",0,Paterson,,,NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,2343 +07510,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"862,973",NA,US,40.91,-74.16,0 +07511,"PO BOX",0,Totowa,Paterson,,NJ,"Passaic County",America/New_York,862,NA,US,40.9,-74.22,317 +07512,STANDARD,0,Totowa,Paterson,"Totowa Boro",NJ,"Passaic County",America/New_York,973,NA,US,40.9,-74.22,10220 +07513,STANDARD,0,Paterson,,"Peoples Park",NJ,"Passaic County",America/New_York,973,NA,US,40.91,-74.15,11510 +07514,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,"973,201",NA,US,40.93,-74.14,17130 +07522,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,973,NA,US,40.92,-74.18,20090 +07524,STANDARD,0,Paterson,,,NJ,"Passaic County",America/New_York,862,NA,US,40.93,-74.16,12330 +07533,"PO BOX",0,Paterson,,"South Paterson",NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,168 +07538,"PO BOX",0,Haledon,Paterson,"North Haledon, Prospect Park",NJ,"Passaic County",America/New_York,862,NA,US,40.93,-74.18,349 +07543,"PO BOX",0,Paterson,,"Peoples Park",NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,462 +07544,"PO BOX",0,Paterson,,,NJ,"Passaic County",America/New_York,862,NA,US,40.91,-74.16,950 +07601,STANDARD,0,Hackensack,,Hack,NJ,"Bergen County",America/New_York,"201,551,862,973",NA,US,40.88,-74.04,38710 +07602,"PO BOX",0,Hackensack,,,NJ,"Bergen County",America/New_York,201,NA,US,40.88,-74.04,419 +07603,STANDARD,0,Bogota,,,NJ,"Bergen County",America/New_York,862,NA,US,40.87,-74.03,7800 +07604,STANDARD,0,"Hasbrouck Heights","Hasbrouck Hts",,NJ,"Bergen County",America/New_York,201,NA,US,40.86,-74.07,11710 +07605,STANDARD,0,Leonia,,,NJ,"Bergen County",America/New_York,201,NA,US,40.86,-73.99,8510 +07606,STANDARD,0,"South Hackensack","S Hackensack",,NJ,"Bergen County",America/New_York,862,NA,US,40.86,-74.04,2500 +07607,STANDARD,0,Maywood,,,NJ,"Bergen County",America/New_York,"201,973",NA,US,40.9,-74.06,9400 +07608,STANDARD,0,Teterboro,,,NJ,"Bergen County",America/New_York,201,NA,US,40.85,-74.06,57 +07620,"PO BOX",0,Alpine,,,NJ,"Bergen County",America/New_York,,NA,US,40.95,-73.92,1804 +07621,STANDARD,0,Bergenfield,,,NJ,"Bergen County",America/New_York,,NA,US,40.92,-73.99,26680 +07624,STANDARD,0,Closter,,,NJ,"Bergen County",America/New_York,201,NA,US,40.97,-73.96,8340 +07626,STANDARD,0,Cresskill,,,NJ,"Bergen County",America/New_York,,NA,US,40.94,-73.96,8390 +07627,STANDARD,0,Demarest,,,NJ,"Bergen County",America/New_York,,NA,US,40.95,-73.95,4780 +07628,STANDARD,0,Dumont,,,NJ,"Bergen County",America/New_York,"201,551",NA,US,40.94,-73.99,16840 +07630,STANDARD,0,Emerson,,,NJ,"Bergen County",America/New_York,,NA,US,40.97,-74.02,7120 +07631,STANDARD,0,Englewood,,,NJ,"Bergen County",America/New_York,201,NA,US,40.89,-73.97,25420 +07632,STANDARD,0,"Englewood Cliffs","Englewd Clfs, Englewood",,NJ,"Bergen County",America/New_York,201,NA,US,40.88,-73.94,5440 +07640,STANDARD,0,"Harrington Park","Harrington Pk",,NJ,"Bergen County",America/New_York,,NA,US,40.98,-73.98,4670 +07641,STANDARD,0,Haworth,,,NJ,"Bergen County",America/New_York,,NA,US,40.96,-73.99,3380 +07642,STANDARD,0,Hillsdale,,,NJ,"Bergen County",America/New_York,,NA,US,41,-74.04,10160 +07643,STANDARD,0,"Little Ferry",,,NJ,"Bergen County",America/New_York,,NA,US,40.84,-74.04,9710 +07644,STANDARD,0,Lodi,,,NJ,"Bergen County",America/New_York,,NA,US,40.88,-74.08,22640 +07645,STANDARD,0,Montvale,,,NJ,"Bergen County",America/New_York,,NA,US,41.05,-74.04,8470 +07646,STANDARD,0,"New Milford",,"N Milford",NJ,"Bergen County",America/New_York,,NA,US,40.93,-74.02,15850 +07647,STANDARD,0,Northvale,Rockleigh,,NJ,"Bergen County",America/New_York,,NA,US,41,-73.95,4820 +07648,STANDARD,0,Norwood,,,NJ,"Bergen County",America/New_York,,NA,US,40.99,-73.95,5310 +07649,STANDARD,0,Oradell,,,NJ,"Bergen County",America/New_York,201,NA,US,40.95,-74.03,8160 +07650,STANDARD,0,"Palisades Park","Palisades Pk",,NJ,"Bergen County",America/New_York,,NA,US,40.84,-73.99,16130 +07652,STANDARD,0,Paramus,,,NJ,"Bergen County",America/New_York,201,NA,US,40.94,-74.07,25120 +07653,"PO BOX",0,Paramus,,,NJ,"Bergen County",America/New_York,201,NA,US,40.94,-74.07,208 +07656,STANDARD,0,"Park Ridge",,,NJ,"Bergen County",America/New_York,201,NA,US,41.03,-74.04,8610 +07657,STANDARD,0,Ridgefield,,Morsemere,NJ,"Bergen County",America/New_York,,NA,US,40.83,-74.01,10450 +07660,STANDARD,0,"Ridgefield Park","Ridgefield Pk",,NJ,"Bergen County",America/New_York,,NA,US,40.85,-74.02,12650 +07661,STANDARD,0,"River Edge",,,NJ,"Bergen County",America/New_York,,NA,US,40.92,-74.04,11820 +07662,STANDARD,0,"Rochelle Park",,,NJ,"Bergen County",America/New_York,"201,862,973",NA,US,40.91,-74.08,5420 +07663,STANDARD,0,"Saddle Brook",,,NJ,"Bergen County",America/New_York,"551,201,973",NA,US,40.9,-74.09,13750 +07666,STANDARD,0,Teaneck,,"West Englewood",NJ,"Bergen County",America/New_York,201,NA,US,40.88,-74.01,38820 +07670,STANDARD,0,Tenafly,,,NJ,"Bergen County",America/New_York,,NA,US,40.91,-73.95,14500 +07675,STANDARD,0,Westwood,"Old Tappan, River Vale, Rivervale",,NJ,"Bergen County",America/New_York,"201,551",NA,US,41,-74,26060 +07676,STANDARD,0,"Township Of Washington","Twp Washingtn, Twp Washinton, Washington Twps","Washington Tnshp, Washington Township, Washington Twnshp, Washington Twp, Washington Twsp",NJ,"Bergen County",America/New_York,,NA,US,40.98,-74.06,9160 +07677,STANDARD,0,"Woodcliff Lake","Westwood, Woodcliff Lk",,NJ,"Bergen County",America/New_York,"201,551",NA,US,41.02,-74.05,6220 +07699,UNIQUE,0,Teterboro,,"Nnj Metro P&Dc, Usps",NJ,"Bergen County",America/New_York,201,NA,US,40.85,-74.06,0 +07701,STANDARD,0,"Red Bank","Tinton Falls",Westboro,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.34,-74.06,22530 +07702,STANDARD,0,Shrewsbury,"Red Bank",,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.32,-74.05,4060 +07703,STANDARD,0,"Fort Monmouth","Red Bank",,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.32,-74.04,701 +07704,STANDARD,0,"Fair Haven","Red Bank",,NJ,"Monmouth County",America/New_York,732,NA,US,40.36,-74.03,6280 +07709,UNIQUE,1,"Red Bank",,"Jersey Central Power Light",NJ,"Monmouth County",America/New_York,732,NA,US,40.23,-74,0 +07710,"PO BOX",0,Adelphia,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.25,209 +07711,STANDARD,0,Allenhurst,"Loch Arbour, W Allenhurst, West Allenhurst",,NJ,"Monmouth County",America/New_York,,NA,US,40.24,-74.01,1270 +07712,STANDARD,0,"Asbury Park","Interlaken, Ocean, Tinton Falls","Wanamassa, Wayside",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.22,-74.01,34980 +07715,UNIQUE,0,Belmar,,"Nj Natural Gas Co",NJ,"Monmouth County",America/New_York,732,NA,US,40.17,-74.02,0 +07716,STANDARD,0,"Atlantic Highlands","Atlantic Hlds","Atlantic Hl",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.4,-74.03,7840 +07717,STANDARD,0,"Avon By The Sea","Avon By Sea",Avon,NJ,"Monmouth County",America/New_York,,NA,US,40.19,-74.01,1700 +07718,STANDARD,0,Belford,,,NJ,"Monmouth County",America/New_York,,NA,US,40.42,-74.09,5960 +07719,STANDARD,0,Belmar,"Lake Como, Wall, Wall Township","S Belmar, Shark River Manor, South Belmar, W Belmar, Wall Twp, West Belmar",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.17,-74.02,19950 +07720,STANDARD,0,"Bradley Beach",,,NJ,"Monmouth County",America/New_York,,NA,US,40.2,-74.01,3590 +07721,STANDARD,0,Cliffwood,,,NJ,"Monmouth County",America/New_York,,NA,US,40.44,-74.23,3490 +07722,STANDARD,0,"Colts Neck",,"Earle Naval Weapons Station, Phalanx, Vanderburg",NJ,"Monmouth County",America/New_York,,NA,US,40.28,-74.16,9950 +07723,STANDARD,0,Deal,"Ocean Townshp, Ocean Twp","Deal Park",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.25,-74,770 +07724,STANDARD,0,Eatontown,"Tinton Falls","Monmouth, Shrewsbury Township, Vail Homes",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.29,-74.05,21190 +07726,STANDARD,0,Englishtown,Manalapan,,NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.29,-74.36,43400 +07727,STANDARD,0,Farmingdale,"Tinton Falls, Wall Township","Wall, Wall Twp",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.19,-74.17,7170 +07728,STANDARD,0,Freehold,,"East Freehold, Georgia, Jerseyville, Millhurst",NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.25,-74.27,51550 +07730,STANDARD,0,Hazlet,,,NJ,"Monmouth County",America/New_York,,NA,US,40.42,-74.17,16160 +07731,STANDARD,0,Howell,"Wall Township","Wall Twp",NJ,"Monmouth County",America/New_York,,NA,US,40.14,-74.19,37940 +07732,STANDARD,0,Highlands,"Sandy Hook","Gateway National Recreation, Monmouth Hills",NJ,"Monmouth County",America/New_York,732,NA,US,40.4,-73.99,3790 +07733,STANDARD,0,Holmdel,,"Holmdel Village",NJ,"Monmouth County",America/New_York,732,NA,US,40.37,-74.17,16610 +07734,STANDARD,0,Keansburg,"Hazlet Township, Hazlet Twp","East Keansburg, Ideal Beach, W Keansburg, West Keansburg",NJ,"Monmouth County",America/New_York,732,NA,US,40.44,-74.13,10140 +07735,STANDARD,0,Keyport,"Union Beach","Cliffwood Bch, Cliffwood Beach",NJ,"Monmouth County",America/New_York,732,NA,US,40.43,-74.2,16810 +07737,STANDARD,0,Leonardo,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.41,-74.06,3890 +07738,STANDARD,0,Lincroft,,,NJ,"Monmouth County",America/New_York,,NA,US,40.34,-74.12,6710 +07739,STANDARD,0,"Little Silver",,"Little Silver Point",NJ,"Monmouth County",America/New_York,,NA,US,40.33,-74.03,6120 +07740,STANDARD,0,"Long Branch",Elberon,"West End",NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.29,-73.98,24630 +07746,STANDARD,0,Marlboro,,Bradevelt,NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.31,-74.25,18350 +07747,STANDARD,0,Matawan,Aberdeen,Strathmore,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.41,-74.23,29630 +07748,STANDARD,0,Middletown,"N Middletown, New Monmouth, North Middletown",,NJ,"Monmouth County",America/New_York,"732,848,908",NA,US,40.39,-74.11,27140 +07750,STANDARD,0,"Monmouth Beach","Monmouth Bch",,NJ,"Monmouth County",America/New_York,,NA,US,40.33,-73.98,3090 +07751,STANDARD,0,Morganville,,,NJ,"Monmouth County",America/New_York,,NA,US,40.36,-74.25,21030 +07752,"PO BOX",0,Navesink,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.39,-74.11,294 +07753,STANDARD,0,Neptune,"Neptune City, Tinton Falls, Wall Township","Shark River Hills, Wall",NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.08,34340 +07754,"PO BOX",0,Neptune,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.08,557 +07755,STANDARD,0,Oakhurst,,"Elberon Park",NJ,"Monmouth County",America/New_York,,NA,US,40.26,-74.02,5750 +07756,STANDARD,0,"Ocean Grove",,,NJ,"Monmouth County",America/New_York,,NA,US,40.21,-74.01,2260 +07757,STANDARD,0,Oceanport,,"Monmouth Park, Sands Point",NJ,"Monmouth County",America/New_York,"732,908",NA,US,40.31,-74.02,5430 +07758,STANDARD,0,"Port Monmouth",,"Cedar Beach",NJ,"Monmouth County",America/New_York,,NA,US,40.43,-74.1,4570 +07760,STANDARD,0,Rumson,"Locust, Sea Bright",,NJ,"Monmouth County",America/New_York,,NA,US,40.36,-74,9230 +07762,STANDARD,0,"Spring Lake",,"Spring Heights, Spring Lake Heights, Wall Township, Wall Twp",NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.15,-74.02,7820 +07763,"PO BOX",0,Tennent,,,NJ,"Monmouth County",America/New_York,,NA,US,40.29,-74.36,86 +07764,STANDARD,0,"West Long Branch","W Long Branch",,NJ,"Monmouth County",America/New_York,"732,908",NA,US,40.29,-74.01,6300 +07765,"PO BOX",0,Wickatunk,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.35,-74.26,54 +07799,STANDARD,0,Eatontown,,,NJ,"Monmouth County",America/New_York,"732,848",NA,US,40.29,-74.05,0 +07801,STANDARD,0,Dover,,"Victory Gardens",NJ,"Morris County",America/New_York,"862,973",NA,US,40.88,-74.55,22270 +07802,"PO BOX",0,Dover,,,NJ,"Morris County",America/New_York,862,NA,US,40.88,-74.55,1307 +07803,STANDARD,0,"Mine Hill",Dover,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.87,-74.6,3600 +07806,STANDARD,0,"Picatinny Arsenal","Dover, Picatinny Ars",,NJ,"Morris County",America/New_York,"973,862",NA,US,40.93,-74.54,0 +07820,"PO BOX",0,Allamuchy,,,NJ,"Warren County",America/New_York,908,NA,US,40.93,-74.81,299 +07821,STANDARD,0,Andover,"Byram Township, Byram Twp, Green Township, Green Twp",,NJ,"Sussex County",America/New_York,973,NA,US,40.98,-74.74,8440 +07822,STANDARD,0,Augusta,,,NJ,"Sussex County",America/New_York,862,NA,US,41.14,-74.71,1020 +07823,STANDARD,0,Belvidere,,,NJ,"Warren County",America/New_York,908,NA,US,40.82,-75.07,6380 +07825,STANDARD,0,Blairstown,"Hardwick, Johnsonburg",,NJ,"Warren County",America/New_York,908,NA,US,40.98,-74.96,8370 +07826,STANDARD,0,Branchville,Sandyston,,NJ,"Sussex County",America/New_York,"862,973",NA,US,41.14,-74.74,5420 +07827,STANDARD,0,Montague,"Branchville, Sandyston",,NJ,"Sussex County",America/New_York,"862,973",NA,US,41.29,-74.74,3470 +07828,STANDARD,0,"Budd Lake",,"Mount Olive",NJ,"Morris County",America/New_York,,NA,US,40.87,-74.73,12930 +07829,"PO BOX",0,Buttzville,,,NJ,"Warren County",America/New_York,908,NA,US,40.82,-75.04,154 +07830,STANDARD,0,Califon,"Tewksbury Township, Tewksbury Twp",,NJ,"Hunterdon County",America/New_York,908,NA,US,40.72,-74.79,6210 +07831,STANDARD,0,Changewater,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.74,-74.95,142 +07832,STANDARD,0,Columbia,,,NJ,"Warren County",America/New_York,908,NA,US,40.95,-75.06,3460 +07833,"PO BOX",0,Delaware,,,NJ,"Warren County",America/New_York,908,NA,US,40.89,-75.07,170 +07834,STANDARD,0,Denville,,,NJ,"Morris County",America/New_York,,NA,US,40.89,-74.48,17610 +07836,STANDARD,0,Flanders,"Roxbury Township, Roxbury Twp",,NJ,"Morris County",America/New_York,,NA,US,40.84,-74.7,12030 +07837,"PO BOX",0,Glasser,,,NJ,"Sussex County",America/New_York,862,NA,US,40.98,-74.63,135 +07838,STANDARD,0,"Great Meadows",,,NJ,"Warren County",America/New_York,908,NA,US,40.89,-74.91,3120 +07839,"PO BOX",0,Greendell,,,NJ,"Sussex County",America/New_York,862,NA,US,40.97,-74.81,182 +07840,STANDARD,0,Hackettstown,,"Allamuchy Twp",NJ,"Warren County",America/New_York,908,NA,US,40.85,-74.82,28370 +07842,"PO BOX",0,Hibernia,,,NJ,"Morris County",America/New_York,862,NA,US,40.94,-74.51,170 +07843,STANDARD,0,Hopatcong,,,NJ,"Sussex County",America/New_York,"862,973",NA,US,40.95,-74.65,10590 +07844,"PO BOX",0,Hope,,,NJ,"Warren County",America/New_York,908,NA,US,40.91,-74.96,669 +07845,"PO BOX",0,Ironia,,,NJ,"Morris County",America/New_York,862,NA,US,40.85,-74.57,265 +07846,"PO BOX",0,Johnsonburg,,,NJ,"Warren County",America/New_York,908,NA,US,40.97,-74.88,225 +07847,STANDARD,0,Kenvil,,,NJ,"Morris County",America/New_York,,NA,US,40.88,-74.62,1680 +07848,STANDARD,0,Lafayette,,,NJ,"Sussex County",America/New_York,862,NA,US,41.09,-74.68,3930 +07849,STANDARD,0,"Lake Hopatcong","Lk Hopatcong",,NJ,"Morris County",America/New_York,973,NA,US,40.96,-74.61,8060 +07850,STANDARD,0,Landing,,,NJ,"Morris County",America/New_York,,NA,US,40.9,-74.66,6030 +07851,STANDARD,0,Layton,Sandyston,,NJ,"Sussex County",America/New_York,973,NA,US,41.23,-74.85,360 +07852,STANDARD,0,Ledgewood,,,NJ,"Morris County",America/New_York,,NA,US,40.88,-74.66,3650 +07853,STANDARD,0,"Long Valley",,,NJ,"Morris County",America/New_York,908,NA,US,40.78,-74.76,12680 +07855,"PO BOX",0,Middleville,,,NJ,"Sussex County",America/New_York,862,NA,US,41.06,-74.89,137 +07856,STANDARD,0,"Mount Arlington","Mt Arlington",,NJ,"Morris County",America/New_York,,NA,US,40.91,-74.64,4380 +07857,STANDARD,0,Netcong,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.9,-74.7,3000 +07860,STANDARD,0,Newton,"Fredon, Fredon Township, Fredon Twp",,NJ,"Sussex County",America/New_York,"862,973",NA,US,41.05,-74.75,22170 +07863,STANDARD,0,Oxford,,,NJ,"Warren County",America/New_York,908,NA,US,40.81,-74.99,3800 +07865,STANDARD,0,"Port Murray",,,NJ,"Warren County",America/New_York,908,NA,US,40.79,-74.91,2420 +07866,STANDARD,0,Rockaway,"Rockaway Boro, Rockaway Borough",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.95,-74.49,21930 +07869,STANDARD,0,Randolph,"Chester Twp, Dover",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.84,-74.58,25150 +07870,"PO BOX",0,"Schooleys Mountain","Schooleys Mtn",,NJ,"Morris County",America/New_York,908,NA,US,40.8,-74.82,135 +07871,STANDARD,0,Sparta,,,NJ,"Sussex County",America/New_York,973,NA,US,41.04,-74.62,20170 +07874,STANDARD,0,Stanhope,,,NJ,"Sussex County",America/New_York,862,NA,US,40.91,-74.7,8260 +07875,"PO BOX",0,Stillwater,,,NJ,"Sussex County",America/New_York,862,NA,US,41.05,-74.86,301 +07876,STANDARD,0,Succasunna,,,NJ,"Morris County",America/New_York,"201,862,973",NA,US,40.85,-74.65,10220 +07877,"PO BOX",0,Swartswood,,,NJ,"Sussex County",America/New_York,862,NA,US,41.09,-74.84,271 +07878,"PO BOX",0,"Mount Tabor",,Tabor,NJ,"Morris County",America/New_York,,NA,US,40.87,-74.47,990 +07879,"PO BOX",0,Tranquility,,,NJ,"Sussex County",America/New_York,862,NA,US,40.95,-74.8,235 +07880,"PO BOX",0,Vienna,,,NJ,"Warren County",America/New_York,908,NA,US,40.87,-74.89,235 +07881,STANDARD,0,"Wallpack Center","Wallpack Ctr",,NJ,"Sussex County",America/New_York,862,NA,US,41.12,-74.91,0 +07882,STANDARD,0,Washington,,,NJ,"Warren County",America/New_York,908,NA,US,40.75,-74.98,13220 +07885,STANDARD,0,Wharton,,,NJ,"Morris County",America/New_York,,NA,US,40.89,-74.58,10820 +07890,UNIQUE,0,Branchville,,"Selected Risks Insurance Co",NJ,"Sussex County",America/New_York,862,NA,US,41.14,-74.74,0 +07901,STANDARD,0,Summit,,,NJ,"Union County",America/New_York,908,NA,US,40.71,-74.36,22700 +07902,"PO BOX",0,Summit,,,NJ,"Union County",America/New_York,908,NA,US,40.71,-74.36,360 +07920,STANDARD,0,"Basking Ridge",,,NJ,"Somerset County",America/New_York,,NA,US,40.67,-74.56,26960 +07921,STANDARD,0,Bedminster,,,NJ,"Somerset County",America/New_York,908,NA,US,40.65,-74.67,7080 +07922,STANDARD,0,"Berkeley Heights","Berkeley Hts",,NJ,"Union County",America/New_York,,NA,US,40.67,-74.42,12280 +07924,STANDARD,0,Bernardsville,,,NJ,"Somerset County",America/New_York,"908,973",NA,US,40.73,-74.59,7250 +07926,"PO BOX",0,Brookside,,,NJ,"Morris County",America/New_York,,NA,US,40.8,-74.57,1063 +07927,STANDARD,0,"Cedar Knolls",,,NJ,"Morris County",America/New_York,"908,973",NA,US,40.82,-74.45,3840 +07928,STANDARD,0,Chatham,"Chatham Twp",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.74,-74.38,19740 +07930,STANDARD,0,Chester,,,NJ,"Morris County",America/New_York,908,NA,US,40.78,-74.69,8540 +07931,STANDARD,0,"Far Hills",,,NJ,"Somerset County",America/New_York,908,NA,US,40.69,-74.62,3100 +07932,STANDARD,0,"Florham Park",,,NJ,"Morris County",America/New_York,973,NA,US,40.77,-74.39,10310 +07933,STANDARD,0,Gillette,,,NJ,"Morris County",America/New_York,,NA,US,40.7,-74.47,3130 +07934,STANDARD,0,Gladstone,,,NJ,"Somerset County",America/New_York,908,NA,US,40.72,-74.67,1500 +07935,STANDARD,0,"Green Village",,,NJ,"Morris County",America/New_York,973,NA,US,40.74,-74.45,580 +07936,STANDARD,0,"East Hanover",,,NJ,"Morris County",America/New_York,,NA,US,40.81,-74.36,11130 +07938,"PO BOX",0,"Liberty Corner","Liberty Cor",,NJ,"Somerset County",America/New_York,908,NA,US,40.68,-74.56,267 +07939,STANDARD,0,Lyons,"Basking Ridge",,NJ,"Somerset County",America/New_York,908,NA,US,40.67,-74.55,151 +07940,STANDARD,0,Madison,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.75,-74.41,14810 +07945,STANDARD,0,Mendham,"Mendham Township, Mendham Twp",,NJ,"Morris County",America/New_York,"862,973",NA,US,40.76,-74.59,9830 +07946,STANDARD,0,Millington,,,NJ,"Morris County",America/New_York,908,NA,US,40.66,-74.51,3130 +07950,STANDARD,0,"Morris Plains","Greystone Park, Greystone Pk",,NJ,"Morris County",America/New_York,,NA,US,40.83,-74.48,19930 +07960,STANDARD,0,Morristown,,,NJ,"Morris County",America/New_York,"201,862,973",NA,US,40.79,-74.47,38520 +07961,"PO BOX",0,"Convent Station","Convent Sta, Morristown",,NJ,"Morris County",America/New_York,862,NA,US,40.78,-74.43,450 +07962,"PO BOX",0,Morristown,,,NJ,"Morris County",America/New_York,862,NA,US,40.79,-74.47,365 +07963,"PO BOX",0,Morristown,,,NJ,"Morris County",America/New_York,862,NA,US,40.79,-74.47,348 +07970,"PO BOX",0,"Mount Freedom",,,NJ,"Morris County",America/New_York,862,NA,US,40.81,-74.57,140 +07974,STANDARD,0,"New Providence","New Providnce","Murray Hill",NJ,"Union County",America/New_York,,NA,US,40.7,-74.4,12550 +07976,STANDARD,0,"New Vernon",,,NJ,"Morris County",America/New_York,,NA,US,40.73,-74.48,1130 +07977,"PO BOX",0,Peapack,,,NJ,"Somerset County",America/New_York,,NA,US,40.71,-74.67,954 +07978,"PO BOX",0,Pluckemin,,,NJ,"Somerset County",America/New_York,908,NA,US,40.66,-74.68,166 +07979,"PO BOX",0,Pottersville,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.7,-74.72,659 +07980,STANDARD,0,Stirling,,,NJ,"Morris County",America/New_York,,NA,US,40.68,-74.49,2340 +07981,STANDARD,0,Whippany,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.82,-74.41,9040 +07983,UNIQUE,1,Whippany,"Corporate Mailings",,NJ,"Morris County",America/New_York,862,NA,US,40.82,-74.41,0 +07999,STANDARD,0,Whippany,,,NJ,"Morris County",America/New_York,"862,973",NA,US,40.82,-74.41,0 +08001,"PO BOX",0,Alloway,,"Paradise Lakes",NJ,"Salem County",America/New_York,856,NA,US,39.56,-75.34,1362 +08002,STANDARD,0,"Cherry Hill",,"Cherry Hill Township, Ellisburg, Erlton",NJ,"Camden County",America/New_York,856,NA,US,39.93,-75.03,21220 +08003,STANDARD,0,"Cherry Hill",,"Cherry Hill Township, Woodcrest",NJ,"Camden County",America/New_York,856,NA,US,39.88,-74.97,29670 +08004,STANDARD,0,Atco,,"Waterford Township, West Atco",NJ,"Camden County",America/New_York,,NA,US,39.76,-74.85,10840 +08005,STANDARD,0,Barnegat,,"Barnegat Township, Warren Grove",NJ,"Ocean County",America/New_York,609,NA,US,39.75,-74.22,23290 +08006,"PO BOX",0,"Barnegat Light","Barnegat Lgt","Barnegat Light Boro",NJ,"Ocean County",America/New_York,,NA,US,39.75,-74.11,716 +08007,STANDARD,0,Barrington,,,NJ,"Camden County",America/New_York,,NA,US,39.87,-75.05,4530 +08008,STANDARD,0,"Beach Haven","Harvey Cedars, Long Bch Twp, Long Beach, Long Beach Township, Ship Bottom, Surf City","Brant Beach, Harvey Cedars Boro, High Bar Harbor, Loveladies, North Beach, Ship Bottom Boro, Surf City Boro",NJ,"Ocean County",America/New_York,609,NA,US,39.54,-74.3,6330 +08009,STANDARD,0,Berlin,"Berlin Boro","Albion, East Berlin, Tansboro",NJ,"Camden County",America/New_York,856,NA,US,39.79,-74.93,12240 +08010,STANDARD,0,Beverly,"Edgewater Park, Edgewater Prk",,NJ,"Burlington County",America/New_York,,NA,US,40.06,-74.92,9620 +08011,"PO BOX",0,Birmingham,,,NJ,"Burlington County",America/New_York,,NA,US,39.97,-74.71,120 +08012,STANDARD,0,Blackwood,Turnersville,"Blenheim, Chews Landing, Hilltop, Lakeland",NJ,"Camden County",America/New_York,856,NA,US,39.79,-75.06,34430 +08014,STANDARD,0,Bridgeport,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.8,-75.34,430 +08015,STANDARD,0,"Browns Mills",,,NJ,"Burlington County",America/New_York,609,NA,US,39.95,-74.55,17360 +08016,STANDARD,0,Burlington,"Burlington City, Burlington Township, Burlngtn City, Burlngtn Twp",,NJ,"Burlington County",America/New_York,609,NA,US,40.07,-74.85,30970 +08018,"PO BOX",0,"Cedar Brook",,,NJ,"Camden County",America/New_York,,NA,US,39.72,-74.9,307 +08019,STANDARD,0,Chatsworth,,,NJ,"Burlington County",America/New_York,,NA,US,39.78,-74.53,830 +08020,STANDARD,0,Clarksboro,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.8,-75.22,2610 +08021,STANDARD,0,Clementon,"Laurel Spgs, Laurel Springs, Lindenwold, Pine Hill, Pine Valley",,NJ,"Camden County",America/New_York,"609,856",NA,US,39.8,-74.98,40250 +08022,STANDARD,0,Columbus,,Mansfield,NJ,"Burlington County",America/New_York,,NA,US,40.06,-74.68,9000 +08023,"PO BOX",0,Deepwater,,,NJ,"Salem County",America/New_York,856,NA,US,39.69,-75.5,526 +08025,"PO BOX",0,Ewan,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.71,-75.23,192 +08026,STANDARD,0,Gibbsboro,,,NJ,"Camden County",America/New_York,856,NA,US,39.83,-74.96,2150 +08027,STANDARD,0,Gibbstown,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.82,-75.27,4470 +08028,STANDARD,0,Glassboro,,Aura,NJ,"Gloucester County",America/New_York,856,NA,US,39.7,-75.11,14910 +08029,STANDARD,0,Glendora,,,NJ,"Camden County",America/New_York,856,NA,US,39.84,-75.06,4210 +08030,STANDARD,0,"Gloucester City","Brooklawn, Gloucester Cy, Gloucstr City",Gloucester,NJ,"Camden County",America/New_York,856,NA,US,39.89,-75.11,11050 +08031,STANDARD,0,Bellmawr,,"Gloucester, Gloucstr City",NJ,"Camden County",America/New_York,856,NA,US,39.86,-75.09,10440 +08032,STANDARD,0,Grenloch,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.77,-75.05,431 +08033,STANDARD,0,Haddonfield,,"East Haddonfield, Tavistock",NJ,"Camden County",America/New_York,"609,856",NA,US,39.89,-75.03,16760 +08034,STANDARD,0,"Cherry Hill",,"Ashland, Cherry Hill Township",NJ,"Camden County",America/New_York,856,NA,US,39.9,-74.99,18140 +08035,STANDARD,0,"Haddon Heights","Haddon Hgts, Haddon Hts",,NJ,"Camden County",America/New_York,"856,609",NA,US,39.88,-75.07,7270 +08036,STANDARD,0,Hainesport,"Hainesport Township, Hainesprt Twp",,NJ,"Burlington County",America/New_York,609,NA,US,39.98,-74.82,6010 +08037,STANDARD,0,Hammonton,"Batsto, Blue Anchor, Mullica","Ancora, Braddock, Elm, Folsom, Nesco, Rosedale, Sweetwater",NJ,"Atlantic County",America/New_York,609,NA,US,39.65,-74.77,21430 +08038,"PO BOX",0,"Hancocks Bridge","Hancocks Brg",,NJ,"Salem County",America/New_York,856,NA,US,39.47,-75.45,290 +08039,"PO BOX",0,Harrisonville,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.69,-75.28,229 +08041,STANDARD,0,Jobstown,,,NJ,"Burlington County",America/New_York,,NA,US,40.03,-74.68,870 +08042,"PO BOX",0,Juliustown,,,NJ,"Burlington County",America/New_York,,NA,US,40.02,-74.66,328 +08043,STANDARD,0,Voorhees,"Kirkwd Vrhes, Kirkwood","Echelon, Kirkwd Voorhs, Voorhees Kirkwood, Voorhees Township",NJ,"Camden County",America/New_York,,NA,US,39.84,-74.95,27010 +08045,STANDARD,0,Lawnside,,,NJ,"Camden County",America/New_York,,NA,US,39.87,-75.03,2400 +08046,STANDARD,0,Willingboro,,,NJ,"Burlington County",America/New_York,,NA,US,40.02,-74.88,28410 +08048,STANDARD,0,Lumberton,"Lumberton Township, Lumberton Twp",,NJ,"Burlington County",America/New_York,,NA,US,39.96,-74.8,11860 +08049,STANDARD,0,Magnolia,,,NJ,"Camden County",America/New_York,,NA,US,39.85,-75.03,4650 +08050,STANDARD,0,Manahawkin,"Stafford Township, Stafford Twp","Beach Haven West, Cedar Bonnet Island",NJ,"Ocean County",America/New_York,,NA,US,39.69,-74.25,24130 +08051,STANDARD,0,Mantua,"West Deptford","Mantua Heights",NJ,"Gloucester County",America/New_York,856,NA,US,39.79,-75.18,9720 +08052,STANDARD,0,"Maple Shade",,,NJ,"Burlington County",America/New_York,,NA,US,39.95,-74.99,17030 +08053,STANDARD,0,Marlton,Evesham,"Evesboro, Evesham Twp, Kresson, Marlton Lakes, North Marlton, Pine Grove",NJ,"Burlington County",America/New_York,856,NA,US,39.9,-74.92,44420 +08054,STANDARD,0,"Mount Laurel",,"Masonville, Mount Laurel Township, Rancocas Woods",NJ,"Burlington County",America/New_York,,NA,US,39.94,-74.9,41670 +08055,STANDARD,0,Medford,"Medford Lakes","Medford Lakes Boro, Medford Township",NJ,"Burlington County",America/New_York,609,NA,US,39.86,-74.82,28020 +08056,STANDARD,0,Mickleton,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.78,-75.25,5160 +08057,STANDARD,0,Moorestown,,Lenola,NJ,"Burlington County",America/New_York,"609,856",NA,US,39.97,-74.94,20660 +08059,STANDARD,0,"Mount Ephraim","W Colls Hgts, West Collingswood Heights",,NJ,"Camden County",America/New_York,856,NA,US,39.88,-75.09,5130 +08060,STANDARD,0,"Mount Holly","Eastamptn Twp, Eastampton, Eastampton Township, Westampton","Mount Holly Township, Westampton Township",NJ,"Burlington County",America/New_York,609,NA,US,39.99,-74.78,23010 +08061,STANDARD,0,"Mount Royal",,,NJ,"Gloucester County",America/New_York,856,NA,US,39.8,-75.21,3420 +08062,STANDARD,0,"Mullica Hill","S Harrisn Twp, South Harrison Township","Harrison Township, S Harrison Twp",NJ,"Gloucester County",America/New_York,"609,856",NA,US,39.73,-75.22,16740 +08063,STANDARD,0,"National Park","West Deptford",,NJ,"Gloucester County",America/New_York,856,NA,US,39.86,-75.18,2730 +08064,"PO BOX",0,"New Lisbon",,,NJ,"Burlington County",America/New_York,,NA,US,39.96,-74.64,591 +08065,STANDARD,0,Palmyra,,,NJ,"Burlington County",America/New_York,,NA,US,40,-75.03,6390 +08066,STANDARD,0,Paulsboro,"West Deptford",Billingsport,NJ,"Gloucester County",America/New_York,856,NA,US,39.83,-75.24,6600 +08067,STANDARD,0,Pedricktown,,,NJ,"Salem County",America/New_York,856,NA,US,39.73,-75.4,1720 +08068,STANDARD,0,Pemberton,,,NJ,"Burlington County",America/New_York,609,NA,US,39.97,-74.68,5720 +08069,STANDARD,0,"Penns Grove","Carneys Point","Carneys Point Township",NJ,"Salem County",America/New_York,856,NA,US,39.72,-75.46,10840 +08070,STANDARD,0,Pennsville,,,NJ,"Salem County",America/New_York,856,NA,US,39.65,-75.51,10750 +08071,STANDARD,0,Pitman,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.73,-75.13,8370 +08072,"PO BOX",0,Quinton,,,NJ,"Salem County",America/New_York,856,NA,US,39.54,-75.42,497 +08073,"PO BOX",0,Rancocas,,,NJ,"Burlington County",America/New_York,,NA,US,40.01,-74.87,378 +08074,"PO BOX",0,Richwood,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.72,-75.16,410 +08075,STANDARD,0,Riverside,"Delanco, Delran","Bridgeboro, Delanco Township, Delran Township, North Delran",NJ,"Burlington County",America/New_York,856,NA,US,40.03,-74.95,26530 +08076,"PO BOX",0,Riverton,,,NJ,"Burlington County",America/New_York,856,NA,US,40.01,-75.01,0 +08077,STANDARD,0,Riverton,Cinnaminson,"Cinnaminson Township",NJ,"Burlington County",America/New_York,856,NA,US,40.01,-75.01,18560 +08078,STANDARD,0,Runnemede,,,NJ,"Camden County",America/New_York,856,NA,US,39.85,-75.07,7130 +08079,STANDARD,0,Salem,Mannington,"Mannington Township",NJ,"Salem County",America/New_York,"609,856",NA,US,39.56,-75.47,8440 +08080,STANDARD,0,Sewell,,"Barnsboro, Cross Keys, Hurffville",NJ,"Gloucester County",America/New_York,856,NA,US,39.75,-75.09,36030 +08081,STANDARD,0,Sicklerville,Erial,,NJ,"Camden County",America/New_York,,NA,US,39.73,-74.98,46450 +08083,STANDARD,0,Somerdale,"Hi Nella",,NJ,"Camden County",America/New_York,,NA,US,39.84,-75.02,8880 +08084,STANDARD,0,Stratford,,,NJ,"Camden County",America/New_York,856,NA,US,39.83,-75.02,6340 +08085,STANDARD,0,Swedesboro,"Logan Township, Logan Twp, Woolwich Township, Woolwich Twp","Auburn, Logan, Woolwich",NJ,"Gloucester County",America/New_York,856,NA,US,39.74,-75.31,20200 +08086,STANDARD,0,Thorofare,"West Deptford",,NJ,"Gloucester County",America/New_York,856,NA,US,39.85,-75.18,7520 +08087,STANDARD,0,Tuckerton,"Little Egg Harbor, Little Egg Harbor Twp, Ltl Egg Hbr, Mystic Islands, Mystic Islnds","Leh, Parkertown, Tuckerton Boro, West Tuckerton",NJ,"Ocean County",America/New_York,609,NA,US,39.59,-74.32,21880 +08088,STANDARD,0,Vincentown,"Shamong, Southampton, Tabernacle","Indian Mills, Shamong Township, Southampton Twp, Tabernacle Twp",NJ,"Burlington County",America/New_York,609,NA,US,39.8,-74.62,22440 +08089,STANDARD,0,"Waterford Works","Chesilhurst, Waterford Wks",Waterford,NJ,"Camden County",America/New_York,,NA,US,39.71,-74.81,3450 +08090,STANDARD,0,Wenonah,,"Oak Valley",NJ,"Gloucester County",America/New_York,856,NA,US,39.79,-75.14,7970 +08091,STANDARD,0,"West Berlin","Berlin Township, Berlin Twp",,NJ,"Camden County",America/New_York,,NA,US,39.81,-74.92,5210 +08092,STANDARD,0,"West Creek",,"Cedar Run, Eagleswood Township, Mayetta, Staffordville",NJ,"Ocean County",America/New_York,,NA,US,39.65,-74.28,3500 +08093,STANDARD,0,Westville,"West Deptford","Verga, Westville Grove",NJ,"Gloucester County",America/New_York,856,NA,US,39.86,-75.13,8390 +08094,STANDARD,0,Williamstown,,"Cecil, Collings Lakes",NJ,"Gloucester County",America/New_York,856,NA,US,39.68,-74.98,36590 +08095,"PO BOX",0,Winslow,,,NJ,"Camden County",America/New_York,,NA,US,39.65,-74.86,351 +08096,STANDARD,0,Woodbury,"Blackwood Ter, Blackwood Terrace, Deptford, West Deptford","Almonesson, Deptford Township, Jericho",NJ,"Gloucester County",America/New_York,"609,856",NA,US,39.83,-75.15,31610 +08097,STANDARD,0,"Woodbury Heights","Deptford, Woodbury, Woodbury Hts","Woodbury Hgts",NJ,"Gloucester County",America/New_York,"609,856",NA,US,39.81,-75.15,3020 +08098,STANDARD,0,Woodstown,"Pilesgrove, Pilesgrove Township, Pilesgrv Twp",Sharptown,NJ,"Salem County",America/New_York,856,NA,US,39.65,-75.32,8260 +08099,"PO BOX",0,Bellmawr,,,NJ,"Camden County",America/New_York,856,NA,US,39.86,-75.09,260 +08101,"PO BOX",0,Camden,,,NJ,"Camden County",America/New_York,856,NA,US,39.93,-75.1,742 +08102,STANDARD,0,Camden,,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.95,-75.12,5330 +08103,STANDARD,0,Camden,,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.94,-75.11,9040 +08104,STANDARD,0,Camden,"Haddon Township, Haddon Twp","South Camden",NJ,"Camden County",America/New_York,856,NA,US,39.93,-75.1,17450 +08105,STANDARD,0,Camden,,"East Camden",NJ,"Camden County",America/New_York,"609,856",NA,US,39.95,-75.09,23780 +08106,STANDARD,0,Audubon,,"Audubon Park",NJ,"Camden County",America/New_York,856,NA,US,39.89,-75.07,8890 +08107,STANDARD,0,Oaklyn,"Collingswood, Haddon Township, Haddon Twp, W Colls, West Collingswood, Woodlynne",,NJ,"Camden County",America/New_York,856,NA,US,39.9,-75.08,11770 +08108,STANDARD,0,Collingswood,"Haddon Township, Haddon Twp, Westmont",,NJ,"Camden County",America/New_York,856,NA,US,39.91,-75.07,16700 +08109,STANDARD,0,Merchantville,Pennsauken,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.95,-75.05,20220 +08110,STANDARD,0,Pennsauken,Delair,,NJ,"Camden County",America/New_York,"609,856",NA,US,39.97,-75.06,17810 +08201,STANDARD,0,Absecon,,"Absecon City, Absecon Heights, Absecon Highlands, Galloway, Galloway Township, Pinehurst, Smithville",NJ,"Atlantic County",America/New_York,609,NA,US,39.42,-74.49,9690 +08202,STANDARD,0,Avalon,,,NJ,"Cape May County",America/New_York,609,NA,US,39.09,-74.73,1160 +08203,STANDARD,0,Brigantine,,"Brigantine City",NJ,"Atlantic County",America/New_York,609,NA,US,39.41,-74.36,7010 +08204,STANDARD,0,"Cape May","N Cape May, North Cape May, West Cape May","Cold Spring, Erma, Fishing Creek, Town Bank",NJ,"Cape May County",America/New_York,609,NA,US,38.94,-74.9,15080 +08205,STANDARD,0,Absecon,"Galloway, Smithville","Galloway Township",NJ,"Atlantic County",America/New_York,609,NA,US,39.48,-74.47,26160 +08210,STANDARD,0,"Cape May Court House","Cape May Ch","Burleigh, Clermont, Mayville, Swainton",NJ,"Cape May County",America/New_York,609,NA,US,39.07,-74.82,15290 +08212,"PO BOX",0,"Cape May Point","Cape May Pt",,NJ,"Cape May County",America/New_York,609,NA,US,38.93,-74.96,258 +08213,"PO BOX",0,Cologne,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.51,-74.56,381 +08214,"PO BOX",0,Dennisville,,"North Dennis",NJ,"Cape May County",America/New_York,609,NA,US,39.22,-74.85,484 +08215,STANDARD,0,"Egg Harbor City","Egg Harbor Cy, Egg Hbr City","Devonshire, Egg Harbor, Germania, Green Bank, Lower Bank, South Egg Harbor, Weekstown",NJ,"Atlantic County",America/New_York,609,NA,US,39.56,-74.59,11320 +08217,"PO BOX",0,Elwood,,,NJ,"Atlantic County",America/New_York,,NA,US,39.57,-74.72,314 +08218,"PO BOX",0,Goshen,,,NJ,"Cape May County",America/New_York,609,NA,US,39.11,-74.86,235 +08219,"PO BOX",0,"Green Creek",,,NJ,"Cape May County",America/New_York,609,NA,US,39.04,-74.91,462 +08220,"PO BOX",0,"Leeds Point",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.49,-74.43,148 +08221,STANDARD,0,Linwood,,,NJ,"Atlantic County",America/New_York,,NA,US,39.34,-74.57,6710 +08223,STANDARD,0,Marmora,,"Beesleys Point, Palermo",NJ,"Cape May County",America/New_York,609,NA,US,39.26,-74.66,4000 +08224,"PO BOX",0,"New Gretna",,,NJ,"Burlington County",America/New_York,,NA,US,39.6,-74.47,714 +08225,STANDARD,0,Northfield,,,NJ,"Atlantic County",America/New_York,,NA,US,39.37,-74.55,8030 +08226,STANDARD,0,"Ocean City",,,NJ,"Cape May County",America/New_York,609,NA,US,39.26,-74.6,9880 +08230,STANDARD,0,"Ocean View","Upper Twp","Palermo, Seaville",NJ,"Cape May County",America/New_York,609,NA,US,39.2,-74.71,5660 +08231,"PO BOX",0,Oceanville,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.48,-74.47,259 +08232,STANDARD,0,Pleasantville,"Mckee City","Bargaintown, Egg Harbor Township, Egg Harbor Twp, Egg Hbr Twp, Farmington, West Atlantic City",NJ,"Atlantic County",America/New_York,609,NA,US,39.39,-74.51,17730 +08234,STANDARD,0,"Egg Harbor Township","Egg Harbor Twp, Egg Hbr Twp","Bargaintown, Mckee City, Steelmanville",NJ,"Atlantic County",America/New_York,609,NA,US,39.41,-74.58,43460 +08240,"PO BOX",0,Pomona,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.49,-74.53,780 +08241,STANDARD,0,"Port Republic",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.53,-74.48,1140 +08242,STANDARD,0,"Rio Grande",,,NJ,"Cape May County",America/New_York,609,NA,US,39.02,-74.87,3770 +08243,STANDARD,0,"Sea Isle City","Townsend Inlt, Townsends Inlet",,NJ,"Cape May County",America/New_York,609,NA,US,39.15,-74.69,1750 +08244,STANDARD,0,"Somers Point",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.31,-74.6,9140 +08245,"PO BOX",0,"South Dennis",,,NJ,"Cape May County",America/New_York,609,NA,US,39.17,-74.82,182 +08246,"PO BOX",0,"South Seaville","S Seaville",,NJ,"Cape May County",America/New_York,609,NA,US,39.18,-74.77,305 +08247,STANDARD,0,"Stone Harbor",,,NJ,"Cape May County",America/New_York,609,NA,US,39.04,-74.76,680 +08248,"PO BOX",0,Strathmere,,,NJ,"Cape May County",America/New_York,609,NA,US,39.19,-74.66,144 +08250,"PO BOX",0,Tuckahoe,,,NJ,"Cape May County",America/New_York,609,NA,US,39.28,-74.78,536 +08251,STANDARD,0,Villas,"Del Haven","Miami Beach",NJ,"Cape May County",America/New_York,609,NA,US,39.01,-74.93,8360 +08252,"PO BOX",0,Whitesboro,,,NJ,"Cape May County",America/New_York,609,NA,US,39.04,-74.86,410 +08260,STANDARD,0,Wildwood,"N Wildwood, North Wildwood, West Wildwood, Wildwood Crest, Wildwood Crst","Anglesea, Grassy Sound, Shaw Crest, Wildwood City",NJ,"Cape May County",America/New_York,609,NA,US,38.98,-74.82,11870 +08270,STANDARD,0,Woodbine,"Corbin City, Dennis Twp","Belleplain, Eldora, Petersburg, Steelmantown",NJ,"Cape May County",America/New_York,609,NA,US,39.22,-74.8,6550 +08302,STANDARD,0,Bridgeton,"Deerfield Twp","Fairfield Twp, Stow Creek Twp, Upper Deerfield Twp",NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.42,-75.22,36460 +08310,STANDARD,0,Buena,,"Buena Vista Township",NJ,"Atlantic County",America/New_York,,NA,US,39.53,-74.9,1470 +08311,STANDARD,0,Cedarville,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.32,-75.2,1810 +08312,STANDARD,0,Clayton,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.65,-75.08,7480 +08313,"PO BOX",0,"Deerfield Street","Deerfield St",Deerfield,NJ,"Cumberland County",America/New_York,856,NA,US,39.49,-75.21,151 +08314,STANDARD,0,Delmont,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.22,-74.94,210 +08315,"PO BOX",0,"Dividing Creek","Dividing Crk",,NJ,"Cumberland County",America/New_York,856,NA,US,39.22,-75.13,295 +08316,"PO BOX",0,Dorchester,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.27,-74.95,554 +08317,STANDARD,0,Dorothy,,,NJ,"Atlantic County",America/New_York,,NA,US,39.4,-74.82,1100 +08318,STANDARD,0,Elmer,Pittsgrove,"Centerton, Daretown, Pittsgrov Twp, Pittsgrove Township",NJ,"Salem County",America/New_York,856,NA,US,39.59,-75.17,11030 +08319,STANDARD,0,"Estell Manor",,,NJ,"Atlantic County",America/New_York,,NA,US,39.37,-74.81,1180 +08320,"PO BOX",0,Fairton,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.39,-75.16,413 +08321,"PO BOX",0,Fortescue,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.22,-75.13,234 +08322,STANDARD,0,Franklinville,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.61,-75.02,9580 +08323,STANDARD,0,Greenwich,,"Greenwich Township",NJ,"Cumberland County",America/New_York,856,NA,US,39.39,-75.36,730 +08324,STANDARD,0,Heislerville,,"Thompson Beach",NJ,"Cumberland County",America/New_York,856,NA,US,39.24,-74.99,350 +08326,STANDARD,0,Landisville,,,NJ,"Atlantic County",America/New_York,,NA,US,39.52,-74.93,1480 +08327,STANDARD,0,Leesburg,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.25,-74.96,680 +08328,STANDARD,0,Malaga,,,NJ,"Gloucester County",America/New_York,856,NA,US,39.57,-75.06,1190 +08329,"PO BOX",0,Mauricetown,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.28,-75.01,283 +08330,STANDARD,0,"Mays Landing",,"Belcoville, English Creek, Scullville, Weymouth",NJ,"Atlantic County",America/New_York,609,NA,US,39.45,-74.72,25980 +08332,STANDARD,0,Millville,,"Carmel, Laurel Lake",NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.39,-75.05,30100 +08340,STANDARD,0,Milmay,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.44,-74.86,800 +08341,STANDARD,0,Minotola,,,NJ,"Atlantic County",America/New_York,,NA,US,39.53,-74.95,1440 +08342,"PO BOX",0,Mizpah,,,NJ,"Atlantic County",America/New_York,,NA,US,39.46,-74.72,322 +08343,STANDARD,0,Monroeville,,,NJ,"Gloucester County",America/New_York,,NA,US,39.64,-75.16,4380 +08344,STANDARD,0,Newfield,,"Willow Grove",NJ,"Gloucester County",America/New_York,,NA,US,39.54,-75.01,5380 +08345,STANDARD,0,Newport,,"Gandys Beach",NJ,"Cumberland County",America/New_York,856,NA,US,39.28,-75.16,650 +08346,STANDARD,0,Newtonville,,,NJ,"Atlantic County",America/New_York,,NA,US,39.56,-74.85,620 +08347,"PO BOX",0,Norma,,,NJ,"Salem County",America/New_York,856,NA,US,39.54,-75.13,425 +08348,STANDARD,0,"Port Elizabeth","Prt Elizabeth",,NJ,"Cumberland County",America/New_York,856,NA,US,39.31,-74.97,260 +08349,STANDARD,0,"Port Norris",,Bivalve,NJ,"Cumberland County",America/New_York,856,NA,US,39.24,-75.04,1480 +08350,STANDARD,0,Richland,,,NJ,"Atlantic County",America/New_York,,NA,US,39.49,-74.88,720 +08352,"PO BOX",0,Rosenhayn,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.48,-75.13,1083 +08353,STANDARD,0,Shiloh,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.46,-75.29,490 +08360,STANDARD,0,Vineland,,"East Vineland, South Vineland",NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.5,-75.01,38090 +08361,STANDARD,0,Vineland,"S Vineland, South Vineland",,NJ,"Cumberland County",America/New_York,"609,856",NA,US,39.46,-74.99,16410 +08362,"PO BOX",0,Vineland,,,NJ,"Cumberland County",America/New_York,856,NA,US,39.46,-74.99,1470 +08401,STANDARD,0,"Atlantic City",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.36,-74.42,29400 +08402,STANDARD,0,"Margate City",,Margate,NJ,"Atlantic County",America/New_York,609,NA,US,39.33,-74.5,4670 +08403,STANDARD,0,Longport,,,NJ,"Atlantic County",America/New_York,609,NA,US,39.32,-74.54,740 +08404,"PO BOX",0,"Atlantic City",,,NJ,"Atlantic County",America/New_York,609,NA,US,39.36,-74.42,1401 +08405,UNIQUE,0,"Atlantic City",,"Nat Aviation Fac Exp Ctr",NJ,"Atlantic County",America/New_York,609,NA,US,39.36,-74.42,0 +08406,STANDARD,0,"Ventnor City",,"Ventnor, Ventnor Heights",NJ,"Atlantic County",America/New_York,609,NA,US,39.34,-74.48,7970 +08501,STANDARD,0,Allentown,,"Upper Freehold",NJ,"Monmouth County",America/New_York,609,NA,US,40.17,-74.58,6610 +08502,STANDARD,0,"Belle Mead",,Montgomery,NJ,"Somerset County",America/New_York,908,NA,US,40.46,-74.64,11580 +08504,"PO BOX",0,Blawenburg,,,NJ,"Somerset County",America/New_York,908,NA,US,40.4,-74.7,102 +08505,STANDARD,0,Bordentown,Fieldsboro,,NJ,"Burlington County",America/New_York,609,NA,US,40.14,-74.7,16950 +08510,STANDARD,0,"Millstone Township","Clarksburg, Millstone Twp",Millstone,NJ,"Monmouth County",America/New_York,732,NA,US,40.19,-74.42,4900 +08511,STANDARD,0,Cookstown,,,NJ,"Burlington County",America/New_York,,NA,US,40.04,-74.55,910 +08512,STANDARD,0,Cranbury,"East Windsor","E Windsor",NJ,"Mercer County",America/New_York,609,NA,US,40.31,-74.51,11670 +08514,STANDARD,0,"Cream Ridge",,"Creamridge, Upper Freehold Township",NJ,"Monmouth County",America/New_York,,NA,US,40.14,-74.49,4470 +08515,STANDARD,0,Chesterfield,Crosswicks,"Chesterfield Township",NJ,"Burlington County",America/New_York,,NA,US,40.15,-74.66,6150 +08518,STANDARD,0,Florence,,,NJ,"Burlington County",America/New_York,609,NA,US,40.11,-74.8,5400 +08520,STANDARD,0,Hightstown,"East Windsor","E Windsor",NJ,"Mercer County",America/New_York,609,NA,US,40.26,-74.52,27350 +08525,STANDARD,0,Hopewell,,"Hopewell Township, Hopewell Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.38,-74.76,4440 +08526,"PO BOX",0,Imlaystown,,,NJ,"Monmouth County",America/New_York,732,NA,US,40.16,-74.49,31 +08527,STANDARD,0,Jackson,,"Jackson Township, Jackson Twp",NJ,"Ocean County",America/New_York,732,NA,US,40.1,-74.35,53140 +08528,STANDARD,0,Kingston,,,NJ,"Somerset County",America/New_York,609,NA,US,40.39,-74.62,360 +08530,STANDARD,0,Lambertville,,"West Amwell",NJ,"Hunterdon County",America/New_York,609,NA,US,40.36,-74.94,6920 +08533,STANDARD,0,"New Egypt",,"Plumsted, Plumsted Township, Plumsted Twp",NJ,"Ocean County",America/New_York,609,NA,US,40.06,-74.53,6330 +08534,STANDARD,0,Pennington,,,NJ,"Mercer County",America/New_York,609,NA,US,40.32,-74.79,12950 +08535,STANDARD,0,"Millstone Township","Millstone Twp, Perrineville",Millstone,NJ,"Monmouth County",America/New_York,732,NA,US,40.21,-74.44,5210 +08536,STANDARD,0,Plainsboro,,,NJ,"Middlesex County",America/New_York,609,NA,US,40.33,-74.58,19110 +08540,STANDARD,0,Princeton,,"Princeton Township, Princeton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,42820 +08541,UNIQUE,0,Princeton,,"Educational Testing Service",NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,0 +08542,STANDARD,0,Princeton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.66,2780 +08543,"PO BOX",0,Princeton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,403 +08544,UNIQUE,0,Princeton,,"Princeton University",NJ,"Mercer County",America/New_York,609,NA,US,40.35,-74.65,806 +08550,STANDARD,0,"Princeton Junction","Princeton Jct, West Windsor","W Windsor, W Windsor Township, West Win Tow",NJ,"Mercer County",America/New_York,609,NA,US,40.28,-74.61,20750 +08551,STANDARD,0,Ringoes,,"East Amwell, East Amwell Township, East Amwell Twp",NJ,"Hunterdon County",America/New_York,,NA,US,40.44,-74.82,5620 +08553,STANDARD,0,"Rocky Hill",,,NJ,"Somerset County",America/New_York,,NA,US,40.4,-74.63,770 +08554,STANDARD,0,Roebling,,,NJ,"Burlington County",America/New_York,,NA,US,40.12,-74.78,3470 +08555,"PO BOX",0,Roosevelt,,,NJ,"Monmouth County",America/New_York,,NA,US,40.22,-74.47,880 +08556,STANDARD,0,Rosemont,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.42,-74.99,158 +08557,"PO BOX",0,Sergeantsville,Sergeantsvlle,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.45,-74.94,288 +08558,STANDARD,0,Skillman,,Montgomery,NJ,"Somerset County",America/New_York,,NA,US,40.41,-74.7,7630 +08559,STANDARD,0,Stockton,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.4,-74.97,4370 +08560,STANDARD,0,Titusville,Ewing,,NJ,"Mercer County",America/New_York,609,NA,US,40.31,-74.86,3370 +08561,"PO BOX",0,Windsor,,,NJ,"Mercer County",America/New_York,609,NA,US,40.25,-74.58,258 +08562,STANDARD,0,Wrightstown,,"Jacobstown, North Hanover",NJ,"Burlington County",America/New_York,,NA,US,40.06,-74.59,4600 +08601,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,76 +08602,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,113 +08603,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,78 +08604,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,125 +08605,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,84 +08606,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,90 +08607,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,993 +08608,STANDARD,0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,740 +08609,STANDARD,0,Trenton,Hamilton,,NJ,"Mercer County",America/New_York,609,NA,US,40.23,-74.74,10690 +08610,STANDARD,0,Trenton,Hamilton,"Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.19,-74.72,28530 +08611,STANDARD,0,Trenton,Hamilton,"Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.18,-74.74,19890 +08618,STANDARD,0,Trenton,Ewing,"Ewing Township, Ewing Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.25,-74.79,26950 +08619,STANDARD,0,Trenton,"Hamilton, Mercerville","Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.24,-74.7,20960 +08620,STANDARD,0,Trenton,Hamilton,"Groveville, Hamilton Township, Hamilton Twp, Yardville",NJ,"Mercer County",America/New_York,609,NA,US,40.17,-74.65,11230 +08625,"PO BOX",0,Trenton,,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,679 +08628,STANDARD,0,Trenton,"Ewing, West Trenton","Ewing Township, Ewing Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.26,-74.83,8610 +08629,STANDARD,0,Trenton,Hamilton,"Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.73,11370 +08638,STANDARD,0,Trenton,Ewing,"Ewing Township, Ewing Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.25,-74.76,18930 +08640,STANDARD,0,"Joint Base Mdl","Fort Dix, Jb Mdl","Ft Dix",NJ,"Burlington County",America/New_York,609,NA,US,40,-74.59,2680 +08641,STANDARD,0,"Joint Base Mdl","Jb Mdl, Mc Guire AFB, Trenton","Mc Guire Air Force Base",NJ,"Burlington County",America/New_York,609,NA,US,40.02,-74.59,4200 +08644,STANDARD,1,Trenton,Hamilton,,NJ,,America/New_York,,NA,US,40.22,-74.76,0 +08645,UNIQUE,0,Trenton,,"Nj Income Tax, State Income Tax",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08646,UNIQUE,0,Trenton,,"Division Of Revenue, Nj Taxation Dept",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08647,UNIQUE,0,Trenton,,"Nj Income Tax",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08648,STANDARD,0,"Lawrence Township","Lawrence, Lawrence Twp, Lawrenceville, Trenton",,NJ,"Mercer County",America/New_York,609,NA,US,40.28,-74.72,27760 +08650,"PO BOX",0,Trenton,Hamilton,,NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,390 +08666,UNIQUE,0,Trenton,,"Nj Motor Vehicles",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08690,STANDARD,0,Trenton,"Hamilton, Hamilton Sq, Hamilton Square","Hamilton Township, Hamilton Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.66,18740 +08691,STANDARD,0,Robbinsville,"Hamilton, Trenton","Hamilton Township, Hamilton Twp, Uppr Free Twp",NJ,"Mercer County",America/New_York,609,NA,US,40.21,-74.59,16260 +08695,UNIQUE,0,Trenton,,"Division Of Revenue, Nj Taxation Dept",NJ,"Mercer County",America/New_York,609,NA,US,40.22,-74.76,0 +08701,STANDARD,0,Lakewood,,,NJ,"Ocean County",America/New_York,"732,848,908",NA,US,40.09,-74.21,115570 +08720,"PO BOX",0,Allenwood,,,NJ,"Monmouth County",America/New_York,,NA,US,40.13,-74.09,1077 +08721,STANDARD,0,Bayville,,"Berkeley Township, Berkeley Twp",NJ,"Ocean County",America/New_York,,NA,US,39.91,-74.21,19730 +08722,STANDARD,0,Beachwood,,,NJ,"Ocean County",America/New_York,,NA,US,39.92,-74.2,10190 +08723,STANDARD,0,Brick,Osbornville,Bricktown,NJ,"Ocean County",America/New_York,732,NA,US,40.04,-74.11,28850 +08724,STANDARD,0,Brick,"Wall Township","Bricktown, Wall Twp",NJ,"Ocean County",America/New_York,732,NA,US,40.06,-74.11,38000 +08730,STANDARD,0,Brielle,,,NJ,"Monmouth County",America/New_York,,NA,US,40.1,-74.06,4990 +08731,STANDARD,0,"Forked River",,Lacey,NJ,"Ocean County",America/New_York,609,NA,US,39.84,-74.19,19360 +08732,"PO BOX",0,"Island Heights","Island Hgts",,NJ,"Ocean County",America/New_York,,NA,US,39.94,-74.14,1648 +08733,STANDARD,0,Lakehurst,"Jb Mdl, Joint Base Mdl, Lakehurst Nae, Lakehurst Naec","Manchester, Manchester Township, Manchester Twp",NJ,"Ocean County",America/New_York,"732,848",NA,US,40.01,-74.32,2410 +08734,STANDARD,0,"Lanoka Harbor",,"Lacey Township",NJ,"Ocean County",America/New_York,609,NA,US,39.86,-74.16,7160 +08735,STANDARD,0,Lavallette,,,NJ,"Ocean County",America/New_York,,NA,US,39.98,-74.07,2630 +08736,STANDARD,0,Manasquan,,"Wall Township, Wall Twp",NJ,"Monmouth County",America/New_York,732,NA,US,40.11,-74.03,12220 +08738,STANDARD,0,Mantoloking,,,NJ,"Ocean County",America/New_York,,NA,US,40.02,-74.06,680 +08739,"PO BOX",0,"Normandy Beach","Normandy Bch",,NJ,"Ocean County",America/New_York,,NA,US,40,-74.06,494 +08740,"PO BOX",0,"Ocean Gate",,,NJ,"Ocean County",America/New_York,,NA,US,39.93,-74.13,1904 +08741,STANDARD,0,"Pine Beach",,,NJ,"Ocean County",America/New_York,,NA,US,39.93,-74.17,2650 +08742,STANDARD,0,"Point Pleasant Beach","Bay Head, Point Pleasant Boro, Pt Pleas Bch, Pt Pleasant, Pt Pleasant Beach","Point Pleasant",NJ,"Ocean County",America/New_York,"732,848",NA,US,40.09,-74.04,23480 +08750,STANDARD,0,"Sea Girt",,"Wall Township, Wall Twp",NJ,"Monmouth County",America/New_York,,NA,US,40.12,-74.03,3280 +08751,STANDARD,0,"Seaside Heights","Seaside Hgts","Ortley Beach, Pelican Island",NJ,"Ocean County",America/New_York,,NA,US,39.94,-74.07,3050 +08752,STANDARD,0,"Seaside Park",,"S Seaside Pk, South Seaside Park",NJ,"Ocean County",America/New_York,732,NA,US,39.79,-74.09,1770 +08753,STANDARD,0,"Toms River",,"Berkeley, Dover Township, Dover Twp",NJ,"Ocean County",America/New_York,"732,848,908",NA,US,39.95,-74.18,58030 +08754,"PO BOX",0,"Toms River",,,NJ,"Ocean County",America/New_York,732,NA,US,39.95,-74.18,743 +08755,STANDARD,0,"Toms River",,,NJ,"Ocean County",America/New_York,"732,848,908",NA,US,40.01,-74.22,24690 +08756,"PO BOX",0,"Toms River",,,NJ,"Ocean County",America/New_York,732,NA,US,39.95,-74.18,93 +08757,STANDARD,0,"Toms River","Berkeley, Manchester","Berkeley Township, Berkeley Twp, S Toms River, South Toms River",NJ,"Ocean County",America/New_York,"732,848,908",NA,US,39.94,-74.25,28720 +08758,STANDARD,0,Waretown,,,NJ,"Ocean County",America/New_York,609,NA,US,39.78,-74.19,7220 +08759,STANDARD,0,"Manchester Township","Lakehurst, Manchester, Manchester Tw, Whiting",,NJ,"Ocean County",America/New_York,"732,848",NA,US,39.93,-74.39,27900 +08801,STANDARD,0,Annandale,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.62,-74.89,7160 +08802,STANDARD,0,Asbury,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.67,-75.02,4000 +08803,"PO BOX",0,Baptistown,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.49,-75,158 +08804,STANDARD,0,Bloomsbury,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.65,-75.08,2820 +08805,STANDARD,0,"Bound Brook",,"Bound Brk",NJ,"Somerset County",America/New_York,"848,732",NA,US,40.56,-74.53,11750 +08807,STANDARD,0,Bridgewater,,,NJ,"Somerset County",America/New_York,,NA,US,40.59,-74.62,38160 +08808,"PO BOX",0,Broadway,,,NJ,"Warren County",America/New_York,908,NA,US,40.73,-75.05,271 +08809,STANDARD,0,Clinton,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.63,-74.91,5310 +08810,STANDARD,0,Dayton,,"South Brunswick",NJ,"Middlesex County",America/New_York,732,NA,US,40.38,-74.51,8180 +08812,STANDARD,0,Dunellen,"Green Brook",,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.6,-74.48,13980 +08816,STANDARD,0,"East Brunswick","E Brunswick",,NJ,"Middlesex County",America/New_York,732,NA,US,40.42,-74.41,47410 +08817,STANDARD,0,Edison,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.51,-74.39,44110 +08818,"PO BOX",0,Edison,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.52,-74.36,781 +08820,STANDARD,0,Edison,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.58,-74.37,40310 +08821,"PO BOX",0,Flagtown,,,NJ,"Somerset County",America/New_York,,NA,US,40.52,-74.69,497 +08822,STANDARD,0,Flemington,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.5,-74.86,30310 +08823,STANDARD,0,"Franklin Park",,,NJ,"Somerset County",America/New_York,732,NA,US,40.44,-74.54,8600 +08824,STANDARD,0,"Kendall Park",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.42,-74.55,13280 +08825,STANDARD,0,Frenchtown,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.52,-75.05,4060 +08826,STANDARD,0,"Glen Gardner",,,NJ,"Hunterdon County",America/New_York,,NA,US,40.69,-74.94,5040 +08827,STANDARD,0,Hampton,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.7,-74.96,4220 +08828,STANDARD,0,Helmetta,,,NJ,"Middlesex County",America/New_York,,NA,US,40.38,-74.42,2240 +08829,STANDARD,0,"High Bridge",,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.66,-74.89,3440 +08830,STANDARD,0,Iselin,,,NJ,"Middlesex County",America/New_York,,NA,US,40.57,-74.31,19000 +08831,STANDARD,0,"Monroe Township","Jamesburg, Monroe, Monroe Twp",,NJ,"Middlesex County",America/New_York,732,NA,US,40.34,-74.44,53620 +08832,STANDARD,0,Keasbey,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.51,-74.31,2990 +08833,STANDARD,0,Lebanon,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.64,-74.83,8740 +08834,"PO BOX",0,"Little York",,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.6,-75.05,19 +08835,STANDARD,0,Manville,,,NJ,"Somerset County",America/New_York,,NA,US,40.54,-74.58,9680 +08836,STANDARD,0,Martinsville,,,NJ,"Somerset County",America/New_York,,NA,US,40.6,-74.56,3950 +08837,STANDARD,0,Edison,,"Menlo Park",NJ,"Middlesex County",America/New_York,"848,908,732",NA,US,40.52,-74.36,15930 +08840,STANDARD,0,Metuchen,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.54,-74.36,17080 +08844,STANDARD,0,Hillsborough,,Millstone,NJ,"Somerset County",America/New_York,848,NA,US,40.47,-74.62,41310 +08846,STANDARD,0,Middlesex,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.57,-74.5,13530 +08848,STANDARD,0,Milford,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.56,-75.09,7760 +08850,STANDARD,0,Milltown,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.45,-74.43,8090 +08852,STANDARD,0,"Monmouth Junction","Monmouth Jct",,NJ,"Middlesex County",America/New_York,"732,848",NA,US,40.38,-74.54,18560 +08853,STANDARD,0,"Neshanic Station","Branchburg, Neshanic Sta",,NJ,"Somerset County",America/New_York,908,NA,US,40.53,-74.74,5170 +08854,STANDARD,0,Piscataway,,,NJ,"Middlesex County",America/New_York,"732,908",NA,US,40.51,-74.45,49100 +08855,"PO BOX",0,Piscataway,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.51,-74.45,496 +08857,STANDARD,0,"Old Bridge",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.39,-74.33,37960 +08858,"PO BOX",0,Oldwick,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.68,-74.74,761 +08859,STANDARD,0,Parlin,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.46,-74.3,22600 +08861,STANDARD,0,"Perth Amboy",Hopelawn,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.52,-74.27,52450 +08862,"PO BOX",0,"Perth Amboy",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.52,-74.27,1833 +08863,STANDARD,0,Fords,"Perth Amboy",,NJ,"Middlesex County",America/New_York,"848,908,732",NA,US,40.54,-74.31,12120 +08865,STANDARD,0,Phillipsburg,Alpha,"Delaware Park, Harmony Township, Lopatcong",NJ,"Warren County",America/New_York,908,NA,US,40.68,-75.18,26470 +08867,STANDARD,0,Pittstown,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.57,-74.96,5020 +08868,"PO BOX",0,Quakertown,,,NJ,"Hunterdon County",America/New_York,908,NA,US,40.55,-74.94,129 +08869,STANDARD,0,Raritan,,,NJ,"Somerset County",America/New_York,,NA,US,40.57,-74.64,7440 +08870,"PO BOX",0,Readington,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.57,-74.73,74 +08871,"PO BOX",0,Sayreville,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.46,-74.32,115 +08872,STANDARD,0,Sayreville,,,NJ,"Middlesex County",America/New_York,732,NA,US,40.44,-74.36,18880 +08873,STANDARD,0,Somerset,,"East Millstone, Franklin Twp, Middlebush, Zarepath",NJ,"Somerset County",America/New_York,"908,732",NA,US,40.49,-74.48,50710 +08875,"PO BOX",0,Somerset,"E Millstone, East Millstone",,NJ,"Somerset County",America/New_York,732,NA,US,40.49,-74.48,735 +08876,STANDARD,0,Somerville,"Branchburg, North Branch","Finderne, South Branch",NJ,"Somerset County",America/New_York,"732,908",NA,US,40.57,-74.61,21190 +08879,STANDARD,0,"South Amboy","Laurence Harbor, Laurence Hbr",Morgan,NJ,"Middlesex County",America/New_York,732,NA,US,40.47,-74.29,20260 +08880,STANDARD,0,"South Bound Brook","S Bound Brook",,NJ,"Somerset County",America/New_York,"732,848",NA,US,40.55,-74.52,4340 +08882,STANDARD,0,"South River",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.44,-74.37,14410 +08884,STANDARD,0,Spotswood,,,NJ,"Middlesex County",America/New_York,,NA,US,40.39,-74.39,7480 +08885,"PO BOX",0,Stanton,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.58,-74.81,198 +08886,STANDARD,0,Stewartsville,,,NJ,"Warren County",America/New_York,908,NA,US,40.69,-75.1,6680 +08887,STANDARD,0,"Three Bridges",,,NJ,"Hunterdon County",America/New_York,,NA,US,40.52,-74.8,930 +08888,"PO BOX",0,Whitehouse,,,NJ,"Hunterdon County",America/New_York,,NA,US,40.62,-74.76,324 +08889,STANDARD,0,"Whitehouse Station","White Hse Sta","White House Station",NJ,"Hunterdon County",America/New_York,908,NA,US,40.6,-74.76,9670 +08890,"PO BOX",0,Zarephath,,,NJ,"Somerset County",America/New_York,732,NA,US,40.54,-74.58,32 +08899,STANDARD,0,Edison,,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.52,-74.36,0 +08901,STANDARD,0,"New Brunswick",,,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.48,-74.44,36520 +08902,STANDARD,0,"North Brunswick","N Brunswick, New Brunswick",,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.45,-74.48,40090 +08903,"PO BOX",0,"New Brunswick",,,NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,1923 +08904,STANDARD,0,"Highland Park","New Brunswick",,NJ,"Middlesex County",America/New_York,"732,848,908",NA,US,40.5,-74.42,12580 +08905,UNIQUE,1,"New Brunswick",,Wachovia,NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,0 +08906,"PO BOX",0,"New Brunswick",Edison,"Kilmer Gmf",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,261 +08922,UNIQUE,1,"New Brunswick",,"Prudential Mutual Fund Servi",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.45,0 +08933,UNIQUE,0,"New Brunswick",,"Johnson & Johnson",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,0 +08988,UNIQUE,1,"New Brunswick",,"Merrill Lynch",NJ,"Middlesex County",America/New_York,732,NA,US,40.45,-74.48,0 +08989,UNIQUE,0,"New Brunswick",,"Merrill Lynch",NJ,"Middlesex County",America/New_York,732,NA,US,40.48,-74.44,0 +09001,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09002,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09003,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09004,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09005,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09006,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09007,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09008,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09009,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09010,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09011,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09012,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09013,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09014,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09015,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09016,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09017,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09018,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09020,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09021,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09028,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09031,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09033,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09034,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09036,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09038,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09042,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09044,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09045,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09046,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09049,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09051,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09053,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09054,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09055,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09056,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09058,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09059,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09060,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09063,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09067,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09068,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09069,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09074,MILITARY,1,Apo,,,AE,,,,NA,DE,0,0,0 +09075,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09076,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09079,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09080,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09081,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09086,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09088,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09089,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09090,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09092,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09094,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09095,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09096,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09099,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09100,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09102,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09103,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09104,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09107,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09110,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09112,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09113,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09114,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09115,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09116,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09123,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09125,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09126,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09128,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09131,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09135,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09136,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09137,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09138,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09139,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09140,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09142,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09143,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09154,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09160,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09161,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09165,MILITARY,1,Apo,,,AE,,,,NA,DE,0,0,0 +09166,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09169,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09170,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09171,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09172,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09173,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09174,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09175,MILITARY,0,Dpo,,,AE,,,,NA,DE,0,0,0 +09176,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09177,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09178,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09180,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09182,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09183,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09185,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09186,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09201,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09203,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09204,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09211,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09212,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09213,MILITARY,0,Dpo,,,AE,,,,EU,DE,0,0,0 +09214,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09216,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09225,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09226,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09227,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09229,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09237,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09240,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09241,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09242,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09244,MILITARY,1,Apo,,,AE,,,,NA,DE,0,0,0 +09245,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09250,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09252,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09261,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09262,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09263,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09264,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09265,MILITARY,0,Dpo,,,AE,,,,EU,DE,0,0,0 +09266,MILITARY,0,Fpo,,,AE,,,,EU,DE,0,0,0 +09267,MILITARY,1,Apo,,,AE,,,,EU,DE,0,0,0 +09276,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09277,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09278,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09279,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09283,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09285,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09287,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09289,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09290,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09291,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09292,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09300,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09301,MILITARY,0,Dpo,,,AE,,,,ME,IQ,0,0,0 +09302,MILITARY,0,Apo,,,AE,,,,EU,GE,0,0,0 +09303,MILITARY,1,Apo,,,AE,,,,ME,BH,0,0,0 +09304,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09305,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09306,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09307,MILITARY,0,Apo,,,AE,,,,ME,BH,0,0,0 +09308,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09309,MILITARY,0,Apo,,,AE,,,,ME,QA,0,0,0 +09310,MILITARY,0,Dpo,,,AE,,,,ME,AF,0,0,0 +09311,MILITARY,0,Dpo,,,AE,,,,ME,AF,0,0,0 +09312,MILITARY,0,Dpo,,,AE,,,,ME,IQ,0,0,0 +09313,MILITARY,0,Fpo,,,AE,,,,ME,AF,0,0,0 +09314,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09315,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09316,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09317,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09318,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09319,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09320,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09321,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09322,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09323,MILITARY,0,Apo,,,AE,,,,NA,IQ,-44.25,33.53,0 +09324,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09327,MILITARY,1,Apo,,,AE,,,,ME,KW,0,0,0 +09328,MILITARY,1,Apo,,,AE,,,,AS,OM,0,0,0 +09330,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09331,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09332,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09333,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09334,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09336,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09337,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09338,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09339,MILITARY,1,Apo,,,AE,,,,AS,TM,0,0,0 +09340,MILITARY,0,Apo,,,AE,,,,NA,XK,0,0,0 +09342,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09343,MILITARY,0,Apo,,,AE,,,,ME,IL,0,0,0 +09344,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09346,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09347,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09348,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09350,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09351,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09352,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09353,MILITARY,1,Apo,,,AE,,,,AS,KG,0,0,0 +09354,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09355,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09356,MILITARY,0,Apo,,,AE,,,,ME,AF,0,0,0 +09357,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09358,MILITARY,1,Apo,,,AE,,,,AF,SC,0,0,0 +09359,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09360,MILITARY,1,Apo,,,AE,,,,CA,CU,0,0,0 +09361,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09362,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09363,MILITARY,0,Fpo,,,AE,,,,AF,DJ,0,0,0 +09364,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09365,MILITARY,0,Apo,,,AE,,,,ME,QA,0,0,0 +09366,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09367,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09368,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09369,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09370,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09371,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09372,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09373,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09374,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09375,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09376,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09377,MILITARY,1,Fpo,,,AE,,,,ME,AF,0,0,0 +09378,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09379,MILITARY,1,Fpo,,,AE,,,,ME,BH,0,0,0 +09380,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09381,MILITARY,0,Apo,,,AE,,,,ME,IQ,0,0,0 +09382,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09383,MILITARY,1,Apo,,,AE,,,,ME,AF,0,0,0 +09384,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09386,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09387,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09388,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09389,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09390,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09391,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09393,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09394,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09396,MILITARY,1,Apo,,,AE,,,,ME,IQ,0,0,0 +09397,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09399,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09401,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09402,MILITARY,1,Apo,,,AE,,,,NA,GB,0,0,0 +09403,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09409,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09410,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09420,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09421,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09447,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09454,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09456,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09459,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09461,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09463,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09464,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09467,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09468,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09469,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09470,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09487,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09488,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09489,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09490,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09491,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09494,MILITARY,0,Apo,,,AE,,,,NA,GB,0,0,0 +09496,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09497,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09498,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09499,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09501,MILITARY,0,Fpo,,,AE,,,,NA,GB,0,0,0 +09502,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09503,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09504,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09505,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09506,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09507,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09508,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09509,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09510,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09511,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09512,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09513,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09514,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09517,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09520,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09522,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09523,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09524,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09532,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09533,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09534,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09541,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09542,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09543,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09544,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09545,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09549,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09550,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09554,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09556,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09557,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09564,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09565,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09566,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09567,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09568,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09569,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09570,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09573,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09574,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09575,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09576,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09577,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09578,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09579,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09581,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09582,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09583,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09586,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09587,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09588,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09589,MILITARY,0,Fpo,,,AE,,,,CA,CU,0,0,0 +09590,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09591,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09592,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09593,MILITARY,0,Fpo,,,AE,,,,CA,CU,0,0,0 +09594,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09595,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09596,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09599,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09600,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09601,MILITARY,0,Dpo,,,AE,,,,EU,IT,0,0,0 +09602,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09603,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09604,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09605,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09606,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09607,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09608,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09609,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09610,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09611,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09612,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09613,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09614,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09617,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09618,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09619,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09620,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09621,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09622,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09623,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09624,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09625,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09626,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09627,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09630,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09631,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09633,MILITARY,0,Apo,,,AE,,,,EU,IT,0,0,0 +09634,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09636,MILITARY,0,Fpo,,,AE,,,,EU,IT,0,0,0 +09642,MILITARY,0,Dpo,,,AE,,,,EU,ES,0,0,0 +09643,MILITARY,0,Apo,,,AE,,,,EU,ES,0,0,0 +09644,MILITARY,1,Fpo,,,AE,,,,NA,US,0,0,0 +09645,MILITARY,0,Fpo,,,AE,,,,EU,ES,0,0,0 +09647,MILITARY,0,Apo,,,AE,,,,EU,ES,0,0,0 +09648,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09649,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09701,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09702,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09703,MILITARY,0,Apo,,,AE,,,,EU,NL,0,0,0 +09704,MILITARY,0,Apo,,,AE,,,,NA,GL,0,0,0 +09705,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09706,MILITARY,0,Apo,,,AE,,,,EU,NO,0,0,0 +09707,MILITARY,0,Dpo,,,AE,,,,EU,NO,0,0,0 +09708,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09709,MILITARY,0,Dpo,,,AE,,,,EU,NL,0,0,0 +09710,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09711,MILITARY,0,Apo,,,AE,,,,EU,NL,0,0,0 +09712,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09713,MILITARY,1,Apo,,,AE,,,,EU,BE,0,0,0 +09714,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09715,MILITARY,0,Dpo,,,AE,,,,EU,NL,0,0,0 +09716,MILITARY,0,Dpo,,,AE,,,,EU,DK,0,0,0 +09717,MILITARY,0,Apo,,,AE,,,,EU,NO,0,0,0 +09718,MILITARY,0,Dpo,,,AE,,,,AF,MA,0,0,0 +09719,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09720,MILITARY,0,Apo,,,AE,,,,NA,PT,0,0,0 +09721,MILITARY,1,Dpo,,,AE,,,,EU,RU,0,0,0 +09722,MILITARY,0,Apo,,,AE,,,,EU,PL,0,0,0 +09723,MILITARY,0,Dpo,,,AE,,,,EU,FI,0,0,0 +09724,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09725,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09726,MILITARY,0,Dpo,,,AE,,,,EU,PT,0,0,0 +09727,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09728,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09729,MILITARY,0,Fpo,,,AE,,,,EU,PT,0,0,0 +09730,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09731,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09732,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09733,MILITARY,0,Fpo,,,AE,,,,NA,CA,0,0,0 +09734,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09735,MILITARY,0,Apo,,,AE,,,,NA,CA,0,0,0 +09736,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09737,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09738,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09739,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09740,MILITARY,1,Apo,,,AE,,,,EU,BE,0,0,0 +09741,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09742,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09743,MILITARY,0,Apo,,,AE,,,,EU,PL,0,0,0 +09744,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09745,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09746,MILITARY,1,Apo,,,AE,,,,EU,FR,0,0,0 +09747,MILITARY,1,Fpo,,,AE,,,,NA,GI,0,0,0 +09748,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09749,MILITARY,0,Apo,,,AE,,,,EU,RO,0,0,0 +09750,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09751,MILITARY,0,Apo,,,AE,,,,EU,DE,0,0,0 +09752,MILITARY,0,Apo,,,AE,,,,EU,NL,0,0,0 +09753,MILITARY,0,Apo,,,AE,,,,EU,BG,0,0,0 +09754,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09755,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09756,MILITARY,0,Apo,,,AE,,,,EU,BE,0,0,0 +09757,MILITARY,1,Apo,,,AE,,,,EU,BE,0,0,0 +09758,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09759,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09760,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09761,MILITARY,0,Fpo,,,AE,,,,NA,US,0,0,0 +09762,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09769,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09771,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09777,MILITARY,0,Dpo,,,AE,,,,EU,FR,0,0,0 +09780,MILITARY,0,Apo,,,AE,,,,NA,BA,0,0,0 +09789,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09790,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09798,MILITARY,1,Apo,,,AE,,,,EU,FR,0,0,0 +09800,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09801,MILITARY,0,Apo,,,AE,,,,AS,AE,0,0,0 +09802,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09803,MILITARY,0,Apo,,,AE,,,,ME,SA,0,0,0 +09804,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09805,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09806,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09807,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09808,MILITARY,0,Dpo,,,AE,,,,ME,IQ,0,0,0 +09809,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09810,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09811,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09812,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09813,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09814,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09815,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09816,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09817,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09818,MILITARY,0,Apo,,,AE,,,,AS,CY,0,0,0 +09819,MILITARY,1,Apo,,,AE,,,,EU,TR,0,0,0 +09820,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09821,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09822,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09823,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09824,MILITARY,0,Apo,,,AE,,,,EU,TR,0,0,0 +09825,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09826,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09827,MILITARY,0,Dpo,,,AE,,,,EU,TR,0,0,0 +09828,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09829,MILITARY,0,Apo,,,AE,,,,ME,IL,0,0,0 +09830,MILITARY,0,Dpo,,,AE,,,,ME,IL,0,0,0 +09831,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09832,MILITARY,0,Apo,,,AE,,,,AF,EG,0,0,0 +09833,MILITARY,0,Apo,,,AE,,,,AF,EG,0,0,0 +09834,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09835,MILITARY,1,Fpo,,,AE,,,,AF,EG,0,0,0 +09836,MILITARY,0,Dpo,,,AE,,,,NA,GB,0,0,0 +09837,MILITARY,0,Fpo,,,AE,,,,AS,AE,0,0,0 +09838,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09839,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09840,MILITARY,1,Fpo,,,AE,,,,ME,BH,0,0,0 +09841,MILITARY,0,Fpo,,,AE,,,,EU,GR,0,0,0 +09842,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09843,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09844,MILITARY,0,Dpo,,,AE,,,,EU,GR,0,0,0 +09845,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09846,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09847,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09848,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09851,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09852,MILITARY,0,Apo,,,AE,,,,ME,SA,0,0,0 +09853,MILITARY,0,Apo,,,AE,,,,AS,AE,0,0,0 +09854,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09855,MILITARY,0,Apo,,,AE,,,,ME,KW,0,0,0 +09856,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09857,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09858,MILITARY,0,Apo,,,AE,,,,ME,SA,0,0,0 +09859,MILITARY,0,Fpo,,,AE,,,,ME,BH,0,0,0 +09860,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09861,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09862,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09863,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09864,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09865,MILITARY,0,Fpo,,,AE,,,,NA,GR,0,0,0 +09867,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09868,MILITARY,0,Apo,,,AE,,,,AF,EG,0,0,0 +09869,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09870,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09871,MILITARY,1,Dpo,,,AE,,,,NA,US,0,0,0 +09872,MILITARY,1,Dpo,,,AE,,,,NA,US,0,0,0 +09873,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09874,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09875,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09876,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09877,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09880,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09888,MILITARY,1,Apo,,,AE,,,,NA,US,0,0,0 +09890,MILITARY,0,Apo,,,AE,,,,NA,US,0,0,0 +09892,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09895,MILITARY,0,Dpo,,,AE,,,,NA,US,0,0,0 +09898,MILITARY,0,Apo,,,AE,,,,ME,QA,0,0,0 +09901,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09902,MILITARY,0,Fpo,,,AE,,,,,,0,0,0 +09903,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09904,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09908,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09909,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09910,MILITARY,0,Apo,,,AE,,,,,,0,0,0 +09974,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09975,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09976,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +09977,MILITARY,0,Dpo,,,AE,,,,,,0,0,0 +10001,STANDARD,0,"New York",,"Empire State, Gpo, Greeley Square, Macys Finance, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"718,917,347,646",NA,US,40.75,-74,21760 +10002,STANDARD,0,"New York",Knickerbocker,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,718,NA,US,40.71,-73.99,67080 +10003,STANDARD,0,"New York",,"Cooper, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.73,-73.99,38080 +10004,STANDARD,0,"New York","Bowling Green","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.69,-74.02,4280 +10005,STANDARD,0,"New York","Wall Street","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,718,212,646,917",NA,US,40.71,-74.01,8280 +10006,STANDARD,0,"New York",Trinity,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"917,929",NA,US,40.71,-74.01,3450 +10007,STANDARD,0,"New York",,"Church Street, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,718,917,929,646",NA,US,40.71,-74.01,6520 +10008,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,910 +10009,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Peter Stuyvesant",NY,"New York County",America/New_York,"212,646,718,917",NA,US,40.73,-73.98,45840 +10010,STANDARD,0,"New York",,"Madison Square, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917,718",NA,US,40.74,-73.98,24130 +10011,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917,929",NA,US,40.74,-74,40580 +10012,STANDARD,0,"New York",Prince,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"646,929,347,718",NA,US,40.73,-74,16860 +10013,STANDARD,0,"New York","Canal Street, Chinatown","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,718,646,929,212,917",NA,US,40.72,-74,24330 +10014,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,718,917,929,646",NA,US,40.73,-74.01,24630 +10015,STANDARD,1,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10016,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718,917,347",NA,US,40.75,-73.98,43650 +10017,STANDARD,0,"New York",,"Grand Central, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718",NA,US,40.75,-73.97,16980 +10018,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.99,9560 +10019,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,347,646,718,914",NA,US,40.77,-73.99,36390 +10020,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,2326 +10021,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,212,646,917",NA,US,40.77,-73.96,35030 +10022,STANDARD,0,"New York",,"Franklin D Roosevelt, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.97,29550 +10023,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.78,-73.98,52730 +10024,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Planetarium",NY,"New York County",America/New_York,"212,646,917",NA,US,40.8,-73.97,49250 +10025,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.8,-73.97,71720 +10026,STANDARD,0,"New York",,"Morningside, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.8,-73.95,30050 +10027,STANDARD,0,"New York",,"Manhattan, Manhattanville, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718,917",NA,US,40.81,-73.95,44180 +10028,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,917",NA,US,40.78,-73.95,38600 +10029,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.79,-73.94,59220 +10030,STANDARD,0,"New York",,"College, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.82,-73.94,22330 +10031,STANDARD,0,"New York",,"Hamilton Grange, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.83,-73.95,45020 +10032,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,917",NA,US,40.84,-73.94,45560 +10033,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Washington Bridge",NY,"New York County",America/New_York,"212,347,646,917",NA,US,40.85,-73.93,43640 +10034,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,718,646",NA,US,40.87,-73.92,32550 +10035,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc, Randalls Island, Triborough, Wards Is, Wards Island",NY,"New York County",America/New_York,212,NA,US,40.8,-73.93,26100 +10036,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.99,25620 +10037,STANDARD,0,"New York",,"Lincolnton, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.81,-73.94,16280 +10038,STANDARD,0,"New York","Peck Slip","Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-74,18850 +10039,STANDARD,0,"New York",,"Colonial Park, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.83,-73.94,22280 +10040,STANDARD,0,"New York",,"Fort George, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,917,212",NA,US,40.86,-73.93,34910 +10041,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718,917,347",NA,US,40.71,-73.99,23 +10043,UNIQUE,0,"New York",,"Citibank, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,16 +10044,STANDARD,0,"New York","Roosevelt Isl, Roosevelt Island","New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"646,718",NA,US,40.76,-73.95,7340 +10045,STANDARD,0,"New York",,"Federal Reserve, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917",NA,US,40.71,-73.99,0 +10046,UNIQUE,1,"New York",,"Contest Mail",NY,"New York County",America/New_York,212,NA,US,40.71,-74.01,0 +10047,UNIQUE,1,"New York",,"Ny State Agency",NY,"New York County",America/New_York,212,NA,US,40.71,-74.01,0 +10048,STANDARD,1,"New York","Manhattan, World Trade Ctr, Nyc",,NY,"New York County",America/New_York,212,NA,US,40.71,-74.01,0 +10055,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,20 +10060,STANDARD,0,"New York",,"New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,212,646,718,917",NA,US,40.71,-73.99,0 +10065,STANDARD,0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.76,-73.96,24110 +10069,STANDARD,0,"New York",,,NY,"New York County",America/New_York,"917,212,347,646,718",NA,US,40.78,-73.99,5750 +10072,UNIQUE,1,"New York","Philip Morris",,NY,"New York County",America/New_York,212,NA,US,40.75,-73.99,0 +10075,STANDARD,0,"New York",,,NY,"New York County",America/New_York,347,NA,US,40.77,-73.95,21720 +10079,UNIQUE,1,"New York",,"Bureau Of Census",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10080,UNIQUE,0,"New York",,"Merrill Lynch, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10081,UNIQUE,0,"New York",,"Jp Morgan Bank, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10082,UNIQUE,1,"New York","Capitol Cities",,NY,"New York County",America/New_York,212,NA,US,40.77,-73.98,0 +10087,UNIQUE,0,"New York",,"Jp Morgan Bank, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10090,STANDARD,0,"New York",,"New York City, NY, Ny City, Nyc, S Pole, Santa Claus, So Pole, South Pole",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,0 +10094,UNIQUE,1,"New York",,"Marden Kane Inc",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10095,STANDARD,1,"New York",,,NY,"New York County",America/New_York,"212,646,718,917,929",NA,US,40.71,-73.99,0 +10096,UNIQUE,1,"New York",,"Ny Telephone",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10098,STANDARD,1,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.75,-73.99,0 +10099,STANDARD,1,"New York",,"Postal Data Center",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10101,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,488 +10102,UNIQUE,0,"New York",,"Business Reply, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10103,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,199 +10104,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,41 +10105,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,334 +10106,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,718,914,212,917",NA,US,40.71,-73.99,220 +10107,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,212,646,718,914,917",NA,US,40.71,-73.99,406 +10108,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,506 +10109,UNIQUE,0,"New York",,"Business Reply, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10110,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,347,646,718,917",NA,US,40.75,-73.98,478 +10111,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,1191 +10112,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,563 +10113,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,358 +10114,UNIQUE,0,"New York",,"Business Reply, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10115,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.81,-73.96,22 +10116,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,1271 +10117,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,26 +10118,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"917,929",NA,US,40.71,-73.99,725 +10119,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.75,-73.99,392 +10120,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,929,NA,US,40.71,-73.99,0 +10121,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,347,646,718",NA,US,40.71,-73.99,34 +10122,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,646,NA,US,40.71,-73.99,166 +10123,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,554 +10124,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10125,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,30 +10126,UNIQUE,0,"New York",,"Business Reply, Franklin D Roosevelt",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10128,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.78,-73.95,51680 +10129,"PO BOX",0,"New York",,"New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,161 +10130,UNIQUE,0,"New York",,"Business Reply, Gracie",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10131,UNIQUE,0,"New York",,"Business Reply, Lenox Hill",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10132,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10133,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10138,UNIQUE,0,"New York",,"Business Reply, Midtown",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,68 +10149,UNIQUE,1,"New York",,"Muscular Dystrophy",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,0 +10150,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,1045 +10151,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,39 +10152,STANDARD,0,"New York",,"Manhattan, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.97,107 +10153,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.97,46 +10154,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.76,-73.97,433 +10155,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,50 +10156,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,410 +10157,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10158,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,718,917",NA,US,40.71,-73.99,38 +10159,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,489 +10160,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10161,STANDARD,1,"New York",,,NY,"New York County",America/New_York,"347,646,917,929",NA,US,40.71,-73.99,0 +10162,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.77,-73.95,1490 +10163,"PO BOX",0,"New York",,"New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,2041 +10164,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10165,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.75,-73.98,597 +10166,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,295 +10167,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,718",NA,US,40.75,-73.97,187 +10168,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.75,-73.98,253 +10169,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.75,-73.98,254 +10170,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.75,-73.98,334 +10171,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.97,40 +10172,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"718,212,646,917",NA,US,40.76,-73.97,388 +10173,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.75,-73.98,0 +10174,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"347,646,917",NA,US,40.75,-73.98,52 +10175,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-73.99,108 +10176,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,30 +10177,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.76,-73.98,22 +10178,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"718,212,646,917",NA,US,40.71,-73.99,436 +10179,UNIQUE,0,"New York",,"Bear Stearns",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,35 +10184,UNIQUE,1,"New York",,"J C Penney",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10185,"PO BOX",0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,1067 +10196,UNIQUE,1,"New York",,"Ny Telephone",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10197,UNIQUE,1,"New York",,"Citicorp Services Inc",NY,"New York County",America/New_York,212,NA,US,40.71,-74,0 +10199,STANDARD,0,"New York",,"Gpo Official Mail, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,917,646,718",NA,US,40.75,-74,0 +10200,STANDARD,1,"New York",,"Manhattan, New York City, Ny, Ny City, Nyc",NY,,America/New_York,,NA,US,40.77,-73.95,0 +10203,UNIQUE,0,"New York",,"Bank Of New York Brm",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10211,UNIQUE,0,"New York",,"Business Reply, Cooper",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10212,UNIQUE,0,"New York",,"Business Reply, Manhattan",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10213,UNIQUE,0,"New York",,"Business Reply, Canal Street",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10242,"PO BOX",0,"New York",,"Bar Code Church Street",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10249,"PO BOX",0,"New York",,"Church Street Boxes, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10256,UNIQUE,0,"New York",,"Deutsche Bank, Manhattan, NY, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10257,UNIQUE,1,"New York",,"Bank Of New York",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10258,UNIQUE,0,"New York",,"European American Bank",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10259,UNIQUE,0,"New York","New York City","Hsbc Bank, Manhattan, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10260,STANDARD,0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10261,UNIQUE,0,"New York",,"Jp Morgan Bank, Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10265,STANDARD,0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10268,"PO BOX",0,"New York",,Manhattan,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,259 +10269,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10270,STANDARD,0,"New York",,Manhattan,NY,"New York County",America/New_York,"212,646,917,347,718",NA,US,40.71,-73.99,0 +10271,STANDARD,0,"New York",,Manhattan,NY,"New York County",America/New_York,"929,212,917",NA,US,40.71,-74.01,55 +10272,"PO BOX",0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,302 +10273,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10274,"PO BOX",0,"New York",,,NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,418 +10275,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10276,"PO BOX",0,"New York",,"Manhattan, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,418 +10277,UNIQUE,0,"New York",,"Business Reply",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10278,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917,347,718",NA,US,40.72,-74,0 +10279,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917",NA,US,40.71,-74.01,0 +10280,STANDARD,0,"New York",,"Manhattan, Nyc",NY,"New York County",America/New_York,"347,212,646,917,929",NA,US,40.71,-74.02,7290 +10281,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"929,347,212,646,917",NA,US,40.71,-73.99,677 +10282,STANDARD,0,"New York",,"Manhattan, New York City, NY, Ny City, Nyc",NY,"New York County",America/New_York,"212,646,917,347,929",NA,US,40.72,-74.02,5000 +10285,UNIQUE,0,"New York",,"Shearson American Express",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10286,UNIQUE,0,"New York",,"Bank Of New York, Manhattan, NY, Nyc",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,412 +10292,UNIQUE,1,"New York",,"Bache Halsey Stuart Shields",NY,"New York County",America/New_York,212,NA,US,40.71,-73.99,0 +10301,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.63,-74.09,32890 +10302,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,929,718,917",NA,US,40.63,-74.14,16220 +10303,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.63,-74.17,23670 +10304,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"917,347,718",NA,US,40.61,-74.09,38770 +10305,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,212,NA,US,40.6,-74.07,37440 +10306,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.58,-74.14,51790 +10307,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,718,917,929",NA,US,40.51,-74.24,12800 +10308,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.55,-74.15,25700 +10309,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"718,347,917,929",NA,US,40.53,-74.22,30100 +10310,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"718,917,929",NA,US,40.63,-74.12,22530 +10311,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,718,NA,US,40.61,-74.18,0 +10312,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,917,929,718",NA,US,40.55,-74.18,57080 +10313,"PO BOX",0,"Staten Island",,,NY,"Richmond County",America/New_York,212,NA,US,40.58,-74.14,98 +10314,STANDARD,0,"Staten Island",,,NY,"Richmond County",America/New_York,"347,718,917,929",NA,US,40.6,-74.17,80730 +10451,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.82,-73.93,43630 +10452,STANDARD,0,Bronx,,"Highbridge, Stadium, University Heights",NY,"Bronx County",America/New_York,"347,646,917,929,212,718",NA,US,40.84,-73.92,68800 +10453,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.85,-73.91,71210 +10454,STANDARD,0,Bronx,,"Mott Haven",NY,"Bronx County",America/New_York,718,NA,US,40.81,-73.92,30650 +10455,STANDARD,0,Bronx,,Hub,NY,"Bronx County",America/New_York,718,NA,US,40.81,-73.91,34980 +10456,STANDARD,0,Bronx,,Morrisania,NY,"Bronx County",America/New_York,"718,212,347,646,917,929",NA,US,40.83,-73.91,78020 +10457,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"718,212,347,646,917,929",NA,US,40.85,-73.9,63960 +10458,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.86,-73.89,65420 +10459,STANDARD,0,Bronx,,"Boulevard, Longwood",NY,"Bronx County",America/New_York,718,NA,US,40.83,-73.89,40760 +10460,STANDARD,0,Bronx,,"Crotona Park, West Farms",NY,"Bronx County",America/New_York,212,NA,US,40.84,-73.87,49210 +10461,STANDARD,0,Bronx,,"Morris Park, Pilgrim, Westchester",NY,"Bronx County",America/New_York,"347,718,917,929",NA,US,40.85,-73.84,44950 +10462,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"347,718,917,929",NA,US,40.84,-73.86,74340 +10463,STANDARD,0,Bronx,,"Riverdale, Spuyten Duyvil",NY,"Bronx County",America/New_York,718,NA,US,40.88,-73.91,59620 +10464,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.87,-73.8,3660 +10465,STANDARD,0,Bronx,,"Throggs Neck",NY,"Bronx County",America/New_York,"718,347,917",NA,US,40.82,-73.83,35140 +10466,STANDARD,0,Bronx,,Wakefield,NY,"Bronx County",America/New_York,"347,718,929",NA,US,40.89,-73.85,57870 +10467,STANDARD,0,Bronx,,"Allerton, Mosholu, Van Cott, Williamsbridge",NY,"Bronx County",America/New_York,"347,718",NA,US,40.87,-73.87,84810 +10468,STANDARD,0,Bronx,,Jerome,NY,"Bronx County",America/New_York,718,NA,US,40.87,-73.9,66800 +10469,STANDARD,0,Bronx,,"Baychester, Esplanade, Hillside",NY,"Bronx County",America/New_York,"347,718,929",NA,US,40.87,-73.85,58580 +10470,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"347,718,929",NA,US,40.89,-73.87,13350 +10471,STANDARD,0,Bronx,,Riverdale,NY,"Bronx County",America/New_York,212,NA,US,40.9,-73.9,17460 +10472,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,718,NA,US,40.83,-73.87,57370 +10473,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,"347,718,917,929",NA,US,40.82,-73.86,50780 +10474,STANDARD,0,Bronx,,Boulevard,NY,"Bronx County",America/New_York,718,NA,US,40.81,-73.88,9510 +10475,STANDARD,0,Bronx,,,NY,"Bronx County",America/New_York,212,NA,US,40.88,-73.82,35460 +10499,UNIQUE,1,Bronx,,"Priority Mail Ctr",NY,"Bronx County",America/New_York,212,NA,US,40.84,-73.87,0 +10501,STANDARD,0,Amawalk,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.76,1330 +10502,STANDARD,0,Ardsley,,,NY,"Westchester County",America/New_York,914,NA,US,41.01,-73.84,6190 +10503,"PO BOX",0,"Ardsley On Hudson","Ardsley Hdsn",,NY,"Westchester County",America/New_York,914,NA,US,41.03,-73.88,195 +10504,STANDARD,0,Armonk,"North Castle",,NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.71,8470 +10505,STANDARD,0,"Baldwin Place",,,NY,"Westchester County",America/New_York,914,NA,US,41.34,-73.75,1590 +10506,STANDARD,0,Bedford,,,NY,"Westchester County",America/New_York,914,NA,US,41.19,-73.64,5670 +10507,STANDARD,0,"Bedford Hills",,,NY,"Westchester County",America/New_York,914,NA,US,41.22,-73.69,5010 +10509,STANDARD,0,Brewster,,"Sears Corners, Southeast",NY,"Putnam County",America/New_York,845,NA,US,41.39,-73.61,18270 +10510,STANDARD,0,"Briarcliff Manor","Briarcliff, Scarborough","Briarcliff Mnr",NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.84,9610 +10511,STANDARD,0,Buchanan,,,NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.94,2230 +10512,STANDARD,0,Carmel,"Kent Cliffs, Kent Lakes","Lake Carmel",NY,"Putnam County",America/New_York,845,NA,US,41.41,-73.68,23270 +10514,STANDARD,0,Chappaqua,,,NY,"Westchester County",America/New_York,914,NA,US,41.17,-73.77,12110 +10516,STANDARD,0,"Cold Spring",Nelsonville,"North Highland, Philipstown",NY,"Putnam County",America/New_York,845,NA,US,41.41,-73.95,5040 +10517,"PO BOX",0,Crompond,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.86,928 +10518,STANDARD,0,"Cross River",,,NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.59,1370 +10519,"PO BOX",0,"Croton Falls",,,NY,"Westchester County",America/New_York,914,NA,US,41.35,-73.65,628 +10520,STANDARD,0,"Croton On Hudson","Croton Hdsn","Croton, Croton Hudson",NY,"Westchester County",America/New_York,914,NA,US,41.22,-73.89,12040 +10521,"PO BOX",0,"Croton On Hudson","Croton Hdsn, Crugers",,NY,"Westchester County",America/New_York,914,NA,US,41.22,-73.89,92 +10522,STANDARD,0,"Dobbs Ferry",,,NY,"Westchester County",America/New_York,914,NA,US,41.01,-73.86,10350 +10523,STANDARD,0,Elmsford,,,NY,"Westchester County",America/New_York,914,NA,US,41.06,-73.82,8940 +10524,STANDARD,0,Garrison,,Manitou,NY,"Putnam County",America/New_York,845,NA,US,41.37,-73.92,3980 +10526,STANDARD,0,"Goldens Bridge","Goldens Brg",,NY,"Westchester County",America/New_York,"845,914",NA,US,41.29,-73.67,1860 +10527,STANDARD,0,"Granite Springs","Granite Spgs",,NY,"Westchester County",America/New_York,914,NA,US,41.32,-73.77,960 +10528,STANDARD,0,Harrison,,,NY,"Westchester County",America/New_York,914,NA,US,40.97,-73.73,11260 +10530,STANDARD,0,Hartsdale,Scarsdale,,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.8,12150 +10532,STANDARD,0,Hawthorne,,,NY,"Westchester County",America/New_York,914,NA,US,41.1,-73.79,4960 +10533,STANDARD,0,Irvington,,"East Irvington, Irvington On Hudson",NY,"Westchester County",America/New_York,914,NA,US,41.03,-73.86,7540 +10535,STANDARD,0,"Jefferson Valley","Jefferson Vly",,NY,"Westchester County",America/New_York,"845,914",NA,US,41.34,-73.79,690 +10536,STANDARD,0,Katonah,,"Lake Katonah",NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.68,10320 +10537,STANDARD,0,"Lake Peekskill","Lk Peekskill",,NY,"Putnam County",America/New_York,914,NA,US,41.34,-73.88,2180 +10538,STANDARD,0,Larchmont,,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.75,17350 +10540,"PO BOX",0,Lincolndale,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.71,703 +10541,STANDARD,0,Mahopac,"Lake Lincolnd, Lake Lincolndale","Lake Mahopac, Lake Secor",NY,"Putnam County",America/New_York,"845,914",NA,US,41.36,-73.74,24500 +10542,"PO BOX",0,"Mahopac Falls",,,NY,"Putnam County",America/New_York,845,NA,US,41.36,-73.73,561 +10543,STANDARD,0,Mamaroneck,,,NY,"Westchester County",America/New_York,914,NA,US,40.95,-73.74,19020 +10545,"PO BOX",0,Maryknoll,,,NY,"Westchester County",America/New_York,914,NA,US,41.18,-73.84,282 +10546,STANDARD,0,Millwood,,,NY,"Westchester County",America/New_York,914,NA,US,41.2,-73.8,1430 +10547,STANDARD,0,"Mohegan Lake",,"Lake Mohegan",NY,"Westchester County",America/New_York,"845,914",NA,US,41.31,-73.84,6830 +10548,STANDARD,0,Montrose,,,NY,"Westchester County",America/New_York,914,NA,US,41.24,-73.94,3010 +10549,STANDARD,0,"Mount Kisco","Bedford Corners, Bedford Cors",,NY,"Westchester County",America/New_York,914,NA,US,41.2,-73.73,15620 +10550,STANDARD,0,"Mount Vernon",,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.91,-73.84,33960 +10551,"PO BOX",0,"Mount Vernon",,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.91,-73.82,774 +10552,STANDARD,0,"Mount Vernon",Fleetwood,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.83,18440 +10553,STANDARD,0,"Mount Vernon",,"Mt Vernon",NY,"Westchester County",America/New_York,914,NA,US,40.91,-73.82,10010 +10557,UNIQUE,1,"Mount Vernon",,"Lincoln 1st Nat Bk Nbw",NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.82,0 +10558,UNIQUE,1,"Mount Vernon",,"Bank Of New York",NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.82,0 +10560,STANDARD,0,"North Salem",,,NY,"Westchester County",America/New_York,"914,845",NA,US,41.33,-73.59,4190 +10562,STANDARD,0,Ossining,,"Crotonville, Kitchawan",NY,"Westchester County",America/New_York,914,NA,US,41.15,-73.87,29100 +10566,STANDARD,0,Peekskill,,,NY,"Westchester County",America/New_York,"845,914",NA,US,41.28,-73.92,21850 +10567,STANDARD,0,"Cortlandt Manor","Cortlandt Mnr",,NY,"Westchester County",America/New_York,"845,914",NA,US,41.3,-73.89,19060 +10570,STANDARD,0,Pleasantville,,,NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.78,12210 +10571,UNIQUE,1,Pleasantville,,"Readers Digest",NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.79,0 +10572,UNIQUE,1,Pleasantville,,"Readers Digest",NY,"Westchester County",America/New_York,914,NA,US,41.13,-73.79,0 +10573,STANDARD,0,"Port Chester","Rye Brook",Portchester,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.68,35440 +10576,STANDARD,0,"Pound Ridge",,"Scotts Corners",NY,"Westchester County",America/New_York,914,NA,US,41.21,-73.57,4830 +10577,STANDARD,0,Purchase,,,NY,"Westchester County",America/New_York,914,NA,US,41.03,-73.71,2740 +10578,STANDARD,0,Purdys,,"Purdy Station",NY,"Westchester County",America/New_York,"845,914",NA,US,41.32,-73.68,830 +10579,STANDARD,0,"Putnam Valley",,"Adams Corners, Crofts Corners, Oscawana Lake, Tompkins Corners",NY,"Putnam County",America/New_York,"845,914",NA,US,41.34,-73.87,8390 +10580,STANDARD,0,Rye,,,NY,"Westchester County",America/New_York,914,NA,US,40.98,-73.69,17250 +10583,STANDARD,0,Scarsdale,Heathcote,"Edgemont, Scarsdale Park",NY,"Westchester County",America/New_York,914,NA,US,40.98,-73.77,39870 +10587,"PO BOX",0,Shenorock,,,NY,"Westchester County",America/New_York,914,NA,US,41.3,-73.71,770 +10588,STANDARD,0,"Shrub Oak",,,NY,"Westchester County",America/New_York,"845,914",NA,US,41.34,-73.82,2540 +10589,STANDARD,0,Somers,,"Somers Town",NY,"Westchester County",America/New_York,"845,914",NA,US,41.33,-73.69,7990 +10590,STANDARD,0,"South Salem",,"Lake Kitchawan, Lewisboro",NY,"Westchester County",America/New_York,914,NA,US,41.25,-73.54,6340 +10591,STANDARD,0,Tarrytown,"N Tarrytown, North Tarrytown, Sleepy Hollow","Philipse Manor, Pocantico Hills, Sleepy Hollow Manor",NY,"Westchester County",America/New_York,914,NA,US,41.06,-73.86,21610 +10594,STANDARD,0,Thornwood,,,NY,"Westchester County",America/New_York,914,NA,US,41.11,-73.77,4950 +10595,STANDARD,0,Valhalla,,"East View",NY,"Westchester County",America/New_York,914,NA,US,41.07,-73.77,6340 +10596,"PO BOX",0,Verplanck,,,NY,"Westchester County",America/New_York,914,NA,US,41.26,-73.96,1704 +10597,STANDARD,0,Waccabuc,,,NY,"Westchester County",America/New_York,914,NA,US,41.29,-73.6,960 +10598,STANDARD,0,"Yorktown Heights","Yorktown Hts","Yorktown, Yorktown Hgts",NY,"Westchester County",America/New_York,914,NA,US,41.27,-73.78,28720 +10601,STANDARD,0,"White Plains",,,NY,"Westchester County",America/New_York,"347,845,914,929",NA,US,41.03,-73.77,9860 +10602,"PO BOX",0,"White Plains",,,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.75,904 +10603,STANDARD,0,"White Plains","N White Plains, N White Plns","North White Plains",NY,"Westchester County",America/New_York,"347,914,929",NA,US,41.05,-73.78,17180 +10604,STANDARD,0,"West Harrison","W Harrison, White Plains","East White Plains, Westchester County Airport",NY,"Westchester County",America/New_York,"845,914",NA,US,41.05,-73.74,10730 +10605,STANDARD,0,"White Plains",,Gedney,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.75,18680 +10606,STANDARD,0,"White Plains",,,NY,"Westchester County",America/New_York,"347,845,914,929",NA,US,41.02,-73.78,15410 +10607,STANDARD,0,"White Plains",,Greenburgh,NY,"Westchester County",America/New_York,914,NA,US,41.04,-73.81,7380 +10610,"PO BOX",0,"White Plains",,,NY,"Westchester County",America/New_York,914,NA,US,41.02,-73.75,0 +10701,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,"347,914",NA,US,40.94,-73.86,54750 +10702,"PO BOX",0,Yonkers,,,NY,"Westchester County",America/New_York,914,NA,US,40.94,-73.86,642 +10703,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,"347,914",NA,US,40.96,-73.88,19710 +10704,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.86,30140 +10705,STANDARD,0,Yonkers,,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.89,35140 +10706,STANDARD,0,"Hastings On Hudson","Hastings Hdsn, Yonkers","Hastings Hudson",NY,"Westchester County",America/New_York,914,NA,US,40.98,-73.87,8900 +10707,STANDARD,0,Tuckahoe,"Eastchester, Yonkers",,NY,"Westchester County",America/New_York,914,NA,US,40.96,-73.82,9550 +10708,STANDARD,0,Bronxville,Yonkers,,NY,"Westchester County",America/New_York,914,NA,US,40.94,-73.83,20120 +10709,STANDARD,0,Eastchester,Yonkers,,NY,"Westchester County",America/New_York,914,NA,US,40.95,-73.8,9430 +10710,STANDARD,0,Yonkers,,Centuck,NY,"Westchester County",America/New_York,"347,914",NA,US,40.97,-73.85,24910 +10801,STANDARD,0,"New Rochelle",,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.77,35200 +10802,"PO BOX",0,"New Rochelle",,,NY,"Westchester County",America/New_York,914,NA,US,40.92,-73.77,729 +10803,STANDARD,0,Pelham,,"Pelham Manor",NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.81,12990 +10804,STANDARD,0,"New Rochelle",Wykagyl,,NY,"Westchester County",America/New_York,914,NA,US,40.94,-73.78,14440 +10805,STANDARD,0,"New Rochelle",,,NY,"Westchester County",America/New_York,914,NA,US,40.9,-73.78,15730 +10901,STANDARD,0,Suffern,"Airmont, Montebello",,NY,"Rockland County",America/New_York,845,NA,US,41.11,-74.14,22260 +10910,"PO BOX",0,Arden,,,NY,"Orange County",America/New_York,845,NA,US,41.28,-74.14,28 +10911,STANDARD,0,"Bear Mountain",,,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.01,28 +10912,"PO BOX",0,Bellvale,,,NY,"Orange County",America/New_York,845,NA,US,41.25,-74.34,241 +10913,STANDARD,0,Blauvelt,,,NY,"Rockland County",America/New_York,845,NA,US,41.07,-73.95,5050 +10914,"PO BOX",0,"Blooming Grove","Blooming Grv, S Bloomng Grv",,NY,"Orange County",America/New_York,845,NA,US,41.42,-74.2,743 +10915,"PO BOX",0,Bullville,,,NY,"Orange County",America/New_York,845,NA,US,41.55,-74.36,478 +10916,STANDARD,0,"Campbell Hall",,,NY,"Orange County",America/New_York,845,NA,US,41.44,-74.25,4390 +10917,STANDARD,0,"Central Valley","Central Vly",,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.12,2070 +10918,STANDARD,0,Chester,"Mediacom Park",,NY,"Orange County",America/New_York,845,NA,US,41.35,-74.27,11040 +10919,STANDARD,0,Circleville,,,NY,"Orange County",America/New_York,845,NA,US,41.52,-74.38,1140 +10920,STANDARD,0,Congers,,,NY,"Rockland County",America/New_York,845,NA,US,41.14,-73.94,8720 +10921,STANDARD,0,Florida,,,NY,"Orange County",America/New_York,845,NA,US,41.33,-74.35,4110 +10922,"PO BOX",0,"Fort Montgomery","Ft Montgomery",,NY,"Orange County",America/New_York,845,NA,US,41.33,-74,1521 +10923,STANDARD,0,Garnerville,,,NY,"Rockland County",America/New_York,845,NA,US,41.2,-74,8980 +10924,STANDARD,0,Goshen,,,NY,"Orange County",America/New_York,845,NA,US,41.4,-74.32,12150 +10925,STANDARD,0,"Greenwood Lake","Greenwood Lk",,NY,"Orange County",America/New_York,845,NA,US,41.22,-74.28,4190 +10926,STANDARD,0,Harriman,,,NY,"Orange County",America/New_York,845,NA,US,41.3,-74.14,3530 +10927,STANDARD,0,Haverstraw,,,NY,"Rockland County",America/New_York,845,NA,US,41.18,-73.95,11220 +10928,STANDARD,0,"Highland Falls","Highland Fls",,NY,"Orange County",America/New_York,845,NA,US,41.35,-74,3840 +10930,STANDARD,0,"Highland Mills","Highland Mls",,NY,"Orange County",America/New_York,845,NA,US,41.35,-74.12,8750 +10931,STANDARD,0,Hillburn,,,NY,"Rockland County",America/New_York,845,NA,US,41.12,-74.17,900 +10932,"PO BOX",0,Howells,,,NY,"Orange County",America/New_York,845,NA,US,41.48,-74.46,508 +10933,"PO BOX",0,Johnson,,,NY,"Orange County",America/New_York,845,NA,US,41.37,-74.51,620 +10940,STANDARD,0,Middletown,Scotchtown,,NY,"Orange County",America/New_York,"845,914",NA,US,41.44,-74.42,46130 +10941,STANDARD,0,Middletown,Scotchtown,,NY,"Orange County",America/New_York,"845,914",NA,US,41.49,-74.34,13420 +10943,UNIQUE,1,Middletown,,"Blue Cross/blue Shield",NY,"Orange County",America/New_York,845,NA,US,41.44,-74.42,0 +10949,"PO BOX",0,Monroe,,,NY,"Orange County",America/New_York,845,NA,US,41.33,-74.19,667 +10950,STANDARD,0,Monroe,"Kiryas Joel, Palm Tree, Twn Palm Tree","S Bloomng Grv",NY,"Orange County",America/New_York,845,NA,US,41.32,-74.18,53810 +10952,STANDARD,0,Monsey,"Airmont, Kaser","Chestnut Ridge, Wesley Hills",NY,"Rockland County",America/New_York,845,NA,US,41.11,-74.08,45170 +10953,"PO BOX",0,Mountainville,,,NY,"Orange County",America/New_York,845,NA,US,41.4,-74.08,480 +10954,STANDARD,0,Nanuet,Bardonia,,NY,"Rockland County",America/New_York,"845,914",NA,US,41.09,-74.01,22880 +10956,STANDARD,0,"New City",,Clarkstown,NY,"Rockland County",America/New_York,845,NA,US,41.15,-73.99,31910 +10958,STANDARD,0,"New Hampton",,,NY,"Orange County",America/New_York,"845,914",NA,US,41.34,-74.45,3200 +10959,"PO BOX",0,"New Milford",,,NY,"Orange County",America/New_York,845,NA,US,41.26,-74.36,102 +10960,STANDARD,0,Nyack,"Grandview On Hudson, Grnd Vw Hudsn","Central Nyack, Grandview, South Nyack, Upper Grandview, Upper Nyack",NY,"Rockland County",America/New_York,"845,914",NA,US,41.09,-73.92,13110 +10962,STANDARD,0,Orangeburg,,,NY,"Rockland County",America/New_York,845,NA,US,41.05,-73.94,5020 +10963,STANDARD,0,Otisville,,,NY,"Orange County",America/New_York,845,NA,US,41.47,-74.53,2430 +10964,STANDARD,0,Palisades,,,NY,"Rockland County",America/New_York,845,NA,US,41.02,-73.91,1370 +10965,STANDARD,0,"Pearl River",,"Chestnut Ridge",NY,"Rockland County",America/New_York,"845,914",NA,US,41.06,-74,14840 +10968,STANDARD,0,Piermont,,,NY,"Rockland County",America/New_York,"845,914",NA,US,41.04,-73.92,2010 +10969,STANDARD,0,"Pine Island",,,NY,"Orange County",America/New_York,845,NA,US,41.29,-74.49,1190 +10970,STANDARD,0,Pomona,,"Mount Ivy",NY,"Rockland County",America/New_York,845,NA,US,41.18,-74.05,10420 +10973,STANDARD,0,"Slate Hill",,,NY,"Orange County",America/New_York,845,NA,US,41.37,-74.49,2210 +10974,STANDARD,0,Sloatsburg,,,NY,"Rockland County",America/New_York,845,NA,US,41.16,-74.19,2960 +10975,STANDARD,0,Southfields,,,NY,"Orange County",America/New_York,845,NA,US,41.25,-74.17,280 +10976,STANDARD,0,Sparkill,,,NY,"Rockland County",America/New_York,845,NA,US,41.02,-73.93,1420 +10977,STANDARD,0,"Spring Valley","Chestnut Rdg, Chestnut Ridge, New Square","Kaser, New Hempstead, Wesley Hills",NY,"Rockland County",America/New_York,"845,914",NA,US,41.12,-74.05,63780 +10979,"PO BOX",0,"Sterling Forest","Sterling Frst",,NY,"Orange County",America/New_York,845,NA,US,41.18,-74.31,224 +10980,STANDARD,0,"Stony Point",,"Grassy Point",NY,"Rockland County",America/New_York,845,NA,US,41.22,-73.99,13090 +10981,"PO BOX",0,"Sugar Loaf",,,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.27,866 +10982,"PO BOX",0,Tallman,,,NY,"Rockland County",America/New_York,845,NA,US,41.11,-74.1,378 +10983,STANDARD,0,Tappan,,,NY,"Rockland County",America/New_York,845,NA,US,41.02,-73.95,5930 +10984,STANDARD,0,Thiells,,,NY,"Rockland County",America/New_York,845,NA,US,41.2,-74.01,2570 +10985,STANDARD,0,"Thompson Ridge","Thompson Rdg",,NY,"Orange County",America/New_York,845,NA,US,41.58,-74.37,290 +10986,STANDARD,0,"Tomkins Cove",,,NY,"Rockland County",America/New_York,845,NA,US,41.27,-73.98,1780 +10987,STANDARD,0,"Tuxedo Park",,Tuxedo,NY,"Orange County",America/New_York,845,NA,US,41.2,-74.2,3450 +10988,"PO BOX",0,Unionville,,,NY,"Orange County",America/New_York,845,NA,US,41.3,-74.56,701 +10989,STANDARD,0,"Valley Cottage","Vly Cottage",,NY,"Rockland County",America/New_York,845,NA,US,41.11,-73.94,8850 +10990,STANDARD,0,Warwick,,,NY,"Orange County",America/New_York,845,NA,US,41.25,-74.35,18630 +10992,STANDARD,0,Washingtonville,Washingtonvle,,NY,"Orange County",America/New_York,845,NA,US,41.42,-74.15,9010 +10993,STANDARD,0,"West Haverstraw","W Haverstraw",,NY,"Rockland County",America/New_York,845,NA,US,41.21,-73.97,4630 +10994,STANDARD,0,"West Nyack",,,NY,"Rockland County",America/New_York,845,NA,US,41.09,-73.96,7480 +10996,STANDARD,0,"West Point",,"United States Military Acade, West Point Military Reservat",NY,"Orange County",America/New_York,845,NA,US,41.39,-73.97,3080 +10997,"PO BOX",0,"West Point",,"U S C C",NY,"Orange County",America/New_York,845,NA,US,41.36,-74.02,1801 +10998,STANDARD,0,Westtown,,,NY,"Orange County",America/New_York,845,NA,US,41.32,-74.54,3370 +11001,STANDARD,0,"Floral Park","Bellerose Village, Bellerose Vlg, S Floral Park, South Floral Park","Bellerose Terrace, Bellrose Village, So Floral Park",NY,"Nassau County",America/New_York,"516,718",NA,US,40.72,-73.7,27030 +11002,"PO BOX",0,"Floral Park",,,NY,"Queens County",America/New_York,212,NA,US,40.72,-73.7,253 +11003,STANDARD,0,Elmont,"Alden Manor, Floral Park","Argo Village, Locustwood",NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.7,43370 +11004,STANDARD,0,"Glen Oaks","Floral Park",,NY,"Queens County",America/New_York,"516,718",NA,US,40.74,-73.71,12320 +11005,STANDARD,0,"Floral Park",,,NY,"Queens County",America/New_York,212,NA,US,40.76,-73.71,1910 +11010,STANDARD,0,"Franklin Square","Franklin Sq",,NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.67,23730 +11020,STANDARD,0,"Great Neck","Lake Success","Great Nk, University Gardens",NY,"Nassau County",America/New_York,516,NA,US,40.77,-73.71,6260 +11021,STANDARD,0,"Great Neck","Great Nck Plz, Great Neck Plaza","Allenwood, Great Neck Estates, Kensington, Russell Gardens, Saddle Rock Estates, Thomaston",NY,"Nassau County",America/New_York,516,NA,US,40.78,-73.73,17380 +11022,"PO BOX",0,"Great Neck",,"Lake Gardens",NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,603 +11023,STANDARD,0,"Great Neck",,"Harbor Hills, Saddle Rock",NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,9160 +11024,STANDARD,0,"Great Neck","Kings Point",Kenilworth,NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.74,6800 +11025,UNIQUE,1,"Great Neck",,"American Express",NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.72,0 +11026,"PO BOX",0,"Great Neck",,,NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,0 +11027,"PO BOX",0,"Great Neck",,,NY,"Nassau County",America/New_York,516,NA,US,40.8,-73.73,0 +11030,STANDARD,0,Manhasset,Plandome,,NY,"Nassau County",America/New_York,516,NA,US,40.79,-73.69,18000 +11040,STANDARD,0,"New Hyde Park","Garden City Park, Garden Cty Pk, Hillside Manor, Hillside Mnr, Manhasset Hills, Manhasset Hl, N New Hyde Pk, North Hills, North New Hyde Park","Gdn City Park, Herricks, Lake Success, Lakeville Estates, N H P, No New Hyde Park",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,43140 +11041,UNIQUE,1,"New Hyde Park",,Visa,NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11042,STANDARD,0,"New Hyde Park","N New Hyde Pk, North New Hyde Park","Lake Success",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.7,380 +11043,UNIQUE,1,"New Hyde Park",,"Independent Elect Of Amer",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11044,UNIQUE,1,"New Hyde Park","Eastern States Bkcard Assoc",,NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11050,STANDARD,0,"Port Washington","Prt Washingtn, Sands Point","Baxter Estates, Harbor Acres, Manorhaven, Port Wash, Pr Wash, Pr Wshngtn, Pt Wash, The Terrace",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,29730 +11051,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing Hse Brm",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11052,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11053,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11054,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11055,UNIQUE,0,"Port Washington","Prt Washingtn","Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.82,-73.68,0 +11096,STANDARD,0,Inwood,"Far Rockaway",,NY,"Nassau County",America/New_York,"516,718,347,929",NA,US,40.62,-73.75,7890 +11099,UNIQUE,1,"New Hyde Park",,"Eastern States Bkcard Assoc",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.68,0 +11101,STANDARD,0,"Long Island City","Astoria, Long Is City",Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.74,-73.93,35370 +11102,STANDARD,0,Astoria,"Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,718,NA,US,40.77,-73.93,30930 +11103,STANDARD,0,Astoria,"Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,718,NA,US,40.76,-73.91,32260 +11104,STANDARD,0,Sunnyside,"Astoria, Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,212,NA,US,40.74,-73.92,25070 +11105,STANDARD,0,Astoria,"Long Is City, Long Island City",,NY,"Queens County",America/New_York,212,NA,US,40.78,-73.91,31790 +11106,STANDARD,0,Astoria,"Long Is City, Long Island City",Queens,NY,"Queens County",America/New_York,718,NA,US,40.76,-73.93,34880 +11109,STANDARD,0,"Long Island City","Long Is City",Queens,NY,"Queens County",America/New_York,"718,347",NA,US,40.75,-73.96,5450 +11120,UNIQUE,0,"Long Island City","Long Is City","Citicorp, Queens",NY,"Queens County",America/New_York,212,NA,US,40.74,-73.93,0 +11201,STANDARD,0,Brooklyn,"Brooklyn Heights, Brooklyn Hgts",,NY,"Kings County",America/New_York,"347,718,929",NA,US,40.69,-73.99,54360 +11202,"PO BOX",0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,1925 +11203,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.94,63680 +11204,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-73.98,76550 +11205,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.69,-73.97,38920 +11206,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917",NA,US,40.7,-73.94,70650 +11207,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.67,-73.89,77180 +11208,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.67,-73.87,84010 +11209,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-74.03,61350 +11210,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"718,917,929,347",NA,US,40.63,-73.95,55870 +11211,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917",NA,US,40.71,-73.95,53930 +11212,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-73.91,69670 +11213,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929",NA,US,40.67,-73.94,52620 +11214,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.6,-74,81660 +11215,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-73.99,57850 +11216,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929",NA,US,40.68,-73.95,42870 +11217,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"646,718",NA,US,40.68,-73.98,32470 +11218,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.98,70170 +11219,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.63,-74,91910 +11220,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-74.02,106310 +11221,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.69,-73.93,63390 +11222,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917",NA,US,40.73,-73.95,33470 +11223,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.6,-73.97,67770 +11224,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.58,-73.99,35580 +11225,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-73.95,49630 +11226,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.65,-73.96,87070 +11228,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-74.01,39260 +11229,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929",NA,US,40.6,-73.94,72920 +11230,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.62,-73.97,78250 +11231,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.68,-74.01,30750 +11232,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.66,-74.01,23980 +11233,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.68,-73.92,54110 +11234,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,917,929,718",NA,US,40.61,-73.91,78970 +11235,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.58,-73.95,72910 +11236,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.9,82740 +11237,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718",NA,US,40.7,-73.92,37930 +11238,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,917,929,646",NA,US,40.68,-73.96,47990 +11239,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.65,-73.88,12690 +11240,STANDARD,1,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.69,-73.98,0 +11241,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718,929",NA,US,40.64,-73.94,0 +11242,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"929,347,718",NA,US,40.64,-73.94,43 +11243,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,646,NA,US,40.64,-73.94,128 +11244,UNIQUE,1,Brooklyn,,"Con Edison",NY,"Kings County",America/New_York,212,NA,US,40.68,-73.99,19 +11245,UNIQUE,0,Brooklyn,,"Chase Manhattan Bank",NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,0 +11247,"PO BOX",0,Brooklyn,,,NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,660 +11248,UNIQUE,1,Brooklyn,,"Workers Compensation",NY,"Kings County",America/New_York,212,NA,US,40.69,-73.99,0 +11249,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,"347,718",NA,US,40.64,-73.94,0 +11251,UNIQUE,0,Brooklyn,,"Brooklyn Navy Yard",NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,0 +11252,STANDARD,0,Brooklyn,"Fort Hamilton",,NY,"Kings County",America/New_York,212,NA,US,40.64,-73.94,26 +11254,UNIQUE,1,Brooklyn,,"Ny Telephone",NY,"Kings County",America/New_York,212,NA,US,40.69,-73.99,0 +11255,UNIQUE,1,Brooklyn,,"Ny Telephone",NY,"Kings County",America/New_York,212,NA,US,40.69,-73.98,51 +11256,STANDARD,0,Brooklyn,,,NY,"Kings County",America/New_York,718,NA,US,40.64,-73.94,0 +11351,STANDARD,0,Flushing,,Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.78,-73.83,0 +11352,"PO BOX",0,Flushing,,Queens,NY,"Queens County",America/New_York,212,NA,US,40.77,-73.84,1022 +11354,STANDARD,0,Flushing,,"Linden Hill, Queens",NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.77,-73.84,54580 +11355,STANDARD,0,Flushing,,Queens,NY,"Queens County",America/New_York,"917,929,347,718",NA,US,40.75,-73.82,91180 +11356,STANDARD,0,"College Point",Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.78,-73.84,24150 +11357,STANDARD,0,Whitestone,"Beechhurst, Flushing, Malba",Queens,NY,"Queens County",America/New_York,347,NA,US,40.79,-73.81,37510 +11358,STANDARD,0,Flushing,Auburndale,"Queens, Sta A",NY,"Queens County",America/New_York,212,NA,US,40.76,-73.8,35870 +11359,STANDARD,0,Bayside,Flushing,Queens,NY,"Queens County",America/New_York,347,NA,US,40.79,-73.78,0 +11360,STANDARD,0,Bayside,Flushing,"Bay Terrace, Queens",NY,"Queens County",America/New_York,"347,718",NA,US,40.78,-73.78,17510 +11361,STANDARD,0,Bayside,Flushing,Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.76,-73.77,25790 +11362,STANDARD,0,"Little Neck","Douglaston, Flushing","Horace Harding, Queens",NY,"Queens County",America/New_York,212,NA,US,40.76,-73.74,16480 +11363,STANDARD,0,"Little Neck","Douglaston, Flushing",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.77,-73.75,6370 +11364,STANDARD,0,"Oakland Gardens","Bayside, Bayside Hills, Flushing, Hollis Hills, Oakland Gdns",Queens,NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.75,-73.76,34260 +11365,STANDARD,0,"Fresh Meadows",Flushing,"Pomonok, Queens",NY,"Queens County",America/New_York,718,NA,US,40.74,-73.79,41530 +11366,STANDARD,0,"Fresh Meadows",Flushing,"Queens, Utopia",NY,"Queens County",America/New_York,718,NA,US,40.73,-73.79,13270 +11367,STANDARD,0,Flushing,"Kew Garden Hl, Kew Gardens Hills",Queens,NY,"Queens County",America/New_York,718,NA,US,40.73,-73.83,38310 +11368,STANDARD,0,Corona,Flushing,Queens,NY,"Queens County",America/New_York,718,NA,US,40.74,-73.85,96980 +11369,STANDARD,0,"East Elmhurst",Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.76,-73.88,34110 +11370,STANDARD,0,"East Elmhurst",Flushing,"Queens, Trainsmeadow",NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.77,-73.89,25290 +11371,STANDARD,0,Flushing,"East Elmhurst, La Guardia Airport, La Gurda Arpt",Queens,NY,"Queens County",America/New_York,212,NA,US,40.77,-73.87,97 +11372,STANDARD,0,"Jackson Heights","Flushing, Jackson Hts",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.75,-73.88,63280 +11373,STANDARD,0,Elmhurst,Flushing,Queens,NY,"Queens County",America/New_York,"347,917,929,718",NA,US,40.74,-73.88,95100 +11374,STANDARD,0,"Rego Park",Flushing,"Queens, Rego Pk",NY,"Queens County",America/New_York,"347,718",NA,US,40.72,-73.86,41150 +11375,STANDARD,0,"Forest Hills",Flushing,"Forest Hls, Parkside, Queens",NY,"Queens County",America/New_York,"347,718",NA,US,40.72,-73.84,63280 +11377,STANDARD,0,Woodside,Flushing,Queens,NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.74,-73.9,81800 +11378,STANDARD,0,Maspeth,Flushing,Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.72,-73.9,33410 +11379,STANDARD,0,"Middle Village","Flushing, Middle Vlg","Elmhurst, Queens",NY,"Queens County",America/New_York,212,NA,US,40.71,-73.88,33030 +11380,"PO BOX",0,Elmhurst,Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.72,-73.87,139 +11381,UNIQUE,0,Flushing,,"Metropolitan Museum Of Art, Queens",NY,"Queens County",America/New_York,212,NA,US,40.77,-73.84,0 +11385,STANDARD,0,Ridgewood,"Flushing, Glendale","Fresh Pond, Queens",NY,"Queens County",America/New_York,"347,718",NA,US,40.7,-73.89,87510 +11386,"PO BOX",0,Ridgewood,Flushing,Queens,NY,"Queens County",America/New_York,212,NA,US,40.7,-73.89,679 +11390,UNIQUE,1,Flushing,,"Contest And Large Vol",NY,"Queens County",America/New_York,212,NA,US,40.77,-73.84,0 +11405,UNIQUE,0,Jamaica,,"Motor Vehicle Bureau, Queens",NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,0 +11411,STANDARD,0,"Cambria Heights","Cambria Hts, Jamaica",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.69,-73.73,17600 +11412,STANDARD,0,"Saint Albans",Jamaica,"St Albans",NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.69,-73.75,33190 +11413,STANDARD,0,"Springfield Gardens","Jamaica, Laurelton, Rosedale, Saint Albans, Sprngfld Gdns",Queens,NY,"Queens County",America/New_York,"516,718",NA,US,40.66,-73.75,36310 +11414,STANDARD,0,"Howard Beach",Jamaica,Queens,NY,"Queens County",America/New_York,212,NA,US,40.66,-73.84,23690 +11415,STANDARD,0,"Kew Gardens",Jamaica,Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.71,-73.83,16890 +11416,STANDARD,0,"Ozone Park",Jamaica,Queens,NY,"Queens County",America/New_York,718,NA,US,40.68,-73.85,25240 +11417,STANDARD,0,"Ozone Park",Jamaica,Queens,NY,"Queens County",America/New_York,212,NA,US,40.68,-73.84,28910 +11418,STANDARD,0,"Richmond Hill","Jamaica, Kew Gardens",Queens,NY,"Queens County",America/New_York,"347,917,929,718",NA,US,40.7,-73.84,33980 +11419,STANDARD,0,"South Richmond Hill","Jamaica, S Richmond Hl","Queens, S Richmond Hill",NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.69,-73.82,43820 +11420,STANDARD,0,"South Ozone Park","Jamaica, S Ozone Park",Queens,NY,"Queens County",America/New_York,718,NA,US,40.67,-73.81,43400 +11421,STANDARD,0,Woodhaven,Jamaica,Queens,NY,"Queens County",America/New_York,212,NA,US,40.69,-73.85,39100 +11422,STANDARD,0,Rosedale,Jamaica,Queens,NY,"Queens County",America/New_York,"516,718",NA,US,40.66,-73.73,27690 +11423,STANDARD,0,Hollis,Jamaica,Queens,NY,"Queens County",America/New_York,718,NA,US,40.71,-73.76,28320 +11424,"PO BOX",0,Jamaica,"Kew Gardens","Borough Hall, Queens",NY,"Queens County",America/New_York,212,NA,US,40.71,-73.83,32 +11425,UNIQUE,0,Jamaica,,"Queens, Vet Admin Ext Care Ctr",NY,"Kings County",America/New_York,212,NA,US,40.61,-74.02,25 +11426,STANDARD,0,Bellerose,Jamaica,Queens,NY,"Queens County",America/New_York,"718,516",NA,US,40.74,-73.72,17570 +11427,STANDARD,0,"Queens Village","Bellerose Manor, Bellrs Manor, Jamaica, Queens Vlg","Hollis Hills, Queens",NY,"Queens County",America/New_York,212,NA,US,40.73,-73.75,22010 +11428,STANDARD,0,"Queens Village","Bellerose Manor, Bellrs Manor, Jamaica, Queens Vlg",Queens,NY,"Queens County",America/New_York,718,NA,US,40.72,-73.74,18650 +11429,STANDARD,0,"Queens Village","Jamaica, Queens Vlg",Queens,NY,"Queens County",America/New_York,"347,718,917,929",NA,US,40.71,-73.74,22770 +11430,STANDARD,0,Jamaica,"Jf Kennedy Ap, Jfk Airport, John F Kennedy Airport",Queens,NY,"Queens County",America/New_York,718,NA,US,40.65,-73.79,230 +11431,"PO BOX",0,Jamaica,,Queens,NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,1337 +11432,STANDARD,0,Jamaica,,"Jamaica Est, Queens",NY,"Queens County",America/New_York,"718,347",NA,US,40.72,-73.79,56400 +11433,STANDARD,0,Jamaica,"Addisleigh Park, Addisleigh Pk",Queens,NY,"Queens County",America/New_York,"347,718",NA,US,40.7,-73.79,31560 +11434,STANDARD,0,Jamaica,"Addisleigh Park, Addisleigh Pk, Rochdale Village, Rochdale Vlg","Queens, Rochdale",NY,"Queens County",America/New_York,"516,718",NA,US,40.68,-73.78,56160 +11435,STANDARD,0,Jamaica,Briarwood,Queens,NY,"Queens County",America/New_York,"718,347,917,929",NA,US,40.7,-73.81,50000 +11436,STANDARD,0,Jamaica,"S Ozone Park, South Ozone Park","Queens, S Ozone Pk",NY,"Queens County",America/New_York,718,NA,US,40.68,-73.8,17700 +11437,UNIQUE,0,Jamaica,,Aramex,NY,,,,NA,US,0,0,0 +11439,UNIQUE,0,Jamaica,,"Queens, Saint John University",NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,56 +11451,UNIQUE,0,Jamaica,,"Queens, York College",NY,"Queens County",America/New_York,212,NA,US,40.7,-73.8,0 +11499,UNIQUE,0,Jamaica,,"Amf/Jfk Incoming Express Mai",NY,"Queens County",America/New_York,212,NA,US,40.68,-73.78,0 +11501,STANDARD,0,Mineola,,,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.64,19580 +11507,STANDARD,0,Albertson,,,NY,"Nassau County",America/New_York,"516,718",NA,US,40.77,-73.64,7620 +11509,STANDARD,0,"Atlantic Beach","Atlantic Bch",,NY,"Nassau County",America/New_York,516,NA,US,40.59,-73.73,2150 +11510,STANDARD,0,Baldwin,"N Baldwin, North Baldwin","Baldwin Harbor",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.61,33070 +11514,STANDARD,0,"Carle Place",,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.75,-73.61,4630 +11516,STANDARD,0,Cedarhurst,,,NY,"Nassau County",America/New_York,516,NA,US,40.63,-73.73,7930 +11518,STANDARD,0,"East Rockaway",,"E Rockaway",NY,"Nassau County",America/New_York,516,NA,US,40.64,-73.66,10360 +11520,STANDARD,0,Freeport,,,NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.58,42690 +11530,STANDARD,0,"Garden City","Garden City S, Garden City South, Stewart Manor, Village Of Garden City, Vlg Gdn City","Mitchell Field, Roosevelt Field",NY,"Nassau County",America/New_York,"631,718,516",NA,US,40.72,-73.64,28910 +11531,"PO BOX",0,"Garden City",,"Roosevelt Field",NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.64,176 +11535,UNIQUE,1,"Garden City",,Abmps,NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.64,0 +11536,UNIQUE,1,"Garden City","Select And Save",,NY,"Nassau County",America/New_York,516,NA,US,40.67,-73.7,0 +11542,STANDARD,0,"Glen Cove",,,NY,"Nassau County",America/New_York,516,NA,US,40.86,-73.63,24110 +11545,STANDARD,0,"Glen Head",,"Brookville, Muttontown, Old Brookville, Roslyn Harbor, Upper Brookville",NY,"Nassau County",America/New_York,516,NA,US,40.84,-73.61,11480 +11547,"PO BOX",0,"Glenwood Landing","Glenwood Lndg",,NY,"Nassau County",America/New_York,516,NA,US,40.83,-73.64,1045 +11548,STANDARD,0,Greenvale,,"Brookville, E Hills, East Hills, Old Brookville, Roslyn Harbor",NY,"Nassau County",America/New_York,516,NA,US,40.81,-73.63,1300 +11549,UNIQUE,0,Hempstead,,"Hofstra Univ",NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.6,32 +11550,STANDARD,0,Hempstead,"S Hempstead, South Hempstead",,NY,"Nassau County",America/New_York,"516,718",NA,US,40.7,-73.61,52130 +11551,"PO BOX",0,Hempstead,,,NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.61,1239 +11552,STANDARD,0,"West Hempstead","W Hempstead",Lakeview,NY,"Nassau County",America/New_York,516,NA,US,40.69,-73.65,25470 +11553,STANDARD,0,Uniondale,,"Mitchell Field",NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.59,25930 +11554,STANDARD,0,"East Meadow",,"E Meadow",NY,"Nassau County",America/New_York,516,NA,US,40.71,-73.55,36940 +11555,UNIQUE,0,Uniondale,,Citibank,NY,"Nassau County",America/New_York,516,NA,US,40.7,-73.59,0 +11556,STANDARD,0,Uniondale,,,NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.58,14 +11557,STANDARD,0,Hewlett,,"Hewlett Bay, Hewlett Bay Park, Hewlett Harbor",NY,"Nassau County",America/New_York,516,NA,US,40.64,-73.69,8050 +11558,STANDARD,0,"Island Park",,"Barnum Island, Harbor Island, Harbor Isle",NY,"Nassau County",America/New_York,516,NA,US,40.6,-73.64,7670 +11559,STANDARD,0,Lawrence,,"Meadowmere Park",NY,"Nassau County",America/New_York,"516,718",NA,US,40.6,-73.71,8250 +11560,STANDARD,0,"Locust Valley",,"Lattingtown, Matinecock",NY,"Nassau County",America/New_York,516,NA,US,40.88,-73.58,6200 +11561,STANDARD,0,"Long Beach","E Atlantc Bch, E Atlantic Beach, East Atlantic Beach, Lido Beach",,NY,"Nassau County",America/New_York,516,NA,US,40.59,-73.65,31210 +11563,STANDARD,0,Lynbrook,,,NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.67,21660 +11565,STANDARD,0,Malverne,,,NY,"Nassau County",America/New_York,516,NA,US,40.67,-73.67,8910 +11566,STANDARD,0,Merrick,"N Merrick, North Merrick",,NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.55,35600 +11568,STANDARD,0,"Old Westbury",Westbury,,NY,"Nassau County",America/New_York,"516,631,718",NA,US,40.78,-73.59,3130 +11569,"PO BOX",0,"Point Lookout",,"Pt Lookout",NY,"Nassau County",America/New_York,516,NA,US,40.59,-73.58,1554 +11570,STANDARD,0,"Rockville Centre","Rockville Ctr","Lakeview, Rockville Center, Rvc",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.63,27210 +11571,"PO BOX",0,"Rockville Centre","Rockville Ctr","Rockville Center, Rvc",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.63,266 +11572,STANDARD,0,Oceanside,"Rockville Centre, Rockville Ctr","Rockville Center, Rvc",NY,"Nassau County",America/New_York,516,NA,US,40.63,-73.63,30450 +11575,STANDARD,0,Roosevelt,,,NY,"Nassau County",America/New_York,516,NA,US,40.68,-73.58,16810 +11576,STANDARD,0,Roslyn,,"E Hills, East Hills, Roslyn Estates, Roslyn Harbor",NY,"Nassau County",America/New_York,"516,718",NA,US,40.8,-73.65,12500 +11577,STANDARD,0,"Roslyn Heights","Roslyn Hts","E Hills, East Hills",NY,"Nassau County",America/New_York,"516,718",NA,US,40.78,-73.64,12240 +11579,STANDARD,0,"Sea Cliff",,,NY,"Nassau County",America/New_York,516,NA,US,40.84,-73.64,4860 +11580,STANDARD,0,"Valley Stream",,"N Valley Stream, North Valley Stream",NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.7,41820 +11581,STANDARD,0,"Valley Stream",,"N Woodmere, North Woodmere",NY,"Nassau County",America/New_York,516,NA,US,40.65,-73.72,22190 +11582,"PO BOX",0,"Valley Stream",,,NY,"Nassau County",America/New_York,516,NA,US,40.66,-73.7,483 +11590,STANDARD,0,Westbury,,"New Cassel",NY,"Nassau County",America/New_York,"516,631,718",NA,US,40.75,-73.58,47480 +11592,UNIQUE,1,"Rockville Center","Rvc, National Profit, Rockville Ctr, Rockville Centre",,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.57,0 +11594,UNIQUE,1,Westbury,"115 Firms",,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.58,0 +11595,UNIQUE,1,Westbury,Cheeselovers,,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.58,0 +11596,STANDARD,0,"Williston Park","E Williston, East Williston, Williston Pk",,NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.64,10750 +11597,UNIQUE,1,Westbury,"115 Crm Firms",,NY,"Nassau County",America/New_York,516,NA,US,40.75,-73.58,0 +11598,STANDARD,0,Woodmere,,"Hewlett Neck, Woodsburgh",NY,"Nassau County",America/New_York,516,NA,US,40.63,-73.72,14050 +11599,STANDARD,0,"Garden City",,,NY,"Nassau County",America/New_York,"516,631,718",NA,US,40.72,-73.64,0 +11690,"PO BOX",0,"Far Rockaway","Edgemere, Wave Crest",Queens,NY,"Queens County",America/New_York,212,NA,US,40.59,-73.81,656 +11691,STANDARD,0,"Far Rockaway",,Queens,NY,"Queens County",America/New_York,"347,516,718,929",NA,US,40.6,-73.76,47660 +11692,STANDARD,0,Arverne,"Far Rockaway",Queens,NY,"Queens County",America/New_York,"347,929,718",NA,US,40.59,-73.79,16850 +11693,STANDARD,0,"Far Rockaway","Broad Channel, Rockaway Bch, Rockaway Beach",Queens,NY,"Queens County",America/New_York,718,NA,US,40.59,-73.81,10310 +11694,STANDARD,0,"Rockaway Park","Belle Harbor, Far Rockaway, Neponsit",Queens,NY,"Queens County",America/New_York,718,NA,US,40.58,-73.84,15680 +11695,"PO BOX",0,"Far Rockaway","Fort Tilden",Queens,NY,"Queens County",America/New_York,212,NA,US,40.59,-73.81,30 +11697,STANDARD,0,"Breezy Point","Far Rockaway, Rockaway Point, Rockaway Pt",Queens,NY,"Queens County",America/New_York,212,NA,US,40.56,-73.91,4120 +11701,STANDARD,0,Amityville,"Amity Harbor","N Amityville, North Amityville",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.66,-73.41,25330 +11702,STANDARD,0,Babylon,"Captree Is, Captree Island, Gilgo Beach, Oak Beach, Oak Island, W Gilgo Beach, West Gilgo Beach",,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.69,-73.32,13920 +11703,STANDARD,0,"North Babylon",Babylon,"N Babylon",NY,"Suffolk County",America/New_York,"631,516",NA,US,40.73,-73.32,16550 +11704,STANDARD,0,"West Babylon",Babylon,"W Babylon",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.71,-73.35,37160 +11705,STANDARD,0,Bayport,,"Bay Port",NY,"Suffolk County",America/New_York,631,NA,US,40.74,-73.05,7840 +11706,STANDARD,0,"Bay Shore","Fair Harbor, Kismet, Point O Woods, Saltaire","Bayshore, N Bay Shore, North Bay Shore, W Bay Shore, West Bay Shore",NY,"Suffolk County",America/New_York,631,NA,US,40.72,-73.25,61150 +11707,"PO BOX",0,"West Babylon",Babylon,"W Babylon",NY,"Suffolk County",America/New_York,631,NA,US,40.71,-73.35,134 +11708,STANDARD,1,Amityville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.68,-73.41,0 +11709,STANDARD,0,Bayville,,,NY,"Nassau County",America/New_York,516,NA,US,40.9,-73.56,6310 +11710,STANDARD,0,Bellmore,"N Bellmore, North Bellmore",,NY,"Nassau County",America/New_York,"516,631",NA,US,40.65,-73.52,34320 +11713,STANDARD,0,Bellport,,"N Bellport, North Bellport",NY,"Suffolk County",America/New_York,631,NA,US,40.75,-72.94,9980 +11714,STANDARD,0,Bethpage,,,NY,"Nassau County",America/New_York,516,NA,US,40.74,-73.48,22770 +11715,STANDARD,0,"Blue Point",,,NY,"Suffolk County",America/New_York,631,NA,US,40.75,-73.03,4310 +11716,STANDARD,0,Bohemia,,,NY,"Suffolk County",America/New_York,631,NA,US,40.77,-73.12,9940 +11717,STANDARD,0,Brentwood,"Edgewood, W Brentwood, West Brentwood","Pine Air",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.78,-73.24,61220 +11718,STANDARD,0,Brightwaters,,,NY,"Suffolk County",America/New_York,631,NA,US,40.71,-73.26,3250 +11719,STANDARD,0,Brookhaven,,"S Haven",NY,"Suffolk County",America/New_York,631,NA,US,40.78,-72.91,2790 +11720,STANDARD,0,Centereach,"S Setauket, South Setauket",,NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73.08,27330 +11721,STANDARD,0,Centerport,,"Center Port",NY,"Suffolk County",America/New_York,631,NA,US,40.9,-73.37,6310 +11722,STANDARD,0,"Central Islip",,"S Hauppauge, South Hauppauge",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.78,-73.19,36010 +11724,STANDARD,0,"Cold Spring Harbor","Cold Spg Hbr",,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.86,-73.44,3280 +11725,STANDARD,0,Commack,,,NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.28,28380 +11726,STANDARD,0,Copiague,,Marconiville,NY,"Suffolk County",America/New_York,631,NA,US,40.67,-73.39,19920 +11727,STANDARD,0,Coram,,,NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73,26490 +11729,STANDARD,0,"Deer Park",,Deerpark,NY,"Suffolk County",America/New_York,631,NA,US,40.76,-73.32,27510 +11730,STANDARD,0,"East Islip",,"E Islip",NY,"Suffolk County",America/New_York,631,NA,US,40.72,-73.18,13900 +11731,STANDARD,0,"East Northport","E Northport, Elwood",,NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73.32,29560 +11732,STANDARD,0,"East Norwich",,"E Norwich, Muttontown, Upper Brookville",NY,"Nassau County",America/New_York,516,NA,US,40.84,-73.54,3440 +11733,STANDARD,0,"East Setauket",Setauket,"E Setauket, Old Field, Poquott, Strongs Neck",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.93,-73.1,16700 +11735,STANDARD,0,Farmingdale,"S Farmingdale, South Farmingdale","E Farmingdale, East Farmingdale",NY,"Nassau County",America/New_York,"516,631",NA,US,40.73,-73.44,31300 +11736,UNIQUE,1,Farmingdale,,"Creative Mailing Service",NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.44,20 +11737,STANDARD,0,Farmingdale,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.73,-73.44,0 +11738,STANDARD,0,Farmingville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.04,16090 +11739,"PO BOX",0,"Great River",,,NY,"Suffolk County",America/New_York,631,NA,US,40.73,-73.16,1506 +11740,STANDARD,0,Greenlawn,,,NY,"Suffolk County",America/New_York,631,NA,US,40.86,-73.36,9210 +11741,STANDARD,0,Holbrook,,,NY,"Suffolk County",America/New_York,631,NA,US,40.79,-73.07,26380 +11742,STANDARD,0,Holtsville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.81,-73.04,12440 +11743,STANDARD,0,Huntington,"Halesite, Lloyd Harbor","Bay Hills, Baycrest, Beech Croft, Cold Spring Hills, Harbor Heights, Huntington Bay, Knollwood Beach, Lloyd Neck, W Hills, West Hills, Wincoma",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.87,-73.4,40610 +11746,STANDARD,0,"Huntington Station","Dix Hills, Huntingtn Sta, S Huntington, South Huntington","So Huntington",NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.4,65010 +11747,STANDARD,0,Melville,"Huntingtn Sta, Huntington Station","Dix Hills",NY,"Suffolk County",America/New_York,631,NA,US,40.78,-73.41,20630 +11749,STANDARD,0,Islandia,"Central Islip, Hauppauge, Ronkonkoma",,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.8,-73.17,3160 +11750,UNIQUE,1,"Huntington Station","Huntingtn Sta, Melville",Abmps,NY,"Suffolk County",America/New_York,631,NA,US,40.83,-73.37,0 +11751,STANDARD,0,Islip,,"Bayberry Point, Islip Manor",NY,"Suffolk County",America/New_York,631,NA,US,40.73,-73.21,13950 +11752,STANDARD,0,"Islip Terrace",,,NY,"Suffolk County",America/New_York,631,NA,US,40.76,-73.17,9650 +11753,STANDARD,0,Jericho,,Muttontown,NY,"Nassau County",America/New_York,516,NA,US,40.78,-73.54,13190 +11754,STANDARD,0,"Kings Park",,"San Remo",NY,"Suffolk County",America/New_York,631,NA,US,40.89,-73.24,17770 +11755,STANDARD,0,"Lake Grove",,"Lk Grove",NY,"Suffolk County",America/New_York,631,NA,US,40.85,-73.11,11410 +11756,STANDARD,0,Levittown,,"Island Trees, Plainedge",NY,"Nassau County",America/New_York,516,NA,US,40.72,-73.51,42360 +11757,STANDARD,0,Lindenhurst,,"Heer Park, N Lindenhurst, North Lindenhurst",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.68,-73.37,42300 +11758,STANDARD,0,Massapequa,"N Massapequa, North Massapequa","E Massapequa, East Massapequa",NY,"Nassau County",America/New_York,"631,516",NA,US,40.66,-73.47,53360 +11760,"PO BOX",0,Melville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.82,-73.21,0 +11762,STANDARD,0,"Massapequa Park","Massapequa Pk","Bar Harbor",NY,"Nassau County",America/New_York,"516,631",NA,US,40.68,-73.45,22430 +11763,STANDARD,0,Medford,,"Gordon Heights",NY,"Suffolk County",America/New_York,631,NA,US,40.82,-72.98,26960 +11764,STANDARD,0,"Miller Place",,,NY,"Suffolk County",America/New_York,631,NA,US,40.93,-72.98,12540 +11765,STANDARD,0,"Mill Neck",,,NY,"Nassau County",America/New_York,516,NA,US,40.88,-73.55,580 +11766,STANDARD,0,"Mount Sinai",,"Mt Sinai",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.93,-73.01,12050 +11767,STANDARD,0,Nesconset,,,NY,"Suffolk County",America/New_York,631,NA,US,40.84,-73.15,14100 +11768,STANDARD,0,Northport,"Fort Salonga","Asharoken, Crab Meadow, Eatons Neck, Sunken Meadow",NY,"Suffolk County",America/New_York,631,NA,US,40.9,-73.34,20780 +11769,STANDARD,0,Oakdale,,,NY,"Suffolk County",America/New_York,631,NA,US,40.73,-73.13,8700 +11770,"PO BOX",0,"Ocean Beach",,"Corneil Estates, Fire Island, Ocean Bay Park, Seaview",NY,"Suffolk County",America/New_York,631,NA,US,40.65,-73.16,355 +11771,STANDARD,0,"Oyster Bay",,"Centre Island, Cove Neck, Laurel Hollow, Muttontown, Oyster Bay Cove, Upper Brookville",NY,"Nassau County",America/New_York,516,NA,US,40.86,-73.53,9250 +11772,STANDARD,0,Patchogue,"Blue Point, Davis Park, E Patchogue, East Patchogue","Canaan Lake, N Patchogue, North Patchogue",NY,"Suffolk County",America/New_York,631,NA,US,40.76,-73.01,39620 +11773,UNIQUE,0,Melville,,"Publishers Clearing House",NY,"Nassau County",America/New_York,516,NA,US,40.81,-73.5,0 +11774,UNIQUE,1,Farmingdale,Fulfillment,,NY,"Nassau County",America/New_York,516,NA,US,40.73,-73.44,0 +11775,UNIQUE,0,Melville,,"Don Jagoda Assc Inc",NY,"Suffolk County",America/New_York,631,NA,US,40.78,-73.41,0 +11776,STANDARD,0,"Port Jefferson Station","Port Jeff Sta","P J S, Pjs, Prt Jeff Sta, Prt Jefferson Station, Terryville",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.92,-73.06,22630 +11777,STANDARD,0,"Port Jefferson","Port Jeff Sta, Port Jefferson Station, Prt Jefferson","Belle Terre, P J S, Pjs, Pt Jefferson Station",NY,"Suffolk County",America/New_York,"631,516",NA,US,40.94,-73.05,8520 +11778,STANDARD,0,"Rocky Point",,,NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.92,11890 +11779,STANDARD,0,Ronkonkoma,"Lake Ronkonkoma, Lk Ronkonkoma","Lake Ronkonkoma Heights",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.8,-73.12,36100 +11780,STANDARD,0,"Saint James",,"Box Hill, Deer Wells, Flowerfield, Head Of The Harbor, Nissequogue, St James",NY,"Suffolk County",America/New_York,631,NA,US,40.87,-73.15,14780 +11782,STANDARD,0,Sayville,"Cherry Grove, Fire Is Pines, Fire Island Pines",,NY,"Suffolk County",America/New_York,"631,516",NA,US,40.74,-73.08,14940 +11783,STANDARD,0,Seaford,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.66,-73.49,21120 +11784,STANDARD,0,Selden,,"Old Westfield",NY,"Suffolk County",America/New_York,631,NA,US,40.86,-73.04,23350 +11786,STANDARD,0,Shoreham,,,NY,"Suffolk County",America/New_York,631,NA,US,40.95,-72.9,6280 +11787,STANDARD,0,Smithtown,,"Village Of The Branch",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.85,-73.21,33680 +11788,STANDARD,0,Hauppauge,Smithtown,,NY,"Suffolk County",America/New_York,"516,631",NA,US,40.82,-73.21,16250 +11789,STANDARD,0,"Sound Beach",,"Scotts Beach",NY,"Suffolk County",America/New_York,631,NA,US,40.96,-72.97,7010 +11790,STANDARD,0,"Stony Brook",,"Head Of The Harbor, Stonybrook",NY,"Suffolk County",America/New_York,631,NA,US,40.9,-73.12,12810 +11791,STANDARD,0,Syosset,,"Laurel Hollow, Muttontown, Oyster Bay Cove",NY,"Nassau County",America/New_York,516,NA,US,40.81,-73.5,25630 +11792,STANDARD,0,"Wading River",,"Wildwood, Willwood",NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.81,8310 +11793,STANDARD,0,Wantagh,,"Briar Park, N Wantagh",NY,"Nassau County",America/New_York,"516,631",NA,US,40.66,-73.51,31970 +11794,UNIQUE,0,"Stony Brook",,"Stonybrook, Suny Stony Brook",NY,"Suffolk County",America/New_York,631,NA,US,40.91,-73.12,97 +11795,STANDARD,0,"West Islip",,"W Islip",NY,"Suffolk County",America/New_York,631,NA,US,40.7,-73.29,24590 +11796,STANDARD,0,"West Sayville",,"W Sayville",NY,"Suffolk County",America/New_York,631,NA,US,40.72,-73.1,3580 +11797,STANDARD,0,Woodbury,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.81,-73.47,9230 +11798,STANDARD,0,Wyandanch,"Wheatley Heights, Wheatley Hts",,NY,"Suffolk County",America/New_York,631,NA,US,40.74,-73.37,16500 +11801,STANDARD,0,Hicksville,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.76,-73.52,41240 +11802,"PO BOX",0,Hicksville,,,NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,539 +11803,STANDARD,0,Plainview,,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.78,-73.47,29330 +11804,STANDARD,0,"Old Bethpage",,,NY,"Nassau County",America/New_York,"516,631",NA,US,40.75,-73.45,5020 +11815,UNIQUE,0,Hicksville,,"L I Power Authority",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11819,UNIQUE,1,Hicksville,,"Chase Bank",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11853,UNIQUE,0,Jericho,,"Uhc Berdon",NY,"Nassau County",America/New_York,516,NA,US,40.78,-73.54,0 +11854,UNIQUE,1,Hicksville,,"Hicksville Firms",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11855,UNIQUE,1,Hicksville,,"Hicksville Crm Firms",NY,"Nassau County",America/New_York,516,NA,US,40.76,-73.52,0 +11901,STANDARD,0,Riverhead,Flanders,Northampton,NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.67,23620 +11930,"PO BOX",0,Amagansett,,"Beach Hampton, Promised Land",NY,"Suffolk County",America/New_York,631,NA,US,40.99,-72.1,2505 +11931,"PO BOX",0,Aquebogue,,,NY,"Suffolk County",America/New_York,631,NA,US,40.93,-72.61,2469 +11932,"PO BOX",0,Bridgehampton,,"Bridge Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.29,1730 +11933,STANDARD,0,Calverton,"Baiting Hollow, Baiting Holw",,NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.76,6200 +11934,STANDARD,0,"Center Moriches","Ctr Moriches",,NY,"Suffolk County",America/New_York,631,NA,US,40.79,-72.79,7980 +11935,STANDARD,0,Cutchogue,,"Nassau Point",NY,"Suffolk County",America/New_York,631,NA,US,41.01,-72.48,3180 +11937,STANDARD,0,"East Hampton",,"E Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.95,-72.19,15100 +11939,STANDARD,0,"East Marion",,"E Marion",NY,"Suffolk County",America/New_York,631,NA,US,41.12,-72.34,880 +11940,STANDARD,0,"East Moriches",,"E Moriches",NY,"Suffolk County",America/New_York,631,NA,US,40.81,-72.76,5140 +11941,STANDARD,0,Eastport,,,NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.73,2530 +11942,STANDARD,0,"East Quogue",,"E Quogue",NY,"Suffolk County",America/New_York,631,NA,US,40.85,-72.57,4710 +11944,STANDARD,0,Greenport,,,NY,"Suffolk County",America/New_York,631,NA,US,41.1,-72.36,3830 +11946,STANDARD,0,"Hampton Bays",,,NY,"Suffolk County",America/New_York,631,NA,US,40.86,-72.52,13410 +11947,"PO BOX",0,Jamesport,,,NY,"Suffolk County",America/New_York,631,NA,US,40.95,-72.57,1482 +11948,STANDARD,0,Laurel,,,NY,"Suffolk County",America/New_York,631,NA,US,40.97,-72.55,1130 +11949,STANDARD,0,Manorville,,,NY,"Suffolk County",America/New_York,631,NA,US,40.85,-72.79,13860 +11950,STANDARD,0,Mastic,,"Manor Park, Rivers Edge",NY,"Suffolk County",America/New_York,"516,631",NA,US,40.8,-72.84,15000 +11951,STANDARD,0,"Mastic Beach",,"Old Mastic, Village Of Mastic Beach",NY,"Suffolk County",America/New_York,631,NA,US,40.76,-72.84,12110 +11952,STANDARD,0,Mattituck,,,NY,"Suffolk County",America/New_York,631,NA,US,41,-72.53,4500 +11953,STANDARD,0,"Middle Island",,,NY,"Suffolk County",America/New_York,631,NA,US,40.88,-72.94,11820 +11954,STANDARD,0,Montauk,,"Hither Plains",NY,"Suffolk County",America/New_York,631,NA,US,41.04,-71.94,4190 +11955,STANDARD,0,Moriches,,,NY,"Suffolk County",America/New_York,631,NA,US,40.8,-72.82,2890 +11956,"PO BOX",0,"New Suffolk",,,NY,"Suffolk County",America/New_York,631,NA,US,40.99,-72.48,360 +11957,STANDARD,0,Orient,,"Orient Point",NY,"Suffolk County",America/New_York,631,NA,US,41.14,-72.3,700 +11958,STANDARD,0,Peconic,,,NY,"Suffolk County",America/New_York,631,NA,US,41.03,-72.46,740 +11959,"PO BOX",0,Quogue,,,NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.6,1395 +11960,"PO BOX",0,Remsenburg,,,NY,"Suffolk County",America/New_York,631,NA,US,40.81,-72.71,1461 +11961,STANDARD,0,Ridge,,"Lake Panamoka, Panamoka",NY,"Suffolk County",America/New_York,631,NA,US,40.91,-72.88,12210 +11962,"PO BOX",0,Sagaponack,,,NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.27,621 +11963,STANDARD,0,"Sag Harbor",,"Bay Point, N Haven, North Haven, Pine Neck",NY,"Suffolk County",America/New_York,631,NA,US,40.99,-72.29,6610 +11964,"PO BOX",0,"Shelter Island","Shelter Is",,NY,"Suffolk County",America/New_York,631,NA,US,41.06,-72.32,1729 +11965,"PO BOX",0,"Shelter Island Heights","Shelter Is Ht",,NY,"Suffolk County",America/New_York,631,NA,US,41.1,-72.29,875 +11967,STANDARD,0,Shirley,"E Yaphank, East Yaphank, Smith Point","Smiths Point",NY,"Suffolk County",America/New_York,631,NA,US,40.79,-72.87,24410 +11968,STANDARD,0,Southampton,,"S Hampton, South Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.88,-72.39,9100 +11969,"PO BOX",0,Southampton,,"S Hampton, South Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.88,-72.39,2417 +11970,"PO BOX",0,"South Jamesport","S Jamesport",,NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.58,405 +11971,STANDARD,0,Southold,,,NY,"Suffolk County",America/New_York,631,NA,US,41.05,-72.42,5170 +11972,"PO BOX",0,Speonk,,,NY,"Suffolk County",America/New_York,631,NA,US,40.85,-72.7,926 +11973,"PO BOX",0,Upton,,,NY,"Suffolk County",America/New_York,631,NA,US,40.86,-72.87,438 +11975,"PO BOX",0,Wainscott,,,NY,"Suffolk County",America/New_York,631,NA,US,40.94,-72.24,1196 +11976,STANDARD,0,"Water Mill",,"Watermill, Wtr Mill",NY,"Suffolk County",America/New_York,631,NA,US,40.92,-72.34,1830 +11977,STANDARD,0,Westhampton,,"W Hampton, West Hampton",NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.68,2390 +11978,STANDARD,0,"Westhampton Beach","W Hampton Bch","Quioque, W Hampton Beach, West Hampton Beach, West Hampton Dunes, Westhampton Dunes",NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.65,3450 +11980,STANDARD,0,Yaphank,,"Carver Park",NY,"Suffolk County",America/New_York,631,NA,US,40.83,-72.92,4460 +12007,STANDARD,0,Alcove,,,NY,"Albany County",America/New_York,518,NA,US,42.46,-73.93,160 +12008,STANDARD,0,Alplaus,,,NY,"Schenectady County",America/New_York,518,NA,US,42.85,-73.91,460 +12009,STANDARD,0,Altamont,,"Thompsons Lake",NY,"Albany County",America/New_York,518,NA,US,42.7,-74.03,7240 +12010,STANDARD,0,Amsterdam,"West Charlton","Perth, West Glenville",NY,"Montgomery County",America/New_York,518,NA,US,42.94,-74.19,24440 +12015,STANDARD,0,Athens,,,NY,"Greene County",America/New_York,518,NA,US,42.26,-73.81,2900 +12016,STANDARD,0,Auriesville,Fultonville,,NY,"Montgomery County",America/New_York,518,NA,US,42.87,-74.35,0 +12017,STANDARD,0,Austerlitz,,,NY,"Columbia County",America/New_York,518,NA,US,42.32,-73.47,330 +12018,STANDARD,0,"Averill Park",,"Alps, Burden Lake, Dunham Hollow, East Poestenkill, Glass Lake",NY,"Rensselaer County",America/New_York,518,NA,US,42.63,-73.55,7310 +12019,STANDARD,0,"Ballston Lake","Burnt Hills, Charlton",Malta,NY,"Saratoga County",America/New_York,,NA,US,42.92,-73.84,15390 +12020,STANDARD,0,"Ballston Spa",Malta,"Ballston Center, East Line, Factory Village, Harmony Corners, Malta Ridge, Maltaville, Milton Center, Pioneer, Riley Cove, West Milton",NY,"Saratoga County",America/New_York,518,NA,US,43,-73.85,30460 +12022,STANDARD,0,Berlin,,"Center Berlin",NY,"Rensselaer County",America/New_York,518,NA,US,42.66,-73.33,760 +12023,STANDARD,0,Berne,,"South Berne, West Berne",NY,"Albany County",America/New_York,518,NA,US,42.62,-74.13,1860 +12024,STANDARD,0,Brainard,,,NY,"Columbia County",America/New_York,518,NA,US,42.48,-73.54,153 +12025,STANDARD,0,Broadalbin,,"Fish House, Galway Lake, Honeywell Corners, North Broadalbin, Stevers Mills, Union Mills, Vail Mills",NY,"Fulton County",America/New_York,518,NA,US,43.05,-74.19,5010 +12027,STANDARD,0,"Burnt Hills",,,NY,"Saratoga County",America/New_York,518,NA,US,42.91,-73.9,4040 +12028,STANDARD,0,Buskirk,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.96,-73.45,1050 +12029,STANDARD,0,Canaan,,,NY,"Columbia County",America/New_York,518,NA,US,42.41,-73.41,900 +12031,STANDARD,0,Carlisle,,,NY,"Schoharie County",America/New_York,518,NA,US,42.77,-74.45,220 +12032,STANDARD,0,"Caroga Lake",,"Caroga, Pine Lake, Wheelerville",NY,"Fulton County",America/New_York,518,NA,US,43.12,-74.53,850 +12033,STANDARD,0,"Castleton On Hudson","Brookview, Castleton, S Schodack, South Schodack",,NY,"Rensselaer County",America/New_York,518,NA,US,42.53,-73.7,7460 +12035,STANDARD,0,"Central Bridge","Central Brg",,NY,"Schoharie County",America/New_York,518,NA,US,42.73,-74.36,700 +12036,STANDARD,0,Charlotteville,Charlottevle,,NY,"Schoharie County",America/New_York,518,NA,US,42.54,-74.67,244 +12037,STANDARD,0,Chatham,,,NY,"Columbia County",America/New_York,518,NA,US,42.36,-73.59,3120 +12040,"PO BOX",0,"Cherry Plain",,Cherryplain,NY,"Rensselaer County",America/New_York,518,NA,US,42.64,-73.35,229 +12041,STANDARD,0,Clarksville,,,NY,"Albany County",America/New_York,518,NA,US,42.58,-73.95,480 +12042,STANDARD,0,Climax,,,NY,"Greene County",America/New_York,518,NA,US,42.42,-73.94,380 +12043,STANDARD,0,Cobleskill,Lawyersville,"Dorloo, Hyndsville, Janesville, Mineral Springs, Seward",NY,"Schoharie County",America/New_York,518,NA,US,42.67,-74.48,5730 +12045,"PO BOX",0,Coeymans,,,NY,"Albany County",America/New_York,518,NA,US,42.48,-73.8,583 +12046,STANDARD,0,"Coeymans Hollow","Coeymans Holw",,NY,"Albany County",America/New_York,518,NA,US,42.48,-73.92,610 +12047,STANDARD,0,Cohoes,,"Boght Corners, Dunsbach Ferry",NY,"Albany County",America/New_York,518,NA,US,42.77,-73.7,18620 +12050,"PO BOX",0,Columbiaville,,,NY,"Columbia County",America/New_York,518,NA,US,42.32,-73.76,406 +12051,STANDARD,0,Coxsackie,,,NY,"Greene County",America/New_York,518,NA,US,42.35,-73.8,3180 +12052,STANDARD,0,Cropseyville,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.76,-73.47,1390 +12053,STANDARD,0,Delanson,,"Braman Corners",NY,"Schenectady County",America/New_York,518,NA,US,42.74,-74.18,4150 +12054,STANDARD,0,Delmar,,"Bethlehem, Elsmere",NY,"Albany County",America/New_York,518,NA,US,42.62,-73.83,16690 +12055,STANDARD,0,Dormansville,,,NY,"Albany County",America/New_York,518,NA,US,42.43,-74.19,0 +12056,STANDARD,0,Duanesburg,,Princetown,NY,"Schenectady County",America/New_York,518,NA,US,42.76,-74.13,2180 +12057,STANDARD,0,"Eagle Bridge","White Creek",,NY,"Washington County",America/New_York,,NA,US,42.94,-73.39,1450 +12058,STANDARD,0,Earlton,,,NY,"Greene County",America/New_York,518,NA,US,42.35,-73.9,1230 +12059,STANDARD,0,"East Berne",,,NY,"Albany County",America/New_York,518,NA,US,42.61,-74.05,1400 +12060,STANDARD,0,"East Chatham",,"Red Rock",NY,"Columbia County",America/New_York,518,NA,US,42.42,-73.48,1170 +12061,STANDARD,0,"East Greenbush","E Greenbush",,NY,"Rensselaer County",America/New_York,518,NA,US,42.59,-73.7,9000 +12062,STANDARD,0,"East Nassau",,"Hoag Corners",NY,"Rensselaer County",America/New_York,518,NA,US,42.53,-73.5,1510 +12063,STANDARD,0,"East Schodack",,,NY,"Rensselaer County",America/New_York,518,NA,US,42.57,-73.64,530 +12064,STANDARD,0,"East Worcester","E Worcester",,NY,"Otsego County",America/New_York,607,NA,US,42.61,-74.67,390 +12065,STANDARD,0,"Clifton Park",Halfmoon,"Clifton Park Center, Elnora, Jonesville",NY,"Saratoga County",America/New_York,518,NA,US,42.85,-73.8,41640 +12066,STANDARD,0,Esperance,,Burtonsville,NY,"Schoharie County",America/New_York,518,NA,US,42.76,-74.25,1820 +12067,STANDARD,0,"Feura Bush",,,NY,"Albany County",America/New_York,518,NA,US,42.57,-73.88,1380 +12068,STANDARD,0,Fonda,,Sammonsville,NY,"Montgomery County",America/New_York,518,NA,US,42.96,-74.4,2540 +12069,"PO BOX",0,"Fort Hunter",,,NY,"Montgomery County",America/New_York,518,NA,US,42.95,-74.28,280 +12070,STANDARD,0,"Fort Johnson",,,NY,"Montgomery County",America/New_York,518,NA,US,42.99,-74.26,1240 +12071,STANDARD,0,Fultonham,,,NY,"Schoharie County",America/New_York,,NA,US,42.55,-74.42,240 +12072,STANDARD,0,Fultonville,,,NY,"Montgomery County",America/New_York,518,NA,US,42.94,-74.37,2310 +12073,"PO BOX",0,Gallupville,,,NY,"Schoharie County",America/New_York,518,NA,US,42.66,-74.21,156 +12074,STANDARD,0,Galway,,"Hagedorns Mills, Mosherville",NY,"Saratoga County",America/New_York,518,NA,US,43.01,-74.03,2880 +12075,STANDARD,0,Ghent,,,NY,"Columbia County",America/New_York,518,NA,US,42.3,-73.64,2820 +12076,STANDARD,0,Gilboa,,,NY,"Schoharie County",America/New_York,,NA,US,42.39,-74.39,1020 +12077,STANDARD,0,Glenmont,,"Bethlehem Center",NY,"Albany County",America/New_York,518,NA,US,42.59,-73.78,6280 +12078,STANDARD,0,Gloversville,,"Bleecker, Meco, Riceville, West Bush",NY,"Fulton County",America/New_York,518,NA,US,43.05,-74.34,17960 +12082,"PO BOX",0,Grafton,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.76,-73.43,392 +12083,STANDARD,0,Greenville,"Norton Hill, S Westerlo, South Westerlo",,NY,"Greene County",America/New_York,518,NA,US,42.41,-74.02,3400 +12084,STANDARD,0,Guilderland,,,NY,"Albany County",America/New_York,518,NA,US,42.69,-73.89,4240 +12085,STANDARD,0,"Guilderland Center","Guildrlnd Ctr",,NY,"Albany County",America/New_York,518,NA,US,42.7,-73.96,280 +12086,STANDARD,0,Hagaman,,,NY,"Montgomery County",America/New_York,,NA,US,42.97,-74.15,1590 +12087,STANDARD,0,Hannacroix,,,NY,"Greene County",America/New_York,518,NA,US,42.42,-73.88,1160 +12089,"PO BOX",0,Hoosick,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.87,-73.31,284 +12090,STANDARD,0,"Hoosick Falls",,"Boyntonville, Walloomsac",NY,"Rensselaer County",America/New_York,518,NA,US,42.9,-73.35,5040 +12092,STANDARD,0,"Howes Cave",,"Barnerville, Bramanville",NY,"Schoharie County",America/New_York,518,NA,US,42.7,-74.37,990 +12093,STANDARD,0,Jefferson,,"East Jefferson, North Harpersfield",NY,"Schoharie County",America/New_York,,NA,US,42.48,-74.61,1210 +12094,STANDARD,0,Johnsonville,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.88,-73.49,2190 +12095,STANDARD,0,Johnstown,,"Garoga, Northbush, Rockwood",NY,"Fulton County",America/New_York,518,NA,US,43,-74.37,9960 +12106,STANDARD,0,Kinderhook,,,NY,"Columbia County",America/New_York,518,NA,US,42.39,-73.7,2310 +12107,"PO BOX",0,Knox,,,NY,"Albany County",America/New_York,518,NA,US,42.67,-74.11,200 +12108,STANDARD,0,"Lake Pleasant",,"Higgins Bay",NY,"Hamilton County",America/New_York,518,NA,US,43.55,-74.43,380 +12110,STANDARD,0,Latham,Newtonville,Verdoy,NY,"Albany County",America/New_York,518,NA,US,42.74,-73.74,18660 +12115,STANDARD,0,"Malden Bridge",,"Malden Brg",NY,"Columbia County",America/New_York,518,NA,US,42.48,-73.58,153 +12116,STANDARD,0,Maryland,,"Chaseville, Cooperstown Junction",NY,"Otsego County",America/New_York,,NA,US,42.53,-74.88,1460 +12117,STANDARD,0,Mayfield,,,NY,"Fulton County",America/New_York,518,NA,US,43.1,-74.26,2740 +12118,STANDARD,0,Mechanicville,,Malta,NY,"Saratoga County",America/New_York,518,NA,US,42.9,-73.69,15180 +12120,STANDARD,0,Medusa,,,NY,"Albany County",America/New_York,518,NA,US,42.45,-74.14,520 +12121,STANDARD,0,Melrose,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.85,-73.6,1720 +12122,STANDARD,0,Middleburgh,,"Breakabeen, Huntersland, Livingstonville, Middleburg",NY,"Schoharie County",America/New_York,518,NA,US,42.59,-74.32,3360 +12123,STANDARD,0,Nassau,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.51,-73.61,4790 +12124,"PO BOX",0,"New Baltimore",,,NY,"Greene County",America/New_York,518,NA,US,42.45,-73.79,532 +12125,STANDARD,0,"New Lebanon","Lebanon Spg, Lebanon Springs","New Lebanon Center",NY,"Columbia County",America/New_York,518,NA,US,42.46,-73.39,1290 +12128,"PO BOX",0,Newtonville,Latham,,NY,"Albany County",America/New_York,518,NA,US,42.7,-73.76,246 +12130,STANDARD,0,Niverville,,,NY,"Columbia County",America/New_York,518,NA,US,42.44,-73.66,860 +12131,STANDARD,0,"North Blenheim","N Blenheim",,NY,"Schoharie County",America/New_York,518,NA,US,42.46,-74.46,170 +12132,"PO BOX",0,"North Chatham",,,NY,"Columbia County",America/New_York,518,NA,US,42.47,-73.63,411 +12133,"PO BOX",0,"North Hoosick",,"Hoosick Junction",NY,"Rensselaer County",America/New_York,518,NA,US,42.88,-73.34,134 +12134,STANDARD,0,Northville,,Edinburg,NY,"Fulton County",America/New_York,518,NA,US,43.22,-74.17,3240 +12136,STANDARD,0,"Old Chatham",,,NY,"Columbia County",America/New_York,518,NA,US,42.42,-73.56,720 +12137,STANDARD,0,Pattersonville,Pattersonvle,Mariaville,NY,"Schenectady County",America/New_York,518,NA,US,42.84,-74.13,1570 +12138,STANDARD,0,Petersburg,"Petersburgh, Taconic Lake","North Petersburg",NY,"Rensselaer County",America/New_York,518,NA,US,42.72,-73.36,2540 +12139,STANDARD,0,Piseco,,Arietta,NY,"Hamilton County",America/New_York,518,NA,US,43.42,-74.53,190 +12140,STANDARD,0,Poestenkill,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.69,-73.56,1630 +12141,"PO BOX",0,"Quaker Street",,,NY,"Schenectady County",America/New_York,518,NA,US,42.77,-74.16,64 +12143,STANDARD,0,Ravena,,,NY,"Albany County",America/New_York,518,NA,US,42.47,-73.81,4470 +12144,STANDARD,0,Rensselaer,,Defreestville,NY,"Rensselaer County",America/New_York,518,NA,US,42.64,-73.73,18430 +12147,STANDARD,0,Rensselaerville,Rensselaervle,,NY,"Albany County",America/New_York,518,NA,US,42.51,-74.15,490 +12148,STANDARD,0,Rexford,,"Vischer Ferry",NY,"Saratoga County",America/New_York,518,NA,US,42.84,-73.85,4790 +12149,STANDARD,0,Richmondville,,"West Richmondville",NY,"Schoharie County",America/New_York,518,NA,US,42.63,-74.56,1890 +12150,STANDARD,0,"Rotterdam Junction","Rotterdam Jct",,NY,"Schenectady County",America/New_York,518,NA,US,42.88,-74.05,780 +12151,STANDARD,0,"Round Lake",,"Malta, Ushers",NY,"Saratoga County",America/New_York,518,NA,US,42.93,-73.79,840 +12153,STANDARD,0,"Sand Lake",,Taborton,NY,"Rensselaer County",America/New_York,518,NA,US,42.63,-73.49,850 +12154,STANDARD,0,Schaghticoke,,Easton,NY,"Rensselaer County",America/New_York,,NA,US,42.89,-73.58,2600 +12155,STANDARD,0,Schenevus,,"Elk Creek, Fergusonville, Simpsonville, Westville",NY,"Otsego County",America/New_York,607,NA,US,42.54,-74.82,1410 +12156,STANDARD,0,"Schodack Landing","Schodack Lndg",,NY,"Rensselaer County",America/New_York,518,NA,US,42.47,-73.74,810 +12157,STANDARD,0,Schoharie,,,NY,"Schoharie County",America/New_York,518,NA,US,42.66,-74.31,3490 +12158,STANDARD,0,Selkirk,,"Beckers Corners",NY,"Albany County",America/New_York,518,NA,US,42.53,-73.8,5990 +12159,STANDARD,0,Slingerlands,,,NY,"Albany County",America/New_York,518,NA,US,42.64,-73.88,8240 +12160,STANDARD,0,Sloansville,,,NY,"Schoharie County",America/New_York,518,NA,US,42.76,-74.37,790 +12161,"PO BOX",0,"South Bethlehem","S Bethlehem",,NY,"Albany County",America/New_York,518,NA,US,42.53,-73.85,303 +12164,STANDARD,0,Speculator,,,NY,"Hamilton County",America/New_York,518,NA,US,43.58,-74.38,460 +12165,STANDARD,0,Spencertown,,,NY,"Columbia County",America/New_York,518,NA,US,42.31,-73.51,370 +12166,STANDARD,0,Sprakers,,"Charleston Four Corners, Lykers, Root, Rural Grove",NY,"Montgomery County",America/New_York,,NA,US,42.83,-74.45,1270 +12167,STANDARD,0,Stamford,,,NY,"Delaware County",America/New_York,607,NA,US,42.4,-74.61,1890 +12168,STANDARD,0,Stephentown,,"Stephentown Center",NY,"Rensselaer County",America/New_York,518,NA,US,42.56,-73.38,1510 +12169,STANDARD,0,Stephentown,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.59,-73.45,350 +12170,STANDARD,0,Stillwater,,"Bemis Heights",NY,"Saratoga County",America/New_York,518,NA,US,42.95,-73.64,4630 +12172,"PO BOX",0,Stottville,,,NY,"Columbia County",America/New_York,518,NA,US,42.29,-73.74,676 +12173,STANDARD,0,Stuyvesant,,"Newton Hook",NY,"Columbia County",America/New_York,518,NA,US,42.38,-73.76,1440 +12174,"PO BOX",0,"Stuyvesant Falls","Stuyvesant Fl",,NY,"Columbia County",America/New_York,518,NA,US,42.35,-73.73,418 +12175,STANDARD,0,Summit,,,NY,"Schoharie County",America/New_York,518,NA,US,42.58,-74.58,670 +12176,STANDARD,0,Surprise,,,NY,"Greene County",America/New_York,518,NA,US,42.38,-73.98,250 +12177,"PO BOX",0,"Tribes Hill",,,NY,"Montgomery County",America/New_York,518,NA,US,42.95,-74.29,820 +12180,STANDARD,0,Troy,,"Albia, Brunswick, Center Brunswick, Eagle Mills, Raymertown, Snyders Corners, Snyders Lake, Speigletown, Sycaway",NY,"Rensselaer County",America/New_York,518,NA,US,42.73,-73.67,39840 +12181,"PO BOX",0,Troy,,,NY,"Rensselaer County",America/New_York,518,NA,US,42.73,-73.67,655 +12182,STANDARD,0,Troy,,"Lansingburg, Pleasantdale, Speigletown",NY,"Rensselaer County",America/New_York,518,NA,US,42.8,-73.63,12150 +12183,STANDARD,0,Troy,"Green Island",,NY,"Albany County",America/New_York,518,NA,US,42.75,-73.69,2150 +12184,STANDARD,0,Valatie,,"Chatham Center",NY,"Columbia County",America/New_York,518,NA,US,42.41,-73.67,6180 +12185,STANDARD,0,"Valley Falls",,"West Valley Falls",NY,"Rensselaer County",America/New_York,518,NA,US,42.9,-73.56,1810 +12186,STANDARD,0,Voorheesville,,Reidsville,NY,"Albany County",America/New_York,518,NA,US,42.64,-73.93,6360 +12187,STANDARD,0,Warnerville,,Patria,NY,"Schoharie County",America/New_York,,NA,US,42.61,-74.47,640 +12188,STANDARD,0,Waterford,,,NY,"Saratoga County",America/New_York,518,NA,US,42.82,-73.7,10310 +12189,STANDARD,0,Watervliet,,"Mannville, Maplewood",NY,"Albany County",America/New_York,518,NA,US,42.72,-73.7,15800 +12190,STANDARD,0,Wells,,Gilmantown,NY,"Hamilton County",America/New_York,518,NA,US,43.39,-74.29,600 +12192,STANDARD,0,"West Coxsackie","W Coxsackie",,NY,"Greene County",America/New_York,518,NA,US,42.4,-73.81,1270 +12193,STANDARD,0,Westerlo,,,NY,"Albany County",America/New_York,518,NA,US,42.51,-74.04,1870 +12194,STANDARD,0,"West Fulton",,"W Fulton",NY,"Schoharie County",America/New_York,,NA,US,42.53,-74.45,200 +12195,"PO BOX",0,"West Lebanon",,"W Lebanon",NY,"Columbia County",America/New_York,518,NA,US,42.48,-73.48,255 +12196,STANDARD,0,"West Sand Lake","W Sand Lake",,NY,"Rensselaer County",America/New_York,518,NA,US,42.63,-73.6,2990 +12197,STANDARD,0,Worcester,,"Decatur, South Worcester",NY,"Otsego County",America/New_York,607,NA,US,42.59,-74.75,1810 +12198,STANDARD,0,Wynantskill,,"North Greenbush",NY,"Rensselaer County",America/New_York,518,NA,US,42.68,-73.63,7370 +12201,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,778 +12202,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.63,-73.76,7430 +12203,STANDARD,0,Albany,"Stuyvesant Plaza, Stuyvsnt Plz","Mckownville, Pine, Westmere",NY,"Albany County",America/New_York,518,NA,US,42.68,-73.85,20990 +12204,STANDARD,0,Albany,Menands,,NY,"Albany County",America/New_York,518,NA,US,42.69,-73.73,6640 +12205,STANDARD,0,Albany,"Colonie, Roessleville",,NY,"Albany County",America/New_York,518,NA,US,42.72,-73.83,24990 +12206,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.67,-73.78,12490 +12207,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.75,1290 +12208,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,15910 +12209,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.64,-73.79,8910 +12210,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.76,7130 +12211,STANDARD,0,Albany,"Loudonville, Siena",,NY,"Albany County",America/New_York,518,NA,US,42.7,-73.76,10950 +12212,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,538 +12214,UNIQUE,0,Albany,,"Albany Brm",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12220,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,225 +12222,UNIQUE,0,Albany,,"S U N Y",NY,"Albany County",America/New_York,518,NA,US,42.69,-73.82,163 +12223,STANDARD,0,Albany,,"Empire State Plaza",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12224,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,48 +12225,"PO BOX",0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12226,STANDARD,0,Albany,,"Ny State Campus",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12227,UNIQUE,0,Albany,,"Nys Dept Of Tax & Finance",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12228,UNIQUE,0,Albany,,"Ny Dept Of Motor Vehicles",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12229,UNIQUE,0,Albany,,"Mental Hygiene Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12230,UNIQUE,0,Albany,,"Ny Educ Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12231,UNIQUE,0,Albany,,"Ny Secretary Of State",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12232,UNIQUE,0,Albany,,"Ny Dept Trans",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12233,UNIQUE,0,Albany,,"Ny Conservation Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12234,UNIQUE,0,Albany,,"State Office Bldg",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12235,UNIQUE,0,Albany,,"Ny Agr And Mkts",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12236,UNIQUE,0,Albany,,"Audit And Control Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,51 +12237,UNIQUE,0,Albany,,"Ny Health Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12238,UNIQUE,0,Albany,,"Ny Park And Rec Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12239,UNIQUE,0,Albany,,"Ny Civil Serv Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12240,UNIQUE,0,Albany,,"Ny Labor Div Empl",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12241,UNIQUE,0,Albany,,"Ny Workman Comp",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12242,UNIQUE,0,Albany,,"Ny Standards And Purc",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12243,UNIQUE,0,Albany,,"Ny Soc Serv Dept",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12244,UNIQUE,0,Albany,,"Ny Empl Retirement",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12245,UNIQUE,0,Albany,,"Ny Dept Commerce",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12246,UNIQUE,0,Albany,,"S U N Y 99 WASH",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12247,UNIQUE,0,Albany,,"New York State Gov",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12248,UNIQUE,0,Albany,,"Ny Assembly",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12249,UNIQUE,0,Albany,,"Ny Labor Unemp Ins",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12250,UNIQUE,0,Albany,,"Ny Tele Co",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12252,UNIQUE,1,Albany,,"N Y State Lottery",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12255,UNIQUE,0,Albany,,"Ny Hghr Educ Serv Corp",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12256,UNIQUE,1,Albany,,"N Y Lottery",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12257,UNIQUE,0,Albany,,"Ny State Dept Financial Svc",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12260,STANDARD,0,Albany,,,NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12261,UNIQUE,0,Albany,,"Nys Tax Processing Ctr",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12288,UNIQUE,0,Albany,,"Us Postal Service",NY,"Albany County",America/New_York,518,NA,US,42.66,-73.79,0 +12301,"PO BOX",0,Schenectady,,,NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,901 +12302,STANDARD,0,Schenectady,"Glenville, Scotia","East Glenville, Schdy, Stoodley Corners",NY,"Schenectady County",America/New_York,518,NA,US,42.88,-73.98,25730 +12303,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.75,-73.93,27870 +12304,STANDARD,0,Schenectady,,"Brandywine, Schdy",NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,18110 +12305,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.81,-73.95,2930 +12306,STANDARD,0,Schenectady,Rotterdam,"Bellevue, Lower Rotterdam, Schdy",NY,"Schenectady County",America/New_York,518,NA,US,42.81,-74.04,24280 +12307,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.93,5790 +12308,STANDARD,0,Schenectady,,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.82,-73.92,11120 +12309,STANDARD,0,Schenectady,Niskayuna,"Schdy, Upper Union",NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.86,29480 +12325,"PO BOX",0,Schenectady,Glenville,Schdy,NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,79 +12345,UNIQUE,0,Schenectady,,"General Electric, Schdy",NY,"Schenectady County",America/New_York,518,NA,US,42.8,-73.92,48 +12401,STANDARD,0,Kingston,"Eddyville, Saint Remy","St Remy",NY,"Ulster County",America/New_York,"845,914",NA,US,41.93,-73.99,28110 +12402,"PO BOX",0,Kingston,,,NY,"Ulster County",America/New_York,845,NA,US,41.93,-73.99,1840 +12404,STANDARD,0,Accord,,"Leibhardt, Lyonsville, Mettacahonts, Whitfield",NY,"Ulster County",America/New_York,845,NA,US,41.8,-74.23,2950 +12405,STANDARD,0,Acra,,"South Durham",NY,"Greene County",America/New_York,518,NA,US,42.33,-74.09,560 +12406,STANDARD,0,Arkville,,,NY,"Delaware County",America/New_York,,NA,US,42.14,-74.62,510 +12407,STANDARD,0,Ashland,,,NY,"Greene County",America/New_York,518,NA,US,42.32,-74.36,240 +12409,STANDARD,0,Bearsville,Shady,,NY,"Ulster County",America/New_York,845,NA,US,42.04,-74.18,790 +12410,STANDARD,0,"Big Indian",Oliverea,,NY,"Ulster County",America/New_York,845,NA,US,42.07,-74.44,260 +12411,STANDARD,0,Bloomington,,,NY,"Ulster County",America/New_York,845,NA,US,41.88,-74.04,460 +12412,STANDARD,0,Boiceville,,,NY,"Ulster County",America/New_York,845,NA,US,41.99,-74.26,540 +12413,STANDARD,0,Cairo,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-74,2530 +12414,STANDARD,0,Catskill,Cementon,,NY,"Greene County",America/New_York,518,NA,US,42.21,-73.86,8120 +12416,STANDARD,0,Chichester,,,NY,"Ulster County",America/New_York,845,NA,US,42.1,-74.28,180 +12417,"PO BOX",0,Connelly,,,NY,"Ulster County",America/New_York,845,NA,US,41.91,-73.99,516 +12418,STANDARD,0,Cornwallville,,,NY,"Greene County",America/New_York,518,NA,US,42.36,-74.17,450 +12419,STANDARD,0,Cottekill,,,NY,"Ulster County",America/New_York,845,NA,US,41.86,-74.1,610 +12420,"PO BOX",0,Cragsmoor,,,NY,"Ulster County",America/New_York,845,NA,US,41.67,-74.37,312 +12421,STANDARD,0,Denver,,,NY,"Delaware County",America/New_York,,NA,US,42.25,-74.55,270 +12422,STANDARD,0,Durham,,"West Durham",NY,"Greene County",America/New_York,518,NA,US,42.4,-74.19,240 +12423,STANDARD,0,"East Durham",,,NY,"Greene County",America/New_York,518,NA,US,42.38,-74.11,850 +12424,STANDARD,0,"East Jewett",Tannersville,,NY,"Greene County",America/New_York,518,NA,US,42.25,-74.12,170 +12427,STANDARD,0,"Elka Park",,,NY,"Greene County",America/New_York,518,NA,US,42.14,-74.1,430 +12428,STANDARD,0,Ellenville,,,NY,"Ulster County",America/New_York,845,NA,US,41.7,-74.36,5070 +12429,"PO BOX",0,Esopus,,,NY,"Ulster County",America/New_York,845,NA,US,41.83,-73.99,375 +12430,STANDARD,0,Fleischmanns,"Halcott Center, Halcott Ctr",,NY,"Delaware County",America/New_York,845,NA,US,42.2,-74.5,760 +12431,STANDARD,0,Freehold,,,NY,"Greene County",America/New_York,518,NA,US,42.38,-74.06,1300 +12432,"PO BOX",0,Glasco,,,NY,"Ulster County",America/New_York,845,NA,US,42.04,-73.95,682 +12433,STANDARD,0,Glenford,,,NY,"Ulster County",America/New_York,845,NA,US,42,-74.15,340 +12434,STANDARD,0,"Grand Gorge",,,NY,"Delaware County",America/New_York,"518,607",NA,US,42.35,-74.5,570 +12435,STANDARD,0,"Greenfield Park","Greenfld Park",,NY,"Ulster County",America/New_York,845,NA,US,41.72,-74.52,290 +12436,"PO BOX",0,"Haines Falls",,,NY,"Greene County",America/New_York,518,NA,US,42.2,-74.09,373 +12438,"PO BOX",0,Halcottsville,,,NY,"Delaware County",America/New_York,845,NA,US,42.2,-74.6,213 +12439,STANDARD,0,Hensonville,"East Windham",,NY,"Greene County",America/New_York,518,NA,US,42.28,-74.21,350 +12440,STANDARD,0,"High Falls",,,NY,"Ulster County",America/New_York,845,NA,US,41.8,-74.13,1590 +12441,"PO BOX",0,Highmount,,,NY,"Ulster County",America/New_York,845,NA,US,42.13,-74.51,117 +12442,STANDARD,0,Hunter,,,NY,"Greene County",America/New_York,518,NA,US,42.21,-74.21,730 +12443,STANDARD,0,Hurley,,,NY,"Ulster County",America/New_York,845,NA,US,41.91,-74.05,3640 +12444,STANDARD,0,Jewett,,,NY,"Greene County",America/New_York,518,NA,US,42.27,-74.28,240 +12446,STANDARD,0,Kerhonkson,,Cherrytown,NY,"Ulster County",America/New_York,845,NA,US,41.77,-74.29,4170 +12448,STANDARD,0,"Lake Hill",,,NY,"Ulster County",America/New_York,845,NA,US,42.07,-74.2,190 +12449,STANDARD,0,"Lake Katrine",,,NY,"Ulster County",America/New_York,845,NA,US,41.98,-73.99,2790 +12450,STANDARD,0,Lanesville,,,NY,"Greene County",America/New_York,518,NA,US,42.13,-74.24,179 +12451,STANDARD,0,Leeds,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-73.95,1440 +12452,"PO BOX",0,Lexington,,,NY,"Greene County",America/New_York,518,NA,US,42.25,-74.36,203 +12453,"PO BOX",0,"Malden On Hudson","Malden Hudson","Malden, Mldn On Hdsn",NY,"Ulster County",America/New_York,845,NA,US,42.09,-73.94,384 +12454,STANDARD,0,Maplecrest,,,NY,"Greene County",America/New_York,518,NA,US,42.29,-74.15,200 +12455,STANDARD,0,Margaretville,,,NY,"Delaware County",America/New_York,845,NA,US,42.14,-74.65,1280 +12456,STANDARD,0,"Mount Marion",,"Mount Merion Park",NY,"Ulster County",America/New_York,845,NA,US,42.03,-74,700 +12457,STANDARD,0,"Mount Tremper",,,NY,"Ulster County",America/New_York,845,NA,US,42.04,-74.23,510 +12458,STANDARD,0,Napanoch,,,NY,"Ulster County",America/New_York,845,NA,US,41.75,-74.37,1930 +12459,"PO BOX",0,"New Kingston",,,NY,"Delaware County",America/New_York,845,NA,US,42.21,-74.68,204 +12460,STANDARD,0,"Oak Hill",,,NY,"Greene County",America/New_York,518,NA,US,42.42,-74.15,240 +12461,STANDARD,0,Olivebridge,Krumville,"Olive, Samsonville",NY,"Ulster County",America/New_York,845,NA,US,41.89,-74.24,1370 +12463,STANDARD,0,Palenville,,,NY,"Greene County",America/New_York,518,NA,US,42.17,-74.01,1300 +12464,STANDARD,0,Phoenicia,,,NY,"Ulster County",America/New_York,845,NA,US,42.08,-74.31,690 +12465,STANDARD,0,"Pine Hill",,,NY,"Ulster County",America/New_York,845,NA,US,42.16,-74.46,190 +12466,STANDARD,0,"Port Ewen",,,NY,"Ulster County",America/New_York,845,NA,US,41.9,-73.98,2510 +12468,STANDARD,0,Prattsville,,"Red Falls",NY,"Greene County",America/New_York,518,NA,US,42.31,-74.43,880 +12469,STANDARD,0,"Preston Hollow","Preston Holw","Preston Hlow",NY,"Albany County",America/New_York,,NA,US,42.44,-74.2,580 +12470,STANDARD,0,Purling,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-74.1,430 +12471,"PO BOX",0,Rifton,,,NY,"Ulster County",America/New_York,845,NA,US,41.84,-74.04,354 +12472,STANDARD,0,Rosendale,,,NY,"Ulster County",America/New_York,845,NA,US,41.85,-74.08,1330 +12473,STANDARD,0,"Round Top",,,NY,"Greene County",America/New_York,518,NA,US,42.27,-74.06,810 +12474,STANDARD,0,Roxbury,,"Hubbell Cors",NY,"Delaware County",America/New_York,607,NA,US,42.28,-74.56,920 +12475,"PO BOX",0,Ruby,,,NY,"Ulster County",America/New_York,845,NA,US,42.02,-74.02,378 +12477,STANDARD,0,Saugerties,,"West Saugerties",NY,"Ulster County",America/New_York,845,NA,US,42.07,-73.94,15460 +12480,STANDARD,0,Shandaken,,,NY,"Ulster County",America/New_York,845,NA,US,42.12,-74.39,420 +12481,STANDARD,0,Shokan,,,NY,"Ulster County",America/New_York,845,NA,US,41.97,-74.2,1150 +12482,STANDARD,0,"South Cairo",,,NY,"Greene County",America/New_York,518,NA,US,42.27,-73.96,540 +12483,"PO BOX",0,"Spring Glen",,,NY,"Ulster County",America/New_York,845,NA,US,41.66,-74.42,405 +12484,STANDARD,0,"Stone Ridge",,"The Vly",NY,"Ulster County",America/New_York,845,NA,US,41.86,-74.17,2550 +12485,STANDARD,0,Tannersville,,,NY,"Greene County",America/New_York,518,NA,US,42.19,-74.13,880 +12486,STANDARD,0,Tillson,,,NY,"Ulster County",America/New_York,845,NA,US,41.83,-74.06,1330 +12487,STANDARD,0,"Ulster Park",,,NY,"Ulster County",America/New_York,845,NA,US,41.86,-73.99,2670 +12489,"PO BOX",0,Wawarsing,,,NY,"Ulster County",America/New_York,845,NA,US,41.75,-74.36,581 +12490,"PO BOX",0,"West Camp",,,NY,"Ulster County",America/New_York,845,NA,US,42.12,-73.93,279 +12491,STANDARD,0,"West Hurley",,"W Hurley",NY,"Ulster County",America/New_York,845,NA,US,41.97,-74.14,1690 +12492,STANDARD,0,"West Kill",,,NY,"Greene County",America/New_York,518,NA,US,42.18,-74.34,150 +12493,"PO BOX",0,"West Park",,,NY,"Ulster County",America/New_York,845,NA,US,41.78,-73.96,391 +12494,STANDARD,0,"West Shokan",,"W Shokan",NY,"Ulster County",America/New_York,845,NA,US,41.96,-74.28,530 +12495,STANDARD,0,Willow,,,NY,"Ulster County",America/New_York,845,NA,US,42.08,-74.24,230 +12496,STANDARD,0,Windham,,,NY,"Greene County",America/New_York,518,NA,US,42.3,-74.25,1210 +12498,STANDARD,0,Woodstock,,,NY,"Ulster County",America/New_York,845,NA,US,42.03,-74.11,3720 +12501,STANDARD,0,Amenia,,,NY,"Dutchess County",America/New_York,845,NA,US,41.84,-73.55,1680 +12502,STANDARD,0,Ancram,,,NY,"Columbia County",America/New_York,518,NA,US,42.05,-73.63,840 +12503,STANDARD,0,Ancramdale,,,NY,"Columbia County",America/New_York,518,NA,US,42.03,-73.57,510 +12504,"PO BOX",0,"Annandale On Hudson","Annandale, Red Hook",,NY,"Dutchess County",America/New_York,,NA,US,42.03,-73.91,150 +12506,"PO BOX",0,Bangall,,,NY,"Dutchess County",America/New_York,,NA,US,41.87,-73.69,91 +12507,STANDARD,0,Barrytown,"Red Hook",,NY,"Dutchess County",America/New_York,845,NA,US,42.01,-73.92,160 +12508,STANDARD,0,Beacon,,,NY,"Dutchess County",America/New_York,845,NA,US,41.5,-73.96,15140 +12510,"PO BOX",0,Billings,,,NY,"Dutchess County",America/New_York,845,NA,US,41.67,-73.8,104 +12511,"PO BOX",0,"Castle Point",,,NY,"Dutchess County",America/New_York,845,NA,US,41.53,-73.89,150 +12512,"PO BOX",0,Chelsea,,,NY,"Dutchess County",America/New_York,845,NA,US,41.55,-73.97,206 +12513,STANDARD,0,Claverack,,,NY,"Columbia County",America/New_York,518,NA,US,42.22,-73.72,940 +12514,STANDARD,0,"Clinton Corners","Clinton Cors","Clinton Crn",NY,"Dutchess County",America/New_York,845,NA,US,41.87,-73.76,2490 +12515,STANDARD,0,Clintondale,,,NY,"Ulster County",America/New_York,845,NA,US,41.68,-74.06,1460 +12516,STANDARD,0,Copake,,,NY,"Columbia County",America/New_York,518,NA,US,42.1,-73.55,1310 +12517,STANDARD,0,"Copake Falls",,,NY,"Columbia County",America/New_York,518,NA,US,42.14,-73.5,340 +12518,STANDARD,0,Cornwall,,,NY,"Orange County",America/New_York,845,NA,US,41.41,-74.04,5650 +12520,STANDARD,0,"Cornwall On Hudson","Cornwall Hdsn","Cornwall Hud, Cornwall Hudson, Cornwall On The Hudson",NY,"Orange County",America/New_York,845,NA,US,41.43,-74.01,3190 +12521,STANDARD,0,Craryville,Taghkanic,,NY,"Columbia County",America/New_York,518,NA,US,42.16,-73.65,1280 +12522,STANDARD,0,"Dover Plains",,,NY,"Dutchess County",America/New_York,845,NA,US,41.74,-73.58,4040 +12523,STANDARD,0,Elizaville,Taghkanic,,NY,"Columbia County",America/New_York,845,NA,US,42.09,-73.76,1600 +12524,STANDARD,0,Fishkill,,,NY,"Dutchess County",America/New_York,845,NA,US,41.53,-73.89,14130 +12525,STANDARD,0,Gardiner,,,NY,"Ulster County",America/New_York,845,NA,US,41.68,-74.18,3080 +12526,STANDARD,0,Germantown,,"Cheviot, Clermont, Linlithgo",NY,"Columbia County",America/New_York,518,NA,US,42.11,-73.85,3170 +12527,"PO BOX",0,Glenham,,,NY,"Dutchess County",America/New_York,845,NA,US,41.52,-73.94,744 +12528,STANDARD,0,Highland,,,NY,"Ulster County",America/New_York,845,NA,US,41.71,-73.96,12460 +12529,STANDARD,0,Hillsdale,,,NY,"Columbia County",America/New_York,518,NA,US,42.2,-73.54,2020 +12530,"PO BOX",0,Hollowville,,,NY,"Columbia County",America/New_York,518,NA,US,42.21,-73.69,144 +12531,STANDARD,0,Holmes,,"Homes, Whaley Lake",NY,"Dutchess County",America/New_York,845,NA,US,41.53,-73.66,3040 +12533,STANDARD,0,"Hopewell Junction","East Fishkill, Hopewell, Hopewell Jct, Wiccopee",,NY,"Dutchess County",America/New_York,845,NA,US,41.58,-73.8,25590 +12534,STANDARD,0,Hudson,,,NY,"Columbia County",America/New_York,518,NA,US,42.25,-73.78,12950 +12537,"PO BOX",0,Hughsonville,,,NY,"Dutchess County",America/New_York,845,NA,US,41.59,-73.89,304 +12538,STANDARD,0,"Hyde Park",,,NY,"Dutchess County",America/New_York,845,NA,US,41.78,-73.93,11770 +12540,STANDARD,0,Lagrangeville,,"La Grange",NY,"Dutchess County",America/New_York,845,NA,US,41.67,-73.73,7340 +12541,"PO BOX",0,Livingston,,,NY,"Columbia County",America/New_York,518,NA,US,42.13,-73.76,267 +12542,STANDARD,0,Marlboro,,Marlborough,NY,"Ulster County",America/New_York,845,NA,US,41.6,-73.97,5490 +12543,STANDARD,0,Maybrook,,,NY,"Orange County",America/New_York,845,NA,US,41.48,-74.21,2950 +12544,"PO BOX",0,Mellenville,,,NY,"Columbia County",America/New_York,518,NA,US,42.26,-73.68,163 +12545,STANDARD,0,Millbrook,,,NY,"Dutchess County",America/New_York,845,NA,US,41.78,-73.69,3770 +12546,STANDARD,0,Millerton,,,NY,"Dutchess County",America/New_York,518,NA,US,41.95,-73.51,2370 +12547,STANDARD,0,Milton,,,NY,"Ulster County",America/New_York,845,NA,US,41.65,-73.96,2690 +12548,STANDARD,0,Modena,,,NY,"Ulster County",America/New_York,845,NA,US,41.66,-74.1,1410 +12549,STANDARD,0,Montgomery,,,NY,"Orange County",America/New_York,845,NA,US,41.52,-74.23,9920 +12550,STANDARD,0,Newburgh,,"Balmville, Town Branch",NY,"Orange County",America/New_York,"845,914",NA,US,41.5,-74.02,48130 +12551,"PO BOX",0,Newburgh,,,NY,"Orange County",America/New_York,845,NA,US,41.5,-74.02,1048 +12552,"PO BOX",0,Newburgh,,,NY,"Orange County",America/New_York,845,NA,US,41.5,-74.02,188 +12553,STANDARD,0,"New Windsor",Newburgh,,NY,"Orange County",America/New_York,"914,845",NA,US,41.47,-74.02,24340 +12555,"PO BOX",0,Newburgh,"Mid Hudson",,NY,"Orange County",America/New_York,845,NA,US,41.53,-74.04,0 +12561,STANDARD,0,"New Paltz",,,NY,"Ulster County",America/New_York,845,NA,US,41.74,-74.08,12350 +12563,STANDARD,0,Patterson,,,NY,"Putnam County",America/New_York,845,NA,US,41.5,-73.58,6680 +12564,STANDARD,0,Pawling,,,NY,"Dutchess County",America/New_York,845,NA,US,41.56,-73.59,6570 +12565,STANDARD,0,Philmont,,,NY,"Columbia County",America/New_York,518,NA,US,42.24,-73.64,1340 +12566,STANDARD,0,"Pine Bush",,,NY,"Ulster County",America/New_York,845,NA,US,41.6,-74.29,9780 +12567,STANDARD,0,"Pine Plains",,"Gallatin, Mount Ross, Shekomeko",NY,"Dutchess County",America/New_York,518,NA,US,41.97,-73.65,2210 +12568,"PO BOX",0,Plattekill,,,NY,"Ulster County",America/New_York,845,NA,US,41.62,-74.08,1176 +12569,STANDARD,0,"Pleasant Valley","Pleasant Vly",,NY,"Dutchess County",America/New_York,845,NA,US,41.74,-73.82,9260 +12570,STANDARD,0,Poughquag,,,NY,"Dutchess County",America/New_York,845,NA,US,41.63,-73.66,6820 +12571,STANDARD,0,"Red Hook",Milan,,NY,"Dutchess County",America/New_York,845,NA,US,41.99,-73.87,8530 +12572,STANDARD,0,Rhinebeck,,,NY,"Dutchess County",America/New_York,845,NA,US,41.92,-73.9,7760 +12574,"PO BOX",0,Rhinecliff,,,NY,"Dutchess County",America/New_York,,NA,US,41.92,-73.95,313 +12575,STANDARD,0,"Rock Tavern",,,NY,"Orange County",America/New_York,845,NA,US,41.47,-74.16,2350 +12577,STANDARD,0,"Salisbury Mills","Salisbury Mls",,NY,"Orange County",America/New_York,845,NA,US,41.44,-74.12,2100 +12578,STANDARD,0,"Salt Point",,,NY,"Dutchess County",America/New_York,845,NA,US,41.8,-73.8,2070 +12580,STANDARD,0,Staatsburg,,Staatsburgh,NY,"Dutchess County",America/New_York,845,NA,US,41.84,-73.92,3360 +12581,STANDARD,0,Stanfordville,,,NY,"Dutchess County",America/New_York,845,NA,US,41.86,-73.71,1820 +12582,STANDARD,0,Stormville,,,NY,"Dutchess County",America/New_York,,NA,US,41.54,-73.73,4430 +12583,STANDARD,0,Tivoli,,Nevis,NY,"Dutchess County",America/New_York,845,NA,US,42.05,-73.91,1870 +12584,"PO BOX",0,"Vails Gate",,,NY,"Orange County",America/New_York,845,NA,US,41.45,-74.05,554 +12585,STANDARD,0,Verbank,,,NY,"Dutchess County",America/New_York,845,NA,US,41.73,-73.69,810 +12586,STANDARD,0,Walden,,,NY,"Orange County",America/New_York,845,NA,US,41.55,-74.18,11880 +12588,"PO BOX",0,"Walker Valley",,,NY,"Ulster County",America/New_York,845,NA,US,41.62,-74.37,506 +12589,STANDARD,0,Wallkill,,,NY,"Ulster County",America/New_York,845,NA,US,41.6,-74.16,12770 +12590,STANDARD,0,"Wappingers Falls","New Hamburg, Wappingers Fl, West Fishkill",Wappinger,NY,"Dutchess County",America/New_York,845,NA,US,41.59,-73.91,34020 +12592,STANDARD,0,Wassaic,,,NY,"Dutchess County",America/New_York,845,NA,US,41.78,-73.54,950 +12593,STANDARD,1,"West Copake",Copake,,NY,"Columbia County",America/New_York,518,NA,US,42.09,-73.58,0 +12594,STANDARD,0,Wingdale,,,NY,"Dutchess County",America/New_York,845,NA,US,41.64,-73.56,3740 +12601,STANDARD,0,Poughkeepsie,,,NY,"Dutchess County",America/New_York,"845,914",NA,US,41.69,-73.92,32450 +12602,"PO BOX",0,Poughkeepsie,,,NY,"Dutchess County",America/New_York,845,NA,US,41.69,-73.92,1018 +12603,STANDARD,0,Poughkeepsie,Arlington,,NY,"Dutchess County",America/New_York,"914,845",NA,US,41.68,-73.86,39280 +12604,UNIQUE,0,Poughkeepsie,,"Vassar College",NY,"Dutchess County",America/New_York,845,NA,US,41.69,-73.89,265 +12701,STANDARD,0,Monticello,,,NY,"Sullivan County",America/New_York,"845,914",NA,US,41.65,-74.68,8970 +12719,STANDARD,0,Barryville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.5,-74.9,770 +12720,STANDARD,0,Bethel,,,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.87,180 +12721,STANDARD,0,Bloomingburg,,,NY,"Sullivan County",America/New_York,845,NA,US,41.55,-74.44,6310 +12722,"PO BOX",0,Burlingham,,,NY,"Sullivan County",America/New_York,845,NA,US,41.59,-74.38,408 +12723,STANDARD,0,Callicoon,,,NY,"Sullivan County",America/New_York,845,NA,US,41.76,-75.05,1230 +12724,"PO BOX",0,"Callicoon Center","Callicoon Ctr",,NY,"Sullivan County",America/New_York,845,NA,US,41.84,-74.96,305 +12725,STANDARD,0,Claryville,,,NY,"Ulster County",America/New_York,,NA,US,41.98,-74.57,230 +12726,STANDARD,0,Cochecton,,,NY,"Sullivan County",America/New_York,,NA,US,41.7,-75.06,840 +12727,STANDARD,0,Cochecton,,,NY,"Sullivan County",America/New_York,845,NA,US,41.65,-74.98,89 +12729,STANDARD,0,Cuddebackville,"Cuddebackvlle, Godeffroy",,NY,"Orange County",America/New_York,845,NA,US,41.47,-74.63,1430 +12732,STANDARD,0,Eldred,,,NY,"Sullivan County",America/New_York,,NA,US,41.52,-74.88,650 +12733,STANDARD,0,Fallsburg,,,NY,"Sullivan County",America/New_York,845,NA,US,41.73,-74.6,1110 +12734,STANDARD,0,Ferndale,,,NY,"Sullivan County",America/New_York,,NA,US,41.77,-74.73,970 +12736,STANDARD,0,"Fremont Center","Fremont Ctr",Fremont,NY,"Sullivan County",America/New_York,607,NA,US,41.84,-75.04,98 +12737,STANDARD,0,"Glen Spey",,,NY,"Sullivan County",America/New_York,,NA,US,41.47,-74.81,1560 +12738,STANDARD,0,"Glen Wild",,,NY,"Sullivan County",America/New_York,845,NA,US,41.65,-74.58,190 +12740,STANDARD,0,Grahamsville,Sundown,,NY,"Sullivan County",America/New_York,845,NA,US,41.84,-74.54,1670 +12741,STANDARD,0,Hankins,,,NY,"Sullivan County",America/New_York,607,NA,US,41.84,-75.08,220 +12742,STANDARD,0,Harris,,,NY,"Sullivan County",America/New_York,845,NA,US,41.72,-74.72,250 +12743,STANDARD,0,"Highland Lake",,,NY,"Sullivan County",America/New_York,,NA,US,41.52,-74.85,260 +12745,STANDARD,0,Hortonville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.78,-75.02,180 +12746,STANDARD,0,Huguenot,,,NY,"Orange County",America/New_York,845,NA,US,41.41,-74.63,1000 +12747,STANDARD,0,Hurleyville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.73,-74.67,1330 +12748,STANDARD,0,Jeffersonville,Jeffersonvlle,,NY,"Sullivan County",America/New_York,845,NA,US,41.78,-74.93,1590 +12749,"PO BOX",0,"Kauneonga Lake","Kauneonga Lk",,NY,"Sullivan County",America/New_York,845,NA,US,41.7,-74.84,359 +12750,STANDARD,0,"Kenoza Lake",,,NY,"Sullivan County",America/New_York,845,NA,US,41.73,-74.95,214 +12751,STANDARD,0,"Kiamesha Lake",,,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.66,1240 +12752,STANDARD,0,"Lake Huntington","Lk Huntington",,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.99,240 +12754,STANDARD,0,Liberty,,,NY,"Sullivan County",America/New_York,845,NA,US,41.8,-74.74,5530 +12758,STANDARD,0,"Livingston Manor","Lew Beach, Livingstn Mnr",,NY,"Sullivan County",America/New_York,"607,845",NA,US,41.89,-74.82,3120 +12759,STANDARD,0,"Loch Sheldrake","Loch Sheldrke",,NY,"Sullivan County",America/New_York,845,NA,US,41.77,-74.65,1320 +12760,STANDARD,0,"Long Eddy",,,NY,"Delaware County",America/New_York,,NA,US,41.85,-75.13,370 +12762,STANDARD,0,"Mongaup Valley","Mongaup Vly",,NY,"Sullivan County",America/New_York,,NA,US,41.66,-74.79,430 +12763,STANDARD,0,"Mountain Dale",,Mountaindale,NY,"Sullivan County",America/New_York,845,NA,US,41.68,-74.53,710 +12764,STANDARD,0,Narrowsburg,,,NY,"Sullivan County",America/New_York,845,NA,US,41.6,-75.06,1330 +12765,STANDARD,0,Neversink,,,NY,"Sullivan County",America/New_York,845,NA,US,41.84,-74.61,830 +12766,STANDARD,0,"North Branch",,,NY,"Sullivan County",America/New_York,,NA,US,41.8,-74.99,280 +12767,"PO BOX",0,Obernburg,,,NY,"Sullivan County",America/New_York,607,NA,US,41.84,-75,107 +12768,STANDARD,0,Parksville,,,NY,"Sullivan County",America/New_York,,NA,US,41.85,-74.76,760 +12769,"PO BOX",0,Phillipsport,,,NY,"Sullivan County",America/New_York,845,NA,US,41.66,-74.47,214 +12770,STANDARD,0,"Pond Eddy",,,NY,"Sullivan County",America/New_York,,NA,US,41.44,-74.82,190 +12771,STANDARD,0,"Port Jervis",,"Pt Jervis",NY,"Orange County",America/New_York,845,NA,US,41.37,-74.69,11750 +12775,STANDARD,0,"Rock Hill",,,NY,"Sullivan County",America/New_York,845,NA,US,41.62,-74.59,2350 +12776,STANDARD,0,Roscoe,,,NY,"Sullivan County",America/New_York,607,NA,US,41.93,-74.91,1440 +12777,STANDARD,0,Forestburgh,Monticello,Forestburg,NY,"Sullivan County",America/New_York,"845,914",NA,US,41.54,-74.69,620 +12778,"PO BOX",0,Smallwood,,,NY,"Sullivan County",America/New_York,845,NA,US,41.66,-74.81,632 +12779,STANDARD,0,"South Fallsburg","S Fallsburg",,NY,"Sullivan County",America/New_York,845,NA,US,41.71,-74.63,2090 +12780,STANDARD,0,"Sparrow Bush",Sparrowbush,,NY,"Orange County",America/New_York,845,NA,US,41.44,-74.72,2150 +12781,"PO BOX",0,Summitville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.62,-74.47,280 +12783,STANDARD,0,"Swan Lake",,,NY,"Sullivan County",America/New_York,,NA,US,41.75,-74.77,1050 +12784,"PO BOX",0,Thompsonville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.67,-74.64,163 +12785,"PO BOX",0,Westbrookville,"Port Jervis, Westbrookvlle",,NY,"Sullivan County",America/New_York,845,NA,US,41.5,-74.55,1054 +12786,STANDARD,0,"White Lake",,,NY,"Sullivan County",America/New_York,845,NA,US,41.64,-74.86,480 +12787,STANDARD,0,"White Sulphur Springs","Wht Sphr Spgs",,NY,"Sullivan County",America/New_York,,NA,US,41.79,-74.82,380 +12788,STANDARD,0,Woodbourne,,,NY,"Sullivan County",America/New_York,845,NA,US,41.75,-74.59,1720 +12789,STANDARD,0,Woodridge,,,NY,"Sullivan County",America/New_York,,NA,US,41.71,-74.57,1550 +12790,STANDARD,0,Wurtsboro,,,NY,"Sullivan County",America/New_York,845,NA,US,41.57,-74.48,3900 +12791,STANDARD,0,Youngsville,,,NY,"Sullivan County",America/New_York,845,NA,US,41.82,-74.89,550 +12792,STANDARD,0,Yulan,,,NY,"Sullivan County",America/New_York,,NA,US,41.51,-74.96,310 +12801,STANDARD,0,"Glens Falls",Queensbury,"West Glens Falls",NY,"Warren County",America/New_York,518,NA,US,43.31,-73.64,12510 +12803,STANDARD,0,"South Glens Falls","Glens Falls, S Glens Falls",,NY,"Saratoga County",America/New_York,518,NA,US,43.29,-73.63,7850 +12804,STANDARD,0,Queensbury,"Glens Falls",,NY,"Warren County",America/New_York,518,NA,US,43.34,-73.67,24470 +12808,STANDARD,0,Adirondack,,,NY,"Warren County",America/New_York,518,NA,US,43.72,-73.77,280 +12809,STANDARD,0,Argyle,,"North Argyle, South Argyle",NY,"Washington County",America/New_York,518,NA,US,43.23,-73.49,2950 +12810,STANDARD,0,Athol,,,NY,"Warren County",America/New_York,518,NA,US,43.48,-73.89,540 +12811,"PO BOX",0,"Bakers Mills",,,NY,"Warren County",America/New_York,518,NA,US,43.61,-74.03,215 +12812,STANDARD,0,"Blue Mountain Lake","Blue Mtn Lake",,NY,"Hamilton County",America/New_York,518,NA,US,43.87,-74.44,170 +12814,STANDARD,0,"Bolton Landing","Bolton Lndg",,NY,"Warren County",America/New_York,518,NA,US,43.62,-73.64,1350 +12815,STANDARD,0,"Brant Lake",,Horicon,NY,"Warren County",America/New_York,518,NA,US,43.71,-73.69,860 +12816,STANDARD,0,Cambridge,,"Center Cambridge, Coila",NY,"Washington County",America/New_York,518,NA,US,43.02,-73.38,3800 +12817,STANDARD,0,Chestertown,,,NY,"Warren County",America/New_York,518,NA,US,43.63,-73.8,2020 +12819,STANDARD,0,Clemons,,,NY,"Washington County",America/New_York,518,NA,US,43.59,-73.47,290 +12820,"PO BOX",0,Cleverdale,,Rockhurst,NY,"Warren County",America/New_York,518,NA,US,43.31,-73.64,223 +12821,STANDARD,0,Comstock,,,NY,"Washington County",America/New_York,518,NA,US,43.45,-73.37,250 +12822,STANDARD,0,Corinth,,Palmer,NY,"Saratoga County",America/New_York,518,NA,US,43.24,-73.83,5350 +12823,STANDARD,0,Cossayuna,,"Cossayuna Lake",NY,"Washington County",America/New_York,518,NA,US,43.17,-73.4,290 +12824,STANDARD,0,"Diamond Point",,"Trout Lake",NY,"Warren County",America/New_York,518,NA,US,43.51,-73.69,690 +12827,STANDARD,0,"Fort Ann",,"South Bay Village, West Fort Ann",NY,"Washington County",America/New_York,518,NA,US,43.41,-73.49,3460 +12828,STANDARD,0,"Fort Edward",,"Fort Miller, Moreau",NY,"Washington County",America/New_York,,NA,US,43.26,-73.58,8290 +12831,STANDARD,0,Gansevoort,Wilton,"Fortsville, Gurn Spring, Kings Station",NY,"Saratoga County",America/New_York,518,NA,US,43.19,-73.64,16520 +12832,STANDARD,0,Granville,,"Hebron, North Hebron, Slateville, South Granville, Truthville",NY,"Washington County",America/New_York,518,NA,US,43.4,-73.26,5210 +12833,STANDARD,0,"Greenfield Center","Greenfld Ctr",Greenfield,NY,"Saratoga County",America/New_York,518,NA,US,43.13,-73.85,4270 +12834,STANDARD,0,Greenwich,Thomson,"Bald Mountain, Battenville, Clarks Mills",NY,"Washington County",America/New_York,518,NA,US,43.08,-73.49,5770 +12835,STANDARD,0,Hadley,,"Conklingville, Day",NY,"Saratoga County",America/New_York,518,NA,US,43.33,-74.01,2230 +12836,STANDARD,0,Hague,,Graphite,NY,"Warren County",America/New_York,518,NA,US,43.71,-73.61,480 +12837,STANDARD,0,Hampton,,,NY,"Washington County",America/New_York,518,NA,US,43.46,-73.27,610 +12838,STANDARD,0,Hartford,,,NY,"Washington County",America/New_York,518,NA,US,43.33,-73.4,560 +12839,STANDARD,0,"Hudson Falls",,"Kingsbury, Sandy Hill",NY,"Washington County",America/New_York,518,NA,US,43.3,-73.58,11230 +12841,"PO BOX",0,"Huletts Landing","Huletts Lndg",,NY,"Washington County",America/New_York,518,NA,US,43.61,-73.53,77 +12842,STANDARD,0,"Indian Lake",,,NY,"Hamilton County",America/New_York,518,NA,US,43.78,-74.26,930 +12843,STANDARD,0,Johnsburg,,"Garnet Lake",NY,"Warren County",America/New_York,518,NA,US,43.57,-73.97,490 +12844,STANDARD,0,"Kattskill Bay","Pilot Knob",,NY,"Washington County",America/New_York,518,NA,US,43.49,-73.62,230 +12845,STANDARD,0,"Lake George",,"Assembly Point",NY,"Warren County",America/New_York,518,NA,US,43.42,-73.71,4340 +12846,STANDARD,0,"Lake Luzerne",,Luzerne,NY,"Warren County",America/New_York,518,NA,US,43.32,-73.8,2740 +12847,STANDARD,0,"Long Lake",,"Brandreth, Sabattis",NY,"Hamilton County",America/New_York,518,NA,US,43.97,-74.42,580 +12848,"PO BOX",0,"Middle Falls",,,NY,"Washington County",America/New_York,518,NA,US,43.1,-73.52,91 +12849,STANDARD,0,"Middle Granville","Mdl Granville",,NY,"Washington County",America/New_York,518,NA,US,43.45,-73.3,500 +12850,STANDARD,0,"Middle Grove",,"Barkersville, Lake Desolation, Providence",NY,"Saratoga County",America/New_York,518,NA,US,43.11,-74.02,2600 +12851,STANDARD,0,Minerva,,,NY,"Essex County",America/New_York,518,NA,US,43.78,-73.97,230 +12852,STANDARD,0,Newcomb,,,NY,"Essex County",America/New_York,518,NA,US,43.94,-74.16,370 +12853,STANDARD,0,"North Creek",,"Holcombville, Igerna",NY,"Warren County",America/New_York,518,NA,US,43.69,-73.98,1140 +12854,STANDARD,0,"North Granville","N Granville",,NY,"Washington County",America/New_York,518,NA,US,43.5,-73.33,350 +12855,STANDARD,0,"North Hudson",,,NY,"Essex County",America/New_York,518,NA,US,43.98,-73.7,210 +12856,"PO BOX",0,"North River",,,NY,"Warren County",America/New_York,518,NA,US,43.67,-74.14,242 +12857,STANDARD,0,Olmstedville,,,NY,"Essex County",America/New_York,518,NA,US,43.82,-73.89,470 +12858,STANDARD,0,Paradox,Ticonderoga,"Paradox Lake",NY,"Essex County",America/New_York,518,NA,US,43.91,-73.68,51 +12859,STANDARD,0,"Porter Corners","Porter Cors",,NY,"Saratoga County",America/New_York,518,NA,US,43.14,-73.88,1890 +12860,STANDARD,0,Pottersville,,,NY,"Warren County",America/New_York,518,NA,US,43.76,-73.84,630 +12861,STANDARD,0,"Putnam Station","Putnam Sta",,NY,"Washington County",America/New_York,518,NA,US,43.75,-73.41,510 +12862,"PO BOX",0,Riparius,,,NY,"Warren County",America/New_York,518,NA,US,43.69,-73.91,66 +12863,STANDARD,0,"Rock City Falls","Rock City Fls",,NY,"Saratoga County",America/New_York,518,NA,US,43.06,-73.92,720 +12864,STANDARD,0,Sabael,,,NY,"Hamilton County",America/New_York,518,NA,US,43.73,-74.31,63 +12865,STANDARD,0,Salem,"E Greenwich, East Greenwich","Belcher, East Hebron, West Hebron",NY,"Washington County",America/New_York,518,NA,US,43.17,-73.32,3010 +12866,STANDARD,0,"Saratoga Springs","Saratoga Spgs",,NY,"Saratoga County",America/New_York,518,NA,US,43.06,-73.77,33740 +12870,STANDARD,0,"Schroon Lake",,"Blue Ridge",NY,"Essex County",America/New_York,518,NA,US,43.83,-73.73,1530 +12871,STANDARD,0,Schuylerville,,"Bacon Hill, Grangerville, Quaker Springs",NY,"Saratoga County",America/New_York,518,NA,US,43.1,-73.58,3590 +12872,"PO BOX",0,Severance,,,NY,"Essex County",America/New_York,518,NA,US,43.87,-73.73,70 +12873,STANDARD,0,Shushan,,Eagleville,NY,"Washington County",America/New_York,518,NA,US,43.12,-73.3,640 +12874,STANDARD,0,"Silver Bay",,"Sabbath Day Point",NY,"Warren County",America/New_York,518,NA,US,43.7,-73.51,116 +12878,STANDARD,0,"Stony Creek",,,NY,"Warren County",America/New_York,518,NA,US,43.42,-74.03,530 +12879,STANDARD,0,Newcomb,Tahawus,,NY,"Essex County",America/New_York,518,NA,US,43.97,-74.17,0 +12883,STANDARD,0,Ticonderoga,,"Chilson, Eagle Lake, Streetroad",NY,"Essex County",America/New_York,518,NA,US,43.84,-73.42,3990 +12884,"PO BOX",0,"Victory Mills",,,NY,"Saratoga County",America/New_York,518,NA,US,43.09,-73.59,506 +12885,STANDARD,0,Warrensburg,Thurman,"Riverbank, The Glen",NY,"Warren County",America/New_York,518,NA,US,43.5,-73.77,3760 +12886,STANDARD,0,Wevertown,,,NY,"Warren County",America/New_York,518,NA,US,43.64,-73.92,190 +12887,STANDARD,0,Whitehall,,"Dresden Station, Low Hampton",NY,"Washington County",America/New_York,518,NA,US,43.56,-73.41,4080 +12901,STANDARD,0,Plattsburgh,,"Beekmantown, South Plattsburgh",NY,"Clinton County",America/New_York,518,NA,US,44.7,-73.47,24230 +12903,STANDARD,0,Plattsburgh,,,NY,"Clinton County",America/New_York,518,NA,US,44.69,-73.45,1420 +12910,STANDARD,0,Altona,,"Alder Bend, Irona, Purdys Mills",NY,"Clinton County",America/New_York,518,NA,US,44.89,-73.65,1420 +12911,STANDARD,0,Keeseville,"Au Sable Chasm, Ausable Chasm",,NY,"Clinton County",America/New_York,518,NA,US,44.52,-73.46,28 +12912,STANDARD,0,"Au Sable Forks","Au Sable Frks",Hawkeye,NY,"Clinton County",America/New_York,518,NA,US,44.47,-73.78,1790 +12913,STANDARD,0,Bloomingdale,,,NY,"Essex County",America/New_York,518,NA,US,44.43,-74,940 +12914,STANDARD,0,Bombay,,,NY,"Franklin County",America/New_York,518,NA,US,44.93,-74.59,690 +12915,"PO BOX",0,Brainardsville,Brainardsvle,,NY,"Franklin County",America/New_York,518,NA,US,44.86,-74.02,133 +12916,STANDARD,0,Brushton,,"Alburgh, Cooks Corners, Irish Corners",NY,"Franklin County",America/New_York,518,NA,US,44.83,-74.51,1850 +12917,STANDARD,0,Burke,,,NY,"Franklin County",America/New_York,518,NA,US,44.9,-74.17,1310 +12918,STANDARD,0,Cadyville,,,NY,"Clinton County",America/New_York,518,NA,US,44.66,-73.68,2160 +12919,STANDARD,0,Champlain,,"Coopersville, Perrys Mills",NY,"Clinton County",America/New_York,518,NA,US,44.98,-73.44,2970 +12920,STANDARD,0,Chateaugay,,,NY,"Franklin County",America/New_York,518,NA,US,44.92,-74.08,1990 +12921,STANDARD,0,Chazy,,"Chazy Landing",NY,"Clinton County",America/New_York,518,NA,US,44.88,-73.43,2260 +12922,STANDARD,0,Childwold,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.28,-74.67,62 +12923,STANDARD,0,Churubusco,,,NY,"Clinton County",America/New_York,518,NA,US,44.95,-73.92,430 +12924,STANDARD,0,Keeseville,Clintonville,,NY,"Clinton County",America/New_York,518,NA,US,44.48,-73.58,123 +12926,STANDARD,0,Constable,,"Trout River, Westville Center",NY,"Franklin County",America/New_York,518,NA,US,44.93,-74.28,1740 +12927,"PO BOX",0,"Cranberry Lake","Cranberry Lk",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.22,-74.83,199 +12928,STANDARD,0,"Crown Point",,"Factoryville, Ironville",NY,"Essex County",America/New_York,518,NA,US,43.95,-73.53,1740 +12929,"PO BOX",0,Dannemora,,,NY,"Clinton County",America/New_York,518,NA,US,44.72,-73.71,1340 +12930,STANDARD,0,"Dickinson Center","Dickinson Ctr","East Dickinson",NY,"Franklin County",America/New_York,518,NA,US,44.71,-74.53,560 +12932,STANDARD,0,Elizabethtown,,,NY,"Essex County",America/New_York,518,NA,US,44.22,-73.6,1070 +12933,"PO BOX",0,Ellenburg,,,NY,"Clinton County",America/New_York,518,NA,US,44.89,-73.85,93 +12934,STANDARD,0,"Ellenburg Center","Ellenburg Ctr",,NY,"Clinton County",America/New_York,518,NA,US,44.82,-73.85,840 +12935,STANDARD,0,"Ellenburg Depot","Ellenburg Dep",,NY,"Clinton County",America/New_York,518,NA,US,44.9,-73.8,1300 +12936,STANDARD,0,Essex,Whallonsburg,,NY,"Essex County",America/New_York,518,NA,US,44.27,-73.39,540 +12937,STANDARD,0,"Fort Covington","Ft Covington",,NY,"Franklin County",America/New_York,518,NA,US,44.98,-74.47,1180 +12939,"PO BOX",0,Gabriels,,,NY,"Franklin County",America/New_York,518,NA,US,44.43,-74.16,236 +12941,STANDARD,0,Jay,,,NY,"Essex County",America/New_York,518,NA,US,44.35,-73.71,1150 +12942,STANDARD,0,Keene,,,NY,"Essex County",America/New_York,518,NA,US,44.25,-73.78,530 +12943,STANDARD,0,"Keene Valley","Saint Huberts",,NY,"Essex County",America/New_York,518,NA,US,44.2,-73.78,350 +12944,STANDARD,0,Keeseville,,,NY,"Essex County",America/New_York,518,NA,US,44.5,-73.48,3340 +12945,STANDARD,0,"Lake Clear","Upper Saint Regis, Upper St Reg",,NY,"Franklin County",America/New_York,518,NA,US,44.36,-74.25,560 +12946,STANDARD,0,"Lake Placid",,,NY,"Essex County",America/New_York,518,NA,US,44.28,-73.98,4420 +12949,STANDARD,0,Lawrenceville,,,NY,"St Lawrence County",America/New_York,315,NA,US,44.77,-74.65,28 +12950,STANDARD,0,Lewis,,,NY,"Essex County",America/New_York,518,NA,US,44.27,-73.57,700 +12952,STANDARD,0,"Lyon Mountain",,Standish,NY,"Clinton County",America/New_York,518,NA,US,44.72,-73.92,430 +12953,STANDARD,0,Malone,,Duane,NY,"Franklin County",America/New_York,518,NA,US,44.84,-74.29,8810 +12955,STANDARD,0,"Lyon Mountain",Merrill,,NY,"Clinton County",America/New_York,518,NA,US,44.81,-73.97,270 +12956,STANDARD,0,Mineville,,"Grover Hills",NY,"Essex County",America/New_York,518,NA,US,44.08,-73.52,940 +12957,STANDARD,0,Moira,,"South Bombay",NY,"Franklin County",America/New_York,518,NA,US,44.86,-74.57,1320 +12958,STANDARD,0,Mooers,,,NY,"Clinton County",America/New_York,518,NA,US,44.96,-73.58,1630 +12959,STANDARD,0,"Mooers Forks",,,NY,"Clinton County",America/New_York,518,NA,US,44.96,-73.69,1150 +12960,STANDARD,0,Moriah,,"Moriah Corners",NY,"Essex County",America/New_York,518,NA,US,44.05,-73.5,950 +12961,STANDARD,0,"Moriah Center",,,NY,"Essex County",America/New_York,518,NA,US,44.06,-73.52,170 +12962,STANDARD,0,Morrisonville,,"West Plattsburgh",NY,"Clinton County",America/New_York,518,NA,US,44.69,-73.55,5070 +12964,STANDARD,0,"New Russia",,,NY,"Essex County",America/New_York,518,NA,US,44.14,-73.6,120 +12965,STANDARD,0,Nicholville,"Fort Jackson, Hopkinton",,NY,"St. Lawrence County",America/New_York,"518,315",NA,US,44.71,-74.65,490 +12966,STANDARD,0,"North Bangor","Bangor, West Bangor",,NY,"Franklin County",America/New_York,518,NA,US,44.79,-74.41,2460 +12967,STANDARD,0,"North Lawrence","N Lawrence",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.76,-74.65,980 +12969,STANDARD,0,"Owls Head",,"Mountain View",NY,"Franklin County",America/New_York,518,NA,US,44.71,-74.08,310 +12970,STANDARD,0,"Paul Smiths",,,NY,"Franklin County",America/New_York,518,NA,US,44.43,-74.25,250 +12972,STANDARD,0,Peru,,Harkness,NY,"Clinton County",America/New_York,518,NA,US,44.58,-73.53,5810 +12973,"PO BOX",0,Piercefield,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.23,-74.57,175 +12974,STANDARD,0,"Port Henry",,,NY,"Essex County",America/New_York,518,NA,US,44.04,-73.46,1180 +12975,"PO BOX",0,"Port Kent",,,NY,"Essex County",America/New_York,518,NA,US,44.53,-73.42,265 +12976,"PO BOX",0,"Rainbow Lake",,,NY,"Franklin County",America/New_York,518,NA,US,44.47,-74.17,209 +12977,"PO BOX",0,"Ray Brook",,,NY,"Essex County",America/New_York,518,NA,US,44.28,-74.07,280 +12978,STANDARD,0,Redford,,,NY,"Clinton County",America/New_York,518,NA,US,44.62,-73.81,340 +12979,STANDARD,0,"Rouses Point",,,NY,"Clinton County",America/New_York,518,NA,US,44.99,-73.37,2100 +12980,STANDARD,0,"Saint Regis Falls","St Regis Fls","Santa Clara",NY,"Franklin County",America/New_York,518,NA,US,44.49,-74.53,1040 +12981,STANDARD,0,Saranac,,,NY,"Clinton County",America/New_York,518,NA,US,44.67,-73.82,1980 +12983,STANDARD,0,"Saranac Lake",,"Harrietstown, Lake Colby",NY,"Franklin County",America/New_York,518,NA,US,44.32,-74.13,5900 +12985,STANDARD,0,"Schuyler Falls","Schuyler Fls","Peasleeville, Swastika",NY,"Clinton County",America/New_York,518,NA,US,44.55,-73.75,850 +12986,STANDARD,0,"Tupper Lake",Massawepie,Conifer,NY,"Franklin County",America/New_York,518,NA,US,44.23,-74.46,4540 +12987,STANDARD,0,"Upper Jay",,,NY,"Essex County",America/New_York,518,NA,US,44.33,-73.78,220 +12989,STANDARD,0,Vermontville,"Loon Lake, Onchiota",,NY,"Franklin County",America/New_York,518,NA,US,44.52,-74.09,780 +12992,STANDARD,0,"West Chazy",,"Ingraham, Sciota",NY,"Clinton County",America/New_York,518,NA,US,44.79,-73.52,4470 +12993,STANDARD,0,Westport,Wadhams,,NY,"Essex County",America/New_York,518,NA,US,44.17,-73.43,1340 +12995,"PO BOX",0,Whippleville,,,NY,"Franklin County",America/New_York,518,NA,US,44.73,-74.26,111 +12996,STANDARD,0,Willsboro,,"Reber, Willsboro Point",NY,"Essex County",America/New_York,518,NA,US,44.37,-73.4,1620 +12997,STANDARD,0,Wilmington,"Whiteface Mountain, Whiteface Mtn",,NY,"Essex County",America/New_York,518,NA,US,44.38,-73.82,1010 +12998,STANDARD,0,Witherbee,,,NY,"Essex County",America/New_York,518,NA,US,44.08,-73.58,430 +13020,"PO BOX",0,"Apulia Station","Apulia Sta",,NY,"Onondaga County",America/New_York,315,NA,US,42.82,-76.07,202 +13021,STANDARD,0,Auburn,"Owasco, Sennett","Aurelius, Fleming, Fosterville, Throop",NY,"Cayuga County",America/New_York,315,NA,US,42.93,-76.56,31630 +13022,"PO BOX",0,Auburn,,,NY,"Cayuga County",America/New_York,315,NA,US,42.93,-76.56,17 +13024,UNIQUE,0,Auburn,,"Auburn State Prison",NY,"Cayuga County",America/New_York,315,NA,US,42.93,-76.57,0 +13026,STANDARD,0,Aurora,,Ledyard,NY,"Cayuga County",America/New_York,315,NA,US,42.75,-76.7,1050 +13027,STANDARD,0,Baldwinsville,Lysander,"Belgium, Radison, Radisson, Van Buren",NY,"Onondaga County",America/New_York,315,NA,US,43.15,-76.33,31820 +13028,STANDARD,0,"Bernhards Bay",,,NY,"Oswego County",America/New_York,315,NA,US,43.29,-75.93,1050 +13029,STANDARD,0,Brewerton,,,NY,"Onondaga County",America/New_York,315,NA,US,43.23,-76.14,6630 +13030,STANDARD,0,Bridgeport,,,NY,"Madison County",America/New_York,315,NA,US,43.15,-75.96,3520 +13031,STANDARD,0,Camillus,,"Howlett Hill, Split Rock",NY,"Onondaga County",America/New_York,315,NA,US,43.03,-76.3,15460 +13032,STANDARD,0,Canastota,Perryville,"South Bay, Whitelaw",NY,"Madison County",America/New_York,315,NA,US,43.08,-75.75,10750 +13033,STANDARD,0,Cato,,,NY,"Cayuga County",America/New_York,315,NA,US,43.16,-76.57,3440 +13034,STANDARD,0,Cayuga,,,NY,"Cayuga County",America/New_York,315,NA,US,42.91,-76.72,1610 +13035,STANDARD,0,Cazenovia,,"Caz, Fenner, Nelson",NY,"Madison County",America/New_York,315,NA,US,42.92,-75.85,7300 +13036,STANDARD,0,"Central Square","Central Sq",,NY,"Oswego County",America/New_York,315,NA,US,43.28,-76.14,7710 +13037,STANDARD,0,Chittenango,,"Chitt, Chtg, Lakeport, North Chittenango, Sullivan",NY,"Madison County",America/New_York,315,NA,US,43.04,-75.87,8410 +13039,STANDARD,0,Cicero,Clay,,NY,"Onondaga County",America/New_York,315,NA,US,43.17,-76.11,16860 +13040,STANDARD,0,Cincinnatus,"East Freetown","E Freetown, E Freetwn, Taylor",NY,"Cortland County",America/New_York,607,NA,US,42.54,-75.89,2290 +13041,STANDARD,0,Clay,,,NY,"Onondaga County",America/New_York,315,NA,US,43.18,-76.17,11400 +13042,STANDARD,0,Cleveland,,,NY,"Oswego County",America/New_York,315,NA,US,43.26,-75.85,1900 +13043,"PO BOX",0,Clockville,,Lincoln,NY,"Madison County",America/New_York,315,NA,US,43.04,-75.74,83 +13044,STANDARD,0,Constantia,,Gayville,NY,"Oswego County",America/New_York,315,NA,US,43.25,-76,2270 +13045,STANDARD,0,Cortland,,"Cortlandville, Munsons Corners, Virgil",NY,"Cortland County",America/New_York,607,NA,US,42.6,-76.18,19840 +13051,"PO BOX",0,"Delphi Falls",,,NY,"Onondaga County",America/New_York,315,NA,US,42.88,-75.91,142 +13052,STANDARD,0,"De Ruyter",,"Deruyter, Lincklaen",NY,"Madison County",America/New_York,315,NA,US,42.75,-75.86,1570 +13053,STANDARD,0,Dryden,,,NY,"Tompkins County",America/New_York,607,NA,US,42.49,-76.29,3740 +13054,STANDARD,0,Durhamville,,"Higginsville, Stacy Basin",NY,"Oneida County",America/New_York,315,NA,US,43.12,-75.67,1330 +13056,"PO BOX",0,"East Homer",,,NY,"Cortland County",America/New_York,607,NA,US,42.66,-76.1,0 +13057,STANDARD,0,"East Syracuse",,"E Syracuse",NY,"Onondaga County",America/New_York,315,NA,US,43.06,-76.07,13340 +13060,STANDARD,0,Elbridge,,"Hart Lot",NY,"Onondaga County",America/New_York,315,NA,US,43.03,-76.44,2450 +13061,STANDARD,0,Erieville,,,NY,"Madison County",America/New_York,315,NA,US,42.85,-75.75,860 +13062,"PO BOX",0,Etna,,,NY,"Tompkins County",America/New_York,607,NA,US,42.48,-76.38,236 +13063,STANDARD,0,Fabius,,,NY,"Onondaga County",America/New_York,315,NA,US,42.83,-75.98,1750 +13064,"PO BOX",0,"Fair Haven",,,NY,"Cayuga County",America/New_York,315,NA,US,43.33,-76.71,462 +13065,"PO BOX",0,Fayette,,,NY,"Seneca County",America/New_York,,NA,US,42.81,-76.8,179 +13066,STANDARD,0,Fayetteville,,,NY,"Onondaga County",America/New_York,315,NA,US,43.02,-76,12200 +13068,STANDARD,0,Freeville,,,NY,"Tompkins County",America/New_York,607,NA,US,42.51,-76.34,4560 +13069,STANDARD,0,Fulton,,"Bowens Corners, Granby, Granby Center, Palermo, Volney",NY,"Oswego County",America/New_York,315,NA,US,43.31,-76.41,20300 +13071,STANDARD,0,Genoa,,,NY,"Cayuga County",America/New_York,315,NA,US,42.66,-76.53,840 +13072,STANDARD,0,Georgetown,,"Geotown, Otselic",NY,"Madison County",America/New_York,315,NA,US,42.76,-75.76,620 +13073,STANDARD,0,Groton,,"Groton City, W Groton, West Groton",NY,"Tompkins County",America/New_York,607,NA,US,42.58,-76.36,5550 +13074,STANDARD,0,Hannibal,,"Fairdale, Hannibal Center, South Hannibal",NY,"Oswego County",America/New_York,315,NA,US,43.31,-76.57,3600 +13076,STANDARD,0,Hastings,,,NY,"Oswego County",America/New_York,315,NA,US,43.35,-76.15,2100 +13077,STANDARD,0,Homer,,Scott,NY,"Cortland County",America/New_York,607,NA,US,42.63,-76.18,6030 +13078,STANDARD,0,Jamesville,,"Sentinel Heights",NY,"Onondaga County",America/New_York,315,NA,US,42.99,-76.07,9080 +13080,STANDARD,0,Jordan,,"Cross Lake",NY,"Onondaga County",America/New_York,315,NA,US,43.06,-76.47,3010 +13081,STANDARD,0,"King Ferry",,"Atwater, Goodyears Corners, Kings Ferry",NY,"Cayuga County",America/New_York,315,NA,US,42.66,-76.61,890 +13082,STANDARD,0,Kirkville,,,NY,"Madison County",America/New_York,,NA,US,43.07,-75.95,4070 +13083,STANDARD,0,Lacona,,"Boylston, Smartville",NY,"Oswego County",America/New_York,315,NA,US,43.64,-76.06,1570 +13084,STANDARD,0,"La Fayette",,"Berwyn, Cardiff, Lafayette",NY,"Onondaga County",America/New_York,315,NA,US,42.88,-76.1,4060 +13087,"PO BOX",0,"Little York",,,NY,"Cortland County",America/New_York,607,NA,US,42.71,-76.15,266 +13088,STANDARD,0,Liverpool,,"Galeville, Jewell Manor, Salina",NY,"Onondaga County",America/New_York,315,NA,US,43.11,-76.19,19880 +13089,"PO BOX",0,Liverpool,,,NY,"Onondaga County",America/New_York,315,NA,US,43.1,-76.21,251 +13090,STANDARD,0,Liverpool,Bayberry,"Dominion Park",NY,"Onondaga County",America/New_York,315,NA,US,43.15,-76.21,28240 +13092,STANDARD,0,Locke,,"East Genoa, Summerhill",NY,"Cayuga County",America/New_York,315,NA,US,42.66,-76.43,2280 +13093,"PO BOX",0,Lycoming,,,NY,"Oswego County",America/New_York,315,NA,US,43.49,-76.39,163 +13101,STANDARD,0,"Mc Graw",,Mcgraw,NY,"Cortland County",America/New_York,607,NA,US,42.59,-76.09,2270 +13102,"PO BOX",0,"Mc Lean",,Mclean,NY,"Tompkins County",America/New_York,607,NA,US,42.55,-76.29,375 +13103,STANDARD,0,Mallory,,,NY,"Oswego County",America/New_York,315,NA,US,43.33,-76.11,300 +13104,STANDARD,0,Manlius,,,NY,"Onondaga County",America/New_York,315,NA,US,43,-75.97,15690 +13107,"PO BOX",0,"Maple View",,,NY,"Oswego County",America/New_York,315,NA,US,43.45,-76.15,50 +13108,STANDARD,0,Marcellus,,"Marcellus Falls, Martisco, Navarino",NY,"Onondaga County",America/New_York,315,NA,US,42.98,-76.34,5770 +13110,STANDARD,0,Marietta,,"Amber, Otisco Valley",NY,"Onondaga County",America/New_York,315,NA,US,42.9,-76.32,2050 +13111,STANDARD,0,Martville,,,NY,"Cayuga County",America/New_York,315,NA,US,43.28,-76.62,1380 +13112,STANDARD,0,Memphis,,,NY,"Onondaga County",America/New_York,315,NA,US,43.08,-76.37,1700 +13113,"PO BOX",0,Meridian,,,NY,"Cayuga County",America/New_York,315,NA,US,43.16,-76.54,284 +13114,STANDARD,0,Mexico,,,NY,"Oswego County",America/New_York,315,NA,US,43.46,-76.23,5790 +13115,"PO BOX",0,Minetto,,,NY,"Oswego County",America/New_York,315,NA,US,43.4,-76.48,399 +13116,STANDARD,0,Minoa,,,NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76,3340 +13117,"PO BOX",0,Montezuma,,,NY,"Cayuga County",America/New_York,315,NA,US,43.01,-76.7,238 +13118,STANDARD,0,Moravia,,"Montville, Sempronius",NY,"Cayuga County",America/New_York,315,NA,US,42.71,-76.42,4490 +13119,"PO BOX",0,Mottville,,,NY,"Onondaga County",America/New_York,315,NA,US,42.97,-76.44,132 +13120,STANDARD,0,Nedrow,,"Indian Village, Onondaga Nation, Rockwell Springs, S Onon, South Onondaga",NY,"Onondaga County",America/New_York,315,NA,US,42.97,-76.14,2090 +13121,"PO BOX",0,"New Haven",,,NY,"Oswego County",America/New_York,315,NA,US,43.46,-76.31,232 +13122,STANDARD,0,"New Woodstock",,"New Wdstock, Sheds",NY,"Madison County",America/New_York,315,NA,US,42.84,-75.85,1000 +13123,"PO BOX",0,"North Bay",,,NY,"Oneida County",America/New_York,315,NA,US,43.23,-75.77,542 +13124,STANDARD,0,"North Pitcher",,,NY,"Chenango County",America/New_York,,NA,US,42.66,-75.82,122 +13126,STANDARD,0,Oswego,,"Bundyville, Demster, Fruit Valley, Furniss, Furniss Sta, North Hannibal, Oswego Center, Scriba, Scriba Center, Seneca Hill, Southwest Oswego",NY,"Oswego County",America/New_York,315,NA,US,43.45,-76.5,25760 +13131,STANDARD,0,Parish,,Colosse,NY,"Oswego County",America/New_York,315,NA,US,43.4,-76.12,3310 +13132,STANDARD,0,Pennellville,,,NY,"Oswego County",America/New_York,315,NA,US,43.26,-76.24,3490 +13134,"PO BOX",0,Peterboro,,Smithfield,NY,"Madison County",America/New_York,315,NA,US,42.97,-75.68,170 +13135,STANDARD,0,Phoenix,,"Hinmansville, Schroeppel",NY,"Oswego County",America/New_York,315,NA,US,43.23,-76.29,5810 +13136,STANDARD,0,Pitcher,,,NY,"Chenango County",America/New_York,,NA,US,42.58,-75.86,390 +13137,"PO BOX",0,Plainville,,,NY,"Onondaga County",America/New_York,315,NA,US,43.15,-76.44,155 +13138,"PO BOX",0,Pompey,,,NY,"Onondaga County",America/New_York,315,NA,US,42.9,-76.01,465 +13139,"PO BOX",0,"Poplar Ridge",,,NY,"Cayuga County",America/New_York,315,NA,US,42.73,-76.61,80 +13140,STANDARD,0,"Port Byron",,Conquest,NY,"Cayuga County",America/New_York,315,NA,US,43.03,-76.62,3620 +13141,STANDARD,0,Preble,,,NY,"Cortland County",America/New_York,,NA,US,42.73,-76.14,610 +13142,STANDARD,0,Pulaski,,"Fernwood, Port Ontario",NY,"Oswego County",America/New_York,315,NA,US,43.56,-76.12,5310 +13143,STANDARD,0,"Red Creek",,,NY,"Wayne County",America/New_York,315,NA,US,43.24,-76.72,2310 +13144,STANDARD,0,Richland,,,NY,"Oswego County",America/New_York,315,NA,US,43.57,-75.97,1060 +13145,STANDARD,0,"Sandy Creek",,,NY,"Oswego County",America/New_York,315,NA,US,43.65,-76.12,1560 +13146,STANDARD,0,Savannah,,,NY,"Wayne County",America/New_York,315,NA,US,43.09,-76.75,1820 +13147,STANDARD,0,"Scipio Center","Venice Center","Merrifield, Scipio, Scipioville, Venice",NY,"Cayuga County",America/New_York,315,NA,US,42.78,-76.55,890 +13148,STANDARD,0,"Seneca Falls",,"Canoga, Tyre",NY,"Seneca County",America/New_York,315,NA,US,42.91,-76.79,8970 +13152,STANDARD,0,Skaneateles,,"Mandana, Niles, Skan",NY,"Onondaga County",America/New_York,315,NA,US,42.89,-76.37,7600 +13153,"PO BOX",0,"Skaneateles Falls","Skan Falls","Skan Fa",NY,"Onondaga County",America/New_York,315,NA,US,43,-76.45,406 +13154,"PO BOX",0,"South Butler",,,NY,"Wayne County",America/New_York,315,NA,US,43.23,-76.81,161 +13155,STANDARD,0,"South Otselic",,,NY,"Chenango County",America/New_York,315,NA,US,42.65,-75.78,510 +13156,STANDARD,0,Sterling,,,NY,"Cayuga County",America/New_York,315,NA,US,43.32,-76.64,1630 +13157,"PO BOX",0,"Sylvan Beach",,,NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.72,847 +13158,STANDARD,0,Truxton,"Cuyler, East Homer",,NY,"Cortland County",America/New_York,607,NA,US,42.71,-76.02,1170 +13159,STANDARD,0,Tully,,"Otisco, Vesper",NY,"Onondaga County",America/New_York,315,NA,US,42.79,-76.1,4750 +13160,STANDARD,0,"Union Springs",,"Allens Point, Farleys Point, Springport",NY,"Cayuga County",America/New_York,315,NA,US,42.84,-76.69,1820 +13162,"PO BOX",0,"Verona Beach",,,NY,"Oneida County",America/New_York,315,NA,US,43.19,-75.72,331 +13163,"PO BOX",0,Wampsville,,,NY,"Madison County",America/New_York,315,NA,US,43.08,-75.71,506 +13164,STANDARD,0,Warners,,,NY,"Onondaga County",America/New_York,315,NA,US,43.08,-76.32,2640 +13165,STANDARD,0,Waterloo,,Junius,NY,"Seneca County",America/New_York,315,NA,US,42.9,-76.86,9140 +13166,STANDARD,0,Weedsport,,Brutus,NY,"Cayuga County",America/New_York,315,NA,US,43.04,-76.56,4700 +13167,STANDARD,0,"West Monroe",,,NY,"Oswego County",America/New_York,315,NA,US,43.29,-76.07,3050 +13201,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,390 +13202,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.15,3630 +13203,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.06,-76.13,11430 +13204,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.05,-76.18,14010 +13205,STANDARD,0,Syracuse,,"Colvin, Colvin Elmwood, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.01,-76.14,12830 +13206,STANDARD,0,Syracuse,,"Eastwood, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76.11,13810 +13207,STANDARD,0,Syracuse,,"Colvin Elmwood, Elmwood, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.01,-76.16,10790 +13208,STANDARD,0,Syracuse,,"Lyncourt, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.08,-76.15,18080 +13209,STANDARD,0,Syracuse,Solvay,"Geddes, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76.22,11610 +13210,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,9880 +13211,STANDARD,0,Syracuse,Mattydale,"Mdale, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.1,-76.12,5710 +13212,STANDARD,0,Syracuse,"N Syracuse, North Syracuse",Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.13,-76.13,17870 +13214,STANDARD,0,Syracuse,"De Witt","Dewitt, Syr",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.08,6710 +13215,STANDARD,0,Syracuse,,"Onon Hill, Syr",NY,"Onondaga County",America/New_York,315,NA,US,42.98,-76.22,13580 +13217,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,306 +13218,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,276 +13219,STANDARD,0,Syracuse,,"Syr, Taunton, Westvale",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.22,14400 +13220,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,626 +13221,"PO BOX",0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,16 +13224,STANDARD,0,Syracuse,,Syr,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.1,7320 +13225,UNIQUE,0,Syracuse,,"Syracuse Amf",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13235,"PO BOX",0,Syracuse,,University,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.13,90 +13244,UNIQUE,0,Syracuse,,"Syracuse University",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,39 +13250,UNIQUE,0,Syracuse,,"Caller Firms Brm",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13251,UNIQUE,0,Syracuse,,Firms,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13252,UNIQUE,0,Syracuse,,"National Grid",NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,0 +13261,"PO BOX",0,Syracuse,,,NY,"Onondaga County",America/New_York,315,NA,US,43.04,-76.14,21 +13290,"PO BOX",0,Syracuse,,,NY,"Onondaga County",America/New_York,315,NA,US,43.07,-76.17,136 +13301,STANDARD,0,"Alder Creek",,,NY,"Oneida County",America/New_York,315,NA,US,43.42,-75.22,159 +13302,STANDARD,0,Altmar,,"Howardville, Kasoag, Pine Meadows, Ricard, South Albion",NY,"Oswego County",America/New_York,315,NA,US,43.51,-76,1260 +13303,STANDARD,0,Ava,,"West Branch",NY,"Oneida County",America/New_York,315,NA,US,43.41,-75.47,1040 +13304,STANDARD,0,Barneveld,,"South Trenton",NY,"Oneida County",America/New_York,315,NA,US,43.27,-75.18,1630 +13305,"PO BOX",0,"Beaver Falls","Beaver Fls",,NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.42,466 +13308,STANDARD,0,Blossvale,,Vienna,NY,"Oneida County",America/New_York,315,NA,US,43.27,-75.64,2890 +13309,STANDARD,0,Boonville,,"Hawkinsville, Mohawk Hill, Talcottville",NY,"Oneida County",America/New_York,315,NA,US,43.48,-75.33,4870 +13310,STANDARD,0,Bouckville,,"Pine Woods",NY,"Madison County",America/New_York,315,NA,US,42.88,-75.55,560 +13312,"PO BOX",0,Brantingham,Glenfield,,NY,"Lewis County",America/New_York,315,NA,US,43.7,-75.29,347 +13313,"PO BOX",0,Bridgewater,,,NY,"Oneida County",America/New_York,315,NA,US,42.88,-75.27,669 +13314,STANDARD,0,Brookfield,,,NY,"Madison County",America/New_York,315,NA,US,42.81,-75.31,360 +13315,STANDARD,0,"Burlington Flats","Burlngtn Flt","Burlington, Exeter",NY,"Otsego County",America/New_York,,NA,US,42.74,-75.18,1170 +13316,STANDARD,0,Camden,,"Empeyville, Florence, Hillsboro, Osceola",NY,"Oneida County",America/New_York,315,NA,US,43.33,-75.74,5560 +13317,STANDARD,0,Canajoharie,Ames,"Browns Hollow, Buel, Flat Creek, Mapletown, Marshville, Sprout Brook, Van Deusenville",NY,"Montgomery County",America/New_York,518,NA,US,42.9,-74.57,3240 +13318,STANDARD,0,Cassville,,"North Bridgewater",NY,"Oneida County",America/New_York,315,NA,US,42.94,-75.25,1150 +13319,STANDARD,0,Chadwicks,,Willowvale,NY,"Oneida County",America/New_York,315,NA,US,43.02,-75.27,760 +13320,STANDARD,0,"Cherry Valley",,,NY,"Otsego County",America/New_York,607,NA,US,42.79,-74.75,1680 +13321,"PO BOX",0,"Clark Mills",,,NY,"Oneida County",America/New_York,315,NA,US,43.09,-75.37,1080 +13322,STANDARD,0,Clayville,,,NY,"Oneida County",America/New_York,315,NA,US,42.97,-75.25,1030 +13323,STANDARD,0,Clinton,,"Kirkland, Lairdsville",NY,"Oneida County",America/New_York,315,NA,US,43.04,-75.37,8510 +13324,STANDARD,0,"Cold Brook",Ohio,"Grant, Gray, Morehouse, Morehouseville, Noblesboro",NY,"Herkimer County",America/New_York,315,NA,US,43.24,-75.03,1690 +13325,STANDARD,0,Constableville,Constablevle,"Fish Creek, West Turin",NY,"Lewis County",America/New_York,315,NA,US,43.56,-75.42,810 +13326,STANDARD,0,Cooperstown,"Hartwick Seminary, Hrtwk Seminry",,NY,"Otsego County",America/New_York,607,NA,US,42.7,-74.92,4290 +13327,STANDARD,0,Croghan,,"Belfort, Indian River, Kirschnerville",NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.39,1980 +13328,STANDARD,0,Deansboro,,,NY,"Oneida County",America/New_York,315,NA,US,42.99,-75.42,970 +13329,STANDARD,0,Dolgeville,,"Manheim, Oppenheim",NY,"Herkimer County",America/New_York,315,NA,US,43.1,-74.77,3070 +13331,STANDARD,0,"Eagle Bay",,"Big Moose",NY,"Herkimer County",America/New_York,315,NA,US,43.87,-74.88,210 +13332,STANDARD,0,Earlville,"Lebanon, Poolville","Lebanon Center, South Hamilton, South Lebanon",NY,"Madison County",America/New_York,315,NA,US,42.74,-75.54,2230 +13333,STANDARD,0,"East Springfield","E Springfield",,NY,"Otsego County",America/New_York,607,NA,US,42.84,-74.82,90 +13334,STANDARD,0,Eaton,,"Georgtown Station, Pierceville",NY,"Madison County",America/New_York,315,NA,US,42.84,-75.61,1090 +13335,STANDARD,0,Edmeston,,,NY,"Otsego County",America/New_York,,NA,US,42.69,-75.24,1370 +13337,STANDARD,0,"Fly Creek",,"Cattown, Oaksville, Otsego",NY,"Otsego County",America/New_York,,NA,US,42.71,-74.98,670 +13338,STANDARD,0,Forestport,,"Atwell, Forestport Station, Honnedaga Lake, Kayuta Lake, Mckeever, Otter Lake",NY,"Oneida County",America/New_York,315,NA,US,43.44,-75.2,1040 +13339,STANDARD,0,"Fort Plain",,"Ephratah, Ft Plain, Hallsville, Hessville, Minden, Mindenville, Sand Hill, Starkville, Stone Arabia",NY,"Montgomery County",America/New_York,518,NA,US,42.93,-74.62,5190 +13340,STANDARD,0,Frankfort,Schuyler,"Frankfort Center, North Ilion",NY,"Herkimer County",America/New_York,315,NA,US,43.03,-75.07,6810 +13341,"PO BOX",0,"Franklin Springs","Franklin Spgs",,NY,"Oneida County",America/New_York,315,NA,US,43.04,-75.4,150 +13342,STANDARD,0,Garrattsville,,,NY,"Otsego County",America/New_York,607,NA,US,42.65,-75.2,251 +13343,STANDARD,0,Glenfield,,"Chase Lake, Otter Creek, Pine Grove",NY,"Lewis County",America/New_York,315,NA,US,43.75,-75.31,1450 +13345,STANDARD,0,Greig,,,NY,"Lewis County",America/New_York,315,NA,US,43.69,-75.32,177 +13346,STANDARD,0,Hamilton,,"Colgate, Randallsville",NY,"Madison County",America/New_York,315,NA,US,42.82,-75.54,3250 +13348,STANDARD,0,Hartwick,,"Patent, Snowden",NY,"Otsego County",America/New_York,607,NA,US,42.65,-75.04,1140 +13350,STANDARD,0,Herkimer,,"East Herkimer",NY,"Herkimer County",America/New_York,315,NA,US,43.02,-74.99,7020 +13352,"PO BOX",0,Hinckley,,,NY,"Oneida County",America/New_York,315,NA,US,43.31,-75.12,260 +13353,"PO BOX",0,Hoffmeister,,,NY,"Hamilton County",America/New_York,,NA,US,43.4,-74.72,59 +13354,STANDARD,0,"Holland Patent","Holland Patnt","East Floyd, Steuben, Steuben Valley",NY,"Oneida County",America/New_York,315,NA,US,43.24,-75.25,3110 +13355,STANDARD,0,Hubbardsville,,,NY,"Madison County",America/New_York,315,NA,US,42.81,-75.46,710 +13357,STANDARD,0,Ilion,,"Cedarville, Columbia, Columbia Center, North Columbia, South Ilion, Spinnerville",NY,"Herkimer County",America/New_York,315,NA,US,43.01,-75.04,8580 +13360,STANDARD,0,Inlet,,,NY,"Hamilton County",America/New_York,315,NA,US,43.72,-74.73,360 +13361,STANDARD,0,Jordanville,,,NY,"Herkimer County",America/New_York,315,NA,US,42.91,-74.95,630 +13362,"PO BOX",0,Knoxboro,,,NY,"Oneida County",America/New_York,315,NA,US,42.98,-75.52,150 +13363,STANDARD,0,"Lee Center",,"Stokes, West Lee",NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.51,2050 +13364,"PO BOX",0,Leonardsville,,,NY,"Madison County",America/New_York,315,NA,US,42.8,-75.26,327 +13365,STANDARD,0,"Little Falls",,Salisbury,NY,"Herkimer County",America/New_York,315,NA,US,43.04,-74.85,6980 +13367,STANDARD,0,Lowville,"Beaver River","Dadville, Harrisburg, Montague, New Breman, Watson, West Lowville",NY,"Lewis County",America/New_York,315,NA,US,43.78,-75.48,7160 +13368,STANDARD,0,"Lyons Falls",,"Goulds Mill, Lyonsdale",NY,"Lewis County",America/New_York,315,NA,US,43.61,-75.36,1000 +13401,"PO BOX",0,"Mc Connellsville","Mc Conelsvile",,NY,"Oneida County",America/New_York,315,NA,US,43.27,-75.69,159 +13402,STANDARD,0,Madison,,,NY,"Madison County",America/New_York,315,NA,US,42.89,-75.51,1260 +13403,STANDARD,0,Marcy,,,NY,"Oneida County",America/New_York,315,NA,US,43.17,-75.29,4360 +13404,"PO BOX",0,Martinsburg,,,NY,"Lewis County",America/New_York,315,NA,US,43.74,-75.47,161 +13406,STANDARD,0,Middleville,,Fairfield,NY,"Herkimer County",America/New_York,315,NA,US,43.13,-74.92,480 +13407,STANDARD,0,Mohawk,,"Dennison Corners, Fort Herkimer, German Flatts, Paines Hollow",NY,"Herkimer County",America/New_York,315,NA,US,43,-75,4210 +13408,STANDARD,0,Morrisville,,"Morrisville Station",NY,"Madison County",America/New_York,315,NA,US,42.89,-75.64,2050 +13409,STANDARD,0,Munnsville,"Pratts Hollow","Stockbridge, Valley Mills",NY,"Madison County",America/New_York,315,NA,US,42.97,-75.58,2050 +13410,"PO BOX",0,Nelliston,,,NY,"Montgomery County",America/New_York,518,NA,US,42.93,-74.61,462 +13411,STANDARD,0,"New Berlin","S Edmeston, South Edmeston","Columbus, Hoboken, Pittsfield",NY,"Chenango County",America/New_York,607,NA,US,42.62,-75.33,2710 +13413,STANDARD,0,"New Hartford",,"New Hartfd",NY,"Oneida County",America/New_York,315,NA,US,43.07,-75.28,14160 +13415,STANDARD,0,"New Lisbon",,Stetsonville,NY,"Otsego County",America/New_York,607,NA,US,42.6,-75.2,56 +13416,STANDARD,0,Newport,,,NY,"Herkimer County",America/New_York,315,NA,US,43.18,-75.01,1990 +13417,STANDARD,0,"New York Mills","New York Mls","Ny Mills",NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.29,2730 +13418,STANDARD,0,"North Brookfield","N Brookfield",,NY,"Madison County",America/New_York,315,NA,US,42.85,-75.38,181 +13420,STANDARD,0,"Old Forge",,,NY,"Herkimer County",America/New_York,315,NA,US,43.71,-74.97,1380 +13421,STANDARD,0,Oneida,,"Kenwood, Merrillsville, Oneida Castle, Scribner Corners",NY,"Madison County",America/New_York,315,NA,US,43.08,-75.65,11040 +13424,STANDARD,0,Oriskany,,,NY,"Oneida County",America/New_York,315,NA,US,43.15,-75.33,1980 +13425,STANDARD,0,"Oriskany Falls","Oriskany Fls",Augusta,NY,"Oneida County",America/New_York,315,NA,US,42.93,-75.46,1620 +13426,"PO BOX",0,Orwell,,,NY,"Oswego County",America/New_York,315,NA,US,43.56,-75.95,227 +13428,STANDARD,0,"Palatine Bridge","Palatine Brg",,NY,"Montgomery County",America/New_York,518,NA,US,42.92,-74.55,1240 +13431,STANDARD,0,Poland,,"Gravesville, Russia",NY,"Herkimer County",America/New_York,315,NA,US,43.22,-75.06,1710 +13433,STANDARD,0,"Port Leyden",,"Collinsville, Fowlersville, Leyden, Moose River",NY,"Lewis County",America/New_York,315,NA,US,43.58,-75.34,1410 +13435,"PO BOX",0,Prospect,,,NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.15,380 +13436,STANDARD,0,"Raquette Lake",,Brightside,NY,"Hamilton County",America/New_York,315,NA,US,43.81,-74.65,132 +13437,STANDARD,0,Redfield,,,NY,"Oswego County",America/New_York,315,NA,US,43.59,-75.81,340 +13438,STANDARD,0,Remsen,,"North Wilmurt",NY,"Oneida County",America/New_York,315,NA,US,43.32,-75.18,3040 +13439,STANDARD,0,"Richfield Springs","Richfld Spgs","Cullen, Richfield, South Columbia, Warren",NY,"Otsego County",America/New_York,315,NA,US,42.85,-74.98,3100 +13440,STANDARD,0,Rome,,"Bartlett, Camroden, Coonrod, Floyd, Fort Stanwix National Monume, Greenway, Lake Delta, Lee, Ridge Mills, Seifert Corners, Spencer Settlement, Stanwix, Stanwix Heights",NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.47,32860 +13441,STANDARD,0,Rome,,,NY,"Oneida County",America/New_York,315,NA,US,43.23,-75.41,0 +13442,"PO BOX",0,Rome,,,NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.47,980 +13449,UNIQUE,0,Rome,,"Brm Customer",NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.47,0 +13450,STANDARD,0,Roseboom,,,NY,"Otsego County",America/New_York,607,NA,US,42.7,-74.81,200 +13452,STANDARD,0,"Saint Johnsville","St Johnsville","Crum Creek, Johnsville, Kringsbush, Lassellsville, Scotchbush",NY,"Montgomery County",America/New_York,518,NA,US,43,-74.67,3690 +13454,STANDARD,0,"Salisbury Center","Salisbury Ctr",,NY,"Herkimer County",America/New_York,315,NA,US,43.22,-74.76,680 +13455,"PO BOX",0,Sangerfield,,,NY,"Oneida County",America/New_York,315,NA,US,42.91,-75.37,109 +13456,STANDARD,0,Sauquoit,Paris,,NY,"Oneida County",America/New_York,315,NA,US,43,-75.26,3770 +13457,"PO BOX",0,"Schuyler Lake",,,NY,"Otsego County",America/New_York,,NA,US,42.78,-75.02,239 +13459,STANDARD,0,"Sharon Springs","Sharon Spgs",,NY,"Schoharie County",America/New_York,518,NA,US,42.79,-74.61,1680 +13460,STANDARD,0,Sherburne,,,NY,"Chenango County",America/New_York,607,NA,US,42.67,-75.49,3790 +13461,STANDARD,0,Sherrill,,,NY,"Oneida County",America/New_York,315,NA,US,43.07,-75.59,2900 +13464,STANDARD,0,Smyrna,,"Bonney, Upperville",NY,"Chenango County",America/New_York,607,NA,US,42.68,-75.56,970 +13465,STANDARD,0,Solsville,,,NY,"Madison County",America/New_York,315,NA,US,42.91,-75.51,0 +13468,STANDARD,0,"Springfield Center","Springfld Ctr","Springfld Center",NY,"Otsego County",America/New_York,607,NA,US,42.82,-74.87,430 +13469,STANDARD,0,Stittville,,,NY,"Oneida County",America/New_York,315,NA,US,43.21,-75.3,710 +13470,STANDARD,0,Stratford,,,NY,"Fulton County",America/New_York,,NA,US,43.18,-74.68,500 +13471,STANDARD,0,Taberg,,"Annsville, Point Rock",NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.61,2580 +13472,"PO BOX",0,Thendara,,,NY,"Herkimer County",America/New_York,315,NA,US,43.7,-75.07,177 +13473,STANDARD,0,Turin,,Houseville,NY,"Lewis County",America/New_York,315,NA,US,43.62,-75.4,650 +13475,STANDARD,0,"Van Hornesville","Van Hornesvle",,NY,"Herkimer County",America/New_York,315,NA,US,42.89,-74.83,164 +13476,STANDARD,0,Vernon,,,NY,"Oneida County",America/New_York,315,NA,US,43.07,-75.53,2930 +13477,STANDARD,0,"Vernon Center",,,NY,"Oneida County",America/New_York,315,NA,US,43.05,-75.5,1150 +13478,STANDARD,0,Verona,,,NY,"Oneida County",America/New_York,315,NA,US,43.13,-75.57,2790 +13479,"PO BOX",0,"Washington Mills","Washingtn Mls",,NY,"Oneida County",America/New_York,315,NA,US,43.05,-75.27,142 +13480,STANDARD,0,Waterville,,"Conger Corners, Daytonville, Stockwell",NY,"Oneida County",America/New_York,315,NA,US,42.93,-75.38,2880 +13482,STANDARD,0,"West Burlington","W Burlington",,NY,"Otsego County",America/New_York,607,NA,US,42.69,-75.19,56 +13483,STANDARD,0,Westdale,,,NY,"Oneida County",America/New_York,315,NA,US,43.4,-75.83,270 +13484,"PO BOX",0,"West Eaton",,,NY,"Madison County",America/New_York,315,NA,US,42.87,-75.66,221 +13485,STANDARD,0,"West Edmeston",,"South Brookfield",NY,"Madison County",America/New_York,"315,607",NA,US,42.78,-75.31,1010 +13486,STANDARD,0,Westernville,,"Big Brook, Frenchville",NY,"Oneida County",America/New_York,315,NA,US,43.3,-75.38,720 +13488,STANDARD,0,Westford,,"Maple Valley",NY,"Otsego County",America/New_York,,NA,US,42.69,-74.75,220 +13489,STANDARD,0,"West Leyden",,,NY,"Lewis County",America/New_York,315,NA,US,43.46,-75.52,580 +13490,STANDARD,0,Westmoreland,,Hecla,NY,"Oneida County",America/New_York,315,NA,US,43.11,-75.4,1200 +13491,STANDARD,0,"West Winfield","West Exeter","East Winfield, Millers Mills, North Winfield, Plainfield, Plainfield Center, Unadilla Forks, Winfield",NY,"Herkimer County",America/New_York,315,NA,US,42.88,-75.19,3220 +13492,STANDARD,0,Whitesboro,,"Walesville, Whitestown",NY,"Oneida County",America/New_York,315,NA,US,43.12,-75.29,10530 +13493,STANDARD,0,Williamstown,,Williamstn,NY,"Oswego County",America/New_York,315,NA,US,43.42,-75.88,1680 +13494,STANDARD,0,Woodgate,,,NY,"Oneida County",America/New_York,315,NA,US,43.52,-75.15,260 +13495,STANDARD,0,Yorkville,,,NY,"Oneida County",America/New_York,315,NA,US,43.11,-75.27,1810 +13501,STANDARD,0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,30390 +13502,STANDARD,0,Utica,Deerfield,Schuyler,NY,"Oneida County",America/New_York,315,NA,US,43.14,-75.15,25510 +13503,"PO BOX",0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,645 +13504,"PO BOX",0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,234 +13505,"PO BOX",0,Utica,,,NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,301 +13599,UNIQUE,0,Utica,,"Brm Customer",NY,"Oneida County",America/New_York,315,NA,US,43.1,-75.23,0 +13601,STANDARD,0,Watertown,"Glen Park",Wtown,NY,"Jefferson County",America/New_York,315,NA,US,43.97,-75.91,29750 +13602,STANDARD,0,"Fort Drum",Watertown,Wtown,NY,"Jefferson County",America/New_York,315,NA,US,44.07,-75.78,4150 +13603,STANDARD,0,Watertown,"Fort Drum",,NY,"Jefferson County",America/New_York,315,NA,US,44.04,-75.79,10450 +13605,STANDARD,0,Adams,Smithville,,NY,"Jefferson County",America/New_York,315,NA,US,43.8,-76.02,3870 +13606,STANDARD,0,"Adams Center",,,NY,"Jefferson County",America/New_York,315,NA,US,43.85,-75.99,2380 +13607,STANDARD,0,"Alexandria Bay","Alex Bay, Point Vivian","Alexandra Bay, Alexandria, Collins Landing, Edgewood Park, St Lawrence Park, Westminster Park",NY,"Jefferson County",America/New_York,315,NA,US,44.33,-75.91,1580 +13608,STANDARD,0,Antwerp,,Wegatchie,NY,"Jefferson County",America/New_York,315,NA,US,44.25,-75.62,1240 +13611,"PO BOX",0,Belleville,,,NY,"Jefferson County",America/New_York,315,NA,US,43.78,-76.11,363 +13612,STANDARD,0,"Black River",,,NY,"Jefferson County",America/New_York,315,NA,US,44,-75.79,2330 +13613,STANDARD,0,"Brasher Falls",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.8,-74.79,2140 +13614,STANDARD,0,"Brier Hill",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.54,-75.68,240 +13615,"PO BOX",0,Brownville,,"Paddy Hill",NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.99,1307 +13616,STANDARD,0,Calcium,,,NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.84,1430 +13617,STANDARD,0,Canton,,"Bucks Bridge, Crary Mills, Eddy, Langdon Corners, Morley, North Russell, Pierrepont, West Pierrepont",NY,"St. Lawrence County",America/New_York,315,NA,US,44.59,-75.17,6980 +13618,STANDARD,0,"Cape Vincent",,,NY,"Jefferson County",America/New_York,315,NA,US,44.12,-76.33,1610 +13619,STANDARD,0,Carthage,,"Champion, Champion Huddle, Herrings, W Carthage, West Carthage, Wilna",NY,"Jefferson County",America/New_York,315,NA,US,43.98,-75.6,8290 +13620,STANDARD,0,Castorland,,,NY,"Lewis County",America/New_York,315,NA,US,43.88,-75.51,1890 +13621,STANDARD,0,"Chase Mills",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.86,-75.07,550 +13622,STANDARD,0,Chaumont,,,NY,"Jefferson County",America/New_York,315,NA,US,44.06,-76.13,1980 +13623,"PO BOX",0,"Chippewa Bay",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.45,-75.75,45 +13624,STANDARD,0,Clayton,"Frontenac, Grenell, Murray Isle",Grindstone,NY,"Jefferson County",America/New_York,315,NA,US,44.23,-76.08,3790 +13625,STANDARD,0,Colton,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.54,-74.93,1700 +13626,STANDARD,0,Copenhagen,"Barnes Corners, Barnes Cors, South Rutland","S Rutland",NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.67,1780 +13627,"PO BOX",0,"Deer River",,,NY,"Lewis County",America/New_York,315,NA,US,43.94,-75.59,102 +13628,"PO BOX",0,Deferiet,,,NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.68,341 +13630,STANDARD,0,"De Kalb Junction","De Kalb Jct",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.48,-75.3,1040 +13631,"PO BOX",0,Denmark,,,NY,"Lewis County",America/New_York,315,NA,US,43.89,-75.58,23 +13632,"PO BOX",0,Depauville,,,NY,"Jefferson County",America/New_York,315,NA,US,44.13,-76.01,371 +13633,STANDARD,0,"De Peyster",,Depeyster,NY,"St. Lawrence County",America/New_York,315,NA,US,44.5,-75.46,233 +13634,STANDARD,0,Dexter,,"Adams Cove, Guffin Bay, Muskalounge, Perch River, Pillar Point, Sherwin Bay",NY,"Jefferson County",America/New_York,315,NA,US,44,-76.04,3490 +13635,STANDARD,0,Edwards,,"S Edwards, South Edwards",NY,"St. Lawrence County",America/New_York,315,NA,US,44.32,-75.25,870 +13636,STANDARD,0,Ellisburg,,,NY,"Jefferson County",America/New_York,315,NA,US,43.74,-76.12,250 +13637,STANDARD,0,"Evans Mills",,"Le Ray, Pamelia, Pamelia Four Corners",NY,"Jefferson County",America/New_York,315,NA,US,44.08,-75.8,4040 +13638,STANDARD,0,"Felts Mills",,Rutland,NY,"Jefferson County",America/New_York,315,NA,US,44.02,-75.74,390 +13639,STANDARD,0,Fine,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.25,-75.13,228 +13640,STANDARD,0,"Wellesley Island","Fineview, Wellesley Is",,NY,"Jefferson County",America/New_York,315,NA,US,44.3,-76.03,440 +13641,"PO BOX",0,"Fishers Landing","Fishers Lndg",,NY,"Jefferson County",America/New_York,315,NA,US,44.27,-76,128 +13642,STANDARD,0,Gouverneur,Balmat,"Brasie Corners, Elmdale, Emeryville, Fowler, Fullerville, Macomb, Natural Dam, Pierces Corner, Somerville",NY,"St. Lawrence County",America/New_York,315,NA,US,44.33,-75.46,6770 +13643,"PO BOX",0,"Great Bend",,"Gt Bend",NY,"Jefferson County",America/New_York,315,NA,US,44.03,-75.72,372 +13645,"PO BOX",0,Hailesboro,,,NY,"St Lawrence County",America/New_York,315,NA,US,44.28,-75.42,239 +13646,STANDARD,0,Hammond,,"Edwardsville, Rossie, Ruby Corner",NY,"St. Lawrence County",America/New_York,315,NA,US,44.44,-75.69,1630 +13647,"PO BOX",0,"Hannawa Falls",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.61,-74.98,564 +13648,STANDARD,0,Harrisville,,"Diana, East Pitcairn, Geers Corners, Lake Bonaparte, Pitcairn",NY,"Lewis County",America/New_York,315,NA,US,44.15,-75.32,1820 +13649,"PO BOX",0,Helena,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.92,-74.72,153 +13650,STANDARD,0,Henderson,Woodville,"Jefferson Park, Rural Hill",NY,"Jefferson County",America/New_York,315,NA,US,43.8,-76.19,1130 +13651,"PO BOX",0,"Henderson Harbor","Henderson Hbr",,NY,"Jefferson County",America/New_York,315,NA,US,43.87,-76.18,201 +13652,STANDARD,0,Hermon,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.46,-75.23,1580 +13654,STANDARD,0,Heuvelton,,"Pope Mills",NY,"St. Lawrence County",America/New_York,315,NA,US,44.61,-75.4,1630 +13655,STANDARD,0,Hogansburg,Akwesasne,,NY,"St. Lawrence County",America/New_York,518,NA,US,44.97,-74.63,3850 +13656,STANDARD,0,"La Fargeville",,"Lafargeville, Omar, Stone Mills",NY,"Jefferson County",America/New_York,315,NA,US,44.18,-75.95,2300 +13657,"PO BOX",0,Limerick,,,NY,"Jefferson County",America/New_York,315,NA,US,44.03,-76.01,0 +13658,STANDARD,0,Lisbon,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.72,-75.26,2100 +13659,STANDARD,0,Lorraine,,"Diamond, Worth",NY,"Jefferson County",America/New_York,315,NA,US,43.74,-75.85,450 +13660,STANDARD,0,Madrid,,"Madrid Springs",NY,"St. Lawrence County",America/New_York,315,NA,US,44.75,-75.15,1720 +13661,STANDARD,0,Mannsville,,,NY,"Jefferson County",America/New_York,315,NA,US,43.71,-76.06,1360 +13662,STANDARD,0,Massena,,"Massena Center, Massena Springs",NY,"St. Lawrence County",America/New_York,315,NA,US,44.92,-74.89,12960 +13664,STANDARD,0,Morristown,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.58,-75.64,420 +13665,STANDARD,0,"Natural Bridge","Natural Brg",,NY,"Jefferson County",America/New_York,315,NA,US,44.05,-75.43,710 +13666,"PO BOX",0,"Newton Falls",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.21,-74.97,255 +13667,STANDARD,0,Norfolk,,Grantville,NY,"St. Lawrence County",America/New_York,315,NA,US,44.8,-74.98,2630 +13668,STANDARD,0,Norwood,,"Hewittville, Knapps Station, North Stockholm, Yaleville",NY,"St. Lawrence County",America/New_York,315,NA,US,44.74,-74.99,2710 +13669,STANDARD,0,Ogdensburg,,"Ogd, Red Mills",NY,"St. Lawrence County",America/New_York,315,NA,US,44.7,-75.47,11730 +13670,STANDARD,0,Oswegatchie,,"Lower Oswegatchie",NY,"St. Lawrence County",America/New_York,315,NA,US,44.18,-75.07,260 +13671,"PO BOX",0,Antwerp,,,NY,"Jefferson County",America/New_York,315,NA,US,44.28,-75.62,22 +13672,STANDARD,0,Parishville,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.47,-74.66,550 +13673,STANDARD,0,Philadelphia,,Phila,NY,"Jefferson County",America/New_York,315,NA,US,44.15,-75.7,1950 +13674,"PO BOX",0,"Pierrepont Manor","Pierrepnt Mnr",,NY,"Jefferson County",America/New_York,315,NA,US,43.74,-76.05,252 +13675,STANDARD,0,Plessis,,,NY,"Jefferson County",America/New_York,315,NA,US,44.28,-75.85,214 +13676,STANDARD,0,Potsdam,,"Eben, Parishville Center, Sandfordville, Sissonville, Slab City, West Parishville, West Potsdam",NY,"St. Lawrence County",America/New_York,315,NA,US,44.66,-74.98,8890 +13677,"PO BOX",0,Pyrites,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.51,-75.18,112 +13678,"PO BOX",0,Raymondville,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.81,-74.99,300 +13679,STANDARD,0,Redwood,,,NY,"Jefferson County",America/New_York,315,NA,US,44.32,-75.77,1540 +13680,STANDARD,0,"Rensselaer Falls","Rensslaer Fls",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.59,-75.32,960 +13681,STANDARD,0,Richville,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.41,-75.39,730 +13682,STANDARD,0,Rodman,,"E Rodman",NY,"Jefferson County",America/New_York,315,NA,US,43.84,-75.9,840 +13683,"PO BOX",0,Rooseveltown,,,NY,"St Lawrence County",America/New_York,315,NA,US,44.96,-74.73,462 +13684,STANDARD,0,Russell,Degrasse,"Clare, Hatchs Corner, South Russell",NY,"St. Lawrence County",America/New_York,315,NA,US,44.36,-75.04,980 +13685,STANDARD,0,"Sackets Harbor","Sackets Hbr","Boultons Beach, Hounsfield",NY,"Jefferson County",America/New_York,315,NA,US,43.94,-76.12,2100 +13687,STANDARD,0,"South Colton",,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.5,-74.88,440 +13690,STANDARD,0,"Star Lake",,"Benson Mines",NY,"St. Lawrence County",America/New_York,315,NA,US,44.16,-75.03,630 +13691,STANDARD,0,Theresa,,,NY,"Jefferson County",America/New_York,315,NA,US,44.21,-75.79,2600 +13692,"PO BOX",0,"Thousand Island Park","Thous Is Pk, Thousnd Is Pk",,NY,"Jefferson County",America/New_York,315,NA,US,44.29,-76.03,68 +13693,STANDARD,0,"Three Mile Bay","Three Mle Bay",,NY,"Jefferson County",America/New_York,315,NA,US,43.99,-76.25,480 +13694,STANDARD,0,Waddington,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.85,-75.19,1340 +13695,"PO BOX",0,Wanakena,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.13,-74.92,73 +13696,STANDARD,0,"West Stockholm","W Stockholm",,NY,"St. Lawrence County",America/New_York,315,NA,US,44.69,-74.89,200 +13697,STANDARD,0,Winthrop,,,NY,"St. Lawrence County",America/New_York,315,NA,US,44.74,-74.8,1940 +13699,UNIQUE,0,Potsdam,,"Clarkson University",NY,"St Lawrence County",America/New_York,315,NA,US,44.66,-74.98,58 +13730,STANDARD,0,Afton,,"Afton Lake, Nineveh Junction, North Afton",NY,"Chenango County",America/New_York,607,NA,US,42.22,-75.52,2290 +13731,STANDARD,0,Andes,,,NY,"Delaware County",America/New_York,845,NA,US,42.18,-74.78,740 +13732,STANDARD,0,Apalachin,,"South Apalachin",NY,"Tioga County",America/New_York,607,NA,US,42.07,-76.16,7230 +13733,STANDARD,0,Bainbridge,,"Bennettsville, Coventryville, New Berlin Junction, West Bainbridge",NY,"Chenango County",America/New_York,607,NA,US,42.29,-75.48,4180 +13734,STANDARD,0,Barton,,,NY,"Tioga County",America/New_York,607,NA,US,42.07,-76.41,1900 +13736,STANDARD,0,Berkshire,,"East Berkshire, Jenksville, Ketchumville, Speedsville",NY,"Tioga County",America/New_York,607,NA,US,42.3,-76.18,2160 +13737,"PO BOX",0,"Bible School Park","Bible Sch Pk",,NY,"Broome County",America/New_York,607,NA,US,42.1,-75.97,51 +13738,"PO BOX",0,"Blodgett Mills","Blodgett Mls",,NY,"Cortland County",America/New_York,607,NA,US,42.56,-76.12,135 +13739,STANDARD,0,Bloomville,,"Doonan Corners, Kortright, Kortright Center",NY,"Delaware County",America/New_York,,NA,US,42.33,-74.8,740 +13740,STANDARD,0,"Bovina Center",,,NY,"Delaware County",America/New_York,,NA,US,42.26,-74.78,410 +13743,STANDARD,0,Candor,,"Hubbardtown, West Candor",NY,"Tioga County",America/New_York,607,NA,US,42.23,-76.34,3230 +13744,STANDARD,0,"Castle Creek",,,NY,"Broome County",America/New_York,607,NA,US,42.22,-75.91,1000 +13745,"PO BOX",0,"Chenango Bridge","Chenango Brg",,NY,"Broome County",America/New_York,607,NA,US,42.16,-75.86,347 +13746,STANDARD,0,"Chenango Forks","Chenango Fks","North Fenton, Quinneville",NY,"Broome County",America/New_York,,NA,US,42.23,-75.84,2250 +13747,"PO BOX",0,Colliersville,,,NY,"Otsego County",America/New_York,607,NA,US,42.49,-74.98,128 +13748,STANDARD,0,Conklin,,,NY,"Broome County",America/New_York,607,NA,US,42.03,-75.8,3240 +13749,"PO BOX",0,Corbettsville,,,NY,"Broome County",America/New_York,607,NA,US,42.01,-75.79,100 +13750,STANDARD,0,Davenport,,"North Kortright, Sturges Corner",NY,"Delaware County",America/New_York,607,NA,US,42.47,-74.84,910 +13751,STANDARD,0,"Davenport Center","Davenport Ctr",,NY,"Delaware County",America/New_York,607,NA,US,42.45,-74.9,190 +13752,STANDARD,0,Delancey,,Cabinhill,NY,"Delaware County",America/New_York,,NA,US,42.2,-74.97,570 +13753,STANDARD,0,Delhi,Meredith,"Fraser, Lake Delaware, West Delhi",NY,"Delaware County",America/New_York,607,NA,US,42.27,-74.91,3400 +13754,STANDARD,0,Deposit,,"Barbourville, China, Hambletville, Mcclure, North Sanford, Oquaga Lake, Sanford, Stilesville, Tompkins",NY,"Broome County",America/New_York,607,NA,US,42.06,-75.42,2480 +13755,STANDARD,0,Downsville,Shinhopple,"Corbett, Gregorytown",NY,"Delaware County",America/New_York,607,NA,US,42.08,-74.99,1010 +13756,STANDARD,0,"East Branch",,"Burnwood, Harvard, Peakville",NY,"Delaware County",America/New_York,,NA,US,41.98,-75.11,350 +13757,STANDARD,0,"East Meredith",,"Shackport, West Meredith",NY,"Delaware County",America/New_York,,NA,US,42.41,-74.88,870 +13758,"PO BOX",0,"East Pharsalia","E Pharsalia",,NY,"Chenango County",America/New_York,607,NA,US,42.59,-75.73,106 +13760,STANDARD,0,Endicott,Endwell,"Campville, Crestview Heights, Union Center, West Corners, West Endicott",NY,"Broome County",America/New_York,607,NA,US,42.13,-76.08,37590 +13761,"PO BOX",0,Endicott,,,NY,"Broome County",America/New_York,607,NA,US,42.09,-76.05,295 +13762,"PO BOX",0,Endwell,,,NY,"Broome County",America/New_York,607,NA,US,42.11,-76.02,113 +13763,"PO BOX",0,Endicott,,,NY,"Broome County",America/New_York,607,NA,US,42.09,-76.05,97 +13774,"PO BOX",0,"Fishs Eddy",,,NY,"Delaware County",America/New_York,607,NA,US,41.96,-75.15,204 +13775,STANDARD,0,Franklin,,"Bartlett Hollow, East Sidney, Leonta",NY,"Delaware County",America/New_York,607,NA,US,42.34,-75.16,1350 +13776,STANDARD,0,Gilbertsville,,Butternuts,NY,"Otsego County",America/New_York,607,NA,US,42.47,-75.32,500 +13777,STANDARD,0,"Glen Aubrey",,,NY,"Broome County",America/New_York,607,NA,US,42.25,-76,740 +13778,STANDARD,0,Greene,,"Coventry, Genegantslet, Lower Genegantslet Corner, Smithville, Smithville Center, Triangle",NY,"Chenango County",America/New_York,607,NA,US,42.32,-75.77,4870 +13780,STANDARD,0,Guilford,,"Guilford Center",NY,"Chenango County",America/New_York,607,NA,US,42.4,-75.49,940 +13782,STANDARD,0,Hamden,,,NY,"Delaware County",America/New_York,,NA,US,42.19,-74.99,490 +13783,STANDARD,0,Hancock,Cadosia,"Apex, French Woods, Hales Eddy, Kelsey, Lordville",NY,"Delaware County",America/New_York,607,NA,US,41.95,-75.27,1770 +13784,"PO BOX",0,Harford,,,NY,"Cortland County",America/New_York,607,NA,US,42.43,-76.22,264 +13786,STANDARD,0,Harpersfield,,"West Harpersfield",NY,"Delaware County",America/New_York,,NA,US,42.43,-74.68,300 +13787,STANDARD,0,Harpursville,,"Belden, Centre Village, Colesville, South Nineveh",NY,"Broome County",America/New_York,607,NA,US,42.17,-75.62,2950 +13788,STANDARD,0,Hobart,,,NY,"Delaware County",America/New_York,607,NA,US,42.37,-74.66,750 +13790,STANDARD,0,"Johnson City",,"East Maine, Westover",NY,"Broome County",America/New_York,607,NA,US,42.11,-75.96,14410 +13794,"PO BOX",0,Killawog,,,NY,"Broome County",America/New_York,607,NA,US,42.4,-76.02,105 +13795,STANDARD,0,Kirkwood,,"Fivemile Point, Langdon",NY,"Broome County",America/New_York,607,NA,US,42.03,-75.79,3250 +13796,STANDARD,0,Laurens,,"West Laurens",NY,"Otsego County",America/New_York,,NA,US,42.56,-75.13,1020 +13797,STANDARD,0,Lisle,,Centerlisle,NY,"Broome County",America/New_York,607,NA,US,42.35,-76,1820 +13801,STANDARD,0,"Mc Donough",,Mcdonough,NY,"Chenango County",America/New_York,607,NA,US,42.49,-75.76,1010 +13802,STANDARD,0,Maine,,,NY,"Broome County",America/New_York,607,NA,US,42.24,-76.04,750 +13803,STANDARD,0,Marathon,,"Freetown, Freetown Corners, Galatia, Hunts Corners, Lapeer, Messengerville, Texas Valley",NY,"Cortland County",America/New_York,607,NA,US,42.44,-76.03,3760 +13804,STANDARD,0,Masonville,,Whitman,NY,"Delaware County",America/New_York,607,NA,US,42.24,-75.37,350 +13806,STANDARD,0,Meridale,,,NY,"Delaware County",America/New_York,,NA,US,42.36,-74.95,170 +13807,STANDARD,0,Milford,,,NY,"Otsego County",America/New_York,607,NA,US,42.59,-74.94,1050 +13808,STANDARD,0,Morris,,"Elm Grove, Filer Corners, Maple Grove",NY,"Otsego County",America/New_York,607,NA,US,42.54,-75.24,1440 +13809,STANDARD,0,"Mount Upton",,Rockdale,NY,"Chenango County",America/New_York,607,NA,US,42.42,-75.38,1320 +13810,STANDARD,0,"Mount Vision",,Welcome,NY,"Otsego County",America/New_York,607,NA,US,42.57,-75.05,940 +13811,STANDARD,0,"Newark Valley",,"Tiona, Weltonville, West Newark",NY,"Tioga County",America/New_York,607,NA,US,42.22,-76.18,3770 +13812,STANDARD,0,Nichols,,"East Nichols, Hoopers Valley, Lounsberry",NY,"Tioga County",America/New_York,607,NA,US,42.03,-76.35,1940 +13813,STANDARD,0,Nineveh,,"Doraville, Vallonia Springs",NY,"Broome County",America/New_York,607,NA,US,42.19,-75.6,740 +13814,"PO BOX",0,"North Norwich",,,NY,"Chenango County",America/New_York,,NA,US,42.61,-75.53,321 +13815,STANDARD,0,Norwich,,"Chenango Lake, Kings Settlement, Springvale, Woods Corners",NY,"Chenango County",America/New_York,607,NA,US,42.53,-75.52,10770 +13820,STANDARD,0,Oneonta,,"Emmons, Milford Center, North Franklin, West End",NY,"Otsego County",America/New_York,607,NA,US,42.45,-75.06,13320 +13825,STANDARD,0,Otego,,Otsdawa,NY,"Otsego County",America/New_York,607,NA,US,42.39,-75.17,2750 +13826,STANDARD,0,Ouaquaga,Harpursville,,NY,"Broome County",America/New_York,607,NA,US,42.1,-75.64,116 +13827,STANDARD,0,Owego,,"Catatonk, Flemingville, Foster, Gaskill, Hullsville, South Owego, Straits Corners, Waits",NY,"Tioga County",America/New_York,607,NA,US,42.1,-76.26,9790 +13830,STANDARD,0,Oxford,Brisben,"East Mcdonough, Preston, South Oxford, Tyner",NY,"Chenango County",America/New_York,607,NA,US,42.44,-75.59,3820 +13832,STANDARD,0,Plymouth,,"Beaver Meadow",NY,"Chenango County",America/New_York,607,NA,US,42.66,-75.67,530 +13833,STANDARD,0,"Port Crane","Sanitaria Spg, Sanitaria Springs",Fenton,NY,"Broome County",America/New_York,,NA,US,42.16,-75.83,3570 +13834,STANDARD,0,Portlandville,,,NY,"Otsego County",America/New_York,607,NA,US,42.53,-74.97,152 +13835,STANDARD,0,Richford,"Harford Mills",,NY,"Tioga County",America/New_York,607,NA,US,42.35,-76.2,1190 +13837,"PO BOX",1,Shinhopple,,,NY,"Delaware County",America/New_York,,NA,US,42.03,-75.06,0 +13838,STANDARD,0,Sidney,,,NY,"Delaware County",America/New_York,607,NA,US,42.31,-75.39,3460 +13839,STANDARD,0,"Sidney Center",,"East Masonville, Franklin Depot, Ivanhoe, Merrickville",NY,"Delaware County",America/New_York,607,NA,US,42.29,-75.25,1130 +13840,"PO BOX",0,Smithboro,,,NY,"Tioga County",America/New_York,607,NA,US,42.03,-76.4,110 +13841,STANDARD,0,"Smithville Flats","Smithvle Flts",,NY,"Chenango County",America/New_York,607,NA,US,42.41,-75.84,430 +13842,STANDARD,0,"South Kortright","S Kortright",,NY,"Delaware County",America/New_York,,NA,US,42.37,-74.72,350 +13843,STANDARD,0,"South New Berlin","S New Berlin","Ambierville, Holmesville, Lathams Corners, Rockwells Mills, Whites Store",NY,"Chenango County",America/New_York,607,NA,US,42.53,-75.35,1430 +13844,STANDARD,0,"South Plymouth","So Plymouth","Kirk, North Pharsalia",NY,"Chenango County",America/New_York,607,NA,US,42.61,-75.67,620 +13845,"PO BOX",0,"Tioga Center",,Tioga,NY,"Tioga County",America/New_York,607,NA,US,42.05,-76.35,325 +13846,STANDARD,0,Treadwell,Franklin,,NY,"Delaware County",America/New_York,607,NA,US,42.34,-75.05,290 +13847,"PO BOX",0,"Trout Creek",,,NY,"Delaware County",America/New_York,607,NA,US,42.18,-75.29,184 +13848,"PO BOX",0,Tunnel,,,NY,"Broome County",America/New_York,607,NA,US,42.21,-75.72,51 +13849,STANDARD,0,Unadilla,,Youngs,NY,"Otsego County",America/New_York,607,NA,US,42.32,-75.31,3680 +13850,STANDARD,0,Vestal,,"Ross Corners, South Vestal, Tracy Creek, Twin Orchards, Vestal Center, Vestal Gardens, Willow Point",NY,"Broome County",America/New_York,607,NA,US,42.08,-76.05,18550 +13851,"PO BOX",0,Vestal,,,NY,"Broome County",America/New_York,607,NA,US,42.08,-76.05,223 +13856,STANDARD,0,Walton,,"Cleaver, Colchester, Hawleys, Northfield, Pineville, Readburn",NY,"Delaware County",America/New_York,607,NA,US,42.16,-75.13,4860 +13859,STANDARD,0,"Wells Bridge",,,NY,"Otsego County",America/New_York,,NA,US,42.37,-75.25,194 +13860,"PO BOX",0,"West Davenport","W Davenport",,NY,"Delaware County",America/New_York,607,NA,US,42.45,-74.94,141 +13861,STANDARD,0,"West Oneonta",,,NY,"Otsego County",America/New_York,,NA,US,42.51,-75.15,570 +13862,STANDARD,0,"Whitney Point",,"Clough Corners, Itaska, Upper Lisle",NY,"Broome County",America/New_York,607,NA,US,42.33,-75.96,3620 +13863,STANDARD,0,Willet,,,NY,"Cortland County",America/New_York,607,NA,US,42.46,-75.91,390 +13864,STANDARD,0,Willseyville,,"Gridleyville, South Danby",NY,"Tioga County",America/New_York,,NA,US,42.29,-76.37,950 +13865,STANDARD,0,Windsor,"W Windsor, West Windsor",,NY,"Broome County",America/New_York,607,NA,US,42.07,-75.64,5210 +13901,STANDARD,0,Binghamton,,"Glen Castle, Kattelville, Nimmonsburg, Port Dickinson",NY,"Broome County",America/New_York,607,NA,US,42.1,-75.91,15160 +13902,"PO BOX",0,Binghamton,,,NY,"Broome County",America/New_York,607,NA,US,42.09,-75.97,779 +13903,STANDARD,0,Binghamton,,"Conklin Forks, East Vestal, Hawleyton, Park Terrace",NY,"Broome County",America/New_York,607,NA,US,42.04,-75.89,14770 +13904,STANDARD,0,Binghamton,,"Hospital, West Colesville",NY,"Broome County",America/New_York,607,NA,US,42.13,-75.82,7140 +13905,STANDARD,0,Binghamton,,"Broadacres, Choconut Center, Dickinson, Hinmans Corners, West Chenango, Westview",NY,"Broome County",America/New_York,607,NA,US,42.17,-75.94,17830 +14001,STANDARD,0,Akron,,Newstead,NY,"Erie County",America/New_York,"585,716",NA,US,43.01,-78.49,8510 +14004,STANDARD,0,Alden,,Townline,NY,"Erie County",America/New_York,"585,716",NA,US,42.89,-78.49,9810 +14005,STANDARD,0,Alexander,,,NY,"Genesee County",America/New_York,585,NA,US,42.9,-78.26,1760 +14006,STANDARD,0,Angola,,,NY,"Erie County",America/New_York,716,NA,US,42.63,-79.02,8070 +14008,STANDARD,0,Appleton,,,NY,"Niagara County",America/New_York,716,NA,US,43.31,-78.63,1320 +14009,STANDARD,0,Arcade,,,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.53,-78.43,4780 +14010,"PO BOX",0,"Athol Springs",,,NY,"Erie County",America/New_York,,NA,US,42.73,-78.84,54 +14011,STANDARD,0,Attica,,Cowlesville,NY,"Wyoming County",America/New_York,585,NA,US,42.86,-78.28,5180 +14012,STANDARD,0,Barker,,,NY,"Niagara County",America/New_York,716,NA,US,43.32,-78.55,2110 +14013,STANDARD,0,Basom,Alabama,,NY,"Genesee County",America/New_York,585,NA,US,43.08,-78.39,1340 +14020,STANDARD,0,Batavia,,Bushville,NY,"Genesee County",America/New_York,585,NA,US,42.99,-78.18,17660 +14021,"PO BOX",0,Batavia,,,NY,"Genesee County",America/New_York,585,NA,US,42.99,-78.18,382 +14024,STANDARD,0,Bliss,,,NY,"Wyoming County",America/New_York,585,NA,US,42.58,-78.24,1400 +14025,STANDARD,0,Boston,,,NY,"Erie County",America/New_York,716,NA,US,42.61,-78.72,2860 +14026,STANDARD,0,Bowmansville,,,NY,"Erie County",America/New_York,,NA,US,42.94,-78.69,790 +14027,"PO BOX",0,Brant,,,NY,"Erie County",America/New_York,,NA,US,42.58,-79.02,310 +14028,STANDARD,0,Burt,,,NY,"Niagara County",America/New_York,716,NA,US,43.31,-78.71,1370 +14029,"PO BOX",0,Centerville,,,NY,"Allegany County",America/New_York,,NA,US,42.47,-78.25,82 +14030,STANDARD,0,Chaffee,,,NY,"Erie County",America/New_York,"585,716",NA,US,42.56,-78.5,1320 +14031,STANDARD,0,Clarence,,,NY,"Erie County",America/New_York,716,NA,US,42.98,-78.6,9570 +14032,STANDARD,0,"Clarence Center","Clarence Ctr",,NY,"Erie County",America/New_York,716,NA,US,43,-78.63,9090 +14033,STANDARD,0,Colden,,,NY,"Erie County",America/New_York,,NA,US,42.65,-78.68,2150 +14034,STANDARD,0,Collins,,Helmuth,NY,"Erie County",America/New_York,,NA,US,42.49,-78.86,1560 +14035,"PO BOX",0,"Collins Center","Collins Ctr",,NY,"Erie County",America/New_York,716,NA,US,42.49,-78.85,121 +14036,STANDARD,0,Corfu,,Pembroke,NY,"Genesee County",America/New_York,585,NA,US,42.96,-78.4,4360 +14037,STANDARD,0,Cowlesville,,,NY,"Wyoming County",America/New_York,585,NA,US,42.8,-78.44,1070 +14038,"PO BOX",0,Crittenden,,,NY,"Erie County",America/New_York,,NA,US,43.02,-78.51,114 +14039,STANDARD,0,Dale,,,NY,"Wyoming County",America/New_York,585,NA,US,42.82,-78.17,130 +14040,STANDARD,0,"Darien Center",,,NY,"Genesee County",America/New_York,585,NA,US,42.89,-78.39,2010 +14041,STANDARD,0,Dayton,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.42,-78.98,200 +14042,STANDARD,0,Delevan,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.49,-78.47,3310 +14043,STANDARD,0,Depew,,,NY,"Erie County",America/New_York,716,NA,US,42.91,-78.7,21390 +14047,STANDARD,0,Derby,,,NY,"Erie County",America/New_York,716,NA,US,42.68,-78.99,5580 +14048,STANDARD,0,Dunkirk,"Van Buren Bay","Chadwick Bay",NY,"Chautauqua County",America/New_York,716,NA,US,42.47,-79.33,11510 +14051,STANDARD,0,"East Amherst",Swormville,"E Amherst",NY,"Erie County",America/New_York,716,NA,US,43.04,-78.7,20310 +14052,STANDARD,0,"East Aurora",,,NY,"Erie County",America/New_York,"585,716",NA,US,42.76,-78.61,16610 +14054,STANDARD,0,"East Bethany",,"E Bethany",NY,"Genesee County",America/New_York,585,NA,US,42.91,-78.13,1250 +14055,STANDARD,0,"East Concord",Concord,"E Concord",NY,"Erie County",America/New_York,716,NA,US,42.55,-78.6,1310 +14056,"PO BOX",0,"East Pembroke",,"E Pembroke",NY,"Genesee County",America/New_York,585,NA,US,43,-78.31,426 +14057,STANDARD,0,Eden,,,NY,"Erie County",America/New_York,716,NA,US,42.65,-78.9,7570 +14058,STANDARD,0,Elba,,,NY,"Genesee County",America/New_York,585,NA,US,43.07,-78.18,1880 +14059,STANDARD,0,Elma,,,NY,"Erie County",America/New_York,,NA,US,42.83,-78.63,9000 +14060,STANDARD,0,"Farmersville Station","Farmersvl Sta",Farmersville,NY,"Cattaraugus County",America/New_York,,NA,US,42.44,-78.29,370 +14061,"PO BOX",0,Farnham,,,NY,"Erie County",America/New_York,,NA,US,42.59,-79.07,320 +14062,STANDARD,0,Forestville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.46,-79.17,2820 +14063,STANDARD,0,Fredonia,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.44,-79.33,9070 +14065,STANDARD,0,Freedom,Sandusky,,NY,"Cattaraugus County",America/New_York,585,NA,US,42.48,-78.32,1520 +14066,STANDARD,0,Gainesville,,,NY,"Wyoming County",America/New_York,585,NA,US,42.64,-78.13,930 +14067,STANDARD,0,Gasport,,,NY,"Niagara County",America/New_York,716,NA,US,43.19,-78.57,4440 +14068,STANDARD,0,Getzville,Amherst,,NY,"Erie County",America/New_York,716,NA,US,43.02,-78.75,6720 +14069,STANDARD,0,Glenwood,,,NY,"Erie County",America/New_York,,NA,US,42.6,-78.63,770 +14070,STANDARD,0,Gowanda,,,NY,"Erie County",America/New_York,716,NA,US,42.46,-78.93,4020 +14072,STANDARD,0,"Grand Island",,,NY,"Erie County",America/New_York,716,NA,US,43.01,-78.96,20490 +14075,STANDARD,0,Hamburg,,,NY,"Erie County",America/New_York,716,NA,US,42.72,-78.83,39880 +14080,STANDARD,0,Holland,,,NY,"Erie County",America/New_York,716,NA,US,42.63,-78.54,3830 +14081,STANDARD,0,Irving,,,NY,"Chautauqua County",America/New_York,,NA,US,42.56,-79.04,2280 +14082,STANDARD,0,"Java Center",,,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.66,-78.39,450 +14083,STANDARD,0,"Java Village",,,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.67,-78.44,157 +14085,STANDARD,0,"Lake View",,Lakeview,NY,"Erie County",America/New_York,716,NA,US,42.71,-78.93,7860 +14086,STANDARD,0,Lancaster,,,NY,"Erie County",America/New_York,716,NA,US,42.9,-78.66,33290 +14091,STANDARD,0,Lawtons,,,NY,"Erie County",America/New_York,,NA,US,42.54,-78.89,1130 +14092,STANDARD,0,Lewiston,"Stela Niagara, Stella Niagara",,NY,"Niagara County",America/New_York,716,NA,US,43.17,-79.04,10080 +14094,STANDARD,0,Lockport,,Pendleton,NY,"Niagara County",America/New_York,716,NA,US,43.16,-78.69,44800 +14095,"PO BOX",0,Lockport,,,NY,"Niagara County",America/New_York,716,NA,US,43.16,-78.69,680 +14098,STANDARD,0,Lyndonville,,,NY,"Orleans County",America/New_York,"585,716",NA,US,43.32,-78.38,2750 +14101,STANDARD,0,Machias,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.38,-78.52,1540 +14102,STANDARD,0,Marilla,,,NY,"Erie County",America/New_York,,NA,US,42.83,-78.55,1190 +14103,STANDARD,0,Medina,,,NY,"Orleans County",America/New_York,"585,716",NA,US,43.21,-78.38,8860 +14105,STANDARD,0,Middleport,,"Royalton, Shelby",NY,"Niagara County",America/New_York,"585,716",NA,US,43.21,-78.47,3900 +14107,"PO BOX",0,"Model City",,,NY,"Niagara County",America/New_York,716,NA,US,43.16,-78.99,41 +14108,STANDARD,0,Newfane,,,NY,"Niagara County",America/New_York,716,NA,US,43.28,-78.69,5110 +14109,"PO BOX",0,"Niagara University","Niagara Univ",,NY,"Niagara County",America/New_York,716,NA,US,43.14,-79.03,44 +14110,"PO BOX",0,"North Boston",,"N Boston",NY,"Erie County",America/New_York,716,NA,US,42.67,-78.78,96 +14111,STANDARD,0,"North Collins",,"N Collins",NY,"Erie County",America/New_York,716,NA,US,42.59,-78.93,2890 +14112,"PO BOX",0,"North Evans",,"N Evans",NY,"Erie County",America/New_York,,NA,US,42.7,-78.94,175 +14113,STANDARD,0,"North Java",,"N Java",NY,"Wyoming County",America/New_York,585,NA,US,42.66,-78.33,710 +14120,STANDARD,0,"North Tonawanda","N Tonawanda","No Tonawanda, Pendleton, Wheatfield",NY,"Niagara County",America/New_York,716,NA,US,43.04,-78.86,39850 +14125,STANDARD,0,Oakfield,,"East Oakfield",NY,"Genesee County",America/New_York,585,NA,US,43.06,-78.27,3260 +14126,"PO BOX",0,Olcott,,,NY,"Niagara County",America/New_York,716,NA,US,43.34,-78.73,742 +14127,STANDARD,0,"Orchard Park",,,NY,"Erie County",America/New_York,716,NA,US,42.76,-78.74,29370 +14129,STANDARD,0,Perrysburg,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.45,-79,1150 +14130,"PO BOX",0,Pike,,,NY,"Wyoming County",America/New_York,585,NA,US,42.55,-78.15,410 +14131,STANDARD,0,Ransomville,,,NY,"Niagara County",America/New_York,716,NA,US,43.23,-78.9,4750 +14132,STANDARD,0,Sanborn,,Pendleton,NY,"Niagara County",America/New_York,716,NA,US,43.14,-78.87,5310 +14133,"PO BOX",0,Sandusky,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.49,-78.38,145 +14134,STANDARD,0,Sardinia,,,NY,"Erie County",America/New_York,716,NA,US,42.53,-78.52,250 +14135,"PO BOX",0,Sheridan,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.49,-79.24,243 +14136,STANDARD,0,"Silver Creek",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.54,-79.16,4250 +14138,STANDARD,0,"South Dayton",,"S Dayton",NY,"Cattaraugus County",America/New_York,716,NA,US,42.36,-79.05,1560 +14139,STANDARD,0,"South Wales",,"S Wales",NY,"Erie County",America/New_York,,NA,US,42.7,-78.53,2210 +14140,"PO BOX",0,"Spring Brook",,Springbrook,NY,"Erie County",America/New_York,,NA,US,42.83,-78.63,114 +14141,STANDARD,0,Springville,,,NY,"Erie County",America/New_York,716,NA,US,42.5,-78.67,6690 +14143,STANDARD,0,Stafford,,,NY,"Genesee County",America/New_York,585,NA,US,42.98,-78.08,1160 +14144,STANDARD,0,"Stella Niagara","Stela Niagara",,NY,"Niagara County",America/New_York,716,NA,US,43.17,-78.99,22 +14145,STANDARD,0,Strykersville,,Sheldon,NY,"Wyoming County",America/New_York,"585,716",NA,US,42.73,-78.42,1400 +14150,STANDARD,0,Tonawanda,,,NY,"Erie County",America/New_York,716,NA,US,43,-78.87,36110 +14151,"PO BOX",0,Tonawanda,,,NY,"Erie County",America/New_York,716,NA,US,43,-78.87,177 +14166,"PO BOX",0,"Van Buren Point","Dunkirk, Van Buren Pt","Van Buren Bay",NY,"Chautauqua County",America/New_York,716,NA,US,42.44,-79.36,0 +14167,STANDARD,0,Varysburg,,,NY,"Wyoming County",America/New_York,585,NA,US,42.73,-78.31,1420 +14168,"PO BOX",0,Versailles,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.52,-78.99,487 +14169,"PO BOX",0,"Wales Center",,,NY,"Erie County",America/New_York,,NA,US,42.77,-78.52,219 +14170,STANDARD,0,"West Falls",,"W Falls",NY,"Erie County",America/New_York,716,NA,US,42.7,-78.67,2180 +14171,STANDARD,0,"West Valley",,"W Valley",NY,"Cattaraugus County",America/New_York,716,NA,US,42.43,-78.62,1730 +14172,STANDARD,0,Wilson,,,NY,"Niagara County",America/New_York,716,NA,US,43.31,-78.82,2920 +14173,"PO BOX",0,Yorkshire,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.53,-78.47,715 +14174,STANDARD,0,Youngstown,,,NY,"Niagara County",America/New_York,716,NA,US,43.24,-79.04,5250 +14201,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.9,-78.89,7970 +14202,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.88,2520 +14203,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,"716,585",NA,US,42.87,-78.87,1280 +14204,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,"585,716",NA,US,42.88,-78.86,5990 +14205,"PO BOX",0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,253 +14206,STANDARD,0,Buffalo,"Cheektowaga, West Seneca",,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.81,16040 +14207,STANDARD,0,Buffalo,,"Town Of Tonawanda",NY,"Erie County",America/New_York,716,NA,US,42.95,-78.9,19830 +14208,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.92,-78.85,7150 +14209,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.91,-78.87,5080 +14210,STANDARD,0,Buffalo,"West Seneca","W Seneca",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,11200 +14211,STANDARD,0,Buffalo,,Cheektowaga,NY,"Erie County",America/New_York,716,NA,US,42.91,-78.82,17840 +14212,STANDARD,0,Buffalo,Sloan,,NY,"Erie County",America/New_York,716,NA,US,42.89,-78.82,9050 +14213,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.92,-78.89,17670 +14214,STANDARD,0,Buffalo,,"University Buffalo",NY,"Erie County",America/New_York,716,NA,US,42.94,-78.84,13320 +14215,STANDARD,0,Buffalo,"Cheektowaga, Snyder",,NY,"Erie County",America/New_York,716,NA,US,42.94,-78.81,30620 +14216,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.95,-78.86,17700 +14217,STANDARD,0,Buffalo,"Kenmore, Tn Of Tona, Tonawanda, Town Of Tonawanda",,NY,"Erie County",America/New_York,716,NA,US,42.97,-78.88,19450 +14218,STANDARD,0,Buffalo,"Lackawanna, West Seneca","W Seneca",NY,"Erie County",America/New_York,716,NA,US,42.82,-78.83,16230 +14219,STANDARD,0,Buffalo,Blasdell,,NY,"Erie County",America/New_York,716,NA,US,42.79,-78.83,10040 +14220,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.85,-78.82,19930 +14221,STANDARD,0,Buffalo,"Amherst, Williamsville",,NY,"Erie County",America/New_York,716,NA,US,42.98,-78.72,50120 +14222,STANDARD,0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.92,-78.88,8520 +14223,STANDARD,0,Buffalo,"Kenmore, Tn Of Tona, Tonawanda, Town Of Tonawanda",,NY,"Erie County",America/New_York,716,NA,US,42.97,-78.85,20860 +14224,STANDARD,0,Buffalo,"West Seneca",,NY,"Erie County",America/New_York,716,NA,US,42.84,-78.75,37220 +14225,STANDARD,0,Buffalo,Cheektowaga,,NY,"Erie County",America/New_York,716,NA,US,42.93,-78.75,29670 +14226,STANDARD,0,Buffalo,"Amherst, Eggertsville, Snyder","Snyder Square",NY,"Erie County",America/New_York,716,NA,US,42.97,-78.8,25870 +14227,STANDARD,0,Buffalo,"Cheektowaga, S Cheek, South Cheektowaga","S Cheektowaga",NY,"Erie County",America/New_York,716,NA,US,42.89,-78.73,19810 +14228,STANDARD,0,Buffalo,"Amherst, W Amherst, West Amherst",,NY,"Erie County",America/New_York,716,NA,US,43.04,-78.78,17140 +14231,"PO BOX",0,Buffalo,"Amherst, Williamsville",Bflo,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,444 +14233,UNIQUE,0,Buffalo,,Jingo,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14240,"PO BOX",0,Buffalo,,,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,517 +14241,UNIQUE,0,Buffalo,,"Bflo, Usps Buffalo Amf",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14260,UNIQUE,0,Buffalo,Amherst,"University At Buffalo, University Buffalo",NY,"Erie County",America/New_York,,NA,US,42.88,-78.85,37 +14261,UNIQUE,0,Buffalo,Amherst,"University At Buffalo, University Buffalo",NY,"Erie County",America/New_York,716,NA,US,43.01,-78.79,205 +14263,UNIQUE,0,Buffalo,,"Roswell Park Memorial Instit",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14264,UNIQUE,0,Buffalo,,"Nat Fuel Gas Co",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14265,UNIQUE,0,Buffalo,,"Ind Order Of Foresters",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14267,UNIQUE,0,Buffalo,,"M And T Bank",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14269,UNIQUE,0,Buffalo,,"Harlequin Books",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14270,UNIQUE,0,Buffalo,,"Hsbc Bank, Marine Midland",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14272,UNIQUE,0,Buffalo,,"Silhouette Books",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14273,UNIQUE,0,Buffalo,,"Bflo, Hsbc Atrium, Hsbc Bank",NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14276,UNIQUE,0,Buffalo,,Scoreball,NY,"Erie County",America/New_York,716,NA,US,42.88,-78.85,0 +14280,UNIQUE,0,Buffalo,,"Shared Brm",NY,"Erie County",America/New_York,"585,716",NA,US,42.88,-78.85,0 +14301,STANDARD,0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.1,-79.04,8630 +14302,"PO BOX",0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.09,-79.05,432 +14303,STANDARD,0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.09,-79.01,4180 +14304,STANDARD,0,"Niagara Falls",,"N Falls, Wheatfield",NY,"Niagara County",America/New_York,716,NA,US,43.1,-78.95,25330 +14305,STANDARD,0,"Niagara Falls",,"N Falls",NY,"Niagara County",America/New_York,716,NA,US,43.12,-79.02,13000 +14410,"PO BOX",0,"Adams Basin",,,NY,"Monroe County",America/New_York,585,NA,US,43.19,-77.86,129 +14411,STANDARD,0,Albion,"Eagle Harbor",,NY,"Orleans County",America/New_York,585,NA,US,43.24,-78.18,9810 +14413,"PO BOX",0,Alton,,,NY,"Wayne County",America/New_York,315,NA,US,43.21,-77.05,292 +14414,STANDARD,0,Avon,,,NY,"Livingston County",America/New_York,585,NA,US,42.91,-77.74,6110 +14415,STANDARD,0,Bellona,,,NY,"Yates County",America/New_York,315,NA,US,42.76,-77.02,187 +14416,STANDARD,0,Bergen,,,NY,"Genesee County",America/New_York,585,NA,US,43.08,-77.94,3490 +14418,STANDARD,0,Branchport,,,NY,"Yates County",America/New_York,315,NA,US,42.59,-77.15,1040 +14420,STANDARD,0,Brockport,,,NY,"Monroe County",America/New_York,585,NA,US,43.21,-77.94,14450 +14422,STANDARD,0,Byron,,,NY,"Genesee County",America/New_York,585,NA,US,43.07,-78.06,1920 +14423,STANDARD,0,Caledonia,,,NY,"Livingston County",America/New_York,585,NA,US,42.97,-77.85,4290 +14424,STANDARD,0,Canandaigua,,,NY,"Ontario County",America/New_York,585,NA,US,42.88,-77.28,24140 +14425,STANDARD,0,Farmington,Canandaigua,,NY,"Ontario County",America/New_York,585,NA,US,42.95,-77.32,12040 +14427,STANDARD,0,Castile,,,NY,"Wyoming County",America/New_York,585,NA,US,42.63,-78.05,1750 +14428,STANDARD,0,Churchville,Clifton,,NY,"Monroe County",America/New_York,585,NA,US,43.1,-77.88,8070 +14429,"PO BOX",0,Clarendon,,,NY,"Orleans County",America/New_York,585,NA,US,43.17,-78.05,108 +14430,"PO BOX",0,Clarkson,,,NY,"Monroe County",America/New_York,585,NA,US,43.21,-77.93,76 +14432,STANDARD,0,"Clifton Springs","Clifton Spgs",,NY,"Ontario County",America/New_York,315,NA,US,42.95,-77.13,4670 +14433,STANDARD,0,Clyde,,,NY,"Wayne County",America/New_York,315,NA,US,43.08,-76.87,3970 +14435,STANDARD,0,Conesus,,,NY,"Livingston County",America/New_York,585,NA,US,42.71,-77.66,2580 +14437,STANDARD,0,Dansville,,,NY,"Livingston County",America/New_York,585,NA,US,42.56,-77.69,7860 +14441,STANDARD,0,Dresden,,,NY,"Yates County",America/New_York,315,NA,US,42.68,-76.96,300 +14443,"PO BOX",0,"East Bloomfield","E Bloomfield",,NY,"Ontario County",America/New_York,,NA,US,42.89,-77.43,115 +14445,STANDARD,0,"East Rochester","E Rochester",,NY,"Monroe County",America/New_York,585,NA,US,43.11,-77.48,6410 +14449,"PO BOX",0,"East Williamson","E Williamson",,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.19,108 +14450,STANDARD,0,Fairport,,,NY,"Monroe County",America/New_York,585,NA,US,43.1,-77.44,40370 +14452,"PO BOX",0,Fancher,,,NY,"Orleans County",America/New_York,585,NA,US,43.25,-78.05,35 +14453,"PO BOX",0,Fishers,,,NY,"Ontario County",America/New_York,,NA,US,42.99,-77.42,220 +14454,STANDARD,0,Geneseo,,,NY,"Livingston County",America/New_York,585,NA,US,42.79,-77.81,5620 +14456,STANDARD,0,Geneva,,,NY,"Ontario County",America/New_York,315,NA,US,42.85,-77,15400 +14461,"PO BOX",0,Gorham,,,NY,"Ontario County",America/New_York,,NA,US,42.8,-77.2,306 +14462,STANDARD,0,Groveland,,,NY,"Livingston County",America/New_York,585,NA,US,42.68,-77.74,550 +14463,"PO BOX",0,Hall,,,NY,"Ontario County",America/New_York,315,NA,US,42.83,-77.07,250 +14464,STANDARD,0,Hamlin,,,NY,"Monroe County",America/New_York,585,NA,US,43.32,-77.93,6450 +14466,STANDARD,0,Hemlock,,,NY,"Ontario County",America/New_York,585,NA,US,42.77,-77.58,1550 +14467,STANDARD,0,Henrietta,,,NY,"Monroe County",America/New_York,585,NA,US,43.04,-77.61,8740 +14468,STANDARD,0,Hilton,,,NY,"Monroe County",America/New_York,585,NA,US,43.28,-77.79,18280 +14469,STANDARD,0,Bloomfield,,"E Bloomfield, East Bloomfield, Holcomb",NY,"Ontario County",America/New_York,585,NA,US,42.87,-77.46,5280 +14470,STANDARD,0,Holley,Hulberton,,NY,"Orleans County",America/New_York,585,NA,US,43.22,-78.02,6870 +14471,STANDARD,0,Honeoye,,,NY,"Ontario County",America/New_York,585,NA,US,42.75,-77.49,2290 +14472,STANDARD,0,"Honeoye Falls",,,NY,"Monroe County",America/New_York,585,NA,US,42.95,-77.59,8380 +14475,STANDARD,0,Ionia,,,NY,"Ontario County",America/New_York,,NA,US,42.94,-77.5,410 +14476,STANDARD,0,Kendall,,,NY,"Orleans County",America/New_York,585,NA,US,43.32,-78.03,2010 +14477,STANDARD,0,Kent,,,NY,"Orleans County",America/New_York,585,NA,US,43.33,-78.13,1360 +14478,STANDARD,0,"Keuka Park","Bluff Point",,NY,"Yates County",America/New_York,315,NA,US,42.58,-77.13,770 +14479,STANDARD,0,Knowlesville,,,NY,"Orleans County",America/New_York,585,NA,US,43.24,-78.31,215 +14480,STANDARD,0,Lakeville,,,NY,"Livingston County",America/New_York,585,NA,US,42.84,-77.71,720 +14481,STANDARD,0,Leicester,,,NY,"Livingston County",America/New_York,585,NA,US,42.77,-77.89,1580 +14482,STANDARD,0,"Le Roy",,Leroy,NY,"Genesee County",America/New_York,585,NA,US,42.97,-77.99,7370 +14485,STANDARD,0,Lima,,,NY,"Livingston County",America/New_York,585,NA,US,42.9,-77.61,3700 +14486,STANDARD,0,Linwood,,,NY,"Livingston County",America/New_York,585,NA,US,42.9,-77.91,280 +14487,STANDARD,0,Livonia,,,NY,"Livingston County",America/New_York,585,NA,US,42.82,-77.66,5410 +14488,"PO BOX",0,"Livonia Center","Livonia Ctr",,NY,"Livingston County",America/New_York,585,NA,US,42.81,-77.65,104 +14489,STANDARD,0,Lyons,,,NY,"Wayne County",America/New_York,315,NA,US,43.06,-76.99,5870 +14502,STANDARD,0,Macedon,,,NY,"Wayne County",America/New_York,315,NA,US,43.06,-77.3,9900 +14504,STANDARD,0,Manchester,,,NY,"Ontario County",America/New_York,,NA,US,42.97,-77.23,1510 +14505,STANDARD,0,Marion,,,NY,"Wayne County",America/New_York,315,NA,US,43.16,-77.17,4710 +14506,STANDARD,0,Mendon,,,NY,"Monroe County",America/New_York,585,NA,US,43.01,-77.52,1260 +14507,STANDARD,0,Middlesex,,,NY,"Yates County",America/New_York,,NA,US,42.7,-77.27,1150 +14508,"PO BOX",0,Morton,,,NY,"Orleans County",America/New_York,585,NA,US,43.32,-78.05,96 +14510,STANDARD,0,"Mount Morris",Tuscarora,,NY,"Livingston County",America/New_York,585,NA,US,42.72,-77.87,4060 +14511,"PO BOX",0,Mumford,,,NY,"Monroe County",America/New_York,585,NA,US,42.99,-77.86,608 +14512,STANDARD,0,Naples,,,NY,"Ontario County",America/New_York,585,NA,US,42.61,-77.4,4130 +14513,STANDARD,0,Newark,"East Palmyra",,NY,"Wayne County",America/New_York,315,NA,US,43.04,-77.09,11370 +14514,STANDARD,0,"North Chili",,,NY,"Monroe County",America/New_York,585,NA,US,43.11,-77.81,6040 +14515,"PO BOX",0,"North Greece",,,NY,"Monroe County",America/New_York,585,NA,US,43.25,-77.73,160 +14516,STANDARD,0,"North Rose",,,NY,"Wayne County",America/New_York,315,NA,US,43.2,-76.91,1950 +14517,STANDARD,0,Nunda,,,NY,"Livingston County",America/New_York,585,NA,US,42.58,-77.93,2270 +14518,"PO BOX",0,"Oaks Corners",,,NY,"Ontario County",America/New_York,,NA,US,42.95,-77.04,98 +14519,STANDARD,0,Ontario,,,NY,"Wayne County",America/New_York,315,NA,US,43.22,-77.31,11590 +14520,"PO BOX",0,"Ontario Center","Ontario Ctr",,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.31,68 +14521,STANDARD,0,Ovid,"Hayt Corners",,NY,"Seneca County",America/New_York,607,NA,US,42.67,-76.82,2410 +14522,STANDARD,0,Palmyra,,,NY,"Wayne County",America/New_York,315,NA,US,43.06,-77.23,8010 +14525,STANDARD,0,Pavilion,,,NY,"Genesee County",America/New_York,585,NA,US,42.87,-77.99,2440 +14526,STANDARD,0,Penfield,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.44,20330 +14527,STANDARD,0,"Penn Yan",,,NY,"Yates County",America/New_York,315,NA,US,42.66,-77.05,10950 +14529,"PO BOX",0,Perkinsville,,,NY,"Steuben County",America/New_York,,NA,US,42.54,-77.64,161 +14530,STANDARD,0,Perry,,,NY,"Wyoming County",America/New_York,585,NA,US,42.71,-78,4450 +14532,STANDARD,0,Phelps,,"West Junius",NY,"Ontario County",America/New_York,315,NA,US,42.95,-77.06,3980 +14533,STANDARD,0,Piffard,Wadsworth,,NY,"Livingston County",America/New_York,585,NA,US,42.84,-77.88,1390 +14534,STANDARD,0,Pittsford,,,NY,"Monroe County",America/New_York,585,NA,US,43.09,-77.51,32750 +14536,STANDARD,0,Portageville,Rossburg,,NY,"Wyoming County",America/New_York,,NA,US,42.55,-78.09,560 +14537,"PO BOX",0,"Port Gibson",,,NY,"Ontario County",America/New_York,,NA,US,43.04,-77.16,261 +14538,"PO BOX",0,Pultneyville,,,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.19,169 +14539,"PO BOX",0,Retsof,,,NY,"Livingston County",America/New_York,585,NA,US,42.83,-77.87,400 +14541,STANDARD,0,Romulus,"Mac Dougall",,NY,"Seneca County",America/New_York,315,NA,US,42.75,-76.83,2080 +14542,"PO BOX",0,Rose,,,NY,"Wayne County",America/New_York,315,NA,US,43.15,-76.86,282 +14543,STANDARD,0,Rush,"Industry, West Rush",,NY,"Monroe County",America/New_York,585,NA,US,42.98,-77.67,3010 +14544,STANDARD,0,Rushville,,,NY,"Yates County",America/New_York,585,NA,US,42.76,-77.22,1720 +14545,STANDARD,0,Scottsburg,Groveland,,NY,"Livingston County",America/New_York,585,NA,US,42.66,-77.7,124 +14546,STANDARD,0,Scottsville,,Wheatland,NY,"Monroe County",America/New_York,585,NA,US,43.02,-77.75,4350 +14547,"PO BOX",0,"Seneca Castle",,,NY,"Ontario County",America/New_York,315,NA,US,42.83,-77.07,257 +14548,STANDARD,0,Shortsville,,,NY,"Ontario County",America/New_York,585,NA,US,42.95,-77.22,3440 +14549,"PO BOX",0,"Silver Lake",,,NY,"Wyoming County",America/New_York,585,NA,US,42.7,-78.02,216 +14550,STANDARD,0,"Silver Springs","Rock Glen, Silver Spgs",,NY,"Wyoming County",America/New_York,585,NA,US,42.66,-78.08,1410 +14551,STANDARD,0,Sodus,"Sodus Center",,NY,"Wayne County",America/New_York,315,NA,US,43.23,-77.06,4540 +14555,STANDARD,0,"Sodus Point",,,NY,"Wayne County",America/New_York,315,NA,US,43.26,-76.99,760 +14556,"PO BOX",0,Sonyea,,,NY,"Livingston County",America/New_York,585,NA,US,42.68,-77.82,19 +14557,"PO BOX",0,"South Byron",,,NY,"Genesee County",America/New_York,585,NA,US,43.04,-78.06,201 +14558,"PO BOX",0,"South Lima",,,NY,"Livingston County",America/New_York,585,NA,US,42.81,-77.65,130 +14559,STANDARD,0,Spencerport,,Ogden,NY,"Monroe County",America/New_York,585,NA,US,43.18,-77.8,17140 +14560,STANDARD,0,Springwater,"Webster Crossing, Webster Xing",,NY,"Livingston County",America/New_York,585,NA,US,42.68,-77.57,1880 +14561,STANDARD,0,Stanley,,,NY,"Ontario County",America/New_York,585,NA,US,42.82,-77.12,2640 +14563,"PO BOX",0,"Union Hill",,,NY,"Wayne County",America/New_York,315,NA,US,43.22,-77.44,48 +14564,STANDARD,0,Victor,,,NY,"Ontario County",America/New_York,585,NA,US,42.98,-77.41,15640 +14568,STANDARD,0,Walworth,,,NY,"Wayne County",America/New_York,315,NA,US,43.14,-77.27,5740 +14569,STANDARD,0,Warsaw,,,NY,"Wyoming County",America/New_York,585,NA,US,42.74,-78.14,5170 +14571,STANDARD,0,Waterport,,,NY,"Orleans County",America/New_York,585,NA,US,43.33,-78.24,1190 +14572,STANDARD,0,Wayland,,,NY,"Steuben County",America/New_York,585,NA,US,42.56,-77.59,4140 +14580,STANDARD,0,Webster,,,NY,"Monroe County",America/New_York,585,NA,US,43.21,-77.42,51030 +14585,STANDARD,0,"West Bloomfield","W Bloomfield",,NY,"Ontario County",America/New_York,,NA,US,42.91,-77.55,200 +14586,STANDARD,0,"West Henrietta","W Henrietta",,NY,"Monroe County",America/New_York,585,NA,US,43.03,-77.69,10950 +14588,"PO BOX",0,Willard,,,NY,"Seneca County",America/New_York,,NA,US,42.68,-76.87,247 +14589,STANDARD,0,Williamson,,,NY,"Wayne County",America/New_York,315,NA,US,43.24,-77.15,6950 +14590,STANDARD,0,Wolcott,,,NY,"Wayne County",America/New_York,315,NA,US,43.22,-76.81,4120 +14591,STANDARD,0,Wyoming,,,NY,"Wyoming County",America/New_York,585,NA,US,42.82,-78.08,1480 +14592,"PO BOX",0,York,,,NY,"Livingston County",America/New_York,585,NA,US,42.87,-77.9,409 +14602,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,376 +14603,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,1116 +14604,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,1420 +14605,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.17,-77.6,8310 +14606,STANDARD,0,Rochester,Gates,,NY,"Monroe County",America/New_York,585,NA,US,43.17,-77.7,23480 +14607,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.59,9890 +14608,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.62,8640 +14609,STANDARD,0,Rochester,Irondequoit,,NY,"Monroe County",America/New_York,585,NA,US,43.18,-77.55,34060 +14610,STANDARD,0,Rochester,Brighton,,NY,"Monroe County",America/New_York,585,NA,US,43.14,-77.55,11820 +14611,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.65,12290 +14612,STANDARD,0,Rochester,Greece,,NY,"Monroe County",America/New_York,585,NA,US,43.27,-77.68,31370 +14613,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.18,-77.64,11300 +14614,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.62,350 +14615,STANDARD,0,Rochester,Greece,,NY,"Monroe County",America/New_York,585,NA,US,43.2,-77.65,13810 +14616,STANDARD,0,Rochester,Greece,,NY,"Monroe County",America/New_York,585,NA,US,43.23,-77.66,25690 +14617,STANDARD,0,Rochester,Irondequoit,,NY,"Monroe County",America/New_York,585,NA,US,43.23,-77.59,21990 +14618,STANDARD,0,Rochester,"Loehmanns Plaza, Loehmanns Plz",,NY,"Monroe County",America/New_York,585,NA,US,43.11,-77.55,19990 +14619,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.14,-77.65,11070 +14620,STANDARD,0,Rochester,Brighton,,NY,"Monroe County",America/New_York,585,NA,US,43.13,-77.61,15390 +14621,STANDARD,0,Rochester,,Irondequoit,NY,"Monroe County",America/New_York,585,NA,US,43.19,-77.6,23700 +14622,STANDARD,0,Rochester,Irondequoit,,NY,"Monroe County",America/New_York,585,NA,US,43.22,-77.55,10900 +14623,STANDARD,0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.09,-77.64,15340 +14624,STANDARD,0,Rochester,"Gates, Westgate",,NY,"Monroe County",America/New_York,585,NA,US,43.13,-77.73,34850 +14625,STANDARD,0,Rochester,Panorama,,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.51,10060 +14626,STANDARD,0,Rochester,"Greece, Ridgemont",,NY,"Monroe County",America/New_York,585,NA,US,43.22,-77.71,27620 +14627,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.13,-77.63,147 +14638,UNIQUE,0,Rochester,,"Bank Of America",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14639,UNIQUE,0,Rochester,,Hsbc,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14642,UNIQUE,0,Rochester,,"Strong Memorial Hospital",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,23 +14643,UNIQUE,0,Rochester,,"Jp Morgan Bank",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14644,UNIQUE,0,Rochester,,Xerox,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14645,UNIQUE,1,Rochester,,Mccurdy's,NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14646,UNIQUE,0,Rochester,,Frontier,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14647,UNIQUE,0,Rochester,,"Excellus Bcbs",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14649,UNIQUE,0,Rochester,,"Roch Gas & Elec Corp",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14650,UNIQUE,0,Rochester,,"Kodak Office",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,291 +14651,UNIQUE,0,Rochester,,"Eastman Kodak",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14652,UNIQUE,0,Rochester,,"Kodak Park",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14653,UNIQUE,0,Rochester,,"Kodak Apparatus Division",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14664,UNIQUE,1,Rochester,,"Xerox Corp",NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14673,UNIQUE,1,Rochester,,"Chase Lincoln",NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14683,UNIQUE,1,Rochester,,"Chase Lincoln",NY,"Monroe County",America/New_York,585,NA,US,43.15,-77.6,0 +14692,"PO BOX",0,Rochester,,,NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,536 +14694,UNIQUE,0,Rochester,,"West Group",NY,"Monroe County",America/New_York,585,NA,US,43.16,-77.61,0 +14701,STANDARD,0,Jamestown,"Fluvanna, West Ellicott",,NY,"Chautauqua County",America/New_York,716,NA,US,42.09,-79.23,29330 +14702,"PO BOX",0,Jamestown,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.09,-79.23,541 +14706,STANDARD,0,Allegany,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.09,-78.49,5230 +14707,"PO BOX",0,Allentown,,,NY,"Allegany County",America/New_York,585,NA,US,42.08,-78.06,231 +14708,STANDARD,0,Alma,,,NY,"Allegany County",America/New_York,,NA,US,42.01,-78.02,175 +14709,STANDARD,0,Angelica,,,NY,"Allegany County",America/New_York,585,NA,US,42.3,-78.02,1330 +14710,STANDARD,0,Ashville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.11,-79.42,2970 +14711,STANDARD,0,Belfast,,,NY,"Allegany County",America/New_York,585,NA,US,42.33,-78.12,1550 +14712,STANDARD,0,"Bemus Point",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.16,-79.39,2830 +14714,STANDARD,0,"Black Creek",,,NY,"Allegany County",America/New_York,585,NA,US,42.29,-78.24,370 +14715,STANDARD,0,Bolivar,,"Alma, South Bolivar",NY,"Allegany County",America/New_York,585,NA,US,42.06,-78.17,2230 +14716,STANDARD,0,Brocton,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.38,-79.44,1810 +14717,STANDARD,0,Caneadea,,,NY,"Allegany County",America/New_York,585,NA,US,42.35,-78.21,480 +14718,STANDARD,0,Cassadaga,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.34,-79.31,1590 +14719,STANDARD,0,Cattaraugus,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.32,-78.86,2620 +14720,"PO BOX",0,Celoron,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.11,-79.28,763 +14721,STANDARD,0,Ceres,,,NY,"Allegany County",America/New_York,"585,716",NA,US,42,-78.27,190 +14722,"PO BOX",0,Chautauqua,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.21,-79.47,219 +14723,STANDARD,0,"Cherry Creek",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.29,-79.1,990 +14724,STANDARD,0,Clymer,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.05,-79.66,2360 +14726,STANDARD,0,"Conewango Valley","Conewango Vly",,NY,"Cattaraugus County",America/New_York,716,NA,US,42.26,-79.01,890 +14727,STANDARD,0,Cuba,,,NY,"Allegany County",America/New_York,"585,716",NA,US,42.21,-78.27,4290 +14728,STANDARD,0,Dewittville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.24,-79.4,900 +14729,STANDARD,0,"East Otto",,,NY,"Cattaraugus County",America/New_York,,NA,US,42.4,-78.74,700 +14730,"PO BOX",0,"East Randolph",,,NY,"Cattaraugus County",America/New_York,,NA,US,42.17,-78.95,108 +14731,STANDARD,0,Ellicottville,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.27,-78.67,1230 +14732,"PO BOX",0,Ellington,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.23,-79.12,295 +14733,STANDARD,0,Falconer,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.11,-79.19,3310 +14735,STANDARD,0,Fillmore,,,NY,"Allegany County",America/New_York,585,NA,US,42.46,-78.11,2220 +14736,STANDARD,0,"Findley Lake",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.14,-79.75,400 +14737,STANDARD,0,Franklinville,,,NY,"Cattaraugus County",America/New_York,"585,716",NA,US,42.33,-78.45,3260 +14738,STANDARD,0,Frewsburg,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.05,-79.16,3150 +14739,STANDARD,0,Friendship,,,NY,"Allegany County",America/New_York,585,NA,US,42.2,-78.14,2260 +14740,STANDARD,0,Gerry,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.22,-79.18,1050 +14741,STANDARD,0,"Great Valley",,Humphrey,NY,"Cattaraugus County",America/New_York,,NA,US,42.21,-78.59,1670 +14742,"PO BOX",0,Greenhurst,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.12,-79.31,305 +14743,STANDARD,0,Hinsdale,Ischua,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.16,-78.38,1520 +14744,STANDARD,0,Houghton,,,NY,"Allegany County",America/New_York,585,NA,US,42.42,-78.16,1010 +14745,"PO BOX",0,Hume,,,NY,"Allegany County",America/New_York,,NA,US,42.47,-78.14,139 +14747,STANDARD,0,Kennedy,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.14,-79.07,1940 +14748,STANDARD,0,"Kill Buck",,Killbuck,NY,"Cattaraugus County",America/New_York,716,NA,US,42.14,-78.61,550 +14750,STANDARD,0,Lakewood,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.1,-79.32,4280 +14751,"PO BOX",0,Leon,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.3,-79,96 +14752,"PO BOX",0,"Lily Dale",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.35,-79.32,159 +14753,STANDARD,0,Limestone,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.02,-78.63,860 +14754,STANDARD,0,"Little Genesee","Little Genese",,NY,"Allegany County",America/New_York,585,NA,US,42.02,-78.23,550 +14755,STANDARD,0,"Little Valley",,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.24,-78.79,2200 +14756,"PO BOX",0,"Maple Springs",,,NY,"Chautauqua County",America/New_York,716,NA,US,42.2,-79.42,111 +14757,STANDARD,0,Mayville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.25,-79.5,2530 +14758,"PO BOX",0,Niobe,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.01,-79.45,0 +14760,STANDARD,0,Olean,"Knapp Creek",,NY,"Cattaraugus County",America/New_York,"585,716",NA,US,42.08,-78.43,14330 +14766,"PO BOX",0,Otto,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.39,-78.83,131 +14767,STANDARD,0,Panama,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.07,-79.48,1700 +14769,STANDARD,0,Portland,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.37,-79.47,750 +14770,STANDARD,0,Portville,,,NY,"Cattaraugus County",America/New_York,"585,716",NA,US,42.03,-78.33,2510 +14772,STANDARD,0,Randolph,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.16,-78.97,3260 +14774,"PO BOX",0,Richburg,,,NY,"Allegany County",America/New_York,,NA,US,42.09,-78.15,305 +14775,STANDARD,0,Ripley,,Forsyth,NY,"Chautauqua County",America/New_York,716,NA,US,42.26,-79.71,2070 +14777,STANDARD,0,Rushford,,,NY,"Allegany County",America/New_York,"585,716",NA,US,42.39,-78.27,520 +14778,"PO BOX",0,"Saint Bonaventure","St Bonas","St Bonaventure",NY,"Cattaraugus County",America/New_York,,NA,US,42.08,-78.48,43 +14779,STANDARD,0,Salamanca,,,NY,"Cattaraugus County",America/New_York,716,NA,US,42.16,-78.72,5390 +14781,STANDARD,0,Sherman,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.16,-79.59,1820 +14782,STANDARD,0,Sinclairville,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.26,-79.25,1930 +14783,"PO BOX",0,Steamburg,,,NY,"Cattaraugus County",America/New_York,,NA,US,42.08,-78.89,366 +14784,STANDARD,0,Stockton,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.31,-79.38,740 +14785,"PO BOX",0,Stow,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.15,-79.41,174 +14786,"PO BOX",0,"West Clarksville","W Clarksville",,NY,"Allegany County",America/New_York,,NA,US,42.13,-78.25,222 +14787,STANDARD,0,Westfield,,,NY,"Chautauqua County",America/New_York,716,NA,US,42.32,-79.57,4010 +14788,"PO BOX",0,"Westons Mills",,"Weston Mills",NY,"Cattaraugus County",America/New_York,,NA,US,42.06,-78.38,248 +14801,STANDARD,0,Addison,,,NY,"Steuben County",America/New_York,607,NA,US,42.1,-77.23,4600 +14802,STANDARD,0,Alfred,,,NY,"Allegany County",America/New_York,607,NA,US,42.25,-77.79,620 +14803,STANDARD,0,"Alfred Station","Alfred Sta",,NY,"Allegany County",America/New_York,,NA,US,42.24,-77.81,1070 +14804,STANDARD,0,Almond,,,NY,"Allegany County",America/New_York,607,NA,US,42.32,-77.85,1170 +14805,STANDARD,0,Alpine,,,NY,"Schuyler County",America/New_York,607,NA,US,42.31,-76.72,980 +14806,STANDARD,0,Andover,,,NY,"Allegany County",America/New_York,607,NA,US,42.15,-77.79,1880 +14807,STANDARD,0,Arkport,,,NY,"Steuben County",America/New_York,607,NA,US,42.39,-77.69,2560 +14808,STANDARD,0,Atlanta,"N Cohocton, North Cohocton",,NY,"Steuben County",America/New_York,585,NA,US,42.56,-77.47,520 +14809,STANDARD,0,Avoca,Wallace,,NY,"Steuben County",America/New_York,607,NA,US,42.4,-77.42,2030 +14810,STANDARD,0,Bath,"Veterans Administration, Veterans Admn",,NY,"Steuben County",America/New_York,607,NA,US,42.33,-77.31,9120 +14812,STANDARD,0,"Beaver Dams",,,NY,"Schuyler County",America/New_York,,NA,US,42.29,-76.96,2850 +14813,STANDARD,0,Belmont,,,NY,"Allegany County",America/New_York,585,NA,US,42.22,-78.03,1860 +14814,STANDARD,0,"Big Flats",,,NY,"Chemung County",America/New_York,607,NA,US,42.13,-76.93,1910 +14815,STANDARD,0,Bradford,,,NY,"Schuyler County",America/New_York,607,NA,US,42.37,-77.1,800 +14816,STANDARD,0,Breesport,,,NY,"Chemung County",America/New_York,607,NA,US,42.17,-76.73,610 +14817,STANDARD,0,Brooktondale,,,NY,"Tompkins County",America/New_York,607,NA,US,42.38,-76.39,2200 +14818,STANDARD,0,Burdett,,,NY,"Schuyler County",America/New_York,607,NA,US,42.41,-76.84,1590 +14819,STANDARD,0,Cameron,,,NY,"Steuben County",America/New_York,607,NA,US,42.19,-77.4,540 +14820,STANDARD,0,"Cameron Mills",,,NY,"Steuben County",America/New_York,607,NA,US,42.18,-77.36,580 +14821,STANDARD,0,Campbell,,,NY,"Steuben County",America/New_York,607,NA,US,42.23,-77.19,2860 +14822,STANDARD,0,Canaseraga,,,NY,"Allegany County",America/New_York,607,NA,US,42.46,-77.77,920 +14823,STANDARD,0,Canisteo,,,NY,"Steuben County",America/New_York,607,NA,US,42.27,-77.6,3150 +14824,STANDARD,0,Cayuta,,,NY,"Schuyler County",America/New_York,607,NA,US,42.28,-76.69,600 +14825,STANDARD,0,Chemung,,,NY,"Chemung County",America/New_York,607,NA,US,42.06,-76.62,670 +14826,STANDARD,0,Cohocton,,,NY,"Steuben County",America/New_York,585,NA,US,42.5,-77.5,1730 +14827,"PO BOX",0,"Coopers Plains","Coopers Plns",,NY,"Steuben County",America/New_York,,NA,US,42.18,-77.14,278 +14830,STANDARD,0,Corning,"South Corning",,NY,"Steuben County",America/New_York,607,NA,US,42.14,-77.05,16860 +14831,UNIQUE,0,Corning,,"Corning Inc",NY,"Steuben County",America/New_York,607,NA,US,42.14,-77.05,25 +14836,STANDARD,0,Dalton,,,NY,"Livingston County",America/New_York,585,NA,US,42.54,-77.89,870 +14837,STANDARD,0,Dundee,,,NY,"Yates County",America/New_York,607,NA,US,42.52,-76.97,4430 +14838,STANDARD,0,Erin,,,NY,"Chemung County",America/New_York,607,NA,US,42.18,-76.67,1670 +14839,STANDARD,0,Greenwood,,,NY,"Steuben County",America/New_York,607,NA,US,42.13,-77.64,590 +14840,STANDARD,0,Hammondsport,,,NY,"Steuben County",America/New_York,607,NA,US,42.4,-77.22,2620 +14841,STANDARD,0,Hector,Valois,,NY,"Schuyler County",America/New_York,,NA,US,42.5,-76.87,730 +14842,STANDARD,0,Himrod,,,NY,"Yates County",America/New_York,315,NA,US,42.58,-76.95,700 +14843,STANDARD,0,Hornell,"North Hornell",,NY,"Steuben County",America/New_York,607,NA,US,42.32,-77.66,10420 +14845,STANDARD,0,Horseheads,,,NY,"Chemung County",America/New_York,607,NA,US,42.16,-76.82,18630 +14846,STANDARD,0,Hunt,,,NY,"Livingston County",America/New_York,585,NA,US,42.52,-77.98,580 +14847,STANDARD,0,Interlaken,,,NY,"Seneca County",America/New_York,607,NA,US,42.61,-76.72,2080 +14850,STANDARD,0,Ithaca,,"Ithaca Clg, Ithaca College",NY,"Tompkins County",America/New_York,607,NA,US,42.44,-76.5,38440 +14851,"PO BOX",0,Ithaca,,,NY,"Tompkins County",America/New_York,607,NA,US,42.44,-76.5,442 +14852,"PO BOX",0,Ithaca,,,NY,"Tompkins County",America/New_York,607,NA,US,42.44,-76.5,377 +14853,STANDARD,0,Ithaca,,,NY,"Tompkins County",America/New_York,607,NA,US,42.45,-76.48,130 +14854,"PO BOX",0,Jacksonville,,,NY,"Tompkins County",America/New_York,607,NA,US,42.51,-76.61,209 +14855,STANDARD,0,Jasper,,,NY,"Steuben County",America/New_York,607,NA,US,42.12,-77.5,930 +14856,"PO BOX",0,Kanona,,,NY,"Steuben County",America/New_York,,NA,US,42.38,-77.37,229 +14857,"PO BOX",0,Lakemont,,,NY,"Yates County",America/New_York,607,NA,US,42.51,-76.92,104 +14858,STANDARD,0,Lindley,,,NY,"Steuben County",America/New_York,607,NA,US,42.02,-77.14,1430 +14859,STANDARD,0,Lockwood,,,NY,"Tioga County",America/New_York,607,NA,US,42.09,-76.55,1000 +14860,STANDARD,0,Lodi,,,NY,"Seneca County",America/New_York,607,NA,US,42.61,-76.82,920 +14861,STANDARD,0,Lowman,,,NY,"Chemung County",America/New_York,607,NA,US,42.02,-76.72,1120 +14863,"PO BOX",0,Mecklenburg,,,NY,"Schuyler County",America/New_York,607,NA,US,42.45,-76.71,178 +14864,STANDARD,0,Millport,,,NY,"Chemung County",America/New_York,607,NA,US,42.26,-76.83,1040 +14865,STANDARD,0,"Montour Falls",,,NY,"Schuyler County",America/New_York,607,NA,US,42.34,-76.84,2080 +14867,STANDARD,0,Newfield,,,NY,"Tompkins County",America/New_York,607,NA,US,42.36,-76.59,4870 +14869,STANDARD,0,Odessa,,,NY,"Schuyler County",America/New_York,607,NA,US,42.33,-76.78,1100 +14870,STANDARD,0,"Painted Post",,,NY,"Steuben County",America/New_York,,NA,US,42.16,-77.09,8540 +14871,STANDARD,0,"Pine City",,,NY,"Chemung County",America/New_York,607,NA,US,42.03,-76.86,3850 +14872,STANDARD,0,"Pine Valley",,,NY,"Chemung County",America/New_York,607,NA,US,42.24,-76.87,510 +14873,STANDARD,0,Prattsburgh,,,NY,"Steuben County",America/New_York,607,NA,US,42.52,-77.29,2040 +14874,STANDARD,0,Pulteney,,,NY,"Steuben County",America/New_York,607,NA,US,42.53,-77.18,180 +14876,"PO BOX",0,"Reading Center","Reading Ctr",,NY,"Schuyler County",America/New_York,607,NA,US,42.43,-76.93,175 +14877,STANDARD,0,Rexville,,,NY,"Steuben County",America/New_York,,NA,US,42.08,-77.66,460 +14878,STANDARD,0,"Rock Stream",,,NY,"Schuyler County",America/New_York,,NA,US,42.47,-76.92,650 +14879,STANDARD,0,Savona,,,NY,"Steuben County",America/New_York,607,NA,US,42.28,-77.22,1960 +14880,STANDARD,0,Scio,,,NY,"Allegany County",America/New_York,,NA,US,42.17,-77.97,1340 +14881,STANDARD,0,"Slaterville Springs","Slatervle Spg",,NY,"Tompkins County",America/New_York,607,NA,US,42.4,-76.36,220 +14882,STANDARD,0,Lansing,Ithaca,,NY,"Tompkins County",America/New_York,607,NA,US,42.58,-76.55,3540 +14883,STANDARD,0,Spencer,"West Danby",,NY,"Tioga County",America/New_York,607,NA,US,42.21,-76.49,3630 +14884,STANDARD,0,Swain,,,NY,"Allegany County",America/New_York,607,NA,US,42.48,-77.88,300 +14885,STANDARD,0,Troupsburg,,,NY,"Steuben County",America/New_York,607,NA,US,42.04,-77.54,600 +14886,STANDARD,0,Trumansburg,,,NY,"Tompkins County",America/New_York,607,NA,US,42.54,-76.66,5840 +14887,"PO BOX",0,Tyrone,,,NY,"Schuyler County",America/New_York,607,NA,US,42.4,-77.05,120 +14889,STANDARD,0,"Van Etten",,,NY,"Chemung County",America/New_York,607,NA,US,42.19,-76.55,1340 +14891,STANDARD,0,"Watkins Glen",,,NY,"Schuyler County",America/New_York,607,NA,US,42.38,-76.87,3610 +14892,STANDARD,0,Waverly,,,NY,"Tioga County",America/New_York,607,NA,US,42.01,-76.52,6520 +14893,"PO BOX",0,Wayne,,,NY,"Steuben County",America/New_York,607,NA,US,42.47,-77.11,145 +14894,STANDARD,0,Wellsburg,,,NY,"Chemung County",America/New_York,607,NA,US,42.01,-76.72,1160 +14895,STANDARD,0,Wellsville,,,NY,"Allegany County",America/New_York,585,NA,US,42.12,-77.94,7270 +14897,STANDARD,0,Whitesville,,,NY,"Allegany County",America/New_York,607,NA,US,42.03,-77.8,740 +14898,STANDARD,0,Woodhull,,,NY,"Steuben County",America/New_York,607,NA,US,42.08,-77.4,1220 +14901,STANDARD,0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.09,-76.75,9660 +14902,"PO BOX",0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.08,-76.8,399 +14903,STANDARD,0,Elmira,"Elmira Heights, Elmira Hgts, Elmira Hts",,NY,"Chemung County",America/New_York,607,NA,US,42.13,-76.87,6650 +14904,STANDARD,0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.08,-76.8,12270 +14905,STANDARD,0,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.09,-76.84,7740 +14925,STANDARD,1,Elmira,,,NY,"Chemung County",America/New_York,607,NA,US,42.08,-76.8,0 +15001,STANDARD,0,Aliquippa,"Macarthur, W Aliquippa, West Aliquippa","Aliq, Mac Arthur",PA,"Beaver County",America/New_York,724,NA,US,40.61,-80.25,28530 +15003,STANDARD,0,Ambridge,"Fair Oaks",,PA,"Beaver County",America/New_York,724,NA,US,40.59,-80.22,9750 +15004,"PO BOX",0,Atlasburg,,,PA,"Washington County",America/New_York,724,NA,US,40.35,-80.38,355 +15005,STANDARD,0,Baden,,,PA,"Beaver County",America/New_York,724,NA,US,40.63,-80.22,8750 +15006,"PO BOX",0,Bairdford,,,PA,"Allegheny County",America/New_York,724,NA,US,40.63,-79.88,359 +15007,STANDARD,0,Bakerstown,,,PA,"Allegheny County",America/New_York,724,NA,US,40.65,-79.93,360 +15009,STANDARD,0,Beaver,"Vanport, W Bridgewater, West Bridgewater",,PA,"Beaver County",America/New_York,"412,724",NA,US,40.69,-80.3,14200 +15010,STANDARD,0,"Beaver Falls","Patterson Heights, Patterson Hts, Racine",,PA,"Beaver County",America/New_York,"412,724",NA,US,40.76,-80.32,24190 +15012,STANDARD,0,"Belle Vernon","Belle Vrn Br, N Bell Vernon, N Belle Vernon, N Belle Vrn, North Belle Vernon, Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.12,-79.86,14060 +15014,STANDARD,0,Brackenridge,,,PA,"Allegheny County",America/New_York,878,NA,US,40.61,-79.74,2650 +15015,STANDARD,0,Bradfordwoods,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.63,-80.08,1290 +15017,STANDARD,0,Bridgeville,,,PA,"Allegheny County",America/New_York,412,NA,US,40.35,-80.1,14880 +15018,STANDARD,0,"Buena Vista",,,PA,"Allegheny County",America/New_York,412,NA,US,40.27,-79.8,750 +15019,STANDARD,0,Bulger,,,PA,"Washington County",America/New_York,724,NA,US,40.42,-80.35,1350 +15020,"PO BOX",0,Bunola,,,PA,"Allegheny County",America/New_York,412,NA,US,40.23,-79.95,263 +15021,STANDARD,0,Burgettstown,"Eldersville, Paris",Burgettstn,PA,"Washington County",America/New_York,724,NA,US,40.38,-80.39,6210 +15022,STANDARD,0,Charleroi,"N Charleroi, North Charleroi",,PA,"Washington County",America/New_York,724,NA,US,40.13,-79.9,8600 +15024,STANDARD,0,Cheswick,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.54,-79.8,7970 +15025,STANDARD,0,Clairton,"Floreffe, Jefferson Hills, Jefferson Hls, Large",,PA,"Allegheny County",America/New_York,412,NA,US,40.29,-79.88,15150 +15026,STANDARD,0,Clinton,,,PA,"Beaver County",America/New_York,724,NA,US,40.51,-80.34,4040 +15027,STANDARD,0,Conway,,,PA,"Beaver County",America/New_York,724,NA,US,40.66,-80.24,2060 +15028,"PO BOX",0,Coulters,,,PA,"Allegheny County",America/New_York,878,NA,US,40.31,-79.79,170 +15030,STANDARD,0,Creighton,,,PA,"Allegheny County",America/New_York,724,NA,US,40.58,-79.78,850 +15031,STANDARD,0,Cuddy,,,PA,"Allegheny County",America/New_York,412,NA,US,40.35,-80.16,500 +15032,"PO BOX",0,Curtisville,,,PA,"Allegheny County",America/New_York,724,NA,US,40.64,-79.84,244 +15033,STANDARD,0,Donora,,,PA,"Washington County",America/New_York,724,NA,US,40.17,-79.86,3550 +15034,STANDARD,0,Dravosburg,,,PA,"Allegheny County",America/New_York,412,NA,US,40.35,-79.89,1350 +15035,STANDARD,0,"East Mc Keesport","E Mckeesport","E Mc Keesport, East Mckeesport",PA,"Allegheny County",America/New_York,878,NA,US,40.38,-79.81,1770 +15037,STANDARD,0,Elizabeth,,,PA,"Allegheny County",America/New_York,412,NA,US,40.27,-79.88,9730 +15038,"PO BOX",0,Elrama,,,PA,"Washington County",America/New_York,724,NA,US,40.25,-79.93,379 +15042,STANDARD,0,Freedom,,,PA,"Beaver County",America/New_York,724,NA,US,40.68,-80.25,7520 +15043,STANDARD,0,Georgetown,,,PA,"Beaver County",America/New_York,724,NA,US,40.64,-80.49,1930 +15044,STANDARD,0,Gibsonia,,,PA,"Allegheny County",America/New_York,724,NA,US,40.63,-79.94,29140 +15045,STANDARD,0,Glassport,,,PA,"Allegheny County",America/New_York,878,NA,US,40.32,-79.88,3500 +15046,STANDARD,0,Crescent,Glenwillard,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.55,-80.23,2360 +15047,"PO BOX",0,Greenock,,,PA,"Allegheny County",America/New_York,878,NA,US,40.32,-79.81,378 +15049,STANDARD,0,Harwick,,,PA,"Allegheny County",America/New_York,724,NA,US,40.56,-79.81,860 +15050,STANDARD,0,Hookstown,,,PA,"Beaver County",America/New_York,724,NA,US,40.59,-80.47,2430 +15051,STANDARD,0,Indianola,,,PA,"Allegheny County",America/New_York,412,NA,US,40.56,-79.87,360 +15052,STANDARD,0,Industry,,,PA,"Beaver County",America/New_York,724,NA,US,40.65,-80.4,3060 +15053,STANDARD,0,Joffre,,,PA,"Washington County",America/New_York,724,NA,US,40.38,-80.36,200 +15054,"PO BOX",0,Langeloth,,,PA,"Washington County",America/New_York,724,NA,US,40.36,-80.41,589 +15055,STANDARD,0,Lawrence,,,PA,"Washington County",America/New_York,724,NA,US,40.31,-80.12,1280 +15056,STANDARD,0,Leetsdale,,,PA,"Allegheny County",America/New_York,412,NA,US,40.56,-80.21,950 +15057,STANDARD,0,"Mc Donald",,Mcdonald,PA,"Washington County",America/New_York,724,NA,US,40.37,-80.23,15970 +15059,STANDARD,0,Midland,,,PA,"Beaver County",America/New_York,724,NA,US,40.63,-80.45,3300 +15060,"PO BOX",0,Midway,,,PA,"Washington County",America/New_York,724,NA,US,40.37,-80.29,991 +15061,STANDARD,0,Monaca,,,PA,"Beaver County",America/New_York,724,NA,US,40.68,-80.27,11300 +15062,STANDARD,0,Monessen,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.15,-79.88,5570 +15063,STANDARD,0,Monongahela,,,PA,"Washington County",America/New_York,724,NA,US,40.19,-79.92,9830 +15064,STANDARD,0,Morgan,,,PA,"Allegheny County",America/New_York,412,NA,US,40.36,-80.15,310 +15065,STANDARD,0,"Natrona Heights","Natrona Hts",,PA,"Allegheny County",America/New_York,878,NA,US,40.64,-79.73,9890 +15066,STANDARD,0,"New Brighton",,,PA,"Beaver County",America/New_York,"412,724",NA,US,40.73,-80.3,10370 +15067,STANDARD,0,"New Eagle",,Courtney,PA,"Washington County",America/New_York,724,NA,US,40.2,-79.95,1880 +15068,STANDARD,0,"New Kensington","Arnold, Barking, Lower Burrell, New Kensingtn, Parnassus",,PA,"Westmoreland County",America/New_York,724,NA,US,40.56,-79.75,32940 +15069,UNIQUE,0,"New Kensington","New Kensingtn","Alcoa Center",PA,"Westmoreland County",America/New_York,724,NA,US,40.56,-79.75,0 +15071,STANDARD,0,Oakdale,Noblestown,,PA,"Allegheny County",America/New_York,"724,412",NA,US,40.39,-80.18,10700 +15072,"PO BOX",0,Pricedale,"Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.14,-79.86,146 +15074,STANDARD,0,Rochester,,,PA,"Beaver County",America/New_York,"412,724,878",NA,US,40.7,-80.28,7600 +15075,"PO BOX",0,"Rural Ridge",,,PA,"Allegheny County",America/New_York,878,NA,US,40.59,-79.83,207 +15076,STANDARD,0,Russellton,,,PA,"Allegheny County",America/New_York,724,NA,US,40.61,-79.83,810 +15077,"PO BOX",0,Shippingport,,,PA,"Beaver County",America/New_York,724,NA,US,40.62,-80.42,188 +15078,STANDARD,0,Slovan,,,PA,"Washington County",America/New_York,724,NA,US,40.36,-80.38,430 +15081,"PO BOX",0,"South Heights",,,PA,"Beaver County",America/New_York,724,NA,US,40.57,-80.24,459 +15082,"PO BOX",0,Sturgeon,,,PA,"Allegheny County",America/New_York,878,NA,US,40.38,-80.21,386 +15083,STANDARD,0,Sutersville,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.26,-79.79,900 +15084,STANDARD,0,Tarentum,,,PA,"Allegheny County",America/New_York,724,NA,US,40.6,-79.76,8360 +15085,STANDARD,0,Trafford,,,PA,"Westmoreland County",America/New_York,412,NA,US,40.38,-79.75,7480 +15086,STANDARD,0,Warrendale,,,PA,"Allegheny County",America/New_York,724,NA,US,40.67,-80.11,560 +15087,"PO BOX",0,Webster,"Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.19,-79.85,238 +15088,"PO BOX",0,"West Elizabeth","W Elizabeth",,PA,"Allegheny County",America/New_York,878,NA,US,40.27,-79.9,631 +15089,STANDARD,0,"West Newton","Rostraver Township, Rostraver Twp",,PA,"Westmoreland County",America/New_York,724,NA,US,40.2,-79.76,5560 +15090,STANDARD,0,Wexford,,,PA,"Allegheny County",America/New_York,"724,878",NA,US,40.63,-80.05,23900 +15091,"PO BOX",0,Wildwood,,,PA,"Allegheny County",America/New_York,412,NA,US,40.57,-79.95,115 +15095,"PO BOX",0,Warrendale,,"Bulk Mail Ctr",PA,"Allegheny County",America/New_York,724,NA,US,40.64,-80.09,0 +15096,UNIQUE,0,Warrendale,,"Soc Auto Engineers",PA,"Allegheny County",America/New_York,724,NA,US,40.64,-80.09,0 +15101,STANDARD,0,"Allison Park",,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.57,-79.95,24110 +15102,STANDARD,0,"Bethel Park",,,PA,"Allegheny County",America/New_York,412,NA,US,40.32,-80.03,28950 +15104,STANDARD,0,Braddock,Rankin,,PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.86,6020 +15106,STANDARD,0,Carnegie,Heidelberg,"Collier Township, Collier Twp, Rennerdale",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-80.08,16810 +15108,STANDARD,0,Coraopolis,"Moon Township, Moon Twp","Carpolis, Coropolis",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-80.16,37850 +15110,STANDARD,0,Duquesne,,,PA,"Allegheny County",America/New_York,412,NA,US,40.37,-79.85,3950 +15112,STANDARD,0,"East Pittsburgh","E Pittsburgh","East Pgh",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.84,2650 +15116,STANDARD,0,Glenshaw,,,PA,"Allegheny County",America/New_York,412,NA,US,40.52,-79.95,13950 +15120,STANDARD,0,Homestead,"Munhall, W Homestead, West Homestead",,PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.9,15350 +15122,STANDARD,0,"West Mifflin",Pittsburgh,"W Mifflin/Pleasant Hills",PA,"Allegheny County",America/New_York,412,NA,US,40.36,-79.9,17260 +15123,STANDARD,0,"West Mifflin",,"W Mifflin/Pleasant Hills, West Mifflin Century Mall",PA,"Allegheny County",America/New_York,412,NA,US,40.35,-79.9,0 +15126,STANDARD,0,Imperial,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.45,-80.25,6730 +15127,"PO BOX",0,Ingomar,,,PA,"Allegheny County",America/New_York,878,NA,US,40.56,-80.02,283 +15129,STANDARD,0,"South Park",Library,,PA,"Allegheny County",America/New_York,878,NA,US,40.29,-79.99,10260 +15131,STANDARD,0,Mckeesport,"White Oak",,PA,"Allegheny County",America/New_York,412,NA,US,40.34,-79.8,7280 +15132,STANDARD,0,Mckeesport,,,PA,"Allegheny County",America/New_York,412,NA,US,40.33,-79.83,14700 +15133,STANDARD,0,Mckeesport,,"Port Vue",PA,"Allegheny County",America/New_York,412,NA,US,40.33,-79.86,5460 +15134,"PO BOX",0,Mckeesport,,,PA,"Allegheny County",America/New_York,412,NA,US,40.33,-79.83,237 +15135,STANDARD,0,Mckeesport,Boston,,PA,"Allegheny County",America/New_York,412,NA,US,40.31,-79.81,4510 +15136,STANDARD,0,"Mc Kees Rocks",,"Mckees Rocks",PA,"Allegheny County",America/New_York,412,NA,US,40.47,-80.1,20030 +15137,STANDARD,0,"North Versailles","N Versailles",,PA,"Allegheny County",America/New_York,878,NA,US,40.37,-79.8,8540 +15139,STANDARD,0,Oakmont,,,PA,"Allegheny County",America/New_York,412,NA,US,40.52,-79.84,6080 +15140,STANDARD,0,Pitcairn,Monroeville,,PA,"Allegheny County",America/New_York,412,NA,US,40.41,-79.78,2360 +15142,STANDARD,0,Presto,,,PA,"Allegheny County",America/New_York,412,NA,US,40.38,-80.12,1860 +15143,STANDARD,0,Sewickley,Edgeworth,,PA,"Allegheny County",America/New_York,412,NA,US,40.57,-80.15,21220 +15144,STANDARD,0,Springdale,,,PA,"Allegheny County",America/New_York,724,NA,US,40.55,-79.78,3580 +15145,STANDARD,0,"Turtle Creek",,,PA,"Allegheny County",America/New_York,412,NA,US,40.42,-79.82,5720 +15146,STANDARD,0,Monroeville,,,PA,"Allegheny County",America/New_York,412,NA,US,40.42,-79.76,25680 +15147,STANDARD,0,Verona,,,PA,"Allegheny County",America/New_York,412,NA,US,40.5,-79.84,13980 +15148,STANDARD,0,Wilmerding,Wall,,PA,"Allegheny County",America/New_York,412,NA,US,40.39,-79.81,1860 +15201,STANDARD,0,Pittsburgh,Arsenal,"Pgh, Pitt, Pitts",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.47,-79.95,10560 +15202,STANDARD,0,Pittsburgh,"Avalon, Bellevue, Bellvue, Ben Avon, Emsworth","Ben Avon Heights, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-80.07,17220 +15203,STANDARD,0,Pittsburgh,Carson,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.43,-79.97,6410 +15204,STANDARD,0,Pittsburgh,Corliss,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-80.06,6820 +15205,STANDARD,0,Pittsburgh,Crafton,"Ingram, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-80.1,20320 +15206,STANDARD,0,Pittsburgh,"East Liberty",,PA,"Allegheny County",America/New_York,412,NA,US,40.47,-79.91,22090 +15207,STANDARD,0,Pittsburgh,Hazelwood,,PA,"Allegheny County",America/New_York,412,NA,US,40.4,-79.93,8780 +15208,STANDARD,0,Pittsburgh,Homewood,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.45,-79.9,7770 +15209,STANDARD,0,Pittsburgh,Millvale,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.5,-79.97,10970 +15210,STANDARD,0,Pittsburgh,"Mount Oliver, Mt Oliver","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.41,-79.98,20140 +15211,STANDARD,0,Pittsburgh,"Mount Washington, Mt Washington","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-80.02,8560 +15212,STANDARD,0,Pittsburgh,Allegheny,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-79.99,21660 +15213,STANDARD,0,Pittsburgh,Oakland,,PA,"Allegheny County",America/New_York,"878,412,724",NA,US,40.44,-79.96,7230 +15214,STANDARD,0,Pittsburgh,Observatory,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.49,-80.01,12010 +15215,STANDARD,0,Pittsburgh,"Aspinwall, Sharpsburg","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.5,-79.91,11150 +15216,STANDARD,0,Pittsburgh,"South Hills","Beechview, Dormont, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-80.03,19990 +15217,STANDARD,0,Pittsburgh,"Squirrel Hill",,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.92,21290 +15218,STANDARD,0,Pittsburgh,Swissvale,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.42,-79.89,11670 +15219,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.44,-79.98,7480 +15220,STANDARD,0,Pittsburgh,Wabash,"Pgh, Pitt, Rook",PA,"Allegheny County",America/New_York,412,NA,US,40.42,-80.05,16460 +15221,STANDARD,0,Pittsburgh,Wilkinsburg,"Braddock Hills, Churchill, Forest Hills, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.86,23860 +15222,STANDARD,0,Pittsburgh,,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.45,-79.99,3610 +15223,STANDARD,0,Pittsburgh,Etna,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-79.95,6180 +15224,STANDARD,0,Pittsburgh,Bloomfield,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"878,412,724",NA,US,40.46,-79.94,7630 +15225,STANDARD,0,Pittsburgh,,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.51,-80.11,870 +15226,STANDARD,0,Pittsburgh,Brookline,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.4,-80.01,11930 +15227,STANDARD,0,Pittsburgh,Brentwood,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.38,-79.97,26790 +15228,STANDARD,0,Pittsburgh,"Mt Lebanon","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.37,-80.04,17180 +15229,STANDARD,0,Pittsburgh,"West View","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.52,-80.04,13410 +15230,"PO BOX",0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,676 +15231,"PO BOX",0,Pittsburgh,"Pgh Int Arprt",,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15232,STANDARD,0,Pittsburgh,Shadyside,"Pgh, Pitt",PA,"Allegheny County",America/New_York,"412,724,878",NA,US,40.45,-79.93,6760 +15233,STANDARD,0,Pittsburgh,Kilbuck,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-80.03,2120 +15234,STANDARD,0,Pittsburgh,"Castle Shann, Castle Shannon","Baldwin, Baldwin Township, BRA# 52, Castl Shannon, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.37,-80.02,12670 +15235,STANDARD,0,Pittsburgh,"Penn Hills","Pgh, Pitt, Universal",PA,"Allegheny County",America/New_York,412,NA,US,40.46,-79.82,30560 +15236,STANDARD,0,Pittsburgh,"Pleasant Hills, Pleasant Hls, West Mifflin","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.35,-79.98,29410 +15237,STANDARD,0,Pittsburgh,"Mc Knight, Mcknight","Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.55,-80.04,42230 +15238,STANDARD,0,Pittsburgh,Blawnox,"Fox Chapel, Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.54,-79.88,12850 +15239,STANDARD,0,Pittsburgh,Plum,"Pgh, Pitt",PA,"Allegheny County",America/New_York,412,NA,US,40.48,-79.74,20120 +15240,"PO BOX",0,Pittsburgh,,"Pgh, Pitt, Veterans Hospital",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15241,STANDARD,0,Pittsburgh,"Upper Saint Clair, Upper St Clair, Uppr St Clair","South Hills Village",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.33,-80.08,22040 +15242,"PO BOX",0,Pittsburgh,Greentree,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,61 +15243,STANDARD,0,Pittsburgh,Cedarhurst,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.38,-80.07,13340 +15244,"PO BOX",0,Pittsburgh,Montour,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,69 +15250,UNIQUE,0,Pittsburgh,,"Bank Of Ny Mellon",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15251,UNIQUE,0,Pittsburgh,,"Bank Of Ny Mellon",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15252,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15253,"PO BOX",0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15254,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15255,UNIQUE,0,Pittsburgh,,"Bell Telephone Co",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15257,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15258,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,45 +15259,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15260,STANDARD,0,Pittsburgh,,"Univ Of Pittsburgh",PA,"Allegheny County",America/New_York,"412,724",NA,US,40.44,-79.95,29 +15261,UNIQUE,0,Pittsburgh,,"Univ Of Pittsburgh",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15262,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15263,UNIQUE,1,Pittsburgh,,"Jones And Laughlin",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.98,0 +15264,"PO BOX",0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15265,UNIQUE,0,Pittsburgh,,"Pnc Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15266,UNIQUE,1,Pittsburgh,,"Duguesne Light Co",PA,,America/New_York,,NA,US,40.44,-79.99,0 +15267,UNIQUE,0,Pittsburgh,,Duguesne,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15268,UNIQUE,0,Pittsburgh,,"National City Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15270,UNIQUE,0,Pittsburgh,,"Columbia Gas Of Pa",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15272,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"724,412",NA,US,40.43,-79.97,75 +15273,STANDARD,1,Pittsburgh,,,PA,,America/New_York,,NA,US,40.37,-79.9,0 +15274,"PO BOX",0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15275,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,13 +15276,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.43,-79.97,0 +15277,UNIQUE,0,Pittsburgh,,"Eastern Area",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15278,UNIQUE,0,Pittsburgh,,"National City Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15279,UNIQUE,0,Pittsburgh,,"Duquesne Light Co",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15281,UNIQUE,0,Pittsburgh,,"Macys Dept Store",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15282,UNIQUE,0,Pittsburgh,,"Duquesne Univ",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,16 +15283,UNIQUE,0,Pittsburgh,,"AT & T",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15285,UNIQUE,1,Pittsburgh,,"Joseph Horne Co",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.99,0 +15286,UNIQUE,0,Pittsburgh,,"Mellon Bank",PA,"Allegheny County",America/New_York,412,NA,US,40.43,-79.97,0 +15288,STANDARD,1,Pittsburgh,Carnegie,,PA,,America/New_York,,NA,US,40.44,-79.94,0 +15289,UNIQUE,0,Pittsburgh,,"Carnegie Mellon Univ",PA,"Allegheny County",America/New_York,412,NA,US,40.44,-79.94,123 +15290,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"724,412",NA,US,40.46,-80.02,0 +15295,STANDARD,0,Pittsburgh,,,PA,"Allegheny County",America/New_York,"412,724",NA,US,40.43,-79.88,0 +15301,STANDARD,0,Washington,,Wash,PA,"Washington County",America/New_York,"412,724",NA,US,40.17,-80.24,41450 +15310,STANDARD,0,Aleppo,,,PA,"Greene County",America/New_York,724,NA,US,39.82,-80.45,210 +15311,STANDARD,0,Amity,,,PA,"Washington County",America/New_York,724,NA,US,40.05,-80.2,1200 +15312,STANDARD,0,Avella,Rea,,PA,"Washington County",America/New_York,"412,724",NA,US,40.28,-80.47,3110 +15313,"PO BOX",0,Beallsville,,,PA,"Washington County",America/New_York,724,NA,US,40.07,-80.02,432 +15314,STANDARD,0,Bentleyville,,,PA,"Washington County",America/New_York,724,NA,US,40.11,-80,3050 +15315,"PO BOX",0,Bobtown,,,PA,"Greene County",America/New_York,724,NA,US,39.75,-79.98,672 +15316,STANDARD,0,Brave,,,PA,"Greene County",America/New_York,724,NA,US,39.72,-80.25,210 +15317,STANDARD,0,Canonsburg,"Mc Murray, Mcmurray",,PA,"Washington County",America/New_York,724,NA,US,40.26,-80.18,40290 +15320,STANDARD,0,Carmichaels,,Fairdale,PA,"Greene County",America/New_York,724,NA,US,39.89,-79.97,4290 +15321,STANDARD,0,Cecil,,,PA,"Washington County",America/New_York,724,NA,US,40.32,-80.19,1610 +15322,STANDARD,0,Clarksville,,,PA,"Greene County",America/New_York,724,NA,US,39.97,-80.04,1690 +15323,STANDARD,0,Claysville,,,PA,"Washington County",America/New_York,724,NA,US,40.12,-80.41,3950 +15324,"PO BOX",0,Cokeburg,,,PA,"Washington County",America/New_York,724,NA,US,40.1,-80.07,619 +15325,"PO BOX",0,Crucible,,,PA,"Greene County",America/New_York,724,NA,US,39.95,-79.96,468 +15327,STANDARD,0,Dilliner,,,PA,"Greene County",America/New_York,724,NA,US,39.75,-79.99,1100 +15329,STANDARD,0,Prosperity,,,PA,"Washington County",America/New_York,724,NA,US,40.02,-80.25,1330 +15330,STANDARD,0,"Eighty Four",,,PA,"Washington County",America/New_York,724,NA,US,40.18,-80.13,5070 +15331,"PO BOX",0,Ellsworth,,,PA,"Washington County",America/New_York,724,NA,US,40.1,-80.02,968 +15332,STANDARD,0,Finleyville,,,PA,"Washington County",America/New_York,724,NA,US,40.25,-80,7490 +15333,STANDARD,0,Fredericktown,,,PA,"Washington County",America/New_York,724,NA,US,40.02,-80.03,1720 +15334,STANDARD,0,"Garards Fort",,,PA,"Greene County",America/New_York,724,NA,US,39.81,-79.97,186 +15336,"PO BOX",0,Gastonville,,,PA,"Washington County",America/New_York,724,NA,US,40.26,-80,116 +15337,STANDARD,0,Graysville,,,PA,"Greene County",America/New_York,724,NA,US,39.95,-80.38,530 +15338,STANDARD,0,Greensboro,,,PA,"Greene County",America/New_York,724,NA,US,39.78,-79.99,1320 +15339,"PO BOX",0,Hendersonville,Hendersonvlle,,PA,"Washington County",America/New_York,724,NA,US,40.32,-80.21,267 +15340,STANDARD,0,Hickory,,,PA,"Washington County",America/New_York,724,NA,US,40.3,-80.32,1280 +15341,STANDARD,0,Holbrook,,,PA,"Greene County",America/New_York,724,NA,US,39.84,-80.34,630 +15342,STANDARD,0,Houston,,,PA,"Washington County",America/New_York,412,NA,US,40.25,-80.21,4650 +15344,STANDARD,0,Jefferson,,,PA,"Greene County",America/New_York,724,NA,US,39.93,-80.05,1410 +15345,STANDARD,0,Marianna,,,PA,"Washington County",America/New_York,724,NA,US,40.01,-80.11,1310 +15346,"PO BOX",0,Mather,,,PA,"Greene County",America/New_York,724,NA,US,39.94,-80.08,644 +15347,"PO BOX",0,"Meadow Lands",,,PA,"Washington County",America/New_York,724,NA,US,40.22,-80.22,785 +15348,"PO BOX",0,Millsboro,,,PA,"Washington County",America/New_York,724,NA,US,39.99,-80,336 +15349,STANDARD,0,"Mount Morris","Davistown, Mt Morris",,PA,"Greene County",America/New_York,724,NA,US,39.75,-80.11,1440 +15350,"PO BOX",0,Muse,,,PA,"Washington County",America/New_York,724,NA,US,40.29,-80.2,663 +15351,"PO BOX",0,Nemacolin,,,PA,"Greene County",America/New_York,724,NA,US,39.88,-79.92,736 +15352,STANDARD,0,"New Freeport","Pine Bank",,PA,"Greene County",America/New_York,724,NA,US,39.75,-80.45,660 +15353,"PO BOX",0,Nineveh,,,PA,"Greene County",America/New_York,724,NA,US,39.96,-80.31,104 +15357,STANDARD,0,"Rices Landing",,,PA,"Greene County",America/New_York,724,NA,US,39.94,-79.99,1460 +15358,"PO BOX",0,Richeyville,,,PA,"Washington County",America/New_York,724,NA,US,40.06,-80,812 +15359,STANDARD,0,Rogersville,,,PA,"Greene County",America/New_York,724,NA,US,39.88,-80.28,210 +15360,STANDARD,0,"Scenery Hill",,,PA,"Washington County",America/New_York,724,NA,US,40.08,-80.07,1730 +15361,"PO BOX",0,Southview,,,PA,"Washington County",America/New_York,724,NA,US,40.33,-80.26,158 +15362,STANDARD,0,Spraggs,,,PA,"Greene County",America/New_York,724,NA,US,39.78,-80.22,610 +15363,STANDARD,0,Strabane,,,PA,"Washington County",America/New_York,724,NA,US,40.25,-80.2,720 +15364,STANDARD,0,Sycamore,,,PA,"Greene County",America/New_York,724,NA,US,39.95,-80.3,530 +15365,"PO BOX",0,Taylorstown,,,PA,"Washington County",America/New_York,724,NA,US,40.17,-80.38,131 +15366,"PO BOX",0,"Van Voorhis",,,PA,"Washington County",America/New_York,724,NA,US,40.16,-79.97,191 +15367,STANDARD,0,Venetia,,,PA,"Washington County",America/New_York,724,NA,US,40.26,-80.05,9660 +15368,"PO BOX",0,Vestaburg,,,PA,"Washington County",America/New_York,724,NA,US,40.01,-79.99,546 +15370,STANDARD,0,Waynesburg,,,PA,"Greene County",America/New_York,724,NA,US,39.89,-80.18,9750 +15376,STANDARD,0,"West Alexander","W Alexander",,PA,"Washington County",America/New_York,724,NA,US,40.1,-80.5,1570 +15377,STANDARD,0,"West Finley",,,PA,"Washington County",America/New_York,724,NA,US,39.99,-80.45,540 +15378,"PO BOX",0,Westland,,,PA,"Washington County",America/New_York,724,NA,US,40.28,-80.28,126 +15379,"PO BOX",0,"West Middletown","W Middletown",,PA,"Washington County",America/New_York,724,NA,US,40.24,-80.43,132 +15380,STANDARD,0,"Wind Ridge",,,PA,"Greene County",America/New_York,724,NA,US,39.88,-80.46,570 +15401,STANDARD,0,Uniontown,,"Oliphant Furnace",PA,"Fayette County",America/New_York,"412,724",NA,US,39.89,-79.72,25550 +15410,STANDARD,0,Adah,,,PA,"Fayette County",America/New_York,724,NA,US,39.91,-79.9,610 +15411,STANDARD,0,Addison,,,PA,"Somerset County",America/New_York,814,NA,US,39.74,-79.33,510 +15412,"PO BOX",0,Allenport,,,PA,"Washington County",America/New_York,724,NA,US,40.09,-79.85,282 +15413,STANDARD,0,Allison,,,PA,"Fayette County",America/New_York,724,NA,US,39.99,-79.87,390 +15415,"PO BOX",0,"Brier Hill",,,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.83,123 +15416,"PO BOX",0,Brownfield,,,PA,"Fayette County",America/New_York,724,NA,US,39.85,-79.68,229 +15417,STANDARD,0,Brownsville,,"West Brownsville",PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.89,6000 +15419,STANDARD,0,California,,,PA,"Washington County",America/New_York,724,NA,US,40.05,-79.89,1590 +15420,"PO BOX",0,Cardale,,,PA,"Fayette County",America/New_York,724,NA,US,39.96,-79.87,192 +15421,"PO BOX",0,"Chalk Hill",,,PA,"Fayette County",America/New_York,724,NA,US,39.85,-79.6,621 +15422,"PO BOX",0,"Chestnut Ridge","Chestnut Rdg",,PA,"Fayette County",America/New_York,724,NA,US,39.98,-79.81,186 +15423,STANDARD,0,"Coal Center",,,PA,"Washington County",America/New_York,724,NA,US,40.09,-79.93,1540 +15424,STANDARD,0,Confluence,"Listonburg, Ursina",,PA,"Somerset County",America/New_York,814,NA,US,39.8,-79.35,1930 +15425,STANDARD,0,Connellsville,"S Connellsvl","Greene Junction, S Connelsvl",PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.58,15380 +15427,STANDARD,0,Daisytown,,,PA,"Washington County",America/New_York,724,NA,US,40.07,-79.97,880 +15428,STANDARD,0,Dawson,,,PA,"Fayette County",America/New_York,724,NA,US,40.08,-79.68,1580 +15429,"PO BOX",0,Denbo,,,PA,"Washington County",America/New_York,724,NA,US,40,-79.94,200 +15430,"PO BOX",0,"Dickerson Run",,,PA,"Fayette County",America/New_York,724,NA,US,40.04,-79.65,342 +15431,STANDARD,0,Dunbar,,,PA,"Fayette County",America/New_York,724,NA,US,39.97,-79.61,3780 +15432,"PO BOX",0,Dunlevy,,,PA,"Washington County",America/New_York,724,NA,US,40.11,-79.86,366 +15433,STANDARD,0,"East Millsboro","E Millsboro",,PA,"Fayette County",America/New_York,724,NA,US,39.98,-79.96,610 +15434,"PO BOX",0,Elco,,,PA,"Washington County",America/New_York,724,NA,US,40.08,-79.88,232 +15435,"PO BOX",0,Fairbank,,,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.85,588 +15436,STANDARD,0,Fairchance,,,PA,"Fayette County",America/New_York,724,NA,US,39.82,-79.75,2260 +15437,STANDARD,0,Farmington,,,PA,"Fayette County",America/New_York,724,NA,US,39.78,-79.61,2290 +15438,STANDARD,0,"Fayette City",,,PA,"Fayette County",America/New_York,724,NA,US,40.1,-79.83,1880 +15439,"PO BOX",0,Gans,"Lake Lynn",,PA,"Monongalia County",America/New_York,724,NA,US,39.74,-79.81,98 +15440,STANDARD,0,"Gibbon Glade",,,PA,"Fayette County",America/New_York,724,NA,US,39.73,-79.56,280 +15442,STANDARD,0,Grindstone,,,PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.83,1910 +15443,"PO BOX",0,Hibbs,,,PA,"Fayette County",America/New_York,724,NA,US,39.92,-79.88,283 +15444,STANDARD,0,Hiller,,,PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.91,410 +15445,STANDARD,0,Hopwood,,,PA,"Fayette County",America/New_York,"412,724",NA,US,39.87,-79.7,2510 +15446,STANDARD,0,"Indian Head",,,PA,"Fayette County",America/New_York,724,NA,US,40.03,-79.4,430 +15447,"PO BOX",0,Isabella,,,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.94,145 +15448,"PO BOX",0,"Jacobs Creek",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.14,-79.73,179 +15449,"PO BOX",0,Keisterville,,,PA,"Fayette County",America/New_York,724,NA,US,39.96,-79.78,202 +15450,STANDARD,0,"La Belle",,,PA,"Fayette County",America/New_York,724,NA,US,40,-79.97,280 +15451,STANDARD,0,"Lake Lynn",,,PA,"Fayette County",America/New_York,724,NA,US,39.74,-79.84,710 +15454,"PO BOX",0,Leckrone,,,PA,"Fayette County",America/New_York,724,NA,US,39.86,-79.87,210 +15455,"PO BOX",0,Leisenring,,,PA,"Fayette County",America/New_York,724,NA,US,40,-79.64,301 +15456,STANDARD,0,"Lemont Furnace","Lemont Frnc, Lemont Frnce","Lemont Fce",PA,"Fayette County",America/New_York,"412,724",NA,US,39.92,-79.64,2120 +15458,STANDARD,0,"Mc Clellandtown","Lamberton, Mcclellandtwn",Mcclellandtown,PA,"Fayette County",America/New_York,724,NA,US,39.88,-79.86,1870 +15459,STANDARD,0,Markleysburg,,,PA,"Fayette County",America/New_York,724,NA,US,39.73,-79.45,1230 +15460,"PO BOX",0,Martin,,,PA,"Fayette County",America/New_York,724,NA,US,39.81,-79.91,163 +15461,STANDARD,0,Masontown,,,PA,"Fayette County",America/New_York,724,NA,US,39.84,-79.9,3440 +15462,STANDARD,0,Melcroft,,,PA,"Fayette County",America/New_York,814,NA,US,40.06,-79.38,330 +15463,"PO BOX",0,Merrittstown,,,PA,"Fayette County",America/New_York,724,NA,US,39.97,-79.9,433 +15464,STANDARD,0,"Mill Run",,,PA,"Fayette County",America/New_York,724,NA,US,39.96,-79.45,1240 +15465,"PO BOX",0,"Mount Braddock","Mt Braddock",,PA,"Fayette County",America/New_York,724,NA,US,39.94,-79.67,324 +15466,"PO BOX",0,Newell,,,PA,"Fayette County",America/New_York,724,NA,US,40.08,-79.89,399 +15467,"PO BOX",0,"New Geneva",,,PA,"Fayette County",America/New_York,724,NA,US,39.78,-79.93,164 +15468,STANDARD,0,"New Salem",,,PA,"Fayette County",America/New_York,724,NA,US,39.95,-79.83,1920 +15469,STANDARD,0,Normalville,,,PA,"Fayette County",America/New_York,724,NA,US,40.01,-79.42,1790 +15470,STANDARD,0,Ohiopyle,,,PA,"Fayette County",America/New_York,724,NA,US,39.87,-79.53,630 +15472,"PO BOX",0,Oliver,,,PA,"Fayette County",America/New_York,724,NA,US,39.92,-79.72,247 +15473,STANDARD,0,Perryopolis,"Layton, Whitsett",,PA,"Fayette County",America/New_York,724,NA,US,40.08,-79.75,3450 +15474,STANDARD,0,"Point Marion",,,PA,"Fayette County",America/New_York,724,NA,US,39.73,-79.9,1580 +15475,"PO BOX",0,Republic,,,PA,"Fayette County",America/New_York,724,NA,US,39.95,-79.88,1062 +15476,"PO BOX",0,Ronco,,,PA,"Fayette County",America/New_York,724,NA,US,39.87,-79.92,207 +15477,"PO BOX",0,Roscoe,,,PA,"Washington County",America/New_York,724,NA,US,40.08,-79.86,970 +15478,STANDARD,0,Smithfield,,,PA,"Fayette County",America/New_York,724,NA,US,39.8,-79.8,5220 +15479,STANDARD,0,Smithton,"Rostraver Township, Rostraver Twp, Van Meter",,PA,"Westmoreland County",America/New_York,878,NA,US,40.15,-79.74,1800 +15480,STANDARD,0,Smock,,,PA,"Fayette County",America/New_York,724,NA,US,39.99,-79.75,1650 +15482,"PO BOX",0,"Star Junction",,,PA,"Fayette County",America/New_York,724,NA,US,40.06,-79.77,571 +15483,"PO BOX",0,Stockdale,,,PA,"Washington County",America/New_York,724,NA,US,40.08,-79.85,485 +15484,"PO BOX",0,Uledi,,,PA,"Fayette County",America/New_York,724,NA,US,39.89,-79.78,295 +15485,"PO BOX",0,Ursina,,,PA,"Somerset County",America/New_York,814,NA,US,39.81,-79.33,101 +15486,STANDARD,0,Vanderbilt,,,PA,"Fayette County",America/New_York,724,NA,US,40.03,-79.66,1970 +15488,STANDARD,0,Waltersburg,,,PA,"Fayette County",America/New_York,724,NA,US,39.98,-79.77,218 +15489,"PO BOX",0,"West Leisenring","W Leisenring",,PA,"Fayette County",America/New_York,724,NA,US,39.97,-79.7,376 +15490,STANDARD,0,White,,,PA,"Fayette County",America/New_York,724,NA,US,40.07,-79.42,570 +15492,"PO BOX",0,Wickhaven,,,PA,"Fayette County",America/New_York,724,NA,US,40.12,-79.76,127 +15501,STANDARD,0,Somerset,,,PA,"Somerset County",America/New_York,814,NA,US,40,-79.07,12740 +15502,"PO BOX",0,"Hidden Valley",,,PA,"Somerset County",America/New_York,814,NA,US,40.04,-79.24,221 +15510,UNIQUE,0,Somerset,,"Sci Somerset",PA,"Somerset County",America/New_York,814,NA,US,39.97,-79.04,47 +15520,"PO BOX",0,Acosta,,,PA,"Somerset County",America/New_York,814,NA,US,40.11,-79.06,263 +15521,STANDARD,0,"Alum Bank",,,PA,"Bedford County",America/New_York,814,NA,US,40.19,-78.62,1560 +15522,STANDARD,0,Bedford,,,PA,"Bedford County",America/New_York,814,NA,US,40.01,-78.5,10310 +15530,STANDARD,0,Berlin,,,PA,"Somerset County",America/New_York,814,NA,US,39.92,-78.95,4520 +15531,STANDARD,0,Boswell,,,PA,"Somerset County",America/New_York,814,NA,US,40.16,-79.02,3140 +15532,"PO BOX",0,Boynton,,,PA,"Somerset County",America/New_York,814,NA,US,39.76,-79.06,146 +15533,STANDARD,0,Breezewood,,,PA,"Bedford County",America/New_York,814,NA,US,39.99,-78.24,1220 +15534,STANDARD,0,"Buffalo Mills",,,PA,"Bedford County",America/New_York,814,NA,US,39.9,-78.69,730 +15535,STANDARD,0,Clearville,,,PA,"Bedford County",America/New_York,814,NA,US,39.91,-78.37,1790 +15536,STANDARD,0,"Crystal Spring","Crystal Spg",,PA,"Fulton County",America/New_York,814,NA,US,39.93,-78.21,380 +15537,STANDARD,0,Everett,,,PA,"Bedford County",America/New_York,814,NA,US,40.01,-78.36,6770 +15538,STANDARD,0,Fairhope,Glencoe,,PA,"Somerset County",America/New_York,814,NA,US,39.89,-78.83,600 +15539,STANDARD,0,Fishertown,,,PA,"Bedford County",America/New_York,814,NA,US,40.13,-78.59,470 +15540,STANDARD,0,"Fort Hill",,,PA,"Somerset County",America/New_York,814,NA,US,39.8,-79.24,280 +15541,STANDARD,0,Friedens,,,PA,"Somerset County",America/New_York,814,NA,US,40.04,-79,3270 +15542,STANDARD,0,Garrett,,,PA,"Somerset County",America/New_York,814,NA,US,39.86,-79.06,1030 +15544,"PO BOX",0,Gray,,,PA,"Somerset County",America/New_York,814,NA,US,40.14,-79.09,244 +15545,STANDARD,0,Hyndman,,,PA,"Bedford County",America/New_York,814,NA,US,39.82,-78.72,2270 +15546,STANDARD,0,Jenners,,,PA,"Somerset County",America/New_York,814,NA,US,40.14,-79.05,290 +15547,"PO BOX",0,Jennerstown,,,PA,"Somerset County",America/New_York,814,NA,US,40.16,-79.06,635 +15548,STANDARD,0,Kantner,,,PA,"Somerset County",America/New_York,814,NA,US,40.11,-78.96,30 +15549,"PO BOX",0,Listie,,,PA,"Somerset County",America/New_York,814,NA,US,40.04,-79.12,88 +15550,STANDARD,0,"Manns Choice",,,PA,"Bedford County",America/New_York,814,NA,US,40,-78.59,1440 +15551,STANDARD,0,Markleton,,,PA,"Somerset County",America/New_York,814,NA,US,39.87,-79.29,670 +15552,STANDARD,0,Meyersdale,,Myersdale,PA,"Somerset County",America/New_York,814,NA,US,39.81,-79.02,5080 +15553,"PO BOX",0,"New Baltimore",,,PA,"Somerset County",America/New_York,814,NA,US,39.98,-78.77,133 +15554,STANDARD,0,"New Paris",,,PA,"Bedford County",America/New_York,814,NA,US,40.1,-78.64,2090 +15555,"PO BOX",0,Quecreek,,,PA,"Somerset County",America/New_York,814,NA,US,40.09,-79.08,78 +15557,STANDARD,0,Rockwood,,,PA,"Somerset County",America/New_York,814,NA,US,39.91,-79.15,3280 +15558,STANDARD,0,Salisbury,,,PA,"Somerset County",America/New_York,814,NA,US,39.75,-79.08,1660 +15559,STANDARD,0,Schellsburg,,,PA,"Bedford County",America/New_York,814,NA,US,40.04,-78.64,1700 +15560,"PO BOX",0,Shanksville,,,PA,"Somerset County",America/New_York,814,NA,US,40.02,-78.91,275 +15561,"PO BOX",0,Sipesville,,,PA,"Somerset County",America/New_York,814,NA,US,40.1,-79.09,244 +15562,STANDARD,0,Springs,,,PA,"Somerset County",America/New_York,814,NA,US,39.74,-79.13,300 +15563,STANDARD,0,Stoystown,,,PA,"Somerset County",America/New_York,814,NA,US,40.1,-78.95,2530 +15564,STANDARD,0,Wellersburg,,,PA,"Somerset County",America/New_York,814,NA,US,39.73,-78.84,83 +15565,STANDARD,0,"West Salisbury","W Salisbury",,PA,"Somerset County",America/New_York,814,NA,US,39.78,-79.01,63 +15601,STANDARD,0,Greensburg,,Gbg,PA,"Westmoreland County",America/New_York,"412,724,878",NA,US,40.31,-79.54,49750 +15605,UNIQUE,0,Greensburg,,"Bureau Of Voc Rehab",PA,"Westmoreland County",America/New_York,724,NA,US,40.31,-79.54,0 +15606,UNIQUE,0,Greensburg,,"Allegheny Power",PA,"Westmoreland County",America/New_York,724,NA,US,40.31,-79.54,0 +15610,STANDARD,0,Acme,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.15,-79.42,3350 +15611,STANDARD,0,Adamsburg,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.31,-79.65,390 +15612,STANDARD,0,Alverton,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.14,-79.6,360 +15613,STANDARD,0,Apollo,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.58,-79.56,12270 +15615,STANDARD,0,Ardara,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.36,-79.73,240 +15616,"PO BOX",0,Armbrust,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.22,-79.55,198 +15617,"PO BOX",0,Arona,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.27,-79.66,401 +15618,STANDARD,0,Avonmore,Edmon,,PA,"Westmoreland County",America/New_York,724,NA,US,40.52,-79.47,2180 +15619,"PO BOX",0,Bovard,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.34,-79.53,429 +15620,STANDARD,0,Bradenville,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.32,-79.34,670 +15621,"PO BOX",0,Calumet,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.21,-79.48,140 +15622,STANDARD,0,Champion,,,PA,"Fayette County",America/New_York,"724,814",NA,US,40.04,-79.32,1030 +15623,STANDARD,0,Claridge,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.37,-79.62,720 +15624,"PO BOX",0,Crabtree,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.36,-79.47,490 +15625,"PO BOX",0,Darragh,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.27,-79.68,208 +15626,STANDARD,0,Delmont,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.41,-79.57,4790 +15627,STANDARD,0,Derry,,,PA,"Westmoreland County",America/New_York,"724,878",NA,US,40.33,-79.3,5600 +15628,STANDARD,0,Donegal,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.11,-79.38,440 +15629,"PO BOX",0,"East Vandergrift","E Vandergrift",,PA,"Westmoreland County",America/New_York,878,NA,US,40.6,-79.56,624 +15631,"PO BOX",0,Everson,,,PA,"Fayette County",America/New_York,724,NA,US,40.09,-79.58,800 +15632,STANDARD,0,Export,Murrysville,,PA,"Westmoreland County",America/New_York,724,NA,US,40.41,-79.62,8930 +15633,"PO BOX",0,"Forbes Road",,"Forbes Rd",PA,"Westmoreland County",America/New_York,878,NA,US,40.36,-79.52,276 +15634,STANDARD,0,Grapeville,,,PA,"Westmoreland County",America/New_York,"412,724",NA,US,40.32,-79.6,510 +15635,"PO BOX",0,Hannastown,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.35,-79.5,257 +15636,STANDARD,0,"Harrison City",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.37,-79.66,3910 +15637,STANDARD,0,Herminie,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.26,-79.71,1660 +15638,"PO BOX",0,Hostetter,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.26,-79.4,307 +15639,STANDARD,0,Hunker,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.2,-79.61,1740 +15640,"PO BOX",0,Hutchinson,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.22,-79.73,354 +15641,STANDARD,0,"Hyde Park",,,PA,"Westmoreland County",America/New_York,878,NA,US,40.63,-79.59,490 +15642,STANDARD,0,Irwin,"N Huntingdon, No Huntingdon, North Huntingdon, North Irwin",,PA,"Westmoreland County",America/New_York,724,NA,US,40.32,-79.69,44170 +15644,STANDARD,0,Jeannette,,,PA,"Westmoreland County",America/New_York,"412,724",NA,US,40.33,-79.62,16050 +15646,STANDARD,0,"Jones Mills",,,PA,"Westmoreland County",America/New_York,"724,814",NA,US,40.08,-79.33,200 +15647,STANDARD,0,Larimer,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.35,-79.72,300 +15650,STANDARD,0,Latrobe,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.31,-79.38,23010 +15655,STANDARD,0,Laughlintown,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.19,-79.16,470 +15656,STANDARD,0,Leechburg,"N Leechburg, North Leechburg, W Leechburg, West Leechburg",,PA,"Westmoreland County",America/New_York,724,NA,US,40.63,-79.6,9020 +15658,STANDARD,0,Ligonier,Wilpen,,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.23,7250 +15660,"PO BOX",0,Lowber,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.77,210 +15661,STANDARD,0,Loyalhanna,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.32,-79.36,490 +15662,"PO BOX",0,Luxor,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.33,-79.48,244 +15663,"PO BOX",0,Madison,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.24,-79.67,538 +15664,"PO BOX",0,Mammoth,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.16,-79.51,125 +15665,STANDARD,0,Manor,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.34,-79.66,1420 +15666,STANDARD,0,"Mount Pleasant","Mt Pleasant",,PA,"Westmoreland County",America/New_York,724,NA,US,40.15,-79.54,13680 +15668,STANDARD,0,Murrysville,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.46,-79.67,13210 +15670,STANDARD,0,"New Alexandria","New Alexandri",,PA,"Westmoreland County",America/New_York,724,NA,US,40.39,-79.41,3080 +15671,STANDARD,0,"New Derry",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.36,-79.32,640 +15672,STANDARD,0,"New Stanton",,,PA,"Westmoreland County",America/New_York,878,NA,US,40.22,-79.6,2970 +15673,"PO BOX",0,"North Apollo",,,PA,"Armstrong County",America/New_York,724,NA,US,40.59,-79.56,1289 +15674,"PO BOX",0,Norvelt,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.16,-79.51,392 +15675,STANDARD,0,Penn,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.34,-79.64,850 +15676,"PO BOX",0,"Pleasant Unity","Pleasant Unty",,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.47,593 +15677,STANDARD,0,Rector,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.14,-79.24,410 +15678,STANDARD,0,Rillton,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.29,-79.73,530 +15679,STANDARD,0,"Ruffs Dale",,,PA,"Westmoreland County",America/New_York,878,NA,US,40.15,-79.63,2820 +15680,"PO BOX",0,Salina,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.52,-79.5,303 +15681,STANDARD,0,Saltsburg,,,PA,"Indiana County",America/New_York,724,NA,US,40.48,-79.44,4000 +15682,"PO BOX",0,Schenley,,,PA,"Armstrong County",America/New_York,724,NA,US,40.68,-79.64,59 +15683,STANDARD,0,Scottdale,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.1,-79.58,7170 +15684,STANDARD,0,Slickville,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.46,-79.5,530 +15685,"PO BOX",0,Southwest,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.18,-79.49,288 +15686,STANDARD,0,"Spring Church",,,PA,"Armstrong County",America/New_York,724,NA,US,40.62,-79.44,730 +15687,STANDARD,0,Stahlstown,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.13,-79.29,1190 +15688,STANDARD,0,Tarrs,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.17,-79.58,630 +15689,"PO BOX",0,United,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.22,-79.49,238 +15690,STANDARD,0,Vandergrift,Park,,PA,"Westmoreland County",America/New_York,724,NA,US,40.59,-79.57,7480 +15691,"PO BOX",0,Wendel,,,PA,"Westmoreland County",America/New_York,878,NA,US,40.3,-79.69,217 +15692,STANDARD,0,"Westmoreland City","Westmrlnd Cty",,PA,"Westmoreland County",America/New_York,724,NA,US,40.33,-79.68,890 +15693,"PO BOX",0,Whitney,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.25,-79.41,255 +15695,"PO BOX",0,Wyano,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.2,-79.69,341 +15696,"PO BOX",0,Youngstown,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.28,-79.37,682 +15697,STANDARD,0,Youngwood,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.24,-79.58,2560 +15698,STANDARD,0,Yukon,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.21,-79.68,680 +15701,STANDARD,0,Indiana,,,PA,"Indiana County",America/New_York,"412,724",NA,US,40.62,-79.15,21260 +15705,UNIQUE,0,Indiana,,"Indiana Univ Of Pa",PA,"Indiana County",America/New_York,724,NA,US,40.62,-79.15,60 +15710,"PO BOX",0,Alverda,,,PA,"Indiana County",America/New_York,724,NA,US,40.64,-78.87,212 +15711,STANDARD,0,Anita,,,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-78.96,290 +15712,"PO BOX",0,Arcadia,,,PA,"Indiana County",America/New_York,814,NA,US,40.79,-78.85,112 +15713,STANDARD,0,Aultman,,,PA,"Indiana County",America/New_York,"724,878",NA,US,40.57,-79.26,200 +15714,STANDARD,0,"Northern Cambria","Barnesboro, N Cambria",,PA,"Cambria County",America/New_York,814,NA,US,40.66,-78.78,5090 +15715,"PO BOX",0,"Big Run",,,PA,"Jefferson County",America/New_York,814,NA,US,40.97,-78.88,617 +15716,"PO BOX",0,"Black Lick",,,PA,"Indiana County",America/New_York,,NA,US,40.47,-79.19,798 +15717,STANDARD,0,Blairsville,,,PA,"Indiana County",America/New_York,"878,724",NA,US,40.43,-79.26,8590 +15720,"PO BOX",0,"Brush Valley",,,PA,"Indiana County",America/New_York,724,NA,US,40.53,-79.06,218 +15721,"PO BOX",0,Burnside,,,PA,"Clearfield County",America/New_York,814,NA,US,40.81,-78.78,188 +15722,STANDARD,0,Carrolltown,,,PA,"Cambria County",America/New_York,814,NA,US,40.6,-78.7,1970 +15723,"PO BOX",0,Chambersville,,,PA,"Indiana County",America/New_York,724,NA,US,40.7,-79.16,48 +15724,STANDARD,0,"Cherry Tree",,,PA,"Indiana County",America/New_York,814,NA,US,40.72,-78.8,1880 +15725,STANDARD,0,Clarksburg,,,PA,"Indiana County",America/New_York,"724,878",NA,US,40.49,-79.36,1180 +15727,"PO BOX",0,Clune,,,PA,"Indiana County",America/New_York,724,NA,US,40.56,-79.31,158 +15728,STANDARD,0,Clymer,,,PA,"Indiana County",America/New_York,724,NA,US,40.66,-79.01,3020 +15729,STANDARD,0,Commodore,,,PA,"Indiana County",America/New_York,,NA,US,40.69,-78.9,1250 +15730,STANDARD,0,Coolspring,,,PA,"Jefferson County",America/New_York,814,NA,US,41.06,-79.09,139 +15731,"PO BOX",0,Coral,,,PA,"Indiana County",America/New_York,,NA,US,40.5,-79.18,332 +15732,STANDARD,0,Creekside,,,PA,"Indiana County",America/New_York,"412,724",NA,US,40.68,-79.19,1490 +15733,"PO BOX",0,"De Lancey",,,PA,"Jefferson County",America/New_York,814,NA,US,40.99,-78.96,105 +15734,"PO BOX",0,Dixonville,,,PA,"Indiana County",America/New_York,814,NA,US,40.72,-79,308 +15736,"PO BOX",0,Elderton,,,PA,"Armstrong County",America/New_York,724,NA,US,40.69,-79.34,643 +15737,"PO BOX",0,Elmora,,,PA,"Cambria County",America/New_York,814,NA,US,40.6,-78.76,561 +15738,"PO BOX",0,Emeigh,,,PA,"Cambria County",America/New_York,814,NA,US,40.69,-78.76,225 +15739,"PO BOX",0,Ernest,,,PA,"Indiana County",America/New_York,,NA,US,40.67,-79.17,440 +15740,STANDARD,1,Frostburg,,,PA,"Jefferson County",America/New_York,814,NA,US,40.96,-79.03,0 +15741,"PO BOX",0,Gipsy,,,PA,"Indiana County",America/New_York,814,NA,US,40.8,-78.89,74 +15742,STANDARD,0,"Glen Campbell",,,PA,"Indiana County",America/New_York,814,NA,US,40.81,-78.83,770 +15744,STANDARD,0,Hamilton,,,PA,"Jefferson County",America/New_York,814,NA,US,40.92,-79.08,107 +15745,"PO BOX",0,Heilwood,,,PA,"Indiana County",America/New_York,724,NA,US,40.62,-78.92,352 +15746,"PO BOX",0,Hillsdale,,,PA,"Indiana County",America/New_York,814,NA,US,40.76,-78.89,211 +15747,STANDARD,0,Home,,,PA,"Indiana County",America/New_York,724,NA,US,40.78,-79.15,1710 +15748,STANDARD,0,"Homer City","Graceton, Waterman",,PA,"Indiana County",America/New_York,"724,412,878",NA,US,40.53,-79.15,6070 +15750,STANDARD,0,Josephine,,,PA,"Indiana County",America/New_York,,NA,US,40.48,-79.18,154 +15752,"PO BOX",0,Kent,,,PA,"Indiana County",America/New_York,,NA,US,40.54,-79.28,108 +15753,STANDARD,0,"La Jose",,,PA,"Clearfield County",America/New_York,814,NA,US,40.81,-78.62,390 +15754,"PO BOX",0,Lucernemines,,,PA,"Indiana County",America/New_York,,NA,US,40.56,-79.15,515 +15756,"PO BOX",0,"Mc Intyre",,Mcintyre,PA,"Indiana County",America/New_York,724,NA,US,40.57,-79.3,184 +15757,STANDARD,0,Mahaffey,"Mcgees Mills","Mc Gees Mills",PA,"Clearfield County",America/New_York,814,NA,US,40.87,-78.72,1300 +15758,STANDARD,0,Marchand,,,PA,"Indiana County",America/New_York,814,NA,US,40.87,-79.04,17 +15759,STANDARD,0,"Marion Center",,,PA,"Indiana County",America/New_York,724,NA,US,40.77,-79.04,2350 +15760,STANDARD,0,Marsteller,,,PA,"Cambria County",America/New_York,814,NA,US,40.64,-78.81,104 +15761,STANDARD,0,Mentcle,,,PA,"Indiana County",America/New_York,724,NA,US,40.63,-78.89,70 +15762,STANDARD,0,Nicktown,,,PA,"Cambria County",America/New_York,814,NA,US,40.59,-78.83,850 +15763,STANDARD,0,Northpoint,,,PA,"Indiana County",America/New_York,,NA,US,40.9,-79.12,29 +15764,STANDARD,0,Oliveburg,,,PA,"Jefferson County",America/New_York,814,NA,US,40.99,-79.03,102 +15765,STANDARD,0,"Penn Run",,,PA,"Indiana County",America/New_York,,NA,US,40.6,-78.99,1450 +15767,STANDARD,0,Punxsutawney,"Frostburg, Juneau",,PA,"Jefferson County",America/New_York,814,NA,US,40.94,-78.97,12380 +15770,STANDARD,0,Ringgold,,,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-79.14,170 +15771,STANDARD,0,"Rochester Mills","Rochester Mls",,PA,"Indiana County",America/New_York,724,NA,US,40.82,-79,810 +15772,STANDARD,0,Rossiter,,,PA,"Indiana County",America/New_York,"724,814",NA,US,40.86,-78.94,1340 +15773,STANDARD,0,"Saint Benedict","St Benedict",,PA,"Cambria County",America/New_York,814,NA,US,40.63,-78.74,380 +15774,STANDARD,0,Shelocta,,,PA,"Indiana County",America/New_York,724,NA,US,40.65,-79.3,2780 +15775,STANDARD,0,Spangler,,,PA,"Cambria County",America/New_York,814,NA,US,40.63,-78.79,0 +15776,STANDARD,0,"Sprankle Mills","Sprankle Mls",,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-79.11,50 +15777,STANDARD,0,Starford,,,PA,"Indiana County",America/New_York,,NA,US,40.69,-78.97,151 +15778,STANDARD,0,Timblin,,,PA,"Jefferson County",America/New_York,814,NA,US,40.97,-79.2,155 +15779,"PO BOX",0,Torrance,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.39,-79.22,191 +15780,STANDARD,0,Valier,,,PA,"Jefferson County",America/New_York,724,NA,US,40.91,-79.07,138 +15781,"PO BOX",0,Walston,,,PA,"Jefferson County",America/New_York,814,NA,US,40.96,-78.99,144 +15783,"PO BOX",0,"West Lebanon",,,PA,"Indiana County",America/New_York,724,NA,US,40.6,-79.35,126 +15784,STANDARD,0,Worthville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.02,-79.14,125 +15801,STANDARD,0,"Du Bois",Dubois,,PA,"Clearfield County",America/New_York,814,NA,US,41.14,-78.73,16850 +15821,STANDARD,0,Benezett,Benezette,,PA,"Elk County",America/New_York,814,NA,US,41.35,-78.37,181 +15822,STANDARD,0,"Brandy Camp",,,PA,"Elk County",America/New_York,814,NA,US,41.34,-78.7,0 +15823,STANDARD,0,Brockport,,,PA,"Elk County",America/New_York,814,NA,US,41.27,-78.73,1310 +15824,STANDARD,0,Brockway,,,PA,"Jefferson County",America/New_York,814,NA,US,41.24,-78.79,4540 +15825,STANDARD,0,Brookville,Hazen,,PA,"Jefferson County",America/New_York,814,NA,US,41.16,-79.08,8050 +15827,STANDARD,0,Byrnedale,,,PA,"Elk County",America/New_York,814,NA,US,41.32,-78.52,220 +15828,STANDARD,0,Clarington,,,PA,"Jefferson County",America/New_York,814,NA,US,41.32,-79.14,230 +15829,STANDARD,0,Corsica,,,PA,"Jefferson County",America/New_York,814,NA,US,41.18,-79.2,1100 +15831,"PO BOX",0,"Dagus Mines",,,PA,"Elk County",America/New_York,814,NA,US,41.36,-78.59,227 +15832,STANDARD,0,Driftwood,,,PA,"Cameron County",America/New_York,814,NA,US,41.34,-78.13,220 +15834,STANDARD,0,Emporium,,,PA,"Cameron County",America/New_York,814,NA,US,41.51,-78.23,3680 +15840,STANDARD,0,"Falls Creek",,,PA,"Jefferson County",America/New_York,814,NA,US,41.14,-78.8,1690 +15841,"PO BOX",0,Force,,,PA,"Elk County",America/New_York,814,NA,US,41.26,-78.53,232 +15845,STANDARD,0,Johnsonburg,,,PA,"Elk County",America/New_York,814,NA,US,41.49,-78.67,2730 +15846,STANDARD,0,Kersey,,,PA,"Elk County",America/New_York,814,NA,US,41.32,-78.6,3070 +15847,"PO BOX",0,"Knox Dale",,,PA,"Jefferson County",America/New_York,814,NA,US,41.09,-79.03,200 +15848,STANDARD,0,Luthersburg,,,PA,"Clearfield County",America/New_York,814,NA,US,41.03,-78.74,980 +15849,STANDARD,0,Penfield,,,PA,"Clearfield County",America/New_York,814,NA,US,41.21,-78.6,1070 +15851,STANDARD,0,Reynoldsville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.09,-78.88,5820 +15853,STANDARD,0,Ridgway,"Portland Mills, Portland Mls",,PA,"Elk County",America/New_York,814,NA,US,41.42,-78.72,5750 +15856,STANDARD,0,Rockton,,,PA,"Clearfield County",America/New_York,814,NA,US,41.08,-78.66,750 +15857,STANDARD,0,"Saint Marys",,"St Marys",PA,"Elk County",America/New_York,814,NA,US,41.42,-78.55,11800 +15860,STANDARD,0,Sigel,Hallton,,PA,"Jefferson County",America/New_York,814,NA,US,41.28,-79.12,980 +15861,STANDARD,0,Sinnamahoning,,,PA,"Cameron County",America/New_York,814,NA,US,41.38,-78.05,150 +15863,"PO BOX",0,"Stump Creek",,,PA,"Jefferson County",America/New_York,814,NA,US,41.01,-78.84,226 +15864,STANDARD,0,Summerville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.1,-79.2,1660 +15865,STANDARD,0,Sykesville,,,PA,"Jefferson County",America/New_York,814,NA,US,41.04,-78.83,970 +15866,STANDARD,0,Troutville,,,PA,"Clearfield County",America/New_York,814,NA,US,41.02,-78.78,187 +15868,STANDARD,0,Weedville,,,PA,"Elk County",America/New_York,814,NA,US,41.26,-78.49,1370 +15870,STANDARD,0,Wilcox,,,PA,"Elk County",America/New_York,814,NA,US,41.58,-78.68,1080 +15901,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.33,-78.91,1940 +15902,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.91,8480 +15904,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.31,-78.84,13000 +15905,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.29,-78.97,17340 +15906,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.38,-78.96,7840 +15907,"PO BOX",0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.91,279 +15909,STANDARD,0,Johnstown,Conemaugh,,PA,"Cambria County",America/New_York,814,NA,US,40.41,-78.87,4340 +15915,STANDARD,0,Johnstown,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.91,0 +15920,STANDARD,0,Armagh,,,PA,"Indiana County",America/New_York,,NA,US,40.45,-79.03,840 +15921,"PO BOX",0,Beaverdale,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.7,809 +15922,"PO BOX",0,Belsano,,,PA,"Cambria County",America/New_York,814,NA,US,40.52,-78.88,274 +15923,STANDARD,0,Bolivar,,,PA,"Westmoreland County",America/New_York,724,NA,US,40.39,-79.15,1410 +15924,STANDARD,0,Cairnbrook,,,PA,"Somerset County",America/New_York,814,NA,US,40.1,-78.76,880 +15925,"PO BOX",0,Cassandra,,,PA,"Cambria County",America/New_York,814,NA,US,40.41,-78.64,150 +15926,STANDARD,0,"Central City",,,PA,"Somerset County",America/New_York,814,NA,US,40.05,-78.82,2140 +15927,STANDARD,0,Colver,,,PA,"Cambria County",America/New_York,814,NA,US,40.54,-78.78,940 +15928,STANDARD,0,Davidsville,,,PA,"Somerset County",America/New_York,814,NA,US,40.23,-78.93,1830 +15929,"PO BOX",0,Dilltown,,,PA,"Indiana County",America/New_York,814,NA,US,40.47,-79.01,164 +15930,"PO BOX",0,Dunlo,,,PA,"Cambria County",America/New_York,814,NA,US,40.29,-78.72,378 +15931,STANDARD,0,Ebensburg,,,PA,"Cambria County",America/New_York,814,NA,US,40.48,-78.72,7450 +15934,"PO BOX",0,Elton,,,PA,"Cambria County",America/New_York,814,NA,US,40.28,-78.8,305 +15935,STANDARD,0,Hollsopple,,,PA,"Somerset County",America/New_York,814,NA,US,40.24,-78.96,2340 +15936,STANDARD,0,Hooversville,,,PA,"Somerset County",America/New_York,814,NA,US,40.15,-78.91,1270 +15937,"PO BOX",0,Jerome,,,PA,"Somerset County",America/New_York,814,NA,US,40.21,-78.98,689 +15938,STANDARD,0,Lilly,,,PA,"Cambria County",America/New_York,814,NA,US,40.42,-78.62,2210 +15940,STANDARD,0,Loretto,,,PA,"Cambria County",America/New_York,814,NA,US,40.5,-78.63,1560 +15942,STANDARD,0,"Mineral Point",,,PA,"Cambria County",America/New_York,814,NA,US,40.38,-78.82,1850 +15943,STANDARD,0,"Nanty Glo",,,PA,"Cambria County",America/New_York,814,NA,US,40.47,-78.83,3080 +15944,STANDARD,0,"New Florence",,,PA,"Westmoreland County",America/New_York,724,NA,US,40.37,-79.07,2710 +15945,STANDARD,0,Parkhill,Johnstown,,PA,"Cambria County",America/New_York,814,NA,US,40.36,-78.87,210 +15946,STANDARD,0,Portage,Puritan,,PA,"Cambria County",America/New_York,814,NA,US,40.38,-78.67,5810 +15948,"PO BOX",0,Revloc,,,PA,"Cambria County",America/New_York,814,NA,US,40.49,-78.76,580 +15949,STANDARD,0,Robinson,,,PA,"Indiana County",America/New_York,724,NA,US,40.41,-79.13,610 +15951,"PO BOX",0,"Saint Michael",,,PA,"Cambria County",America/New_York,814,NA,US,40.33,-78.77,585 +15952,STANDARD,0,Salix,,,PA,"Cambria County",America/New_York,814,NA,US,40.3,-78.78,1220 +15953,STANDARD,0,Seanor,,,PA,"Somerset County",America/New_York,814,NA,US,40.21,-78.89,78 +15954,STANDARD,0,Seward,,"Boltz, Cramer",PA,"Indiana County",America/New_York,814,NA,US,40.41,-79.02,1720 +15955,STANDARD,0,Sidman,,,PA,"Cambria County",America/New_York,814,NA,US,40.32,-78.7,1700 +15956,STANDARD,0,"South Fork",,Ehrenfeld,PA,"Cambria County",America/New_York,814,NA,US,40.36,-78.79,2440 +15957,STANDARD,0,Strongstown,,,PA,"Indiana County",America/New_York,,NA,US,40.56,-78.91,370 +15958,STANDARD,0,Summerhill,,,PA,"Cambria County",America/New_York,814,NA,US,40.39,-78.73,1950 +16670,STANDARD,0,Queen,,,PA,"Bedford County",America/New_York,814,NA,US,40.26,-78.51,181 +16671,"PO BOX",0,Ramey,,,PA,"Clearfield County",America/New_York,814,NA,US,40.8,-78.39,526 +16672,"PO BOX",0,Riddlesburg,,,PA,"Bedford County",America/New_York,814,NA,US,40.17,-78.24,158 +16673,STANDARD,0,"Roaring Spring","Bakers Summit, Roaring Spg",,PA,"Blair County",America/New_York,814,NA,US,40.33,-78.39,4810 +16674,STANDARD,0,Robertsdale,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.17,-78.09,510 +16675,"PO BOX",0,"Saint Boniface","St Boniface",,PA,"Cambria County",America/New_York,814,NA,US,40.66,-78.68,91 +16677,"PO BOX",0,"Sandy Ridge",,,PA,"Centre County",America/New_York,814,NA,US,40.81,-78.24,420 +16678,STANDARD,0,Saxton,,,PA,"Bedford County",America/New_York,814,NA,US,40.21,-78.24,2270 +16679,STANDARD,0,"Six Mile Run",,,PA,"Bedford County",America/New_York,814,NA,US,40.15,-78.2,650 +16680,STANDARD,0,Smithmill,,,PA,"Clearfield County",America/New_York,814,NA,US,40.74,-78.38,440 +16681,"PO BOX",0,Smokerun,,,PA,"Clearfield County",America/New_York,814,NA,US,40.8,-78.43,170 +16682,STANDARD,0,Sproul,,,PA,"Blair County",America/New_York,814,NA,US,40.27,-78.46,144 +16683,STANDARD,0,"Spruce Creek",,,PA,"Huntingdon County",America/New_York,814,NA,US,40.62,-78.14,340 +16684,"PO BOX",0,Tipton,,,PA,"Blair County",America/New_York,814,NA,US,40.63,-78.29,322 +16685,STANDARD,0,Todd,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.29,-78.08,270 +16686,STANDARD,0,Tyrone,Birmingham,,PA,"Blair County",America/New_York,814,NA,US,40.67,-78.24,12130 +16689,STANDARD,0,Waterfall,,,PA,"Fulton County",America/New_York,814,NA,US,40.12,-78.06,370 +16691,STANDARD,0,"Wells Tannery",,,PA,"Fulton County",America/New_York,814,NA,US,40.09,-78.18,300 +16692,STANDARD,0,Westover,,,PA,"Clearfield County",America/New_York,814,NA,US,40.74,-78.68,690 +16693,STANDARD,0,Williamsburg,Ganister,,PA,"Blair County",America/New_York,814,NA,US,40.46,-78.2,3680 +16694,"PO BOX",0,Wood,,,PA,"Bedford County",America/New_York,814,NA,US,40.16,-78.15,232 +16695,STANDARD,0,Woodbury,,,PA,"Bedford County",America/New_York,814,NA,US,40.22,-78.36,910 +16698,UNIQUE,0,Houtzdale,,"Sci Houtzdale",PA,"Clearfield County",America/New_York,814,NA,US,40.82,-78.35,0 +16699,UNIQUE,0,Cresson,,"Sci Cresson",PA,"Cambria County",America/New_York,814,NA,US,40.45,-78.56,13 +16701,STANDARD,0,Bradford,,"Kendall Creek",PA,"McKean County",America/New_York,814,NA,US,41.96,-78.64,13140 +16720,STANDARD,0,Austin,,,PA,"Potter County",America/New_York,814,NA,US,41.63,-78.08,1050 +16724,"PO BOX",0,Crosby,,,PA,"McKean County",America/New_York,814,NA,US,41.73,-78.37,152 +16725,"PO BOX",0,"Custer City",,,PA,"McKean County",America/New_York,814,NA,US,41.91,-78.66,272 +16726,STANDARD,0,Cyclone,Ormsby,,PA,"McKean County",America/New_York,814,NA,US,41.82,-78.58,460 +16727,STANDARD,0,"Derrick City",,,PA,"McKean County",America/New_York,814,NA,US,41.97,-78.55,330 +16728,STANDARD,0,"De Young",,,PA,"Elk County",America/New_York,814,NA,US,41.57,-78.91,27 +16729,STANDARD,0,"Duke Center",,,PA,"McKean County",America/New_York,814,NA,US,41.96,-78.5,710 +16730,"PO BOX",0,"East Smethport","E Smethport",,PA,"McKean County",America/New_York,814,NA,US,41.82,-78.42,180 +16731,STANDARD,0,Eldred,,,PA,"McKean County",America/New_York,814,NA,US,41.95,-78.38,2410 +16732,STANDARD,0,Gifford,,,PA,"McKean County",America/New_York,814,NA,US,41.86,-78.62,320 +16733,"PO BOX",0,"Hazel Hurst",,,PA,"McKean County",America/New_York,814,NA,US,41.7,-78.58,193 +16734,"PO BOX",0,"James City",,,PA,"Elk County",America/New_York,814,NA,US,41.62,-78.84,267 +16735,STANDARD,0,Kane,,"East Kane",PA,"McKean County",America/New_York,814,NA,US,41.66,-78.8,5130 +16738,STANDARD,0,"Lewis Run",,,PA,"McKean County",America/New_York,814,NA,US,41.87,-78.66,1120 +16740,STANDARD,0,"Mount Jewett",Westline,,PA,"McKean County",America/New_York,814,NA,US,41.72,-78.64,970 +16743,STANDARD,0,"Port Allegany",,"Pt Allegany",PA,"McKean County",America/New_York,814,NA,US,41.81,-78.27,3430 +16744,STANDARD,0,Rew,,,PA,"McKean County",America/New_York,814,NA,US,41.87,-78.57,250 +16745,STANDARD,0,Rixford,,,PA,"McKean County",America/New_York,814,NA,US,41.92,-78.45,490 +16746,STANDARD,0,Roulette,,,PA,"Potter County",America/New_York,814,NA,US,41.77,-78.16,1000 +16748,STANDARD,0,Shinglehouse,,"Millport, Shinglehse",PA,"Potter County",America/New_York,814,NA,US,41.96,-78.19,2370 +16749,STANDARD,0,Smethport,,"Keating Summit",PA,"McKean County",America/New_York,814,NA,US,41.8,-78.44,3320 +16750,STANDARD,0,Turtlepoint,,,PA,"McKean County",America/New_York,814,NA,US,41.88,-78.32,390 +16801,STANDARD,0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-77.85,22290 +16802,STANDARD,0,"University Park","Penn St Univ, Penn State University, State College, University Pk",,PA,"Centre County",America/New_York,814,NA,US,40.8,-77.86,260 +16803,STANDARD,0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.8,-77.9,14990 +16804,"PO BOX",0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-77.85,395 +16805,"PO BOX",0,"State College",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-77.85,132 +16820,STANDARD,0,Aaronsburg,,,PA,"Centre County",America/New_York,814,NA,US,40.86,-77.39,1050 +16821,STANDARD,0,Allport,,,PA,"Clearfield County",America/New_York,814,NA,US,40.96,-78.2,320 +16822,STANDARD,0,"Beech Creek",,,PA,"Clinton County",America/New_York,570,NA,US,41.07,-77.58,2050 +16823,STANDARD,0,Bellefonte,"Hublersburg, Pleasant Gap, Wingate",,PA,"Centre County",America/New_York,814,NA,US,40.91,-77.76,21900 +16825,"PO BOX",0,Bigler,,,PA,"Clearfield County",America/New_York,814,NA,US,40.99,-78.32,343 +16826,"PO BOX",0,Blanchard,,,PA,"Centre County",America/New_York,814,NA,US,41.05,-77.58,931 +16827,STANDARD,0,Boalsburg,,,PA,"Centre County",America/New_York,814,NA,US,40.77,-77.79,4850 +16828,STANDARD,0,"Centre Hall",,,PA,"Centre County",America/New_York,814,NA,US,40.84,-77.68,4110 +16829,STANDARD,0,Clarence,,,PA,"Centre County",America/New_York,814,NA,US,41.08,-77.87,650 +16830,STANDARD,0,Clearfield,,,PA,"Clearfield County",America/New_York,814,NA,US,41.02,-78.43,11060 +16832,STANDARD,0,Coburn,,,PA,"Centre County",America/New_York,814,NA,US,40.85,-77.49,470 +16833,STANDARD,0,Curwensville,,,PA,"Clearfield County",America/New_York,814,NA,US,40.97,-78.51,4580 +16834,"PO BOX",0,Drifting,,,PA,"Clearfield County",America/New_York,814,NA,US,41.05,-78.09,321 +16835,"PO BOX",0,Fleming,,,PA,"Centre County",America/New_York,814,NA,US,40.91,-77.88,297 +16836,STANDARD,0,Frenchville,,,PA,"Clearfield County",America/New_York,814,NA,US,41.14,-78.24,1000 +16837,STANDARD,0,"Glen Richey",,,PA,"Clearfield County",America/New_York,814,NA,US,40.95,-78.47,201 +16838,STANDARD,0,Grampian,,,PA,"Clearfield County",America/New_York,814,NA,US,40.96,-78.61,1570 +16839,STANDARD,0,Grassflat,,,PA,"Clearfield County",America/New_York,814,NA,US,41.01,-78.11,400 +16840,STANDARD,0,"Hawk Run",,,PA,"Clearfield County",America/New_York,814,NA,US,40.92,-78.2,450 +16841,STANDARD,0,Howard,,,PA,"Centre County",America/New_York,814,NA,US,41.01,-77.65,4710 +16843,"PO BOX",0,Hyde,,,PA,"Clearfield County",America/New_York,814,NA,US,41,-78.47,715 +16844,STANDARD,0,Julian,,,PA,"Centre County",America/New_York,814,NA,US,40.91,-77.93,2420 +16845,STANDARD,0,Karthaus,,,PA,"Clearfield County",America/New_York,814,NA,US,41.12,-78.02,580 +16847,"PO BOX",0,Kylertown,,,PA,"Clearfield County",America/New_York,814,NA,US,41,-78.17,378 +16848,"PO BOX",0,Lamar,,,PA,"Clinton County",America/New_York,570,NA,US,41.01,-77.54,424 +16849,"PO BOX",0,Lanse,,,PA,"Clearfield County",America/New_York,814,NA,US,40.97,-78.13,384 +16850,STANDARD,0,"Lecontes Mills","Lecontes Mls",,PA,"Clearfield County",America/New_York,814,NA,US,41.07,-78.26,64 +16851,"PO BOX",0,Lemont,,,PA,"Centre County",America/New_York,814,NA,US,40.82,-77.79,1221 +16852,STANDARD,0,Madisonburg,,,PA,"Centre County",America/New_York,814,NA,US,40.94,-77.49,340 +16853,"PO BOX",0,Milesburg,,,PA,"Centre County",America/New_York,814,NA,US,40.94,-77.79,1437 +16854,STANDARD,0,Millheim,,,PA,"Centre County",America/New_York,814,NA,US,40.89,-77.47,980 +16855,"PO BOX",0,"Mineral Springs","Mineral Spgs",,PA,"Clearfield County",America/New_York,814,NA,US,41,-78.38,289 +16856,"PO BOX",0,Mingoville,,,PA,"Centre County",America/New_York,814,NA,US,40.93,-77.74,228 +16858,STANDARD,0,Morrisdale,,,PA,"Clearfield County",America/New_York,814,NA,US,41.01,-78.22,3330 +16859,STANDARD,0,Moshannon,,,PA,"Centre County",America/New_York,814,NA,US,41.02,-78.04,410 +16860,STANDARD,0,Munson,,,PA,"Clearfield County",America/New_York,814,NA,US,40.94,-78.18,300 +16861,STANDARD,0,"New Millport",,,PA,"Clearfield County",America/New_York,814,NA,US,40.86,-78.52,290 +16863,STANDARD,0,Olanta,,,PA,"Clearfield County",America/New_York,814,NA,US,40.9,-78.5,620 +16864,STANDARD,0,Orviston,,,PA,"Centre County",America/New_York,814,NA,US,41.08,-77.65,71 +16865,STANDARD,0,"Pennsylvania Furnace","Pa Furnace",,PA,"Centre County",America/New_York,814,NA,US,40.72,-77.98,1580 +16866,STANDARD,0,Philipsburg,,,PA,"Centre County",America/New_York,814,NA,US,40.89,-78.21,6710 +16868,"PO BOX",0,"Pine Grove Mills","Pine Grv Mls",,PA,"Centre County",America/New_York,814,NA,US,40.73,-77.88,865 +16870,STANDARD,0,"Port Matilda",,,PA,"Centre County",America/New_York,814,NA,US,40.79,-78.05,7360 +16871,STANDARD,0,Pottersdale,,,PA,"Clearfield County",America/New_York,570,NA,US,41.2,-78.02,53 +16872,STANDARD,0,Rebersburg,,,PA,"Centre County",America/New_York,814,NA,US,40.97,-77.36,1450 +16873,"PO BOX",0,Shawville,,,PA,"Clearfield County",America/New_York,814,NA,US,41.07,-78.35,106 +16874,STANDARD,0,"Snow Shoe",,,PA,"Centre County",America/New_York,814,NA,US,41.02,-77.95,1190 +16875,STANDARD,0,"Spring Mills",,,PA,"Centre County",America/New_York,814,NA,US,40.86,-77.57,3760 +16876,"PO BOX",0,Wallaceton,,,PA,"Clearfield County",America/New_York,814,NA,US,40.96,-78.29,316 +16877,STANDARD,0,"Warriors Mark",,,PA,"Huntingdon County",America/New_York,814,NA,US,40.7,-78.11,1620 +16878,STANDARD,0,"West Decatur",,,PA,"Clearfield County",America/New_York,814,NA,US,40.94,-78.36,1680 +16879,STANDARD,0,Winburne,,,PA,"Clearfield County",America/New_York,814,NA,US,40.97,-78.15,330 +16881,STANDARD,0,Woodland,,,PA,"Clearfield County",America/New_York,814,NA,US,41.03,-78.32,1870 +16882,STANDARD,0,Woodward,,,PA,"Centre County",America/New_York,814,NA,US,40.92,-77.3,420 +16901,STANDARD,0,Wellsboro,,"Ansonia, Asaph, Charleston, Delmar, Draper, Duncan, Kennedy, Knapp, Shippen, Stokesdale, Stonyfork",PA,"Tioga County",America/New_York,570,NA,US,41.74,-77.3,8970 +16910,STANDARD,0,Alba,Snydertown,Snydertwn,PA,"Bradford County",America/New_York,570,NA,US,41.7,-76.82,39 +16911,"PO BOX",0,Arnot,,Bloss,PA,"Tioga County",America/New_York,570,NA,US,41.66,-77.14,339 +16912,STANDARD,0,Blossburg,,Blakes,PA,"Tioga County",America/New_York,570,NA,US,41.68,-77.06,1810 +16914,STANDARD,0,"Columbia Cross Roads","Columbia X Rd","Austinville, Big Pond, Col X Rds, Snedekerville, Wetona",PA,"Bradford County",America/New_York,570,NA,US,41.83,-76.8,2090 +16915,STANDARD,0,Coudersport,Oswayo,"Colesburg, Eulalia, Homer, Inez, Ladona, Mina, Odin, Summit, Sweden, Sweden Valley",PA,"Potter County",America/New_York,814,NA,US,41.77,-78.01,4890 +16917,STANDARD,0,Covington,,Covngtn,PA,"Tioga County",America/New_York,570,NA,US,41.74,-77.07,1270 +16918,STANDARD,1,Cowanesque,,,PA,"Tioga County",America/New_York,814,NA,US,41.93,-77.49,41 +16920,STANDARD,0,Elkland,,,PA,"Tioga County",America/New_York,814,NA,US,41.98,-77.31,1580 +16921,STANDARD,0,Gaines,,"Elk, Manhattan, Marshlands, Rexford, Watrous",PA,"Tioga County",America/New_York,,NA,US,41.78,-77.54,450 +16922,STANDARD,0,Galeton,,"Abbott, Carter Camp, West Branch, West Pike",PA,"Potter County",America/New_York,814,NA,US,41.73,-77.64,1480 +16923,STANDARD,0,Genesee,"North Bingham","Eleven Mile, Ellisburg, Gold, Hickox, Keech, Kinney, Raymond, West Bingham",PA,"Potter County",America/New_York,814,NA,US,41.98,-77.9,1180 +16925,STANDARD,0,Gillett,,"Bentley Creek, Berrytown, Fassett, Mosherville, South Creek, Wells",PA,"Bradford County",America/New_York,570,NA,US,41.95,-76.79,2960 +16926,STANDARD,0,"Granville Summit","Granville Smt","Cowley, Granville Ctr, Windfall",PA,"Bradford County",America/New_York,570,NA,US,41.71,-76.77,750 +16927,STANDARD,0,"Harrison Valley","Harrison Twp, Harrison Vly, Westfield",Harrison,PA,"Potter County",America/New_York,814,NA,US,41.96,-77.66,470 +16928,STANDARD,0,Knoxville,,"Austinburg, Deerfield",PA,"Tioga County",America/New_York,814,NA,US,41.95,-77.43,1140 +16929,STANDARD,0,Lawrenceville,,"E Lawrencevle, Somers Lane",PA,"Tioga County",America/New_York,570,NA,US,41.99,-77.12,2140 +16930,STANDARD,0,Liberty,,"Hartsfield, Sebring",PA,"Tioga County",America/New_York,570,NA,US,41.55,-77.1,1170 +16932,STANDARD,0,Mainesburg,,Sullivan,PA,"Tioga County",America/New_York,570,NA,US,41.78,-76.94,660 +16933,STANDARD,0,Mansfield,,"Bungy, Canoe Camp, Cherry Flats, E Charleston, Kellytown, Lambs Creek, Rutland, Whitneyville",PA,"Tioga County",America/New_York,570,NA,US,41.8,-77.07,4840 +16935,STANDARD,0,"Middlebury Center","Middlebry Ctr","Crooked Creek, Keeneyville, Mdby Center, Middlebury, Niles Valley, Shortsville",PA,"Tioga County",America/New_York,570,NA,US,41.89,-77.3,1090 +16936,STANDARD,0,Millerton,,"Daggett, Jackson Smt, Jobs Corners",PA,"Tioga County",America/New_York,570,NA,US,41.98,-76.95,1870 +16937,STANDARD,0,Mills,,,PA,"Potter County",America/New_York,814,NA,US,41.97,-77.71,193 +16938,STANDARD,0,Morris,,"Blackwell, Hoytville, Lorenton, Nauvoo, Oregon Hill, Plank",PA,"Tioga County",America/New_York,570,NA,US,41.58,-77.37,650 +16939,"PO BOX",0,"Morris Run",,,PA,"Tioga County",America/New_York,,NA,US,41.66,-77.04,259 +16940,"PO BOX",0,Nelson,,,PA,"Tioga County",America/New_York,,NA,US,41.99,-77.24,290 +16941,STANDARD,0,Genesee,"North Bingham",,PA,"Potter County",America/New_York,814,NA,US,41.99,-77.76,34 +16942,STANDARD,0,Osceola,,,PA,"Tioga County",America/New_York,,NA,US,41.98,-77.38,660 +16943,STANDARD,0,Sabinsville,,"Cathead, Hector, Sunderlinvle",PA,"Tioga County",America/New_York,814,NA,US,41.83,-77.61,420 +16945,"PO BOX",0,Sylvania,,,PA,"Bradford County",America/New_York,570,NA,US,41.8,-76.85,66 +16946,STANDARD,0,Tioga,,,PA,"Tioga County",America/New_York,570,NA,US,41.9,-77.13,2170 +16947,STANDARD,0,Troy,"W Burlington, West Burlington Township",,PA,"Bradford County",America/New_York,570,NA,US,41.78,-76.78,3870 +16948,STANDARD,0,Ulysses,,"Bingham, Brookland, Newfield",PA,"Potter County",America/New_York,814,NA,US,41.9,-77.75,1400 +16950,STANDARD,0,Westfield,"Cowanesque, Harrison Twp, Little Marsh","Brookfield, Elmer, North Fork, Potter Brook",PA,"Tioga County",America/New_York,814,NA,US,41.91,-77.54,2800 +17001,"PO BOX",0,"Camp Hill",,,PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,243 +17002,STANDARD,0,Allensville,,,PA,"Mifflin County",America/New_York,"717,814",NA,US,40.53,-77.81,670 +17003,STANDARD,0,Annville,,"Bellegrove, East Hanover, Ft Indiantown, Harper Tavern, Steelstown, Syner, West Annville",PA,"Lebanon County",America/New_York,717,NA,US,40.33,-76.5,10360 +17004,STANDARD,0,Belleville,,"Alexander Spr, Alexander Springs, Menno, Union Mills",PA,"Mifflin County",America/New_York,"814,717",NA,US,40.6,-77.72,4840 +17005,"PO BOX",0,Berrysburg,,,PA,"Dauphin County",America/New_York,717,NA,US,40.6,-76.81,352 +17006,STANDARD,0,Blain,,,PA,"Perry County",America/New_York,717,NA,US,40.33,-77.51,1060 +17007,STANDARD,0,"Boiling Springs","Boiling Spgs","South Middleton",PA,"Cumberland County",America/New_York,717,NA,US,40.15,-77.13,5840 +17008,"PO BOX",1,Bowmansdale,,,PA,"Cumberland County",America/New_York,717,NA,US,40.23,-77.02,60 +17009,STANDARD,0,Burnham,,,PA,"Mifflin County",America/New_York,717,NA,US,40.63,-77.56,1740 +17010,"PO BOX",0,Campbelltown,,,PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.58,563 +17011,STANDARD,0,"Camp Hill",Shiremanstown,"Camp Hill Brm",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,30950 +17012,UNIQUE,1,"Camp Hill",,"Book Of Month",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,0 +17013,STANDARD,0,Carlisle,"Carlisle Barracks, Carlisle Brks",,PA,"Cumberland County",America/New_York,717,NA,US,40.2,-77.2,30540 +17014,STANDARD,0,Cocolamus,,,PA,"Juniata County",America/New_York,717,NA,US,40.65,-77.1,133 +17015,STANDARD,0,Carlisle,"W Pennsboro, West Pennsboro",,PA,"Cumberland County",America/New_York,717,NA,US,40.15,-77.26,22040 +17016,"PO BOX",0,Cornwall,,"Cornwall Ctr",PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.4,1079 +17017,STANDARD,0,Dalmatia,,,PA,"Northumberland County",America/New_York,717,NA,US,40.65,-76.87,1570 +17018,STANDARD,0,Dauphin,,"Ellendale, Middle Paxton, Singersville, Water Gap",PA,"Dauphin County",America/New_York,717,NA,US,40.36,-76.93,4130 +17019,STANDARD,0,Dillsburg,,"Bermudian, Clear Spring, Siddonsburg",PA,"York County",America/New_York,717,NA,US,40.11,-77.03,17970 +17020,STANDARD,0,Duncannon,,"Cove, Dellville, Perdix, Watts, Wheatfield",PA,"Perry County",America/New_York,717,NA,US,40.41,-77.04,8180 +17021,STANDARD,0,"East Waterford","E Waterford","Ewaterfrd, Ewtrford, Perulack, Scyoc, Spears Grove, Waterloo",PA,"Juniata County",America/New_York,717,NA,US,40.36,-77.67,820 +17022,STANDARD,0,Elizabethtown,,"Aberdeen, Bellaire, Deodate, Elizabthtwn, Etown, West Donegal",PA,"Lancaster County",America/New_York,717,NA,US,40.15,-76.59,27900 +17023,STANDARD,0,Elizabethville,Elizabethvle,Eville,PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.82,3090 +17024,STANDARD,0,Elliottsburg,"Green Park","Erly, Greenpark, Little German, Mansville",PA,"Perry County",America/New_York,717,NA,US,40.41,-77.31,1820 +17025,STANDARD,0,Enola,"E Pennsboro, East Pennsboro","South Enola, W Fairview, West Enola, West Fairview",PA,"Cumberland County",America/New_York,717,NA,US,40.28,-76.93,16860 +17026,STANDARD,0,Fredericksburg,Fredericksbrg,,PA,"Lebanon County",America/New_York,717,NA,US,40.45,-76.42,3570 +17027,"PO BOX",0,Grantham,"Messiah Coll, Messiah College",,PA,"Cumberland County",America/New_York,717,NA,US,40.16,-77,499 +17028,STANDARD,0,Grantville,,Shellsville,PA,"Dauphin County",America/New_York,717,NA,US,40.39,-76.68,3300 +17029,STANDARD,0,Granville,,Anderson,PA,"Mifflin County",America/New_York,,NA,US,40.56,-77.62,290 +17030,STANDARD,0,Gratz,,,PA,"Dauphin County",America/New_York,717,NA,US,40.6,-76.71,680 +17032,STANDARD,0,Halifax,,"Carsonville, Enders, Enterline, Fisherville, Inglenook, Mcclellan, Powells Vly, Reed, Waynesville",PA,"Dauphin County",America/New_York,717,NA,US,40.46,-76.93,7350 +17033,STANDARD,0,Hershey,,"Bachmanville, Derry Church, Palmdale, S Londonderry, Sandbeach, Swatara Sta, Union Deposit",PA,"Dauphin County",America/New_York,717,NA,US,40.28,-76.64,13600 +17034,STANDARD,0,Highspire,,"High Spire",PA,"Dauphin County",America/New_York,717,NA,US,40.21,-76.79,2300 +17035,STANDARD,0,"Honey Grove",,"Mccullochs Ml, Reeds Gap",PA,"Juniata County",America/New_York,717,NA,US,40.42,-77.55,680 +17036,STANDARD,0,Hummelstown,,"Hoernerstown, South Hanover, Stoverdale, Waltonville",PA,"Dauphin County",America/New_York,717,NA,US,40.26,-76.71,23010 +17037,STANDARD,0,Ickesburg,,,PA,"Perry County",America/New_York,717,NA,US,40.43,-77.42,940 +17038,STANDARD,0,Jonestown,,"Bordnersville, Green Point, Jonestwn, Mcgillstown",PA,"Lebanon County",America/New_York,717,NA,US,40.41,-76.48,7510 +17039,"PO BOX",0,Kleinfeltersville,Kleinfeltersv,,PA,"Lebanon County",America/New_York,717,NA,US,40.29,-76.24,124 +17040,STANDARD,0,Landisburg,,"Alinda, Landisbg, Lebo",PA,"Perry County",America/New_York,717,NA,US,40.34,-77.3,2390 +17041,"PO BOX",0,Lawn,,,PA,"Lebanon County",America/New_York,717,NA,US,40.22,-76.54,210 +17042,STANDARD,0,Lebanon,"Cleona, Colebrook, Cornwall Boro, Cornwall Borough","Avon, Avon Heights, Beverly Hts, Buffalo Sprs, Ebenezer, Flintville, Fontana, Heilmandale, Iona, Leb, Mount Wilson, N Cornwall, North Lebanon, Rocherty, South Lebanon Twp",PA,"Lebanon County",America/New_York,717,NA,US,40.34,-76.42,36100 +17043,STANDARD,0,Lemoyne,Wormleysburg,"Washington Ht, Wormleysbg",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.89,5410 +17044,STANDARD,0,Lewistown,,"Bratton, Colonial Hill, Hawstone, Horningford, Juniata Terr, Klondyke, Lewistown Jun, Lewistwn, Longfellow, Maitland, Paintersville, Strodes Mills, Vira",PA,"Mifflin County",America/New_York,717,NA,US,40.59,-77.57,17590 +17045,STANDARD,0,Liverpool,,"Mount Patrick, Oriental",PA,"Perry County",America/New_York,717,NA,US,40.6,-77,3070 +17046,STANDARD,0,Lebanon,"Swatara Township, Swatara Twp",,PA,"Lebanon County",America/New_York,717,NA,US,40.38,-76.43,28510 +17047,STANDARD,0,Loysville,,"Andersonburg, Bixler, Cisna Run, Couchtown, Fort Robinson, Ne Madison, Sw Madison",PA,"Perry County",America/New_York,717,NA,US,40.38,-77.33,2470 +17048,STANDARD,0,Lykens,,"Erdman, Loyalton, Specktown",PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.76,3580 +17049,STANDARD,0,"Mc Alisterville","Mc Alistervle","Bunkertown, Mc Alistervl, Mcalistervle, Swales",PA,"Juniata County",America/New_York,717,NA,US,40.65,-77.28,2990 +17050,STANDARD,0,Mechanicsburg,"Hampden Township, Hampden Twp, Silver Spg Tp, Silver Spring Township","Defense Depot, Goodhope, Hampden Station, Hogestown, Mech, Mechancsbrg, Mechbg, Navy Ships, Navy Sup Dpt, Trindle Sprg, Wertzville",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-77.02,40670 +17051,STANDARD,0,"Mc Veytown",,"Atkinsons Mills, Atkinsons Mls, Little Kansas, Mcveytown, Mcveytwn, Ryde",PA,"Mifflin County",America/New_York,717,NA,US,40.49,-77.74,3970 +17052,STANDARD,0,"Mapleton Depot","Mapleton Dep","Bankstown, Barneytown, Birdville, Knightsville",PA,"Huntingdon County",America/New_York,814,NA,US,40.37,-77.97,1420 +17053,STANDARD,0,Marysville,,,PA,"Perry County",America/New_York,717,NA,US,40.33,-76.93,4900 +17054,"PO BOX",0,Mattawana,,,PA,"Mifflin County",America/New_York,,NA,US,40.49,-77.72,185 +17055,STANDARD,0,Mechanicsburg,Bowmansdale,"Andersontown, Brandtsville, Defense Depot, Lisburn, Locust Point, Mech, Mechancsbrg, Mechbg, Mount Allen, Navy Ships, Navy Sup Dpt, Shepherdstown, Upper Allen, Williams Grv, Winding Hill",PA,"Cumberland County",America/New_York,717,NA,US,40.21,-77,37660 +17056,"PO BOX",0,Mexico,,,PA,"Juniata County",America/New_York,717,NA,US,40.54,-77.35,154 +17057,STANDARD,0,Middletown,,"H I A, Hbg Inter Airp, Londonderry, Lower Swatara, Mdt, Middletwn, Midltwn, Royalton, Shope Gardens",PA,"Dauphin County",America/New_York,717,NA,US,40.19,-76.7,19240 +17058,STANDARD,0,Mifflin,,"Doyles Mills, Mccoysville, Nook",PA,"Juniata County",America/New_York,717,NA,US,40.51,-77.55,1490 +17059,STANDARD,0,Mifflintown,,"Arch Rock, Cuba Mills, Denholm, East Salem, Fermanagh, Jericho Mills, Macedonia, Van Wert, Walker, Zooks Dam",PA,"Juniata County",America/New_York,717,NA,US,40.57,-77.39,6890 +17060,STANDARD,0,"Mill Creek",,"Mill Crk, Mlcreek",PA,"Huntingdon County",America/New_York,814,NA,US,40.43,-77.92,1060 +17061,STANDARD,0,Millersburg,,"Killinger, Lenkerville, Millersbg, Rife, Upper Paxton",PA,"Dauphin County",America/New_York,717,NA,US,40.54,-76.95,6160 +17062,STANDARD,0,Millerstown,,"Donnally Mill, Eshcol, Knousetown, Reward, Seven Stars",PA,"Perry County",America/New_York,717,NA,US,40.55,-77.15,3830 +17063,STANDARD,0,Milroy,,"Locke Mills, Naginey, Roseann, Siglerville",PA,"Mifflin County",America/New_York,717,NA,US,40.71,-77.58,3110 +17064,"PO BOX",0,"Mount Gretna",,"Mt Gretna, Mt Gretna Hts",PA,"Lebanon County",America/New_York,717,NA,US,40.24,-76.47,918 +17065,STANDARD,0,"Mount Holly Springs","Mt Holly Spgs","Mount Holly Spgs, Mt Holly Springs, Upper Mill",PA,"Cumberland County",America/New_York,717,NA,US,40.11,-77.18,3920 +17066,STANDARD,0,"Mount Union",,"Aughwick, Lucy Furnace, Mt Union, Silver Ford",PA,"Huntingdon County",America/New_York,814,NA,US,40.38,-77.88,4230 +17067,STANDARD,0,Myerstown,,"Frystown, Greble, Millardsville, Myerstwn, Reistville",PA,"Lebanon County",America/New_York,717,NA,US,40.37,-76.3,14860 +17068,STANDARD,0,"New Bloomfield","New Bloomfld","Mecks Corner, Paradise Park, Perry Village",PA,"Perry County",America/New_York,717,NA,US,40.41,-77.18,3830 +17069,"PO BOX",0,"New Buffalo",,,PA,"Perry County",America/New_York,717,NA,US,40.45,-76.97,221 +17070,STANDARD,0,"New Cumberland","New Cumberlnd","Drexel Hills, Fair Acres, Frogtown, Marsh Run, N Cumberld, New Cmbrlnd, New Cumb, New Cumberland Army D, New Market, Newcmbrlnd, Nw Cumb, Nw Cumberland, Nw Cumberlnd, Rudytown, Westfield Ter",PA,"Cumberland County",America/New_York,717,NA,US,40.23,-76.87,15670 +17071,"PO BOX",0,"New Germantown","New Germanton",Toboyne,PA,"Perry County",America/New_York,717,NA,US,40.3,-77.6,55 +17072,"PO BOX",0,"New Kingstown",,,PA,"Cumberland County",America/New_York,717,NA,US,40.23,-77.08,260 +17073,STANDARD,0,Newmanstown,,"Millbach, Millbach Sprs, Sheridan, Stricklerstwn",PA,"Lebanon County",America/New_York,717,NA,US,40.35,-76.21,5720 +17074,STANDARD,0,Newport,,"Bailey, East Newport, Everhartville, Howe, Mannsville, Markelsville, Montgomery Fy, Newprt, Nwprt, Saville, Walnut Grove, Wila",PA,"Perry County",America/New_York,717,NA,US,40.47,-77.13,6670 +17075,"PO BOX",0,"Newton Hamilton","Newton Hamltn","Newtn Hamltn",PA,"Mifflin County",America/New_York,,NA,US,40.39,-77.83,366 +17076,STANDARD,0,"Oakland Mills",,,PA,"Juniata County",America/New_York,717,NA,US,40.62,-77.31,129 +17077,"PO BOX",0,Ono,,,PA,"Lebanon County",America/New_York,717,NA,US,40.4,-76.54,225 +17078,STANDARD,0,Palmyra,,"Coffeetown, N Londonderry, Upper Lawn",PA,"Lebanon County",America/New_York,717,NA,US,40.3,-76.59,22180 +17080,"PO BOX",0,Pillow,,,PA,"Dauphin County",America/New_York,717,NA,US,40.64,-76.8,335 +17081,"PO BOX",0,Plainfield,,"Wolfs X Rds",PA,"Cumberland County",America/New_York,717,NA,US,40.2,-77.28,377 +17082,STANDARD,0,"Port Royal",,"Academia, Beale, Old Port, Pleasantview, Pt Royal, Seven Pines, Spruce Hill, Turbett",PA,"Juniata County",America/New_York,717,NA,US,40.53,-77.39,3150 +17083,"PO BOX",0,Quentin,,,PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.44,231 +17084,STANDARD,0,Reedsville,,"Barrville, Gardenview, Shraders",PA,"Mifflin County",America/New_York,717,NA,US,40.68,-77.63,4190 +17085,"PO BOX",0,Rexmont,,,PA,"Lebanon County",America/New_York,717,NA,US,40.28,-76.39,214 +17086,STANDARD,0,Richfield,,"Evendale, West Perry",PA,"Juniata County",America/New_York,717,NA,US,40.69,-77.12,2140 +17087,STANDARD,0,Richland,,,PA,"Lebanon County",America/New_York,717,NA,US,40.44,-76.28,2640 +17088,"PO BOX",0,Schaefferstown,Schaefferstwn,,PA,"Lebanon County",America/New_York,717,NA,US,40.3,-76.29,830 +17089,UNIQUE,0,"Camp Hill",,"Blue Shield, High Mark Blue Shield",PA,"Cumberland County",America/New_York,717,NA,US,40.24,-76.92,0 +17090,STANDARD,0,"Shermans Dale",,Shermansdale,PA,"Perry County",America/New_York,717,NA,US,40.33,-77.19,4880 +17091,UNIQUE,1,Lebanon,Genco,,PA,"Lebanon County",America/New_York,717,NA,US,40.23,-76.92,0 +17093,"PO BOX",0,Summerdale,,,PA,"Cumberland County",America/New_York,717,NA,US,40.31,-76.93,743 +17094,STANDARD,0,Thompsontown,,"Locust Run, Maze",PA,"Juniata County",America/New_York,717,NA,US,40.56,-77.23,2250 +17097,"PO BOX",0,Wiconisco,,,PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.68,889 +17098,STANDARD,0,Williamstown,,"Green Fields, Williams",PA,"Dauphin County",America/New_York,717,NA,US,40.58,-76.61,2050 +17099,STANDARD,0,Yeagertown,,Yeagertwn,PA,"Mifflin County",America/New_York,717,NA,US,40.64,-77.58,1020 +17101,STANDARD,0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.26,-76.89,1420 +17102,STANDARD,0,Harrisburg,,"Hbg, West End",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.91,5800 +17103,STANDARD,0,Harrisburg,Penbrook,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,10670 +17104,STANDARD,0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.25,-76.86,16650 +17105,"PO BOX",0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,1109 +17106,"PO BOX",0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,340 +17107,UNIQUE,0,Harrisburg,,"Hbg, Usps Official",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17108,"PO BOX",0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,191 +17109,STANDARD,0,Harrisburg,"Lower Paxton, Penbrook",,PA,"Dauphin County",America/New_York,717,NA,US,40.29,-76.82,22790 +17110,STANDARD,0,Harrisburg,,,PA,"Dauphin County",America/New_York,717,NA,US,40.32,-76.89,24330 +17111,STANDARD,0,Harrisburg,"Paxtang, Swatara",,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.79,32150 +17112,STANDARD,0,Harrisburg,"Linglestown, Lower Paxton, Paxtonia, West Hanover",,PA,"Dauphin County",America/New_York,717,NA,US,40.37,-76.78,35400 +17113,STANDARD,0,Harrisburg,"Bressler, Oberlin, Steelton",,PA,"Dauphin County",America/New_York,717,NA,US,40.23,-76.83,10260 +17120,UNIQUE,0,Harrisburg,,"Hbg, State Of Pennsylvania",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17121,UNIQUE,0,Harrisburg,,"Hbg, State Employment Security",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17122,UNIQUE,0,Harrisburg,,"Bureau Of Motor Vehicles, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17123,UNIQUE,0,Harrisburg,,"Hbg, Traffic Safety",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17124,UNIQUE,0,Harrisburg,,"Hbg, State Liquor Control",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17125,UNIQUE,0,Harrisburg,,"Hbg, State General Services",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17126,UNIQUE,0,Harrisburg,,"Hbg, State Dept Of Education",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17127,UNIQUE,0,Harrisburg,,"Department Of Revenue, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17128,UNIQUE,0,Harrisburg,,"Department Of Revenue, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17129,STANDARD,0,Harrisburg,,Hbg,PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17130,UNIQUE,0,Harrisburg,,"Hbg, Pheaa",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17140,UNIQUE,0,Harrisburg,,"Blue Shield, Hbg, Pa Blue Shield",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17177,UNIQUE,0,Harrisburg,,"Blue Cross, Capital Blue Cross, Hbg",PA,"Dauphin County",America/New_York,717,NA,US,40.27,-76.88,0 +17201,STANDARD,0,Chambersburg,,"Aqua, Beautiful, Cheesetown, Clay Hill, Duffield, Franklin Furn, Greenvillage, Guilford Sprs, Guilford Township, Housum, Jackson Hall, Kauffman, Kerrstown, Kerrstown Sq, Letterkenny Army Depo, New Franklin, Nyesville, Pond Bank, Red Bridge, Stoufferstown, Sunbeam, Turkeyfoot",PA,"Franklin County",America/New_York,717,NA,US,39.93,-77.65,24510 +17202,STANDARD,0,Chambersburg,"Guilford Township, Guilford Twp",,PA,"Franklin County",America/New_York,717,NA,US,39.92,-77.71,30020 +17210,"PO BOX",0,Amberson,,,PA,"Franklin County",America/New_York,717,NA,US,40.21,-77.66,233 +17211,STANDARD,0,Artemas,,"Inglesmith, Mann",PA,"Bedford County",America/New_York,814,NA,US,39.76,-78.4,360 +17212,STANDARD,0,"Big Cove Tannery","Big Cove Tann",,PA,"Fulton County",America/New_York,717,NA,US,39.84,-78.05,600 +17213,STANDARD,0,"Blairs Mills",,"Lack, Nossville, Richvale, Shade Valley, Tell",PA,"Huntingdon County",America/New_York,814,NA,US,40.25,-77.77,500 +17214,STANDARD,0,"Blue Ridge Summit","Blue Ridge Sm",Charmian,PA,"Franklin County",America/New_York,717,NA,US,39.73,-77.46,990 +17215,STANDARD,0,"Burnt Cabins",,,PA,"Fulton County",America/New_York,,NA,US,40.06,-77.9,280 +17217,STANDARD,0,Concord,,,PA,"Franklin County",America/New_York,717,NA,US,40.25,-77.7,142 +17219,STANDARD,0,Doylesburg,,Fannett,PA,"Franklin County",America/New_York,717,NA,US,40.22,-77.7,440 +17220,STANDARD,0,"Dry Run",,,PA,"Franklin County",America/New_York,717,NA,US,40.19,-77.74,540 +17221,STANDARD,0,Fannettsburg,,Boggstown,PA,"Franklin County",America/New_York,717,NA,US,40.05,-77.83,570 +17222,STANDARD,0,Fayetteville,,,PA,"Franklin County",America/New_York,717,NA,US,39.91,-77.56,10250 +17223,STANDARD,0,"Fort Littleton","Fort Littletn","Ft Littleton",PA,"Fulton County",America/New_York,,NA,US,40.06,-77.93,250 +17224,STANDARD,0,"Fort Loudon",,"Bricker Dev, Cowans Gap, Cowans Vlg, Ft Loudon, Metal, Richmond Furn, Tuscarora Hts",PA,"Franklin County",America/New_York,717,NA,US,39.97,-77.9,1580 +17225,STANDARD,0,Greencastle,,"Bino, Cosytown, Mason Dixon, Milnor, Upton, Waynecastle, Welsh Run, Worleytown",PA,"Franklin County",America/New_York,717,NA,US,39.79,-77.72,18930 +17228,STANDARD,0,Harrisonville,,"Gracey, Licking Creek, Saluvia",PA,"Fulton County",America/New_York,717,NA,US,39.97,-78.08,980 +17229,STANDARD,0,Hustontown,,Hustontwn,PA,"Fulton County",America/New_York,717,NA,US,40.08,-78.01,1070 +17231,"PO BOX",0,Lemasters,,,PA,"Franklin County",America/New_York,717,NA,US,39.85,-77.84,248 +17232,STANDARD,0,Lurgan,,,PA,"Franklin County",America/New_York,717,NA,US,40.13,-77.64,114 +17233,STANDARD,0,"Mc Connellsburg","Mc Connellsbg","Andover, Cito, Knobsville, Mcconnellsburg, Webster Mills",PA,"Fulton County",America/New_York,717,NA,US,39.93,-77.99,4590 +17235,"PO BOX",0,Marion,,,PA,"Franklin County",America/New_York,717,NA,US,39.86,-77.7,742 +17236,STANDARD,0,Mercersburg,,"Africa, Charlestown, Claylick, Cove Gap, Dickey, Kasiesville, Markes, Peters, Shimpstown, Sylvan",PA,"Franklin County",America/New_York,717,NA,US,39.83,-77.9,7990 +17237,STANDARD,0,"Mont Alto",,,PA,"Franklin County",America/New_York,717,NA,US,39.84,-77.54,1510 +17238,STANDARD,0,Needmore,,"Belfast, Sipes Mill",PA,"Fulton County",America/New_York,717,NA,US,39.86,-78.15,1650 +17239,STANDARD,0,Neelyton,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.13,-77.85,210 +17240,STANDARD,0,Newburg,,,PA,"Cumberland County",America/New_York,717,NA,US,40.13,-77.55,3380 +17241,STANDARD,0,Newville,,"Bloserville, Cobblerville, Dickinson, Doubling Gap, Entlerville, Greenspring, Hays Grove, Heberlig, Little Wash, Lower Mifflin, Mccrea, North Newton, Upper Frankfd, Upper Mifflin",PA,"Cumberland County",America/New_York,717,NA,US,40.17,-77.4,11250 +17243,STANDARD,0,Orbisonia,,"Blacklog, Maddensville, Meadow Gap",PA,"Huntingdon County",America/New_York,814,NA,US,40.24,-77.89,1150 +17244,STANDARD,0,Orrstown,,,PA,"Franklin County",America/New_York,717,NA,US,40.05,-77.6,2260 +17246,STANDARD,0,"Pleasant Hall",,,PA,"Franklin County",America/New_York,717,NA,US,40.05,-77.66,210 +17247,"PO BOX",0,Quincy,,,PA,"Franklin County",America/New_York,717,NA,US,39.8,-77.58,518 +17249,"PO BOX",0,"Rockhill Furnace","Rockhill Furn",,PA,"Huntingdon County",America/New_York,814,NA,US,40.24,-77.9,418 +17250,"PO BOX",0,Rouzerville,,,PA,"Franklin County",America/New_York,717,NA,US,39.74,-77.52,358 +17251,"PO BOX",0,Roxbury,,,PA,"Franklin County",America/New_York,717,NA,US,40.13,-77.69,268 +17252,STANDARD,0,"Saint Thomas",,"St Thomas",PA,"Franklin County",America/New_York,717,NA,US,39.92,-77.8,3520 +17253,"PO BOX",0,Saltillo,,,PA,"Huntingdon County",America/New_York,814,NA,US,40.21,-78.01,333 +17254,"PO BOX",0,Scotland,,,PA,"Franklin County",America/New_York,717,NA,US,39.97,-77.59,507 +17255,STANDARD,0,"Shade Gap",,,PA,"Huntingdon County",America/New_York,814,NA,US,40.18,-77.86,930 +17256,"PO BOX",0,"Shady Grove",,,PA,"Franklin County",America/New_York,717,NA,US,39.78,-77.68,263 +17257,STANDARD,0,Shippensburg,,"Cleversburg, Lees Cross Rd, Mainsville, Middle Spring, Mongul, Mowersville, Pinola, Stoughstown, Tusculam",PA,"Cumberland County",America/New_York,717,NA,US,40.04,-77.52,23390 +17260,STANDARD,0,Shirleysburg,"Mount Union",,PA,"Huntingdon County",America/New_York,814,NA,US,40.29,-77.87,1070 +17261,"PO BOX",0,"South Mountain","S Mountain",,PA,"Franklin County",America/New_York,717,NA,US,39.86,-77.51,484 +17262,STANDARD,0,"Spring Run",,,PA,"Franklin County",America/New_York,717,NA,US,40.15,-77.71,1020 +17263,"PO BOX",0,"State Line",,,PA,"Franklin County",America/New_York,717,NA,US,39.73,-77.72,731 +17264,STANDARD,0,"Three Springs",,"Cherry Grove, Pogue, Selea",PA,"Huntingdon County",America/New_York,814,NA,US,40.19,-77.98,2110 +17265,STANDARD,0,Upperstrasburg,Upperstrasbrg,"Upper Strasbg",PA,"Franklin County",America/New_York,717,NA,US,40.06,-77.76,430 +17266,STANDARD,0,"Walnut Bottom",,"South Newton",PA,"Cumberland County",America/New_York,717,NA,US,40.09,-77.41,520 +17267,STANDARD,0,Warfordsburg,,"Amaranth, Buck Valley, Dott, Stoneybreak",PA,"Fulton County",America/New_York,717,NA,US,39.77,-78.2,2570 +17268,STANDARD,0,Waynesboro,,"Altenwald, Biesecker Gap, Cress, Eastland Hill, Fiveforks, Fox Hill, Glen Forney, Good, Pen Mar, Pennersville, Polktown, Roadside, Tomstown, Wayne Heights, Weltys",PA,"Franklin County",America/New_York,717,NA,US,39.75,-77.58,27050 +17270,"PO BOX",1,Williamson,,,PA,"Franklin County",America/New_York,717,NA,US,39.85,-77.8,161 +17271,STANDARD,0,"Willow Hill",,,PA,"Franklin County",America/New_York,717,NA,US,40.11,-77.77,440 +17272,"PO BOX",0,Zullinger,,,PA,"Franklin County",America/New_York,717,NA,US,39.77,-77.62,492 +17301,STANDARD,0,Abbottstown,,,PA,"Adams County",America/New_York,,NA,US,39.88,-76.98,4060 +17302,STANDARD,0,Airville,,"Collinsville, Kyleville, Muddy Creek Forks, Sunnyburn, Woodbine",PA,"York County",America/New_York,717,NA,US,39.82,-76.39,2650 +17303,"PO BOX",0,Arendtsville,,,PA,"Adams County",America/New_York,717,NA,US,39.92,-77.3,864 +17304,STANDARD,0,Aspers,,"Center Mills",PA,"Adams County",America/New_York,717,NA,US,39.97,-77.23,2970 +17306,"PO BOX",0,Bendersville,,,PA,"Adams County",America/New_York,717,NA,US,39.98,-77.25,783 +17307,STANDARD,0,Biglerville,,"Beecherstown, Brysonia, Floradale, Guernsey, Table Rock",PA,"Adams County",America/New_York,717,NA,US,39.93,-77.24,5130 +17309,STANDARD,0,Brogue,,"Shenks Ferry",PA,"York County",America/New_York,717,NA,US,39.86,-76.45,1940 +17310,"PO BOX",0,Cashtown,,,PA,"Adams County",America/New_York,717,NA,US,39.88,-77.34,255 +17311,"PO BOX",0,Codorus,,,PA,"York County",America/New_York,717,NA,US,39.82,-76.84,465 +17312,"PO BOX",0,Craley,,,PA,"York County",America/New_York,717,NA,US,39.95,-76.54,139 +17313,STANDARD,0,Dallastown,Yoe,,PA,"York County",America/New_York,717,NA,US,39.89,-76.64,9590 +17314,STANDARD,0,Delta,,"Bryansville, Coal Cabin Beach, Slate Hill, West Bangor",PA,"York County",America/New_York,717,NA,US,39.76,-76.33,5350 +17315,STANDARD,0,Dover,York,"Bigmount, Davidsburg, Mount Royal",PA,"York County",America/New_York,717,NA,US,40,-76.84,24480 +17316,STANDARD,0,"East Berlin",,,PA,"Adams County",America/New_York,717,NA,US,39.93,-76.97,8100 +17317,"PO BOX",0,"East Prospect",,,PA,"York County",America/New_York,717,NA,US,39.97,-76.52,546 +17318,"PO BOX",0,Emigsville,,,PA,"York County",America/New_York,717,NA,US,40.02,-76.72,453 +17319,STANDARD,0,Etters,,"Goldsboro, Newberrytown, Yocumtown",PA,"York County",America/New_York,717,NA,US,40.15,-76.79,10420 +17320,STANDARD,0,Fairfield,Greenstone,"Carroll Valley, Charnita",PA,"Adams County",America/New_York,717,NA,US,39.78,-77.36,7530 +17321,STANDARD,0,"Fawn Grove",,Fawn,PA,"York County",America/New_York,717,NA,US,39.75,-76.44,2160 +17322,STANDARD,0,Felton,,"Brogueville, Cross Roads, Lucky",PA,"York County",America/New_York,717,NA,US,39.85,-76.56,5660 +17323,"PO BOX",0,Franklintown,,,PA,"York County",America/New_York,717,NA,US,40.07,-77.02,341 +17324,STANDARD,0,Gardners,,"Goodyear, Hunters Run, Mount Tabor, Pine Grove Furnace, Starners Station, Toland, Uriah",PA,"Cumberland County",America/New_York,,NA,US,40.04,-77.18,3890 +17325,STANDARD,0,Gettysburg,,"Bonneauville, Fairplay, Heidlersburg, Hunterstown",PA,"Adams County",America/New_York,717,NA,US,39.83,-77.23,23420 +17326,UNIQUE,1,Gettysburg,,"Federal Communications Com",PA,"Adams County",America/New_York,717,NA,US,39.83,-77.23,0 +17327,STANDARD,0,"Glen Rock",,"Hametown, Larue",PA,"York County",America/New_York,717,NA,US,39.79,-76.73,7040 +17329,STANDARD,0,Glenville,Brodbecks,Sticks,PA,"York County",America/New_York,717,NA,US,39.76,-76.85,2570 +17331,STANDARD,0,Hanover,,"Baresville, Bowman Addition, Brushtown, Edgegrove, Fairview Drive, Gitts Run, Gnatstown, Grangeville, Green Springs, Hershey Heights, Hobart, Jacobs Mills, Moulstown, Park Heights, Park Hills, Parkville, Pennville, Pleasant Hill, Shorbes Hill, York Road",PA,"York County",America/New_York,717,NA,US,39.81,-76.98,50650 +17332,UNIQUE,0,Hanover,,"Direct Brands",PA,"York County",America/New_York,717,NA,US,39.81,-76.98,0 +17333,UNIQUE,0,Hanover,,"Hanover Direct",PA,"York County",America/New_York,717,NA,US,39.81,-76.98,0 +17334,UNIQUE,0,Hanover,,"Direct Brands",PA,"York County",America/New_York,717,NA,US,39.8,-76.98,0 +17335,UNIQUE,0,Hanover,,"Direct Brands",PA,"York County",America/New_York,717,NA,US,39.8,-76.98,0 +17337,"PO BOX",0,Idaville,,,PA,"Adams County",America/New_York,717,NA,US,40.01,-77.2,68 +17339,STANDARD,0,Lewisberry,,"Fortney, Pinetown, Silver Lake",PA,"York County",America/New_York,717,NA,US,40.13,-76.86,6590 +17340,STANDARD,0,Littlestown,,"Kingsdale, White Hall",PA,"Adams County",America/New_York,717,NA,US,39.74,-77.08,10560 +17342,"PO BOX",0,Loganville,,,PA,"York County",America/New_York,717,NA,US,39.85,-76.7,379 +17343,"PO BOX",0,"Mc Knightstown",Mcknightstown,,PA,"Adams County",America/New_York,717,NA,US,39.87,-77.33,273 +17344,STANDARD,0,"Mc Sherrystown",Mcsherrystown,,PA,"Adams County",America/New_York,717,NA,US,39.81,-77.02,3240 +17345,STANDARD,0,Manchester,,Strinestown,PA,"York County",America/New_York,717,NA,US,40.06,-76.72,7240 +17347,STANDARD,0,"Mount Wolf",,"Saginaw, Starview",PA,"York County",America/New_York,717,NA,US,40.06,-76.7,6360 +17349,STANDARD,0,"New Freedom",,Tolna,PA,"York County",America/New_York,717,NA,US,39.73,-76.69,7930 +17350,STANDARD,0,"New Oxford",,,PA,"Adams County",America/New_York,717,NA,US,39.86,-77.05,12550 +17352,STANDARD,0,"New Park",,"Bridgeton, Gatchellville",PA,"York County",America/New_York,717,NA,US,39.76,-76.5,1220 +17353,STANDARD,0,Orrtanna,,,PA,"Adams County",America/New_York,717,NA,US,39.88,-77.38,2840 +17354,STANDARD,1,"Porters Sideling","Ports Sidling, Spring Grove",,PA,"York County",America/New_York,717,NA,US,39.85,-76.88,0 +17355,"PO BOX",0,Railroad,,,PA,"York County",America/New_York,717,NA,US,39.76,-76.69,239 +17356,STANDARD,0,"Red Lion",,"Freysville, New Bridgeville, Pleasant View, Snyder Corner, Springvale",PA,"York County",America/New_York,717,NA,US,39.89,-76.6,21640 +17358,"PO BOX",0,Rossville,,,PA,"York County",America/New_York,717,NA,US,40.07,-76.92,20 +17360,STANDARD,0,"Seven Valleys",,,PA,"York County",America/New_York,717,NA,US,39.85,-76.76,6210 +17361,STANDARD,0,Shrewsbury,,,PA,"York County",America/New_York,717,NA,US,39.77,-76.68,5610 +17362,STANDARD,0,"Spring Grove","Menges Mills","Nashville, Sinsheim, Stoverstown",PA,"York County",America/New_York,717,NA,US,39.88,-76.86,13300 +17363,STANDARD,0,Stewartstown,,Rinely,PA,"York County",America/New_York,717,NA,US,39.75,-76.59,8770 +17364,STANDARD,0,Thomasville,,,PA,"York County",America/New_York,717,NA,US,39.92,-76.87,3550 +17365,STANDARD,0,Wellsville,,,PA,"York County",America/New_York,717,NA,US,40.05,-76.94,2440 +17366,STANDARD,0,Windsor,,Bittersville,PA,"York County",America/New_York,717,NA,US,39.91,-76.58,5080 +17368,STANDARD,0,Wrightsville,,Longlevel,PA,"York County",America/New_York,717,NA,US,40.02,-76.53,7080 +17370,STANDARD,0,"York Haven",,Cly,PA,"York County",America/New_York,717,NA,US,40.11,-76.71,5940 +17371,"PO BOX",0,"York New Salem","York Nw Salem",,PA,"York County",America/New_York,717,NA,US,39.9,-76.79,375 +17372,STANDARD,0,"York Springs",,,PA,"Adams County",America/New_York,717,NA,US,40,-77.11,4220 +17375,UNIQUE,0,"Peach Glen",,"Knouse Foods",PA,"Adams County",America/New_York,717,NA,US,40.02,-77.23,0 +17401,STANDARD,0,York,,,PA,"York County",America/New_York,717,NA,US,39.96,-76.73,15700 +17402,STANDARD,0,York,"East York, Springettsbury Township, Sprngtsbry Tp","Fayfield, Glades, Locust Grove, Longstown, Mount Zion, Pleasureville, Spry, Stonybrook, Yorklyn, Yorkshire",PA,"York County",America/New_York,717,NA,US,39.96,-76.66,32010 +17403,STANDARD,0,York,,"Botts, Leaders Heights, Ore Valley, Windsor Park, Wyndham Hills",PA,"York County",America/New_York,717,NA,US,39.92,-76.71,34060 +17404,STANDARD,0,York,"West York",Shiloh,PA,"York County",America/New_York,717,NA,US,40,-76.77,35040 +17405,"PO BOX",0,York,,,PA,"York County",America/New_York,717,NA,US,39.96,-76.73,608 +17406,STANDARD,0,York,"Hallam, Hellam, Yorkana","Accomac, Highmount, Kreutz Creek",PA,"York County",America/New_York,717,NA,US,40.01,-76.64,22170 +17407,STANDARD,0,York,Jacobus,,PA,"York County",America/New_York,717,NA,US,39.88,-76.71,2190 +17408,STANDARD,0,York,"New Salem Borough, New Salem Bro, W Manchester, West Manchester Twp",,PA,"York County",America/New_York,717,NA,US,39.95,-76.81,22260 +17415,UNIQUE,1,York,,"North American Outdoor Group",PA,"York County",America/New_York,717,NA,US,39.96,-76.73,0 +17501,STANDARD,0,Akron,,,PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.2,4390 +17502,STANDARD,0,Bainbridge,,"Conoy, Falmouth, Stack Town",PA,"Lancaster County",America/New_York,717,NA,US,40.09,-76.67,2600 +17503,"PO BOX",0,Bart,,,PA,"Lancaster County",America/New_York,717,NA,US,39.92,-76.07,173 +17504,"PO BOX",0,Bausman,,,PA,"Lancaster County",America/New_York,717,NA,US,40,-76.32,261 +17505,STANDARD,0,"Bird In Hand",,,PA,"Lancaster County",America/New_York,717,NA,US,40.05,-76.18,1880 +17506,"PO BOX",0,"Blue Ball",,,PA,"Lancaster County",America/New_York,717,NA,US,40.12,-76.03,551 +17507,"PO BOX",0,Bowmansville,,,PA,"Lancaster County",America/New_York,717,NA,US,40.2,-76.02,544 +17508,"PO BOX",0,Brownstown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.12,-76.22,1030 +17509,STANDARD,0,Christiana,Ninepoints,"Andrews Bridge, Bartville, Cooperville, Smyrna",PA,"Lancaster County",America/New_York,717,NA,US,39.91,-76.04,4640 +17512,STANDARD,0,Columbia,,"Ironville, Kinderhook",PA,"Lancaster County",America/New_York,717,NA,US,40.03,-76.49,16110 +17516,STANDARD,0,Conestoga,,"Creswell, Highville, Safe Harbor",PA,"Lancaster County",America/New_York,717,NA,US,39.93,-76.36,4190 +17517,STANDARD,0,Denver,,Fivepointville,PA,"Lancaster County",America/New_York,717,NA,US,40.23,-76.13,15190 +17518,STANDARD,0,Drumore,,"Liberty Square",PA,"Lancaster County",America/New_York,717,NA,US,39.83,-76.25,1180 +17519,STANDARD,0,"East Earl",,"Cedar Lane, Weaverland",PA,"Lancaster County",America/New_York,717,NA,US,40.14,-76.02,6090 +17520,STANDARD,0,"East Petersburg","E Petersburg",,PA,"Lancaster County",America/New_York,717,NA,US,40.1,-76.35,4640 +17521,"PO BOX",0,Elm,,,PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.42,78 +17522,STANDARD,0,Ephrata,,"Clay, Durlach, Farmersville, Hahnstown, Hinkletown, Murrell, Napierville, Voganville, Weidmanville",PA,"Lancaster County",America/New_York,717,NA,US,40.18,-76.18,31170 +17527,STANDARD,0,Gap,,"White Horse",PA,"Lancaster County",America/New_York,717,NA,US,40.01,-75.99,6120 +17528,"PO BOX",0,Goodville,,,PA,"Lancaster County",America/New_York,717,NA,US,39.89,-76.32,222 +17529,STANDARD,0,Gordonville,,,PA,"Lancaster County",America/New_York,717,NA,US,40.04,-76.1,4080 +17532,STANDARD,0,Holtwood,,"Bethesda, Rawlinsville",PA,"Lancaster County",America/New_York,717,NA,US,39.82,-76.33,3190 +17533,"PO BOX",0,Hopeland,,,PA,"Lancaster County",America/New_York,717,NA,US,40.2,-76.2,128 +17534,"PO BOX",0,Intercourse,,,PA,"Lancaster County",America/New_York,717,NA,US,40.06,-76.14,330 +17535,STANDARD,0,Kinzers,,"Buyerstown, New Milltown",PA,"Lancaster County",America/New_York,717,NA,US,39.98,-76.02,2610 +17536,STANDARD,0,Kirkwood,,Colerain,PA,"Lancaster County",America/New_York,717,NA,US,39.82,-76.09,2790 +17537,"PO BOX",0,Lampeter,,,PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.24,236 +17538,STANDARD,0,Landisville,Salunga,Bamford,PA,"Lancaster County",America/New_York,717,NA,US,40.09,-76.41,6660 +17540,STANDARD,0,Leola,,"Bareville, Leacock, Oregon, Rockrimmin Ridge",PA,"Lancaster County",America/New_York,717,NA,US,40.09,-76.18,10030 +17543,STANDARD,0,Lititz,,"Brickerville, Fairland, Halfville, Kissel Hill, Lexington, Lime Rock, Millway, Poplar Grove, Rothsville, Speedwell",PA,"Lancaster County",America/New_York,717,NA,US,40.15,-76.3,43730 +17545,STANDARD,0,Manheim,,"Elstonville, Elwyn Terrace, Lancaster Junction, Mastersonville, Mount Hope, Old Line, Sporting Hill",PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.39,21400 +17547,STANDARD,0,Marietta,,"Shocks Mills",PA,"Lancaster County",America/New_York,717,NA,US,40.05,-76.55,7370 +17549,"PO BOX",0,Martindale,,,PA,"Lancaster County",America/New_York,717,NA,US,40.17,-76.17,29 +17550,"PO BOX",0,Maytown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.08,-76.58,1132 +17551,STANDARD,0,Millersville,,Slackwater,PA,"Lancaster County",America/New_York,717,NA,US,40,-76.35,7440 +17552,STANDARD,0,"Mount Joy",Florin,"Donegal Heights, Donegal Springs, Farmdale, Milton Grove",PA,"Lancaster County",America/New_York,717,NA,US,40.11,-76.5,19650 +17554,STANDARD,0,Mountville,,,PA,"Lancaster County",America/New_York,717,NA,US,40.04,-76.43,7470 +17555,STANDARD,0,Narvon,,"Beartown, Churchtown, Fetterville, South Hermitage",PA,"Lancaster County",America/New_York,717,NA,US,40.12,-75.97,6940 +17557,STANDARD,0,"New Holland",,"Greenbank, Groffdale, Laurelville",PA,"Lancaster County",America/New_York,717,NA,US,40.1,-76.09,13850 +17560,STANDARD,0,"New Providence","New Providnce","Providence, Smithville",PA,"Lancaster County",America/New_York,717,NA,US,39.9,-76.23,4690 +17562,STANDARD,0,Paradise,,"Bellemont, Harristown, Iva, Lapark, Leaman Place, Nickel Mines, Vintage",PA,"Lancaster County",America/New_York,717,NA,US,40,-76.12,4220 +17563,STANDARD,0,"Peach Bottom",,"Eldora, Fulton, Furniss, Mcsparren, New Texas, Oakryn, Penn Hill, Wrightsdale",PA,"Lancaster County",America/New_York,717,NA,US,39.76,-76.18,3660 +17564,"PO BOX",0,Penryn,,,PA,"Lancaster County",America/New_York,717,NA,US,40.16,-76.42,70 +17565,STANDARD,0,Pequea,,"Colemanville, Martic, Martic Forge, Marticville, Mount Nebo",PA,"Lancaster County",America/New_York,717,NA,US,39.9,-76.31,2460 +17566,STANDARD,0,Quarryville,,"Buck, Mechanics Grove",PA,"Lancaster County",America/New_York,717,NA,US,39.89,-76.16,11790 +17567,"PO BOX",0,Reamstown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.21,-76.11,623 +17568,"PO BOX",0,Refton,,,PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.24,139 +17569,STANDARD,0,Reinholds,,"Blainsport, Swartzville, Vere Cruz, Vinemont",PA,"Lancaster County",America/New_York,717,NA,US,40.27,-76.11,5930 +17570,"PO BOX",0,Rheems,,,PA,"Lancaster County",America/New_York,717,NA,US,40.13,-76.57,262 +17572,STANDARD,0,Ronks,Soudersburg,Mascot,PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.16,3680 +17573,UNIQUE,0,Lancaster,,"Jay Advertising",PA,"Lancaster County",America/New_York,717,NA,US,40.01,-76.16,0 +17575,"PO BOX",0,"Silver Spring",,"Forest Knolls",PA,"Lancaster County",America/New_York,717,NA,US,40.06,-76.43,147 +17576,STANDARD,0,Smoketown,,,PA,"Lancaster County",America/New_York,717,NA,US,40.04,-76.2,240 +17578,STANDARD,0,Stevens,,"Redrun, Schoeneck",PA,"Lancaster County",America/New_York,717,NA,US,40.23,-76.18,6300 +20016,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.94,-77.09,24500 +20017,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.94,-76.99,16170 +20018,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.93,-76.97,16800 +20019,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-76.94,50130 +20020,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.86,-76.98,42310 +20022,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.91,-76.96,0 +20023,"PO BOX",1,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.01,0 +20024,STANDARD,0,Washington,"Fort Lesley J Mcnair, Fort Mcnair, Ft L J Mcnair",,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,11930 +20026,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,308 +20027,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-76.98,104 +20029,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,511 +20030,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,559 +20032,STANDARD,0,Washington,"Bolling AFB","Bolling Air Force Base, Wash, Washing, Washingtn",DC,"District of Columbia",America/New_York,202,NA,US,38.83,-77.01,31150 +20033,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,80 +20035,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,126 +20036,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.91,-77.04,4150 +20037,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.06,6320 +20038,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,261 +20039,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,166 +20040,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,212 +20041,"PO BOX",0,Washington,,"Dulles International Airp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,75 +20042,UNIQUE,0,Washington,,"Sun Trust Bank Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20043,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,86 +20044,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,335 +20045,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.03,32 +20046,UNIQUE,1,Washington,,"G E I C O",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20047,UNIQUE,0,Washington,,"Criterion Ins Co",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20049,UNIQUE,0,Washington,,"Amer Assc Retired Persons",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20050,"PO BOX",0,Washington,Pentagon,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20051,UNIQUE,1,Washington,,"Woodward And Lothrop",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20052,UNIQUE,0,Washington,,"G W Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.05,124 +20053,UNIQUE,0,Washington,,Verizon,DC,"District of Columbia",America/New_York,202,NA,US,38.88,-77.01,0 +20055,UNIQUE,0,Washington,,"Bank Of America",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20056,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,147 +20057,UNIQUE,0,Washington,,"Georgetown Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.91,-77.08,799 +20058,UNIQUE,0,Washington,,"Marriott Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20059,UNIQUE,0,Washington,,"Howard Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,99 +20060,UNIQUE,0,Washington,,"Howard University Hospital",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20061,UNIQUE,0,Washington,,"Wells Fargo",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20062,UNIQUE,0,Washington,,"Us Chamber Of Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20063,UNIQUE,0,Washington,,"Int Group Plans Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20064,UNIQUE,0,Washington,,"Catholic Univ",DC,"District of Columbia",America/New_York,202,NA,US,38.94,-77,33 +20065,UNIQUE,0,Washington,,"Blue Cross Group Hosp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20066,UNIQUE,0,Washington,,"Washington Dc Post Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20067,UNIQUE,0,Washington,,Pepco,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20068,UNIQUE,0,Washington,,Pepco,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20069,UNIQUE,0,Washington,,"Wash Intell Bureau Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20070,UNIQUE,0,Washington,,"Wash Intell Bureau Inc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20071,UNIQUE,0,Washington,,"Washington Post",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,28 +20073,UNIQUE,0,Washington,,"Pnc Financial",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20074,UNIQUE,0,Washington,,"Pnc Financial",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20075,UNIQUE,0,Washington,,"Pnc Financial",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20076,UNIQUE,0,Washington,,Geico,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20077,UNIQUE,0,Washington,,"Washington Brm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20078,UNIQUE,0,Washington,,"Washington Brm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20080,UNIQUE,0,Washington,,"Washington Gas",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20081,UNIQUE,0,Washington,,"Washington Gas",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20082,UNIQUE,0,Washington,,"Natl Repub Cong Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20088,"PO BOX",1,Washington,,"Friendship Heights",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20090,"PO BOX",0,Washington,,"General Delivery",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,394 +20091,"PO BOX",0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,125 +20097,UNIQUE,1,Washington,,"Natl Repub Cong Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20098,UNIQUE,1,Washington,,"Vietnam Vet Mem Fund",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20101,UNIQUE,0,Dulles,,"Dulles P & D Center",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,87 +20102,UNIQUE,0,Dulles,,"Dulles Air Transfer Office",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,0 +20103,UNIQUE,0,Dulles,,"Stamp Distribution Network",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,0 +20104,UNIQUE,0,Dulles,,"Inspection Service Forensic",VA,"Loudoun County",America/New_York,571,NA,US,38.92,-77.35,0 +20105,STANDARD,0,Aldie,"Stone Ridge",,VA,"Loudoun County",America/New_York,"540,703,571",NA,US,38.97,-77.64,32660 +20106,STANDARD,0,Amissville,Viewtown,,VA,"Culpeper County",America/New_York,,NA,US,38.67,-77.99,4640 +20107,STANDARD,1,Arcola,,,VA,"Loudoun County",America/New_York,,NA,US,38.96,-77.52,31 +20108,"PO BOX",0,Manassas,,,VA,"Manassas City",America/New_York,571,NA,US,38.74,-77.48,1684 +20109,STANDARD,0,Manassas,"Sudley Spgs, Sudley Springs",,VA,"Prince William County",America/New_York,"571,703",NA,US,38.79,-77.53,37490 +20110,STANDARD,0,Manassas,,,VA,"Manassas city",America/New_York,"571,703",NA,US,38.74,-77.48,44240 +20111,STANDARD,0,Manassas,"Manassas Park",,VA,"Prince William County",America/New_York,"571,703",NA,US,38.75,-77.43,36040 +20112,STANDARD,0,Manassas,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.66,-77.43,28440 +20113,"PO BOX",0,Manassas,"Manassas Park",,VA,"Manassas City",America/New_York,571,NA,US,38.74,-77.48,188 +20115,STANDARD,0,Marshall,,,VA,"Fauquier County",America/New_York,540,NA,US,38.87,-77.85,5430 +20116,"PO BOX",0,Marshall,,,VA,"Fauquier County",America/New_York,,NA,US,38.87,-77.85,902 +20117,STANDARD,0,Middleburg,,,VA,"Loudoun County",America/New_York,540,NA,US,38.97,-77.73,1560 +20118,"PO BOX",0,Middleburg,,,VA,"Loudoun County",America/New_York,540,NA,US,38.97,-77.74,2122 +20119,STANDARD,0,Catlett,,,VA,"Fauquier County",America/New_York,540,NA,US,38.61,-77.64,3720 +20120,STANDARD,0,Centreville,"Sully Station",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.84,-77.44,40450 +20121,STANDARD,0,Centreville,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.81,-77.46,26750 +20122,"PO BOX",0,Centreville,,,VA,"Fairfax County",America/New_York,571,NA,US,38.84,-77.44,621 +20124,STANDARD,0,Clifton,,,VA,"Fairfax County",America/New_York,571,NA,US,38.77,-77.38,15080 +20128,"PO BOX",0,Orlean,,,VA,"Fauquier County",America/New_York,,NA,US,38.74,-77.96,255 +20129,STANDARD,0,"Paeonian Springs","Paeonian Spgs",,VA,"Loudoun County",America/New_York,703,NA,US,39.16,-77.61,650 +20130,STANDARD,0,Paris,,,VA,"Clarke County",America/New_York,,NA,US,39,-77.95,260 +20131,"PO BOX",0,Philomont,,,VA,"Loudoun County",America/New_York,,NA,US,39.05,-77.74,375 +20132,STANDARD,0,Purcellville,Hillsboro,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.71,16860 +20134,"PO BOX",0,Purcellville,Hillsboro,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.71,959 +20135,STANDARD,0,Bluemont,"Mount Weather",,VA,"Clarke County",America/New_York,703,NA,US,39.11,-77.83,2520 +20136,STANDARD,0,Bristow,,,VA,"Prince William County",America/New_York,571,NA,US,38.74,-77.55,31270 +20137,STANDARD,0,"Broad Run",,,VA,"Fauquier County",America/New_York,540,NA,US,38.81,-77.72,1860 +20138,"PO BOX",0,Calverton,,,VA,"Fauquier County",America/New_York,,NA,US,38.63,-77.67,289 +20139,"PO BOX",0,Casanova,,,VA,"Fauquier County",America/New_York,,NA,US,38.66,-77.7,326 +20140,"PO BOX",0,Rectortown,,,VA,"Fauquier County",America/New_York,,NA,US,38.81,-77.9,98 +20141,STANDARD,0,"Round Hill",,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.77,7570 +20142,"PO BOX",0,"Round Hill",,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.77,667 +20143,STANDARD,0,Catharpin,,,VA,"Prince William County",America/New_York,571,NA,US,38.84,-77.56,1110 +20144,STANDARD,0,Delaplane,,,VA,"Fauquier County",America/New_York,540,NA,US,38.92,-77.92,860 +20146,"PO BOX",0,Ashburn,,,VA,"Loudoun County",America/New_York,,NA,US,39.04,-77.48,510 +20147,STANDARD,0,Ashburn,,,VA,"Loudoun County",America/New_York,703,NA,US,39.04,-77.48,63400 +20148,STANDARD,0,Ashburn,"Brambleton, Broadlands",,VA,"Loudoun County",America/New_York,"571,703",NA,US,39,-77.52,59380 +20149,UNIQUE,0,Ashburn,,"Natl Assn Letter Carriers",VA,"Loudoun County",America/New_York,571,NA,US,39.04,-77.48,0 +20151,STANDARD,0,Chantilly,Fairfax,,VA,"Fairfax County",America/New_York,571,NA,US,38.9,-77.45,21880 +20152,STANDARD,0,Chantilly,"Fairfax, South Riding",,VA,"Loudoun County",America/New_York,"571,703",NA,US,38.92,-77.5,36430 +20153,"PO BOX",0,Chantilly,Fairfax,,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.4,632 +20155,STANDARD,0,Gainesville,,,VA,"Prince William County",America/New_York,571,NA,US,38.79,-77.61,36090 +20156,"PO BOX",0,Gainesville,,,VA,"Prince William County",America/New_York,571,NA,US,38.79,-77.61,339 +20158,STANDARD,0,Hamilton,,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.66,4360 +20159,"PO BOX",0,Hamilton,,,VA,"Loudoun County",America/New_York,540,NA,US,39.13,-77.66,419 +20160,"PO BOX",0,Lincoln,Purcellville,,VA,"Loudoun County",America/New_York,540,NA,US,39.11,-77.69,243 +20163,"PO BOX",0,Sterling,,,VA,"Loudoun County",America/New_York,,NA,US,39,-77.4,0 +20164,STANDARD,0,Sterling,,,VA,"Loudoun County",America/New_York,703,NA,US,39,-77.4,39110 +20165,STANDARD,0,Sterling,"Potomac Falls",,VA,"Loudoun County",America/New_York,703,NA,US,39.06,-77.39,33190 +20166,STANDARD,0,Sterling,"Arcola, Dulles",,VA,"Loudoun County",America/New_York,"571,703",NA,US,38.99,-77.46,12350 +20167,"PO BOX",0,Sterling,,,VA,"Loudoun County",America/New_York,571,NA,US,39,-77.4,542 +20168,"PO BOX",0,Haymarket,,,VA,"Prince William County",America/New_York,571,NA,US,38.81,-77.63,269 +20169,STANDARD,0,Haymarket,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.88,-77.65,27590 +20170,STANDARD,0,Herndon,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.96,-77.38,40620 +20171,STANDARD,0,Herndon,"Oak Hill",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.92,-77.4,49720 +20172,"PO BOX",0,Herndon,,,VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,769 +20175,STANDARD,0,Leesburg,,,VA,"Loudoun County",America/New_York,"571,703,540",NA,US,39.1,-77.55,31280 +20176,STANDARD,0,Leesburg,Lansdowne,Lucketts,VA,"Loudoun County",America/New_York,"540,571,703",NA,US,39.18,-77.54,49640 +20177,"PO BOX",0,Leesburg,,,VA,"Loudoun County",America/New_York,571,NA,US,39.1,-77.55,711 +20178,"PO BOX",0,Leesburg,,,VA,"Loudoun County",America/New_York,571,NA,US,39.1,-77.55,239 +20180,STANDARD,0,Lovettsville,,,VA,"Loudoun County",America/New_York,540,NA,US,39.27,-77.63,7910 +20181,STANDARD,0,Nokesville,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.69,-77.58,9110 +20182,"PO BOX",0,Nokesville,,,VA,"Prince William County",America/New_York,571,NA,US,38.69,-77.58,437 +20184,STANDARD,0,Upperville,,,VA,"Fauquier County",America/New_York,703,NA,US,38.99,-77.88,400 +20185,"PO BOX",0,Upperville,,,VA,"Fauquier County",America/New_York,540,NA,US,38.99,-77.88,384 +20186,STANDARD,0,Warrenton,,"Airlie, Opal",VA,"Fauquier County",America/New_York,540,NA,US,38.71,-77.79,13490 +20187,STANDARD,0,Warrenton,"New Baltimore, Vint Hill Farms, Vint Hill Frm",,VA,"Fauquier County",America/New_York,540,NA,US,38.72,-77.75,18410 +20188,"PO BOX",0,Warrenton,"Vint Hill Farms, Vint Hill Frm",,VA,"Fauquier County",America/New_York,540,NA,US,38.71,-77.79,1067 +20189,STANDARD,0,Dulles,,,VA,"Loudoun County",America/New_York,"571,703",NA,US,38.96,-77.45,9117 +20190,STANDARD,0,Reston,Herndon,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.95,-77.34,17820 +20191,STANDARD,0,Reston,Herndon,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.93,-77.35,27670 +20192,UNIQUE,0,Herndon,Reston,"Hundon, Us Geological Survey",VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,0 +20193,UNIQUE,1,Reston,"Herndon, Hundon, Sallie Mae",,VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.34,0 +20194,STANDARD,0,Reston,Herndon,,VA,"Fairfax County",America/New_York,"703,571",NA,US,38.98,-77.34,12470 +20195,"PO BOX",0,Reston,Herndon,,VA,"Fairfax County",America/New_York,571,NA,US,38.95,-77.34,525 +20196,UNIQUE,0,Reston,Herndon,Sprint,VA,"Fairfax County",America/New_York,571,NA,US,38.95,-77.34,0 +20197,STANDARD,0,Waterford,,,VA,"Loudoun County",America/New_York,"571,703",NA,US,39.2,-77.63,2460 +20198,STANDARD,0,"The Plains",,,VA,"Fauquier County",America/New_York,540,NA,US,38.86,-77.77,1810 +20199,UNIQUE,1,Dulles,"Visa Lottery State Dept",,VA,"Loudoun County",America/New_York,571,NA,US,39,-77.45,0 +20201,UNIQUE,0,Washington,,"Dept Hlth Human Serv",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20202,UNIQUE,0,Washington,,"Dept Education",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20203,UNIQUE,0,Washington,,"Social Securtiy Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20204,UNIQUE,0,Washington,,"Food And Drug Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.01,0 +20206,UNIQUE,0,Washington,,"Soc Sec Bureau Hearing App",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20207,UNIQUE,0,Washington,,"Consumer Product Safety Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20208,UNIQUE,0,Washington,,"Natl Institute Of Educ",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20210,UNIQUE,0,Washington,,"Dept Of Labor",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20211,UNIQUE,0,Washington,,"Office Of Workers Comp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20212,UNIQUE,0,Washington,,"Dept Labor Stats",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20213,UNIQUE,0,Washington,,"Dept Labor Manpower Admn",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20214,UNIQUE,0,Washington,,"Bureau Labor Statistics",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20215,UNIQUE,0,Washington,,"Dept Labor Payroll Audit Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20216,UNIQUE,0,Washington,,"Labor Management Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20217,UNIQUE,0,Washington,,"Us Tax Court",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20218,UNIQUE,0,Washington,,"Natl Comm On Social Sec",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20219,UNIQUE,0,Washington,,"Comptroller Of Currency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20220,UNIQUE,0,Washington,,"Dept Treasury",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20221,UNIQUE,0,Washington,,"District Director Irs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20222,UNIQUE,0,Washington,,"Us Treasurer",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20223,UNIQUE,0,Washington,,"Us Secret Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20224,UNIQUE,0,Washington,,"Internal Revenue Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20226,UNIQUE,0,Washington,,"Dept Treas Other Offices",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20227,UNIQUE,0,Washington,,"Dept Treas Check Claims Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20228,UNIQUE,0,Washington,,"Bureau Engav And Printing",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20229,UNIQUE,0,Washington,,"Us Bureau Of Customs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20230,UNIQUE,0,Washington,,"Dept Commerce",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20232,UNIQUE,0,Washington,,"Resolutn Trust Oversight Brd",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20233,UNIQUE,0,Washington,,"Bureau Of Census",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20235,UNIQUE,0,Washington,,"Dept Commerce Outside Hq",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20237,UNIQUE,0,Washington,,"Broadcasting Bd Of Governors",DC,"District of Columbia",America/New_York,202,NA,US,38.88,-77.01,0 +20238,UNIQUE,0,Washington,,"Us Holocaust Memorial Museum",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20239,UNIQUE,0,Washington,,"Bureau Of Public Debt",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20240,UNIQUE,0,Washington,,"Dept Interior",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.04,0 +20241,UNIQUE,0,Washington,,"Bureau Of Mines",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20242,UNIQUE,0,Washington,,"National Park Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20244,UNIQUE,0,Washington,,"Geological Survey",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20245,UNIQUE,0,Washington,,"Bureau Of Indian Affairs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.04,0 +20250,UNIQUE,0,Washington,,"Dept Agriculture",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20251,UNIQUE,0,Washington,,"Dept Ag Ofc Outside Hq",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20252,UNIQUE,0,Washington,,"Smokey Bear",DC,,America/New_York,,NA,US,38.89,-77.03,0 +20254,UNIQUE,0,Washington,,"Social Securtiy Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20260,STANDARD,0,Washington,,"Usps Headquarters",DC,"District of Columbia",America/New_York,202,NA,US,38.88,-77.02,0 +20261,UNIQUE,0,Washington,,"Usps Consumer Affairs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20262,UNIQUE,0,Washington,,Mafic,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20265,UNIQUE,0,Washington,,"Philatelic Sales Division",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20266,UNIQUE,0,Washington,,"Philatelic Sales",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20268,UNIQUE,0,Washington,,"Postal Regulatory Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20270,UNIQUE,0,Washington,,"Presidential Transition Team",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20277,UNIQUE,0,Washington,,"Washington Dc Brm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20289,UNIQUE,0,Washington,,"Universal Postal Union Congr",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20299,UNIQUE,0,Washington,,Readasorus,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20301,UNIQUE,0,Washington,Pentagon,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20303,UNIQUE,0,Washington,,"National Imaging And Mapping",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20306,UNIQUE,0,Washington,,"Armed Forces Inst Pathology",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20307,UNIQUE,1,Washington,,"Walter Reed Army Med Center",DC,"District of Columbia",America/New_York,202,NA,US,38.97,-77.03,76 +20310,UNIQUE,0,Washington,,"Dept Army Pentagon",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20314,UNIQUE,0,Washington,,"Us Army Corp Of Engineers",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20317,UNIQUE,0,Washington,,"Soldiers Airmens Home",DC,"District of Columbia",America/New_York,202,NA,US,38.93,-77.01,11 +20318,UNIQUE,0,Washington,,"Army Criminal Invest, Joint Staff",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20319,UNIQUE,0,Washington,"Fort Mcnair",,DC,"District of Columbia",America/New_York,202,NA,US,38.86,-77.02,20 +20330,UNIQUE,0,Washington,,"Dept Air Force Pentagon",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20340,UNIQUE,0,Washington,,"Defense Intelligence",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20350,UNIQUE,0,Washington,,"Chief Naval Operation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20355,UNIQUE,0,Washington,,Pentagon,DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20370,UNIQUE,0,Washington,"Navy Annex",,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20372,UNIQUE,0,Washington,,"Bur Medicine Surgery",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20373,UNIQUE,0,"Naval Anacost Annex","Anacostia, Anacostia Anx, Jbab, Joint Base Anacostia Bolling, Washington","Naval Station Anacostia",DC,"District of Columbia",America/New_York,202,NA,US,38.86,-77.01,140 +20374,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Navy Yard",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,29 +20375,UNIQUE,0,Washington,,"Naval Research Laboratory",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20376,STANDARD,0,"Washington Navy Yard","Naval Sea Sys, Naval Sea Systems Command, Washington, Washington Na",,DC,"District of Columbia",America/New_York,202,NA,US,38.87,-76.99,0 +20380,UNIQUE,0,Washington,,"Dept Navy Hq Marines Arl",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20388,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Naval Investigative Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20389,UNIQUE,0,Washington,,"Naval Intelligence Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20390,UNIQUE,0,Washington,"Marine Barrks, Us Marine Corps Barracks","Dept Navy Other Offices",DC,"District of Columbia",America/New_York,202,NA,US,38.88,-76.99,329 +20391,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Dept Navy Fed Credit Union",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20392,UNIQUE,0,Washington,,"Navy Observatory",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20393,UNIQUE,0,Washington,,"Navy Security Group",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20394,UNIQUE,0,Washington,,"Naval Telecommunications Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20395,UNIQUE,0,Washington,,"Naval Intelligence Support C",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20398,STANDARD,0,"Washington Navy Yard","Washington, Washington Na","Military Sealift Command",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20401,UNIQUE,0,Washington,,"Gov Printing Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20402,UNIQUE,0,Washington,,"Gpo Supt Of Documents",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20403,UNIQUE,0,Washington,,"Gpo Field Serv Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20404,UNIQUE,0,Washington,,"Gpo Procurement Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20405,UNIQUE,0,Washington,,"Gen Services Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20406,UNIQUE,0,Washington,,"Gsa Crystal City",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20407,UNIQUE,0,Washington,,"Gsa Region 3",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20408,UNIQUE,0,Washington,,"Natl Archives And Records",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20409,UNIQUE,1,Washington,,"Fed Records Center",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20410,UNIQUE,0,Washington,,"Housing And Urban Dev",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20411,UNIQUE,0,Washington,,"Hud Fed Housing Adm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20412,UNIQUE,0,Washington,,"Fha Comptroller",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20413,UNIQUE,0,Washington,,"Housing Assistance Adm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20414,UNIQUE,0,Washington,,"Hud Fed Natl Mortgage",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20415,UNIQUE,0,Washington,,"Office Personnel Mgmt",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20416,UNIQUE,0,Washington,,"Small Business Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20417,UNIQUE,0,Washington,,"Gen Services Admin",DC,,America/New_York,202,NA,US,38.9,-77,0 +20418,UNIQUE,0,Washington,,"National Academy Of Science",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.05,0 +20419,UNIQUE,0,Washington,,"Merit Systems Protection Bd",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20420,UNIQUE,0,Washington,,"Veterans Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20421,UNIQUE,0,Washington,,"Veterans Benefits Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20422,UNIQUE,0,Washington,,"Veterans Hospital",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20423,UNIQUE,0,Washington,,"Surface Transportation Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20424,UNIQUE,0,Washington,,"Fed Labor Relations Auth",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20425,UNIQUE,0,Washington,,"Comm On Civil Rights",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20426,UNIQUE,0,Washington,,"Federal Energy Reg Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20427,UNIQUE,0,Washington,,"Fed Mediation And Concil Ser",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.05,0 +20428,UNIQUE,0,Washington,,"Civil Aeronautics Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20429,UNIQUE,0,Washington,,"Federal Deposit Ins Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20431,UNIQUE,0,Washington,,"International Monetary Fund",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,97 +20433,UNIQUE,0,Washington,,"World Bank",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,194 +20434,UNIQUE,0,Washington,,"Resolution Trust Corporation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20435,UNIQUE,0,Washington,,"National Selective Service",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20436,UNIQUE,0,Washington,,"International Trade Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20437,UNIQUE,0,Washington,,"Food And Drug Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20439,UNIQUE,0,Washington,,"Us Court Appeal Fed Circuit",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20440,UNIQUE,0,Washington,,"International Joint Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20441,UNIQUE,0,Washington,,"Inter Amer Defense Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20442,UNIQUE,0,Washington,,"Court Of Military Appeals",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20444,UNIQUE,0,Washington,,"Tennessee Valley Auth",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20447,UNIQUE,0,Washington,,"Family Support Administratio",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20451,UNIQUE,0,Washington,,"Arms Control And Disarm Agy",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20453,UNIQUE,0,Washington,,"Comm Equal Oppor Armed Forc",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20456,UNIQUE,0,Washington,,"National Credit Union Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20460,UNIQUE,0,Washington,,"Envir Protect Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20463,UNIQUE,0,Washington,,"Federal Election Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20468,UNIQUE,0,Washington,,"Gsa Surplus Sales",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20469,UNIQUE,0,Washington,,"Gsa Consumer Products Info",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20470,UNIQUE,0,Washington,,"Gsa Tele Com Serv",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20472,UNIQUE,0,Washington,,"Fed Emer Mngt Agncy",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20500,STANDARD,0,Washington,,,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20501,UNIQUE,0,Washington,,"White House Ofc Of Vice Pres",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20502,UNIQUE,0,Washington,,"White House Ofc Staff",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20503,UNIQUE,0,Washington,,"Office Of Mgmt And Budget",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20504,UNIQUE,0,Washington,,"National Security Counsel",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20505,UNIQUE,0,Washington,,"Central Intelligence Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20506,UNIQUE,0,Washington,,"Exec Office Other Organ",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20507,UNIQUE,0,Washington,,"Equal Emp Opportunity Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20508,UNIQUE,0,Washington,,"Us Trade Representative",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20509,UNIQUE,0,Washington,,"White House Ofc Staff",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.04,0 +20510,UNIQUE,0,Washington,,"Us Senate",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.01,0 +20511,UNIQUE,0,Washington,,"Dir National Intelligence",DC,"District of Columbia",America/New_York,202,NA,US,38.97,-77.05,0 +20515,UNIQUE,0,Washington,,"Us House Of Representatives",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20520,UNIQUE,0,Washington,,"Dept Of State",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.05,0 +20521,UNIQUE,0,Washington,,"State Department",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,384 +20522,UNIQUE,0,Washington,,"Government Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20523,UNIQUE,0,Washington,,"Dept Of State Intrntl Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20524,UNIQUE,0,Washington,,"Passport Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20525,UNIQUE,0,Washington,,Action,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20526,UNIQUE,0,Washington,,"Peace Corps",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20527,UNIQUE,0,Washington,,"Oversea Pvt Inves Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20528,UNIQUE,0,Washington,,"Dept Homeland Security",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20529,UNIQUE,0,Washington,,"Us Citizenship Immigration",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.01,0 +20530,UNIQUE,0,Washington,,"Dept Justice",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20531,UNIQUE,0,Washington,,"Law Enforce Assist Adm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20532,UNIQUE,1,Washington,,"Bureau Narc Dngr Drugs Lab",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20533,UNIQUE,0,Washington,,"Bureau Narc And Dngr Drugs",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20534,UNIQUE,0,Washington,,"Bureau Of Prisons",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20535,UNIQUE,0,Washington,,Fbi,DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20536,UNIQUE,0,Washington,,"Immig And Naturalization Ser",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20537,UNIQUE,0,Washington,,"Fbi Identification Unit",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20538,UNIQUE,0,Washington,,"Immig And Naturalization Ser",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20539,UNIQUE,0,Washington,,"Immig And Natural Records",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20540,UNIQUE,0,Washington,,"Library Of Congress",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77,0 +20541,UNIQUE,0,Washington,,"Library Of Congress Card Div",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20542,UNIQUE,0,Washington,,"Library Of Congress Handicap",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20543,UNIQUE,0,Washington,,"Us Supreme Court",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20544,UNIQUE,0,Washington,,"Adm Office Us Court",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20546,UNIQUE,0,Washington,,"Natl Aero And Space Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20547,UNIQUE,0,Washington,,"Us Information Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20548,UNIQUE,0,Washington,,"General Accounting Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20549,UNIQUE,0,Washington,,"Securities And Exchange Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20551,UNIQUE,0,Washington,,"Federal Reserve Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.05,0 +20552,UNIQUE,0,Washington,,"Cnsmr Fnncl Prtct Brd",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20553,UNIQUE,0,Washington,,"Federal Aviation Agency",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20554,UNIQUE,0,Washington,,"Fed Communications Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20555,UNIQUE,0,Washington,,"Nuclear Regulatory Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20557,UNIQUE,0,Washington,,"Lib Of Congress Licensing",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20558,UNIQUE,1,Washington,,"Comm Tech Uses Copyrights",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20559,UNIQUE,0,Washington,,"Us Copyright Office",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20560,UNIQUE,0,Washington,,"Smithsonian Institute",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20565,UNIQUE,0,Washington,,"National Gallery Of Art",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.02,0 +20566,UNIQUE,0,Washington,,"John F Kennedy Center",DC,"District of Columbia",America/New_York,202,NA,US,38.9,-77.06,0 +20570,UNIQUE,0,Washington,,"Natl Labor Relations Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20571,UNIQUE,0,Washington,,"Export Import Bank",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20572,UNIQUE,0,Washington,,"National Mediation Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20573,UNIQUE,0,Washington,,"Federal Maritime Commission",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20575,UNIQUE,0,Washington,,"Adv Comm Inter Govt Relation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20576,UNIQUE,0,Washington,,"Natl Capitol Planning",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20577,UNIQUE,0,Washington,,"Inter American Dev Bank",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,24 +20578,UNIQUE,0,Washington,,"Farm Credit Admin",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20579,UNIQUE,0,Washington,,"Foreign Claims Settlement",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20580,UNIQUE,0,Washington,,"Federal Trade Comm",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20581,UNIQUE,0,Washington,,"Commodity Futures Trade",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20585,UNIQUE,0,Washington,,"Dept Energy",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20586,UNIQUE,0,Washington,,"Us Synthetic Fuel Corp",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20588,UNIQUE,0,Dhs,"Camp Springs, Cheltenham, Columbia","Dept Hs",MD,"Howard County",America/New_York,410,NA,US,38.74,-76.85,0 +20590,UNIQUE,0,Washington,,"Dept Transportation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20591,UNIQUE,0,Washington,,"Dept Transportation",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20593,UNIQUE,0,Washington,,"Us Coast Guard",DC,"District of Columbia",America/New_York,202,NA,US,38.87,-77.01,0 +20594,UNIQUE,0,Washington,,"Natl Trans Safety Board",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20597,UNIQUE,0,Washington,,"Armed Forces Inaugural Com",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20598,UNIQUE,0,Dhs,"Alexandria, Arlington, Chantilly, Fairfax, Falls Church, Herndon, Lorton, Mc Lean, Mclean, Reston, Springfield, Sterling","Dept Hs",VA,"Fairfax County",America/New_York,571,NA,US,38.86,-77.05,0 +20599,UNIQUE,0,Washington,,"Pre Inaugural Committee",DC,"District of Columbia",America/New_York,202,NA,US,38.89,-77.03,0 +20601,STANDARD,0,Waldorf,,,MD,"Charles County",America/New_York,"240,301",NA,US,38.64,-76.9,25300 +20602,STANDARD,0,Waldorf,"Saint Charles",,MD,"Charles County",America/New_York,"240,301",NA,US,38.58,-76.89,25490 +20603,STANDARD,0,Waldorf,"Saint Charles",,MD,"Charles County",America/New_York,"240,301",NA,US,38.63,-76.98,30770 +20604,"PO BOX",0,Waldorf,"Saint Charles",,MD,"Charles County",America/New_York,240,NA,US,38.64,-76.9,1437 +20606,STANDARD,0,Abell,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.25,-76.74,260 +20607,STANDARD,0,Accokeek,,,MD,"Prince George's County",America/New_York,301,NA,US,38.67,-77.01,11920 +20608,STANDARD,0,Aquasco,"Eagle Harbor",,MD,"Prince George's County",America/New_York,240,NA,US,38.58,-76.7,710 +20609,STANDARD,0,Avenue,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.27,-76.77,1050 +20610,"PO BOX",0,Barstow,,,MD,"Calvert County",America/New_York,410,NA,US,38.52,-76.6,233 +20611,STANDARD,0,"Bel Alton",,,MD,"Charles County",America/New_York,"240,301",NA,US,38.46,-76.98,1000 +20612,"PO BOX",0,Benedict,,,MD,"Charles County",America/New_York,240,NA,US,38.5,-76.68,319 +20613,STANDARD,0,Brandywine,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.69,-76.85,14590 +20615,STANDARD,0,"Broomes Island","Broomes Is",,MD,"Calvert County",America/New_York,410,NA,US,38.42,-76.55,370 +20616,STANDARD,0,"Bryans Road",,"Bryans Rd, Marshall Hall",MD,"Charles County",America/New_York,301,NA,US,38.63,-77.07,6830 +20617,STANDARD,0,Bryantown,,,MD,"Charles County",America/New_York,240,NA,US,38.55,-76.84,900 +20618,STANDARD,0,Bushwood,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.28,-76.78,740 +20619,STANDARD,0,California,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.29,-76.49,13150 +20620,STANDARD,0,Callaway,,,MD,"St. Mary's County",America/New_York,"301,240",NA,US,38.23,-76.51,1420 +20621,STANDARD,0,Chaptico,Maddox,,MD,"St. Mary's County",America/New_York,301,NA,US,38.33,-76.8,1290 +20622,STANDARD,0,"Charlotte Hall","Charlott Hall",,MD,"Charles County",America/New_York,240,NA,US,38.42,-76.87,4510 +20623,STANDARD,0,Cheltenham,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.74,-76.84,2810 +20624,STANDARD,0,Clements,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.34,-76.73,1180 +20625,"PO BOX",0,"Cobb Island",,,MD,"Charles County",America/New_York,240,NA,US,38.26,-76.85,799 +20626,STANDARD,0,"Coltons Point",,,MD,"St. Mary's County",America/New_York,240,NA,US,38.23,-76.76,320 +20627,"PO BOX",0,Compton,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.3,-76.63,271 +20628,STANDARD,0,Dameron,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.15,-76.36,540 +20629,"PO BOX",0,Dowell,,,MD,"Calvert County",America/New_York,410,NA,US,38.34,-76.45,409 +20630,STANDARD,0,Drayden,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.17,-76.47,480 +20632,STANDARD,0,Faulkner,,,MD,"Charles County",America/New_York,240,NA,US,38.43,-76.97,470 +20634,STANDARD,0,"Great Mills",,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.27,-76.51,6670 +20635,"PO BOX",0,Helen,,,MD,"St Mary's County",America/New_York,240,NA,US,38.41,-76.73,24 +20636,STANDARD,0,Hollywood,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.34,-76.57,10120 +20637,STANDARD,0,Hughesville,,,MD,"Charles County",America/New_York,"240,301",NA,US,38.53,-76.78,5640 +20639,STANDARD,0,Huntingtown,,,MD,"Calvert County",America/New_York,"410,443",NA,US,38.61,-76.61,15580 +20640,STANDARD,0,"Indian Head",Pisgah,,MD,"Charles County",America/New_York,"240,301",NA,US,38.59,-77.15,8720 +20643,"PO BOX",0,Ironsides,,,MD,"Charles County",America/New_York,240,NA,US,38.49,-77.16,43 +20645,STANDARD,0,Issue,"Swan Point",,MD,"Charles County",America/New_York,"240,301",NA,US,38.29,-76.91,890 +20646,STANDARD,0,"La Plata",Dentsville,Laplata,MD,"Charles County",America/New_York,"240,301",NA,US,38.53,-76.97,18850 +20650,STANDARD,0,Leonardtown,,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.29,-76.64,13850 +20653,STANDARD,0,"Lexington Park","Lexington Pk","Lex Pk",MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.24,-76.43,21230 +20656,STANDARD,0,Loveville,,,MD,"St. Mary's County",America/New_York,301,NA,US,38.35,-76.67,519 +20657,STANDARD,0,Lusby,,,MD,"Calvert County",America/New_York,410,NA,US,38.41,-76.45,18000 +20658,STANDARD,0,Marbury,Rison,,MD,"Charles County",America/New_York,240,NA,US,38.56,-77.16,930 +20659,STANDARD,0,Mechanicsville,Mechanicsvlle,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.43,-76.73,22830 +20660,"PO BOX",0,Morganza,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.37,-76.71,239 +20661,"PO BOX",0,"Mount Victoria","Mt Victoria",,MD,"Charles County",America/New_York,240,NA,US,38.33,-76.91,62 +20662,STANDARD,0,Nanjemoy,,,MD,"Charles County",America/New_York,"240,301",NA,US,38.45,-77.21,2290 +20664,STANDARD,0,Newburg,,,MD,"Charles County",America/New_York,"301,240",NA,US,38.34,-76.92,2530 +20667,STANDARD,0,"Park Hall",,,MD,"St. Mary's County",America/New_York,240,NA,US,38.22,-76.44,440 +20670,STANDARD,0,"Patuxent River","Patuxent Rvr","Patuxent River Naval Air Sta",MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.28,-76.42,1120 +20674,STANDARD,0,"Piney Point",,"Piney Pt",MD,"St. Mary's County",America/New_York,301,NA,US,38.13,-76.5,710 +20675,STANDARD,0,Pomfret,,,MD,"Charles County",America/New_York,301,NA,US,38.58,-77.02,1570 +20676,STANDARD,0,"Port Republic",,,MD,"Calvert County",America/New_York,"443,410",NA,US,38.49,-76.54,3310 +20677,STANDARD,0,"Port Tobacco",,,MD,"Charles County",America/New_York,"240,301",NA,US,38.49,-77.04,2370 +20678,STANDARD,0,"Prince Frederick","Dares Beach, Prnc Frederck","Pr Frederick",MD,"Calvert County",America/New_York,"410,443",NA,US,38.54,-76.58,11510 +20680,STANDARD,0,Ridge,,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.11,-76.37,740 +20682,"PO BOX",0,"Rock Point",,"Rock Pt",MD,"Charles County",America/New_York,240,NA,US,38.34,-76.92,0 +20684,STANDARD,0,"Saint Inigoes",,"Beachville, St Inigoes",MD,"St. Mary's County",America/New_York,240,NA,US,38.15,-76.41,1110 +20685,STANDARD,0,"Saint Leonard",,"St Leonard",MD,"Calvert County",America/New_York,410,NA,US,38.47,-76.5,6320 +20686,"PO BOX",0,"Saint Marys City","Saint Marys, St Marys City",,MD,"St. Mary's County",America/New_York,240,NA,US,38.18,-76.42,240 +20687,STANDARD,0,Scotland,,,MD,"St. Mary's County",America/New_York,240,NA,US,38.07,-76.34,260 +20688,STANDARD,0,Solomons,Dowell,,MD,"Calvert County",America/New_York,"410,443,667",NA,US,38.33,-76.46,2420 +20689,STANDARD,0,Sunderland,,,MD,"Calvert County",America/New_York,410,NA,US,38.66,-76.58,1860 +20690,STANDARD,0,"Tall Timbers",,,MD,"St. Mary's County",America/New_York,"240,301",NA,US,38.16,-76.53,780 +20692,STANDARD,0,"Valley Lee",,,MD,"St. Mary's County",America/New_York,301,NA,US,38.18,-76.5,1000 +20693,STANDARD,0,Welcome,,,MD,"Charles County",America/New_York,240,NA,US,38.45,-77.08,1020 +20695,STANDARD,0,"White Plains",,,MD,"Charles County",America/New_York,301,NA,US,38.59,-76.97,12100 +20697,UNIQUE,0,"Southern Md Facility","Sthrn Md Fac","Southern Md Brm",MD,"Prince George's County",America/New_York,240,NA,US,39.03,-76.9,0 +20701,STANDARD,0,"Annapolis Junction","Annapolis Jct",,MD,"Howard County",America/New_York,"410,443",NA,US,39.12,-76.77,420 +20703,"PO BOX",0,Lanham,"Lanham Seabrook",Seabrook,MD,"Prince George's County",America/New_York,240,NA,US,38.96,-76.85,411 +20704,"PO BOX",0,Beltsville,,,MD,"Prince George's County",America/New_York,240,NA,US,39.03,-76.92,412 +20705,STANDARD,0,Beltsville,Calverton,,MD,"Prince George's County",America/New_York,"240,301,410",NA,US,39.03,-76.92,27360 +20706,STANDARD,0,Lanham,"Glenarden, Lanham Seabrook, Seabrook",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.96,-76.85,43370 +20707,STANDARD,0,Laurel,,,MD,"Prince George's County",America/New_York,"240,301,410,443",NA,US,39.1,-76.88,34680 +20708,STANDARD,0,Laurel,Montpelier,,MD,"Prince George's County",America/New_York,"240,301,410,443",NA,US,39.09,-76.85,24330 +20709,"PO BOX",0,Laurel,Montpelier,,MD,"Prince George's County",America/New_York,240,NA,US,39.09,-76.85,348 +20710,STANDARD,0,Bladensburg,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.94,-76.92,8860 +20711,STANDARD,0,Lothian,,,MD,"Anne Arundel County",America/New_York,"240,301",NA,US,38.8,-76.65,6750 +20712,STANDARD,0,"Mount Rainier",,"Mt Rainier",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.94,-76.96,7670 +20714,STANDARD,0,"North Beach","Holland Point, Rose Haven","N Beach",MD,"Calvert County",America/New_York,"301,410,443",NA,US,38.7,-76.53,4000 +20715,STANDARD,0,Bowie,,,MD,"Prince George's County",America/New_York,"301,240",NA,US,38.99,-76.74,24630 +20716,STANDARD,0,Bowie,Mitchellville,"S Bowie, South Bowie",MD,"Prince George's County",America/New_York,301,NA,US,38.95,-76.73,20090 +20717,"PO BOX",0,Bowie,Mitchellville,,MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.73,117 +20718,"PO BOX",0,Bowie,,,MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.73,358 +20719,"PO BOX",0,Bowie,,"W Bowie",MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.73,76 +20720,STANDARD,0,Bowie,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.98,-76.79,24130 +20721,STANDARD,0,Bowie,Mitchellville,,MD,"Prince George's County",America/New_York,301,NA,US,38.92,-76.79,28280 +20722,STANDARD,0,Brentwood,"Colmar Manor, Cottage City, N Brentwood, North Brentwood",Brentwd,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.94,-76.95,5960 +20723,STANDARD,0,Laurel,Scaggsville,,MD,"Howard County",America/New_York,"240,301,410,443",NA,US,39.14,-76.87,33360 +20724,STANDARD,0,Laurel,"Maryland City, Md City, Russett",,MD,"Anne Arundel County",America/New_York,"240,301,410,443",NA,US,39.1,-76.8,17370 +20725,"PO BOX",0,Laurel,,,MD,"Prince George's County",America/New_York,240,NA,US,39.09,-76.85,488 +20726,"PO BOX",0,Laurel,,,MD,"Prince George's County",America/New_York,240,NA,US,39.09,-76.85,109 +20731,"PO BOX",0,"Capitol Heights","Capitol Hgts",,MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,319 +20732,STANDARD,0,"Chesapeake Beach","Chesapeak Bch",,MD,"Calvert County",America/New_York,410,NA,US,38.68,-76.53,9970 +20733,STANDARD,0,Churchton,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.81,-76.53,2670 +20735,STANDARD,0,Clinton,,,MD,"Prince George's County",America/New_York,"301,240",NA,US,38.76,-76.89,35880 +20736,STANDARD,0,Owings,,,MD,"Calvert County",America/New_York,410,NA,US,38.69,-76.62,9010 +20737,STANDARD,0,Riverdale,"Riverdale Park, Riverdale Pk",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.96,-76.92,23070 +20738,"PO BOX",0,Riverdale,,,MD,"Prince George's County",America/New_York,240,NA,US,38.96,-76.92,294 +20740,STANDARD,0,"College Park","Berwyn Heights, Berwyn Hts","Berwyn, North College Park",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.99,-76.93,19140 +20741,"PO BOX",0,"College Park",,,MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.93,284 +20742,UNIQUE,0,"College Park",,"University Of Maryland",MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.95,165 +20743,STANDARD,0,"Capitol Heights","Capitol Hgts, Fairmount Heights, Fairmount Hgt, Seat Pleasant",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.87,-76.9,34350 +20744,STANDARD,0,"Fort Washington","Ft Washington",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.73,-77,49460 +20745,STANDARD,0,"Oxon Hill","Forest Heights, Forest Hts","National Harbor",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.8,-76.99,27280 +20746,STANDARD,0,Suitland,"Camp Springs, Hillcrest Hgts, Hillcrest Hts, Morningside","Marlow Heights, Silver Hill",MD,"Prince George's County",America/New_York,"301,240",NA,US,38.83,-76.92,25320 +20747,STANDARD,0,"District Heights","District Hts, Forestville",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.85,-76.88,34280 +20748,STANDARD,0,"Temple Hills","Camp Springs, Hillcrest Heights, Hillcrest Hts, Marlow Heights, Marlow Hgts",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.81,-76.93,33470 +20749,"PO BOX",0,"Fort Washington","Ft Washington",,MD,"Prince George's County",America/New_York,240,NA,US,38.73,-77,530 +20750,"PO BOX",0,"Oxon Hill",,,MD,"Prince George's County",America/New_York,240,NA,US,38.8,-76.99,466 +20751,STANDARD,0,Deale,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.79,-76.54,2170 +20752,"PO BOX",0,Suitland,,,MD,"Prince George's County",America/New_York,240,NA,US,38.83,-76.92,336 +20753,"PO BOX",0,"District Heights","District Hts",Forestville,MD,"Prince George's County",America/New_York,240,NA,US,38.85,-76.88,597 +20754,STANDARD,0,Dunkirk,,,MD,"Calvert County",America/New_York,,NA,US,38.72,-76.66,6880 +20755,STANDARD,0,"Fort George G Meade","Fort Meade","Fort George Meade, Ft George G Meade, Ft Meade",MD,"Anne Arundel County",America/New_York,410,NA,US,39.11,-76.75,8560 +20757,"PO BOX",0,"Temple Hills",,,MD,"Prince George's County",America/New_York,240,NA,US,38.8,-76.94,630 +20758,STANDARD,0,Friendship,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.73,-76.59,740 +20759,STANDARD,0,Fulton,,,MD,"Howard County",America/New_York,410,NA,US,39.15,-76.92,6520 +20762,STANDARD,0,"Andrews Air Force Base","Andrews AFB, Jb Andrews",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.8,-76.87,2870 +20763,STANDARD,0,Savage,,,MD,"Howard County",America/New_York,"410,443",NA,US,39.13,-76.81,2620 +20764,STANDARD,0,"Shady Side",,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.83,-76.52,3920 +20765,"PO BOX",0,Galesville,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.84,-76.54,553 +20768,"PO BOX",0,Greenbelt,,,MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.88,413 +20769,STANDARD,0,"Glenn Dale",,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.98,-76.8,6840 +20770,STANDARD,0,Greenbelt,,,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.99,-76.88,23990 +20771,UNIQUE,0,Greenbelt,,"Goddard Flight Center",MD,"Prince George's County",America/New_York,240,NA,US,38.99,-76.88,0 +20772,STANDARD,0,"Upper Marlboro","Uppr Marlboro",Marlboro,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.81,-76.75,45210 +20773,"PO BOX",0,"Upper Marlboro","Uppr Marlboro",,MD,"Prince George's County",America/New_York,240,NA,US,38.81,-76.75,613 +20774,STANDARD,0,"Upper Marlboro","Glenarden, Kettering, Largo, Springdale, Uppr Marlboro, Upr Marlboro",,MD,"Prince George's County",America/New_York,"240,301",NA,US,38.87,-76.77,47420 +20775,"PO BOX",0,"Upper Marlboro","Uppr Marlboro",Kettering,MD,"Prince George's County",America/New_York,240,NA,US,38.81,-76.75,184 +20776,STANDARD,0,Harwood,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.86,-76.6,3150 +20777,STANDARD,0,Highland,,,MD,"Howard County",America/New_York,240,NA,US,39.17,-76.95,3530 +20778,STANDARD,0,"West River",,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,38.82,-76.55,1720 +20779,STANDARD,0,"Tracys Landing","Tracys Lndg",Fairhaven,MD,"Anne Arundel County",America/New_York,410,NA,US,38.76,-76.58,1290 +20781,STANDARD,0,Hyattsville,,"Avondale, Cheverly, Edmonston, Rogers Heights, Tuxedo",MD,"Prince George's County",America/New_York,"240,301",NA,US,38.95,-76.95,12750 +20782,STANDARD,0,Hyattsville,"Chillum, University Pa, University Park, W Hyattsville, West Hyattsville","Avondale, Green Meadow, Lewisdale, Prince Georges Metro Ctr",MD,"Prince George's County",America/New_York,"240,301",NA,US,38.97,-76.97,29580 +20783,STANDARD,0,Hyattsville,Adelphi,"Langley Park",MD,"Prince George's County",America/New_York,301,NA,US,39,-76.97,43220 +20784,STANDARD,0,Hyattsville,"Cheverly, Landover Hills, Landover Hls, New Carrolltn, New Carrollton",Lanham,MD,"Prince George's County",America/New_York,301,NA,US,38.95,-76.89,32040 +20785,STANDARD,0,Hyattsville,"Cheverly, Landover, N Englewood, North Englewood","Ardmore, Palmer Park",MD,"Prince George's County",America/New_York,"240,301",NA,US,38.92,-76.88,37140 +20787,"PO BOX",0,Hyattsville,"Langley Park",,MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.95,535 +20788,"PO BOX",0,Hyattsville,"W Hyattsville","Prince George Plaza",MD,"Prince George's County",America/New_York,240,NA,US,38.95,-76.95,51 +20790,UNIQUE,0,"Capitol Heights","Capitol Hgts","Southern Maryland Facility",MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,0 +20791,"PO BOX",0,"Capitol Heights","Capitol Hgts",,MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,600 +20792,"PO BOX",0,"Upper Marlboro","Largo, Uppr Marlboro",,MD,"Prince George's County",America/New_York,240,NA,US,38.82,-76.75,441 +20794,STANDARD,0,Jessup,,,MD,"Howard County",America/New_York,"410,443",NA,US,39.14,-76.77,10650 +20797,UNIQUE,0,"Southern Md Facility","Sthrn Md Fac","Southern Md Brm",MD,"Prince George's County",America/New_York,240,NA,US,39.03,-76.9,0 +20799,UNIQUE,0,"Capitol Heights","Capitol Hgts","Washington Ndc",MD,"Prince George's County",America/New_York,240,NA,US,38.87,-76.9,0 +20810,UNIQUE,0,Bethesda,,Geico,MD,"Montgomery County",America/New_York,240,NA,US,38.97,-77.1,0 +20811,UNIQUE,0,Bethesda,,Geico,MD,"Montgomery County",America/New_York,240,NA,US,38.97,-77.1,0 +20812,STANDARD,0,"Glen Echo",,,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.97,-77.14,320 +20813,"PO BOX",0,Bethesda,,,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,52 +20814,STANDARD,0,Bethesda,,,MD,"Montgomery County",America/New_York,"301,240",NA,US,39,-77.1,27480 +20815,STANDARD,0,"Chevy Chase","Bethesda, Chevy Chase Village, Chevy Chs Vlg, Martins Add, Martins Additions, N Chevy Chase, North Chevy Chase",Somerset,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.98,-77.08,27270 +20816,STANDARD,0,Bethesda,,,MD,"Montgomery County",America/New_York,"301,240",NA,US,38.96,-77.12,15550 +20817,STANDARD,0,Bethesda,Westlake,,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.98,-77.12,35050 +20818,STANDARD,0,"Cabin John",,,MD,"Montgomery County",America/New_York,"301,240",NA,US,38.97,-77.16,1740 +20824,"PO BOX",0,Bethesda,,,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,315 +20825,"PO BOX",0,"Chevy Chase",Bethesda,,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.08,50 +20827,"PO BOX",0,Bethesda,"W Bethesda, Westlake",,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,229 +20830,"PO BOX",0,Olney,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.08,360 +20832,STANDARD,0,Olney,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.08,25270 +20833,STANDARD,0,Brookeville,,"Sunshine, Unity",MD,"Montgomery County",America/New_York,,NA,US,39.17,-77.05,7880 +20837,STANDARD,0,Poolesville,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.14,-77.41,6540 +20838,STANDARD,0,Barnesville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.22,-77.39,280 +20839,STANDARD,0,Beallsville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.19,-77.43,230 +20841,STANDARD,0,Boyds,,,MD,"Montgomery County",America/New_York,240,NA,US,39.18,-77.31,9210 +20842,STANDARD,0,Dickerson,,Comus,MD,"Montgomery County",America/New_York,,NA,US,39.22,-77.42,1750 +20847,"PO BOX",0,Rockville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,92 +20848,"PO BOX",0,Rockville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,308 +20849,"PO BOX",0,Rockville,,,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,476 +20850,STANDARD,0,Rockville,Potomac,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.08,-77.15,45080 +20851,STANDARD,0,Rockville,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.08,-77.12,13590 +20852,STANDARD,0,Rockville,"N Bethesda, North Bethesda","No Bethesda",MD,"Montgomery County",America/New_York,"240,301",NA,US,39.05,-77.12,40220 +20853,STANDARD,0,Rockville,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.1,-77.09,30570 +20854,STANDARD,0,Potomac,Rockville,,MD,"Montgomery County",America/New_York,301,NA,US,39.02,-77.19,48600 +20855,STANDARD,0,Derwood,Rockville,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.13,-77.13,15850 +20857,UNIQUE,0,Rockville,,Hhs,MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.15,0 +20859,"PO BOX",0,Potomac,Rockville,,MD,"Montgomery County",America/New_York,240,NA,US,39.02,-77.19,255 +20860,STANDARD,0,"Sandy Spring",,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.14,-77.02,1930 +20861,STANDARD,0,Ashton,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.15,-76.98,2760 +20862,STANDARD,0,Brinklow,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.18,-77.01,410 +20866,STANDARD,0,Burtonsville,,,MD,"Montgomery County",America/New_York,301,NA,US,39.11,-76.93,14820 +20868,STANDARD,0,Spencerville,,,MD,"Montgomery County",America/New_York,301,NA,US,39.12,-76.96,740 +20871,STANDARD,0,Clarksburg,Hyattstown,,MD,"Montgomery County",America/New_York,"301,240",NA,US,39.23,-77.27,27070 +20872,STANDARD,0,Damascus,,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.29,-77.22,12990 +20874,STANDARD,0,Germantown,Darnestown,,MD,"Montgomery County",America/New_York,240,NA,US,39.17,-77.26,58580 +20875,"PO BOX",0,Germantown,,,MD,"Montgomery County",America/New_York,240,NA,US,39.17,-77.26,628 +20876,STANDARD,0,Germantown,,,MD,"Montgomery County",America/New_York,240,NA,US,39.21,-77.24,24860 +20877,STANDARD,0,Gaithersburg,"Montgomery Village, Montgomry Vlg",,MD,"Montgomery County",America/New_York,"301,240",NA,US,39.14,-77.21,35970 +20878,STANDARD,0,Gaithersburg,"Darnestown, N Potomac, No Potomac, North Potomac",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.12,-77.25,63350 +20879,STANDARD,0,Gaithersburg,"Montgomery Village, Montgomry Vlg",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.17,-77.18,25290 +20880,"PO BOX",0,"Washington Grove","Washingtn Grv",,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.17,740 +20882,STANDARD,0,Gaithersburg,"Brookeville, Laytonsville",,MD,"Montgomery County",America/New_York,240,NA,US,39.24,-77.15,13810 +20883,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.17,-77.19,161 +20884,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.21,366 +20885,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.21,344 +20886,STANDARD,0,"Montgomery Village","Gaithersburg, Montgomry Vlg",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.19,-77.21,33500 +20889,UNIQUE,0,Bethesda,,"National Naval Medical Ctr, Walter Reed Natl Mil Med Ctr",MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,273 +20891,"PO BOX",0,Kensington,,,MD,"Montgomery County",America/New_York,240,NA,US,39.02,-77.07,119 +20892,UNIQUE,0,Bethesda,,"National Institute Of Health",MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,0 +20894,UNIQUE,0,Bethesda,,"National Library Of Medicine",MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77.12,0 +20895,STANDARD,0,Kensington,,"North Bethesda",MD,"Montgomery County",America/New_York,"301,240",NA,US,39.02,-77.07,19180 +20896,"PO BOX",0,"Garrett Park",,,MD,"Montgomery County",America/New_York,240,NA,US,39.04,-77.09,1020 +20897,UNIQUE,0,"Suburb Maryland Fac","Subn Md Fac","Suburban Md Brm",MD,"Montgomery County",America/New_York,240,NA,US,39.08,-77.05,0 +20898,"PO BOX",0,Gaithersburg,,,MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.21,347 +20899,UNIQUE,0,Gaithersburg,,"Natl Inst Stds & Tech Md",MD,"Montgomery County",America/New_York,240,NA,US,39.14,-77.22,0 +20901,STANDARD,0,"Silver Spring","Takoma Park",,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.01,-77.02,35940 +20902,STANDARD,0,"Silver Spring",Wheaton,,MD,"Montgomery County",America/New_York,"240,301",NA,US,39.05,-77.04,50390 +20903,STANDARD,0,"Silver Spring",,Hillandale,MD,"Montgomery County",America/New_York,301,NA,US,39.02,-76.98,23620 +20904,STANDARD,0,"Silver Spring",Colesville,Cloverly,MD,"Montgomery County",America/New_York,301,NA,US,39.07,-76.98,54640 +20905,STANDARD,0,"Silver Spring","Colesville, Sandy Spring",Cloverly,MD,"Montgomery County",America/New_York,301,NA,US,39.11,-76.99,17610 +20906,STANDARD,0,"Silver Spring","Aspen Hill","Glenmont, Leisure World, Norbeck, Wheaton",MD,"Montgomery County",America/New_York,"301,240",NA,US,39.09,-77.06,67910 +20907,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,323 +20908,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,38 +20910,STANDARD,0,"Silver Spring",,"Takoma Pk",MD,"Montgomery County",America/New_York,"240,301",NA,US,39,-77.04,38620 +20911,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,115 +20912,STANDARD,0,"Takoma Park","Silver Spring",,MD,"Montgomery County",America/New_York,"240,301",NA,US,38.98,-77,23430 +20913,"PO BOX",0,"Takoma Park","Silver Spring",,MD,"Montgomery County",America/New_York,240,NA,US,38.98,-77,225 +20914,"PO BOX",0,"Silver Spring",Colesville,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,526 +20915,"PO BOX",0,"Silver Spring",Wheaton,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,270 +20916,"PO BOX",0,"Silver Spring","Aspen Hill",,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,425 +20918,"PO BOX",0,"Silver Spring",,,MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,236 +20993,UNIQUE,0,"Silver Spring",,"Us Food And Drug Admin",MD,"Montgomery County",America/New_York,240,NA,US,39.03,-76.98,0 +20997,UNIQUE,0,"Silver Spring",,"Suburban Md Brm",MD,"Montgomery County",America/New_York,240,NA,US,39.01,-77.02,0 +21001,STANDARD,0,Aberdeen,,,MD,"Harford County",America/New_York,"410,443,667",NA,US,39.51,-76.17,22570 +21005,STANDARD,0,"Aberdeen Proving Ground","Aber Prov Grd",Apg,MD,"Harford County",America/New_York,"443,667",NA,US,39.49,-76.14,2130 +21009,STANDARD,0,Abingdon,,,MD,"Harford County",America/New_York,410,NA,US,39.46,-76.27,29380 +21010,STANDARD,0,Gunpowder,"Aber Prov Grd, Aberdeen Proving Ground","Edgewood Arsenal",MD,"Harford County",America/New_York,410,NA,US,39.39,-76.29,580 +21012,STANDARD,0,Arnold,,,MD,"Anne Arundel County",America/New_York,410,NA,US,39.04,-76.49,21430 +21013,STANDARD,0,Baldwin,,,MD,"Baltimore County",America/New_York,,NA,US,39.51,-76.49,4820 +21014,STANDARD,0,"Bel Air",,,MD,"Harford County",America/New_York,"410,443",NA,US,39.53,-76.34,36010 +21015,STANDARD,0,"Bel Air",,,MD,"Harford County",America/New_York,"410,443",NA,US,39.54,-76.29,29180 +21017,STANDARD,0,Belcamp,,Riverside,MD,"Harford County",America/New_York,410,NA,US,39.47,-76.23,5710 +21018,"PO BOX",0,Benson,,,MD,"Harford County",America/New_York,410,NA,US,39.51,-76.18,51 +21020,"PO BOX",0,Boring,,,MD,"Baltimore County",America/New_York,410,NA,US,39.57,-76.8,111 +21022,"PO BOX",0,Brooklandville,Brooklandvl,,MD,"Baltimore County",America/New_York,410,NA,US,39.42,-76.67,326 +21023,"PO BOX",0,Butler,,,MD,"Baltimore County",America/New_York,410,NA,US,39.55,-76.68,247 +21027,"PO BOX",0,Chase,,,MD,"Baltimore County",America/New_York,410,NA,US,39.36,-76.37,185 +21028,STANDARD,0,Churchville,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.56,-76.24,3160 +21029,STANDARD,0,Clarksville,,,MD,"Howard County",America/New_York,240,NA,US,39.2,-76.94,13020 +21030,STANDARD,0,Cockeysville,"Cockysvil, Hunt Valley",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.47,-76.63,24100 +21031,STANDARD,0,"Hunt Valley",,,MD,"Baltimore County",America/New_York,"443,410",NA,US,39.49,-76.65,23 +21032,STANDARD,0,Crownsville,,,MD,"Anne Arundel County",America/New_York,410,NA,US,39.01,-76.59,8610 +21034,STANDARD,0,Darlington,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.63,-76.2,3040 +21035,STANDARD,0,Davidsonville,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.93,-76.63,8060 +21036,STANDARD,0,Dayton,,,MD,"Howard County",America/New_York,240,NA,US,39.23,-77,2190 +21037,STANDARD,0,Edgewater,,,MD,"Anne Arundel County",America/New_York,"301,410",NA,US,38.9,-76.54,20170 +21040,STANDARD,0,Edgewood,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.42,-76.29,22210 +21041,"PO BOX",0,"Ellicott City",,Ellicott,MD,"Howard County",America/New_York,410,NA,US,39.27,-76.83,398 +21042,STANDARD,0,"Ellicott City",,Ellicott,MD,"Howard County",America/New_York,"410,443",NA,US,39.27,-76.83,42660 +21043,STANDARD,0,"Ellicott City","Daniels, Ilchester, Oella",Ellicott,MD,"Howard County",America/New_York,"410,443",NA,US,39.26,-76.8,46000 +21044,STANDARD,0,Columbia,,,MD,"Howard County",America/New_York,"240,301,410,443",NA,US,39.21,-76.88,40280 +21045,STANDARD,0,Columbia,,,MD,"Howard County",America/New_York,"240,301,410,443",NA,US,39.2,-76.85,36910 +21046,STANDARD,0,Columbia,,,MD,"Howard County",America/New_York,"301,410,443,240",NA,US,39.17,-76.84,15140 +21047,STANDARD,0,Fallston,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.52,-76.42,12890 +21048,STANDARD,0,Finksburg,Patapsco,,MD,"Carroll County",America/New_York,443,NA,US,39.49,-76.88,10130 +21050,STANDARD,0,"Forest Hill",,,MD,"Harford County",America/New_York,410,NA,US,39.58,-76.39,18220 +21051,STANDARD,0,Fork,,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.47,-76.45,340 +21052,"PO BOX",0,"Fort Howard",,,MD,"Baltimore County",America/New_York,410,NA,US,39.21,-76.45,417 +21053,STANDARD,0,Freeland,,,MD,"Baltimore County",America/New_York,410,NA,US,39.69,-76.72,3160 +21054,STANDARD,0,Gambrills,,,MD,"Anne Arundel County",America/New_York,240,NA,US,39.04,-76.69,12950 +21056,"PO BOX",0,"Gibson Island",,,MD,"Anne Arundel County",America/New_York,410,NA,US,39.07,-76.42,256 +21057,STANDARD,0,"Glen Arm",,,MD,"Baltimore County",America/New_York,410,NA,US,39.44,-76.5,3950 +21060,STANDARD,0,"Glen Burnie",,,MD,"Anne Arundel County",America/New_York,"443,410",NA,US,39.16,-76.6,34330 +21061,STANDARD,0,"Glen Burnie",,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.16,-76.63,49780 +21062,UNIQUE,0,"Glen Burnie",,"Md Motor Vehicle Admin",MD,"Anne Arundel County",America/New_York,410,NA,US,39.16,-76.6,0 +21065,UNIQUE,0,"Hunt Valley","Cockys Ht Vly","Huntvalley, Pdp Group Inc",MD,"Baltimore County",America/New_York,410,NA,US,39.49,-76.65,0 +21071,"PO BOX",0,Glyndon,,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.47,-76.81,632 +21074,STANDARD,0,Hampstead,Greenmount,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.61,-76.85,14740 +21075,STANDARD,0,Elkridge,,,MD,"Howard County",America/New_York,"240,443,410",NA,US,39.2,-76.75,32860 +21076,STANDARD,0,Hanover,,Harmans,MD,"Anne Arundel County",America/New_York,443,NA,US,39.16,-76.72,19650 +21077,STANDARD,0,Harmans,,,MD,"Anne Arundel County",America/New_York,443,NA,US,39.16,-76.7,320 +21078,STANDARD,0,"Havre De Grace","Hvre De Grace",,MD,"Harford County",America/New_York,"667,410,443",NA,US,39.54,-76.09,17910 +21082,STANDARD,0,Hydes,,,MD,"Baltimore County",America/New_York,410,NA,US,39.48,-76.47,830 +21084,STANDARD,0,Jarrettsville,,,MD,"Harford County",America/New_York,"410,443",NA,US,39.6,-76.47,7370 +21085,STANDARD,0,Joppa,,"Joppatown, Joppatowne",MD,"Harford County",America/New_York,443,NA,US,39.43,-76.35,15870 +21087,STANDARD,0,Kingsville,Bradshaw,,MD,"Baltimore County",America/New_York,,NA,US,39.44,-76.41,5400 +21088,"PO BOX",0,Lineboro,Manchester,,MD,"Carroll County",America/New_York,410,NA,US,39.71,-76.84,35 +21090,STANDARD,0,"Linthicum Heights","Linthicum, Linthicum Hts",,MD,"Anne Arundel County",America/New_York,"443,410",NA,US,39.2,-76.66,9820 +21092,"PO BOX",0,"Long Green",,,MD,"Baltimore County",America/New_York,410,NA,US,39.47,-76.52,156 +21093,STANDARD,0,"Lutherville Timonium","Lutherville, Luthvle Timon, Timonium",,MD,"Baltimore County",America/New_York,410,NA,US,39.43,-76.64,36960 +21094,"PO BOX",0,"Lutherville Timonium","Lutherville, Luthvle Timon, Timonium",,MD,"Baltimore County",America/New_York,410,NA,US,39.43,-76.64,247 +21098,UNIQUE,1,Hanover,"Household Bank",,MD,"Anne Arundel County",America/New_York,410,NA,US,39.19,-76.72,0 +21102,STANDARD,0,Manchester,"Lineboro, Millers",,MD,"Carroll County",America/New_York,"410,443",NA,US,39.65,-76.89,11610 +21104,STANDARD,0,Marriottsville,"Henryton, Marriottsvl, Woodstock",,MD,"Carroll County",America/New_York,,NA,US,39.35,-76.89,5720 +21105,"PO BOX",0,"Maryland Line",,,MD,"Baltimore County",America/New_York,410,NA,US,39.71,-76.65,132 +21106,"PO BOX",0,Mayo,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.89,-76.5,259 +21108,STANDARD,0,Millersville,,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.05,-76.64,17780 +21111,STANDARD,0,Monkton,Hereford,,MD,"Baltimore County",America/New_York,,NA,US,39.57,-76.58,4920 +21113,STANDARD,0,Odenton,,,MD,"Anne Arundel County",America/New_York,"240,301,410,443",NA,US,39.05,-76.72,32590 +21114,STANDARD,0,Crofton,,,MD,"Anne Arundel County",America/New_York,"240,410,443,667",NA,US,39.01,-76.68,25240 +21117,STANDARD,0,"Owings Mills",Garrison,,MD,"Baltimore County",America/New_York,410,NA,US,39.41,-76.79,51850 +21120,STANDARD,0,Parkton,"Bentley Spgs, Bentley Springs",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.65,-76.67,7150 +21122,STANDARD,0,Pasadena,"Lake Shore, Riviera Beach",,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.11,-76.55,58170 +21123,"PO BOX",0,Pasadena,"Lake Shore, Riviera Beach",,MD,"Anne Arundel County",America/New_York,410,NA,US,39.11,-76.55,635 +21128,STANDARD,0,"Perry Hall",,Perryhall,MD,"Baltimore County",America/New_York,410,NA,US,39.41,-76.45,14180 +21130,"PO BOX",0,Perryman,,,MD,"Harford County",America/New_York,410,NA,US,39.48,-76.19,237 +21131,STANDARD,0,Phoenix,Jacksonville,,MD,"Baltimore County",America/New_York,410,NA,US,39.5,-76.56,7740 +21132,STANDARD,0,Pylesville,,,MD,"Harford County",America/New_York,410,NA,US,39.68,-76.37,2610 +21133,STANDARD,0,Randallstown,"Mcdonogh Run",Foxridge,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.37,-76.8,27130 +21136,STANDARD,0,Reisterstown,Glyndon,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.45,-76.81,32830 +21139,"PO BOX",0,Riderwood,,,MD,"Baltimore County",America/New_York,410,NA,US,39.4,-76.6,157 +21140,STANDARD,0,Riva,,,MD,"Anne Arundel County",America/New_York,"301,410",NA,US,38.94,-76.58,3500 +21144,STANDARD,0,Severn,,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.13,-76.69,34850 +21146,STANDARD,0,"Severna Park",,,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.08,-76.57,28240 +21150,"PO BOX",0,Simpsonville,,,MD,"Howard County",America/New_York,410,NA,US,39.18,-76.88,90 +21152,STANDARD,0,"Sparks Glencoe","Glencoe, Sparks, Sparks Glenco",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.54,-76.68,5610 +21153,"PO BOX",0,Stevenson,,,MD,"Baltimore County",America/New_York,410,NA,US,39.42,-76.7,925 +21154,STANDARD,0,Street,,,MD,"Harford County",America/New_York,410,NA,US,39.65,-76.34,6070 +21155,STANDARD,0,Upperco,Fowbelsburg,,MD,"Baltimore County",America/New_York,,NA,US,39.57,-76.8,2250 +21156,STANDARD,0,"Upper Falls",,,MD,"Baltimore County",America/New_York,410,NA,US,39.43,-76.4,350 +21157,STANDARD,0,Westminster,,Carrollton,MD,"Carroll County",America/New_York,"410,443",NA,US,39.57,-77,33560 +21158,STANDARD,0,Westminster,,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.65,-77.04,20190 +21160,STANDARD,0,Whiteford,Cardiff,,MD,"Harford County",America/New_York,"410,443",NA,US,39.7,-76.34,2230 +21161,STANDARD,0,"White Hall",,Norrisville,MD,"Harford County",America/New_York,,NA,US,39.65,-76.56,5140 +21162,STANDARD,0,"White Marsh",,,MD,"Baltimore County",America/New_York,"443,410",NA,US,39.39,-76.41,4760 +21163,STANDARD,0,Woodstock,Granite,,MD,"Howard County",America/New_York,,NA,US,39.32,-76.87,7250 +21201,STANDARD,0,Baltimore,,,MD,"Baltimore city",America/New_York,"410,443,667,301",NA,US,39.29,-76.62,10800 +21202,STANDARD,0,Baltimore,"East Case",,MD,"Baltimore city",America/New_York,"301,443,410,667",NA,US,39.3,-76.61,12240 +21203,"PO BOX",0,Baltimore,,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,1290 +21204,STANDARD,0,Towson,"Baltimore, Eudowood, Loch Raven, Ruxton",,MD,"Baltimore County",America/New_York,"410,443,667",NA,US,39.39,-76.62,15160 +21205,STANDARD,0,Baltimore,,"Clifton East End, East End",MD,"Baltimore city",America/New_York,"410,443",NA,US,39.3,-76.56,11050 +21206,STANDARD,0,Baltimore,Raspeburg,,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.34,-76.54,41800 +21207,STANDARD,0,"Gwynn Oak","Baltimore, Pikesville, Woodlawn",,MD,"Baltimore County",America/New_York,"667,410,443",NA,US,39.32,-76.72,40230 +21208,STANDARD,0,Pikesville,Baltimore,,MD,"Baltimore County",America/New_York,"410,443,667",NA,US,39.39,-76.7,31150 +21209,STANDARD,0,Baltimore,"Mount Washington, Mt Washington",,MD,"Baltimore County",America/New_York,410,NA,US,39.37,-76.67,25470 +21210,STANDARD,0,Baltimore,"Roland Park",,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.36,-76.63,9260 +21211,STANDARD,0,Baltimore,,Hampden,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.33,-76.64,13310 +21212,STANDARD,0,Baltimore,Govans,,MD,"Baltimore city",America/New_York,"410,443,667",NA,US,39.37,-76.61,27190 +21213,STANDARD,0,Baltimore,Clifton,"Clifton East End",MD,"Baltimore city",America/New_York,"410,443",NA,US,39.31,-76.58,22200 +21214,STANDARD,0,Baltimore,,Hamilton,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.35,-76.56,16210 +21215,STANDARD,0,Baltimore,Arlington,,MD,"Baltimore city",America/New_York,410,NA,US,39.35,-76.68,41820 +21216,STANDARD,0,Baltimore,,Walbrook,MD,"Baltimore city",America/New_York,410,NA,US,39.31,-76.67,20150 +21217,STANDARD,0,Baltimore,Druid,,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.31,-76.64,20120 +21218,STANDARD,0,Baltimore,,Waverly,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.33,-76.6,29710 +21219,STANDARD,0,"Sparrows Point","Baltimore, Edgemere, Sparrows Pt",,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.22,-76.43,8730 +21220,STANDARD,0,"Middle River",Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.33,-76.43,38490 +21221,STANDARD,0,Essex,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.3,-76.44,37450 +21222,STANDARD,0,Dundalk,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.26,-76.49,49680 +21223,STANDARD,0,Baltimore,Franklin,,MD,"Baltimore city",America/New_York,"667,410",NA,US,39.28,-76.65,14510 +21224,STANDARD,0,Baltimore,Highlandtown,,MD,"Baltimore city",America/New_York,410,NA,US,39.27,-76.54,42600 +21225,STANDARD,0,Brooklyn,"Baltimore, Brooklyn Park",,MD,"Baltimore city",America/New_York,"410,443",NA,US,39.22,-76.61,26880 +21226,STANDARD,0,"Curtis Bay","Baltimore, Carvel Beach, Chestnut Hill Cove, Chstnt Hl Cv, Clearwater Beach, Clearwatr Bch, Greenland Bch, Greenland Beach, Orchard Beach, Stoney Beach",Brooklyn,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,39.21,-76.55,5760 +21227,STANDARD,0,Halethorpe,"Arbutus, Baltimore, Lansdowne",,MD,"Baltimore County",America/New_York,"240,443,410",NA,US,39.24,-76.68,30210 +21228,STANDARD,0,Catonsville,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.26,-76.74,45290 +21229,STANDARD,0,Baltimore,Carroll,,MD,"Baltimore city",America/New_York,410,NA,US,39.28,-76.69,35840 +21230,STANDARD,0,Baltimore,,,MD,"Baltimore city",America/New_York,"410,667",NA,US,39.27,-76.62,27750 +21231,STANDARD,0,Baltimore,,Patterson,MD,"Baltimore city",America/New_York,"410,443,667",NA,US,39.29,-76.59,12010 +21233,STANDARD,0,Baltimore,,,MD,"Baltimore City",America/New_York,"410,667,301,443",NA,US,39.3,-76.61,35 +21234,STANDARD,0,Parkville,Baltimore,,MD,"Baltimore County",America/New_York,"410,443",NA,US,39.38,-76.55,59610 +21235,UNIQUE,0,Baltimore,,"Social Security Administrat",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,20 +21236,STANDARD,0,Nottingham,Baltimore,,MD,"Baltimore County",America/New_York,410,NA,US,39.39,-76.48,37310 +21237,STANDARD,0,Rosedale,Baltimore,,MD,"Baltimore County",America/New_York,410,NA,US,39.32,-76.5,28180 +21239,STANDARD,0,Baltimore,"Idlewylde, Loch Hill, Northwood",,MD,"Baltimore city",America/New_York,"443,410",NA,US,39.37,-76.59,22730 +21240,STANDARD,0,Baltimore,Millersville,,MD,"Anne Arundel County",America/New_York,"240,410,443",NA,US,39.17,-76.67,117 +21241,UNIQUE,0,Baltimore,,"Social Security Admin",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21244,STANDARD,0,"Windsor Mill",Baltimore,,MD,"Baltimore County",America/New_York,410,NA,US,39.33,-76.78,33130 +21250,UNIQUE,0,Baltimore,,"Univ Of Md Baltimore County",MD,"Baltimore County",America/New_York,410,NA,US,39.26,-76.71,46 +21251,UNIQUE,0,Baltimore,,"Morgan State University",MD,"Baltimore city",America/New_York,410,NA,US,39.34,-76.58,35 +21252,UNIQUE,0,Towson,Baltimore,"Towson State University",MD,"Baltimore County",America/New_York,410,NA,US,39.39,-76.61,59 +21260,STANDARD,1,Baltimore,,"Census Bureau",MD,"Baltimore City",America/New_York,410,NA,US,39.35,-76.7,0 +21261,STANDARD,1,Baltimore,Essex,"Census Bureau",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.45,0 +21263,UNIQUE,0,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21264,UNIQUE,0,Baltimore,,"M T Bank",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21265,UNIQUE,1,Baltimore,,"Verizon Telephone",MD,"Baltimore City",America/New_York,410,NA,US,39.29,-76.6,0 +21268,UNIQUE,1,Baltimore,,"Harte Hanks Direct Marketing",MD,"Baltimore City",America/New_York,410,NA,US,39.21,-76.72,0 +21270,"PO BOX",0,Baltimore,,"Reisterstown Rd Plaza",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,35 +21273,UNIQUE,0,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21274,UNIQUE,1,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.29,-76.6,0 +21275,UNIQUE,0,Baltimore,,"Wells Fargo",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21278,UNIQUE,0,Baltimore,,"Baltimore Sunpapers",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21279,UNIQUE,0,Baltimore,,"Sun Trust Bank",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21280,UNIQUE,1,Baltimore,,"Bank Of America",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21281,"PO BOX",0,Baltimore,,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,73 +21282,"PO BOX",0,Pikesville,Baltimore,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,387 +21283,UNIQUE,1,Baltimore,"Shared Firm Zip Code",,MD,"Baltimore City",America/New_York,410,NA,US,39.29,-76.61,0 +21284,"PO BOX",0,Towson,"Baltimore, Loch Raven",,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,202 +21285,"PO BOX",0,Towson,Baltimore,,MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,100 +21286,STANDARD,0,Towson,"Baltimore, Loch Raven",,MD,"Baltimore County",America/New_York,"667,410,443",NA,US,39.41,-76.57,18250 +21287,STANDARD,0,Baltimore,,"Johns Hopkins, Johns Hopkins Hospital",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,34 +21288,UNIQUE,1,Baltimore,,"Household Bank",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21289,UNIQUE,0,Baltimore,,"T Rowe Price Associates Inc",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21290,UNIQUE,0,Baltimore,,"Social Security Admin",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21297,"PO BOX",0,Baltimore,,"Firms-Courtesy Reply",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,80 +21298,UNIQUE,0,Baltimore,,"Baltimore Brm",MD,"Baltimore City",America/New_York,410,NA,US,39.3,-76.61,0 +21401,STANDARD,0,Annapolis,"Cape Saint Claire, Cpe St Claire",,MD,"Anne Arundel County",America/New_York,"410,443,301",NA,US,38.99,-76.55,35920 +21402,STANDARD,0,Annapolis,"N Severn Vlg, Naval Academy, North Severn Village",,MD,"Anne Arundel County",America/New_York,"410,443",NA,US,38.99,-76.47,1030 +21403,STANDARD,0,Annapolis,"Highland Bch",,MD,"Anne Arundel County",America/New_York,"301,410,443",NA,US,38.97,-76.5,29020 +21404,"PO BOX",0,Annapolis,,,MD,"Anne Arundel County",America/New_York,410,NA,US,38.97,-76.5,266 +21405,STANDARD,0,Annapolis,"Sherwood Forest, Sherwood Frst",,MD,"Anne Arundel County",America/New_York,"301,410,443",NA,US,39.03,-76.56,613 +21409,STANDARD,0,Annapolis,,,MD,"Anne Arundel County",America/New_York,443,NA,US,39.02,-76.45,19780 +21411,UNIQUE,0,Annapolis,,"Comptroller Of The Treasury",MD,"Anne Arundel County",America/New_York,410,NA,US,38.97,-76.5,0 +21412,STANDARD,0,Annapolis,,"Bancroft Hall",MD,"Anne Arundel County",America/New_York,410,NA,US,38.97,-76.5,1107 +21501,"PO BOX",0,Cumberland,,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,520 +21502,STANDARD,0,Cumberland,"Cresaptown, Lavale",,MD,"Allegany County",America/New_York,"240,301",NA,US,39.65,-78.76,29730 +21503,"PO BOX",0,Cumberland,,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,56 +21504,"PO BOX",0,Cumberland,Lavale,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,93 +21505,"PO BOX",0,Cumberland,Cresaptown,,MD,"Allegany County",America/New_York,240,NA,US,39.65,-78.76,223 +21520,STANDARD,0,Accident,,,MD,"Garrett County",America/New_York,301,NA,US,39.62,-79.32,1880 +21521,STANDARD,0,Barton,,,MD,"Allegany County",America/New_York,,NA,US,39.53,-79.01,990 +21522,STANDARD,0,Bittinger,,,MD,"Garrett County",America/New_York,301,NA,US,39.61,-79.23,154 +21523,STANDARD,0,Bloomington,,,MD,"Garrett County",America/New_York,240,NA,US,39.48,-79.08,250 +21524,"PO BOX",0,Corriganville,,,MD,"Allegany County",America/New_York,240,NA,US,39.71,-78.8,507 +21528,"PO BOX",0,"Eckhart Mines",,,MD,"Allegany County",America/New_York,240,NA,US,39.64,-78.87,59 +21529,"PO BOX",0,Ellerslie,,,MD,"Allegany County",America/New_York,240,NA,US,39.72,-78.77,680 +21530,STANDARD,0,Flintstone,,,MD,"Allegany County",America/New_York,240,NA,US,39.7,-78.56,1270 +21531,STANDARD,0,Friendsville,,,MD,"Garrett County",America/New_York,301,NA,US,39.66,-79.4,1860 +21532,STANDARD,0,Frostburg,,,MD,"Allegany County",America/New_York,"240,301",NA,US,39.66,-78.92,10160 +21536,STANDARD,0,Grantsville,Jennings,,MD,"Garrett County",America/New_York,"240,301",NA,US,39.69,-79.15,3360 +21538,STANDARD,0,Kitzmiller,Shallmar,,MD,"Garrett County",America/New_York,301,NA,US,39.41,-79.22,520 +21539,STANDARD,0,Lonaconing,,,MD,"Allegany County",America/New_York,301,NA,US,39.56,-78.97,2060 +21540,STANDARD,0,Luke,Westernport,,MD,"Allegany County",America/New_York,301,NA,US,39.48,-79.06,48 +21541,STANDARD,0,"Mc Henry","Sang Run",Mchenry,MD,"Garrett County",America/New_York,301,NA,US,39.55,-79.35,1340 +21542,"PO BOX",0,Midland,,,MD,"Allegany County",America/New_York,240,NA,US,39.6,-78.95,541 +21543,"PO BOX",0,Midlothian,,,MD,"Allegany County",America/New_York,240,NA,US,39.66,-78.96,239 +21545,STANDARD,0,"Mount Savage",,,MD,"Allegany County",America/New_York,301,NA,US,39.7,-78.85,1560 +21550,STANDARD,0,Oakland,"Crellin, Deer Park, Hutton, Loch Lyn Hght, Loch Lynn Heights, Mnt Lake Park, Mountain Lake Park, Mt Lake Park, Mtn Lk Park",,MD,"Garrett County",America/New_York,"240,301",NA,US,39.41,-79.41,11670 +21555,STANDARD,0,Oldtown,,,MD,"Allegany County",America/New_York,301,NA,US,39.54,-78.61,1380 +21556,"PO BOX",0,Pinto,,,MD,"Allegany County",America/New_York,240,NA,US,39.54,-78.89,105 +21557,STANDARD,0,Rawlings,,,MD,"Allegany County",America/New_York,240,NA,US,39.53,-78.88,1570 +21560,"PO BOX",0,"Spring Gap",,,MD,"Mineral County",America/New_York,240,NA,US,39.59,-78.69,78 +21561,STANDARD,0,Swanton,,,MD,"Garrett County",America/New_York,301,NA,US,39.47,-79.21,2060 +21562,STANDARD,0,Westernport,Mccoole,,MD,"Allegany County",America/New_York,"301,240",NA,US,39.48,-79.04,2310 +21601,STANDARD,0,Easton,,,MD,"Talbot County",America/New_York,"410,443",NA,US,38.77,-76.06,21810 +21606,UNIQUE,1,Easton,"First Fulfillment & Mgr Co",,MD,"Talbot County",America/New_York,410,NA,US,38.77,-76.07,0 +21607,STANDARD,0,Barclay,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.14,-75.86,420 +21609,"PO BOX",0,Bethlehem,,,MD,"Caroline County",America/New_York,410,NA,US,38.74,-75.93,77 +21610,STANDARD,0,Betterton,,,MD,"Kent County",America/New_York,410,NA,US,39.36,-76.07,320 +21612,STANDARD,0,Bozman,,,MD,"Talbot County",America/New_York,410,NA,US,38.75,-76.26,390 +21613,STANDARD,0,Cambridge,,,MD,"Dorchester County",America/New_York,"410,443",NA,US,38.56,-76.07,14850 +21617,STANDARD,0,Centreville,,,MD,"Queen Anne's County",America/New_York,"410,443",NA,US,39.04,-76.06,10010 +21619,STANDARD,0,Chester,,,MD,"Queen Anne's County",America/New_York,410,NA,US,38.95,-76.28,6140 +21620,STANDARD,0,Chestertown,,,MD,"Kent County",America/New_York,"410,443",NA,US,39.21,-76.07,10000 +21622,STANDARD,0,"Church Creek",,,MD,"Dorchester County",America/New_York,410,NA,US,38.5,-76.15,400 +21623,STANDARD,0,"Church Hill",,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.14,-75.98,1940 +21624,"PO BOX",0,Claiborne,,,MD,"Talbot County",America/New_York,410,NA,US,38.84,-76.27,127 +21625,STANDARD,0,Cordova,,,MD,"Talbot County",America/New_York,410,NA,US,38.87,-75.99,2160 +21626,STANDARD,0,Crapo,,,MD,"Dorchester County",America/New_York,410,NA,US,38.32,-76.12,104 +21627,STANDARD,0,Crocheron,,,MD,"Dorchester County",America/New_York,410,NA,US,38.24,-76.05,27 +21628,"PO BOX",0,Crumpton,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.23,-75.92,474 +21629,STANDARD,0,Denton,,,MD,"Caroline County",America/New_York,"410,443",NA,US,38.88,-75.82,8640 +21631,STANDARD,0,"East New Market","E New Market",,MD,"Dorchester County",America/New_York,410,NA,US,38.59,-75.92,2410 +21632,STANDARD,0,Federalsburg,,,MD,"Caroline County",America/New_York,"410,443",NA,US,38.69,-75.77,5500 +21634,STANDARD,0,"Fishing Creek",,Hoopersville,MD,"Dorchester County",America/New_York,410,NA,US,38.32,-76.23,620 +21635,STANDARD,0,Galena,Golts,,MD,"Kent County",America/New_York,410,NA,US,39.34,-75.87,1720 +21636,STANDARD,0,Goldsboro,,,MD,"Caroline County",America/New_York,410,NA,US,39.03,-75.78,1020 +21638,STANDARD,0,Grasonville,,,MD,"Queen Anne's County",America/New_York,410,NA,US,38.95,-76.19,4790 +21639,STANDARD,0,Greensboro,,,MD,"Caroline County",America/New_York,410,NA,US,38.97,-75.8,4070 +21640,STANDARD,0,Henderson,,,MD,"Caroline County",America/New_York,410,NA,US,39.07,-75.76,1470 +21641,"PO BOX",0,Hillsboro,,,MD,"Caroline County",America/New_York,410,NA,US,38.92,-75.94,172 +21643,STANDARD,0,Hurlock,,,MD,"Dorchester County",America/New_York,410,NA,US,38.62,-75.87,5250 +21644,STANDARD,0,Ingleside,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.11,-75.87,148 +21645,STANDARD,0,Kennedyville,,,MD,"Kent County",America/New_York,410,NA,US,39.3,-75.98,800 +21647,STANDARD,0,Mcdaniel,,,MD,"Talbot County",America/New_York,410,NA,US,38.82,-76.28,320 +21648,STANDARD,0,Madison,,,MD,"Dorchester County",America/New_York,410,NA,US,38.5,-76.22,186 +21649,STANDARD,0,Marydel,,,MD,"Caroline County",America/New_York,410,NA,US,39.13,-75.77,1670 +21650,STANDARD,0,Massey,,,MD,"Kent County",America/New_York,410,NA,US,39.31,-75.81,200 +21651,STANDARD,0,Millington,,,MD,"Kent County",America/New_York,410,NA,US,39.25,-75.84,2410 +21652,"PO BOX",0,Neavitt,,,MD,"Talbot County",America/New_York,410,NA,US,38.72,-76.28,176 +21653,"PO BOX",0,Newcomb,,,MD,"Talbot County",America/New_York,410,NA,US,38.75,-76.18,121 +21654,STANDARD,0,Oxford,,,MD,"Talbot County",America/New_York,410,NA,US,38.68,-76.17,990 +21655,STANDARD,0,Preston,,,MD,"Caroline County",America/New_York,410,NA,US,38.71,-75.9,4480 +21656,"PO BOX",0,Price,"Church Hill",,MD,"Queen Anne's County",America/New_York,410,NA,US,39.14,-75.99,0 +21657,STANDARD,0,"Queen Anne",,,MD,"Queen Anne's County",America/New_York,410,NA,US,38.97,-75.99,1080 +21658,STANDARD,0,Queenstown,,,MD,"Queen Anne's County",America/New_York,"410,443",NA,US,38.98,-76.15,3570 +21659,STANDARD,0,Rhodesdale,"Brookview, Eldorado, Galestown",,MD,"Dorchester County",America/New_York,"410,443",NA,US,38.59,-75.79,820 +21660,STANDARD,0,Ridgely,,,MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,3700 +21661,STANDARD,0,"Rock Hall",,,MD,"Kent County",America/New_York,410,NA,US,39.14,-76.24,2120 +21662,STANDARD,0,"Royal Oak",,,MD,"Talbot County",America/New_York,410,NA,US,38.71,-76.21,630 +21663,STANDARD,0,"Saint Michaels","St Michaels",,MD,"Talbot County",America/New_York,410,NA,US,38.78,-76.22,2720 +21664,"PO BOX",0,Secretary,,,MD,"Dorchester County",America/New_York,410,NA,US,38.61,-75.94,637 +21665,STANDARD,0,Sherwood,,,MD,"Talbot County",America/New_York,410,NA,US,38.74,-76.32,230 +21666,STANDARD,0,Stevensville,,,MD,"Queen Anne's County",America/New_York,"410,443",NA,US,38.99,-76.3,12410 +21667,STANDARD,0,"Still Pond",,,MD,"Kent County",America/New_York,410,NA,US,39.32,-76.05,300 +21668,STANDARD,0,Sudlersville,,,MD,"Queen Anne's County",America/New_York,410,NA,US,39.18,-75.85,1590 +21669,"PO BOX",0,"Taylors Island","Taylors Is",,MD,"Dorchester County",America/New_York,410,NA,US,38.46,-76.3,211 +21670,"PO BOX",0,Templeville,,,MD,"Caroline County",America/New_York,410,NA,US,39.13,-75.76,32 +21671,STANDARD,0,Tilghman,,,MD,"Talbot County",America/New_York,410,NA,US,38.69,-76.33,720 +21672,STANDARD,0,Toddville,,,MD,"Dorchester County",America/New_York,410,NA,US,38.27,-76.05,199 +21673,STANDARD,0,Trappe,,,MD,"Talbot County",America/New_York,"410,443",NA,US,38.65,-76.05,2850 +21675,STANDARD,0,Wingate,,,MD,"Dorchester County",America/New_York,410,NA,US,38.28,-76.08,81 +21676,STANDARD,0,Wittman,,,MD,"Talbot County",America/New_York,410,NA,US,38.78,-76.3,260 +21677,STANDARD,0,Woolford,,Madison,MD,"Dorchester County",America/New_York,410,NA,US,38.5,-76.18,420 +21678,STANDARD,0,Worton,Lynch,,MD,"Kent County",America/New_York,410,NA,US,39.29,-76.11,1960 +21679,STANDARD,0,"Wye Mills",,,MD,"Talbot County",America/New_York,410,NA,US,38.91,-76.08,480 +21681,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21682,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21683,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21684,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21685,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21686,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21687,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21688,UNIQUE,1,Ridgely,,"Nationwide Fulfill Systems",MD,"Caroline County",America/New_York,410,NA,US,38.94,-75.88,0 +21690,UNIQUE,0,Chestertown,,"Usa Fulfillment",MD,"Kent County",America/New_York,410,NA,US,39.21,-76.07,0 +21701,STANDARD,0,Frederick,Lewistown,"Hood College",MD,"Frederick County",America/New_York,"240,301",NA,US,39.42,-77.41,34700 +21702,STANDARD,0,Frederick,"Fort Detrick","College Estates",MD,"Frederick County",America/New_York,"240,301",NA,US,39.48,-77.46,41200 +21703,STANDARD,0,Frederick,,,MD,"Frederick County",America/New_York,"301,240",NA,US,39.37,-77.47,37740 +21704,STANDARD,0,Frederick,Urbana,,MD,"Frederick County",America/New_York,"301,240",NA,US,39.35,-77.38,17990 +21705,"PO BOX",0,Frederick,,,MD,"Frederick County",America/New_York,240,NA,US,39.41,-77.41,758 +21709,UNIQUE,0,Frederick,,"State Farm Ins Co",MD,"Frederick County",America/New_York,240,NA,US,39.42,-77.41,0 +21710,STANDARD,0,Adamstown,Doubs,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.29,-77.45,4490 +21711,STANDARD,0,"Big Pool",,,MD,"Washington County",America/New_York,240,NA,US,39.66,-78,930 +21713,STANDARD,0,Boonsboro,,,MD,"Washington County",America/New_York,240,NA,US,39.5,-77.65,8940 +21714,"PO BOX",0,"Braddock Heights","Braddock Hts",,MD,"Frederick County",America/New_York,240,NA,US,39.42,-77.5,439 +21715,"PO BOX",0,Brownsville,,,MD,"Washington County",America/New_York,240,NA,US,39.38,-77.66,115 +21716,STANDARD,0,Brunswick,,Knoxville,MD,"Frederick County",America/New_York,301,NA,US,39.31,-77.61,6150 +21717,"PO BOX",0,Buckeystown,,,MD,"Frederick County",America/New_York,240,NA,US,39.34,-77.44,406 +21718,STANDARD,0,Burkittsville,,,MD,"Frederick County",America/New_York,240,NA,US,39.39,-77.63,216 +21719,STANDARD,0,Cascade,"Fort Ritchie, Highfield",,MD,"Washington County",America/New_York,"240,301",NA,US,39.7,-77.49,1150 +21720,"PO BOX",0,Cavetown,,,MD,"Washington County",America/New_York,240,NA,US,39.65,-77.57,250 +21721,"PO BOX",0,Chewsville,,,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.68,151 +21722,STANDARD,0,"Clear Spring","Big Spring",,MD,"Washington County",America/New_York,301,NA,US,39.65,-77.93,5210 +21723,STANDARD,0,Cooksville,,,MD,"Howard County",America/New_York,410,NA,US,39.33,-77,1020 +21727,STANDARD,0,Emmitsburg,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.7,-77.32,3830 +21733,STANDARD,0,Fairplay,"St James",,MD,"Washington County",America/New_York,240,NA,US,39.55,-77.76,1170 +21734,"PO BOX",0,Funkstown,,,MD,"Washington County",America/New_York,240,NA,US,39.61,-77.71,1015 +21737,STANDARD,0,Glenelg,,,MD,"Howard County",America/New_York,410,NA,US,39.25,-77.03,2280 +21738,STANDARD,0,Glenwood,,,MD,"Howard County",America/New_York,"410,443",NA,US,39.28,-77.02,3450 +21740,STANDARD,0,Hagerstown,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.63,-77.71,52680 +21741,"PO BOX",0,Hagerstown,,,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,870 +21742,STANDARD,0,Hagerstown,,Northern,MD,"Washington County",America/New_York,"240,301",NA,US,39.68,-77.65,29850 +21746,UNIQUE,0,Hagerstown,,"Md Correctional System",MD,"Washington County",America/New_York,240,NA,US,39.57,-77.71,28 +21747,"PO BOX",0,Hagerstown,,,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,0 +21748,UNIQUE,1,Hagerstown,,Citicorp,MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,0 +21749,UNIQUE,0,Hagerstown,,"Citicorp Brm",MD,"Washington County",America/New_York,240,NA,US,39.63,-77.71,0 +21750,STANDARD,0,Hancock,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.7,-78.17,3190 +21754,STANDARD,0,Ijamsville,,,MD,"Frederick County",America/New_York,240,NA,US,39.33,-77.31,6990 +21755,STANDARD,0,Jefferson,,,MD,"Frederick County",America/New_York,240,NA,US,39.36,-77.53,5540 +21756,STANDARD,0,Keedysville,,,MD,"Washington County",America/New_York,301,NA,US,39.48,-77.69,3520 +21757,STANDARD,0,Keymar,"Detour, Middleburg",,MD,"Frederick County",America/New_York,,NA,US,39.59,-77.26,2630 +21758,STANDARD,0,Knoxville,Brunswick,,MD,"Frederick County",America/New_York,301,NA,US,39.35,-77.64,4490 +21759,"PO BOX",0,Ladiesburg,,,MD,"Frederick County",America/New_York,240,NA,US,39.56,-77.26,48 +21762,"PO BOX",0,Libertytown,,,MD,"Frederick County",America/New_York,240,NA,US,39.48,-77.25,490 +21765,"PO BOX",0,Lisbon,,,MD,"Howard County",America/New_York,410,NA,US,39.33,-77.07,179 +21766,STANDARD,0,"Little Orleans","Ltl Orleans",,MD,"Allegany County",America/New_York,240,NA,US,39.67,-78.39,560 +21767,STANDARD,0,Maugansville,,,MD,"Washington County",America/New_York,240,NA,US,39.7,-77.75,1050 +21769,STANDARD,0,Middletown,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.44,-77.54,11620 +21770,STANDARD,0,Monrovia,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.35,-77.25,7040 +21771,STANDARD,0,"Mount Airy",,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.37,-77.15,30120 +21773,STANDARD,0,Myersville,,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.5,-77.56,5190 +21774,STANDARD,0,"New Market",,"Lake Linganore",MD,"Frederick County",America/New_York,301,NA,US,39.41,-77.27,14950 +21775,"PO BOX",0,"New Midway",,,MD,"Frederick County",America/New_York,240,NA,US,39.55,-77.3,34 +21776,STANDARD,0,"New Windsor",,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.54,-77.1,5490 +21777,STANDARD,0,"Point Of Rocks","Pt Of Rocks",,MD,"Frederick County",America/New_York,240,NA,US,39.27,-77.53,1850 +21778,STANDARD,0,"Rocky Ridge",,,MD,"Frederick County",America/New_York,240,NA,US,39.61,-77.33,920 +21779,STANDARD,0,Rohrersville,Gapland,,MD,"Washington County",America/New_York,240,NA,US,39.43,-77.65,890 +21780,STANDARD,0,Sabillasville,,,MD,"Frederick County",America/New_York,240,NA,US,39.7,-77.45,1400 +21781,"PO BOX",0,"Saint James",,,MD,"Washington County",America/New_York,240,NA,US,39.57,-77.76,84 +21782,STANDARD,0,Sharpsburg,,,MD,"Washington County",America/New_York,240,NA,US,39.45,-77.74,3630 +21783,STANDARD,0,Smithsburg,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.65,-77.57,8410 +21784,STANDARD,0,Sykesville,"Eldersburg, Gaither",,MD,"Carroll County",America/New_York,"410,443",NA,US,39.37,-76.97,38330 +21787,STANDARD,0,Taneytown,,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.65,-77.16,10010 +21788,STANDARD,0,Thurmont,Graceham,,MD,"Frederick County",America/New_York,"240,301",NA,US,39.62,-77.4,10920 +21790,STANDARD,0,Tuscarora,,,MD,"Frederick County",America/New_York,240,NA,US,39.26,-77.5,134 +21791,STANDARD,0,"Union Bridge",Linwood,,MD,"Carroll County",America/New_York,"410,443",NA,US,39.56,-77.17,4880 +21792,"PO BOX",0,Unionville,,,MD,"Frederick County",America/New_York,240,NA,US,39.51,-77.11,0 +21793,STANDARD,0,Walkersville,,,MD,"Frederick County",America/New_York,301,NA,US,39.48,-77.35,10090 +21794,STANDARD,0,"West Friendship","W Friendship",,MD,"Howard County",America/New_York,410,NA,US,39.3,-76.95,2630 +21795,STANDARD,0,Williamsport,,,MD,"Washington County",America/New_York,"240,301",NA,US,39.59,-77.81,8680 +21797,STANDARD,0,Woodbine,,,MD,"Howard County",America/New_York,,NA,US,39.33,-77.06,9130 +21798,STANDARD,0,Woodsboro,,,MD,"Frederick County",America/New_York,240,NA,US,39.53,-77.31,2300 +21801,STANDARD,0,Salisbury,,,MD,"Wicomico County",America/New_York,"443,410,667",NA,US,38.38,-75.64,23890 +21802,"PO BOX",0,Salisbury,,,MD,"Wicomico County",America/New_York,410,NA,US,38.34,-75.58,1309 +21803,"PO BOX",0,Salisbury,,,MD,"Wicomico County",America/New_York,410,NA,US,38.37,-75.58,508 +21804,STANDARD,0,Salisbury,,,MD,"Wicomico County",America/New_York,"410,667,443",NA,US,38.37,-75.58,32040 +21810,"PO BOX",0,Allen,,,MD,"Wicomico County",America/New_York,410,NA,US,38.3,-75.71,163 +21811,STANDARD,0,Berlin,"Ocean Pines, Ocean Pnes",,MD,"Worcester County",America/New_York,"410,443",NA,US,38.32,-75.21,21420 +21813,STANDARD,0,Bishopville,,Bishop,MD,"Worcester County",America/New_York,"410,443",NA,US,38.44,-75.19,2760 +21814,STANDARD,0,Bivalve,,,MD,"Wicomico County",America/New_York,410,NA,US,38.3,-75.88,270 +21817,STANDARD,0,Crisfield,,,MD,"Somerset County",America/New_York,"410,443",NA,US,37.98,-75.85,3990 +21821,STANDARD,0,"Deal Island","Chance, Dames Quarter, Wenona",,MD,"Somerset County",America/New_York,410,NA,US,38.15,-75.94,660 +21822,STANDARD,0,Eden,,,MD,"Somerset County",America/New_York,,NA,US,38.28,-75.65,2450 +21824,STANDARD,0,Ewell,,"Rhodes Point",MD,"Somerset County",America/New_York,410,NA,US,37.98,-76.03,142 +21826,STANDARD,0,Fruitland,,,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.62,4550 +21829,STANDARD,0,Girdletree,,,MD,"Worcester County",America/New_York,410,NA,US,38.09,-75.39,410 +21830,STANDARD,0,Hebron,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.41,-75.68,3860 +21835,STANDARD,0,Linkwood,,,MD,"Dorchester County",America/New_York,"410,443",NA,US,38.54,-75.94,340 +21836,"PO BOX",0,Manokin,,,MD,"Somerset County",America/New_York,410,NA,US,38.11,-75.75,73 +21837,STANDARD,0,"Mardela Springs","Mardela, Mardela Spgs",,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.45,-75.75,2360 +21838,STANDARD,0,"Marion Station","Marion, Marion Sta",,MD,"Somerset County",America/New_York,410,NA,US,38.01,-75.73,1490 +21840,STANDARD,0,Nanticoke,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.27,-75.9,310 +21841,STANDARD,0,Newark,,,MD,"Worcester County",America/New_York,410,NA,US,38.25,-75.29,830 +21842,STANDARD,0,"Ocean City",,"North Ocean City, West Ocean City",MD,"Worcester County",America/New_York,"410,443",NA,US,38.35,-75.13,11680 +21843,"PO BOX",0,"Ocean City",,,MD,"Worcester County",America/New_York,410,NA,US,38.33,-75.08,1256 +21849,STANDARD,0,Parsonsburg,,,MD,"Wicomico County",America/New_York,410,NA,US,38.38,-75.47,2840 +21850,STANDARD,0,Pittsville,,,MD,"Wicomico County",America/New_York,410,NA,US,38.39,-75.41,2690 +21851,STANDARD,0,"Pocomoke City",,Pocomoke,MD,"Worcester County",America/New_York,"410,443",NA,US,38.06,-75.56,6250 +21852,"PO BOX",0,Powellville,,,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.37,0 +21853,STANDARD,0,"Princess Anne",,Oriole,MD,"Somerset County",America/New_York,"410,443",NA,US,38.2,-75.69,7050 +21856,STANDARD,0,Quantico,,Whitehaven,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.79,790 +21857,"PO BOX",0,Rehobeth,,,MD,"Somerset County",America/New_York,410,NA,US,38.03,-75.66,0 +21861,"PO BOX",0,Sharptown,,,MD,"Wicomico County",America/New_York,410,NA,US,38.54,-75.73,815 +21862,STANDARD,0,Showell,,,MD,"Worcester County",America/New_York,410,NA,US,38.4,-75.23,96 +21863,STANDARD,0,"Snow Hill",,,MD,"Worcester County",America/New_York,"410,443",NA,US,38.17,-75.39,4100 +21864,STANDARD,0,Stockton,,,MD,"Worcester County",America/New_York,410,NA,US,38.05,-75.4,590 +21865,STANDARD,0,Tyaskin,,,MD,"Wicomico County",America/New_York,410,NA,US,38.32,-75.87,380 +21866,"PO BOX",0,Tylerton,,,MD,"Somerset County",America/New_York,410,NA,US,37.97,-76.02,51 +21867,"PO BOX",0,"Upper Fairmount","Fairmount, Upper Fairmt, Upper Hill",,MD,"Somerset County",America/New_York,410,NA,US,38.11,-75.79,213 +21869,STANDARD,0,Vienna,,"Elliott, Salem",MD,"Dorchester County",America/New_York,410,NA,US,38.44,-75.9,800 +21871,STANDARD,0,Westover,,"Easton Correctional Inst, Kingston, Rumbley",MD,"Somerset County",America/New_York,410,NA,US,38.12,-75.7,1600 +21872,STANDARD,0,Whaleyville,,,MD,"Worcester County",America/New_York,410,NA,US,38.4,-75.3,610 +21874,STANDARD,0,Willards,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.39,-75.34,2020 +21875,STANDARD,0,Delmar,,,MD,"Wicomico County",America/New_York,"410,443",NA,US,38.45,-75.57,6250 +21890,UNIQUE,0,Westover,,"Eastern Correctional Inst, Easton Correctional Inst",MD,"Somerset County",America/New_York,410,NA,US,38.16,-75.7,0 +21901,STANDARD,0,"North East",,Northeast,MD,"Cecil County",America/New_York,"410,443",NA,US,39.6,-75.94,16440 +21902,"PO BOX",0,"Perry Point",,,MD,"Cecil County",America/New_York,410,NA,US,39.55,-76.06,121 +21903,STANDARD,0,Perryville,,,MD,"Cecil County",America/New_York,"410,443",NA,US,39.57,-76.06,4930 +21904,STANDARD,0,"Port Deposit",Bainbridge,,MD,"Cecil County",America/New_York,"410,443",NA,US,39.6,-76.11,6130 +21911,STANDARD,0,"Rising Sun",,,MD,"Cecil County",America/New_York,410,NA,US,39.69,-76.06,10170 +21912,STANDARD,0,Warwick,,,MD,"Cecil County",America/New_York,410,NA,US,39.42,-75.8,1100 +21913,"PO BOX",0,Cecilton,,,MD,"Cecil County",America/New_York,410,NA,US,39.4,-75.87,776 +21914,"PO BOX",0,Charlestown,,,MD,"Cecil County",America/New_York,410,NA,US,39.57,-75.97,813 +21915,STANDARD,0,"Chesapeake City","Chesapeake Cy",,MD,"Cecil County",America/New_York,"443,410",NA,US,39.52,-75.81,2760 +21916,"PO BOX",0,Childs,,,MD,"Cecil County",America/New_York,410,NA,US,39.64,-75.86,159 +21917,STANDARD,0,Colora,,,MD,"Cecil County",America/New_York,410,NA,US,39.66,-76.09,2340 +21918,STANDARD,0,Conowingo,,,MD,"Cecil County",America/New_York,410,NA,US,39.68,-76.16,3790 +21919,STANDARD,0,Earleville,,,MD,"Cecil County",America/New_York,410,NA,US,39.41,-75.93,2590 +21920,"PO BOX",0,"Elk Mills",,,MD,"Cecil County",America/New_York,410,NA,US,39.66,-75.83,365 +21921,STANDARD,0,Elkton,,,MD,"Cecil County",America/New_York,"410,443",NA,US,39.6,-75.82,37990 +21922,"PO BOX",0,Elkton,,,MD,"Cecil County",America/New_York,410,NA,US,39.6,-75.82,980 +21930,"PO BOX",0,Georgetown,,,MD,"Cecil County",America/New_York,410,NA,US,39.38,-75.89,222 +22003,STANDARD,0,Annandale,,,VA,"Fairfax County",America/New_York,703,NA,US,38.83,-77.21,53400 +22009,"PO BOX",0,Burke,Springfield,,VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.27,305 +22015,STANDARD,0,Burke,Springfield,,VA,"Fairfax County",America/New_York,703,NA,US,38.78,-77.27,42560 +22025,STANDARD,0,Dumfries,Montclair,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.6,-77.34,17840 +22026,STANDARD,0,Dumfries,Southbridge,,VA,"Prince William County",America/New_York,571,NA,US,38.56,-77.3,18850 +22027,STANDARD,0,"Dunn Loring",Vienna,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.89,-77.22,2230 +22030,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,571,NA,US,38.84,-77.34,48880 +22031,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.85,-77.29,30860 +22032,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.82,-77.29,28920 +22033,STANDARD,0,Fairfax,,,VA,"Fairfax County",America/New_York,703,NA,US,38.88,-77.38,36900 +22034,STANDARD,0,Fairfax,,"Journal Newspaper",VA,"Fairfax City",America/New_York,571,NA,US,38.85,-77.29,0 +22035,STANDARD,0,Fairfax,,"Fairfax County Government",VA,"Fairfax County",America/New_York,571,NA,US,38.85,-77.36,0 +22036,STANDARD,0,Fairfax,,"Journal Newspaper",VA,"Fairfax City",America/New_York,"571,703",NA,US,38.85,-77.29,0 +22037,UNIQUE,0,Fairfax,,"Mobil Oil Corp",VA,"Fairfax City",America/New_York,571,NA,US,38.85,-77.29,67 +22038,"PO BOX",0,Fairfax,,,VA,"Fairfax City",America/New_York,571,NA,US,38.85,-77.29,415 +22039,STANDARD,0,"Fairfax Station","Fairfax Sta, Fx Station",,VA,"Fairfax County",America/New_York,571,NA,US,38.76,-77.31,19100 +22040,"PO BOX",0,"Falls Church",,,VA,"Falls Church City",America/New_York,571,NA,US,38.88,-77.17,382 +22041,STANDARD,0,"Falls Church","Baileys Crossroads, Baileys Xrds",,VA,"Fairfax County",America/New_York,703,NA,US,38.84,-77.14,23870 +22042,STANDARD,0,"Falls Church",Mosby,,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.2,31090 +22043,STANDARD,0,"Falls Church",Pimmit,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.9,-77.2,23170 +22044,STANDARD,0,"Falls Church","Seven Corners","7 Corners",VA,"Fairfax County",America/New_York,571,NA,US,38.86,-77.15,11660 +22046,STANDARD,0,"Falls Church",,,VA,"Falls Church city",America/New_York,"571,703",NA,US,38.88,-77.17,17600 +22047,UNIQUE,1,"Falls Church",,Aaa,VA,"Falls Church City",America/New_York,571,NA,US,38.86,-77.22,0 +22060,STANDARD,0,"Fort Belvoir","Ft Belvoir",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.7,-77.14,9220 +22066,STANDARD,0,"Great Falls",,,VA,"Fairfax County",America/New_York,703,NA,US,39.01,-77.28,18050 +22067,STANDARD,0,Greenway,"Mc Lean",,VA,"Fairfax County",America/New_York,703,NA,US,38.93,-77.16,0 +22079,STANDARD,0,Lorton,"Mason Neck",,VA,"Fairfax County",America/New_York,"703,571",NA,US,38.7,-77.24,33540 +22081,STANDARD,0,Merrifield,,"Northern Virginia, Northern Virginia Facility",VA,"Fairfax County",America/New_York,"571,703",NA,US,38.87,-77.24,0 +22082,UNIQUE,0,Merrifield,,"Engineering Support Center",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,0 +22092,UNIQUE,1,Herndon,,"U S Geological Survey",VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,0 +22093,UNIQUE,1,Ashburn,"Natl Assn Letter Carriers",,VA,"Loudoun County",America/New_York,571,NA,US,39.04,-77.48,0 +22095,UNIQUE,0,Herndon,Reston,"Business Reply Mail",VA,"Fairfax County",America/New_York,571,NA,US,38.96,-77.38,0 +22096,UNIQUE,0,Reston,Herndon,Sprint,VA,"Fairfax County",America/New_York,571,NA,US,38.95,-77.34,0 +22101,STANDARD,0,"Mc Lean",Mclean,Maclean,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.94,-77.19,29720 +22102,STANDARD,0,"Mc Lean","Mclean, Tysons, Tysons Corner, West Mclean",Maclean,VA,"Fairfax County",America/New_York,"703,571",NA,US,38.95,-77.23,23910 +22103,"PO BOX",0,"West Mclean","Mc Lean, Mclean",Maclean,VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.16,170 +22106,"PO BOX",0,"Mc Lean",Mclean,,VA,"Fairfax County",America/New_York,571,NA,US,38.94,-77.19,265 +22107,UNIQUE,0,"Mc Lean",,Gannett,VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.18,0 +22108,UNIQUE,0,"Mc Lean",,"Usa Today",VA,"Fairfax County",America/New_York,571,NA,US,38.93,-77.18,0 +22109,UNIQUE,0,"Mc Lean",,"Wachovia Bank",VA,"Fairfax County",America/New_York,571,NA,US,38.94,-77.19,0 +22116,"PO BOX",0,Merrifield,,,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,624 +22118,UNIQUE,0,Merrifield,,"Bank Of America",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,0 +22119,UNIQUE,0,Merrifield,,"Navy Federal Credit Union",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.24,0 +22120,UNIQUE,1,Merrifield,"Continental Telephone",,VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.22,0 +22121,"PO BOX",0,"Mount Vernon",,,VA,"Fairfax County",America/New_York,571,NA,US,38.71,-77.1,74 +22122,"PO BOX",0,Newington,,,VA,"Fairfax County",America/New_York,571,NA,US,38.73,-77.2,112 +22124,STANDARD,0,Oakton,Vienna,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.89,-77.3,17910 +22125,"PO BOX",0,Occoquan,,,VA,"Prince William County",America/New_York,571,NA,US,38.68,-77.26,654 +22134,STANDARD,0,Quantico,,"Mcb Quantico, Quantico Naval Hospital",VA,"Prince William County",America/New_York,571,NA,US,38.52,-77.29,4790 +22135,UNIQUE,0,Quantico,,"Fbi Academy",VA,"Prince William County",America/New_York,571,NA,US,38.52,-77.29,0 +22150,STANDARD,0,Springfield,,,VA,"Fairfax County",America/New_York,703,NA,US,38.78,-77.17,26770 +22151,STANDARD,0,Springfield,"N Springfield, North Springfield","N Springfld",VA,"Fairfax County",America/New_York,703,NA,US,38.8,-77.21,17210 +22152,STANDARD,0,Springfield,"W Springfield, West Springfield",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.77,-77.23,29200 +22153,STANDARD,0,Springfield,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.74,-77.24,32060 +22156,UNIQUE,0,Springfield,,"Firm Zip",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22158,UNIQUE,0,Springfield,,"Army Times, Springfield Brm",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22159,STANDARD,0,Springfield,,"Army Times, Firm Zip",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22160,UNIQUE,0,Springfield,,"National Right To Work Comm",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22161,UNIQUE,0,Springfield,,"Dept Of Commerce",VA,"Fairfax County",America/New_York,571,NA,US,38.78,-77.17,0 +22172,STANDARD,0,Triangle,,,VA,"Prince William County",America/New_York,"571,703",NA,US,38.54,-77.31,9550 +22180,STANDARD,0,Vienna,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.9,-77.26,24900 +22181,STANDARD,0,Vienna,,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.91,-77.29,14760 +22182,STANDARD,0,Vienna,"Tysons, Tysons Corner",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.94,-77.27,26280 +22183,"PO BOX",0,Vienna,,,VA,"Fairfax County",America/New_York,571,NA,US,38.9,-77.26,258 +22184,UNIQUE,1,Vienna,,"National Wildlife Assoc",VA,"Fairfax County",America/New_York,571,NA,US,38.9,-77.26,0 +22185,UNIQUE,0,Vienna,Oakton,"A T & T, AT&T",VA,"Fairfax County",America/New_York,571,NA,US,38.87,-77.3,0 +22191,STANDARD,0,Woodbridge,,Wdbg,VA,"Prince William County",America/New_York,"571,703",NA,US,38.63,-77.26,68120 +22192,STANDARD,0,Woodbridge,"Lake Ridge, Prince William, Prince Wm",,VA,"Prince William County",America/New_York,"571,703",NA,US,38.68,-77.31,56250 +22193,STANDARD,0,Woodbridge,"Dale City",Dalecity,VA,"Prince William County",America/New_York,"571,703",NA,US,38.64,-77.35,79970 +22194,"PO BOX",0,Woodbridge,,,VA,"Prince William County",America/New_York,571,NA,US,38.63,-77.26,666 +22195,"PO BOX",0,Woodbridge,,,VA,"Prince William County",America/New_York,571,NA,US,38.63,-77.26,1056 +22199,"PO BOX",0,Lorton,,,VA,"Fairfax County",America/New_York,571,NA,US,38.7,-77.24,474 +22201,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.89,-77.1,31480 +22202,STANDARD,0,Arlington,,"Crystal City",VA,"Arlington County",America/New_York,"571,703",NA,US,38.86,-77.05,20150 +22203,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.12,20060 +22204,STANDARD,0,Arlington,,South,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.1,46660 +22205,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"703,571",NA,US,38.88,-77.14,17630 +22206,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,703,NA,US,38.84,-77.09,18890 +22207,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"703,571",NA,US,38.91,-77.12,31550 +22209,STANDARD,0,Arlington,Rosslyn,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.9,-77.08,10950 +22210,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,264 +22211,STANDARD,0,"Fort Myer","Ft Myer",,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.07,620 +22212,UNIQUE,0,Arlington,,"Navy Mutual Aid Assoc",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22213,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.9,-77.16,3470 +22214,STANDARD,0,Arlington,,,VA,"Arlington County",America/New_York,"571,703",NA,US,38.87,-77.07,133 +22215,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,201 +22216,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,181 +22217,UNIQUE,0,Arlington,,"Office Of Naval Research",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22218,UNIQUE,1,Arlington,"Visa Lottery",,VA,"Arlington County",America/New_York,571,NA,US,38.88,-77.09,0 +22219,"PO BOX",0,Arlington,,,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,257 +22222,UNIQUE,1,Arlington,,"Marine Corps Institute",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22223,UNIQUE,1,Arlington,,"Marine Corps Institute, Business Reply Mail",VA,"Arlington County",America/New_York,571,NA,US,38.88,-77.09,0 +22225,UNIQUE,0,Arlington,,"Dept Of The Navy",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22226,UNIQUE,0,Arlington,,Fdic,VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22227,UNIQUE,0,Arlington,,"Us Air",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22229,UNIQUE,1,Arlington,"Shared Firm Zip",,VA,"Arlington County",America/New_York,571,NA,US,38.89,-77.07,0 +22230,UNIQUE,0,Arlington,,"National Science Foundation",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22234,UNIQUE,1,Arlington,Gannett,,VA,"Arlington County",America/New_York,571,NA,US,38.89,-77.07,0 +22240,UNIQUE,0,Arlington,,"Us Navy Accounting Office",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22241,UNIQUE,0,Arlington,,"Naval Supply System Command",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22242,UNIQUE,0,Arlington,,"Navy Sea Systems Command",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22243,UNIQUE,0,Arlington,,"Naval Air System Command",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22244,UNIQUE,0,Arlington,,"Assistant Secretary Of Navy",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22245,UNIQUE,0,Arlington,,"Space & Naval Warfare System",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22246,UNIQUE,0,Arlington,,"Us Unmanned Aerial Vehicles",VA,"Arlington County",America/New_York,571,NA,US,38.87,-77.1,0 +22301,STANDARD,0,Alexandria,Potomac,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.82,-77.06,13270 +22302,STANDARD,0,Alexandria,,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.82,-77.08,16090 +22303,STANDARD,0,Alexandria,"Jefferson Manor, Jefferson Mnr",,VA,"Fairfax County",America/New_York,703,NA,US,38.79,-77.08,14330 +22304,STANDARD,0,Alexandria,,"Cameron Station, Theological Seminary, Trade Center",VA,"Alexandria city",America/New_York,"571,703",NA,US,38.81,-77.11,42600 +22305,STANDARD,0,Alexandria,,"George Washington",VA,"Alexandria city",America/New_York,"571,703",NA,US,38.84,-77.06,14970 +22306,STANDARD,0,Alexandria,Community,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.76,-77.1,29660 +22307,STANDARD,0,Alexandria,Belleview,,VA,"Fairfax County",America/New_York,703,NA,US,38.77,-77.06,9790 +22308,STANDARD,0,Alexandria,"Fort Hunt",,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.73,-77.06,13740 +22309,STANDARD,0,Alexandria,Engleside,,VA,"Fairfax County",America/New_York,"571,703",NA,US,38.72,-77.11,31040 +22310,STANDARD,0,Alexandria,Franconia,,VA,"Fairfax County",America/New_York,703,NA,US,38.78,-77.12,28090 +22311,STANDARD,0,Alexandria,,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.83,-77.13,16590 +22312,STANDARD,0,Alexandria,Lincolnia,,VA,"Fairfax County",America/New_York,703,NA,US,38.82,-77.15,27890 +22313,"PO BOX",0,Alexandria,,,VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,457 +22314,STANDARD,0,Alexandria,,,VA,"Alexandria city",America/New_York,"571,703",NA,US,38.81,-77.06,30900 +22315,STANDARD,0,Alexandria,Kingstowne,,VA,"Fairfax County",America/New_York,703,NA,US,38.76,-77.15,26980 +22320,"PO BOX",0,Alexandria,,,VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,184 +22321,UNIQUE,1,Alexandria,"Firm Zip",,VA,"Alexandria City",America/New_York,571,NA,US,38.8,-77.05,0 +22331,STANDARD,0,Alexandria,,,VA,"Alexandria City",America/New_York,703,NA,US,38.82,-77.08,0 +22332,STANDARD,0,Alexandria,,,VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,0 +22333,UNIQUE,0,Alexandria,,"Us Army Mat Com",VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,0 +22334,UNIQUE,0,Alexandria,,"Sun Trust Bank",VA,"Alexandria City",America/New_York,571,NA,US,38.82,-77.08,0 +22336,UNIQUE,1,Alexandria,,"Woodward & Lothrop",VA,"Alexandria City",America/New_York,571,NA,US,38.8,-77.04,0 +22350,UNIQUE,0,Alexandria,,"Dept Of Defense, Dod",VA,,America/New_York,571,NA,US,38.81,-77.08,0 +22401,STANDARD,0,Fredericksburg,Fredericksbrg,"Enon, Fred",VA,"Fredericksburg city",America/New_York,540,NA,US,38.29,-77.48,21280 +22402,"PO BOX",0,Fredericksburg,Fredericksbrg,Fred,VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,552 +22403,"PO BOX",0,Fredericksburg,"Falmouth, Fredericksbrg",Fred,VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,620 +22404,"PO BOX",0,Fredericksburg,Fredericksbrg,Fred,VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,1119 +22405,STANDARD,0,Fredericksburg,"Falmouth, Fredericksbrg","Fred, Fredericksbg",VA,"Stafford County",America/New_York,540,NA,US,38.31,-77.4,31780 +22406,STANDARD,0,Fredericksburg,"Falmouth, Fredericksbrg","Fred, Fredbg, Frederickbg, Frederickbur, Fredericksbg, Fredericksbur",VA,"Stafford County",America/New_York,540,NA,US,38.4,-77.54,25040 +22407,STANDARD,0,Fredericksburg,Fredericksbrg,"Fred, Fredbg, Frederickbg, Frederickbur, Fredericksbg, Fredericksbur",VA,"Spotsylvania County",America/New_York,540,NA,US,38.28,-77.58,56890 +22408,STANDARD,0,Fredericksburg,Fredericksbrg,"Fred, Fredbg, Frederickbg, Frederickbur, Fredericksbg, Fredericksbur",VA,"Spotsylvania County",America/New_York,540,NA,US,38.22,-77.44,29210 +22412,UNIQUE,0,Fredericksburg,"Falmouth, Fredericksbrg","Geico Insurance",VA,"Fredericksburg City",America/New_York,540,NA,US,38.29,-77.48,0 +22427,STANDARD,0,"Bowling Green","Fort A P Hill","Bowling Grn, Ft Ap Hill",VA,"Caroline County",America/New_York,804,NA,US,38.04,-77.35,2840 +22428,UNIQUE,0,"Bowling Green",,"Boy Scouts Of America",VA,"Caroline County",America/New_York,804,NA,US,38.04,-77.35,0 +22430,"PO BOX",0,Brooke,Stafford,,VA,"Stafford County",America/New_York,540,NA,US,38.37,-77.34,71 +22432,STANDARD,0,Burgess,,,VA,"Northumberland County",America/New_York,804,NA,US,37.88,-76.34,600 +22433,STANDARD,0,"Burr Hill",,,VA,"Orange County",America/New_York,,NA,US,38.37,-77.86,250 +22435,STANDARD,0,Callao,,Walmsley,VA,"Northumberland County",America/New_York,804,NA,US,37.96,-76.55,2010 +22436,STANDARD,0,Caret,Supply,,VA,"Essex County",America/New_York,804,NA,US,37.98,-76.96,720 +22437,STANDARD,0,"Center Cross",,,VA,"Essex County",America/New_York,804,NA,US,37.8,-76.77,510 +22438,STANDARD,0,Champlain,Chance,Elevon,VA,"Essex County",America/New_York,804,NA,US,38.04,-76.98,370 +22442,"PO BOX",0,"Coles Point",,"Ragged Point Beach",VA,"Westmoreland County",America/New_York,804,NA,US,38.14,-76.63,76 +22443,STANDARD,0,"Colonial Beach","Colonial Bch, Oak Grove, Washgtns Brhp, Washingtons Birthplace",,VA,"Westmoreland County",America/New_York,804,NA,US,38.25,-76.97,7450 +22446,"PO BOX",0,Corbin,,,VA,"Caroline County",America/New_York,804,NA,US,38.19,-77.38,231 +22448,STANDARD,0,Dahlgren,,"Naval Surface Weapons Center",VA,"King George County",America/New_York,540,NA,US,38.34,-77.03,1240 +22451,"PO BOX",0,Dogue,,,VA,"King George County",America/New_York,540,NA,US,38.23,-77.21,139 +22454,STANDARD,0,Dunnsville,Howertons,,VA,"Essex County",America/New_York,804,NA,US,37.85,-76.82,1520 +22456,"PO BOX",0,Edwardsville,,,VA,"Northumberland County",America/New_York,804,NA,US,37.9,-76.36,30 +22460,STANDARD,0,Farnham,,,VA,"Richmond County",America/New_York,804,NA,US,37.88,-76.62,1440 +22463,"PO BOX",0,Garrisonville,,,VA,"Stafford County",America/New_York,540,NA,US,38.48,-77.42,348 +22469,STANDARD,0,Hague,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.07,-76.65,1740 +22471,"PO BOX",0,Hartwood,,,VA,"Stafford County",America/New_York,540,NA,US,38.39,-77.61,307 +22472,"PO BOX",0,Haynesville,,,VA,"Richmond County",America/New_York,804,NA,US,37.95,-76.66,363 +22473,STANDARD,0,Heathsville,,,VA,"Northumberland County",America/New_York,804,NA,US,37.91,-76.47,3880 +22476,STANDARD,0,Hustle,,,VA,"Essex County",America/New_York,804,NA,US,38.04,-77.06,290 +22480,STANDARD,0,Irvington,,,VA,"Lancaster County",America/New_York,804,NA,US,37.66,-76.42,1060 +22481,"PO BOX",0,Jersey,,,VA,"King George County",America/New_York,540,NA,US,38.21,-77.13,185 +22482,STANDARD,0,Kilmarnock,,,VA,"Lancaster County",America/New_York,804,NA,US,37.71,-76.38,2630 +22485,STANDARD,0,"King George",Shiloh,Owens,VA,"King George County",America/New_York,540,NA,US,38.26,-77.18,22930 +22488,STANDARD,0,Kinsale,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.05,-76.59,1490 +22501,STANDARD,0,Ladysmith,,,VA,"Caroline County",America/New_York,804,NA,US,38.01,-77.51,505 +22503,STANDARD,0,Lancaster,"Alfonso, Regina",Millenbeck,VA,"Lancaster County",America/New_York,804,NA,US,37.76,-76.46,2990 +22504,STANDARD,0,Laneview,,Butylo,VA,"Essex County",America/New_York,,NA,US,37.77,-76.73,180 +22507,"PO BOX",0,Lively,,,VA,"Lancaster County",America/New_York,804,NA,US,37.77,-76.51,334 +22508,STANDARD,0,"Locust Grove","Lake Of The Woods, Lake Of Woods, Mine Run",,VA,"Orange County",America/New_York,540,NA,US,38.33,-77.79,13550 +22509,STANDARD,0,Loretto,,,VA,"Essex County",America/New_York,804,NA,US,38.12,-77.08,31 +22511,STANDARD,0,Lottsburg,Lewisetta,,VA,"Northumberland County",America/New_York,804,NA,US,37.96,-76.51,1350 +22513,"PO BOX",0,"Merry Point",,,VA,"Lancaster County",America/New_York,804,NA,US,37.71,-76.5,121 +22514,STANDARD,0,Milford,,Gether,VA,"Caroline County",America/New_York,804,NA,US,38.02,-77.36,2080 +22517,"PO BOX",0,Mollusk,,,VA,"Lancaster County",America/New_York,804,NA,US,37.72,-76.53,308 +22520,STANDARD,0,Montross,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.09,-76.82,4810 +22523,"PO BOX",0,Morattico,,,VA,"Lancaster County",America/New_York,804,NA,US,37.8,-76.61,55 +22524,"PO BOX",0,"Mount Holly",,,VA,"Westmoreland County",America/New_York,804,NA,US,38.09,-76.71,332 +22526,"PO BOX",0,Ninde,,,VA,"King George County",America/New_York,540,NA,US,38.27,-77.05,107 +22528,"PO BOX",0,Nuttsville,,,VA,"Lancaster County",America/New_York,804,NA,US,37.79,-76.55,77 +22529,"PO BOX",0,Oldhams,,,VA,"Westmoreland County",America/New_York,804,NA,US,38,-76.68,254 +22530,"PO BOX",0,Ophelia,,,VA,"Northumberland County",America/New_York,804,NA,US,37.9,-76.29,171 +22534,STANDARD,0,Partlow,,,VA,"Spotsylvania County",America/New_York,"804,540",NA,US,38.08,-77.67,2750 +22535,STANDARD,0,"Port Royal",,,VA,"Caroline County",America/New_York,804,NA,US,38.16,-77.19,620 +22538,STANDARD,0,"Rappahannock Academy","Raphanck Acad",Rappnhanck,VA,"Caroline County",America/New_York,804,NA,US,38.2,-77.26,270 +22539,STANDARD,0,Reedville,,,VA,"Northumberland County",America/New_York,804,NA,US,37.86,-76.29,1840 +22542,STANDARD,0,Rhoadesville,,,VA,"Orange County",America/New_York,,NA,US,38.28,-77.9,1820 +22544,"PO BOX",0,"Rollins Fork",,,VA,"King George County",America/New_York,540,NA,US,38.18,-77.06,0 +22545,"PO BOX",0,Ruby,,,VA,"Stafford County",America/New_York,540,NA,US,38.5,-77.51,71 +22546,STANDARD,0,"Ruther Glen",,Rutherglen,VA,"Caroline County",America/New_York,804,NA,US,38,-77.54,16010 +22547,"PO BOX",0,Sealston,,,VA,"King George County",America/New_York,540,NA,US,38.27,-77.32,94 +22548,"PO BOX",0,Sharps,,,VA,"Richmond County",America/New_York,804,NA,US,37.82,-76.7,82 +22551,STANDARD,0,Spotsylvania,,,VA,"Spotsylvania County",America/New_York,540,NA,US,38.17,-77.7,19000 +22552,"PO BOX",0,Sparta,,,VA,"Caroline County",America/New_York,804,NA,US,37.99,-77.22,64 +22553,STANDARD,0,Spotsylvania,Snell,,VA,"Spotsylvania County",America/New_York,540,NA,US,38.27,-77.65,15540 +22554,STANDARD,0,Stafford,,,VA,"Stafford County",America/New_York,540,NA,US,38.42,-77.4,58630 +22555,"PO BOX",0,Stafford,,,VA,"Stafford County",America/New_York,540,NA,US,38.42,-77.4,1083 +22556,STANDARD,0,Stafford,,,VA,"Stafford County",America/New_York,540,NA,US,38.47,-77.51,27890 +22558,"PO BOX",0,Stratford,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.12,-76.81,0 +22560,STANDARD,0,Tappahannock,,,VA,"Essex County",America/New_York,804,NA,US,37.92,-76.86,5930 +22565,"PO BOX",0,Thornburg,,,VA,"Spotsylvania County",America/New_York,540,NA,US,38.13,-77.52,556 +22567,STANDARD,0,Unionville,,Lahore,VA,"Orange County",America/New_York,540,NA,US,38.25,-77.96,2760 +22570,"PO BOX",0,Village,,,VA,"Richmond County",America/New_York,,NA,US,37.94,-76.6,29 +22572,STANDARD,0,Warsaw,Foneswood,"Nomini Grove",VA,"Richmond County",America/New_York,804,NA,US,37.96,-76.76,5090 +22576,STANDARD,0,Weems,,,VA,"Lancaster County",America/New_York,804,NA,US,37.68,-76.44,1320 +22577,"PO BOX",0,"Sandy Point",,,VA,"Westmoreland County",America/New_York,804,NA,US,38.06,-76.55,187 +22578,STANDARD,0,"White Stone",,Whitestone,VA,"Lancaster County",America/New_York,804,NA,US,37.64,-76.39,2050 +22579,"PO BOX",0,"Wicomico Church","Wicomico Chur",,VA,"Northumberland County",America/New_York,804,NA,US,37.8,-76.31,503 +22580,STANDARD,0,Woodford,,,VA,"Caroline County",America/New_York,"804,540",NA,US,38.11,-77.4,4320 +22581,"PO BOX",0,Zacata,,,VA,"Westmoreland County",America/New_York,804,NA,US,38.11,-76.8,0 +22601,STANDARD,0,Winchester,,,VA,"Winchester city",America/New_York,540,NA,US,39.17,-78.17,24070 +22602,STANDARD,0,Winchester,,,VA,"Frederick County",America/New_York,540,NA,US,39.14,-78.28,28230 +22603,STANDARD,0,Winchester,Hayfield,,VA,"Frederick County",America/New_York,540,NA,US,39.28,-78.21,13740 +22604,"PO BOX",0,Winchester,,,VA,"Winchester City",America/New_York,540,NA,US,39.17,-78.17,1823 +22610,STANDARD,0,Bentonville,Browntown,Overall,VA,"Warren County",America/New_York,540,NA,US,38.83,-78.31,1850 +22611,STANDARD,0,Berryville,"Mount Weather",,VA,"Clarke County",America/New_York,540,NA,US,39.14,-77.98,8360 +22620,STANDARD,0,Boyce,,,VA,"Clarke County",America/New_York,540,NA,US,39.09,-78.05,2130 +22622,"PO BOX",0,Brucetown,,,VA,"Frederick County",America/New_York,540,NA,US,39.25,-78.05,0 +22623,STANDARD,0,"Chester Gap",,,VA,"Rappahannock County",America/New_York,540,NA,US,38.85,-78.13,620 +22624,STANDARD,0,"Clear Brook",,,VA,"Frederick County",America/New_York,540,NA,US,39.26,-78.1,2470 +22625,STANDARD,0,"Cross Junction","Cross Jct, Whitacre",,VA,"Frederick County",America/New_York,540,NA,US,39.32,-78.29,3530 +22626,"PO BOX",0,"Fishers Hill",,,VA,"Shenandoah County",America/New_York,540,NA,US,38.97,-78.4,103 +22627,STANDARD,0,"Flint Hill",Huntly,,VA,"Rappahannock County",America/New_York,540,NA,US,38.76,-78.1,720 +22630,STANDARD,0,"Front Royal","Lake Frederick, Lk Frederick, Riverton",,VA,"Warren County",America/New_York,540,NA,US,38.92,-78.18,29590 +22637,STANDARD,0,Gore,,,VA,"Frederick County",America/New_York,540,NA,US,39.26,-78.33,2020 +22639,STANDARD,0,Hume,,,VA,"Fauquier County",America/New_York,,NA,US,38.83,-77.99,590 +22640,STANDARD,0,Huntly,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.8,-78.14,310 +22641,STANDARD,0,Strasburg,"Lebanon Ch, Lebanon Church",,VA,"Shenandoah County",America/New_York,540,NA,US,39.09,-78.37,250 +22642,STANDARD,0,Linden,,,VA,"Warren County",America/New_York,540,NA,US,38.9,-78.07,4300 +22643,STANDARD,0,Markham,,,VA,"Fauquier County",America/New_York,540,NA,US,38.9,-78,360 +22644,STANDARD,0,Maurertown,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.98,-78.51,2060 +22645,STANDARD,0,Middletown,,,VA,"Frederick County",America/New_York,,NA,US,39.02,-78.27,3870 +22646,"PO BOX",0,Millwood,,,VA,"Clarke County",America/New_York,540,NA,US,39.06,-78.03,408 +22649,STANDARD,0,Middletown,Reliance,,VA,"Frederick County",America/New_York,540,NA,US,39.02,-78.27,0 +22650,STANDARD,0,Rileyville,,,VA,"Page County",America/New_York,540,NA,US,38.76,-78.38,820 +22652,STANDARD,0,"Fort Valley","Saint Davids Church, Seven Fountains, Seven Fountns, St Davids Ch",,VA,"Shenandoah County",America/New_York,540,NA,US,38.84,-78.42,1290 +22654,STANDARD,0,"Star Tannery",,,VA,"Frederick County",America/New_York,,NA,US,39.08,-78.45,720 +22655,STANDARD,0,"Stephens City",,,VA,"Frederick County",America/New_York,540,NA,US,39.09,-78.22,20880 +22656,STANDARD,0,Stephenson,,,VA,"Frederick County",America/New_York,540,NA,US,39.2,-78.09,4920 +22657,STANDARD,0,Strasburg,,"Lebanon Church",VA,"Shenandoah County",America/New_York,540,NA,US,38.98,-78.35,10630 +22660,STANDARD,0,"Toms Brook",,,VA,"Shenandoah County",America/New_York,540,NA,US,38.94,-78.43,1570 +22663,STANDARD,0,"White Post",,,VA,"Frederick County",America/New_York,540,NA,US,39.05,-78.1,1570 +22664,STANDARD,0,Woodstock,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.87,-78.51,8220 +22701,STANDARD,0,Culpeper,"Raccoon Ford, Winston",Catalpa,VA,"Culpeper County",America/New_York,540,NA,US,38.47,-78,33370 +22709,STANDARD,0,Aroda,,,VA,"Madison County",America/New_York,540,NA,US,38.32,-78.24,910 +22711,STANDARD,0,Banco,,,VA,"Madison County",America/New_York,540,NA,US,38.47,-78.27,119 +22712,STANDARD,0,Bealeton,Morrisville,,VA,"Fauquier County",America/New_York,540,NA,US,38.57,-77.76,9760 +22713,STANDARD,0,Boston,,,VA,"Culpeper County",America/New_York,540,NA,US,38.54,-78.14,1310 +22714,STANDARD,0,"Brandy Station","Brandy Sta",Brandy,VA,"Culpeper County",America/New_York,540,NA,US,38.52,-77.89,970 +22715,STANDARD,0,Brightwood,,,VA,"Madison County",America/New_York,540,NA,US,38.41,-78.16,1080 +22716,STANDARD,0,Castleton,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.6,-78.1,720 +22718,STANDARD,0,Elkwood,,,VA,"Culpeper County",America/New_York,540,NA,US,38.51,-77.85,660 +22719,STANDARD,0,Etlan,Madison,,VA,"Madison County",America/New_York,540,NA,US,38.52,-78.26,280 +22720,STANDARD,0,Goldvein,,,VA,"Fauquier County",America/New_York,540,NA,US,38.44,-77.65,880 +22721,STANDARD,1,"Graves Mill",,,VA,"Madison County",America/New_York,540,NA,US,38.39,-78.28,0 +22722,STANDARD,0,Haywood,,,VA,"Madison County",America/New_York,540,NA,US,38.47,-78.23,176 +22723,STANDARD,0,Hood,,,VA,"Madison County",America/New_York,540,NA,US,38.35,-78.38,196 +22724,STANDARD,0,Jeffersonton,,,VA,"Culpeper County",America/New_York,540,NA,US,38.63,-77.91,2310 +22725,STANDARD,0,Leon,,,VA,"Madison County",America/New_York,540,NA,US,38.45,-78.15,70 +22726,STANDARD,0,Lignum,,,VA,"Culpeper County",America/New_York,540,NA,US,38.41,-77.82,740 +22727,STANDARD,0,Madison,"Banco, Etlan, Graves Mill","Aroda, Aylor, Criglersville, Shelby, Twymans Mill",VA,"Madison County",America/New_York,"434,540",NA,US,38.37,-78.25,4910 +22728,STANDARD,0,Midland,,,VA,"Fauquier County",America/New_York,540,NA,US,38.59,-77.72,2900 +22729,STANDARD,0,Mitchells,,,VA,"Culpeper County",America/New_York,540,NA,US,38.37,-78,172 +22730,STANDARD,0,Oakpark,,,VA,"Madison County",America/New_York,540,NA,US,38.36,-78.16,151 +22731,STANDARD,0,Pratts,,,VA,"Madison County",America/New_York,540,NA,US,38.34,-78.26,210 +22732,STANDARD,0,Radiant,,,VA,"Madison County",America/New_York,540,NA,US,38.31,-78.19,290 +22733,STANDARD,0,Rapidan,,,VA,"Culpeper County",America/New_York,540,NA,US,38.31,-78.06,1200 +22734,STANDARD,0,Remington,,,VA,"Fauquier County",America/New_York,540,NA,US,38.53,-77.8,3160 +22735,STANDARD,0,Reva,,,VA,"Culpeper County",America/New_York,540,NA,US,38.49,-78.13,1980 +22736,STANDARD,0,Richardsville,,,VA,"Culpeper County",America/New_York,540,NA,US,38.4,-77.72,570 +22737,STANDARD,0,Rixeyville,,,VA,"Culpeper County",America/New_York,540,NA,US,38.58,-77.97,3130 +22738,STANDARD,0,Rochelle,Uno,,VA,"Madison County",America/New_York,540,NA,US,38.29,-78.27,950 +22739,"PO BOX",0,Somerville,,,VA,"Fauquier County",America/New_York,,NA,US,38.52,-77.6,63 +22740,STANDARD,0,Sperryville,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.67,-78.25,1090 +22741,STANDARD,0,Stevensburg,,,VA,"Culpeper County",America/New_York,540,NA,US,38.43,-77.87,200 +22742,STANDARD,0,Sumerduck,,,VA,"Fauquier County",America/New_York,,NA,US,38.46,-77.72,1610 +22743,STANDARD,0,Syria,,,VA,"Madison County",America/New_York,540,NA,US,38.48,-78.32,205 +22746,STANDARD,0,Viewtown,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.63,-78.03,269 +22747,STANDARD,0,Washington,,Wash,VA,"Rappahannock County",America/New_York,540,NA,US,38.71,-78.15,1010 +22748,"PO BOX",0,Wolftown,,,VA,"Madison County",America/New_York,540,NA,US,38.35,-78.34,164 +22749,STANDARD,0,Woodville,,,VA,"Rappahannock County",America/New_York,540,NA,US,38.6,-78.17,290 +22801,STANDARD,0,Harrisonburg,Rockingham,Harrisburg,VA,"Harrisonburg city",America/New_York,540,NA,US,38.43,-78.87,28150 +22802,STANDARD,0,Harrisonburg,Rockingham,,VA,"Harrisonburg city",America/New_York,540,NA,US,38.49,-78.86,23930 +22803,"PO BOX",0,Harrisonburg,,,VA,"Harrisonburg City",America/New_York,540,NA,US,38.51,-78.94,987 +22807,UNIQUE,0,Harrisonburg,,"Hburg, James Madison University",VA,"Harrisonburg city",America/New_York,540,NA,US,38.43,-78.87,49 +22810,STANDARD,0,Basye,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.83,-78.8,890 +22811,STANDARD,0,Bergton,,,VA,"Rockingham County",America/New_York,540,NA,US,38.79,-78.96,440 +22812,STANDARD,0,Bridgewater,,,VA,"Rockingham County",America/New_York,540,NA,US,38.38,-78.96,7530 +22815,STANDARD,0,Broadway,,,VA,"Rockingham County",America/New_York,540,NA,US,38.6,-78.79,8370 +22820,STANDARD,0,Criders,,,VA,"Rockingham County",America/New_York,540,NA,US,38.75,-79,180 +22821,STANDARD,0,Dayton,Montezuma,,VA,"Rockingham County",America/New_York,540,NA,US,38.47,-79.08,5390 +22824,STANDARD,0,Edinburg,,,VA,"Shenandoah County",America/New_York,540,NA,US,38.82,-78.56,5550 +22827,STANDARD,0,Elkton,,,VA,"Rockingham County",America/New_York,540,NA,US,38.41,-78.61,9570 +22830,STANDARD,0,"Fulks Run",,,VA,"Rockingham County",America/New_York,540,NA,US,38.63,-78.98,1500 +22831,STANDARD,0,Hinton,,"Rawley Springs, Rawley Sprngs",VA,"Rockingham County",America/New_York,540,NA,US,38.48,-79,730 +22832,STANDARD,0,Keezletown,,,VA,"Rockingham County",America/New_York,540,NA,US,38.45,-78.76,1020 +22833,"PO BOX",0,"Lacey Spring",,,VA,"Rockingham County",America/New_York,540,NA,US,38.54,-78.73,127 +22834,STANDARD,0,Linville,,,VA,"Rockingham County",America/New_York,540,NA,US,38.56,-78.86,1240 +22835,STANDARD,0,Luray,,"Shenandoah National Park, Shndoh Nat Pk",VA,"Page County",America/New_York,540,NA,US,38.66,-78.45,9860 +22840,STANDARD,0,"Mc Gaheysville","Massanutten, Mcgaheysville","Mc Gaheysvlle",VA,"Rockingham County",America/New_York,540,NA,US,38.36,-78.74,4310 +22841,STANDARD,0,"Mount Crawford","Mt Crawford",Crosskeys,VA,"Rockingham County",America/New_York,,NA,US,38.35,-78.94,2650 +22842,STANDARD,0,"Mount Jackson",,"South Jackson",VA,"Shenandoah County",America/New_York,540,NA,US,38.74,-78.63,4530 +22843,STANDARD,0,"Mount Solon",,,VA,"Augusta County",America/New_York,540,NA,US,38.36,-79.16,2170 +22844,STANDARD,0,"New Market",,Alpine,VA,"Shenandoah County",America/New_York,540,NA,US,38.64,-78.67,3920 +22845,STANDARD,0,"Orkney Springs","Orkney Spgs",,VA,"Shenandoah County",America/New_York,540,NA,US,38.79,-78.82,55 +22846,STANDARD,0,"Penn Laird",,,VA,"Rockingham County",America/New_York,540,NA,US,38.36,-78.79,2200 +22847,STANDARD,0,Quicksburg,"Shenandoah Caverns, Shendoah Cvrn",,VA,"Shenandoah County",America/New_York,540,NA,US,38.73,-78.72,900 +22848,"PO BOX",0,"Pleasant Valley","Pleasant Vly",,VA,"Rockingham County",America/New_York,540,NA,US,38.36,-78.87,30 +22849,STANDARD,0,Shenandoah,,,VA,"Page County",America/New_York,540,NA,US,38.48,-78.62,4240 +22850,STANDARD,0,"Singers Glen",,,VA,"Rockingham County",America/New_York,540,NA,US,38.56,-78.92,900 +22851,STANDARD,0,Stanley,,,VA,"Page County",America/New_York,540,NA,US,38.57,-78.5,5000 +22853,STANDARD,0,Timberville,,,VA,"Rockingham County",America/New_York,540,NA,US,38.63,-78.77,4040 +22901,STANDARD,0,Charlottesville,Charlottesvle,Chville,VA,"Albemarle County",America/New_York,434,NA,US,38.09,-78.56,32510 +22902,STANDARD,0,Charlottesville,"Charlottesvle, Monticello",,VA,"Charlottesville city",America/New_York,434,NA,US,38.03,-78.48,19530 +22903,STANDARD,0,Charlottesville,"Charlottesvle, University",,VA,"Charlottesville city",America/New_York,434,NA,US,38.01,-78.6,26010 +22904,STANDARD,0,Charlottesville,Charlottesvle,"Newcomb Hall",VA,"Albemarle County",America/New_York,434,NA,US,38.03,-78.52,179 +22905,"PO BOX",0,Charlottesville,Charlottesvle,,VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,487 +22906,"PO BOX",0,Charlottesville,Charlottesvle,,VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,994 +22907,UNIQUE,0,Charlottesville,Charlottesvle,"Charlottesvile Brm",VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,0 +22908,UNIQUE,0,Charlottesville,Charlottesvle,"Un Va Med Ctr, Univ Of Va Med Ctr",VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,19 +22909,UNIQUE,0,Charlottesville,Charlottesvle,"State Farm Insurance",VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,0 +22910,UNIQUE,0,Charlottesville,Charlottesvle,Embarq,VA,"Charlottesville City",America/New_York,434,NA,US,38.03,-78.48,0 +22911,STANDARD,0,Charlottesville,Charlottesvle,,VA,"Albemarle County",America/New_York,434,NA,US,38.1,-78.41,17710 +22920,STANDARD,0,Afton,,,VA,"Nelson County",America/New_York,,NA,US,38.03,-78.83,3630 +22922,STANDARD,0,Arrington,"Lowesville, Tye River",,VA,"Nelson County",America/New_York,434,NA,US,37.68,-78.9,1640 +22923,STANDARD,0,Barboursville,"Burnleys, Eheart",,VA,"Greene County",America/New_York,,NA,US,38.17,-78.28,5410 +22924,"PO BOX",0,Batesville,,,VA,"Albemarle County",America/New_York,,NA,US,38.01,-78.63,349 +22931,STANDARD,0,Covesville,,,VA,"Albemarle County",America/New_York,,NA,US,37.89,-78.7,350 +22932,STANDARD,0,Crozet,"Yancey Mills",,VA,"Albemarle County",America/New_York,434,NA,US,38.06,-78.69,9220 +22935,STANDARD,0,Dyke,"Boonesville, Nortonsville, St George",,VA,"Greene County",America/New_York,,NA,US,38.26,-78.57,940 +22936,STANDARD,0,Earlysville,,,VA,"Albemarle County",America/New_York,,NA,US,38.15,-78.48,5250 +22937,STANDARD,0,Esmont,,,VA,"Albemarle County",America/New_York,,NA,US,37.83,-78.6,1150 +22938,STANDARD,0,Faber,,,VA,"Nelson County",America/New_York,434,NA,US,37.85,-78.75,1130 +22939,STANDARD,0,Fishersville,,,VA,"Augusta County",America/New_York,540,NA,US,38.09,-78.96,5610 +22940,STANDARD,0,"Free Union","Mission Home",,VA,"Albemarle County",America/New_York,,NA,US,38.16,-78.56,1130 +22942,STANDARD,0,Gordonsville,"Zion Crossrds, Zion Crossroads","Boswells Tavern, Zion",VA,"Louisa County",America/New_York,540,NA,US,38.13,-78.18,8380 +22943,STANDARD,0,Greenwood,,,VA,"Albemarle County",America/New_York,540,NA,US,38.05,-78.77,540 +22945,"PO BOX",0,Ivy,,,VA,"Albemarle County",America/New_York,,NA,US,38.05,-78.59,444 +22946,STANDARD,0,Keene,,,VA,"Albemarle County",America/New_York,,NA,US,37.86,-78.57,260 +22947,STANDARD,0,Keswick,"Boyd Tavern, Campbell, Cismont, Cobham, Shadwell",,VA,"Albemarle County",America/New_York,,NA,US,38.02,-78.35,4780 +22948,STANDARD,0,"Locust Dale",,,VA,"Madison County",America/New_York,540,NA,US,38.36,-78.13,230 +22949,STANDARD,0,Lovingston,,,VA,"Nelson County",America/New_York,434,NA,US,37.77,-78.88,1230 +22952,STANDARD,0,Lyndhurst,Sherando,,VA,"Augusta County",America/New_York,540,NA,US,37.96,-78.96,1830 +22957,"PO BOX",0,"Montpelier Station","Mntpelier Sta",,VA,"Orange County",America/New_York,,NA,US,38.19,-78.11,117 +22958,STANDARD,0,Nellysford,,Wintergreen,VA,"Nelson County",America/New_York,434,NA,US,37.9,-78.9,1810 +22959,STANDARD,0,"North Garden",,"South Garden",VA,"Albemarle County",America/New_York,,NA,US,37.94,-78.63,1560 +22960,STANDARD,0,Orange,"Madison Mills, Montford, Nasons, Thornhill",,VA,"Orange County",America/New_York,540,NA,US,38.24,-78.11,9410 +22963,STANDARD,0,Palmyra,"Bybee, Cunningham, Wildwood, Wilmington","Lake Montcelo, Lake Monticello",VA,"Fluvanna County",America/New_York,434,NA,US,37.86,-78.26,15210 +22964,STANDARD,0,"Piney River",,,VA,"Nelson County",America/New_York,434,NA,US,37.71,-79.02,230 +22965,"PO BOX",0,Quinque,,,VA,"Greene County",America/New_York,434,NA,US,38.25,-78.38,268 +22967,STANDARD,0,Roseland,"Lowesville, Massies Mill, Wintergreen Resort, Wintergrn Rst","Massies Ml",VA,"Nelson County",America/New_York,,NA,US,37.8,-79.01,1930 +22968,STANDARD,0,Ruckersville,"Advance Mills",,VA,"Greene County",America/New_York,434,NA,US,38.23,-78.37,10100 +22969,STANDARD,0,Schuyler,,,VA,"Nelson County",America/New_York,434,NA,US,37.79,-78.69,1170 +22971,STANDARD,0,Shipman,Rockfish,,VA,"Nelson County",America/New_York,434,NA,US,37.72,-78.83,1440 +22972,STANDARD,0,Somerset,,"Old Somerset",VA,"Orange County",America/New_York,540,NA,US,38.22,-78.23,380 +22973,STANDARD,0,Stanardsville,,,VA,"Greene County",America/New_York,434,NA,US,38.3,-78.43,5560 +22974,STANDARD,0,Troy,,,VA,"Fluvanna County",America/New_York,,NA,US,37.94,-78.24,4200 +22976,STANDARD,0,Tyro,Roseland,,VA,"Nelson County",America/New_York,,NA,US,37.81,-79.06,240 +22980,STANDARD,0,Waynesboro,,Park,VA,"Waynesboro city",America/New_York,540,NA,US,38.06,-78.9,29230 +22987,"PO BOX",0,"White Hall",,,VA,"Albemarle County",America/New_York,,NA,US,38.11,-78.66,45 +22989,"PO BOX",0,"Woodberry Forest","Woodberry For","Wdberry Forst",VA,"Madison County",America/New_York,,NA,US,38.29,-78.13,195 +23001,"PO BOX",0,Achilles,,,VA,"Gloucester County",America/New_York,804,NA,US,37.28,-76.44,326 +23002,STANDARD,0,"Amelia Court House","Amelia Ct Hse","Amelia, Amelia Ch",VA,"Amelia County",America/New_York,804,NA,US,37.34,-77.96,9690 +23003,"PO BOX",0,Ark,,Akk,VA,"Gloucester County",America/New_York,804,NA,US,37.43,-76.57,810 +23004,STANDARD,0,Arvonia,,Akunia,VA,"Buckingham County",America/New_York,"804,434",NA,US,37.66,-78.41,720 +23005,STANDARD,0,Ashland,,Ashaiiu,VA,"Hanover County",America/New_York,804,NA,US,37.76,-77.47,15360 +23009,STANDARD,0,Aylett,,,VA,"King William County",America/New_York,804,NA,US,37.77,-77.12,6890 +23011,STANDARD,0,Barhamsville,,,VA,"New Kent County",America/New_York,804,NA,US,37.45,-76.84,970 +23014,STANDARD,0,Beaumont,,,VA,"Powhatan County",America/New_York,804,NA,US,37.76,-78.02,0 +23015,STANDARD,0,Beaverdam,,,VA,"Hanover County",America/New_York,804,NA,US,37.93,-77.63,4200 +23018,"PO BOX",0,Bena,,,VA,"Gloucester County",America/New_York,804,NA,US,37.27,-76.45,480 +23021,STANDARD,0,Bohannon,,,VA,"Mathews County",America/New_York,804,NA,US,37.39,-76.35,190 +23022,STANDARD,0,"Bremo Bluff",,,VA,"Fluvanna County",America/New_York,434,NA,US,37.71,-78.29,610 +23023,STANDARD,0,Bruington,,,VA,"King and Queen County",America/New_York,804,NA,US,37.77,-76.93,320 +23024,STANDARD,0,Bumpass,,,VA,"Louisa County",America/New_York,,NA,US,37.96,-77.73,7820 +23025,STANDARD,0,Cardinal,Miles,,VA,"Mathews County",America/New_York,804,NA,US,37.42,-76.37,250 +23027,STANDARD,0,Cartersville,Tamworth,,VA,"Cumberland County",America/New_York,804,NA,US,37.66,-78.1,1200 +23030,STANDARD,0,"Charles City",,,VA,"Charles City County",America/New_York,"804,757",NA,US,37.34,-77.07,4070 +23031,"PO BOX",0,Christchurch,,,VA,"Middlesex County",America/New_York,804,NA,US,37.57,-76.6,93 +23032,STANDARD,0,"Church View",,,VA,"Middlesex County",America/New_York,804,NA,US,37.67,-76.68,240 +23035,STANDARD,0,"Cobbs Creek",Blakes,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.39,1240 +23038,STANDARD,0,Columbia,,,VA,"Goochland County",America/New_York,804,NA,US,37.75,-78.16,1560 +23039,STANDARD,0,Crozier,,,VA,"Goochland County",America/New_York,,NA,US,37.63,-77.79,1040 +23040,STANDARD,0,Cumberland,,,VA,"Cumberland County",America/New_York,804,NA,US,37.49,-78.24,4040 +23043,STANDARD,0,Deltaville,,,VA,"Middlesex County",America/New_York,804,NA,US,37.55,-76.32,1440 +23045,STANDARD,0,Diggs,,,VA,"Mathews County",America/New_York,804,NA,US,37.43,-76.27,87 +23047,STANDARD,0,Doswell,,,VA,"Hanover County",America/New_York,804,NA,US,37.86,-77.46,2010 +23050,STANDARD,0,Dutton,,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.44,710 +23055,STANDARD,0,"Fork Union",,,VA,"Fluvanna County",America/New_York,434,NA,US,37.76,-78.26,940 +23056,STANDARD,0,Foster,Mobjack,,VA,"Mathews County",America/New_York,804,NA,US,37.45,-76.38,330 +23058,"PO BOX",0,"Glen Allen",,"Glenallen, Gln Alln",VA,"Henrico County",America/New_York,804,NA,US,37.66,-77.48,699 +23059,STANDARD,0,"Glen Allen",,"Glenallen, Gln Alln",VA,"Henrico County",America/New_York,804,NA,US,37.7,-77.57,37810 +23060,STANDARD,0,"Glen Allen",,"Glen Allenw, Glenallen, Gln Alln",VA,"Henrico County",America/New_York,804,NA,US,37.66,-77.48,36320 +23061,STANDARD,0,Gloucester,"Bellamy, Naxera, Pinero, Zanoni",,VA,"Gloucester County",America/New_York,804,NA,US,37.43,-76.54,18890 +23062,STANDARD,0,"Gloucester Point","Glou Point, Gloucester Pt","Glouster Point",VA,"Gloucester County",America/New_York,804,NA,US,37.26,-76.49,2420 +23063,STANDARD,0,Goochland,Fife,,VA,"Goochland County",America/New_York,804,NA,US,37.68,-77.88,4510 +23064,"PO BOX",0,Grimstead,,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.3,180 +23065,STANDARD,0,"Gum Spring",,Gumspring,VA,"Goochland County",America/New_York,,NA,US,37.77,-77.89,1470 +23066,"PO BOX",0,Gwynn,,Gwyme,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.28,361 +23067,"PO BOX",0,Hadensville,,,VA,"Goochland County",America/New_York,,NA,US,37.82,-77.99,135 +23068,STANDARD,0,Hallieford,,,VA,"Mathews County",America/New_York,804,NA,US,37.5,-76.33,230 +23069,STANDARD,0,Hanover,Mangohick,,VA,"Hanover County",America/New_York,804,NA,US,37.76,-77.37,2960 +23070,STANDARD,0,Hardyville,,,VA,"Middlesex County",America/New_York,804,NA,US,37.55,-76.38,370 +23071,STANDARD,0,Hartfield,,,VA,"Middlesex County",America/New_York,804,NA,US,37.55,-76.44,1450 +23072,STANDARD,0,Hayes,,Glass,VA,"Gloucester County",America/New_York,804,NA,US,37.29,-76.45,10210 +23075,STANDARD,0,Henrico,"Highland Spgs, Highland Springs",,VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.32,8850 +23076,STANDARD,0,Hudgins,Redart,,VA,"Mathews County",America/New_York,804,NA,US,37.47,-76.32,650 +23079,STANDARD,0,Jamaica,,,VA,"Middlesex County",America/New_York,804,NA,US,37.71,-76.69,260 +23081,"PO BOX",0,Jamestown,Williamsburg,,VA,"James City County",America/New_York,757,NA,US,37.22,-76.76,0 +23083,STANDARD,0,Jetersville,,,VA,"Amelia County",America/New_York,804,NA,US,37.29,-78.09,1830 +23084,STANDARD,0,"Kents Store",,,VA,"Fluvanna County",America/New_York,540,NA,US,37.87,-78.12,1700 +23085,STANDARD,0,"King And Queen Court House","King Queen Ch","King And Qn C H, Kingqueen Court House",VA,"King and Queen County",America/New_York,804,NA,US,37.72,-76.84,330 +23086,STANDARD,0,"King William",,,VA,"King William County",America/New_York,804,NA,US,37.68,-77.01,3020 +23089,STANDARD,0,Lanexa,,,VA,"New Kent County",America/New_York,804,NA,US,37.42,-76.9,4820 +23090,"PO BOX",0,Lightfoot,,,VA,"James City",America/New_York,757,NA,US,37.34,-76.75,501 +23091,STANDARD,0,"Little Plymouth","Little Plymth",,VA,"King and Queen County",America/New_York,804,NA,US,37.66,-76.8,260 +23092,STANDARD,0,"Locust Hill",,,VA,"Middlesex County",America/New_York,804,NA,US,37.59,-76.5,470 +23093,STANDARD,0,Louisa,,,VA,"Louisa County",America/New_York,540,NA,US,38.01,-77.99,12230 +23101,"PO BOX",1,Macon,,,VA,"Powhatan County",America/New_York,804,NA,US,37.52,-77.96,22 +23102,STANDARD,0,Maidens,Dabneys,,VA,"Goochland County",America/New_York,804,NA,US,37.71,-77.83,2810 +23103,STANDARD,0,"Manakin Sabot",,"Manakin, Sabot",VA,"Goochland County",America/New_York,804,NA,US,37.64,-77.7,5800 +23105,"PO BOX",0,Mannboro,,,VA,"Amelia County",America/New_York,804,NA,US,37.25,-77.82,0 +23106,STANDARD,0,Manquin,,,VA,"King William County",America/New_York,804,NA,US,37.7,-77.15,1130 +23107,"PO BOX",0,Maryus,,,VA,"Gloucester County",America/New_York,804,NA,US,37.27,-76.4,0 +23108,STANDARD,0,Mascot,,,VA,"King and Queen County",America/New_York,804,NA,US,37.62,-76.7,131 +23109,STANDARD,0,Mathews,Beaverlett,,VA,"Mathews County",America/New_York,804,NA,US,37.43,-76.32,1900 +23110,STANDARD,0,Mattaponi,,,VA,"King and Queen County",America/New_York,804,NA,US,37.53,-76.77,580 +23111,STANDARD,0,Mechanicsville,Mechanicsvlle,,VA,"Hanover County",America/New_York,804,NA,US,37.62,-77.35,35560 +23112,STANDARD,0,Midlothian,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.43,-77.66,51730 +23113,STANDARD,0,Midlothian,,"Sycamore Square",VA,"Chesterfield County",America/New_York,804,NA,US,37.54,-77.68,26240 +23114,STANDARD,0,Midlothian,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.48,-77.65,20060 +23115,"PO BOX",0,"Millers Tavern","Millers Tavrn",,VA,"Essex County",America/New_York,804,NA,US,37.81,-76.91,483 +23116,STANDARD,0,Mechanicsville,Mechanicsvlle,,VA,"Hanover County",America/New_York,804,NA,US,37.68,-77.34,31620 +23117,STANDARD,0,Mineral,,,VA,"Louisa County",America/New_York,540,NA,US,38,-77.9,8930 +23119,STANDARD,0,Moon,,,VA,"Mathews County",America/New_York,804,NA,US,37.45,-76.28,260 +23120,STANDARD,0,Moseley,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.41,-77.77,13840 +23123,STANDARD,0,"New Canton",,,VA,"Buckingham County",America/New_York,434,NA,US,37.7,-78.3,1430 +23124,STANDARD,0,"New Kent",,,VA,"New Kent County",America/New_York,804,NA,US,37.51,-76.97,4680 +23125,STANDARD,0,"New Point",,,VA,"Mathews County",America/New_York,804,NA,US,37.34,-76.28,117 +23126,STANDARD,0,Newtown,,,VA,"King and Queen County",America/New_York,804,NA,US,37.91,-77.12,430 +23127,"PO BOX",0,Norge,,,VA,"James City County",America/New_York,757,NA,US,37.36,-76.77,326 +23128,STANDARD,0,North,"James Store",,VA,"Mathews County",America/New_York,804,NA,US,37.44,-76.43,980 +23129,STANDARD,0,Oilville,,,VA,"Goochland County",America/New_York,,NA,US,37.7,-77.78,440 +23130,STANDARD,0,Onemo,,,VA,"Mathews County",America/New_York,804,NA,US,37.39,-76.27,136 +23131,"PO BOX",0,Ordinary,,,VA,"Gloucester County",America/New_York,804,NA,US,37.31,-76.51,235 +23138,STANDARD,0,"Port Haywood","Bavon, Peary",,VA,"Mathews County",America/New_York,804,NA,US,37.38,-76.31,830 +23139,STANDARD,0,Powhatan,Macon,"Powhatand, Powhatano",VA,"Powhatan County",America/New_York,804,NA,US,37.54,-77.92,25560 +23140,STANDARD,0,"Providence Forge","Provdence Frg",,VA,"New Kent County",America/New_York,804,NA,US,37.44,-77.04,5570 +23141,STANDARD,0,Quinton,,,VA,"New Kent County",America/New_York,804,NA,US,37.53,-77.11,8520 +23146,STANDARD,0,Rockville,,,VA,"Hanover County",America/New_York,804,NA,US,37.72,-77.67,3010 +23147,"PO BOX",0,Ruthville,,,VA,"Charles City",America/New_York,804,NA,US,37.36,-77.04,209 +23148,STANDARD,0,"Saint Stephens Church","Cauthornville, Indian Neck, St Stephens Church, St Stephns Ch",,VA,"King and Queen County",America/New_York,804,NA,US,37.8,-77.05,1390 +23149,STANDARD,0,Saluda,,Glenns,VA,"Middlesex County",America/New_York,804,NA,US,37.6,-76.59,2340 +23150,STANDARD,0,Sandston,,,VA,"Henrico County",America/New_York,804,NA,US,37.51,-77.27,11310 +23153,STANDARD,0,"Sandy Hook",,,VA,"Goochland County",America/New_York,804,NA,US,37.75,-77.91,1520 +23154,"PO BOX",0,Schley,,,VA,"Gloucester County",America/New_York,804,NA,US,37.39,-76.44,44 +23155,"PO BOX",0,Severn,,,VA,"Gloucester County",America/New_York,804,NA,US,37.29,-76.41,0 +23156,STANDARD,0,Shacklefords,"Plain View",Plainview,VA,"King and Queen County",America/New_York,804,NA,US,37.54,-76.73,1420 +23160,STANDARD,0,"State Farm",,,VA,"Powhatan County",America/New_York,804,NA,US,37.63,-77.85,19 +23161,STANDARD,0,Stevensville,,,VA,"King and Queen County",America/New_York,804,NA,US,37.72,-76.92,126 +23162,"PO BOX",0,Studley,,,VA,"Hanover County",America/New_York,804,NA,US,37.67,-77.29,215 +23163,STANDARD,0,Susan,Shadow,,VA,"Mathews County",America/New_York,804,NA,US,37.36,-76.31,200 +23168,STANDARD,0,Toano,,,VA,"James City County",America/New_York,757,NA,US,37.37,-76.8,8230 +23169,STANDARD,0,Topping,Syringa,,VA,"Middlesex County",America/New_York,804,NA,US,37.59,-76.46,940 +23170,"PO BOX",0,Trevilians,,,VA,"Louisa County",America/New_York,,NA,US,38.05,-78.07,42 +23173,UNIQUE,0,Richmond,,"Univ Of Rich, University Of Rich, University Of Richmond",VA,"Richmond city",America/New_York,804,NA,US,37.58,-77.54,108 +23175,STANDARD,0,Urbanna,Warner,,VA,"Middlesex County",America/New_York,804,NA,US,37.65,-76.63,1660 +23176,STANDARD,0,Wake,,,VA,"Middlesex County",America/New_York,804,NA,US,37.56,-76.42,570 +23177,STANDARD,0,Walkerton,,,VA,"King and Queen County",America/New_York,804,NA,US,37.72,-77.02,590 +23178,"PO BOX",0,"Ware Neck",,,VA,"Gloucester County",America/New_York,804,NA,US,37.4,-76.45,168 +23180,STANDARD,0,"Water View",,,VA,"Middlesex County",America/New_York,804,NA,US,37.72,-76.61,350 +23181,STANDARD,0,"West Point",Cologne,Eltham,VA,"King William County",America/New_York,804,NA,US,37.55,-76.8,5230 +23183,"PO BOX",0,"White Marsh",,,VA,"Gloucester County",America/New_York,804,NA,US,37.34,-76.52,823 +23184,"PO BOX",0,Wicomico,,,VA,"Gloucester County",America/New_York,804,NA,US,37.29,-76.51,840 +23185,STANDARD,0,Williamsburg,,"Wlmg, Wmsbg",VA,"James City County",America/New_York,757,NA,US,37.27,-76.7,40960 +23186,UNIQUE,0,Williamsburg,,"College Of William & Mary, Wlmg",VA,"Williamsburg City",America/New_York,757,NA,US,37.27,-76.7,48 +23187,"PO BOX",0,Williamsburg,,Wlmg,VA,"Williamsburg city",America/New_York,757,NA,US,37.27,-76.72,1002 +23188,STANDARD,0,Williamsburg,,Wlmg,VA,"James City County",America/New_York,757,NA,US,37.35,-76.77,42290 +23190,"PO BOX",0,"Woods Cross Roads","Woods Crs Rds","Woods Cr Rds, Woods Cross Rds",VA,"Gloucester County",America/New_York,804,NA,US,37.43,-76.54,26 +23192,STANDARD,0,Montpelier,,,VA,"Hanover County",America/New_York,804,NA,US,37.81,-77.67,6460 +23218,"PO BOX",0,Richmond,,Capitol,VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,413 +23219,STANDARD,0,Richmond,,Capitol,VA,"Richmond city",America/New_York,804,NA,US,37.54,-77.44,2860 +23220,STANDARD,0,Richmond,,Saunders,VA,"Richmond city",America/New_York,804,NA,US,37.55,-77.46,18960 +23221,STANDARD,0,Richmond,,Stewart,VA,"Richmond city",America/New_York,804,NA,US,37.55,-77.49,12420 +23222,STANDARD,0,Richmond,,,VA,"Richmond city",America/New_York,804,NA,US,37.58,-77.42,20290 +23223,STANDARD,0,Richmond,,,VA,"Henrico County",America/New_York,804,NA,US,37.56,-77.38,40820 +23224,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield",,VA,"Richmond city",America/New_York,804,NA,US,37.5,-77.47,29150 +23225,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield","Forest Hill",VA,"Richmond city",America/New_York,804,NA,US,37.52,-77.51,32710 +23226,STANDARD,0,Richmond,,,VA,"Richmond city",America/New_York,804,NA,US,37.58,-77.52,15410 +23227,STANDARD,0,Richmond,,,VA,"Henrico County",America/New_York,804,NA,US,37.61,-77.44,20850 +23228,STANDARD,0,Henrico,Richmond,"Staples Mill",VA,"Henrico County",America/New_York,804,NA,US,37.63,-77.49,30520 +23229,STANDARD,0,Henrico,"Regency, Richmond","Tuckahoe, Westbury",VA,"Henrico County",America/New_York,804,NA,US,37.59,-77.57,32120 +23230,STANDARD,0,Richmond,,,VA,"Henrico County",America/New_York,804,NA,US,37.59,-77.49,6390 +23231,STANDARD,0,Henrico,Richmond,"Millers, Montrose, Montrose Heights, Varina",VA,"Henrico County",America/New_York,804,NA,US,37.44,-77.32,32750 +23232,STANDARD,0,Richmond,,,VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,21 +23233,STANDARD,0,Henrico,"Richmond, Ridge",,VA,"Henrico County",America/New_York,804,NA,US,37.65,-77.62,30810 +23234,STANDARD,0,Richmond,"Ampthill, N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.45,-77.47,38340 +23235,STANDARD,0,Richmond,"Bon Air, N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.51,-77.56,30750 +23236,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.48,-77.59,26310 +23237,STANDARD,0,Richmond,"N Chesterfld, North Chesterfield",,VA,"Chesterfield County",America/New_York,804,NA,US,37.4,-77.45,21770 +23238,STANDARD,0,Henrico,Richmond,,VA,"Henrico County",America/New_York,804,NA,US,37.6,-77.65,23660 +23240,STANDARD,1,Richmond,,,VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23241,"PO BOX",0,Richmond,,"Central Sta, Rich, Richmnd",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,114 +23242,"PO BOX",0,Henrico,Richmond,"Rich, Richmnd",VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,244 +23249,UNIQUE,0,Richmond,,"Mcguire Veterans Hospital",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23250,STANDARD,0,Richmond,"Henrico, Rich Int Ap, Richmond Int Airport","Air Mail Facility, Rich, Richmnd",VA,"Henrico County",America/New_York,804,NA,US,37.5,-77.32,66 +23255,"PO BOX",0,Henrico,Richmond,,VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,414 +23260,"PO BOX",0,Richmond,,"Main Office",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,369 +23261,"PO BOX",0,Richmond,,"Main Office",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,713 +23269,UNIQUE,0,Richmond,,"Div Motor Veh, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23273,UNIQUE,0,Henrico,Richmond,"County Of Henrico",VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,19 +23274,UNIQUE,0,Richmond,,"Dept Public Utilities",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23276,UNIQUE,0,Richmond,,"Capital One",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23278,UNIQUE,0,Richmond,,"Wachovia Bank",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23279,UNIQUE,0,Richmond,,"Anthem/Blue Cross Blue Shiel, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23282,UNIQUE,0,Richmond,,"Va Dept Tax",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23284,"PO BOX",0,Richmond,,"Vcu West",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23285,"PO BOX",0,Richmond,,"Rich, Richmnd",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,66 +23286,UNIQUE,0,Richmond,,"Rich, Richmond Brm",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23288,UNIQUE,0,Henrico,Richmond,"Koger Executive Ctr, Rich",VA,"Henrico County",America/New_York,804,NA,US,37.55,-77.46,31 +23289,UNIQUE,0,Richmond,,"Internal Revenue Service, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23290,UNIQUE,0,Richmond,,"Dominion Virginia Power",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23291,UNIQUE,0,Richmond,,"Suntrust Bank",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23292,UNIQUE,0,Richmond,,"Bank Of America, Nationsbank Mortgage",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23293,UNIQUE,0,Richmond,,"Richmond Newspapers",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23294,STANDARD,0,Henrico,Richmond,,VA,"Henrico County",America/New_York,804,NA,US,37.63,-77.54,15610 +23295,UNIQUE,0,Richmond,,"Capital One",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.45,0 +23297,UNIQUE,0,Richmond,,"Defense General Supply Ct, Rich",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,0 +23298,STANDARD,0,Richmond,,"Vcu Mcv East",VA,"Richmond City",America/New_York,804,NA,US,37.55,-77.46,31 +23301,STANDARD,0,Accomac,,,VA,"Accomack County",America/New_York,757,NA,US,37.71,-75.66,1520 +23302,STANDARD,0,Assawoman,,,VA,"Accomack County",America/New_York,757,NA,US,37.87,-75.52,153 +23303,STANDARD,0,Atlantic,,,VA,"Accomack County",America/New_York,757,NA,US,37.9,-75.5,750 +23304,"PO BOX",0,"Battery Park",,,VA,"Isle of Wight County",America/New_York,757,NA,US,37,-76.57,196 +23306,STANDARD,0,"Belle Haven",,,VA,"Accomack County",America/New_York,757,NA,US,37.56,-75.87,970 +23307,STANDARD,0,Birdsnest,,,VA,"Northampton County",America/New_York,757,NA,US,37.43,-75.88,440 +23308,STANDARD,0,Bloxom,,,VA,"Accomack County",America/New_York,757,NA,US,37.83,-75.62,1370 +23310,STANDARD,0,"Cape Charles",,,VA,"Northampton County",America/New_York,757,NA,US,37.27,-76.01,2920 +23313,"PO BOX",0,Capeville,,,VA,"Northampton County",America/New_York,757,NA,US,37.2,-75.95,196 +23314,STANDARD,0,Carrollton,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.94,-76.56,8800 +23315,STANDARD,0,Carrsville,Walters,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.71,-76.82,1320 +23316,"PO BOX",0,Cheriton,,,VA,"Northampton County",America/New_York,757,NA,US,37.28,-75.96,1567 +23320,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.75,-76.22,53330 +23321,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.8,-76.42,35100 +23322,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.62,-76.23,61850 +23323,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.67,-76.3,39150 +23324,STANDARD,0,Chesapeake,"South Norfolk",,VA,"Chesapeake city",America/New_York,757,NA,US,36.8,-76.27,20290 +23325,STANDARD,0,Chesapeake,,,VA,"Chesapeake city",America/New_York,757,NA,US,36.81,-76.24,15540 +23326,UNIQUE,0,Chesapeake,,"Coast Guard Finance Center",VA,"Chesapeake City",America/New_York,757,NA,US,36.67,-76.3,0 +23327,"PO BOX",0,Chesapeake,,,VA,"Chesapeake City",America/New_York,757,NA,US,36.67,-76.3,577 +23328,"PO BOX",0,Chesapeake,,,VA,"Chesapeake City",America/New_York,757,NA,US,36.67,-76.3,478 +23336,STANDARD,0,"Chincoteague Island",Chincoteague,,VA,"Accomack County",America/New_York,757,NA,US,37.95,-75.33,2840 +23337,STANDARD,0,"Wallops Island","Chincoteague, Chincoteague Island, Wallops Is",,VA,"Accomack County",America/New_York,757,NA,US,37.93,-75.49,360 +23341,"PO BOX",0,Craddockville,,,VA,"Accomack County",America/New_York,757,NA,US,37.6,-75.86,218 +23345,STANDARD,0,"Davis Wharf",,,VA,"Accomack County",America/New_York,757,NA,US,37.56,-75.88,0 +23347,"PO BOX",0,Eastville,,,VA,"Northampton County",America/New_York,757,NA,US,37.35,-75.94,1224 +23350,STANDARD,0,Exmore,,,VA,"Northampton County",America/New_York,757,NA,US,37.53,-75.82,2720 +23354,STANDARD,0,Franktown,,Bayford,VA,"Northampton County",America/New_York,757,NA,US,37.46,-75.91,410 +23356,STANDARD,0,Greenbackville,Greenbackvile,,VA,"Accomack County",America/New_York,757,NA,US,38,-75.41,1320 +23357,STANDARD,0,Greenbush,,,VA,"Accomack County",America/New_York,757,NA,US,37.76,-75.67,620 +23358,STANDARD,0,Hacksneck,"Hacks Neck",,VA,"Accomack County",America/New_York,757,NA,US,37.66,-75.86,41 +23359,STANDARD,0,Hallwood,,,VA,"Accomack County",America/New_York,757,NA,US,37.87,-75.58,450 +23389,"PO BOX",0,Harborton,,,VA,"Accomack County",America/New_York,757,NA,US,37.66,-75.84,124 +23395,STANDARD,0,Horntown,,,VA,"Accomack County",America/New_York,757,NA,US,37.97,-75.46,590 +23396,STANDARD,0,"Oak Hall",,,VA,"Accomack County",America/New_York,757,NA,US,37.93,-75.54,0 +23397,"PO BOX",0,"Isle Of Wight",,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.9,-76.7,0 +23398,"PO BOX",0,Jamesville,,,VA,"Northampton County",America/New_York,757,NA,US,37.52,-75.94,281 +23399,STANDARD,0,"Jenkins Bridge","Jenkins Brg",,VA,"Accomack County",America/New_York,757,NA,US,37.91,-75.63,0 +23401,"PO BOX",0,Keller,,,VA,"Accomack County",America/New_York,757,NA,US,37.62,-75.76,372 +23404,STANDARD,0,Locustville,,,VA,"Accomack County",America/New_York,757,NA,US,37.65,-75.67,116 +23405,STANDARD,0,Machipongo,,,VA,"Northampton County",America/New_York,757,NA,US,37.4,-75.9,790 +23407,"PO BOX",0,Mappsville,,,VA,"Accomack County",America/New_York,757,NA,US,37.84,-75.58,551 +23408,"PO BOX",0,Marionville,,,VA,"Northampton County",America/New_York,757,NA,US,37.45,-75.84,115 +23409,STANDARD,0,Mears,,,VA,"Accomack County",America/New_York,757,NA,US,37.89,-75.66,67 +23410,STANDARD,0,Melfa,,,VA,"Accomack County",America/New_York,757,NA,US,37.64,-75.74,1730 +23412,"PO BOX",0,"Modest Town",,,VA,"Accomack County",America/New_York,757,NA,US,37.81,-75.57,68 +23413,"PO BOX",0,Nassawadox,Weirwood,,VA,"Northampton County",America/New_York,757,NA,US,37.47,-75.86,1040 +23414,"PO BOX",0,Nelsonia,,,VA,"Accomack County",America/New_York,757,NA,US,37.81,-75.58,407 +23415,STANDARD,0,"New Church",,,VA,"Accomack County",America/New_York,757,NA,US,37.97,-75.53,1390 +23416,STANDARD,0,"Oak Hall",,,VA,"Accomack County",America/New_York,757,NA,US,37.93,-75.54,410 +23417,STANDARD,0,Onancock,,,VA,"Accomack County",America/New_York,757,NA,US,37.7,-75.74,2940 +23418,STANDARD,0,Onley,,,VA,"Accomack County",America/New_York,757,NA,US,37.69,-75.71,1390 +23419,"PO BOX",0,Oyster,,,VA,"Northampton County",America/New_York,757,NA,US,37.28,-75.92,0 +23420,STANDARD,0,Painter,,,VA,"Accomack County",America/New_York,757,NA,US,37.58,-75.78,1720 +23421,STANDARD,0,Parksley,"Lee Mont",,VA,"Accomack County",America/New_York,757,NA,US,37.78,-75.65,3330 +23422,"PO BOX",0,Pungoteague,,,VA,"Accomack County",America/New_York,757,NA,US,37.62,-75.81,522 +23423,"PO BOX",0,Quinby,,,VA,"Accomack County",America/New_York,757,NA,US,37.55,-75.73,269 +23424,"PO BOX",0,Rescue,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.99,-76.55,222 +23426,STANDARD,0,Sanford,,,VA,"Accomack County",America/New_York,757,NA,US,37.92,-75.66,166 +23427,"PO BOX",0,Saxis,,,VA,"Accomack County",America/New_York,757,NA,US,37.92,-75.72,237 +23429,"PO BOX",0,Seaview,,,VA,"Northampton County",America/New_York,757,NA,US,37.27,-75.95,0 +23430,STANDARD,0,Smithfield,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.98,-76.61,16820 +23431,"PO BOX",0,Smithfield,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.98,-76.61,465 +23432,STANDARD,0,Suffolk,,Chuckatuck,VA,"Suffolk city",America/New_York,757,NA,US,36.88,-76.55,1470 +23433,STANDARD,0,Suffolk,,Crittenden,VA,"Suffolk city",America/New_York,757,NA,US,36.92,-76.46,1250 +23434,STANDARD,0,Suffolk,,,VA,"Suffolk city",America/New_York,757,NA,US,36.7,-76.63,44100 +23435,STANDARD,0,Suffolk,,Driver,VA,"Suffolk city",America/New_York,757,NA,US,36.84,-76.48,29490 +23436,STANDARD,0,Suffolk,,,VA,"Suffolk city",America/New_York,757,NA,US,36.89,-76.51,910 +23437,STANDARD,0,Suffolk,,Holland,VA,"Suffolk city",America/New_York,757,NA,US,36.63,-76.8,3940 +23438,STANDARD,0,Suffolk,,Whaleyville,VA,"Suffolk city",America/New_York,757,NA,US,36.58,-76.7,1690 +23439,"PO BOX",0,Suffolk,,,VA,"Suffolk City",America/New_York,757,NA,US,36.7,-76.63,1016 +23440,"PO BOX",0,Tangier,,,VA,"Accomack County",America/New_York,757,NA,US,37.82,-75.99,512 +23441,"PO BOX",0,Tasley,,,VA,"Accomack County",America/New_York,757,NA,US,37.71,-75.7,555 +23442,STANDARD,0,Temperanceville,Temperancevle,,VA,"Accomack County",America/New_York,757,NA,US,37.89,-75.54,860 +23443,"PO BOX",0,Townsend,,,VA,"Northampton County",America/New_York,757,NA,US,37.18,-75.95,194 +23450,"PO BOX",0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,851 +23451,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.87,-76.01,37610 +23452,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.85,-76.09,52720 +23453,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.78,-76.08,32740 +23454,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.82,-76.03,53080 +23455,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.89,-76.15,43600 +23456,STANDARD,0,"Virginia Beach","Princess Anne, Va Bch, Va Beach, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.73,-76.04,56380 +23457,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.61,-76.02,4270 +23458,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,155 +23459,STANDARD,0,"Virginia Beach","Fort Story, Virginia Bch","Little Creek Naval Amphibiou, Nav Amph Base, Naval Amphib Base, Naval Amphibious Base",VA,"Virginia Beach city",America/New_York,757,NA,US,36.92,-76.02,589 +23460,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.81,-76.03,865 +23461,STANDARD,0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.78,-75.96,282 +23462,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.84,-76.15,57250 +23463,UNIQUE,0,"Virginia Beach","Virginia Bch","Chrstn Brdcst Network",VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,57 +23464,STANDARD,0,"Virginia Beach","Va Bch, Va Beach, Vab, Virginia Bch",,VA,"Virginia Beach city",America/New_York,757,NA,US,36.8,-76.19,68640 +23465,UNIQUE,0,"Virginia Beach","Virginia Bch","Chrstn Brdcst Network, Chrstn Brdcst Ntwrk Brm",VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,74 +23466,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,604 +23467,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,508 +23471,"PO BOX",0,"Virginia Beach","Virginia Bch",,VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,824 +23479,UNIQUE,0,"Virginia Beach","Virginia Bch","Lillian Vernon",VA,"Virginia Beach City",America/New_York,757,NA,US,36.73,-76.04,0 +23480,"PO BOX",0,Wachapreague,,,VA,"Accomack County",America/New_York,757,NA,US,37.62,-75.69,372 +23482,"PO BOX",0,Wardtown,,,VA,"Northampton County",America/New_York,757,NA,US,37.5,-75.87,0 +23483,"PO BOX",0,Wattsville,,,VA,"Accomack County",America/New_York,757,NA,US,37.9,-75.5,80 +23486,"PO BOX",0,"Willis Wharf",,,VA,"Northampton County",America/New_York,757,NA,US,37.51,-75.81,227 +23487,STANDARD,0,Windsor,,,VA,"Isle of Wight County",America/New_York,757,NA,US,36.8,-76.73,5740 +23488,STANDARD,0,Withams,,,VA,"Accomack County",America/New_York,757,NA,US,37.95,-75.6,190 +23501,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,893 +23502,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.86,-76.2,17230 +23503,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.95,-76.27,25050 +23504,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.86,-76.27,16000 +23505,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.91,-76.29,22260 +23506,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,0 +23507,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.86,-76.3,4830 +23508,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.88,-76.31,11620 +23509,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.88,-76.26,11170 +23510,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.85,-76.29,5920 +23511,STANDARD,0,Norfolk,"Fleet, Naval Base","Joint Forces Staff College, Naval Communications Area Ma, Norfolk Naval Air Station, Norfolk Naval Public Works C, Norfolk Naval Station",VA,"Norfolk city",America/New_York,757,NA,US,36.91,-76.33,1830 +23512,UNIQUE,1,Norfolk,,"Naval Defense Distrib Ctr",VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,33 +23513,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.89,-76.24,25020 +23514,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,242 +23515,UNIQUE,0,Norfolk,,"Fleet Marine Force Atlantic",VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,59 +23517,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.87,-76.29,4000 +23518,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.92,-76.22,26300 +23519,STANDARD,0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,0 +23520,STANDARD,1,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,0 +23521,STANDARD,1,Norfolk,,,VA,"Virginia Beach City",America/New_York,757,NA,US,36.84,-76.28,1005 +23523,STANDARD,0,Norfolk,,,VA,"Norfolk city",America/New_York,757,NA,US,36.84,-76.28,5970 +23529,UNIQUE,0,Norfolk,,"Old Dominion University",VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,14 +23541,"PO BOX",0,Norfolk,,,VA,"Norfolk City",America/New_York,757,NA,US,36.84,-76.28,408 +23551,UNIQUE,0,Norfolk,,Cinclantflt,VA,"Norfolk city",America/New_York,757,NA,US,36.92,-76.29,151 +23601,STANDARD,0,"Newport News",,"N N",VA,"Newport News city",America/New_York,757,NA,US,37.04,-76.48,22350 +23602,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,37.11,-76.52,36660 +23603,STANDARD,0,"Newport News",,"Lee Hall",VA,"Newport News city",America/New_York,757,NA,US,37.19,-76.56,3200 +23604,STANDARD,0,"Fort Eustis","Newport News",,VA,"Newport News city",America/New_York,757,NA,US,37.12,-76.59,3550 +23605,STANDARD,0,"Newport News",Hampton,,VA,"Newport News city",America/New_York,757,NA,US,37.02,-76.44,11200 +23606,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,37.07,-76.51,23570 +23607,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,36.97,-76.42,16210 +23608,STANDARD,0,"Newport News",,,VA,"Newport News city",America/New_York,757,NA,US,37.15,-76.54,38960 +23609,"PO BOX",0,"Newport News",,,VA,"Newport News City",America/New_York,757,NA,US,37.07,-76.51,526 +23612,"PO BOX",0,"Newport News",,,VA,"Newport News City",America/New_York,757,NA,US,37.07,-76.51,163 +23628,UNIQUE,0,"Newport News",,"Us Army Trng Support Ctr",VA,"Newport News City",America/New_York,757,NA,US,37.07,-76.51,0 +23630,UNIQUE,0,Hampton,,"Family Fashions By Avon",VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,0 +23651,STANDARD,0,"Fort Monroe",Hampton,,VA,"Hampton city",America/New_York,757,NA,US,37.01,-76.3,440 +23661,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.01,-76.39,11350 +23662,STANDARD,0,Poquoson,Hampton,,VA,"Poquoson city",America/New_York,757,NA,US,37.12,-76.34,11900 +23663,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.03,-76.31,10970 +23664,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.04,-76.29,9040 +23665,STANDARD,0,Hampton,"Langley AFB","Langley, Langley Air Force Base",VA,"York County",America/New_York,757,NA,US,37.08,-76.37,5410 +23666,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.06,-76.41,45360 +23667,UNIQUE,0,Hampton,,"Kecoughtan Veterans Hospital",VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,48 +23668,UNIQUE,0,Hampton,,"Hampton University",VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,55 +23669,STANDARD,0,Hampton,,,VA,"Hampton city",America/New_York,757,NA,US,37.05,-76.34,32880 +23670,"PO BOX",0,Hampton,,,VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,338 +23681,UNIQUE,0,Hampton,,Nasa,VA,"Hampton City",America/New_York,757,NA,US,37.04,-76.29,0 +23690,STANDARD,0,Yorktown,,,VA,"York County",America/New_York,757,NA,US,37.23,-76.5,3230 +23691,STANDARD,0,Yorktown,"Nav Wpns Sta, Naval Weapons Station","Naval Weapons Sta, Yorktown Naval Weapons Stati",VA,"York County",America/New_York,757,NA,US,37.26,-76.55,200 +23692,STANDARD,0,Yorktown,Grafton,,VA,"York County",America/New_York,757,NA,US,37.19,-76.46,18680 +23693,STANDARD,0,Yorktown,Tabb,,VA,"York County",America/New_York,757,NA,US,37.12,-76.45,23140 +23694,"PO BOX",0,Lackey,,,VA,"York County",America/New_York,757,NA,US,37.23,-76.54,183 +23696,STANDARD,0,Seaford,,,VA,"York County",America/New_York,757,NA,US,37.19,-76.43,3690 +23701,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.81,-76.37,20390 +23702,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.8,-76.33,9440 +23703,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.89,-76.37,23760 +23704,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.82,-76.31,13930 +23705,"PO BOX",0,Portsmouth,,,VA,"Portsmouth City",America/New_York,757,NA,US,36.83,-76.29,327 +23707,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.84,-76.34,11870 +23708,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.85,-76.31,278 +23709,STANDARD,0,Portsmouth,,,VA,"Portsmouth city",America/New_York,757,NA,US,36.81,-76.31,57 +23801,STANDARD,0,"Fort Lee",Petersburg,,VA,"Prince George County",America/New_York,804,NA,US,37.23,-77.33,5380 +23803,STANDARD,0,Petersburg,"N Dinwiddie, North Dinwiddie, S Chesterfld, South Chesterfield",Matoaca,VA,"Petersburg city",America/New_York,804,NA,US,37.21,-77.5,31780 +23804,"PO BOX",0,Petersburg,,,VA,"Petersburg City",America/New_York,804,NA,US,37.2,-77.39,594 +23805,STANDARD,0,Petersburg,"N Dinwiddie, North Dinwiddie, S Prince Geo, South Prince George","Walnut Hill",VA,"Petersburg city",America/New_York,804,NA,US,37.2,-77.39,16580 +23806,UNIQUE,0,"Virginia State University","Petersburg, Va State Univ","Virginia State Univ",VA,"Chesterfield County",America/New_York,804,NA,US,37.24,-77.42,60 +23821,STANDARD,0,Alberta,,,VA,"Brunswick County",America/New_York,434,NA,US,36.86,-77.88,1290 +23822,"PO BOX",0,Ammon,,,VA,"Amelia County",America/New_York,804,NA,US,37.21,-77.76,0 +23824,STANDARD,0,Blackstone,,,VA,"Nottoway County",America/New_York,434,NA,US,37.07,-78,5740 +23825,"PO BOX",1,Blackstone,,,VA,"Nottoway County",America/New_York,434,NA,US,37.08,-77.99,0 +23827,STANDARD,0,Boykins,,,VA,"Southampton County",America/New_York,757,NA,US,36.57,-77.19,1080 +23828,STANDARD,0,Branchville,,,VA,"Southampton County",America/New_York,,NA,US,36.56,-77.24,350 +23829,STANDARD,0,Capron,,,VA,"Southampton County",America/New_York,434,NA,US,36.71,-77.2,1050 +23830,STANDARD,0,Carson,,,VA,"Prince George County",America/New_York,,NA,US,37.03,-77.4,1550 +23831,STANDARD,0,Chester,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.35,-77.43,33900 +23832,STANDARD,0,Chesterfield,,"Beach, Chesterfld",VA,"Chesterfield County",America/New_York,804,NA,US,37.39,-77.59,36310 +23833,STANDARD,0,"Church Road",,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.15,-77.63,1950 +23834,STANDARD,0,"Colonial Heights","Colonial Hgts, S Chesterfld, South Chesterfield",,VA,"Colonial Heights city",America/New_York,,NA,US,37.26,-77.39,23390 +23836,STANDARD,0,Chester,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.35,-77.35,13280 +23837,STANDARD,0,Courtland,,,VA,"Southampton County",America/New_York,757,NA,US,36.71,-77.06,3520 +23838,STANDARD,0,Chesterfield,,,VA,"Chesterfield County",America/New_York,804,NA,US,37.32,-77.63,16590 +23839,STANDARD,0,Dendron,,,VA,"Surry County",America/New_York,757,NA,US,37.08,-76.92,780 +23840,STANDARD,0,Dewitt,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.03,-77.64,1520 +23841,STANDARD,0,Dinwiddie,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.07,-77.58,3220 +23842,STANDARD,0,Disputanta,,,VA,"Prince George County",America/New_York,804,NA,US,37.12,-77.22,6520 +23843,STANDARD,0,Dolphin,,,VA,"Brunswick County",America/New_York,434,NA,US,36.83,-77.79,470 +23844,STANDARD,0,Drewryville,,,VA,"Southampton County",America/New_York,,NA,US,36.71,-77.3,500 +23845,STANDARD,0,Ebony,,,VA,"Brunswick County",America/New_York,434,NA,US,36.57,-77.99,360 +23846,STANDARD,0,Elberon,,,VA,"Surry County",America/New_York,757,NA,US,37.07,-76.88,750 +23847,STANDARD,0,Emporia,,,VA,"Greensville County",America/New_York,434,NA,US,36.69,-77.53,10020 +23850,STANDARD,0,Ford,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.14,-77.73,850 +23851,STANDARD,0,Franklin,,,VA,"Franklin city",America/New_York,757,NA,US,36.68,-76.93,11270 +23856,STANDARD,0,Freeman,,,VA,"Brunswick County",America/New_York,434,NA,US,36.8,-77.7,850 +23857,STANDARD,0,Gasburg,,,VA,"Brunswick County",America/New_York,434,NA,US,36.56,-77.89,480 +23860,STANDARD,0,Hopewell,"N Prince Geo, North Prince George",,VA,"Hopewell city",America/New_York,804,NA,US,37.29,-77.29,23980 +23866,STANDARD,0,Ivor,,,VA,"Southampton County",America/New_York,757,NA,US,36.9,-76.89,1940 +23867,STANDARD,0,Jarratt,,,VA,"Greensville County",America/New_York,434,NA,US,36.81,-77.47,1920 +23868,STANDARD,0,Lawrenceville,Triplet,,VA,"Brunswick County",America/New_York,434,NA,US,36.75,-77.85,3750 +23870,UNIQUE,0,Jarratt,,"Greenville Correctional Ctr",VA,"Sussex County",America/New_York,434,NA,US,36.81,-77.47,17 +23872,STANDARD,0,"Mc Kenney",,Mckenney,VA,"Dinwiddie County",America/New_York,804,NA,US,36.99,-77.74,2000 +23873,"PO BOX",0,Meredithville,,,VA,"Brunswick County",America/New_York,434,NA,US,36.79,-77.95,0 +23874,STANDARD,0,Newsoms,,Neusons,VA,"Southampton County",America/New_York,,NA,US,36.62,-77.12,870 +23875,STANDARD,0,"Prince George",,,VA,"Prince George County",America/New_York,804,NA,US,37.22,-77.28,10860 +23876,STANDARD,0,Rawlings,,,VA,"Brunswick County",America/New_York,434,NA,US,36.94,-77.77,370 +23878,STANDARD,0,Sedley,,,VA,"Southampton County",America/New_York,,NA,US,36.77,-76.98,1110 +23879,STANDARD,0,Skippers,,,VA,"Greensville County",America/New_York,434,NA,US,36.59,-77.6,550 +23881,STANDARD,0,"Spring Grove",,,VA,"Surry County",America/New_York,757,NA,US,37.16,-76.97,1420 +23882,STANDARD,0,"Stony Creek",,,VA,"Sussex County",America/New_York,434,NA,US,36.94,-77.4,1840 +23883,STANDARD,0,Surry,,,VA,"Surry County",America/New_York,757,NA,US,37.13,-76.83,2010 +23884,"PO BOX",0,Sussex,,,VA,"Sussex County",America/New_York,,NA,US,36.92,-77.28,22 +23885,STANDARD,0,Sutherland,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.19,-77.56,2600 +23887,STANDARD,0,Valentines,,,VA,"Brunswick County",America/New_York,434,NA,US,36.58,-77.83,350 +23888,STANDARD,0,Wakefield,,,VA,"Sussex County",America/New_York,757,NA,US,36.96,-76.98,1900 +23889,STANDARD,0,Warfield,,,VA,"Brunswick County",America/New_York,804,NA,US,36.89,-77.74,490 +23890,STANDARD,0,Waverly,,,VA,"Sussex County",America/New_York,804,NA,US,37.03,-77.09,3160 +23891,UNIQUE,0,Waverly,,"Sussex Correctional Facility",VA,"Sussex County",America/New_York,804,NA,US,37.05,-77.21,17 +23893,STANDARD,0,"White Plains",,,VA,"Brunswick County",America/New_York,434,NA,US,36.63,-77.91,350 +23894,STANDARD,0,Wilsons,,,VA,"Dinwiddie County",America/New_York,804,NA,US,37.14,-77.85,600 +23897,STANDARD,0,Yale,,,VA,"Sussex County",America/New_York,,NA,US,36.84,-77.28,450 +23898,STANDARD,0,Zuni,,,VA,"Isle of Wight County",America/New_York,,NA,US,36.86,-76.82,2020 +23899,"PO BOX",0,Claremont,,,VA,"Surry County",America/New_York,757,NA,US,37.22,-76.96,366 +23901,STANDARD,0,Farmville,,,VA,"Prince Edward County",America/New_York,434,NA,US,37.29,-78.39,10430 +23909,UNIQUE,0,Farmville,,"Longwood University",VA,"Prince Edward County",America/New_York,434,NA,US,37.3,-78.4,13 +23915,STANDARD,0,Baskerville,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.68,-78.27,640 +23917,STANDARD,0,Boydton,,"Palmer Springs, Palmersprings",VA,"Mecklenburg County",America/New_York,434,NA,US,36.66,-78.38,2250 +23919,STANDARD,0,Bracey,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.59,-78.14,2080 +23920,STANDARD,0,Brodnax,,,VA,"Brunswick County",America/New_York,434,NA,US,36.7,-78.03,2610 +23921,STANDARD,0,Buckingham,,,VA,"Buckingham County",America/New_York,434,NA,US,37.55,-78.55,1750 +23922,STANDARD,0,Burkeville,,,VA,"Nottoway County",America/New_York,434,NA,US,37.18,-78.2,1720 +23923,STANDARD,0,"Charlotte Court House","Charlotte C H","Charlotte Ch",VA,"Charlotte County",America/New_York,434,NA,US,37.05,-78.63,1890 +23924,STANDARD,0,"Chase City",,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.79,-78.46,4460 +23927,STANDARD,0,Clarksville,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.62,-78.56,3610 +23930,STANDARD,0,Crewe,,,VA,"Nottoway County",America/New_York,434,NA,US,37.18,-78.13,4460 +23934,STANDARD,0,Cullen,,,VA,"Charlotte County",America/New_York,434,NA,US,37.18,-78.63,600 +23936,STANDARD,0,Dillwyn,"Sprouses Corn, Sprouses Corner",Andersonville,VA,"Buckingham County",America/New_York,"804,434",NA,US,37.54,-78.46,4870 +23937,STANDARD,0,"Drakes Branch",,,VA,"Charlotte County",America/New_York,434,NA,US,36.99,-78.6,1370 +23938,STANDARD,0,Dundas,,,VA,"Brunswick County",America/New_York,,NA,US,36.91,-77.99,400 +23939,"PO BOX",0,Evergreen,,,VA,"Appomattox County",America/New_York,434,NA,US,37.3,-78.78,191 +23941,"PO BOX",0,"Fort Mitchell",,,VA,"Lunenburg County",America/New_York,434,NA,US,36.91,-78.48,0 +23942,STANDARD,0,"Green Bay",,Greenbay,VA,"Prince Edward County",America/New_York,434,NA,US,37.13,-78.3,880 +23943,"PO BOX",0,"Hampden Sydney","Farmville, Hmpden Sydney",,VA,"Prince Edward County",America/New_York,434,NA,US,37.25,-78.45,215 +23944,STANDARD,0,Kenbridge,,,VA,"Lunenburg County",America/New_York,434,NA,US,36.96,-78.13,3230 +23947,STANDARD,0,Keysville,,,VA,"Charlotte County",America/New_York,434,NA,US,37.03,-78.48,3360 +23950,STANDARD,0,"La Crosse","Blackridge, Forksville, South Hill","Black Ridge",VA,"Mecklenburg County",America/New_York,434,NA,US,36.69,-78.09,2950 +23952,STANDARD,0,Lunenburg,,,VA,"Lunenburg County",America/New_York,434,NA,US,36.96,-78.26,190 +23954,STANDARD,0,Meherrin,,,VA,"Prince Edward County",America/New_York,,NA,US,37.09,-78.36,1750 +23955,"PO BOX",0,Nottoway,,,VA,"Nottoway County",America/New_York,434,NA,US,37.13,-78.07,70 +23958,STANDARD,0,Pamplin,"Darlingtn Hts, Darlington Heights",,VA,"Appomattox County",America/New_York,434,NA,US,37.26,-78.68,2620 +23959,STANDARD,0,Phenix,,,VA,"Charlotte County",America/New_York,434,NA,US,37.08,-78.74,930 +23960,STANDARD,0,Prospect,,,VA,"Prince Edward County",America/New_York,434,NA,US,37.3,-78.55,1600 +23962,STANDARD,0,Randolph,,,VA,"Charlotte County",America/New_York,434,NA,US,36.97,-78.7,530 +23963,STANDARD,0,"Red House",,,VA,"Charlotte County",America/New_York,434,NA,US,37.18,-78.8,420 +23964,STANDARD,0,"Red Oak",,,VA,"Charlotte County",America/New_York,434,NA,US,36.76,-78.63,860 +23966,STANDARD,0,Rice,,,VA,"Prince Edward County",America/New_York,434,NA,US,37.27,-78.29,1960 +23967,STANDARD,0,Saxe,,,VA,"Charlotte County",America/New_York,434,NA,US,36.93,-78.66,730 +23968,STANDARD,0,Skipwith,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.73,-78.53,630 +23970,STANDARD,0,"South Hill",,"Southill, Union Level",VA,"Mecklenburg County",America/New_York,434,NA,US,36.72,-78.12,6710 +23974,STANDARD,0,Victoria,,,VA,"Lunenburg County",America/New_York,434,NA,US,36.99,-78.22,3040 +23976,STANDARD,0,Wylliesburg,,,VA,"Charlotte County",America/New_York,434,NA,US,36.85,-78.58,210 +24001,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,43 +24002,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,22 +24003,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24004,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24005,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24006,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24007,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,23 +24008,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,66 +24009,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,47 +24010,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,62 +24011,STANDARD,0,Roanoke,,,VA,"Roanoke city",America/New_York,540,NA,US,37.27,-79.94,600 +24012,STANDARD,0,Roanoke,,Bonsack,VA,"Roanoke city",America/New_York,540,NA,US,37.31,-79.9,24290 +24013,STANDARD,0,Roanoke,,,VA,"Roanoke city",America/New_York,540,NA,US,37.27,-79.92,5610 +24014,STANDARD,0,Roanoke,,"Garden City, South Roanoke",VA,"Roanoke city",America/New_York,540,NA,US,37.22,-79.91,14530 +24015,STANDARD,0,Roanoke,,"Grandin Road",VA,"Roanoke city",America/New_York,540,NA,US,37.26,-79.98,13450 +24016,STANDARD,0,Roanoke,,,VA,"Roanoke city",America/New_York,540,NA,US,37.27,-79.95,6230 +24017,STANDARD,0,Roanoke,,Melrose,VA,"Roanoke city",America/New_York,540,NA,US,37.3,-79.99,19030 +24018,STANDARD,0,Roanoke,"Cave Spring","Poages Mill",VA,"Roanoke County",America/New_York,540,NA,US,37.21,-80.04,36340 +24019,STANDARD,0,Roanoke,"Hollins, Hollins Clg",,VA,"Roanoke County",America/New_York,540,NA,US,37.35,-79.95,25590 +24020,"PO BOX",0,Roanoke,"Hollins Clg, Hollins College",,VA,"Roanoke County",America/New_York,540,NA,US,37.36,-79.94,87 +24022,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,178 +24023,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,21 +24024,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,21 +24025,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,26 +24026,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24027,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,19 +24028,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,25 +24029,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,10 +24030,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,22 +24031,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,23 +24032,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,19 +24033,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,20 +24034,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24035,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,18 +24036,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,21 +24037,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,20 +24038,"PO BOX",0,Roanoke,,,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,113 +24040,UNIQUE,0,Roanoke,,Wachovia,VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24042,UNIQUE,0,Roanoke,,"Norfolk Southern",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24043,UNIQUE,0,Roanoke,,"Norfolk Southern Rwy Brm",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24044,UNIQUE,1,Roanoke,,"Appalachian Pwr",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.94,0 +24045,UNIQUE,1,Roanoke,,"Blue Cross Blue Shield",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.94,0 +24048,UNIQUE,1,Roanoke,,"Allstate Ins Co",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.94,0 +24050,UNIQUE,0,Roanoke,,"Hanover Direct",VA,"Roanoke City",America/New_York,540,NA,US,37.27,-79.95,0 +24053,STANDARD,0,Ararat,,,VA,"Patrick County",America/New_York,276,NA,US,36.6,-80.51,1770 +24054,STANDARD,0,Axton,,,VA,"Henry County",America/New_York,276,NA,US,36.66,-79.71,5260 +24055,STANDARD,0,Bassett,,"Bassett Forks, Oaklevel, Philpott, Sanville",VA,"Henry County",America/New_York,276,NA,US,36.76,-79.98,9310 +24058,"PO BOX",0,Belspring,,,VA,"Pulaski County",America/New_York,540,NA,US,37.19,-80.61,303 +24059,STANDARD,0,"Bent Mountain",,,VA,"Roanoke County",America/New_York,540,NA,US,37.15,-80.11,860 +24060,STANDARD,0,Blacksburg,,,VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,25680 +24061,UNIQUE,0,Blacksburg,,"Virginia Tech",VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,108 +24062,"PO BOX",0,Blacksburg,,,VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,499 +24063,"PO BOX",0,Blacksburg,,,VA,"Montgomery County",America/New_York,540,NA,US,37.23,-80.42,313 +24064,STANDARD,0,"Blue Ridge",,,VA,"Botetourt County",America/New_York,,NA,US,37.38,-79.82,4640 +24065,STANDARD,0,"Boones Mill",,,VA,"Franklin County",America/New_York,540,NA,US,37.11,-79.95,5540 +24066,STANDARD,0,Buchanan,Lithia,,VA,"Botetourt County",America/New_York,540,NA,US,37.52,-79.68,4220 +24067,STANDARD,0,Callaway,,,VA,"Franklin County",America/New_York,540,NA,US,37.01,-80.05,1960 +24068,"PO BOX",0,Christiansburg,Christiansbrg,,VA,"Montgomery County",America/New_York,540,NA,US,37.14,-80.4,980 +24069,STANDARD,0,Cascade,,"Leakesville Junction",VA,"Pittsylvania County",America/New_York,434,NA,US,36.56,-79.66,1450 +24070,STANDARD,0,Catawba,,,VA,"Roanoke County",America/New_York,540,NA,US,37.38,-80.11,1270 +24072,STANDARD,0,Check,Simpsons,,VA,"Floyd County",America/New_York,540,NA,US,37.04,-80.24,1180 +24073,STANDARD,0,Christiansburg,Christiansbrg,"Cambria, Christnsbrg, Prices Fork",VA,"Montgomery County",America/New_York,540,NA,US,37.14,-80.4,26870 +24076,STANDARD,0,Claudville,,,VA,"Patrick County",America/New_York,276,NA,US,36.59,-80.42,810 +24077,STANDARD,0,Cloverdale,,,VA,"Botetourt County",America/New_York,540,NA,US,37.37,-79.9,950 +24078,STANDARD,0,Collinsville,,,VA,"Henry County",America/New_York,276,NA,US,36.72,-79.91,5770 +24079,STANDARD,0,"Copper Hill",,"Kings Store",VA,"Floyd County",America/New_York,540,NA,US,37.08,-80.13,1440 +24082,STANDARD,0,Critz,,,VA,"Patrick County",America/New_York,276,NA,US,36.62,-80.11,370 +24083,STANDARD,0,Daleville,,,VA,"Botetourt County",America/New_York,540,NA,US,37.41,-79.92,3820 +24084,STANDARD,0,Dublin,,,VA,"Pulaski County",America/New_York,540,NA,US,37.1,-80.68,8550 +24085,STANDARD,0,"Eagle Rock",,,VA,"Botetourt County",America/New_York,540,NA,US,37.63,-79.8,1760 +24086,STANDARD,0,Eggleston,,,VA,"Giles County",America/New_York,540,NA,US,37.28,-80.63,190 +24087,STANDARD,0,Elliston,"Ironto, Lafayette",,VA,"Montgomery County",America/New_York,540,NA,US,37.21,-80.23,3030 +24088,STANDARD,0,Ferrum,Charity,Endicott,VA,"Franklin County",America/New_York,540,NA,US,36.92,-80.02,3080 +24089,STANDARD,0,Fieldale,,,VA,"Henry County",America/New_York,276,NA,US,36.7,-79.94,1980 +24090,STANDARD,0,Fincastle,,,VA,"Botetourt County",America/New_York,540,NA,US,37.49,-79.87,4050 +24091,STANDARD,0,Floyd,"Alum Ridge",,VA,"Floyd County",America/New_York,540,NA,US,36.91,-80.31,6290 +24092,STANDARD,0,"Glade Hill",,,VA,"Franklin County",America/New_York,540,NA,US,37,-79.77,2470 +24093,STANDARD,0,"Glen Lyn",,,VA,"Giles County",America/New_York,540,NA,US,37.37,-80.85,184 +24095,STANDARD,0,Goodview,,,VA,"Bedford County",America/New_York,540,NA,US,37.21,-79.71,3750 +24101,STANDARD,0,Hardy,,,VA,"Franklin County",America/New_York,540,NA,US,37.18,-79.8,5650 +24102,STANDARD,0,Henry,,,VA,"Franklin County",America/New_York,540,NA,US,36.83,-80,1200 +24104,STANDARD,0,Huddleston,,,VA,"Bedford County",America/New_York,540,NA,US,37.16,-79.48,3040 +24105,STANDARD,0,"Indian Valley",,,VA,"Floyd County",America/New_York,540,NA,US,36.91,-80.6,380 +24111,"PO BOX",0,"Mc Coy",,,VA,"Pulaski County",America/New_York,540,NA,US,37.23,-80.61,179 +24112,STANDARD,0,Martinsville,,,VA,"Henry County",America/New_York,276,NA,US,36.68,-79.86,23550 +24113,"PO BOX",0,Martinsville,,,VA,"Martinsville City",America/New_York,276,NA,US,36.68,-79.86,143 +24114,"PO BOX",0,Martinsville,,,VA,"Martinsville City",America/New_York,276,NA,US,36.68,-79.86,473 +24115,"PO BOX",0,Martinsville,,,VA,"Martinsville City",America/New_York,276,NA,US,36.68,-79.86,1135 +24120,STANDARD,0,"Meadows Of Dan","Meadows Dan",,VA,"Patrick County",America/New_York,"276,540",NA,US,36.73,-80.41,1510 +24121,STANDARD,0,Moneta,,Scruggs,VA,"Bedford County",America/New_York,540,NA,US,37.18,-79.63,9420 +24122,STANDARD,0,Montvale,,,VA,"Bedford County",America/New_York,,NA,US,37.43,-79.69,1450 +24124,STANDARD,0,Narrows,,,VA,"Giles County",America/New_York,540,NA,US,37.33,-80.8,3600 +24126,"PO BOX",0,Newbern,,,VA,"Pulaski County",America/New_York,540,NA,US,37.04,-80.68,373 +24127,STANDARD,0,"New Castle",,,VA,"Craig County",America/New_York,540,NA,US,37.5,-80.11,3500 +24128,STANDARD,0,Newport,,,VA,"Giles County",America/New_York,540,NA,US,37.29,-80.49,1570 +24129,"PO BOX",0,"New River",,,VA,"Pulaski County",America/New_York,540,NA,US,37.12,-80.57,151 +24130,STANDARD,0,Oriskany,,,VA,"Botetourt County",America/New_York,540,NA,US,37.61,-80,0 +24131,STANDARD,0,"Paint Bank",,,VA,"Craig County",America/New_York,540,NA,US,37.56,-80.28,86 +24132,"PO BOX",0,Parrott,,,VA,"Pulaski County",America/New_York,540,NA,US,37.21,-80.63,399 +24133,STANDARD,0,"Patrick Springs","Patrick Spgs",,VA,"Patrick County",America/New_York,276,NA,US,36.67,-80.13,1990 +24134,STANDARD,0,Pearisburg,,,VA,"Giles County",America/New_York,540,NA,US,37.32,-80.72,4800 +24136,STANDARD,0,Pembroke,,,VA,"Giles County",America/New_York,540,NA,US,37.32,-80.63,2810 +24137,STANDARD,0,Penhook,,,VA,"Franklin County",America/New_York,540,NA,US,36.98,-79.63,2080 +24138,STANDARD,0,Pilot,,,VA,"Montgomery County",America/New_York,540,NA,US,37.05,-80.36,1320 +24139,STANDARD,0,Pittsville,,,VA,"Pittsylvania County",America/New_York,,NA,US,36.98,-79.46,490 +24141,STANDARD,0,Radford,Fairlawn,,VA,"Radford city",America/New_York,540,NA,US,37.12,-80.55,13940 +24142,"PO BOX",0,Radford,,,VA,"Radford city",America/New_York,540,NA,US,37.14,-80.55,53 +24143,"PO BOX",0,Radford,,,VA,"Radford City",America/New_York,540,NA,US,37.12,-80.55,769 +24146,"PO BOX",0,Redwood,,,VA,"Franklin County",America/New_York,540,NA,US,37.01,-79.79,60 +24147,STANDARD,0,"Rich Creek",,,VA,"Giles County",America/New_York,540,NA,US,37.38,-80.82,730 +24148,STANDARD,0,Ridgeway,,,VA,"Henry County",America/New_York,276,NA,US,36.57,-79.85,6220 +24149,STANDARD,0,Riner,,Fairview,VA,"Montgomery County",America/New_York,540,NA,US,37.02,-80.43,3320 +24150,STANDARD,0,Ripplemead,Goldbond,Kimballton,VA,"Giles County",America/New_York,540,NA,US,37.38,-80.63,520 +24151,STANDARD,0,"Rocky Mount",,"Franklin Heights",VA,"Franklin County",America/New_York,540,NA,US,36.99,-79.89,15860 +24153,STANDARD,0,Salem,,"Bennett Springs, Fort Lewis, Glenvar, Hanging Rock, Kesslers Mill, Mason Cove",VA,"Salem city",America/New_York,540,NA,US,37.28,-80.05,32300 +24155,UNIQUE,0,Roanoke,,"Home Shopping Network",VA,"Roanoke City",America/New_York,540,NA,US,37.29,-80.06,0 +24157,UNIQUE,0,Roanoke,,"Home Shopping Network",VA,"Roanoke City",America/New_York,540,NA,US,37.28,-80.05,0 +24161,STANDARD,0,"Sandy Level",,,VA,"Pittsylvania County",America/New_York,434,NA,US,37,-79.55,260 +24162,STANDARD,0,Shawsville,,"Allegany Spring",VA,"Montgomery County",America/New_York,540,NA,US,37.13,-80.25,1810 +24165,STANDARD,0,Spencer,,,VA,"Henry County",America/New_York,276,NA,US,36.61,-80.01,1430 +24167,STANDARD,0,Staffordsville,Staffordsvlle,,VA,"Giles County",America/New_York,540,NA,US,37.26,-80.72,290 +24168,STANDARD,0,Stanleytown,,,VA,"Henry County",America/New_York,276,NA,US,36.73,-79.95,580 +24171,STANDARD,0,Stuart,,,VA,"Patrick County",America/New_York,276,NA,US,36.64,-80.27,6220 +24174,STANDARD,0,Thaxton,,,VA,"Bedford County",America/New_York,540,NA,US,37.35,-79.63,1960 +24175,STANDARD,0,Troutville,,Haymakertown,VA,"Botetourt County",America/New_York,540,NA,US,37.41,-79.87,7500 +24176,STANDARD,0,"Union Hall",,,VA,"Franklin County",America/New_York,540,NA,US,37,-79.68,1250 +24177,"PO BOX",0,Vesta,,,VA,"Patrick County",America/New_York,276,NA,US,36.72,-80.39,92 +24178,"PO BOX",0,Villamont,,,VA,"Bedford County",America/New_York,,NA,US,37.39,-79.74,0 +24179,STANDARD,0,Vinton,,,VA,"Roanoke County",America/New_York,540,NA,US,37.27,-79.88,16510 +24184,STANDARD,0,Wirtz,"Burnt Chimney",,VA,"Franklin County",America/New_York,540,NA,US,37.08,-79.9,4100 +24185,STANDARD,0,Woolwine,,,VA,"Patrick County",America/New_York,"540,276",NA,US,36.78,-80.28,720 +24201,STANDARD,0,Bristol,,,VA,"Bristol city",America/New_York,276,NA,US,36.61,-82.16,11940 +24202,STANDARD,0,Bristol,,,VA,"Washington County",America/New_York,276,NA,US,36.66,-82.21,10180 +24203,"PO BOX",0,Bristol,,,VA,"Bristol City",America/New_York,276,NA,US,36.61,-82.16,257 +24205,UNIQUE,0,Bristol,,"Bristol Merchandise Return",VA,"Bristol City",America/New_York,276,NA,US,36.61,-82.17,0 +24209,"PO BOX",0,Bristol,,,VA,"Bristol City",America/New_York,276,NA,US,36.61,-82.16,492 +24210,STANDARD,0,Abingdon,,Osceola,VA,"Washington County",America/New_York,276,NA,US,36.77,-82.03,12280 +24211,STANDARD,0,Abingdon,,,VA,"Washington County",America/New_York,276,NA,US,36.7,-81.96,8100 +24212,"PO BOX",0,Abingdon,,,VA,"Washington County",America/New_York,276,NA,US,36.7,-81.96,1732 +24215,"PO BOX",0,Andover,,,VA,"Wise County",America/New_York,276,NA,US,36.94,-82.78,111 +24216,STANDARD,0,Appalachia,"Exeter, Stonega",,VA,"Wise County",America/New_York,276,NA,US,36.9,-82.78,1660 +24217,STANDARD,0,Bee,,,VA,"Dickenson County",America/New_York,,NA,US,37.08,-82.19,254 +24218,"PO BOX",0,"Ben Hur",,,VA,"Lee County",America/New_York,276,NA,US,36.73,-83.08,296 +24219,STANDARD,0,"Big Stone Gap",,,VA,"Wise County",America/New_York,276,NA,US,36.86,-82.77,7050 +24220,STANDARD,0,Birchleaf,,,VA,"Dickenson County",America/New_York,276,NA,US,37.15,-82.23,510 +24221,STANDARD,0,Blackwater,,,VA,"Lee County",America/New_York,,NA,US,36.62,-83.05,500 +24224,STANDARD,0,Castlewood,,Dickensonville,VA,"Russell County",America/New_York,276,NA,US,36.87,-82.28,4020 +24225,STANDARD,0,Cleveland,,,VA,"Russell County",America/New_York,276,NA,US,36.94,-82.15,1130 +24226,STANDARD,0,Clinchco,,,VA,"Dickenson County",America/New_York,276,NA,US,37.12,-82.33,980 +24228,STANDARD,0,Clintwood,,Honeycamp,VA,"Dickenson County",America/New_York,276,NA,US,37.15,-82.45,4660 +24230,STANDARD,0,Coeburn,,,VA,"Wise County",America/New_York,276,NA,US,36.94,-82.46,5800 +24236,STANDARD,0,Damascus,,,VA,"Washington County",America/New_York,276,NA,US,36.63,-81.78,2240 +24237,STANDARD,0,Dante,Trammel,,VA,"Dickenson County",America/New_York,276,NA,US,36.98,-82.29,620 +24239,STANDARD,0,Davenport,,,VA,"Buchanan County",America/New_York,276,NA,US,37.12,-82.15,300 +24243,STANDARD,0,Dryden,,,VA,"Lee County",America/New_York,276,NA,US,36.77,-82.94,1620 +24244,STANDARD,0,Duffield,Clinchport,,VA,"Scott County",America/New_York,276,NA,US,36.71,-82.79,3530 +24245,STANDARD,0,Dungannon,,,VA,"Scott County",America/New_York,276,NA,US,36.82,-82.46,690 +24246,"PO BOX",0,"East Stone Gap","E Stone Gap",,VA,"Wise County",America/New_York,276,NA,US,36.87,-82.75,588 +24248,STANDARD,0,Ewing,,"Willow Tree",VA,"Lee County",America/New_York,276,NA,US,36.63,-83.43,1640 +24250,STANDARD,0,"Fort Blackmore","Ft Blackmore",,VA,"Scott County",America/New_York,276,NA,US,36.77,-82.58,780 +24251,STANDARD,0,"Gate City",,Snowflake,VA,"Scott County",America/New_York,276,NA,US,36.63,-82.58,6750 +24256,STANDARD,0,Haysi,,,VA,"Dickenson County",America/New_York,276,NA,US,37.2,-82.29,2020 +24258,STANDARD,0,Hiltons,,,VA,"Scott County",America/New_York,276,NA,US,36.65,-82.46,1050 +24260,STANDARD,0,Honaker,"Council, Elk Garden, Venia",Putnam,VA,"Russell County",America/New_York,276,NA,US,37.01,-81.97,3790 +24263,STANDARD,0,Jonesville,,,VA,"Lee County",America/New_York,276,NA,US,36.68,-83.11,4550 +24265,STANDARD,0,Keokee,,,VA,"Lee County",America/New_York,276,NA,US,36.86,-82.9,420 +24266,STANDARD,0,Lebanon,,"Barnett, Bolton, Carterton, Hansonville",VA,"Russell County",America/New_York,276,NA,US,36.89,-82.07,7390 +24269,STANDARD,0,"Mc Clure",,Mcclure,VA,"Dickenson County",America/New_York,276,NA,US,37.08,-82.38,141 +24270,STANDARD,0,Mendota,,,VA,"Washington County",America/New_York,,NA,US,36.72,-82.25,370 +24271,STANDARD,0,Nickelsville,,,VA,"Scott County",America/New_York,276,NA,US,36.75,-82.41,2000 +24272,STANDARD,0,Nora,,,VA,"Dickenson County",America/New_York,276,NA,US,37.02,-82.34,330 +24273,STANDARD,0,Norton,,Esserville,VA,"Norton city",America/New_York,276,NA,US,36.93,-82.62,4400 +24277,STANDARD,0,"Pennington Gap","Penningtn Gap",Pennington,VA,"Lee County",America/New_York,276,NA,US,36.75,-83.02,3430 +24279,STANDARD,0,Pound,,,VA,"Wise County",America/New_York,276,NA,US,37.12,-82.6,3040 +24280,STANDARD,0,Rosedale,,,VA,"Russell County",America/New_York,276,NA,US,36.95,-81.93,840 +24281,STANDARD,0,"Rose Hill",,,VA,"Lee County",America/New_York,276,NA,US,36.67,-83.36,1520 +24282,STANDARD,0,"Saint Charles",,,VA,"Lee County",America/New_York,276,NA,US,36.8,-83.05,360 +24283,STANDARD,0,"Saint Paul",,,VA,"Wise County",America/New_York,276,NA,US,36.9,-82.31,1780 +24290,STANDARD,0,"Weber City",,,VA,"Scott County",America/New_York,276,NA,US,36.62,-82.56,1160 +24292,STANDARD,0,Whitetop,,,VA,"Grayson County",America/New_York,276,NA,US,36.6,-81.61,260 +24293,STANDARD,0,Wise,,,VA,"Wise County",America/New_York,276,NA,US,36.97,-82.58,7510 +24301,STANDARD,0,Pulaski,,Snowville,VA,"Pulaski County",America/New_York,540,NA,US,37.05,-80.76,10420 +24311,STANDARD,0,Atkins,,,VA,"Smyth County",America/New_York,276,NA,US,36.86,-81.39,1400 +24312,STANDARD,0,Austinville,,,VA,"Carroll County",America/New_York,276,NA,US,36.82,-80.86,1750 +24313,STANDARD,0,"Barren Springs","Barren Spgs",,VA,"Wythe County",America/New_York,276,NA,US,36.91,-80.8,770 +24314,STANDARD,0,Bastian,,"Clearfork, Cove Creek, Grapefield, Hicksville",VA,"Bland County",America/New_York,,NA,US,37.15,-81.15,1040 +24315,STANDARD,0,Bland,,"Bland Correct, Bland Correctional Farm",VA,"Bland County",America/New_York,276,NA,US,37.1,-81.11,2480 +24316,STANDARD,0,Broadford,,,VA,"Tazewell County",America/New_York,276,NA,US,36.96,-81.67,75 +24317,STANDARD,0,Cana,,,VA,"Carroll County",America/New_York,276,NA,US,36.58,-80.66,2680 +24318,STANDARD,0,Ceres,,Nebo,VA,"Bland County",America/New_York,276,NA,US,37.01,-81.35,480 +24319,STANDARD,0,Chilhowie,,,VA,"Smyth County",America/New_York,276,NA,US,36.8,-81.68,5620 +24322,STANDARD,0,"Cripple Creek",,,VA,"Wythe County",America/New_York,276,NA,US,36.81,-81.1,166 +24323,STANDARD,0,Crockett,,,VA,"Wythe County",America/New_York,276,NA,US,36.88,-81.18,580 +24324,STANDARD,0,Draper,,,VA,"Pulaski County",America/New_York,,NA,US,37,-80.76,1800 +24325,STANDARD,0,Dugspur,,,VA,"Carroll County",America/New_York,276,NA,US,36.81,-80.61,730 +24326,STANDARD,0,"Elk Creek",,"Comers Rock",VA,"Grayson County",America/New_York,276,NA,US,36.73,-81.2,830 +24327,"PO BOX",0,Emory,,,VA,"Washington County",America/New_York,276,NA,US,36.75,-81.83,448 +24328,STANDARD,0,"Fancy Gap",,,VA,"Carroll County",America/New_York,276,NA,US,36.66,-80.7,1530 +24330,STANDARD,0,Fries,,"Stevens Creek",VA,"Grayson County",America/New_York,276,NA,US,36.71,-80.97,2420 +24333,STANDARD,0,Galax,,"Dalhart, Meadowcreek",VA,"Galax city",America/New_York,276,NA,US,36.66,-80.91,14020 +24340,STANDARD,0,"Glade Spring",,,VA,"Washington County",America/New_York,276,NA,US,36.79,-81.77,4280 +24343,STANDARD,0,Hillsville,,"Littlevine, Richardson",VA,"Carroll County",America/New_York,276,NA,US,36.76,-80.73,7420 +24347,STANDARD,0,Hiwassee,Allisonia,,VA,"Pulaski County",America/New_York,540,NA,US,36.97,-80.64,1460 +24348,STANDARD,0,Independence,,,VA,"Grayson County",America/New_York,276,NA,US,36.61,-81.15,3200 +24350,STANDARD,0,Ivanhoe,,,VA,"Wythe County",America/New_York,,NA,US,36.83,-80.95,980 +24351,STANDARD,0,Lambsburg,,,VA,"Carroll County",America/New_York,276,NA,US,36.58,-80.76,410 +24352,STANDARD,0,"Laurel Fork",,,VA,"Carroll County",America/New_York,"540,276",NA,US,36.71,-80.51,740 +24354,STANDARD,0,Marion,"Seven Mile Fd, Seven Mile Ford","Stony Battery, The Cedars, Thomas Bridge",VA,"Smyth County",America/New_York,276,NA,US,36.83,-81.51,10910 +24360,STANDARD,0,"Max Meadows","Fort Chiswell, Foster Falls",,VA,"Wythe County",America/New_York,276,NA,US,36.96,-80.93,4760 +24361,STANDARD,0,Meadowview,Clinchburg,,VA,"Washington County",America/New_York,276,NA,US,36.76,-81.85,3760 +24363,STANDARD,0,"Mouth Of Wilson","Mouth Wilson, Volney",,VA,"Grayson County",America/New_York,276,NA,US,36.58,-81.33,930 +24366,STANDARD,0,"Rocky Gap",,,VA,"Bland County",America/New_York,276,NA,US,37.26,-81.12,760 +24368,STANDARD,0,"Rural Retreat",,Grosclose,VA,"Wythe County",America/New_York,276,NA,US,36.89,-81.27,4230 +24370,STANDARD,0,Saltville,,,VA,"Smyth County",America/New_York,276,NA,US,36.87,-81.76,4360 +24374,STANDARD,0,Speedwell,,,VA,"Wythe County",America/New_York,276,NA,US,36.81,-81.16,580 +24375,STANDARD,0,"Sugar Grove",,,VA,"Smyth County",America/New_York,276,NA,US,36.76,-81.4,1140 +24377,STANDARD,0,Tannersville,,,VA,"Tazewell County",America/New_York,276,NA,US,36.97,-81.64,210 +24378,STANDARD,0,Troutdale,,"Trout Dale",VA,"Grayson County",America/New_York,276,NA,US,36.7,-81.43,730 +24380,STANDARD,0,Willis,,,VA,"Floyd County",America/New_York,540,NA,US,36.85,-80.48,2190 +24381,STANDARD,0,Woodlawn,,,VA,"Carroll County",America/New_York,276,NA,US,36.71,-80.81,3190 +24382,STANDARD,0,Wytheville,,"Stones Mill",VA,"Wythe County",America/New_York,276,NA,US,36.95,-81.08,11530 +24401,STANDARD,0,Staunton,,"Staunton Park, Western State Hospital",VA,"Staunton city",America/New_York,540,NA,US,38.15,-79.06,31660 +24402,"PO BOX",0,Staunton,,,VA,"Staunton City",America/New_York,540,NA,US,38.15,-79.06,1013 +24411,"PO BOX",0,"Augusta Springs","Augusta Sprgs","Augusta Spgs",VA,"Augusta County",America/New_York,540,NA,US,38.11,-79.31,145 +24412,"PO BOX",0,Bacova,,,VA,"Bath County",America/New_York,540,NA,US,38.05,-79.82,87 +24413,STANDARD,0,"Blue Grass",,,VA,"Highland County",America/New_York,540,NA,US,38.53,-79.6,200 +24415,"PO BOX",0,Brownsburg,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.92,-79.32,92 +24416,STANDARD,0,"Buena Vista",,,VA,"Buena Vista city",America/New_York,"434,540",NA,US,37.73,-79.35,6900 +24421,STANDARD,0,Churchville,,,VA,"Augusta County",America/New_York,540,NA,US,38.22,-79.16,3290 +24422,STANDARD,0,"Clifton Forge",,,VA,"Alleghany County",America/New_York,540,NA,US,37.82,-79.82,4710 +24426,STANDARD,0,Covington,"Alleghany, Jordan Mines","Camp Appalachia, Cmp Appalchia",VA,"Alleghany County",America/New_York,540,NA,US,37.77,-79.99,11840 +24430,STANDARD,0,Craigsville,,,VA,"Augusta County",America/New_York,540,NA,US,38.08,-79.38,1300 +24431,STANDARD,0,Crimora,,,VA,"Augusta County",America/New_York,540,NA,US,38.16,-78.83,2390 +24432,STANDARD,0,Deerfield,,,VA,"Augusta County",America/New_York,540,NA,US,38.19,-79.4,290 +24433,STANDARD,0,"Doe Hill",,,VA,"Highland County",America/New_York,540,NA,US,38.43,-79.44,141 +24435,STANDARD,0,Fairfield,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.88,-79.3,1610 +24437,STANDARD,0,"Fort Defiance",,,VA,"Augusta County",America/New_York,540,NA,US,38.21,-78.94,860 +24438,"PO BOX",0,"Glen Wilton",,,VA,"Botetourt County",America/New_York,540,NA,US,37.75,-79.81,73 +24439,STANDARD,0,Goshen,,,VA,"Rockbridge County",America/New_York,,NA,US,37.99,-79.5,880 +24440,STANDARD,0,Greenville,,,VA,"Augusta County",America/New_York,540,NA,US,38,-79.15,2310 +24441,STANDARD,0,Grottoes,,,VA,"Rockingham County",America/New_York,540,NA,US,38.26,-78.82,5580 +24442,STANDARD,0,"Head Waters",,,VA,"Highland County",America/New_York,540,NA,US,38.37,-79.38,83 +24445,STANDARD,0,"Hot Springs",,"Bacova Jnctn, Bacova Junction, Falling Spring, Falling Sprng, Healing Sprgs, Healing Springs",VA,"Bath County",America/New_York,540,NA,US,38,-79.83,2170 +24448,"PO BOX",0,"Iron Gate",,,VA,"Alleghany County",America/New_York,540,NA,US,37.8,-79.79,466 +24450,STANDARD,0,Lexington,,"East Lexington, West Lexington",VA,"Rockbridge County",America/New_York,540,NA,US,37.78,-79.44,12380 +24457,"PO BOX",0,"Low Moor",,Lowmoor,VA,"Alleghany County",America/New_York,540,NA,US,37.76,-79.94,315 +24458,STANDARD,0,"Mc Dowell",,Mcdowell,VA,"Highland County",America/New_York,540,NA,US,38.3,-79.52,270 +24459,STANDARD,0,Middlebrook,,,VA,"Augusta County",America/New_York,540,NA,US,38.02,-79.28,680 +24460,STANDARD,0,Millboro,,"Milboro Sprgs, Millboro Springs",VA,"Bath County",America/New_York,540,NA,US,37.96,-79.6,1220 +24463,"PO BOX",0,"Mint Spring",,,VA,"Augusta County",America/New_York,540,NA,US,38.07,-79.1,120 +24464,STANDARD,0,Montebello,,,VA,"Nelson County",America/New_York,434,NA,US,37.86,-79.13,110 +24465,STANDARD,0,Monterey,"Hightown, Mustoe","Mill Gap",VA,"Highland County",America/New_York,540,NA,US,38.41,-79.58,1030 +24467,STANDARD,0,"Mount Sidney",,,VA,"Augusta County",America/New_York,540,NA,US,38.26,-78.97,1990 +24468,STANDARD,1,Mustoe,,,VA,"Highland County",America/New_York,540,NA,US,38.32,-79.64,0 +24469,"PO BOX",0,"New Hope",,,VA,"Augusta County",America/New_York,540,NA,US,38.19,-78.9,223 +24471,STANDARD,0,"Port Republic",,"Pt Republic",VA,"Rockingham County",America/New_York,540,NA,US,38.32,-78.81,1370 +24472,STANDARD,0,Raphine,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.93,-79.23,1940 +24473,STANDARD,0,"Rockbridge Baths","Rockbdge Bath","Rockbrg Baths",VA,"Rockbridge County",America/New_York,540,NA,US,37.9,-79.41,770 +24474,"PO BOX",0,Selma,,,VA,"Alleghany County",America/New_York,540,NA,US,37.81,-79.85,424 +24476,STANDARD,0,"Steeles Tavern","Spottswood, Steeles Tavrn",,VA,"Augusta County",America/New_York,540,NA,US,37.97,-79.23,340 +24477,STANDARD,0,"Stuarts Draft",,,VA,"Augusta County",America/New_York,540,NA,US,38.02,-79.02,10390 +24479,STANDARD,0,Swoope,,,VA,"Augusta County",America/New_York,540,NA,US,38.14,-79.2,1350 +24482,STANDARD,0,Verona,,,VA,"Augusta County",America/New_York,540,NA,US,38.19,-79,4050 +24483,STANDARD,0,Vesuvius,,,VA,"Rockbridge County",America/New_York,,NA,US,37.9,-79.2,480 +24484,STANDARD,0,"Warm Springs",Bolar,,VA,"Bath County",America/New_York,540,NA,US,38.05,-79.78,660 +24485,STANDARD,0,"West Augusta",,,VA,"Augusta County",America/New_York,540,NA,US,38.27,-79.3,340 +24486,STANDARD,0,"Weyers Cave",,"Shenandoah Valley Airport",VA,"Augusta County",America/New_York,540,NA,US,38.28,-78.92,3590 +24487,STANDARD,0,Williamsville,Burnsville,,VA,"Bath County",America/New_York,540,NA,US,38.19,-79.56,220 +24501,STANDARD,0,Lynchburg,,"Miller Park",VA,"Lynchburg city",America/New_York,434,NA,US,37.4,-79.19,19720 +24502,STANDARD,0,Lynchburg,Timberlake,"Fort Hill",VA,"Lynchburg city",America/New_York,434,NA,US,37.36,-79.22,32680 +24503,STANDARD,0,Lynchburg,,Rivermont,VA,"Lynchburg city",America/New_York,434,NA,US,37.45,-79.25,17650 +24504,STANDARD,0,Lynchburg,,,VA,"Lynchburg city",America/New_York,434,NA,US,37.37,-79.05,7360 +24505,"PO BOX",0,Lynchburg,,,VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,558 +24506,"PO BOX",0,Lynchburg,,,VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,705 +24512,UNIQUE,1,Lynchburg,"Clifford And Wills",,VA,"Lynchburg City",America/New_York,434,NA,US,37.45,-79.25,0 +24513,UNIQUE,0,Lynchburg,,"J Crew",VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,0 +24514,UNIQUE,0,Lynchburg,,"Thomas Rd Bapt Church",VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,0 +24515,UNIQUE,0,Lynchburg,,"Liberty University",VA,"Lynchburg City",America/New_York,434,NA,US,37.4,-79.19,0 +24517,STANDARD,0,Altavista,,,VA,"Campbell County",America/New_York,434,NA,US,37.12,-79.28,4600 +24520,STANDARD,0,Alton,,,VA,"Halifax County",America/New_York,434,NA,US,36.56,-79,1970 +24521,STANDARD,0,Amherst,,Falconerville,VA,"Amherst County",America/New_York,434,NA,US,37.58,-79.05,8430 +24522,STANDARD,0,Appomattox,,,VA,"Appomattox County",America/New_York,434,NA,US,37.35,-78.82,8850 +24523,STANDARD,0,Bedford,,,VA,"Bedford County",America/New_York,540,NA,US,37.32,-79.52,16080 +24526,STANDARD,0,"Big Island",,Snowden,VA,"Bedford County",America/New_York,434,NA,US,37.53,-79.36,1280 +24527,STANDARD,0,Blairs,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.68,-79.38,2510 +24528,STANDARD,0,Brookneal,,,VA,"Campbell County",America/New_York,434,NA,US,37.05,-78.94,2530 +24529,STANDARD,0,"Buffalo Junction","Buffalo Jct",,VA,"Mecklenburg County",America/New_York,434,NA,US,36.6,-78.63,1260 +24530,STANDARD,0,Callands,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.81,-79.62,850 +24531,STANDARD,0,Chatham,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.81,-79.39,6520 +24533,"PO BOX",0,Clifford,,,VA,"Amherst County",America/New_York,434,NA,US,37.65,-79.03,88 +24534,STANDARD,0,Clover,,,VA,"Halifax County",America/New_York,434,NA,US,36.83,-78.73,1280 +24535,"PO BOX",0,"Cluster Springs","Cluster Spgs",,VA,"Halifax County",America/New_York,434,NA,US,36.61,-78.91,120 +24536,STANDARD,0,"Coleman Falls",,,VA,"Bedford County",America/New_York,,NA,US,37.5,-79.33,240 +24538,STANDARD,0,Concord,,,VA,"Campbell County",America/New_York,434,NA,US,37.35,-78.98,4250 +24539,STANDARD,0,"Crystal Hill",,,VA,"Halifax County",America/New_York,434,NA,US,36.85,-78.91,212 +24540,STANDARD,0,Danville,,,VA,"Danville city",America/New_York,434,NA,US,36.63,-79.43,24870 +24541,STANDARD,0,Danville,,Schoolfield,VA,"Danville city",America/New_York,434,NA,US,36.58,-79.4,20930 +24543,"PO BOX",0,Danville,,,VA,"Danville City",America/New_York,434,NA,US,36.58,-79.4,931 +24544,UNIQUE,1,Danville,"Manufactures Hanover",,VA,"Danville City",America/New_York,434,NA,US,36.58,-79.39,0 +24549,STANDARD,0,"Dry Fork",,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.75,-79.41,3590 +24550,STANDARD,0,Evington,,,VA,"Campbell County",America/New_York,434,NA,US,37.23,-79.28,6700 +24551,STANDARD,0,Forest,,,VA,"Bedford County",America/New_York,,NA,US,37.37,-79.27,23640 +24553,STANDARD,0,Gladstone,,,VA,"Nelson County",America/New_York,434,NA,US,37.54,-78.84,1500 +24554,STANDARD,0,Gladys,,,VA,"Campbell County",America/New_York,434,NA,US,37.16,-79.08,3170 +24555,STANDARD,0,Glasgow,,,VA,"Rockbridge County",America/New_York,540,NA,US,37.63,-79.45,1690 +24556,STANDARD,0,Goode,,,VA,"Bedford County",America/New_York,,NA,US,37.36,-79.38,3080 +24557,STANDARD,0,Gretna,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.95,-79.36,6060 +24558,STANDARD,0,Halifax,,,VA,"Halifax County",America/New_York,434,NA,US,36.76,-78.93,5250 +24562,STANDARD,0,Howardsville,Scottsville,,VA,"Buckingham County",America/New_York,434,NA,US,37.73,-78.64,390 +24563,STANDARD,0,Hurt,,,VA,"Pittsylvania County",America/New_York,434,NA,US,37.09,-79.29,4180 +24565,STANDARD,0,Java,,,VA,"Pittsylvania County",America/New_York,,NA,US,36.83,-79.23,820 +24566,STANDARD,0,Keeling,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.71,-79.3,1200 +24569,STANDARD,0,"Long Island",,,VA,"Pittsylvania County",America/New_York,434,NA,US,37.08,-79.1,760 +24570,STANDARD,0,Lowry,,,VA,"Bedford County",America/New_York,,NA,US,37.35,-79.42,72 +24571,STANDARD,0,"Lynch Station",,,VA,"Campbell County",America/New_York,,NA,US,37.14,-79.36,1520 +24572,STANDARD,0,"Madison Heights","Madison Hts","Wrights Shop",VA,"Amherst County",America/New_York,434,NA,US,37.43,-79.1,14210 +24574,STANDARD,0,Monroe,,,VA,"Amherst County",America/New_York,434,NA,US,37.6,-79.24,3260 +24576,"PO BOX",0,Naruna,,,VA,"Campbell County",America/New_York,434,NA,US,37.13,-78.95,182 +24577,STANDARD,0,Nathalie,"Lennig, Republican Grove, Republicn Grv",,VA,"Halifax County",America/New_York,434,NA,US,36.93,-78.95,3890 +24578,STANDARD,0,"Natural Bridge","Natural Brg",,VA,"Rockbridge County",America/New_York,540,NA,US,37.63,-79.55,850 +24579,STANDARD,0,"Natural Bridge Station","Naturl Br Sta",,VA,"Rockbridge County",America/New_York,540,NA,US,37.58,-79.5,1140 +24580,STANDARD,0,Nelson,,,VA,"Mecklenburg County",America/New_York,434,NA,US,36.55,-78.67,470 +24581,STANDARD,0,Norwood,,,VA,"Nelson County",America/New_York,434,NA,US,37.66,-78.81,0 +24586,STANDARD,0,Ringgold,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.6,-79.3,4610 +24588,STANDARD,0,Rustburg,,,VA,"Campbell County",America/New_York,434,NA,US,37.28,-79.1,8220 +24589,STANDARD,0,Scottsburg,,,VA,"Halifax County",America/New_York,434,NA,US,36.75,-78.79,1730 +24590,STANDARD,0,Scottsville,,,VA,"Albemarle County",America/New_York,434,NA,US,37.79,-78.49,6990 +24592,STANDARD,0,"South Boston",Turbeville,,VA,"Halifax County",America/New_York,434,NA,US,36.7,-78.9,10940 +24593,STANDARD,0,"Spout Spring",,,VA,"Appomattox County",America/New_York,434,NA,US,37.35,-78.91,1820 +24594,STANDARD,0,Sutherlin,,,VA,"Pittsylvania County",America/New_York,434,NA,US,36.62,-79.18,1350 +24595,"PO BOX",0,"Sweet Briar",,,VA,"Amherst County",America/New_York,434,NA,US,37.56,-79.08,188 +24597,STANDARD,0,"Vernon Hill",Ingram,,VA,"Halifax County",America/New_York,,NA,US,36.79,-79.12,1000 +24598,STANDARD,0,Virgilina,,,VA,"Halifax County",America/New_York,434,NA,US,36.6,-78.79,1450 +24599,STANDARD,0,Wingina,,,VA,"Buckingham County",America/New_York,,NA,US,37.64,-78.73,540 +24601,"PO BOX",0,Amonate,,,VA,"Tazewell County",America/New_York,276,NA,US,37.19,-81.65,50 +24602,STANDARD,0,Bandy,,,VA,"Tazewell County",America/New_York,276,NA,US,37.14,-81.7,500 +24603,STANDARD,0,"Big Rock",Conaway,,VA,"Buchanan County",America/New_York,276,NA,US,37.35,-82.2,620 +24604,"PO BOX",0,Bishop,,,VA,"Tazewell County",America/New_York,276,NA,US,37.21,-81.53,204 +24605,STANDARD,0,Bluefield,Yards,,VA,"Tazewell County",America/New_York,276,NA,US,37.23,-81.26,6710 +24606,"PO BOX",0,Boissevain,,,VA,"Tazewell County",America/New_York,276,NA,US,37.28,-81.39,322 +24607,"PO BOX",0,Breaks,,,VA,"Buchanan County",America/New_York,276,NA,US,37.29,-82.28,308 +24608,"PO BOX",0,"Burkes Garden",Tazewell,,VA,"Tazewell County",America/New_York,276,NA,US,37.1,-81.35,24 +24609,STANDARD,0,"Cedar Bluff",,"Belfast Mills, Indian, Steeleburg, Wardell",VA,"Tazewell County",America/New_York,276,NA,US,37.01,-81.81,4990 +24612,"PO BOX",0,Doran,,,VA,"Tazewell County",America/New_York,276,NA,US,37.09,-81.84,877 +24613,STANDARD,0,"Falls Mills",,,VA,"Tazewell County",America/New_York,276,NA,US,37.26,-81.33,680 +24614,STANDARD,0,Grundy,,"Royal City, Stacy",VA,"Buchanan County",America/New_York,276,NA,US,37.27,-82.1,4840 +24619,"PO BOX",0,Horsepen,,,VA,"McDowell County",America/New_York,,NA,US,37.23,-81.49,63 +24620,STANDARD,0,Hurley,,,VA,"Buchanan County",America/New_York,276,NA,US,37.42,-82.02,1500 +24622,STANDARD,0,"Jewell Ridge","Jewell Valley",,VA,"Buchanan County",America/New_York,276,NA,US,37.18,-81.8,530 +24624,"PO BOX",0,"Keen Mountain",,,VA,"Buchanan County",America/New_York,,NA,US,37.2,-81.95,232 +24627,"PO BOX",0,Mavisdale,,,VA,"Buchanan County",America/New_York,,NA,US,37.19,-82.21,386 +24628,STANDARD,0,Maxie,Harman,,VA,"Buchanan County",America/New_York,276,NA,US,37.31,-82.19,370 +24630,STANDARD,0,"North Tazewell","N Tazewell, Tiptop",,VA,"Tazewell County",America/New_York,276,NA,US,37.16,-81.5,4830 +24631,STANDARD,0,Oakwood,Patterson,,VA,"Buchanan County",America/New_York,276,NA,US,37.21,-81.98,800 +24634,STANDARD,0,"Pilgrims Knob",,,VA,"Buchanan County",America/New_York,276,NA,US,37.29,-81.9,410 +24635,"PO BOX",0,Pocahontas,,,VA,"Tazewell County",America/New_York,276,NA,US,37.3,-81.34,544 +24637,STANDARD,0,"Pounding Mill",,"Paint Lick",VA,"Tazewell County",America/New_York,276,NA,US,37.04,-81.73,2900 +24639,STANDARD,0,Raven,,,VA,"Tazewell County",America/New_York,276,NA,US,37.16,-81.9,2060 +24640,"PO BOX",0,"Red Ash",,,VA,"Tazewell County",America/New_York,276,NA,US,37.12,-81.87,46 +24641,STANDARD,0,Richlands,,,VA,"Tazewell County",America/New_York,276,NA,US,37.09,-81.8,4020 +24646,STANDARD,0,Rowe,,,VA,"Buchanan County",America/New_York,276,NA,US,37.12,-82.03,450 +24647,"PO BOX",0,"Shortt Gap",,,VA,"Buchanan County",America/New_York,,NA,US,37.18,-81.84,62 +24649,STANDARD,0,"Swords Creek",,"Dye, Lynn Spring",VA,"Russell County",America/New_York,276,NA,US,37.08,-81.91,1430 +24651,STANDARD,0,Tazewell,,"Gratton, Maxwell",VA,"Tazewell County",America/New_York,276,NA,US,37.12,-81.51,4410 +24656,STANDARD,0,Vansant,,,VA,"Buchanan County",America/New_York,276,NA,US,37.23,-82.08,2340 +24657,STANDARD,0,Whitewood,,,VA,"Buchanan County",America/New_York,276,NA,US,37.26,-81.88,271 +24658,"PO BOX",0,Wolford,,,VA,"Buchanan County",America/New_York,,NA,US,37.38,-81.99,224 +24701,STANDARD,0,Bluefield,"Bluewell, Green Valley","Ada, Brush Fork, Ceres, Littlesburg, Lorton Lick, Sandlick",WV,"Mercer County",America/New_York,"304,681",NA,US,37.26,-81.21,14750 +24712,STANDARD,0,Athens,,,WV,"Mercer County",America/New_York,304,NA,US,37.42,-81.01,1510 +24714,STANDARD,0,Beeson,,,WV,"Mercer County",America/New_York,304,NA,US,37.48,-81.19,121 +24715,STANDARD,0,Bramwell,,,WV,"Mercer County",America/New_York,304,NA,US,37.34,-81.32,310 +24716,"PO BOX",0,Bud,,,WV,"Wyoming County",America/New_York,304,NA,US,37.52,-81.35,553 +24719,"PO BOX",0,Covel,,,WV,"Wyoming County",America/New_York,304,NA,US,37.49,-81.33,104 +24724,STANDARD,0,Freeman,Coaldale,,WV,"Mercer County",America/New_York,304,NA,US,37.33,-81.3,109 +24726,STANDARD,0,Herndon,,,WV,"Wyoming County",America/New_York,304,NA,US,37.51,-81.36,330 +24729,"PO BOX",0,Hiawatha,,,WV,"Mercer County",America/New_York,304,NA,US,37.45,-81.26,38 +24731,STANDARD,0,Kegley,,,WV,"Mercer County",America/New_York,304,NA,US,37.4,-81.13,340 +24732,"PO BOX",0,Kellysville,,,WV,"Mercer County",America/New_York,304,NA,US,37.34,-80.9,107 +24733,STANDARD,0,Lashmeet,,,WV,"Mercer County",America/New_York,304,NA,US,37.44,-81.21,700 +24736,STANDARD,0,Matoaka,Dott,Giatto,WV,"Mercer County",America/New_York,304,NA,US,37.41,-81.24,450 +24737,"PO BOX",0,Montcalm,,,WV,"Mercer County",America/New_York,304,NA,US,37.35,-81.25,728 +24738,"PO BOX",0,Nemours,,,WV,"Mercer County",America/New_York,304,NA,US,37.3,-81.31,176 +24739,STANDARD,0,Princeton,Oakvale,,WV,"Mercer County",America/New_York,304,NA,US,37.33,-80.96,53 +24740,STANDARD,0,Princeton,"Elgood, Oakvale",,WV,"Mercer County",America/New_York,304,NA,US,37.36,-81.1,12970 +24747,STANDARD,0,Rock,"Duhring, Mc Comas",,WV,"Mercer County",America/New_York,304,NA,US,37.38,-81.23,1830 +24751,"PO BOX",0,Wolfe,,,WV,"Mercer County",America/New_York,304,NA,US,37.29,-81.22,32 +24801,STANDARD,0,Welch,"Capels, Coalwood, Havaco, Hemphill, Skygusty, Superior, Wolf Pen",Maitland,WV,"McDowell County",America/New_York,"304,681",NA,US,37.43,-81.58,2460 +24808,STANDARD,0,Anawalt,Leckie,,WV,"McDowell County",America/New_York,304,NA,US,37.33,-81.44,270 +24811,"PO BOX",0,Avondale,,Garland,WV,"McDowell County",America/New_York,304,NA,US,37.41,-81.8,359 +24813,"PO BOX",0,Bartley,,,WV,"McDowell County",America/New_York,304,NA,US,37.33,-81.73,204 +24815,STANDARD,0,Berwind,"Canebrake, Vallscreek",,WV,"McDowell County",America/New_York,304,NA,US,37.26,-81.66,230 +24816,"PO BOX",0,"Big Sandy",,,WV,"McDowell County",America/New_York,304,NA,US,37.46,-81.71,90 +24817,"PO BOX",0,Bradshaw,,,WV,"McDowell County",America/New_York,304,NA,US,37.35,-81.8,523 +24818,STANDARD,0,Brenton,,,WV,"Wyoming County",America/New_York,304,NA,US,37.6,-81.62,760 +24822,STANDARD,0,"Clear Fork",,,WV,"Wyoming County",America/New_York,304,NA,US,37.64,-81.69,530 +24823,STANDARD,0,"Coal Mountain",,,WV,"Wyoming County",America/New_York,304,NA,US,37.67,-81.73,240 +24826,"PO BOX",0,Cucumber,,,WV,"McDowell County",America/New_York,304,NA,US,37.28,-81.61,73 +24827,STANDARD,0,Cyclone,,,WV,"Wyoming County",America/New_York,304,NA,US,37.74,-81.66,810 +24828,STANDARD,0,Davy,"Asco, Twin Branch",,WV,"McDowell County",America/New_York,"304,681",NA,US,37.47,-81.65,470 +24829,STANDARD,0,Eckman,,,WV,"McDowell County",America/New_York,304,NA,US,37.4,-81.46,118 +24830,STANDARD,0,Elbert,Filbert,,WV,"McDowell County",America/New_York,"304,681",NA,US,37.33,-81.52,111 +24831,STANDARD,0,Elkhorn,,,WV,"McDowell County",America/New_York,304,NA,US,37.39,-81.41,110 +24834,"PO BOX",0,Fanrock,,,WV,"Wyoming County",America/New_York,304,NA,US,37.55,-81.63,148 +24836,"PO BOX",0,Gary,,,WV,"McDowell County",America/New_York,304,NA,US,37.36,-81.53,536 +24839,STANDARD,0,Hanover,,,WV,"Wyoming County",America/New_York,304,NA,US,37.56,-81.81,720 +24842,"PO BOX",1,Hemphill,,,WV,"McDowell County",America/New_York,304,NA,US,37.44,-81.59,0 +24843,"PO BOX",0,Hensley,,,WV,"McDowell County",America/New_York,304,NA,US,37.49,-81.71,85 +24844,STANDARD,0,Iaeger,,Steeles,WV,"McDowell County",America/New_York,304,NA,US,37.46,-81.81,1220 +24845,"PO BOX",0,"Ikes Fork",,,WV,"Wyoming County",America/New_York,304,NA,US,37.53,-81.79,233 +24846,STANDARD,0,Isaban,,,WV,"Mingo County",America/New_York,304,NA,US,37.53,-81.91,144 +24847,"PO BOX",0,Itmann,,,WV,"Wyoming County",America/New_York,304,NA,US,37.58,-81.42,247 +24848,"PO BOX",0,Jenkinjones,,,WV,"McDowell County",America/New_York,304,NA,US,37.28,-81.43,86 +24849,STANDARD,0,Jesse,,,WV,"Wyoming County",America/New_York,304,NA,US,37.66,-81.55,210 +24850,STANDARD,0,Jolo,,,WV,"McDowell County",America/New_York,304,NA,US,37.33,-81.83,580 +24851,"PO BOX",0,Justice,,,WV,"Mingo County",America/New_York,304,NA,US,37.59,-81.84,302 +24853,"PO BOX",0,Kimball,Vivian,,WV,"McDowell County",America/New_York,304,NA,US,37.42,-81.5,632 +24854,"PO BOX",0,Kopperston,,,WV,"Wyoming County",America/New_York,304,NA,US,37.75,-81.56,280 +24855,STANDARD,0,Kyle,,,WV,"McDowell County",America/New_York,304,NA,US,37.4,-81.42,54 +24857,"PO BOX",0,Lynco,,Lillydale,WV,"Wyoming County",America/New_York,304,NA,US,37.67,-81.66,513 +24859,"PO BOX",0,Marianna,Pineville,,WV,"Wyoming County",America/New_York,304,NA,US,37.61,-81.57,0 +24860,STANDARD,0,Matheny,,,WV,"Wyoming County",America/New_York,304,NA,US,37.68,-81.59,390 +24861,"PO BOX",0,Maybeury,,,WV,"McDowell County",America/New_York,304,NA,US,37.37,-81.35,197 +24862,STANDARD,0,Mohawk,,,WV,"McDowell County",America/New_York,304,NA,US,37.47,-81.96,260 +24866,"PO BOX",0,Newhall,,,WV,"McDowell County",America/New_York,304,NA,US,37.26,-81.6,170 +24867,"PO BOX",0,"New Richmond",,,WV,"Wyoming County",America/New_York,304,NA,US,37.6,-81.44,151 +24868,STANDARD,0,Northfork,"Algoma, Ashland, Crumpler, Keystone, Mc Dowell, Powhatan, Worth",,WV,"McDowell County",America/New_York,"304,681",NA,US,37.41,-81.42,780 +24869,STANDARD,0,"North Spring",,,WV,"Wyoming County",America/New_York,304,NA,US,37.56,-81.84,179 +24870,STANDARD,0,Oceana,,"Crany, Hatcher, Rollins Branch, Toneyfork",WV,"Wyoming County",America/New_York,"304,681",NA,US,37.69,-81.63,2800 +24871,"PO BOX",0,Pageton,,,WV,"McDowell County",America/New_York,304,NA,US,37.36,-81.47,165 +24872,STANDARD,0,Panther,,,WV,"McDowell County",America/New_York,304,NA,US,37.49,-81.88,520 +24873,STANDARD,0,Paynesville,,,WV,"McDowell County",America/New_York,"304,681",NA,US,37.37,-81.88,370 +24874,STANDARD,0,Pineville,,,WV,"Wyoming County",America/New_York,304,NA,US,37.58,-81.53,2230 +24878,"PO BOX",0,Premier,,,WV,"McDowell County",America/New_York,304,NA,US,37.43,-81.63,260 +24879,STANDARD,0,Raysal,,Atwell,WV,"McDowell County",America/New_York,304,NA,US,37.31,-81.76,290 +24880,STANDARD,0,"Rock View",,,WV,"Wyoming County",America/New_York,304,NA,US,37.65,-81.53,254 +24881,"PO BOX",0,Roderfield,,,WV,"McDowell County",America/New_York,304,NA,US,37.43,-81.68,432 +24882,STANDARD,0,Simon,,,WV,"Wyoming County",America/New_York,304,NA,US,37.61,-81.76,320 +24884,STANDARD,0,Squire,,,WV,"McDowell County",America/New_York,304,NA,US,37.26,-81.56,206 +24887,"PO BOX",0,Switchback,,,WV,"McDowell County",America/New_York,304,NA,US,37.37,-81.4,44 +24888,"PO BOX",0,Thorpe,,,WV,"McDowell County",America/New_York,304,NA,US,37.39,-81.48,161 +24892,STANDARD,0,War,"Caretta, English, Yukon",,WV,"McDowell County",America/New_York,"304,681",NA,US,37.3,-81.68,730 +24894,"PO BOX",0,Warriormine,,,WV,"McDowell County",America/New_York,304,NA,US,37.27,-81.71,208 +24895,"PO BOX",0,Wilcoe,,,WV,"McDowell County",America/New_York,304,NA,US,37.38,-81.55,117 +24898,STANDARD,0,Wyoming,,,WV,"Wyoming County",America/New_York,304,NA,US,37.59,-81.61,157 +24901,STANDARD,0,Lewisburg,,,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.8,-80.43,7640 +24902,"PO BOX",0,Fairlea,,,WV,"Greenbrier County",America/New_York,304,NA,US,37.77,-80.45,105 +24910,STANDARD,0,Alderson,Dawson,,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.72,-80.64,2960 +24915,STANDARD,0,Arbovale,,,WV,"Pocahontas County",America/New_York,"304,681",NA,US,38.45,-79.75,350 +24916,STANDARD,0,Asbury,Alta,,WV,"Greenbrier County",America/New_York,304,NA,US,37.81,-80.56,310 +24918,STANDARD,0,Ballard,,,WV,"Monroe County",America/New_York,304,NA,US,37.51,-80.75,1160 +24920,STANDARD,0,Bartow,,,WV,"Pocahontas County",America/New_York,304,NA,US,38.58,-79.71,250 +24924,STANDARD,0,Buckeye,,,WV,"Pocahontas County",America/New_York,681,NA,US,38.19,-80.14,340 +24925,STANDARD,0,Caldwell,,,WV,"Greenbrier County",America/New_York,304,NA,US,37.75,-80.34,870 +24927,STANDARD,0,Cass,"Stony Bottom",,WV,"Pocahontas County",America/New_York,"681,304",NA,US,38.45,-79.89,270 +24931,STANDARD,0,Crawley,"Clintonville, Kieffer, Sam Black",,WV,"Greenbrier County",America/New_York,304,NA,US,37.94,-80.61,1340 +24934,STANDARD,0,Dunmore,,,WV,"Pocahontas County",America/New_York,304,NA,US,38.35,-79.82,410 +24935,STANDARD,0,"Forest Hill","Indian Mills",,WV,"Summers County",America/New_York,304,NA,US,37.55,-80.83,400 +24938,STANDARD,0,Frankford,"Anthony, Friars Hill",,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.91,-80.38,1300 +24941,STANDARD,0,"Gap Mills","Sweet Springs",,WV,"Monroe County",America/New_York,304,NA,US,37.56,-80.41,770 +24943,STANDARD,0,"Grassy Meadows","Grassy Mdws",,WV,"Greenbrier County",America/New_York,304,NA,US,37.84,-80.74,118 +24944,STANDARD,0,"Green Bank",,,WV,"Pocahontas County",America/New_York,304,NA,US,38.39,-79.78,510 +24945,STANDARD,0,Greenville,,,WV,"Monroe County",America/New_York,304,NA,US,37.53,-80.66,400 +24946,STANDARD,0,Hillsboro,"Droop, Mill Point, Seebert",,WV,"Pocahontas County",America/New_York,"681,304",NA,US,38.13,-80.21,940 +24951,STANDARD,0,Lindside,,,WV,"Monroe County",America/New_York,304,NA,US,37.45,-80.66,1330 +24954,STANDARD,0,Marlinton,"Minehaha Spgs, Minnehaha Springs",Minnehaha,WV,"Pocahontas County",America/New_York,"681,304",NA,US,38.22,-80.08,2570 +24957,STANDARD,0,Maxwelton,,,WV,"Greenbrier County",America/New_York,304,NA,US,37.89,-80.43,420 +24961,STANDARD,1,"White Sulphur Springs",,,WV,"Greenbrier County",America/New_York,304,NA,US,37.97,-80.11,0 +24962,STANDARD,0,"Pence Springs",,,WV,"Summers County",America/New_York,304,NA,US,37.66,-80.72,136 +24963,STANDARD,0,Peterstown,Bozoo,,WV,"Monroe County",America/New_York,304,NA,US,37.44,-80.76,3170 +24966,STANDARD,0,Renick,"Auto, Falling Sprg",,WV,"Greenbrier County",America/New_York,304,NA,US,37.98,-80.36,970 +24970,STANDARD,0,Ronceverte,"Fort Spring, Organ Cave",,WV,"Greenbrier County",America/New_York,304,NA,US,37.74,-80.47,3320 +24974,STANDARD,0,Secondcreek,,,WV,"Monroe County",America/New_York,304,NA,US,37.64,-80.45,179 +24976,STANDARD,0,"Sinks Grove",Pickaway,,WV,"Monroe County",America/New_York,304,NA,US,37.66,-80.52,910 +24977,STANDARD,0,Smoot,"Meadow Bluff",,WV,"Greenbrier County",America/New_York,304,NA,US,37.9,-80.69,380 +24981,STANDARD,0,Talcott,Ballengee,,WV,"Summers County",America/New_York,304,NA,US,37.65,-80.75,560 +24983,STANDARD,0,Union,"Glace, Sarton, Willow Bend",,WV,"Monroe County",America/New_York,304,NA,US,37.59,-80.54,1800 +24984,STANDARD,0,Waiteville,,,WV,"Monroe County",America/New_York,304,NA,US,37.48,-80.43,90 +24985,STANDARD,0,Wayside,,,WV,"Monroe County",America/New_York,304,NA,US,37.58,-80.7,225 +24986,STANDARD,0,"White Sulphur Springs","Neola, Wht Sphr Spgs, Wht Sulphur S, Wht Sulphur Spgs",,WV,"Greenbrier County",America/New_York,304,NA,US,37.79,-80.29,4050 +24991,STANDARD,0,Williamsburg,Trout,,WV,"Greenbrier County",America/New_York,304,NA,US,38.02,-80.5,330 +24993,STANDARD,0,Wolfcreek,,,WV,"Monroe County",America/New_York,304,NA,US,37.66,-80.63,55 +25002,"PO BOX",0,Alloy,,,WV,"Fayette County",America/New_York,304,NA,US,38.13,-81.24,155 +25003,STANDARD,0,"Alum Creek",,,WV,"Lincoln County",America/New_York,304,NA,US,38.28,-81.84,2080 +25005,STANDARD,0,Amma,,,WV,"Roane County",America/New_York,681,NA,US,38.58,-81.26,260 +25007,STANDARD,0,Arnett,,,WV,"Raleigh County",America/New_York,304,NA,US,37.84,-81.43,360 +25008,STANDARD,0,Artie,,,WV,"Raleigh County",America/New_York,304,NA,US,37.95,-81.34,152 +25009,STANDARD,0,Ashford,,,WV,"Boone County",America/New_York,304,NA,US,38.19,-81.71,750 +25011,"PO BOX",0,Bancroft,,,WV,"Putnam County",America/New_York,304,NA,US,38.51,-81.84,519 +25015,STANDARD,0,Belle,"Diamond, Dupont City, Quincy, Shrewsbury, Witcher",,WV,"Kanawha County",America/New_York,304,NA,US,38.23,-81.53,3300 +25019,STANDARD,0,Bickmore,Fola,,WV,"Clay County",America/New_York,304,NA,US,38.37,-81.1,430 +25021,STANDARD,0,Bim,,,WV,"Boone County",America/New_York,304,NA,US,37.92,-81.68,201 +25022,"PO BOX",0,Blair,,,WV,"Logan County",America/New_York,304,NA,US,37.86,-81.83,143 +25024,STANDARD,0,Bloomingrose,,,WV,"Boone County",America/New_York,304,NA,US,38.15,-81.62,350 +25025,STANDARD,0,Blount,,,WV,"Kanawha County",America/New_York,304,NA,US,38.3,-81.38,143 +25026,"PO BOX",0,"Blue Creek",,,WV,"Kanawha County",America/New_York,304,NA,US,38.47,-81.51,101 +25028,STANDARD,0,"Bob White",,,WV,"Boone County",America/New_York,304,NA,US,37.95,-81.72,328 +25030,STANDARD,0,Bomont,,,WV,"Clay County",America/New_York,304,NA,US,38.45,-81.23,350 +25031,"PO BOX",0,Boomer,,,WV,"Fayette County",America/New_York,304,NA,US,38.15,-81.27,514 +25033,STANDARD,0,Buffalo,,,WV,"Putnam County",America/New_York,304,NA,US,38.61,-81.98,1780 +25035,STANDARD,0,"Cabin Creek",,Chelyan,WV,"Kanawha County",America/New_York,304,NA,US,38.17,-81.52,870 +25036,"PO BOX",0,Cannelton,,,WV,"Fayette County",America/New_York,304,NA,US,38.21,-81.26,495 +25039,STANDARD,0,"Cedar Grove",,,WV,"Kanawha County",America/New_York,304,NA,US,38.22,-81.42,790 +25040,"PO BOX",0,"Charlton Heights","Charlton Hgts",,WV,"Fayette County",America/New_York,304,NA,US,38.13,-81.24,460 +25043,STANDARD,0,Clay,,,WV,"Clay County",America/New_York,304,NA,US,38.46,-81.08,1160 +25044,STANDARD,0,"Clear Creek",,,WV,"Raleigh County",America/New_York,304,NA,US,37.89,-81.31,250 +25045,STANDARD,0,Clendenin,"Clio, Corton, Quick",,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.48,-81.34,3850 +25047,STANDARD,0,Clothier,,,WV,"Logan County",America/New_York,304,NA,US,37.92,-81.77,230 +25048,STANDARD,0,Colcord,,,WV,"Raleigh County",America/New_York,304,NA,US,37.95,-81.44,141 +25049,STANDARD,0,Comfort,,,WV,"Boone County",America/New_York,304,NA,US,38.12,-81.57,550 +25051,STANDARD,0,Costa,,,WV,"Boone County",America/New_York,304,NA,US,38.16,-81.71,174 +25053,STANDARD,0,Danville,,,WV,"Boone County",America/New_York,304,NA,US,38.08,-81.83,3030 +25054,"PO BOX",0,Dawes,,,WV,"Kanawha County",America/New_York,304,NA,US,38.11,-81.49,579 +25057,"PO BOX",0,"Deep Water",,,WV,"Fayette County",America/New_York,304,NA,US,38.12,-81.25,218 +25059,STANDARD,0,Dixie,,,WV,"Fayette County",America/New_York,304,NA,US,38.23,-81.21,430 +25060,STANDARD,0,Dorothy,Ameagle,,WV,"Raleigh County",America/New_York,304,NA,US,37.96,-81.49,280 +25061,"PO BOX",0,Drybranch,,,WV,"Kanawha County",America/New_York,304,NA,US,38.17,-81.44,385 +25062,STANDARD,0,"Dry Creek",,,WV,"Raleigh County",America/New_York,304,NA,US,37.88,-81.43,198 +25063,STANDARD,0,Duck,"Elmira, Harrison, Strange Creek",,WV,"Braxton County",America/New_York,"304,681",NA,US,38.56,-80.97,1070 +25064,STANDARD,0,Dunbar,,,WV,"Kanawha County",America/New_York,304,NA,US,38.36,-81.73,7320 +25067,STANDARD,0,"East Bank","Crown Hill",,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.21,-81.44,810 +25070,"PO BOX",0,Eleanor,,,WV,"Putnam County",America/New_York,304,NA,US,38.53,-81.93,1700 +25071,STANDARD,0,Elkview,Frame,,WV,"Kanawha County",America/New_York,304,NA,US,38.43,-81.47,8760 +25075,STANDARD,0,Eskdale,"Carbon, Decota, Kayford, Leewood, Ohley",,WV,"Kanawha County",America/New_York,304,NA,US,38.06,-81.41,450 +25076,"PO BOX",0,Ethel,,,WV,"Logan County",America/New_York,304,NA,US,37.87,-81.93,354 +25079,STANDARD,0,"Falling Rock",,,WV,"Kanawha County",America/New_York,304,NA,US,38.47,-81.38,160 +25081,STANDARD,0,Foster,,,WV,"Boone County",America/New_York,304,NA,US,38.09,-81.77,900 +25082,STANDARD,0,"Fraziers Bottom","Fraziers Btm, Pliny",,WV,"Putnam County",America/New_York,304,NA,US,38.54,-82.02,1730 +25083,STANDARD,0,Gallagher,"Burnwell, Livingston, Mahan, Standard, Whittaker",,WV,"Kanawha County",America/New_York,304,NA,US,38.07,-81.37,390 +25085,STANDARD,0,"Gauley Bridge",Brownsville,,WV,"Fayette County",America/New_York,304,NA,US,38.17,-81.21,680 +25086,"PO BOX",0,Glasgow,,,WV,"Kanawha County",America/New_York,304,NA,US,38.2,-81.42,714 +25088,STANDARD,0,Glen,,,WV,"Clay County",America/New_York,304,NA,US,38.35,-81.23,91 +25090,"PO BOX",0,"Glen Ferris",,,WV,"Fayette County",America/New_York,304,NA,US,38.16,-81.22,104 +25093,STANDARD,0,Gordon,,,WV,"Boone County",America/New_York,304,NA,US,37.99,-81.68,221 +25102,"PO BOX",0,Handley,,,WV,"Kanawha County",America/New_York,304,NA,US,38.18,-81.36,246 +25103,STANDARD,0,Hansford,,,WV,"Kanawha County",America/New_York,304,NA,US,38.18,-81.38,230 +25106,STANDARD,0,Henderson,,,WV,"Mason County",America/New_York,304,NA,US,38.83,-82.13,480 +25107,STANDARD,0,Hernshaw,,,WV,"Kanawha County",America/New_York,304,NA,US,38.2,-81.61,440 +25108,STANDARD,0,Hewett,,,WV,"Boone County",America/New_York,304,NA,US,37.96,-81.85,510 +25109,"PO BOX",0,Hometown,,,WV,"Putnam County",America/New_York,304,NA,US,38.53,-81.85,410 +25110,"PO BOX",0,Hugheston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.22,-81.31,368 +25111,STANDARD,0,Indore,,,WV,"Clay County",America/New_York,304,NA,US,38.35,-81.16,410 +25112,"PO BOX",0,Institute,,,WV,"Kanawha County",America/New_York,304,NA,US,38.38,-81.77,400 +25113,STANDARD,0,Ivydale,"Big Otter",,WV,"Clay County",America/New_York,"304,681",NA,US,38.52,-81.02,560 +25114,STANDARD,0,Jeffrey,Ramage,,WV,"Boone County",America/New_York,304,NA,US,37.99,-81.79,300 +25115,STANDARD,0,"Kanawha Falls",,,WV,"Fayette County",America/New_York,304,NA,US,38.12,-81.18,22 +25118,STANDARD,0,Kimberly,,,WV,"Fayette County",America/New_York,304,NA,US,38.12,-81.32,390 +25119,STANDARD,0,Kincaid,,,WV,"Fayette County",America/New_York,304,NA,US,38.04,-81.28,370 +25121,STANDARD,0,Lake,,,WV,"Logan County",America/New_York,304,NA,US,37.92,-81.9,490 +25123,STANDARD,0,Leon,"Arbuckle, Grimms Landing, Grimms Lndg, Robertsburg",,WV,"Mason County",America/New_York,304,NA,US,38.74,-81.95,2560 +25124,STANDARD,0,Liberty,,,WV,"Putnam County",America/New_York,304,NA,US,38.63,-81.76,1040 +25125,STANDARD,0,Lizemores,Bentree,,WV,"Clay County",America/New_York,304,NA,US,38.33,-81.16,560 +25126,"PO BOX",0,London,,,WV,"Kanawha County",America/New_York,304,NA,US,38.2,-81.37,210 +25130,STANDARD,0,Madison,,,WV,"Boone County",America/New_York,304,NA,US,38.05,-81.8,2810 +25132,STANDARD,0,Mammoth,,,WV,"Kanawha County",America/New_York,304,NA,US,38.29,-81.34,190 +25133,STANDARD,0,Maysel,,,WV,"Clay County",America/New_York,304,NA,US,38.48,-81.12,500 +25134,"PO BOX",0,Miami,,,WV,"Kanawha County",America/New_York,304,NA,US,38.16,-81.49,399 +25136,STANDARD,0,Montgomery,,,WV,"Fayette County",America/New_York,304,NA,US,38.17,-81.31,970 +25139,STANDARD,0,"Mount Carbon",,,WV,"Fayette County",America/New_York,304,NA,US,38.14,-81.29,420 +25140,STANDARD,0,Naoma,"Montcoal, Stickney, Sundial",,WV,"Raleigh County",America/New_York,304,NA,US,37.89,-81.52,550 +25141,STANDARD,0,Nebo,,,WV,"Clay County",America/New_York,304,NA,US,38.62,-81.02,238 +25142,STANDARD,0,Nellis,,,WV,"Boone County",America/New_York,304,NA,US,38.15,-81.73,270 +25143,STANDARD,0,Nitro,,,WV,"Kanawha County",America/New_York,304,NA,US,38.42,-81.82,7070 +25148,STANDARD,0,Orgas,,,WV,"Boone County",America/New_York,304,NA,US,38.05,-81.56,240 +25149,"PO BOX",0,Ottawa,,,WV,"Boone County",America/New_York,304,NA,US,37.94,-81.76,227 +25152,"PO BOX",0,Page,,,WV,"Fayette County",America/New_York,304,NA,US,38.06,-81.25,222 +25154,STANDARD,0,Peytona,,,WV,"Boone County",America/New_York,304,NA,US,38.12,-81.7,630 +25156,"PO BOX",0,Pinch,,,WV,"Kanawha County",America/New_York,304,NA,US,38.18,-81.34,867 +25159,STANDARD,0,Poca,Lanham,,WV,"Putnam County",America/New_York,304,NA,US,38.47,-81.81,4400 +25160,STANDARD,0,"Pond Gap",,Amelia,WV,"Kanawha County",America/New_York,304,NA,US,38.28,-81.28,210 +25161,STANDARD,0,Powellton,,,WV,"Fayette County",America/New_York,304,NA,US,38.05,-81.32,370 +25162,"PO BOX",0,Pratt,,,WV,"Kanawha County",America/New_York,304,NA,US,38.21,-81.39,529 +25164,STANDARD,0,Procious,"Ovapa, Pigeon",,WV,"Clay County",America/New_York,681,NA,US,38.5,-81.21,890 +25165,STANDARD,0,Racine,,,WV,"Boone County",America/New_York,304,NA,US,38.16,-81.65,470 +25168,STANDARD,0,"Red House",,,WV,"Putnam County",America/New_York,304,NA,US,38.55,-81.89,2450 +25169,STANDARD,0,Ridgeview,,,WV,"Boone County",America/New_York,304,NA,US,38.15,-81.78,250 +25173,STANDARD,0,Robson,"Beards Fork",,WV,"Fayette County",America/New_York,304,NA,US,38.09,-81.24,300 +25174,STANDARD,0,"Rock Creek",,,WV,"Raleigh County",America/New_York,304,NA,US,37.87,-81.41,300 +25177,STANDARD,0,"Saint Albans",Jefferson,,WV,"Kanawha County",America/New_York,304,NA,US,38.37,-81.81,19350 +25180,STANDARD,0,Saxon,,,WV,"Raleigh County",America/New_York,304,NA,US,37.78,-81.43,50 +25181,STANDARD,0,Seth,Prenter,"Williams Mountain",WV,"Boone County",America/New_York,304,NA,US,38.09,-81.64,1060 +25183,"PO BOX",0,Sharples,,,WV,"Logan County",America/New_York,304,NA,US,37.93,-81.8,142 +25185,UNIQUE,0,"Mount Olive",,"Mt Olive Crrctnl Complex",WV,"Fayette County",America/New_York,304,NA,US,38.24,-81.24,69 +25186,"PO BOX",0,Smithers,Longacre,,WV,"Fayette County",America/New_York,304,NA,US,38.17,-81.3,791 +25187,STANDARD,0,Southside,,,WV,"Mason County",America/New_York,304,NA,US,38.7,-81.99,490 +25193,STANDARD,0,Sylvester,,,WV,"Boone County",America/New_York,304,NA,US,38.04,-81.51,250 +25201,"PO BOX",0,Tad,,,WV,"Kanawha County",America/New_York,304,NA,US,38.34,-81.49,344 +25202,STANDARD,0,Tornado,"Upper Falls",,WV,"Kanawha County",America/New_York,304,NA,US,38.33,-81.85,1220 +25203,STANDARD,0,"Turtle Creek",,,WV,"Boone County",America/New_York,304,NA,US,38.02,-81.88,240 +25204,STANDARD,0,Twilight,Bandytown,,WV,"Boone County",America/New_York,304,NA,US,37.92,-81.62,123 +25205,"PO BOX",0,Uneeda,,,WV,"Boone County",America/New_York,304,NA,US,38.02,-81.79,423 +25206,STANDARD,0,Van,,,WV,"Boone County",America/New_York,304,NA,US,37.95,-81.69,380 +25208,STANDARD,0,Wharton,"Bald Knob, Barrett",,WV,"Boone County",America/New_York,304,NA,US,37.9,-81.69,610 +25209,STANDARD,0,Whitesville,"Garrison, Packsville, Pettus",,WV,"Boone County",America/New_York,"304,681",NA,US,37.97,-81.53,730 +25211,"PO BOX",0,Widen,,,WV,"Clay County",America/New_York,304,NA,US,38.45,-80.88,72 +25213,STANDARD,0,Winfield,,,WV,"Putnam County",America/New_York,304,NA,US,38.52,-81.88,5690 +25214,STANDARD,0,Winifrede,,,WV,"Kanawha County",America/New_York,304,NA,US,38.19,-81.54,470 +25231,STANDARD,0,Advent,,,WV,"Jackson County",America/New_York,304,NA,US,38.62,-81.56,43 +25234,STANDARD,0,Arnoldsburg,"Sand Ridge",,WV,"Calhoun County",America/New_York,"304,681",NA,US,38.78,-81.12,680 +25235,STANDARD,0,Chloe,Floe,,WV,"Calhoun County",America/New_York,304,NA,US,38.67,-81.09,730 +25239,STANDARD,0,Cottageville,,,WV,"Jackson County",America/New_York,304,NA,US,38.85,-81.81,1360 +25241,STANDARD,0,Evans,,,WV,"Jackson County",America/New_York,304,NA,US,38.8,-81.8,1550 +25243,STANDARD,0,Gandeeville,Harmony,,WV,"Roane County",America/New_York,304,NA,US,38.69,-81.46,750 +25244,STANDARD,0,Gay,,,WV,"Jackson County",America/New_York,304,NA,US,38.77,-81.55,550 +25245,STANDARD,0,Given,"Rock Castle",,WV,"Jackson County",America/New_York,304,NA,US,38.7,-81.76,850 +25247,"PO BOX",0,Hartford,"Hartford City",,WV,"Mason County",America/New_York,304,NA,US,39.01,-82.01,458 +25248,STANDARD,0,Kenna,"Kentuck, Romance",,WV,"Jackson County",America/New_York,304,NA,US,38.67,-81.66,2630 +25251,STANDARD,0,"Left Hand",,,WV,"Roane County",America/New_York,681,NA,US,38.61,-81.24,300 +25252,STANDARD,0,"Le Roy","Duncan, Liverpool",,WV,"Jackson County",America/New_York,304,NA,US,38.95,-81.51,870 +25253,STANDARD,0,Letart,,,WV,"Mason County",America/New_York,"681,304",NA,US,38.88,-81.97,1570 +25259,STANDARD,0,Looneyville,"Linden, Tariff",,WV,"Roane County",America/New_York,304,NA,US,38.66,-81.29,530 +25260,STANDARD,0,Mason,Clifton,,WV,"Mason County",America/New_York,"304,681",NA,US,39,-82.03,1230 +25261,STANDARD,0,Millstone,,,WV,"Calhoun County",America/New_York,304,NA,US,38.85,-81.07,250 +25262,STANDARD,0,Millwood,,,WV,"Jackson County",America/New_York,304,NA,US,38.9,-81.81,830 +25264,STANDARD,0,"Mount Alto",,,WV,"Jackson County",America/New_York,304,NA,US,38.86,-81.87,300 +25265,"PO BOX",0,"New Haven",,,WV,"Mason County",America/New_York,304,NA,US,38.99,-81.96,1284 +25266,STANDARD,0,Newton,Uler,,WV,"Roane County",America/New_York,304,NA,US,38.59,-81.15,570 +25267,STANDARD,0,Normantown,"Letter Gap, Lockney, Stumptown",,WV,"Gilmer County",America/New_York,304,NA,US,38.89,-80.95,560 +25268,STANDARD,0,Orma,Minnora,,WV,"Calhoun County",America/New_York,304,NA,US,38.74,-81.09,430 +25270,STANDARD,0,Reedy,,,WV,"Roane County",America/New_York,304,NA,US,38.89,-81.42,680 +25271,STANDARD,0,Ripley,"Statts Mills",Fairplain,WV,"Jackson County",America/New_York,"304,681",NA,US,38.82,-81.7,7460 +25275,STANDARD,0,Sandyville,,,WV,"Jackson County",America/New_York,304,NA,US,38.9,-81.64,1840 +25276,STANDARD,0,Spencer,,,WV,"Roane County",America/New_York,304,NA,US,38.8,-81.35,5450 +25285,STANDARD,0,Wallback,"Valley Fork",,WV,"Clay County",America/New_York,304,NA,US,38.54,-81.1,550 +25286,STANDARD,0,Walton,,,WV,"Roane County",America/New_York,304,NA,US,38.6,-81.4,1110 +25287,STANDARD,0,"West Columbia",Lakin,,WV,"Mason County",America/New_York,"304,681",NA,US,38.95,-82.05,560 +25301,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.35,-81.63,1710 +25302,STANDARD,0,Charleston,"Big Chimney",,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.39,-81.6,11460 +25303,STANDARD,0,"South Charleston","Charleston, S Charleston",,WV,"Kanawha County",America/New_York,304,NA,US,38.36,-81.69,6360 +25304,STANDARD,0,Charleston,,"Kanawha City",WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.59,6310 +25305,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.34,-81.61,0 +25306,STANDARD,0,Charleston,Malden,,WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.5,5150 +25309,STANDARD,0,"South Charleston","Charleston, S Charleston",,WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.75,10170 +25311,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.37,-81.56,7030 +25312,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.45,-81.66,7230 +25313,STANDARD,0,Charleston,"Cross Lanes",,WV,"Kanawha County",America/New_York,304,NA,US,38.42,-81.76,10510 +25314,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.31,-81.64,13070 +25315,STANDARD,0,Charleston,"Chesapeake, Marmet",,WV,"Kanawha County",America/New_York,304,NA,US,38.22,-81.56,2210 +25317,UNIQUE,0,Charleston,,"Wv Dept Of Motor Veh",WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25320,STANDARD,0,Charleston,Sissonville,,WV,"Kanawha County",America/New_York,304,NA,US,38.54,-81.63,4200 +25321,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,108 +25322,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,109 +25323,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,95 +25324,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,77 +25325,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,62 +25326,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,62 +25327,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,78 +25328,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,70 +25329,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,57 +25330,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,72 +25331,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25332,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25333,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25334,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25335,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25336,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25337,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,26 +25338,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25339,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,260 +25350,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25356,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,357 +25357,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,141 +25358,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,125 +25360,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,745 +25361,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,187 +25362,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,549 +25364,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,373 +25365,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,174 +25375,"PO BOX",0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,137 +25387,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25389,STANDARD,0,Charleston,,,WV,"Kanawha County",America/New_York,"304,681",NA,US,38.35,-81.63,0 +25392,UNIQUE,0,Charleston,,"United Bank",WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25396,UNIQUE,0,Charleston,,Verizon,WV,"Kanawha County",America/New_York,304,NA,US,38.35,-81.63,0 +25401,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.46,-77.97,11740 +25402,"PO BOX",0,Martinsburg,,,WV,"Berkeley County",America/New_York,304,NA,US,39.46,-77.96,2220 +25403,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.47,-78.01,13860 +25404,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.46,-77.96,19200 +25405,STANDARD,0,Martinsburg,,,WV,"Berkeley County",America/New_York,304,NA,US,39.41,-77.96,12200 +25410,"PO BOX",0,Bakerton,,,WV,"Washington County",America/New_York,304,NA,US,39.36,-77.76,101 +25411,STANDARD,0,"Berkeley Springs","Berkeley Spgs, Hancock, Unger",,WV,"Morgan County",America/New_York,304,NA,US,39.55,-78.21,10770 +25413,STANDARD,0,"Bunker Hill",,,WV,"Berkeley County",America/New_York,304,NA,US,39.32,-78.05,8450 +25414,STANDARD,0,"Charles Town",,,WV,"Jefferson County",America/New_York,304,NA,US,39.28,-77.85,17310 +25419,STANDARD,0,"Falling Waters","Falling Wtrs",,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.55,-77.89,10620 +25420,STANDARD,0,Gerrardstown,,,WV,"Berkeley County",America/New_York,304,NA,US,39.37,-78.11,3840 +25421,STANDARD,0,Glengary,,,WV,"Berkeley County",America/New_York,304,NA,US,39.38,-78.15,222 +25422,STANDARD,0,"Great Cacapon",,,WV,"Morgan County",America/New_York,304,NA,US,39.62,-78.29,1230 +25423,"PO BOX",0,Halltown,,,WV,"Jefferson County",America/New_York,304,NA,US,39.31,-77.76,195 +25425,STANDARD,0,"Harpers Ferry",Bolivar,,WV,"Jefferson County",America/New_York,304,NA,US,39.32,-77.74,11780 +25427,STANDARD,0,Hedgesville,"Cherry Run, Jones Springs",,WV,"Berkeley County",America/New_York,"304,681",NA,US,39.55,-77.99,14650 +25428,STANDARD,0,Inwood,,,WV,"Berkeley County",America/New_York,304,NA,US,39.35,-78.05,11510 +25429,UNIQUE,1,Martinsburg,"N Thompson Outfitters",,WV,"Berkeley County",America/New_York,304,NA,US,39.32,-77.94,0 +25430,STANDARD,0,Kearneysville,Middleway,,WV,"Jefferson County",America/New_York,304,NA,US,39.38,-77.88,7640 +25431,STANDARD,0,Levels,,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.49,-78.57,240 +25432,STANDARD,0,Millville,,,WV,"Jefferson County",America/New_York,304,NA,US,39.31,-77.78,257 +25434,STANDARD,0,"Paw Paw",,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.53,-78.45,1700 +25437,STANDARD,0,Points,,,WV,"Hampshire County",America/New_York,304,NA,US,39.43,-78.57,400 +25438,STANDARD,0,Ranson,,"Forrester Center",WV,"Jefferson County",America/New_York,304,NA,US,39.32,-77.86,6520 +25440,"PO BOX",0,Ridgeway,,,WV,"Berkeley County",America/New_York,304,NA,US,39.3,-78.07,0 +25441,"PO BOX",0,Rippon,,,WV,"Jefferson County",America/New_York,304,NA,US,39.22,-77.9,317 +25442,STANDARD,0,"Shenandoah Junction","Shendoah Jct",,WV,"Jefferson County",America/New_York,304,NA,US,39.35,-77.84,1690 +25443,STANDARD,0,Shepherdstown,,,WV,"Jefferson County",America/New_York,304,NA,US,39.43,-77.8,6450 +25444,STANDARD,0,Slanesville,,,WV,"Hampshire County",America/New_York,304,NA,US,39.37,-78.52,700 +25446,STANDARD,0,"Summit Point",,,WV,"Jefferson County",America/New_York,304,NA,US,39.24,-77.95,1260 +25501,STANDARD,0,Alkol,,,WV,"Lincoln County",America/New_York,304,NA,US,38.15,-81.97,990 +25502,STANDARD,0,"Apple Grove",,,WV,"Mason County",America/New_York,304,NA,US,38.66,-82.12,910 +25503,STANDARD,0,Ashton,,,WV,"Mason County",America/New_York,304,NA,US,38.61,-82.12,630 +25504,STANDARD,0,Barboursville,,,WV,"Cabell County",America/New_York,304,NA,US,38.4,-82.29,10440 +25505,STANDARD,0,"Big Creek",,,WV,"Logan County",America/New_York,304,NA,US,38.01,-82.03,250 +25506,STANDARD,0,Branchland,"Palermo, Sias",,WV,"Lincoln County",America/New_York,304,NA,US,38.25,-82.25,3220 +25507,"PO BOX",0,Ceredo,,,WV,"Wayne County",America/New_York,304,NA,US,38.4,-82.56,1274 +25508,STANDARD,0,Chapmanville,Shively,,WV,"Logan County",America/New_York,304,NA,US,37.97,-82.01,6410 +25510,STANDARD,0,Culloden,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.06,4310 +25511,STANDARD,0,Dunlow,,,WV,"Wayne County",America/New_York,"681,304",NA,US,38.03,-82.34,650 +25512,STANDARD,0,"East Lynn",,,WV,"Wayne County",America/New_York,304,NA,US,38.19,-82.32,690 +25514,STANDARD,0,"Fort Gay",Glenhayes,,WV,"Wayne County",America/New_York,304,NA,US,38.11,-82.59,2890 +25515,STANDARD,0,"Gallipolis Ferry","Galipolis Fry",,WV,"Mason County",America/New_York,304,NA,US,38.76,-82.11,1630 +25517,STANDARD,0,Genoa,Radnor,,WV,"Wayne County",America/New_York,"304,681",NA,US,38.07,-82.46,1260 +25520,STANDARD,0,Glenwood,,,WV,"Mason County",America/New_York,304,NA,US,38.54,-82.14,1090 +25521,STANDARD,0,Griffithsville,Griffithsvle,,WV,"Lincoln County",America/New_York,304,NA,US,38.24,-81.99,810 +25523,STANDARD,0,Hamlin,Sweetland,,WV,"Lincoln County",America/New_York,"304,681",NA,US,38.27,-82.1,2030 +25524,STANDARD,0,Harts,"Ferrellsburg, Leet",,WV,"Lincoln County",America/New_York,304,NA,US,38.03,-82.13,2480 +25526,STANDARD,0,Hurricane,,,WV,"Putnam County",America/New_York,"304,681",NA,US,38.43,-82.01,19950 +25529,STANDARD,0,Julian,,,WV,"Boone County",America/New_York,304,NA,US,38.13,-81.86,600 +25530,STANDARD,0,Kenova,,,WV,"Wayne County",America/New_York,304,NA,US,38.4,-82.58,4550 +25534,STANDARD,0,Kiahsville,"Cove Gap",,WV,"Wayne County",America/New_York,304,NA,US,38.06,-82.26,132 +25535,STANDARD,0,Lavalette,,,WV,"Wayne County",America/New_York,304,NA,US,38.32,-82.41,2130 +25537,STANDARD,0,Lesage,,,WV,"Cabell County",America/New_York,304,NA,US,38.48,-82.3,1710 +25540,STANDARD,0,Midkiff,,,WV,"Lincoln County",America/New_York,304,NA,US,38.18,-82.16,230 +25541,STANDARD,0,Milton,,,WV,"Cabell County",America/New_York,304,NA,US,38.43,-82.13,8290 +25544,STANDARD,0,Myra,,,WV,"Lincoln County",America/New_York,304,NA,US,38.22,-82.13,34 +25545,STANDARD,0,Ona,,,WV,"Cabell County",America/New_York,304,NA,US,38.48,-82.22,4140 +25547,STANDARD,0,"Pecks Mill",,,WV,"Logan County",America/New_York,304,NA,US,37.92,-81.95,770 +25550,STANDARD,0,"Point Pleasant","Pt Pleasant",,WV,"Mason County",America/New_York,304,NA,US,38.85,-82.13,6780 +25555,STANDARD,0,Prichard,,,WV,"Wayne County",America/New_York,304,NA,US,38.21,-82.56,1770 +25557,STANDARD,0,Ranger,,,WV,"Lincoln County",America/New_York,304,NA,US,38.11,-82.17,950 +25559,STANDARD,0,"Salt Rock",,,WV,"Cabell County",America/New_York,304,NA,US,38.32,-82.24,1860 +25560,STANDARD,0,"Scott Depot",,,WV,"Putnam County",America/New_York,"304,681",NA,US,38.44,-81.89,8580 +25562,"PO BOX",0,Shoals,,,WV,"Wayne County",America/New_York,304,NA,US,38.32,-82.53,127 +25564,STANDARD,0,Sod,,,WV,"Lincoln County",America/New_York,304,NA,US,38.26,-81.88,1070 +25565,STANDARD,0,Spurlockville,Morrisvale,,WV,"Lincoln County",America/New_York,304,NA,US,38.1,-81.96,430 +25567,STANDARD,0,Sumerco,,,WV,"Lincoln County",America/New_York,304,NA,US,38.19,-81.89,670 +25569,"PO BOX",0,Teays,,,WV,"Putnam County",America/New_York,304,NA,US,38.43,-81.89,117 +25570,STANDARD,0,Wayne,,,WV,"Wayne County",America/New_York,304,NA,US,38.22,-82.44,4670 +25571,STANDARD,0,"West Hamlin",,,WV,"Lincoln County",America/New_York,304,NA,US,38.28,-82.19,1940 +25572,STANDARD,0,Woodville,Alkol,,WV,"Lincoln County",America/New_York,304,NA,US,38.15,-81.89,0 +25573,STANDARD,0,Yawkey,,,WV,"Lincoln County",America/New_York,304,NA,US,38.2,-81.95,620 +25601,STANDARD,0,Logan,"Mitchell Hts, Monaville, Rossmore, West Logan",,WV,"Logan County",America/New_York,304,NA,US,37.84,-81.98,3890 +25606,"PO BOX",0,Accoville,,Crown,WV,"Logan County",America/New_York,304,NA,US,37.78,-81.85,803 +25607,STANDARD,0,Amherstdale,Robinette,,WV,"Logan County",America/New_York,304,NA,US,37.8,-81.75,620 +25608,STANDARD,0,Baisden,,,WV,"Mingo County",America/New_York,304,NA,US,37.57,-81.89,470 +25611,"PO BOX",0,Bruno,,,WV,"Logan County",America/New_York,304,NA,US,37.69,-81.88,448 +25612,STANDARD,0,Chauncey,,,WV,"Logan County",America/New_York,304,NA,US,37.76,-81.96,97 +25614,STANDARD,0,Cora,,,WV,"Logan County",America/New_York,304,NA,US,37.83,-82.03,220 +25617,STANDARD,0,Davin,,,WV,"Logan County",America/New_York,304,NA,US,37.71,-81.78,620 +25621,STANDARD,0,Gilbert,Hampden,,WV,"Mingo County",America/New_York,304,NA,US,37.61,-81.86,1730 +25624,"PO BOX",0,Henlawson,,,WV,"Logan County",America/New_York,304,NA,US,37.9,-81.98,368 +25625,STANDARD,0,Holden,,,WV,"Logan County",America/New_York,304,NA,US,37.82,-82.08,960 +25628,"PO BOX",0,Kistler,,,WV,"Logan County",America/New_York,304,NA,US,37.76,-81.85,418 +25630,"PO BOX",0,Lorado,Lundale,,WV,"Logan County",America/New_York,304,NA,US,37.79,-81.7,499 +25632,STANDARD,0,Lyburn,"Earling, Taplin",,WV,"Logan County",America/New_York,304,NA,US,37.74,-81.93,330 +25634,"PO BOX",0,Mallory,,,WV,"Logan County",America/New_York,304,NA,US,37.74,-81.84,631 +25635,STANDARD,0,Man,"Hunt, Landville",,WV,"Logan County",America/New_York,"304,681",NA,US,37.71,-81.89,1430 +25637,"PO BOX",0,"Mount Gay",,,WV,"Logan County",America/New_York,304,NA,US,37.86,-82.03,1055 +25638,STANDARD,0,Omar,Barnabus,,WV,"Logan County",America/New_York,304,NA,US,37.76,-81.99,710 +25639,"PO BOX",0,"Peach Creek",,,WV,"Logan County",America/New_York,304,NA,US,37.87,-81.96,560 +25644,"PO BOX",0,"Sarah Ann",,,WV,"Logan County",America/New_York,304,NA,US,37.72,-82.03,256 +25646,"PO BOX",0,Stollings,"Mc Connell",,WV,"Logan County",America/New_York,304,NA,US,37.84,-81.93,951 +25647,"PO BOX",0,Switzer,,,WV,"Logan County",America/New_York,304,NA,US,37.79,-81.98,672 +25649,"PO BOX",0,Verdunville,,,WV,"Logan County",America/New_York,304,NA,US,37.85,-82.05,1075 +25650,STANDARD,0,Verner,Emmett,,WV,"Mingo County",America/New_York,304,NA,US,37.67,-81.82,240 +25651,STANDARD,0,Wharncliffe,,,WV,"Mingo County",America/New_York,304,NA,US,37.55,-81.97,460 +25652,"PO BOX",0,Whitman,,,WV,"Logan County",America/New_York,304,NA,US,37.81,-82.03,958 +25653,"PO BOX",0,Wilkinson,,,WV,"Logan County",America/New_York,304,NA,US,37.83,-82,364 +25654,STANDARD,0,Yolyn,Dehue,,WV,"Logan County",America/New_York,304,NA,US,37.8,-81.87,81 +25661,STANDARD,0,Williamson,"Nolan, Sprigg",,WV,"Mingo County",America/New_York,304,NA,US,37.67,-82.27,3900 +25665,"PO BOX",0,Borderland,,,WV,"Mingo County",America/New_York,304,NA,US,37.72,-82.28,152 +25666,STANDARD,0,Breeden,,,WV,"Mingo County",America/New_York,304,NA,US,37.92,-82.27,190 +25667,"PO BOX",0,Chattaroy,,,WV,"Mingo County",America/New_York,304,NA,US,37.7,-82.26,507 +25669,STANDARD,0,Crum,,,WV,"Wayne County",America/New_York,304,NA,US,37.93,-82.39,710 +25670,STANDARD,0,Delbarton,"Myrtle, Stirrat",,WV,"Mingo County",America/New_York,"304,681",NA,US,37.7,-82.18,3360 +25671,STANDARD,0,Dingess,,,WV,"Mingo County",America/New_York,304,NA,US,37.87,-82.18,880 +25672,STANDARD,0,Edgarton,"Thacker, Vulcan",,WV,"Mingo County",America/New_York,304,NA,US,37.58,-82.11,266 +25674,STANDARD,0,Kermit,,,WV,"Mingo County",America/New_York,"304,681",NA,US,37.87,-82.35,1890 +25676,STANDARD,0,Lenore,,,WV,"Mingo County",America/New_York,304,NA,US,37.8,-82.27,1090 +25678,STANDARD,0,Matewan,"Blackberry City, Blckberry Cty, Lobata, Meador",,WV,"Mingo County",America/New_York,304,NA,US,37.62,-82.16,1250 +25685,"PO BOX",0,Naugatuck,,,WV,"Martin County",America/New_York,304,NA,US,37.8,-82.33,404 +25686,"PO BOX",0,Newtown,,,WV,"Mingo County",America/New_York,304,NA,US,37.63,-82.06,218 +25688,"PO BOX",0,"North Matewan",,,WV,"Mingo County",America/New_York,304,NA,US,37.62,-82.12,353 +25690,"PO BOX",0,Ragland,,,WV,"Mingo County",America/New_York,304,NA,US,37.69,-82.12,350 +25691,"PO BOX",0,Rawl,,,WV,"Mingo County",America/New_York,304,NA,US,37.65,-82.2,208 +25692,"PO BOX",0,"Red Jacket",,,WV,"Mingo County",America/New_York,304,NA,US,37.64,-82.13,413 +25696,"PO BOX",0,Varney,,,WV,"Mingo County",America/New_York,304,NA,US,37.68,-82.12,593 +25699,STANDARD,0,Wilsondale,,,WV,"Wayne County",America/New_York,"304,681",NA,US,37.95,-82.36,135 +25701,STANDARD,0,Huntington,,,WV,"Cabell County",America/New_York,"304,681",NA,US,38.41,-82.43,15510 +25702,STANDARD,0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.43,-82.31,4920 +25703,STANDARD,0,Huntington,,,WV,"Cabell County",America/New_York,"304,681",NA,US,38.42,-82.42,2080 +25704,STANDARD,0,Huntington,,,WV,"Wayne County",America/New_York,"304,681",NA,US,38.31,-82.49,11620 +25705,STANDARD,0,Huntington,Alltizer,"Beverly Hills",WV,"Cabell County",America/New_York,304,NA,US,38.4,-82.36,16390 +25706,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,41 +25707,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,18 +25708,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25709,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25710,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25711,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,31 +25712,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,49 +25713,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,59 +25714,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,28 +25715,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25716,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,33 +25717,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25718,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25719,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25720,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,22 +25721,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,37 +25722,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25723,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25724,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25725,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25726,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25727,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25728,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25729,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,42 +25755,UNIQUE,0,Huntington,,"Marshall University",WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,34 +25770,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25771,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25772,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,25 +25773,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,21 +25774,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,33 +25775,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,29 +25776,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,25 +25777,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,31 +25778,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,14 +25779,"PO BOX",0,Huntington,,,WV,"Cabell County",America/New_York,304,NA,US,38.41,-82.43,0 +25801,STANDARD,0,Beckley,,"East Beckley",WV,"Raleigh County",America/New_York,"304,681",NA,US,37.78,-81.18,22750 +25802,"PO BOX",0,Beckley,Sprague,,WV,"Raleigh County",America/New_York,304,NA,US,37.78,-81.18,1372 +25810,"PO BOX",0,"Allen Junction","Allen Jct",,WV,"Wyoming County",America/New_York,304,NA,US,37.59,-81.35,142 +25811,STANDARD,0,Amigo,,,WV,"Wyoming County",America/New_York,304,NA,US,37.56,-81.29,107 +25812,STANDARD,0,Ansted,,,WV,"Fayette County",America/New_York,304,NA,US,38.13,-81.1,1270 +25813,STANDARD,0,Beaver,"Blue Jay, Glen Morgan",,WV,"Raleigh County",America/New_York,304,NA,US,37.74,-81.15,4190 +25817,STANDARD,0,Bolt,,,WV,"Raleigh County",America/New_York,304,NA,US,37.76,-81.41,600 +25818,"PO BOX",0,Bradley,,,WV,"Raleigh County",America/New_York,304,NA,US,37.86,-81.19,1157 +25820,STANDARD,0,"Camp Creek",,,WV,"Mercer County",America/New_York,304,NA,US,37.51,-81.16,320 +25823,STANDARD,0,"Coal City","Jonben, Whitby",,WV,"Raleigh County",America/New_York,681,NA,US,37.67,-81.21,1530 +25825,STANDARD,0,"Cool Ridge",,,WV,"Raleigh County",America/New_York,304,NA,US,37.64,-81.08,1830 +25826,"PO BOX",0,Corinne,,,WV,"Wyoming County",America/New_York,304,NA,US,37.58,-81.36,250 +25827,STANDARD,0,"Crab Orchard",,,WV,"Raleigh County",America/New_York,"304,681",NA,US,37.74,-81.23,2370 +25831,STANDARD,0,Danese,"Clifftop, Maplewood",,WV,"Fayette County",America/New_York,304,NA,US,37.96,-80.93,1000 +25832,STANDARD,0,Daniels,"Glade Springs",,WV,"Raleigh County",America/New_York,304,NA,US,37.72,-81.12,4040 +25833,"PO BOX",0,Dothan,,,WV,"Fayette County",America/New_York,304,NA,US,37.99,-81.21,0 +25836,"PO BOX",0,Eccles,,,WV,"Raleigh County",America/New_York,304,NA,US,37.79,-81.26,413 +25837,STANDARD,0,Edmond,,,WV,"Fayette County",America/New_York,304,NA,US,38.05,-81.03,250 +25839,STANDARD,0,Fairdale,,,WV,"Raleigh County",America/New_York,304,NA,US,37.78,-81.39,1070 +25840,STANDARD,0,Fayetteville,"Beckwith, Cunard, Wriston","Gatewood, Tourison",WV,"Fayette County",America/New_York,304,NA,US,38.05,-81.1,6490 +25841,STANDARD,0,"Flat Top",,,WV,"Mercer County",America/New_York,304,NA,US,37.58,-81.11,460 +25843,STANDARD,0,Ghent,,,WV,"Raleigh County",America/New_York,304,NA,US,37.61,-81.09,800 +25844,STANDARD,0,"Glen Daniel",,,WV,"Raleigh County",America/New_York,"304,681",NA,US,37.77,-81.33,1030 +25845,STANDARD,0,"Glen Fork",,,WV,"Wyoming County",America/New_York,304,NA,US,37.7,-81.53,510 +25846,STANDARD,0,"Glen Jean",,,WV,"Fayette County",America/New_York,304,NA,US,37.93,-81.17,290 +25848,STANDARD,0,"Glen Rogers",,,WV,"Wyoming County",America/New_York,304,NA,US,37.73,-81.44,213 +25849,STANDARD,0,"Glen White",,,WV,"Raleigh County",America/New_York,304,NA,US,37.73,-81.28,227 +25851,"PO BOX",0,Harper,,,WV,"Raleigh County",America/New_York,304,NA,US,37.79,-81.26,367 +25853,"PO BOX",0,Helen,,,WV,"Raleigh County",America/New_York,304,NA,US,37.64,-81.31,153 +25854,STANDARD,0,Hico,,,WV,"Fayette County",America/New_York,304,NA,US,38.11,-80.94,890 +25855,STANDARD,0,Hilltop,,,WV,"Fayette County",America/New_York,304,NA,US,37.94,-81.16,415 +25857,STANDARD,0,Josephine,,,WV,"Raleigh County",America/New_York,304,NA,US,37.64,-81.28,155 +25860,"PO BOX",0,Lanark,,,WV,"Raleigh County",America/New_York,304,NA,US,37.81,-81.12,229 +25862,STANDARD,0,Lansing,,,WV,"Fayette County",America/New_York,304,NA,US,38.09,-81.06,250 +25864,STANDARD,0,Layland,"Lawton, Terry",,WV,"Fayette County",America/New_York,304,NA,US,37.87,-80.99,230 +25865,STANDARD,0,Lester,,,WV,"Raleigh County",America/New_York,304,NA,US,37.73,-81.3,1040 +25866,"PO BOX",0,Lochgelly,,,WV,"Fayette County",America/New_York,304,NA,US,38.03,-81.07,243 +25868,STANDARD,0,Lookout,,,WV,"Fayette County",America/New_York,304,NA,US,38.07,-80.97,490 +25870,STANDARD,0,Maben,,Pierpont,WV,"Wyoming County",America/New_York,304,NA,US,37.63,-81.39,187 +25871,"PO BOX",0,Mabscott,,,WV,"Raleigh County",America/New_York,304,NA,US,37.77,-81.21,870 +25873,"PO BOX",0,"Mac Arthur",,,WV,"Raleigh County",America/New_York,304,NA,US,37.75,-81.21,917 +25875,"PO BOX",0,"Mc Graws",,,WV,"Wyoming County",America/New_York,304,NA,US,37.68,-81.46,251 +25876,STANDARD,0,Saulsville,"Mc Graws",,WV,"Wyoming County",America/New_York,304,NA,US,37.63,-81.44,27 +25878,"PO BOX",0,Midway,Pemberton,,WV,"Raleigh County",America/New_York,304,NA,US,37.72,-81.23,678 +25879,"PO BOX",0,Minden,,,WV,"Fayette County",America/New_York,304,NA,US,37.98,-81.11,336 +25880,STANDARD,0,"Mount Hope",,Kilsyth,WV,"Raleigh County",America/New_York,"304,681",NA,US,37.89,-81.17,4100 +25882,STANDARD,0,Mullens,,,WV,"Wyoming County",America/New_York,"304,681",NA,US,37.57,-81.38,1470 +25888,UNIQUE,0,"Mount Hope",,"Boy Scouts Of America",WV,,America/New_York,,NA,US,37.9,-81.17,0 +25901,STANDARD,0,"Oak Hill","Harvey, Redstar, Summerlee",,WV,"Fayette County",America/New_York,"304,681",NA,US,37.98,-81.14,8330 +25902,STANDARD,0,Odd,,,WV,"Raleigh County",America/New_York,304,NA,US,37.56,-81.23,280 +25904,"PO BOX",0,Pax,,,WV,"Fayette County",America/New_York,304,NA,US,37.93,-81.28,439 +25906,"PO BOX",0,"Piney View",,,WV,"Raleigh County",America/New_York,304,NA,US,37.84,-81.13,436 +25907,"PO BOX",0,Prince,,,WV,"Fayette County",America/New_York,304,NA,US,37.86,-81.09,88 +25908,STANDARD,0,Princewick,"Winding Gulf",,WV,"Raleigh County",America/New_York,681,NA,US,37.68,-81.25,250 +25909,"PO BOX",0,Prosperity,,,WV,"Raleigh County",America/New_York,304,NA,US,37.83,-81.2,745 +25911,"PO BOX",0,Raleigh,,,WV,"Raleigh County",America/New_York,304,NA,US,37.76,-81.17,222 +25913,STANDARD,0,Ravencliff,,,WV,"Wyoming County",America/New_York,304,NA,US,37.69,-81.49,250 +25915,STANDARD,0,Rhodell,"East Gulf, Mead",,WV,"Raleigh County",America/New_York,304,NA,US,37.6,-81.3,269 +25916,"PO BOX",0,Sabine,,,WV,"Wyoming County",America/New_York,304,NA,US,37.67,-81.49,119 +25917,STANDARD,0,Scarbro,Kingston,,WV,"Fayette County",America/New_York,304,NA,US,37.99,-81.22,1390 +25918,STANDARD,0,"Shady Spring",Abraham,,WV,"Raleigh County",America/New_York,304,NA,US,37.7,-81.09,3640 +25919,"PO BOX",0,Skelton,,,WV,"Raleigh County",America/New_York,304,NA,US,37.8,-81.19,177 +25920,STANDARD,0,"Slab Fork",,,WV,"Raleigh County",America/New_York,304,NA,US,37.69,-81.33,175 +25921,"PO BOX",0,Sophia,"Mcalpin, Tams",,WV,"Raleigh County",America/New_York,304,NA,US,37.7,-81.25,1871 +25922,STANDARD,0,Spanishburg,,,WV,"Mercer County",America/New_York,304,NA,US,37.45,-81.11,400 +25926,STANDARD,1,Beckley,Sprague,,WV,"Raleigh County",America/New_York,304,NA,US,37.79,-81.18,0 +25927,"PO BOX",0,Stanaford,,,WV,"Raleigh County",America/New_York,304,NA,US,37.81,-81.15,360 +25928,STANDARD,0,Stephenson,,,WV,"Wyoming County",America/New_York,304,NA,US,37.57,-81.33,260 +25932,STANDARD,0,Surveyor,,,WV,"Raleigh County",America/New_York,304,NA,US,37.75,-81.3,350 +25936,STANDARD,0,Thurmond,,,WV,"Fayette County",America/New_York,304,NA,US,37.96,-81.08,26 +25938,STANDARD,0,Victor,Ramsey,,WV,"Fayette County",America/New_York,304,NA,US,38.14,-81.03,1100 +25942,"PO BOX",0,Winona,,,WV,"Fayette County",America/New_York,304,NA,US,38.02,-80.96,181 +25943,"PO BOX",0,Wyco,,,WV,"Wyoming County",America/New_York,304,NA,US,37.61,-81.34,84 +25951,STANDARD,0,Hinton,"Brooks, True",,WV,"Summers County",America/New_York,304,NA,US,37.66,-80.88,3630 +25958,STANDARD,0,Charmco,"Bingham, Hines, Orient Hill",,WV,"Greenbrier County",America/New_York,304,NA,US,38.02,-80.75,510 +25962,STANDARD,0,Rainelle,"Bellwood, Corliss, Hilton Village, Hilton Vlg, Lilly Park",,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.96,-80.77,2540 +25965,STANDARD,1,Elton,,,WV,"Summers County",America/New_York,304,NA,US,37.83,-80.78,0 +25966,"PO BOX",0,"Green Sulphur Springs","Grn Sphr Spgs, Meadow Bridge",,WV,"Summers County",America/New_York,304,NA,US,37.79,-80.83,109 +25969,STANDARD,0,"Jumping Branch","Jumping Br, Streeter",,WV,"Summers County",America/New_York,304,NA,US,37.65,-80.98,890 +25971,STANDARD,0,Lerona,,,WV,"Mercer County",America/New_York,304,NA,US,37.5,-80.98,890 +25972,"PO BOX",0,Leslie,Bellburn,,WV,"Greenbrier County",America/New_York,304,NA,US,38.03,-80.74,156 +25976,STANDARD,0,"Meadow Bridge","Elton, Lockbridge",,WV,"Fayette County",America/New_York,304,NA,US,37.86,-80.85,1670 +25977,STANDARD,0,"Meadow Creek",,,WV,"Summers County",America/New_York,304,NA,US,37.8,-80.91,68 +25978,STANDARD,0,Nimitz,,,WV,"Summers County",America/New_York,304,NA,US,37.62,-80.93,520 +25979,STANDARD,0,Pipestem,Lovern,,WV,"Summers County",America/New_York,304,NA,US,37.53,-80.96,690 +25981,STANDARD,0,Quinwood,"Crichton, Marfrance",,WV,"Greenbrier County",America/New_York,304,NA,US,38.1,-80.71,580 +25984,STANDARD,0,Rupert,"Duo, Kessler",,WV,"Greenbrier County",America/New_York,"304,681",NA,US,37.96,-80.68,1280 +25985,STANDARD,0,Sandstone,,,WV,"Summers County",America/New_York,304,NA,US,37.76,-80.88,330 +25986,"PO BOX",0,"Spring Dale",,,WV,"Fayette County",America/New_York,304,NA,US,37.87,-80.81,133 +25989,STANDARD,0,"White Oak",,,WV,"Raleigh County",America/New_York,304,NA,US,37.68,-81.07,320 +26003,STANDARD,0,Wheeling,"Bethlehem, Elm Grove, Mozart, Overbrook, Warwood",,WV,"Ohio County",America/New_York,304,NA,US,40.07,-80.69,34360 +26030,"PO BOX",0,"Beech Bottom",,,WV,"Brooke County",America/New_York,304,NA,US,40.22,-80.66,568 +26031,STANDARD,0,Benwood,,,WV,"Marshall County",America/New_York,304,NA,US,40.01,-80.73,1540 +26032,STANDARD,0,Bethany,,,WV,"Brooke County",America/New_York,304,NA,US,40.2,-80.56,460 +26033,STANDARD,0,Cameron,,,WV,"Marshall County",America/New_York,"304,681",NA,US,39.82,-80.57,2230 +26034,STANDARD,0,Chester,,,WV,"Hancock County",America/New_York,304,NA,US,40.61,-80.56,3670 +26035,STANDARD,0,Colliers,,,WV,"Brooke County",America/New_York,304,NA,US,40.34,-80.55,2140 +26036,STANDARD,0,Dallas,,,WV,"Marshall County",America/New_York,304,NA,US,39.96,-80.55,440 +26037,STANDARD,0,Follansbee,,,WV,"Brooke County",America/New_York,304,NA,US,40.33,-80.59,5530 +26038,STANDARD,0,"Glen Dale",,,WV,"Marshall County",America/New_York,304,NA,US,39.94,-80.75,2650 +26039,STANDARD,0,"Glen Easton",,,WV,"Marshall County",America/New_York,304,NA,US,39.83,-80.66,800 +26040,STANDARD,0,Mcmechen,,,WV,"Marshall County",America/New_York,304,NA,US,39.98,-80.73,1490 +26041,STANDARD,0,Moundsville,,,WV,"Marshall County",America/New_York,304,NA,US,39.92,-80.74,12520 +26047,STANDARD,0,"New Cumberland","New Cumberlnd","New Cumbrlnd",WV,"Hancock County",America/New_York,304,NA,US,40.49,-80.6,5010 +26050,STANDARD,0,Newell,,,WV,"Hancock County",America/New_York,304,NA,US,40.61,-80.6,1140 +26055,STANDARD,0,Proctor,,,WV,"Marshall County",America/New_York,304,NA,US,39.72,-80.75,1420 +26056,"PO BOX",0,"New Manchester","New Manchestr","New Manchstr",WV,"Hancock County",America/New_York,304,NA,US,40.53,-80.58,520 +26058,"PO BOX",0,"Short Creek",,,WV,"Brooke County",America/New_York,304,NA,US,40.22,-80.58,84 +26059,STANDARD,0,Triadelphia,,,WV,"Ohio County",America/New_York,304,NA,US,40.05,-80.62,2940 +26060,STANDARD,0,"Valley Grove",,,WV,"Ohio County",America/New_York,304,NA,US,40.09,-80.57,1550 +26062,STANDARD,0,Weirton,,,WV,"Hancock County",America/New_York,"304,681",NA,US,40.4,-80.56,18140 +26070,STANDARD,0,Wellsburg,,,WV,"Brooke County",America/New_York,304,NA,US,40.28,-80.6,7010 +26074,"PO BOX",0,"West Liberty",,,WV,"Ohio County",America/New_York,304,NA,US,40.16,-80.59,180 +26075,"PO BOX",0,"Windsor Heights","Windsor Hts",,WV,"Brooke County",America/New_York,304,NA,US,40.19,-80.67,367 +26101,STANDARD,0,Parkersburg,,,WV,"Wood County",America/New_York,"304,681",NA,US,39.26,-81.54,22180 +26102,"PO BOX",0,Parkersburg,,,WV,"Wood County",America/New_York,304,NA,US,39.26,-81.54,636 +26103,"PO BOX",0,Parkersburg,"Fort Neal",,WV,"Wood County",America/New_York,304,NA,US,39.26,-81.54,370 +26104,STANDARD,0,Parkersburg,"N Parkersburg, North Hills, North Parkersburg",,WV,"Wood County",America/New_York,"304,681",NA,US,39.28,-81.48,13400 +26105,STANDARD,0,Vienna,Parkersburg,,WV,"Wood County",America/New_York,"681,304",NA,US,39.32,-81.53,10630 +26106,UNIQUE,0,Parkersburg,,"Bureau Of Public Debt",WV,"Wood County",America/New_York,304,NA,US,39.26,-81.54,0 +26120,UNIQUE,0,"Mineral Wells","Coldwater Creek",,WV,"Wood County",America/New_York,304,NA,US,39.17,-81.53,0 +26121,UNIQUE,0,"Mineral Wells","Coldwater Creek",,WV,"Wood County",America/New_York,304,NA,US,39.17,-81.53,0 +26133,STANDARD,0,Belleville,,,WV,"Wood County",America/New_York,304,NA,US,39.12,-81.67,1220 +26134,STANDARD,0,Belmont,"Eureka, Willow Island",,WV,"Pleasants County",America/New_York,304,NA,US,39.37,-81.29,680 +26136,STANDARD,0,"Big Bend","Five Forks",,WV,"Calhoun County",America/New_York,304,NA,US,38.98,-81.13,390 +26137,STANDARD,0,"Big Springs","Nobe, Tanner",,WV,"Calhoun County",America/New_York,304,NA,US,38.97,-80.99,590 +26138,STANDARD,0,Brohard,,,WV,"Wirt County",America/New_York,304,NA,US,39.02,-81.19,141 +26141,STANDARD,0,Creston,Annamoriah,,WV,"Calhoun County",America/New_York,304,NA,US,38.93,-81.25,330 +26142,STANDARD,0,Davisville,,,WV,"Wood County",America/New_York,304,NA,US,39.21,-81.46,2230 +26143,STANDARD,0,Elizabeth,"Hughes River, Limestone Hill, Limestone Hl, Newark, Spring Valley, Standing Stone, Stndg Stone",,WV,"Wirt County",America/New_York,"304,681",NA,US,39.06,-81.39,3630 +26146,STANDARD,0,Friendly,"Bens Run",,WV,"Tyler County",America/New_York,304,NA,US,39.51,-81.06,940 +26147,STANDARD,0,Grantsville,,,WV,"Calhoun County",America/New_York,"304,681",NA,US,38.92,-81.09,1370 +26148,STANDARD,0,Macfarlan,,,WV,"Ritchie County",America/New_York,304,NA,US,39.07,-81.18,164 +26149,STANDARD,0,Middlebourne,Wick,,WV,"Tyler County",America/New_York,304,NA,US,39.49,-80.9,1900 +26150,STANDARD,0,"Mineral Wells",,,WV,"Wood County",America/New_York,304,NA,US,39.17,-81.53,5260 +26151,STANDARD,0,"Mount Zion",,,WV,"Calhoun County",America/New_York,304,NA,US,38.88,-81.17,320 +26152,STANDARD,0,Munday,,,WV,"Wirt County",America/New_York,304,NA,US,39.01,-81.2,54 +26155,STANDARD,0,"New Martinsville","N Martinsvlle",,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.66,-80.85,6940 +26159,STANDARD,0,"Paden City",,,WV,"Wetzel County",America/New_York,304,NA,US,39.6,-80.93,2200 +26160,STANDARD,0,Palestine,"Blue Goose, Lynncamp, Sanoma, Somervlle Frk, Sommerville Fork, Two Run",,WV,"Wirt County",America/New_York,304,NA,US,38.96,-81.42,760 +26161,STANDARD,0,Petroleum,,,WV,"Ritchie County",America/New_York,304,NA,US,39.18,-81.25,340 +26162,STANDARD,0,"Porters Falls",,,WV,"Wetzel County",America/New_York,304,NA,US,39.57,-80.76,101 +26164,STANDARD,0,Ravenswood,"Murraysville, Sherman",,WV,"Jackson County",America/New_York,304,NA,US,38.95,-81.76,6400 +26167,STANDARD,0,Reader,,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.57,-80.74,730 +26169,STANDARD,0,Rockport,,,WV,"Wood County",America/New_York,"304,681",NA,US,39.07,-81.57,660 +26170,STANDARD,0,"Saint Marys",,,WV,"Pleasants County",America/New_York,"304,681",NA,US,39.4,-81.19,4870 +26175,STANDARD,0,Sistersville,,,WV,"Tyler County",America/New_York,304,NA,US,39.55,-80.99,2550 +26178,STANDARD,0,Smithville,"Burnt House",,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.06,-81.06,420 +26180,STANDARD,0,Walker,Freeport,,WV,"Wood County",America/New_York,304,NA,US,39.18,-81.36,1840 +26181,STANDARD,0,Washington,"New England",,WV,"Wood County",America/New_York,304,NA,US,39.24,-81.67,5630 +26184,STANDARD,0,Waverly,,,WV,"Wood County",America/New_York,304,NA,US,39.3,-81.33,1930 +26187,STANDARD,0,Williamstown,,,WV,"Wood County",America/New_York,304,NA,US,39.4,-81.45,5530 +26201,STANDARD,0,Buckhannon,"Century, Tennerton",Hodgesville,WV,"Upshur County",America/New_York,304,NA,US,38.98,-80.22,15360 +26202,STANDARD,0,Fenwick,,,WV,"Nicholas County",America/New_York,304,NA,US,38.22,-80.64,440 +26203,STANDARD,0,Erbacon,,,WV,"Webster County",America/New_York,304,NA,US,38.54,-80.56,226 +26205,STANDARD,0,Craigsville,Cottle,,WV,"Nicholas County",America/New_York,304,NA,US,38.32,-80.64,2710 +26206,STANDARD,0,Cowen,Boggs,,WV,"Webster County",America/New_York,"304,681",NA,US,38.41,-80.55,1900 +26208,STANDARD,0,"Camden On Gauley","Camden On Gly, Gauley Mills",,WV,"Webster County",America/New_York,304,NA,US,38.36,-80.59,580 +26209,"PO BOX",0,Snowshoe,Slatyfork,,WV,"Pocahontas County",America/New_York,304,NA,US,38.4,-79.99,224 +26210,STANDARD,0,Adrian,,,WV,"Upshur County",America/New_York,304,NA,US,38.91,-80.3,187 +26215,STANDARD,0,Cleveland,"Rock Cave",,WV,"Webster County",America/New_York,304,NA,US,38.71,-80.37,93 +26217,STANDARD,0,Diana,,,WV,"Webster County",America/New_York,304,NA,US,38.58,-80.42,250 +26218,STANDARD,0,"French Creek",Alexander,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.25,2180 +26219,"PO BOX",0,Frenchton,,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.25,0 +26222,STANDARD,0,"Hacker Valley",Replete,,WV,"Webster County",America/New_York,"304,681",NA,US,38.67,-80.39,410 +26224,STANDARD,0,Helvetia,,,WV,"Randolph County",America/New_York,304,NA,US,38.72,-80.18,139 +26228,STANDARD,0,"Kanawha Head",,,WV,"Upshur County",America/New_York,304,NA,US,38.76,-80.37,52 +26229,"PO BOX",0,Lorentz,,,WV,"Upshur County",America/New_York,304,NA,US,38.99,-80.29,0 +26230,STANDARD,0,Pickens,,,WV,"Randolph County",America/New_York,304,NA,US,38.65,-80.19,94 +26234,STANDARD,0,"Rock Cave",,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.34,890 +26236,STANDARD,0,Selbyville,,,WV,"Upshur County",America/New_York,304,NA,US,38.74,-80.23,58 +26237,STANDARD,0,Tallmansville,,,WV,"Upshur County",America/New_York,304,NA,US,38.83,-80.15,500 +26238,STANDARD,0,Volga,,,WV,"Barbour County",America/New_York,304,NA,US,39.11,-80.17,660 +26241,STANDARD,0,Elkins,,,WV,"Randolph County",America/New_York,"304,681",NA,US,38.92,-79.85,11440 +26250,STANDARD,0,Belington,,,WV,"Barbour County",America/New_York,304,NA,US,39.02,-79.93,4250 +26253,STANDARD,0,Beverly,,,WV,"Randolph County",America/New_York,304,NA,US,38.84,-79.87,2730 +26254,STANDARD,0,Bowden,Wymer,,WV,"Randolph County",America/New_York,304,NA,US,38.94,-79.63,270 +26257,STANDARD,0,Coalton,,,WV,"Randolph County",America/New_York,304,NA,US,38.9,-80,810 +26259,"PO BOX",0,Dailey,,,WV,"Randolph County",America/New_York,304,NA,US,38.8,-79.9,324 +26260,STANDARD,0,Davis,"Canaan Valley",,WV,"Tucker County",America/New_York,"681,304",NA,US,39.13,-79.46,1050 +26261,STANDARD,0,Richwood,,,WV,"Nicholas County",America/New_York,304,NA,US,38.22,-80.53,1510 +26263,STANDARD,0,Dryfork,,,WV,"Randolph County",America/New_York,304,NA,US,38.94,-79.43,360 +26264,STANDARD,0,Durbin,,,WV,"Pocahontas County",America/New_York,304,NA,US,38.54,-79.82,530 +26266,STANDARD,0,Upperglade,,,WV,"Webster County",America/New_York,304,NA,US,38.43,-80.5,230 +26267,STANDARD,0,Ellamore,,,WV,"Randolph County",America/New_York,304,NA,US,38.93,-80.08,440 +26268,STANDARD,0,Glady,,,WV,"Randolph County",America/New_York,304,NA,US,38.75,-79.74,29 +26269,STANDARD,0,Hambleton,,,WV,"Tucker County",America/New_York,681,NA,US,39.08,-79.64,820 +26270,STANDARD,0,Harman,,,WV,"Randolph County",America/New_York,"304,681",NA,US,38.92,-79.52,580 +26271,STANDARD,0,Hendricks,,,WV,"Tucker County",America/New_York,304,NA,US,39.03,-79.56,250 +26273,STANDARD,0,Huttonsville,,,WV,"Randolph County",America/New_York,304,NA,US,38.71,-79.97,730 +26275,"PO BOX",0,Junior,,,WV,"Barbour County",America/New_York,304,NA,US,38.97,-79.95,587 +26276,STANDARD,0,Kerens,,,WV,"Randolph County",America/New_York,304,NA,US,39.02,-79.75,380 +26278,STANDARD,0,Mabie,,,WV,"Randolph County",America/New_York,304,NA,US,38.83,-80.03,470 +26280,STANDARD,0,"Mill Creek",,,WV,"Randolph County",America/New_York,681,NA,US,38.73,-79.97,1530 +26282,STANDARD,0,Monterville,,,WV,"Randolph County",America/New_York,304,NA,US,38.51,-80.16,89 +26283,STANDARD,0,Montrose,,,WV,"Randolph County",America/New_York,304,NA,US,39.06,-79.81,1340 +26285,STANDARD,0,Norton,,,WV,"Randolph County",America/New_York,304,NA,US,38.91,-79.94,270 +26287,STANDARD,0,Parsons,"Saint George",,WV,"Tucker County",America/New_York,"304,681",NA,US,39.09,-79.67,2600 +26288,STANDARD,0,"Webster Springs","Curtin, Parcoal, Webster Spgs",,WV,"Webster County",America/New_York,"304,681",NA,US,38.47,-80.41,2300 +26289,STANDARD,0,"Red Creek",,,WV,"Tucker County",America/New_York,304,NA,US,39,-79.5,70 +26291,STANDARD,0,Slatyfork,,,WV,"Pocahontas County",America/New_York,"304,681",NA,US,38.39,-80.15,380 +26292,STANDARD,0,Thomas,,,WV,"Tucker County",America/New_York,"304,681",NA,US,39.14,-79.49,640 +26293,STANDARD,0,"Valley Bend",,,WV,"Randolph County",America/New_York,304,NA,US,38.78,-79.94,570 +26294,STANDARD,0,"Valley Head",Mingo,,WV,"Randolph County",America/New_York,681,NA,US,38.52,-80.03,520 +26296,"PO BOX",0,Whitmer,Job,,WV,"Randolph County",America/New_York,304,NA,US,38.76,-79.6,132 +26298,STANDARD,0,Bergoo,,,WV,"Webster County",America/New_York,304,NA,US,38.48,-80.24,89 +26301,STANDARD,0,Clarksburg,"Country Club, Dawmont, Laurel Park, Laurel Valley, Nutter Fort, Stonewood",,WV,"Harrison County",America/New_York,"304,681",NA,US,39.28,-80.33,22690 +26302,"PO BOX",0,Clarksburg,,,WV,"Harrison County",America/New_York,304,NA,US,39.28,-80.33,1291 +26306,UNIQUE,0,Clarksburg,,Fbi,WV,"Harrison County",America/New_York,304,NA,US,39.28,-80.33,0 +26320,STANDARD,0,Alma,Wilbur,,WV,"Tyler County",America/New_York,304,NA,US,39.42,-80.82,610 +26321,STANDARD,0,"Alum Bridge",Vadis,,WV,"Lewis County",America/New_York,304,NA,US,39.04,-80.69,260 +26323,"PO BOX",0,Anmoore,,,WV,"Harrison County",America/New_York,304,NA,US,39.26,-80.29,726 +26325,STANDARD,0,Auburn,,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.09,-80.85,227 +26327,STANDARD,0,Berea,,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.13,-80.92,39 +26330,STANDARD,0,Bridgeport,"Brushy Fork, Lake Ridge, Maple Lake",,WV,"Harrison County",America/New_York,"304,681",NA,US,39.29,-80.25,14750 +26335,STANDARD,0,Burnsville,Gem,,WV,"Braxton County",America/New_York,304,NA,US,38.85,-80.65,950 +26337,STANDARD,0,Cairo,,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.2,-81.15,910 +26338,STANDARD,0,Camden,,,WV,"Lewis County",America/New_York,304,NA,US,39.09,-80.61,520 +26339,STANDARD,0,"Center Point",,,WV,"Doddridge County",America/New_York,304,NA,US,39.42,-80.62,142 +26342,STANDARD,0,"Coxs Mills",,,WV,"Gilmer County",America/New_York,"304,681",NA,US,39.03,-80.85,390 +26343,STANDARD,0,Crawford,,,WV,"Lewis County",America/New_York,304,NA,US,38.83,-80.4,420 +26346,STANDARD,0,Ellenboro,Highland,,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.29,-81.06,740 +26347,STANDARD,0,Flemington,"Astor, Brownton, Wendel",,WV,"Taylor County",America/New_York,304,NA,US,39.26,-80.12,1870 +26348,STANDARD,0,Folsom,,,WV,"Wetzel County",America/New_York,304,NA,US,39.46,-80.52,220 +26349,"PO BOX",0,Galloway,,,WV,"Barbour County",America/New_York,304,NA,US,39.24,-80.13,130 +26351,STANDARD,0,Glenville,"Baldwin, Gilmer",,WV,"Gilmer County",America/New_York,304,NA,US,38.93,-80.83,2160 +26354,STANDARD,0,Grafton,"Belgium, Harmony Grove, Haymond, White Day",,WV,"Taylor County",America/New_York,304,NA,US,39.34,-80.01,8550 +26361,"PO BOX",0,Gypsy,,,WV,"Harrison County",America/New_York,304,NA,US,39.37,-80.32,373 +26362,STANDARD,0,Harrisville,"Hazelgreen, Mahone, Newberne",,WV,"Ritchie County",America/New_York,"304,681",NA,US,39.21,-81.04,2450 +26366,"PO BOX",0,Haywood,,,WV,"Harrison County",America/New_York,304,NA,US,39.38,-80.33,150 +26369,"PO BOX",0,Hepzibah,,,WV,"Harrison County",America/New_York,304,NA,US,39.33,-80.33,527 +26372,STANDARD,0,Horner,,,WV,"Lewis County",America/New_York,304,NA,US,38.95,-80.36,650 +26374,STANDARD,0,Independence,,,WV,"Preston County",America/New_York,304,NA,US,39.44,-79.88,1230 +26376,STANDARD,0,Ireland,Wildcat,,WV,"Lewis County",America/New_York,304,NA,US,38.75,-80.47,340 +26377,STANDARD,0,Jacksonburg,"Alvy, Lima",,WV,"Wetzel County",America/New_York,304,NA,US,39.53,-80.65,490 +26378,STANDARD,0,"Jane Lew",Kincheloe,,WV,"Lewis County",America/New_York,304,NA,US,39.1,-80.4,3790 +26384,STANDARD,0,Linn,,,WV,"Gilmer County",America/New_York,304,NA,US,38.96,-80.71,330 +26385,STANDARD,0,"Lost Creek",Mcwhorter,,WV,"Harrison County",America/New_York,304,NA,US,39.15,-80.35,3240 +26386,STANDARD,0,Lumberport,Dola,,WV,"Harrison County",America/New_York,304,NA,US,39.37,-80.34,2010 +26404,STANDARD,0,Meadowbrook,,,WV,"Harrison County",America/New_York,304,NA,US,39.34,-80.31,320 +26405,STANDARD,0,Moatsville,Kasson,,WV,"Barbour County",America/New_York,304,NA,US,39.22,-79.9,1000 +26408,STANDARD,0,"Mount Clare",Craigmoore,,WV,"Harrison County",America/New_York,304,NA,US,39.2,-80.31,2540 +26410,STANDARD,0,Newburg,,,WV,"Preston County",America/New_York,304,NA,US,39.4,-79.82,790 +26411,STANDARD,0,"New Milton",,,WV,"Doddridge County",America/New_York,304,NA,US,39.17,-80.71,530 +26412,STANDARD,0,Orlando,,,WV,"Lewis County",America/New_York,304,NA,US,38.87,-80.53,380 +26415,STANDARD,0,Pennsboro,"Greenwood, Mountain, Toll Gate",,WV,"Ritchie County",America/New_York,304,NA,US,39.28,-80.97,2600 +26416,STANDARD,0,Philippi,,,WV,"Barbour County",America/New_York,304,NA,US,39.15,-80.04,5590 +26419,STANDARD,0,"Pine Grove",Hastings,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.56,-80.68,840 +26421,STANDARD,0,Pullman,,,WV,"Ritchie County",America/New_York,304,NA,US,39.18,-80.94,220 +26422,"PO BOX",0,Reynoldsville,,,WV,"Harrison County",America/New_York,304,NA,US,39.29,-80.44,377 +26424,"PO BOX",0,Rosemont,,,WV,"Taylor County",America/New_York,304,NA,US,39.27,-80.17,282 +26425,STANDARD,0,Rowlesburg,Manheim,,WV,"Preston County",America/New_York,304,NA,US,39.28,-79.76,770 +26426,STANDARD,0,Salem,"Bristol, Industrial, Wolf Summit",,WV,"Harrison County",America/New_York,"304,681",NA,US,39.28,-80.56,5400 +26430,STANDARD,0,"Sand Fork","Stouts Mills",,WV,"Gilmer County",America/New_York,304,NA,US,38.87,-80.76,360 +26431,STANDARD,0,Shinnston,"Adamsville, Francis Mine, Owings, Peora, Pine Bluff, Saltwell",,WV,"Harrison County",America/New_York,304,NA,US,39.39,-80.29,5110 +26434,"PO BOX",0,Shirley,,,WV,"Tyler County",America/New_York,304,NA,US,39.4,-80.78,67 +26435,"PO BOX",0,Simpson,,,WV,"Taylor County",America/New_York,304,NA,US,39.27,-80.09,203 +26436,"PO BOX",0,Smithburg,,,WV,"Doddridge County",America/New_York,304,NA,US,39.3,-80.72,162 +26437,STANDARD,0,Smithfield,,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.53,-80.51,340 +26438,"PO BOX",0,Spelter,,,WV,"Harrison County",America/New_York,304,NA,US,39.35,-80.32,295 +26440,STANDARD,0,Thornton,,,WV,"Taylor County",America/New_York,304,NA,US,39.34,-79.93,1040 +26443,STANDARD,0,Troy,,,WV,"Gilmer County",America/New_York,304,NA,US,39.08,-80.75,197 +26444,STANDARD,0,Tunnelton,,,WV,"Preston County",America/New_York,304,NA,US,39.39,-79.74,2550 +26447,STANDARD,0,Walkersville,Roanoke,,WV,"Lewis County",America/New_York,"304,681",NA,US,38.91,-80.48,960 +26448,STANDARD,0,Wallace,,,WV,"Harrison County",America/New_York,304,NA,US,39.4,-80.48,960 +26451,STANDARD,0,"West Milford",,,WV,"Harrison County",America/New_York,304,NA,US,39.2,-80.4,630 +26452,STANDARD,0,Weston,"Valley Chapel",,WV,"Lewis County",America/New_York,"304,681",NA,US,39.04,-80.46,7940 +26456,STANDARD,0,"West Union",Blandville,,WV,"Doddridge County",America/New_York,304,NA,US,39.29,-80.77,2740 +26461,STANDARD,1,Wilsonburg,Clarksburg,,WV,"Harrison County",America/New_York,304,NA,US,39.29,-80.39,0 +26463,"PO BOX",0,Wyatt,,,WV,"Harrison County",America/New_York,304,NA,US,39.43,-80.39,152 +26501,STANDARD,0,Morgantown,Westover,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.63,-80.04,14910 +26502,"PO BOX",0,Morgantown,Westover,,WV,"Monongalia County",America/New_York,304,NA,US,39.63,-79.94,229 +26504,"PO BOX",0,Morgantown,"Star City",,WV,"Monongalia County",America/New_York,304,NA,US,39.63,-79.94,337 +26505,STANDARD,0,Morgantown,"Booth, Everettville, Star City",Sabraton,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.63,-79.94,18700 +26506,STANDARD,0,Morgantown,,,WV,"Monongalia County",America/New_York,"681,304",NA,US,39.63,-79.94,28 +26507,"PO BOX",0,Morgantown,,"Cheat Lake",WV,"Monongalia County",America/New_York,304,NA,US,39.63,-79.94,704 +26508,STANDARD,0,Morgantown,"Little Falls","Cheat Lake, Sabraton",WV,"Monongalia County",America/New_York,"304,681",NA,US,39.6,-79.9,30840 +26519,STANDARD,0,Albright,,,WV,"Preston County",America/New_York,"304,681",NA,US,39.49,-79.63,1450 +26520,"PO BOX",0,Arthurdale,,,WV,"Preston County",America/New_York,304,NA,US,39.49,-79.82,812 +26521,STANDARD,0,Blacksville,,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.71,-80.23,420 +26524,STANDARD,0,Bretz,,,WV,"Preston County",America/New_York,304,NA,US,39.55,-79.81,129 +26525,STANDARD,0,"Bruceton Mills","Brandonville, Bruceton Mls, Cuzzart, Hazelton",,WV,"Preston County",America/New_York,"304,681",NA,US,39.65,-79.64,4630 +26527,"PO BOX",0,Cassville,,,WV,"Monongalia County",America/New_York,304,NA,US,39.66,-80.05,193 +26531,"PO BOX",0,Dellslow,,,WV,"Monongalia County",America/New_York,304,NA,US,39.6,-79.89,1099 +26534,"PO BOX",0,Granville,,,WV,"Monongalia County",America/New_York,304,NA,US,39.64,-79.99,938 +26537,STANDARD,0,Kingwood,,,WV,"Preston County",America/New_York,304,NA,US,39.47,-79.68,4850 +26541,STANDARD,0,Maidsville,Core,,WV,"Monongalia County",America/New_York,"681,304",NA,US,39.7,-79.99,3060 +26542,STANDARD,0,Masontown,Cascade,,WV,"Preston County",America/New_York,681,NA,US,39.55,-79.8,2110 +26543,STANDARD,0,Osage,,,WV,"Monongalia County",America/New_York,304,NA,US,39.66,-80,154 +26544,"PO BOX",0,Pentress,,,WV,"Monongalia County",America/New_York,304,NA,US,39.69,-80.18,247 +26546,STANDARD,0,Pursglove,,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.7,-80.06,500 +26547,STANDARD,0,Reedsville,,,WV,"Preston County",America/New_York,304,NA,US,39.51,-79.8,2480 +26554,STANDARD,0,Fairmont,"Jordan, Monongah, Pleasant Valley, Pleasant Vly, White Hall",Bellview,WV,"Marion County",America/New_York,"304,681",NA,US,39.48,-80.14,33980 +26555,"PO BOX",0,Fairmont,"Monongah, Whitehall","Pleasant Valley",WV,"Marion County",America/New_York,304,NA,US,39.48,-80.14,1076 +26559,"PO BOX",0,Barrackville,,,WV,"Marion County",America/New_York,304,NA,US,39.5,-80.17,1341 +26560,STANDARD,0,Baxter,,,WV,"Marion County",America/New_York,304,NA,US,39.54,-80.15,129 +26561,STANDARD,0,"Big Run",,,WV,"Wetzel County",America/New_York,304,NA,US,39.59,-80.57,0 +26562,STANDARD,0,Burton,Coburn,,WV,"Wetzel County",America/New_York,304,NA,US,39.66,-80.39,520 +26563,"PO BOX",0,Carolina,,,WV,"Marion County",America/New_York,304,NA,US,39.48,-80.27,340 +26566,"PO BOX",0,Colfax,,,WV,"Marion County",America/New_York,304,NA,US,39.43,-80.12,96 +26568,STANDARD,0,Enterprise,,,WV,"Harrison County",America/New_York,304,NA,US,39.42,-80.28,430 +26570,STANDARD,0,Fairview,,,WV,"Monongalia County",America/New_York,304,NA,US,39.59,-80.24,2770 +26571,STANDARD,0,Farmington,,,WV,"Marion County",America/New_York,304,NA,US,39.51,-80.25,1750 +26572,"PO BOX",0,"Four States",,,WV,"Marion County",America/New_York,304,NA,US,39.49,-80.31,183 +26574,"PO BOX",0,"Grant Town",,,WV,"Marion County",America/New_York,304,NA,US,39.59,-80.19,423 +26575,STANDARD,0,Hundred,,,WV,"Wetzel County",America/New_York,"304,681",NA,US,39.68,-80.45,640 +26576,"PO BOX",0,Idamay,,,WV,"Marion County",America/New_York,304,NA,US,39.49,-80.26,437 +26578,"PO BOX",0,Kingmont,,,WV,"Marion County",America/New_York,304,NA,US,39.45,-80.15,259 +26581,STANDARD,0,Littleton,"Knob Fork, Wileyville",,WV,"Wetzel County",America/New_York,304,NA,US,39.69,-80.51,730 +26582,STANDARD,0,Mannington,,,WV,"Marion County",America/New_York,304,NA,US,39.52,-80.34,4030 +26585,STANDARD,0,Metz,,,WV,"Marion County",America/New_York,304,NA,US,39.61,-80.43,390 +26586,STANDARD,0,"Montana Mines",,,WV,"Marion County",America/New_York,304,NA,US,39.52,-80.1,155 +26587,STANDARD,0,Rachel,,,WV,"Marion County",America/New_York,304,NA,US,39.52,-80.29,280 +26588,STANDARD,0,Rivesville,,,WV,"Marion County",America/New_York,304,NA,US,39.53,-80.12,2550 +26590,STANDARD,0,Wana,Wadestown,,WV,"Monongalia County",America/New_York,"304,681",NA,US,39.7,-80.31,610 +26591,STANDARD,0,Worthington,,,WV,"Marion County",America/New_York,304,NA,US,39.45,-80.26,1240 +26601,STANDARD,0,Sutton,"Centralia, Herold, Newville",,WV,"Braxton County",America/New_York,304,NA,US,38.66,-80.71,3190 +26610,STANDARD,0,"Birch River",,,WV,"Nicholas County",America/New_York,"304,681",NA,US,38.49,-80.75,860 +26611,STANDARD,0,Cedarville,Flower,,WV,"Gilmer County",America/New_York,304,NA,US,38.84,-80.84,239 +26615,STANDARD,0,Copen,,,WV,"Braxton County",America/New_York,304,NA,US,38.84,-80.72,101 +26617,STANDARD,0,Dille,,,WV,"Clay County",America/New_York,"304,681",NA,US,38.5,-80.83,171 +26619,STANDARD,0,Exchange,Riffle,,WV,"Braxton County",America/New_York,304,NA,US,38.79,-80.76,440 +26621,STANDARD,0,Flatwoods,Corley,,WV,"Braxton County",America/New_York,304,NA,US,38.72,-80.65,650 +26623,STANDARD,0,Frametown,"Clem, Glendon, Wilsie",,WV,"Braxton County",America/New_York,304,NA,US,38.62,-80.88,1040 +26624,STANDARD,0,Gassaway,Chapel,,WV,"Braxton County",America/New_York,304,NA,US,38.67,-80.77,2070 +26627,STANDARD,0,Heaters,,,WV,"Braxton County",America/New_York,304,NA,US,38.75,-80.59,360 +26629,STANDARD,0,"Little Birch",Tesla,,WV,"Braxton County",America/New_York,304,NA,US,38.57,-80.7,330 +26631,STANDARD,0,Napier,"Falls Mill",,WV,"Braxton County",America/New_York,304,NA,US,38.77,-80.57,170 +26636,STANDARD,0,Rosedale,"Nicut, Perkins",,WV,"Gilmer County",America/New_York,304,NA,US,38.78,-80.89,390 +26638,STANDARD,0,Shock,,,WV,"Gilmer County",America/New_York,304,NA,US,38.76,-80.99,133 +26651,STANDARD,0,Summersville,,,WV,"Nicholas County",America/New_York,"304,681",NA,US,38.28,-80.84,7190 +26656,STANDARD,0,Belva,,,WV,"Nicholas County",America/New_York,304,NA,US,38.28,-81.16,290 +26660,STANDARD,0,Calvin,,,WV,"Nicholas County",America/New_York,304,NA,US,38.36,-80.7,280 +26662,STANDARD,0,Canvas,,,WV,"Nicholas County",America/New_York,304,NA,US,38.26,-80.73,810 +26667,"PO BOX",0,Drennen,,,WV,"Nicholas County",America/New_York,304,NA,US,38.24,-81.01,184 +26671,"PO BOX",0,Gilboa,,,WV,"Nicholas County",America/New_York,304,NA,US,38.29,-80.96,219 +26675,"PO BOX",0,"Keslers Cross Lanes","Kesler Cr Lns",Poe,WV,"Nicholas County",America/New_York,304,NA,US,38.24,-80.94,103 +26676,STANDARD,0,Leivasy,,,WV,"Nicholas County",America/New_York,304,NA,US,38.16,-80.65,330 +26678,STANDARD,0,"Mount Lookout",,,WV,"Nicholas County",America/New_York,304,NA,US,38.17,-80.9,1010 +26679,STANDARD,0,"Mount Nebo",Runa,,WV,"Nicholas County",America/New_York,304,NA,US,38.19,-80.8,1520 +26680,STANDARD,0,Nallen,Russelville,,WV,"Fayette County",America/New_York,304,NA,US,38.1,-80.88,270 +26681,STANDARD,0,Nettie,,,WV,"Nicholas County",America/New_York,304,NA,US,38.23,-80.73,1310 +26684,STANDARD,0,Pool,,,WV,"Nicholas County",America/New_York,304,NA,US,38.16,-80.85,85 +26690,STANDARD,0,Swiss,Jodie,,WV,"Fayette County",America/New_York,304,NA,US,38.18,-81.09,290 +26691,STANDARD,0,Tioga,,,WV,"Nicholas County",America/New_York,304,NA,US,38.39,-80.67,310 +26704,STANDARD,0,Augusta,,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.3,-78.59,4310 +26705,STANDARD,0,Aurora,Amboy,,WV,"Preston County",America/New_York,304,NA,US,39.29,-79.56,900 +26707,"PO BOX",0,Bayard,Wilson,,WV,"Grant County",America/New_York,304,NA,US,39.26,-79.36,282 +26710,STANDARD,0,Burlington,Medley,,WV,"Mineral County",America/New_York,"304,681",NA,US,39.36,-78.91,1680 +26711,STANDARD,0,"Capon Bridge",,,WV,"Hampshire County",America/New_York,"304,681",NA,US,39.28,-78.47,2290 +26714,STANDARD,0,Delray,,,WV,"Hampshire County",America/New_York,304,NA,US,39.19,-78.6,310 +26716,STANDARD,0,Eglon,"Horse Shoe Rn, Horse Shoe Run",,WV,"Preston County",America/New_York,"304,681",NA,US,39.29,-79.51,540 +26717,STANDARD,0,"Elk Garden",,,WV,"Mineral County",America/New_York,304,NA,US,39.38,-79.15,830 +26719,STANDARD,0,"Fort Ashby",,,WV,"Mineral County",America/New_York,304,NA,US,39.49,-78.76,2550 +26720,STANDARD,0,Gormania,,,WV,"Grant County",America/New_York,304,NA,US,39.28,-79.33,184 +26722,STANDARD,0,"Green Spring",,,WV,"Hampshire County",America/New_York,304,NA,US,39.5,-78.64,480 +26726,STANDARD,0,Keyser,"Rocket Center, Scherr, Short Gap",,WV,"Mineral County",America/New_York,"304,681",NA,US,39.43,-78.98,10910 +26731,STANDARD,0,Lahmansville,,,WV,"Grant County",America/New_York,304,NA,US,39.17,-79.07,290 +26739,STANDARD,0,"Mount Storm",,,WV,"Grant County",America/New_York,304,NA,US,39.27,-79.24,680 +26743,STANDARD,0,"New Creek",,,WV,"Mineral County",America/New_York,304,NA,US,39.29,-79.08,1370 +26750,STANDARD,0,Piedmont,,,WV,"Mineral County",America/New_York,304,NA,US,39.48,-79.04,590 +26753,STANDARD,0,Ridgeley,"Carpendale, Patterson Creek, Patterson Crk",,WV,"Mineral County",America/New_York,304,NA,US,39.64,-78.77,5420 +26755,STANDARD,0,Rio,Kirby,,WV,"Hampshire County",America/New_York,304,NA,US,39.17,-78.72,560 +26757,STANDARD,0,Romney,"Three Chrs, Three Churches",,WV,"Hampshire County",America/New_York,304,NA,US,39.34,-78.75,4920 +26761,STANDARD,0,Shanks,,,WV,"Hampshire County",America/New_York,304,NA,US,39.26,-78.7,470 +26763,STANDARD,0,Springfield,,,WV,"Hampshire County",America/New_York,304,NA,US,39.45,-78.69,1390 +26764,STANDARD,0,"Terra Alta","Corinth, Hopemont",,WV,"Preston County",America/New_York,304,NA,US,39.44,-79.54,3400 +26767,STANDARD,0,"Wiley Ford",,,WV,"Mineral County",America/New_York,304,NA,US,39.62,-78.76,570 +26801,STANDARD,0,Baker,,,WV,"Hardy County",America/New_York,304,NA,US,39.04,-78.74,1110 +26802,STANDARD,0,Brandywine,"Fort Seybert","Ft Seybert",WV,"Pendleton County",America/New_York,304,NA,US,38.62,-79.24,920 +26804,STANDARD,0,Circleville,,,WV,"Pendleton County",America/New_York,304,NA,US,38.67,-79.49,510 +26807,STANDARD,0,Franklin,,,WV,"Pendleton County",America/New_York,304,NA,US,38.64,-79.33,2400 +26808,STANDARD,0,"High View",,,WV,"Hampshire County",America/New_York,304,NA,US,39.2,-78.45,710 +26810,STANDARD,0,"Lost City","Lost River",,WV,"Hardy County",America/New_York,304,NA,US,38.99,-78.76,260 +26812,STANDARD,0,Mathias,,,WV,"Hardy County",America/New_York,304,NA,US,38.87,-78.86,1340 +26814,STANDARD,0,Riverton,,,WV,"Pendleton County",America/New_York,304,NA,US,38.74,-79.43,340 +26815,STANDARD,0,"Sugar Grove",Moyers,,WV,"Pendleton County",America/New_York,304,NA,US,38.51,-79.32,540 +26817,STANDARD,0,Bloomery,,,WV,"Hampshire County",America/New_York,304,NA,US,39.38,-78.37,410 +26818,STANDARD,0,Fisher,,,WV,"Hardy County",America/New_York,304,NA,US,39.05,-79,740 +26823,"PO BOX",0,"Capon Springs",,,WV,"Hampshire County",America/New_York,304,NA,US,39.13,-78.48,101 +26833,STANDARD,0,Maysville,,,WV,"Grant County",America/New_York,"304,681",NA,US,39.11,-79.16,1910 +26836,STANDARD,0,Moorefield,Rig,,WV,"Hardy County",America/New_York,"304,681",NA,US,39.06,-78.96,5820 +26838,STANDARD,0,Milam,,,WV,"Hardy County",America/New_York,304,NA,US,38.81,-79.09,26 +26845,STANDARD,0,"Old Fields",,,WV,"Hardy County",America/New_York,304,NA,US,39.14,-78.95,730 +26847,STANDARD,0,Petersburg,"Arthur, Dorcas, Landes Sta, Landes Station",,WV,"Grant County",America/New_York,"304,681",NA,US,38.99,-79.12,5170 +26851,STANDARD,0,Wardensville,,,WV,"Hardy County",America/New_York,"304,681",NA,US,39.07,-78.59,1780 +26852,STANDARD,0,Purgitsville,Junction,,WV,"Hampshire County",America/New_York,304,NA,US,39.23,-78.92,710 +26855,STANDARD,0,Cabins,,,WV,"Grant County",America/New_York,304,NA,US,38.99,-79.2,630 +26865,STANDARD,0,"Yellow Spring",Lehew,,WV,"Hampshire County",America/New_York,304,NA,US,39.18,-78.49,400 +26866,STANDARD,0,"Upper Tract",,,WV,"Pendleton County",America/New_York,304,NA,US,38.79,-79.25,680 +26884,STANDARD,0,"Seneca Rocks",,,WV,"Pendleton County",America/New_York,304,NA,US,38.83,-79.37,520 +26886,"PO BOX",0,Onego,,,WV,"Pendleton County",America/New_York,304,NA,US,38.81,-79.47,110 +27006,STANDARD,0,Advance,"Bermuda Run","Bixby, Fork, Hillsdale, Redland",NC,"Davie County",America/New_York,336,NA,US,35.93,-80.4,13890 +27007,STANDARD,0,Ararat,,"Ash Hill",NC,"Surry County",America/New_York,336,NA,US,36.4,-80.56,1890 +27009,STANDARD,0,"Belews Creek",,"Belew Creek",NC,"Forsyth County",America/New_York,336,NA,US,36.25,-80.06,2600 +27010,"PO BOX",0,Bethania,,,NC,"Forsyth County",America/New_York,336,NA,US,36.14,-80.3,318 +27011,STANDARD,0,Boonville,,"Booneville, Longtown, Richmond Hill",NC,"Yadkin County",America/New_York,336,NA,US,36.23,-80.7,4550 +27012,STANDARD,0,Clemmons,,,NC,"Forsyth County",America/New_York,336,NA,US,36.02,-80.38,27600 +27013,STANDARD,0,Cleveland,Barber,"Amity, Cool Spring, Mount Vernon",NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.73,-80.67,5430 +27014,"PO BOX",0,Cooleemee,,,NC,"Davie County",America/New_York,336,NA,US,35.81,-80.55,1437 +27016,STANDARD,0,Danbury,,Hartman,NC,"Stokes County",America/New_York,336,NA,US,36.45,-80.22,1350 +27017,STANDARD,0,Dobson,,"Copeland, Devotion, Fairview Cross Roads, Rockford, Stony Knoll",NC,"Surry County",America/New_York,336,NA,US,36.39,-80.72,7330 +27018,STANDARD,0,"East Bend",,,NC,"Yadkin County",America/New_York,336,NA,US,36.21,-80.5,6590 +27019,STANDARD,0,Germanton,,,NC,"Stokes County",America/New_York,336,NA,US,36.26,-80.23,3320 +27020,STANDARD,0,Hamptonville,,"Brooks Cross Roads, Buck Shoals, Cycle, Eagle, Marler, Winders Cross Roads",NC,"Yadkin County",America/New_York,336,NA,US,36.11,-80.81,5230 +27021,STANDARD,0,King,,,NC,"Stokes County",America/New_York,336,NA,US,36.27,-80.35,15050 +27022,STANDARD,0,Lawsonville,,"Harts Store",NC,"Stokes County",America/New_York,336,NA,US,36.51,-80.22,1210 +27023,STANDARD,0,Lewisville,,"West Bend",NC,"Forsyth County",America/New_York,336,NA,US,36.09,-80.4,12630 +27024,STANDARD,0,Lowgap,,,NC,"Surry County",America/New_York,336,NA,US,36.52,-80.84,2020 +27025,STANDARD,0,Madison,,Ellisboro,NC,"Rockingham County",America/New_York,336,NA,US,36.38,-79.97,9120 +27027,STANDARD,0,Mayodan,,Ayersville,NC,"Rockingham County",America/New_York,336,NA,US,36.41,-79.97,3070 +27028,STANDARD,0,Mocksville,,Farmington,NC,"Davie County",America/New_York,336,NA,US,35.89,-80.55,22870 +27030,STANDARD,0,"Mount Airy",,"Mt Airy, Round Peak, White Sulphur Springs",NC,"Surry County",America/New_York,336,NA,US,36.5,-80.61,29530 +27031,"PO BOX",0,"Mount Airy",,"Mt Airy",NC,"Surry County",America/New_York,336,NA,US,36.44,-80.63,186 +27040,STANDARD,0,Pfafftown,,"Dosier, Seward, Vienna",NC,"Forsyth County",America/New_York,336,NA,US,36.17,-80.39,11400 +27041,STANDARD,0,"Pilot Mountain","Pilot Mtn","Pilot Mnt, Pilot Mt, Pilot Mts",NC,"Surry County",America/New_York,336,NA,US,36.38,-80.47,6660 +27042,STANDARD,0,"Pine Hall",,,NC,"Stokes County",America/New_York,336,NA,US,36.35,-80.06,600 +27043,STANDARD,0,Pinnacle,,"Dalton, Perch, Shoal",NC,"Stokes County",America/New_York,336,NA,US,36.33,-80.4,5340 +27045,STANDARD,0,"Rural Hall",,Stanleyville,NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,8730 +27046,STANDARD,0,"Sandy Ridge",,,NC,"Stokes County",America/New_York,336,NA,US,36.5,-80.11,1620 +27047,STANDARD,0,Siloam,,,NC,"Surry County",America/New_York,336,NA,US,36.32,-80.57,950 +27048,STANDARD,0,Stoneville,,"Matrimony, Price",NC,"Rockingham County",America/New_York,336,NA,US,36.46,-79.9,6710 +27049,"PO BOX",0,Toast,,,NC,"Surry County",America/New_York,336,NA,US,36.49,-80.63,848 +27050,STANDARD,0,Tobaccoville,,,NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.39,3470 +27051,STANDARD,0,Walkertown,,,NC,"Forsyth County",America/New_York,336,NA,US,36.17,-80.15,7130 +27052,STANDARD,0,"Walnut Cove",,"Brook Cove, Fulp, Meadow",NC,"Stokes County",America/New_York,336,NA,US,36.29,-80.13,8370 +27053,STANDARD,0,Westfield,,"W Field",NC,"Stokes County",America/New_York,336,NA,US,36.47,-80.35,2520 +27054,STANDARD,0,Woodleaf,,,NC,"Rowan County",America/New_York,336,NA,US,35.76,-80.59,2380 +27055,STANDARD,0,Yadkinville,,"Branon, Center, Courtney, Footsville, Lone Hickory, Shacktown",NC,"Yadkin County",America/New_York,336,NA,US,36.13,-80.65,12030 +27094,UNIQUE,0,"Rural Hall",,"Princess House",NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,0 +27098,UNIQUE,0,"Rural Hall",,"Hanes Brands Inc",NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,0 +27099,UNIQUE,0,"Rural Hall",,"Hanes Brands Inc",NC,"Forsyth County",America/New_York,336,NA,US,36.23,-80.29,0 +27101,STANDARD,0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,14790 +27102,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,411 +27103,STANDARD,0,"Winston Salem",,"Ardmore, Hanes, Muddy Creek",NC,"Forsyth County",America/New_York,336,NA,US,36.06,-80.32,30740 +27104,STANDARD,0,"Winston Salem",,"Peace Haven Estates",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.32,26910 +27105,STANDARD,0,"Winston Salem",,"North, Sedges Garden",NC,"Forsyth County",America/New_York,336,NA,US,36.16,-80.23,32260 +27106,STANDARD,0,"Winston Salem",,"Mount Tabor, Oldtown",NC,"Forsyth County",America/New_York,336,NA,US,36.14,-80.32,40470 +27107,STANDARD,0,"Winston Salem",,"Eller, Gumtree, Waughtown",NC,"Forsyth County",America/New_York,336,NA,US,36.01,-80.18,42250 +27108,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,19 +27109,STANDARD,0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.13,-80.28,73 +27110,UNIQUE,0,"Winston Salem",,"Ws State Univ",NC,"Forsyth County",America/New_York,336,NA,US,36.09,-80.22,59 +27111,UNIQUE,0,"Winston Salem",,"Wachovia Bldg Vim",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27113,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,317 +27114,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,420 +27115,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,383 +27116,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,496 +27117,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,393 +27120,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,282 +27127,STANDARD,0,"Winston Salem",,Waughtown,NC,"Forsyth County",America/New_York,336,NA,US,36.02,-80.28,33890 +27130,"PO BOX",0,"Winston Salem",,,NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,210 +27150,UNIQUE,0,"Winston Salem",,"Wachovia Bank",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,102 +27151,UNIQUE,1,Winston-salem,"Winston Salem","Wachovia Master Chrg",NC,"Forsyth County",America/New_York,336,NA,US,36.11,-80.24,0 +27152,UNIQUE,0,"Winston Salem",,"Integon Corp",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27155,UNIQUE,0,"Winston Salem",,"Veterans Affairs",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27156,UNIQUE,1,Winston-salem,"Winston Salem","Piedmont Aviation",NC,"Forsyth County",America/New_York,336,NA,US,36.14,-80.22,0 +27157,UNIQUE,0,"Winston Salem",,"Bowman Gray School Of Med, Nc Baptist Hospital",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,47 +27198,UNIQUE,0,"Winston Salem",,"Winston Salem Courtesy Reply",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27199,UNIQUE,0,"Winston Salem",,"Winston Salem Brm",NC,"Forsyth County",America/New_York,336,NA,US,36.1,-80.24,0 +27201,"PO BOX",0,Alamance,,,NC,"Alamance County",America/New_York,,NA,US,36.03,-79.48,439 +27202,"PO BOX",0,Altamahaw,,,NC,"Alamance County",America/New_York,,NA,US,36.17,-79.5,248 +27203,STANDARD,0,Asheboro,,,NC,"Randolph County",America/New_York,336,NA,US,35.71,-79.81,17450 +27204,"PO BOX",0,Asheboro,,,NC,"Randolph County",America/New_York,336,NA,US,35.71,-79.81,2340 +27205,STANDARD,0,Asheboro,,,NC,"Randolph County",America/New_York,336,NA,US,35.65,-79.84,28530 +27207,STANDARD,0,"Bear Creek",,"Harpers Crossroads",NC,"Chatham County",America/New_York,919,NA,US,35.6,-79.36,3090 +27208,STANDARD,0,Bennett,,,NC,"Chatham County",America/New_York,"910,336",NA,US,35.57,-79.52,1390 +27209,STANDARD,0,Biscoe,,,NC,"Montgomery County",America/New_York,910,NA,US,35.36,-79.78,3850 +27212,STANDARD,0,Blanch,,Blanche,NC,"Caswell County",America/New_York,336,NA,US,36.51,-79.28,1170 +27213,"PO BOX",0,Bonlee,,,NC,"Chatham County",America/New_York,,NA,US,35.61,-79.44,233 +27214,STANDARD,0,"Browns Summit",,"Brightwood, Brown Summit, Busick, Monticello, Osceola, Rudd",NC,"Guilford County",America/New_York,336,NA,US,36.21,-79.67,11080 +27215,STANDARD,0,Burlington,"Glen Raven",Burl,NC,"Alamance County",America/New_York,336,NA,US,36.08,-79.44,37790 +27216,"PO BOX",0,Burlington,,,NC,"Alamance County",America/New_York,336,NA,US,36.08,-79.44,1247 +27217,STANDARD,0,Burlington,"Green Level",,NC,"Alamance County",America/New_York,336,NA,US,36.19,-79.38,32500 +27220,UNIQUE,1,Burlington,,"Kayser Roth",NC,"Alamance County",America/New_York,336,NA,US,36.02,-79.48,0 +27228,"PO BOX",0,Bynum,Pittsboro,,NC,"Chatham County",America/New_York,,NA,US,35.77,-79.15,106 +27229,STANDARD,0,Candor,,Canden,NC,"Montgomery County",America/New_York,910,NA,US,35.29,-79.74,3630 +27230,"PO BOX",0,"Cedar Falls",,,NC,"Randolph County",America/New_York,336,NA,US,35.8,-79.72,247 +27231,STANDARD,0,"Cedar Grove",,,NC,"Orange County",America/New_York,919,NA,US,36.2,-79.17,1730 +27233,STANDARD,0,Climax,,,NC,"Randolph County",America/New_York,,NA,US,35.89,-79.71,2980 +27235,STANDARD,0,Colfax,,,NC,"Guilford County",America/New_York,336,NA,US,36.09,-80.01,4600 +27237,"PO BOX",0,Cumnock,Sanford,,NC,"Lee County",America/New_York,919,NA,US,35.54,-79.23,0 +27239,STANDARD,0,Denton,,"Handy, Healing Springs, High Rock, Jacksons Creek, New Hope Academy, Newsom",NC,"Davidson County",America/New_York,336,NA,US,35.63,-80.11,7410 +27242,STANDARD,0,"Eagle Springs",,,NC,"Moore County",America/New_York,,NA,US,35.3,-79.65,1550 +27243,STANDARD,0,Efland,,Buckhorn,NC,"Orange County",America/New_York,919,NA,US,36.06,-79.17,4290 +27244,STANDARD,0,Elon,"Elon College","Ossipee, Stonycreek",NC,"Alamance County",America/New_York,336,NA,US,36.09,-79.51,9970 +27247,"PO BOX",0,Ether,,,NC,"Montgomery County",America/New_York,910,NA,US,35.44,-79.78,218 +27248,STANDARD,0,Franklinville,,"Grays Chapel, Millboro",NC,"Randolph County",America/New_York,336,NA,US,35.74,-79.69,3800 +27249,STANDARD,0,Gibsonville,,,NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.54,11450 +27252,STANDARD,0,Goldston,,,NC,"Chatham County",America/New_York,919,NA,US,35.59,-79.32,1440 +27253,STANDARD,0,Graham,,,NC,"Alamance County",America/New_York,336,NA,US,36.06,-79.39,27030 +27256,"PO BOX",0,Gulf,,,NC,"Chatham County",America/New_York,,NA,US,35.57,-79.28,196 +27258,STANDARD,0,"Haw River",,,NC,"Alamance County",America/New_York,336,NA,US,36.09,-79.36,6380 +27259,"PO BOX",0,Highfalls,,,NC,"Chatham County",America/New_York,,NA,US,35.48,-79.53,158 +27260,STANDARD,0,"High Point",,"Deep River, Freemans Mills, Glenola, H P, High Pnt",NC,"Guilford County",America/New_York,336,NA,US,35.95,-79.99,19500 +27261,"PO BOX",0,"High Point",,,NC,"Guilford County",America/New_York,336,NA,US,35.98,-79.99,1220 +27262,STANDARD,0,"High Point",,Emerywood,NC,"Guilford County",America/New_York,336,NA,US,35.96,-80.04,19100 +27263,STANDARD,0,"High Point",Archdale,"Allen Jay",NC,"Randolph County",America/New_York,336,NA,US,35.91,-79.94,18650 +27264,"PO BOX",0,"High Point",,,NC,"Guilford County",America/New_York,336,NA,US,35.98,-79.99,141 +27265,STANDARD,0,"High Point",,,NC,"Guilford County",America/New_York,336,NA,US,35.98,-79.99,46780 +27268,UNIQUE,0,"High Point",,"High Point University",NC,"Guilford County",America/New_York,,NA,US,35.95,-80.01,0 +27278,STANDARD,0,Hillsborough,,"Hillsboro, West Hillsborough",NC,"Orange County",America/New_York,919,NA,US,36.07,-79.1,25920 +27281,STANDARD,0,"Jackson Springs","Foxfire Village, Foxfire Vlg, Jackson Spgs","Foxfire, Marcus, Wind Blow",NC,"Moore County",America/New_York,,NA,US,35.19,-79.64,2390 +27282,STANDARD,0,Jamestown,,,NC,"Guilford County",America/New_York,336,NA,US,35.99,-79.93,15080 +27283,STANDARD,0,Julian,,,NC,"Guilford County",America/New_York,336,NA,US,35.95,-79.63,2830 +27284,STANDARD,0,Kernersville,,"Guthrie, Matthewstown, Talleys Crossing, Union Cross",NC,"Forsyth County",America/New_York,336,NA,US,36.11,-80.07,50110 +27285,"PO BOX",0,Kernersville,,,NC,"Forsyth County",America/New_York,336,NA,US,36.11,-80.07,940 +27288,STANDARD,0,Eden,,"Boulevard, Draper, Leaksville, Meadow Summit, New Leaksville, Spray",NC,"Rockingham County",America/New_York,336,NA,US,36.5,-79.74,17850 +27289,"PO BOX",0,Eden,,,NC,"Rockingham County",America/New_York,336,NA,US,36.5,-79.74,1111 +27291,STANDARD,0,Leasburg,,"Frogsboro, Osmond",NC,"Caswell County",America/New_York,336,NA,US,36.4,-79.16,1260 +27292,STANDARD,0,Lexington,,"Arcadia, Arnold, Churchland, Cid, Cotton Grove, Enterprise, Feezor, Gordontown, Hannersville, Hedrick Grove, Holly Grove, Lex, Petersville, Reeds Cross Roads, Reedy Creek, Silver Valley, South Lexington, Tyro, Yadkin, Yadkin College",NC,"Davidson County",America/New_York,336,NA,US,35.8,-80.25,31840 +27293,"PO BOX",0,Lexington,,,NC,"Davidson County",America/New_York,336,NA,US,35.8,-80.25,1131 +27294,UNIQUE,0,Lexington,,"National Wholesale Co Inc",NC,"Davidson County",America/New_York,336,NA,US,35.8,-80.25,0 +27295,STANDARD,0,Lexington,,,NC,"Davidson County",America/New_York,336,NA,US,35.87,-80.31,33450 +27298,STANDARD,0,Liberty,,Kimesville,NC,"Randolph County",America/New_York,336,NA,US,35.85,-79.57,9270 +27299,STANDARD,0,Linwood,,,NC,"Davidson County",America/New_York,336,NA,US,35.75,-80.39,4480 +27301,STANDARD,0,"Mc Leansville",,Mcleansville,NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.66,9600 +27302,STANDARD,0,Mebane,,,NC,"Alamance County",America/New_York,919,NA,US,36.09,-79.27,29080 +27305,STANDARD,0,Milton,,Estelle,NC,"Caswell County",America/New_York,336,NA,US,36.53,-79.2,1210 +27306,STANDARD,0,"Mount Gilead",,Wadeville,NC,"Montgomery County",America/New_York,"704,910",NA,US,35.21,-80,5150 +27310,STANDARD,0,"Oak Ridge",,,NC,"Guilford County",America/New_York,336,NA,US,36.17,-79.98,8630 +27311,STANDARD,0,Pelham,,,NC,"Caswell County",America/New_York,336,NA,US,36.5,-79.46,2630 +27312,STANDARD,0,Pittsboro,"Fearrington, Fearrington Village",,NC,"Chatham County",America/New_York,919,NA,US,35.71,-79.17,19740 +27313,STANDARD,0,"Pleasant Garden","Pleasant Gdn","Pleasant Gdns",NC,"Guilford County",America/New_York,336,NA,US,35.96,-79.77,6220 +27314,STANDARD,0,"Prospect Hill",,,NC,"Caswell County",America/New_York,336,NA,US,36.25,-79.2,940 +27315,STANDARD,0,Providence,,,NC,"Caswell County",America/New_York,336,NA,US,36.5,-79.36,1620 +27316,STANDARD,0,Ramseur,Coleridge,"Parks Crossroads",NC,"Randolph County",America/New_York,336,NA,US,35.73,-79.65,5710 +27317,STANDARD,0,Randleman,,"Level Cross, New Salem",NC,"Randolph County",America/New_York,336,NA,US,35.81,-79.8,15080 +27320,STANDARD,0,Reidsville,,"Camp Springs, Cherrygrove, Harrison Cross Roads, Midway, Monroeton",NC,"Rockingham County",America/New_York,336,NA,US,36.34,-79.67,31210 +27321,UNIQUE,1,Reidsville,,"Burlington House",NC,"Rockingham County",America/New_York,336,NA,US,36.35,-79.66,0 +27322,UNIQUE,1,Reidsville,,"Chase Packaging Inc",NC,"Rockingham County",America/New_York,336,NA,US,36.35,-79.66,0 +27323,"PO BOX",0,Reidsville,,,NC,"Rockingham County",America/New_York,336,NA,US,36.34,-79.67,1300 +27325,STANDARD,0,Robbins,Glendon,,NC,"Moore County",America/New_York,910,NA,US,35.43,-79.58,5220 +27326,STANDARD,0,Ruffin,,"Allison, Casville, Oregon Hill, Powells Store, Quick",NC,"Rockingham County",America/New_York,336,NA,US,36.45,-79.55,3020 +27330,STANDARD,0,Sanford,"Buffalo Lake, Colon","Carbonton, Haw Branch, Jonesboro Heights, Osgood, Pine View, Shallowell, Swan Station, Tramway, White Hill",NC,"Lee County",America/New_York,919,NA,US,35.47,-79.18,33820 +27331,"PO BOX",0,Sanford,,,NC,"Lee County",America/New_York,919,NA,US,35.47,-79.18,3264 +27332,STANDARD,0,Sanford,,,NC,"Lee County",America/New_York,919,NA,US,35.36,-79.13,28200 +27340,"PO BOX",0,Saxapahaw,,,NC,"Alamance County",America/New_York,,NA,US,35.95,-79.32,314 +27341,STANDARD,0,Seagrove,,,NC,"Randolph County",America/New_York,"336,910",NA,US,35.54,-79.77,4480 +27342,"PO BOX",0,Sedalia,,,NC,"Guilford County",America/New_York,336,NA,US,36.14,-79.57,266 +27343,STANDARD,0,Semora,,,NC,"Person County",America/New_York,,NA,US,36.49,-79.14,1300 +27344,STANDARD,0,"Siler City",,"Silk Hope",NC,"Chatham County",America/New_York,919,NA,US,35.72,-79.46,15510 +27349,STANDARD,0,"Snow Camp",,"Rock Creek",NC,"Alamance County",America/New_York,336,NA,US,35.86,-79.41,5560 +27350,STANDARD,0,Sophia,,,NC,"Randolph County",America/New_York,336,NA,US,35.81,-79.89,5580 +27351,"PO BOX",0,Southmont,,,NC,"Davidson County",America/New_York,336,NA,US,35.81,-80.26,756 +27355,STANDARD,0,Staley,,"Soapstone Mountain",NC,"Randolph County",America/New_York,336,NA,US,35.79,-79.55,2240 +27356,STANDARD,0,Star,,,NC,"Montgomery County",America/New_York,910,NA,US,35.4,-79.78,2410 +27357,STANDARD,0,Stokesdale,,,NC,"Rockingham County",America/New_York,,NA,US,36.23,-79.98,8600 +27358,STANDARD,0,Summerfield,,,NC,"Guilford County",America/New_York,336,NA,US,36.2,-79.89,14390 +27359,"PO BOX",0,Swepsonville,,,NC,"Alamance County",America/New_York,,NA,US,36.02,-79.35,400 +27360,STANDARD,0,Thomasville,,"Erwin Heights",NC,"Davidson County",America/New_York,336,NA,US,35.88,-80.07,39500 +27361,"PO BOX",0,Thomasville,,,NC,"Davidson County",America/New_York,336,NA,US,35.88,-80.07,1915 +27370,STANDARD,0,Trinity,,,NC,"Randolph County",America/New_York,336,NA,US,35.88,-80.01,13440 +27371,STANDARD,0,Troy,,"Flint Hill, Lovejoy, Moratock, Okeewemee, Ophir, Queen, Uwharie",NC,"Montgomery County",America/New_York,910,NA,US,35.36,-79.89,5940 +27373,"PO BOX",0,Wallburg,,,NC,"Davidson County",America/New_York,336,NA,US,36.01,-80.14,306 +27374,"PO BOX",0,Welcome,,,NC,"Davidson County",America/New_York,336,NA,US,35.91,-80.25,1612 +27375,"PO BOX",0,Wentworth,,,NC,"Rockingham County",America/New_York,336,NA,US,36.4,-79.76,63 +27376,STANDARD,0,"West End","Seven Lakes",,NC,"Moore County",America/New_York,910,NA,US,35.24,-79.53,9130 +27377,STANDARD,0,Whitsett,,"Stoney Creek",NC,"Guilford County",America/New_York,336,NA,US,36.03,-79.59,9570 +27379,STANDARD,0,Yanceyville,,,NC,"Caswell County",America/New_York,336,NA,US,36.4,-79.34,3550 +27395,STANDARD,1,Greensboro,"Greensboro Bmc",,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.79,0 +27401,STANDARD,0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.77,12970 +27402,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,870 +27403,STANDARD,0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,13570 +27404,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,479 +27405,STANDARD,0,Greensboro,,"Hamtown, Mount Zion, Rankin, Summit, Tennessee Acres",NC,"Guilford County",America/New_York,336,NA,US,36.11,-79.74,40490 +27406,STANDARD,0,Greensboro,,"Forest Oaks, South Greensboro, Spring Valley, Vandalia",NC,"Guilford County",America/New_York,336,NA,US,36,-79.76,50590 +27407,STANDARD,0,Greensboro,,"Groomtown, Hilltop, Sedgefield",NC,"Guilford County",America/New_York,336,NA,US,36.01,-79.88,41910 +27408,STANDARD,0,Greensboro,,"Country Park Acres, Guilford Courthouse National, Plaza",NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.81,16310 +27409,STANDARD,0,Greensboro,,"Guilford, Guilford College",NC,"Guilford County",America/New_York,336,NA,US,36.1,-79.94,14710 +27410,STANDARD,0,Greensboro,,"Friendship, Greensboro High Point Winsto, Guilford, Guilford College, Ridgefield",NC,"Guilford County",America/New_York,336,NA,US,36.12,-79.89,48960 +27411,UNIQUE,0,Greensboro,,"A&T State University",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,67 +27412,UNIQUE,0,Greensboro,,"Unc Greensboro",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27413,UNIQUE,0,Greensboro,,"Unc Greensboro",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,115 +27415,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,763 +27416,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,520 +27417,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,634 +27419,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,895 +27420,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,631 +27425,"PO BOX",0,Greensboro,,"A M F Greensboro, Amf G Boro, Amf Greensboro",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,151 +27427,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,73 +27429,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,307 +27435,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,92 +27438,"PO BOX",0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,387 +27455,STANDARD,0,Greensboro,,,NC,"Guilford County",America/New_York,336,NA,US,36.18,-79.81,27760 +27480,UNIQUE,1,Greensboro,,"Sears Roebuck",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.79,0 +27495,STANDARD,0,Greensboro,,"Greensboro Ndc",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27497,UNIQUE,0,Greensboro,,"Usps Hr Shared Svcs",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.95,0 +27498,UNIQUE,0,Greensboro,,"Greensboro Courtesy Reply, United States Postal Service",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27499,UNIQUE,0,Greensboro,,"Greensboro Brm",NC,"Guilford County",America/New_York,336,NA,US,36.07,-79.82,0 +27501,STANDARD,0,Angier,,,NC,"Harnett County",America/New_York,919,NA,US,35.51,-78.73,18560 +27502,STANDARD,0,Apex,,,NC,"Wake County",America/New_York,919,NA,US,35.72,-78.84,43450 +27503,STANDARD,0,Bahama,,,NC,"Durham County",America/New_York,919,NA,US,36.17,-78.88,3360 +27504,STANDARD,0,Benson,,,NC,"Johnston County",America/New_York,919,NA,US,35.37,-78.54,14280 +27505,STANDARD,0,Broadway,,,NC,"Harnett County",America/New_York,919,NA,US,35.45,-79.05,6210 +27506,"PO BOX",0,"Buies Creek",,,NC,"Harnett County",America/New_York,,NA,US,35.4,-78.74,1115 +27507,STANDARD,0,Bullock,,,NC,"Granville County",America/New_York,919,NA,US,36.5,-78.55,1460 +27508,STANDARD,0,Bunn,,,NC,"Franklin County",America/New_York,,NA,US,35.95,-78.25,1540 +27509,STANDARD,0,Butner,,,NC,"Granville County",America/New_York,919,NA,US,36.13,-78.77,3490 +27510,STANDARD,0,Carrboro,,,NC,"Orange County",America/New_York,919,NA,US,35.91,-79.08,11780 +27511,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.78,-78.79,29930 +27512,"PO BOX",0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.78,-78.79,840 +27513,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.8,-78.8,43980 +27514,STANDARD,0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.92,-79.04,20150 +27515,"PO BOX",0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.92,-79.04,677 +27516,STANDARD,0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.91,-79.15,36160 +27517,STANDARD,0,"Chapel Hill",,,NC,"Orange County",America/New_York,919,NA,US,35.84,-79.03,25280 +27518,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.73,-78.77,20670 +27519,STANDARD,0,Cary,,,NC,"Wake County",America/New_York,919,NA,US,35.81,-78.88,62420 +27520,STANDARD,0,Clayton,,"Archer Lodge, Whitley Heights",NC,"Johnston County",America/New_York,919,NA,US,35.64,-78.45,39970 +27521,STANDARD,0,Coats,,,NC,"Harnett County",America/New_York,910,NA,US,35.4,-78.66,5540 +27522,STANDARD,0,Creedmoor,,,NC,"Granville County",America/New_York,919,NA,US,36.12,-78.68,11960 +27523,STANDARD,0,Apex,,,NC,"Wake County",America/New_York,919,NA,US,35.77,-78.94,14170 +27524,STANDARD,0,"Four Oaks",,,NC,"Johnston County",America/New_York,919,NA,US,35.44,-78.42,11250 +27525,STANDARD,0,Franklinton,,,NC,"Franklin County",America/New_York,919,NA,US,36.1,-78.45,14370 +27526,STANDARD,0,"Fuquay Varina",,Duncan,NC,"Wake County",America/New_York,919,NA,US,35.54,-78.83,50630 +27527,STANDARD,0,Clayton,"Archer Lodge",,NC,"Johnston County",America/New_York,919,NA,US,35.63,-78.36,30600 +27528,STANDARD,0,Clayton,,,NC,"Johnston County",America/New_York,919,NA,US,35.65,-78.45,966 +27529,STANDARD,0,Garner,,,NC,"Wake County",America/New_York,919,NA,US,35.69,-78.62,48110 +27530,STANDARD,0,Goldsboro,,"Patetown, Walnut Creek, Webtown",NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.97,30230 +27531,STANDARD,0,Goldsboro,"Seymour Johnson A F B, Seymour Johnson AFB, Sjafb",,NC,"Wayne County",America/New_York,919,NA,US,35.34,-77.96,475 +27532,"PO BOX",0,Goldsboro,,,NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.97,771 +27533,"PO BOX",0,Goldsboro,,,NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.97,949 +27534,STANDARD,0,Goldsboro,,,NC,"Wayne County",America/New_York,919,NA,US,35.37,-77.9,27370 +27536,STANDARD,0,Henderson,,,NC,"Vance County",America/New_York,252,NA,US,36.32,-78.41,13510 +27537,STANDARD,0,Henderson,,,NC,"Vance County",America/New_York,252,NA,US,36.37,-78.37,19400 +27539,STANDARD,0,Apex,,,NC,"Wake County",America/New_York,919,NA,US,35.67,-78.81,25070 +27540,STANDARD,0,"Holly Springs",,,NC,"Wake County",America/New_York,919,NA,US,35.65,-78.83,41370 +27541,STANDARD,0,"Hurdle Mills",,,NC,"Person County",America/New_York,,NA,US,36.25,-79.08,3570 +27542,STANDARD,0,Kenly,,Bagley,NC,"Johnston County",America/New_York,919,NA,US,35.59,-78.12,8280 +27543,"PO BOX",0,Kipling,,,NC,"Harnett County",America/New_York,,NA,US,35.48,-78.81,234 +27544,STANDARD,0,Kittrell,,,NC,"Vance County",America/New_York,252,NA,US,36.22,-78.44,3420 +27545,STANDARD,0,Knightdale,,,NC,"Wake County",America/New_York,919,NA,US,35.79,-78.48,28960 +27546,STANDARD,0,Lillington,,,NC,"Harnett County",America/New_York,910,NA,US,35.39,-78.81,15300 +27549,STANDARD,0,Louisburg,Centerville,,NC,"Franklin County",America/New_York,919,NA,US,36.1,-78.29,19440 +27551,STANDARD,0,Macon,,,NC,"Warren County",America/New_York,252,NA,US,36.43,-78.08,1490 +27552,"PO BOX",0,Mamers,,,NC,"Harnett County",America/New_York,,NA,US,35.41,-78.94,437 +27553,STANDARD,0,Manson,,"Soul City",NC,"Warren County",America/New_York,,NA,US,36.47,-78.29,1720 +27555,"PO BOX",0,Micro,,,NC,"Johnston County",America/New_York,,NA,US,35.56,-78.2,820 +27556,"PO BOX",0,Middleburg,,,NC,"Vance County",America/New_York,252,NA,US,36.41,-78.31,534 +27557,STANDARD,0,Middlesex,,Emit,NC,"Nash County",America/New_York,,NA,US,35.78,-78.2,6700 +27559,STANDARD,0,Moncure,,,NC,"Chatham County",America/New_York,,NA,US,35.62,-79.08,2230 +27560,STANDARD,0,Morrisville,,,NC,"Wake County",America/New_York,919,NA,US,35.83,-78.83,34640 +27562,STANDARD,0,"New Hill",,,NC,"Chatham County",America/New_York,,NA,US,35.64,-78.99,2960 +27563,STANDARD,0,Norlina,,,NC,"Warren County",America/New_York,252,NA,US,36.44,-78.19,3570 +27564,STANDARD,1,Creedmoor,,,NC,"Granville County",America/New_York,919,NA,US,36.11,-78.68,0 +27565,STANDARD,0,Oxford,,,NC,"Granville County",America/New_York,919,NA,US,36.31,-78.58,21140 +27568,"PO BOX",0,"Pine Level",,,NC,"Johnston County",America/New_York,,NA,US,35.51,-78.24,1374 +27569,STANDARD,0,Princeton,,,NC,"Johnston County",America/New_York,919,NA,US,35.46,-78.16,7580 +27570,"PO BOX",0,Ridgeway,,,NC,"Warren County",America/New_York,252,NA,US,36.42,-78.26,221 +27571,STANDARD,0,Rolesville,,,NC,"Wake County",America/New_York,919,NA,US,35.92,-78.45,8200 +27572,STANDARD,0,Rougemont,,,NC,"Person County",America/New_York,,NA,US,36.22,-78.93,6000 +27573,STANDARD,0,Roxboro,,,NC,"Person County",America/New_York,336,NA,US,36.4,-78.98,8740 +27574,STANDARD,0,Roxboro,,,NC,"Person County",America/New_York,"336,919",NA,US,36.41,-78.85,12170 +27576,STANDARD,0,Selma,,,NC,"Johnston County",America/New_York,919,NA,US,35.53,-78.28,14850 +27577,STANDARD,0,Smithfield,,,NC,"Johnston County",America/New_York,919,NA,US,35.5,-78.34,20440 +27581,STANDARD,0,Stem,,,NC,"Granville County",America/New_York,919,NA,US,36.19,-78.72,3400 +27582,"PO BOX",0,Stovall,,,NC,"Granville County",America/New_York,919,NA,US,36.47,-78.58,616 +27583,STANDARD,0,Timberlake,,,NC,"Person County",America/New_York,336,NA,US,36.28,-78.95,6650 +27584,"PO BOX",0,Townsville,,,NC,"Vance County",America/New_York,252,NA,US,36.5,-78.42,664 +27586,"PO BOX",0,Vaughan,,,NC,"Warren County",America/New_York,252,NA,US,36.44,-77.98,80 +27587,STANDARD,0,"Wake Forest",,,NC,"Wake County",America/New_York,919,NA,US,35.97,-78.52,69520 +27588,"PO BOX",0,"Wake Forest",,,NC,"Wake County",America/New_York,919,NA,US,35.97,-78.52,1043 +27589,STANDARD,0,Warrenton,,,NC,"Warren County",America/New_York,252,NA,US,36.4,-78.15,5350 +27591,STANDARD,0,Wendell,"Eagle Rock",,NC,"Wake County",America/New_York,919,NA,US,35.78,-78.36,21930 +27592,STANDARD,0,"Willow Spring",,"Kennebec, Willow Springs",NC,"Wake County",America/New_York,,NA,US,35.54,-78.66,16380 +27593,"PO BOX",0,"Wilsons Mills",,"Wilsons Mill",NC,"Johnston County",America/New_York,,NA,US,35.58,-78.35,608 +27594,"PO BOX",0,Wise,,,NC,"Warren County",America/New_York,252,NA,US,36.48,-78.18,347 +27596,STANDARD,0,Youngsville,,,NC,"Franklin County",America/New_York,919,NA,US,36.02,-78.47,17290 +27597,STANDARD,0,Zebulon,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.31,22890 +27599,UNIQUE,0,"Chapel Hill",,"Unc Chapel Hill Admin, Univ Of Nc, University Of Nc",NC,"Orange County",America/New_York,919,NA,US,35.92,-79.04,64 +27601,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.77,-78.63,6770 +27602,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,404 +27603,STANDARD,0,Raleigh,,Mccullers,NC,"Wake County",America/New_York,919,NA,US,35.66,-78.65,43030 +27604,STANDARD,0,Raleigh,Brentwood,"Wake Crossroads, Wilders Grove",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.56,38590 +27605,STANDARD,0,Raleigh,,"Cameron Village",NC,"Wake County",America/New_York,919,NA,US,35.79,-78.65,4530 +27606,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.74,-78.72,33360 +27607,STANDARD,0,Raleigh,,"Nc State University, Ncsu Student Housing, State University",NC,"Wake County",America/New_York,919,NA,US,35.81,-78.72,16260 +27608,STANDARD,0,Raleigh,,"Five Points",NC,"Wake County",America/New_York,919,NA,US,35.81,-78.65,10860 +27609,STANDARD,0,Raleigh,,"North Hills",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,31800 +27610,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.74,-78.55,61170 +27611,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,971 +27612,STANDARD,0,Raleigh,,"Crabtree Valley, Duraleigh",NC,"Wake County",America/New_York,919,NA,US,35.85,-78.71,34310 +27613,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.93,-78.71,44200 +27614,STANDARD,0,Raleigh,,"North Hills",NC,"Wake County",America/New_York,919,NA,US,35.95,-78.62,33840 +27615,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.9,-78.64,41020 +27616,STANDARD,0,Raleigh,Brentwood,,NC,"Wake County",America/New_York,919,NA,US,35.87,-78.54,49940 +27617,STANDARD,0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.91,-78.77,17950 +27619,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,776 +27620,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,849 +27621,"PO BOX",1,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27622,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,456 +27623,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,103 +27624,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,706 +27625,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27626,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,29 +27627,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,318 +27628,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,158 +27629,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,561 +27634,UNIQUE,0,Raleigh,,"Nc Dept Revenue",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27635,UNIQUE,0,Raleigh,,"Nc Library",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27636,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,131 +27640,UNIQUE,0,Raleigh,,"Nc Dept Revenue",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27650,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,126 +27656,UNIQUE,0,Raleigh,,"Nationwide Ins Co",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27658,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,306 +27661,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,222 +27668,UNIQUE,0,Raleigh,,"National Info Syst Supt Cntr",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27675,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,341 +27676,"PO BOX",0,Raleigh,,,NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27690,UNIQUE,0,Raleigh,,"Raleigh Brm",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27695,UNIQUE,0,Raleigh,,"Nc State Univ",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,95 +27697,UNIQUE,0,Raleigh,,"Nc Dept Motor Vehicle",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27698,UNIQUE,0,Raleigh,,"Carolina Power And Light Co",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,0 +27699,UNIQUE,0,Raleigh,,"Nc Centralized Mailing",NC,"Wake County",America/New_York,919,NA,US,35.82,-78.65,92 +27701,STANDARD,0,Durham,,"East Durham",NC,"Durham County",America/New_York,919,NA,US,36,-78.9,16870 +27702,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,932 +27703,STANDARD,0,Durham,,"East Durham",NC,"Durham County",America/New_York,919,NA,US,35.96,-78.81,53400 +27704,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,36.04,-78.83,33370 +27705,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,36.03,-78.98,36620 +27706,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,0 +27707,STANDARD,0,Durham,"Shannon Plaza",,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,37990 +27708,UNIQUE,0,Durham,,"Duke, Duke University",NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,309 +27709,"PO BOX",0,Durham,"Research Triangle Park, Rtp",,NC,"Durham County",America/New_York,919,NA,US,35.92,-78.83,747 +27710,UNIQUE,0,Durham,,"Duke Medical Ctr",NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,22 +27711,UNIQUE,0,Durham,"Research Triangle Park, Rtp","Environ Protect Agency, Research Triangle Pk",NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,0 +27712,STANDARD,0,Durham,"Eno Valley","North Durham",NC,"Durham County",America/New_York,919,NA,US,36.1,-78.9,20560 +27713,STANDARD,0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.9,-78.92,47410 +27715,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,675 +27717,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,736 +27722,"PO BOX",0,Durham,,,NC,"Durham County",America/New_York,919,NA,US,35.98,-78.91,451 +27801,STANDARD,0,"Rocky Mount",,"Dortches, Rocky Mt",NC,"Edgecombe County",America/New_York,252,NA,US,35.91,-77.73,14740 +27802,"PO BOX",0,"Rocky Mount",,,NC,"Nash County",America/New_York,252,NA,US,35.95,-77.81,2175 +27803,STANDARD,0,"Rocky Mount",,,NC,"Nash County",America/New_York,252,NA,US,35.9,-77.86,17130 +27804,STANDARD,0,"Rocky Mount","Wesleyan Col, Wesleyan College",,NC,"Nash County",America/New_York,252,NA,US,35.95,-77.81,24390 +27805,STANDARD,0,Aulander,,,NC,"Hertford County",America/New_York,252,NA,US,36.22,-77.11,2630 +27806,STANDARD,0,Aurora,,Royal,NC,"Beaufort County",America/New_York,252,NA,US,35.3,-76.78,1670 +27807,STANDARD,0,Bailey,,,NC,"Nash County",America/New_York,252,NA,US,35.78,-78.11,6020 +27808,STANDARD,0,Bath,,,NC,"Beaufort County",America/New_York,252,NA,US,35.47,-76.81,2090 +27809,STANDARD,0,Battleboro,,Drake,NC,"Nash County",America/New_York,,NA,US,36.04,-77.75,3870 +27810,STANDARD,0,Belhaven,,,NC,"Beaufort County",America/New_York,252,NA,US,35.54,-76.62,2760 +27811,"PO BOX",0,Bellarthur,,,NC,"Pitt County",America/New_York,252,NA,US,35.57,-77.49,314 +27812,STANDARD,0,Bethel,,,NC,"Pitt County",America/New_York,252,NA,US,35.8,-77.37,1930 +27813,"PO BOX",0,"Black Creek",,,NC,"Wilson County",America/New_York,252,NA,US,35.63,-77.93,858 +27814,STANDARD,0,"Blounts Creek",,,NC,"Beaufort County",America/New_York,252,NA,US,35.36,-76.92,1330 +27815,UNIQUE,0,"Rocky Mount",,Qvc,NC,"Nash County",America/New_York,252,NA,US,35.92,-77.67,0 +27816,STANDARD,0,Castalia,,,NC,"Nash County",America/New_York,,NA,US,36.08,-78.05,2210 +27817,STANDARD,0,Chocowinity,,,NC,"Beaufort County",America/New_York,252,NA,US,35.51,-77.09,6500 +27818,STANDARD,0,Como,,,NC,"Hertford County",America/New_York,252,NA,US,36.49,-77.01,980 +27819,"PO BOX",0,Conetoe,,,NC,"Edgecombe County",America/New_York,252,NA,US,35.81,-77.45,613 +27820,STANDARD,0,Conway,Milwaukee,,NC,"Northampton County",America/New_York,252,NA,US,36.43,-77.22,2080 +27821,STANDARD,0,Edward,,,NC,"Beaufort County",America/New_York,252,NA,US,35.32,-76.89,220 +27822,STANDARD,0,"Elm City",,,NC,"Wilson County",America/New_York,252,NA,US,35.8,-77.86,7300 +27823,STANDARD,0,Enfield,,,NC,"Halifax County",America/New_York,252,NA,US,36.17,-77.66,5230 +27824,STANDARD,0,Engelhard,,,NC,"Hyde County",America/New_York,252,NA,US,35.54,-76.02,990 +27825,"PO BOX",0,Everetts,,,NC,"Martin County",America/New_York,252,NA,US,35.83,-77.17,299 +27826,STANDARD,0,Fairfield,,,NC,"Hyde County",America/New_York,,NA,US,35.57,-76.24,510 +27827,"PO BOX",0,Falkland,,,NC,"Pitt County",America/New_York,252,NA,US,35.7,-77.51,291 +27828,STANDARD,0,Farmville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.59,7210 +27829,STANDARD,0,Fountain,,,NC,"Pitt County",America/New_York,252,NA,US,35.67,-77.63,1440 +27830,STANDARD,0,Fremont,Eureka,,NC,"Wayne County",America/New_York,919,NA,US,35.54,-77.97,3670 +27831,STANDARD,0,Garysburg,Gumberry,,NC,"Northampton County",America/New_York,252,NA,US,36.44,-77.55,2160 +27832,STANDARD,0,Gaston,,,NC,"Northampton County",America/New_York,252,NA,US,36.49,-77.64,2270 +27833,"PO BOX",0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,615 +27834,STANDARD,0,Greenville,,"East Carolina Univ, East Carolina University, Pactolus",NC,"Pitt County",America/New_York,252,NA,US,35.66,-77.38,42820 +27835,"PO BOX",0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,1368 +27836,"PO BOX",0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,604 +27837,STANDARD,0,Grimesland,,,NC,"Pitt County",America/New_York,252,NA,US,35.56,-77.19,5400 +27839,STANDARD,0,Halifax,,,NC,"Halifax County",America/New_York,252,NA,US,36.32,-77.59,2050 +27840,STANDARD,0,Hamilton,,,NC,"Martin County",America/New_York,252,NA,US,35.94,-77.2,420 +27841,"PO BOX",0,Hassell,,,NC,"Martin County",America/New_York,252,NA,US,35.91,-77.28,213 +27842,STANDARD,0,Henrico,,,NC,"Northampton County",America/New_York,252,NA,US,36.53,-77.83,1160 +27843,STANDARD,0,Hobgood,,,NC,"Halifax County",America/New_York,,NA,US,36.02,-77.39,770 +27844,STANDARD,0,Hollister,,Essex,NC,"Halifax County",America/New_York,252,NA,US,36.25,-77.92,2200 +27845,STANDARD,0,Jackson,Lasker,,NC,"Northampton County",America/New_York,252,NA,US,36.39,-77.41,1220 +27846,STANDARD,0,Jamesville,,,NC,"Martin County",America/New_York,252,NA,US,35.81,-76.89,2450 +27847,STANDARD,0,Kelford,,,NC,"Bertie County",America/New_York,252,NA,US,36.18,-77.22,570 +27849,STANDARD,0,"Lewiston Woodville",Lewiston,Woodville,NC,"Bertie County",America/New_York,252,NA,US,36.11,-77.17,1170 +27850,STANDARD,0,Littleton,,,NC,"Halifax County",America/New_York,252,NA,US,36.43,-77.91,5100 +27851,STANDARD,0,Lucama,,Lunana,NC,"Wilson County",America/New_York,252,NA,US,35.64,-78,4540 +27852,STANDARD,0,Macclesfield,,"Old Sparta",NC,"Edgecombe County",America/New_York,252,NA,US,35.75,-77.67,2280 +27853,STANDARD,0,Margarettsville,Margarettsvl,Margaretsville,NC,"Northampton County",America/New_York,252,NA,US,36.53,-77.35,340 +27854,STANDARD,1,Milwaukee,,,NC,"Northampton County",America/New_York,252,NA,US,36.4,-77.23,0 +27855,STANDARD,0,Murfreesboro,,,NC,"Hertford County",America/New_York,252,NA,US,36.44,-77.09,4160 +27856,STANDARD,0,Nashville,Momeyer,,NC,"Nash County",America/New_York,252,NA,US,35.96,-77.95,14740 +27857,STANDARD,0,"Oak City",,,NC,"Martin County",America/New_York,252,NA,US,35.96,-77.3,910 +27858,STANDARD,0,Greenville,,,NC,"Pitt County",America/New_York,252,NA,US,35.59,-77.37,37920 +27860,STANDARD,0,Pantego,,,NC,"Beaufort County",America/New_York,252,NA,US,35.58,-76.65,1660 +27861,"PO BOX",0,Parmele,,,NC,"Martin County",America/New_York,252,NA,US,35.81,-77.32,129 +27862,STANDARD,0,Pendleton,,,NC,"Northampton County",America/New_York,252,NA,US,36.47,-77.19,540 +27863,STANDARD,0,Pikeville,,,NC,"Wayne County",America/New_York,919,NA,US,35.49,-77.98,11350 +27864,STANDARD,0,Pinetops,,,NC,"Edgecombe County",America/New_York,252,NA,US,35.79,-77.63,3800 +27865,STANDARD,0,Pinetown,,,NC,"Beaufort County",America/New_York,252,NA,US,35.66,-76.85,1570 +27866,STANDARD,0,"Pleasant Hill",,,NC,"Northampton County",America/New_York,252,NA,US,36.51,-77.54,560 +27867,"PO BOX",0,Potecasi,,,NC,"Northampton County",America/New_York,252,NA,US,36.36,-77.23,219 +27868,"PO BOX",0,"Red Oak",,,NC,"Nash County",America/New_York,252,NA,US,36.03,-77.9,528 +27869,STANDARD,0,"Rich Square",,,NC,"Northampton County",America/New_York,252,NA,US,36.27,-77.28,1540 +27870,STANDARD,0,"Roanoke Rapids","Roanoke Rapid, Roanoke Rapids Air Force Sta, Ronok Rpd Afs",,NC,"Halifax County",America/New_York,252,NA,US,36.45,-77.65,21220 +27871,STANDARD,0,Robersonville,,"Bear Grass",NC,"Martin County",America/New_York,252,NA,US,35.82,-77.25,3430 +27872,STANDARD,0,Roxobel,,,NC,"Bertie County",America/New_York,252,NA,US,36.2,-77.23,310 +27873,"PO BOX",0,Saratoga,,,NC,"Wilson County",America/New_York,252,NA,US,35.65,-77.77,574 +27874,STANDARD,0,"Scotland Neck",,,NC,"Halifax County",America/New_York,252,NA,US,36.13,-77.42,3340 +27875,STANDARD,0,Scranton,,,NC,"Hyde County",America/New_York,,NA,US,35.46,-76.5,310 +27876,STANDARD,0,Seaboard,,,NC,"Northampton County",America/New_York,252,NA,US,36.49,-77.44,900 +27877,"PO BOX",0,Severn,,,NC,"Northampton County",America/New_York,252,NA,US,36.51,-77.18,326 +27878,"PO BOX",0,Sharpsburg,,,NC,"Nash County",America/New_York,252,NA,US,35.86,-77.83,2736 +27879,"PO BOX",0,Simpson,,,NC,"Pitt County",America/New_York,252,NA,US,35.57,-77.28,425 +27880,STANDARD,0,Sims,,,NC,"Wilson County",America/New_York,252,NA,US,35.76,-78.05,3120 +27881,"PO BOX",0,Speed,,,NC,"Edgecombe County",America/New_York,252,NA,US,35.98,-77.44,128 +27882,STANDARD,0,"Spring Hope",,,NC,"Nash County",America/New_York,252,NA,US,35.94,-78.1,6360 +27883,STANDARD,0,Stantonsburg,,,NC,"Wilson County",America/New_York,252,NA,US,35.6,-77.82,3050 +27884,STANDARD,0,Stokes,,,NC,"Pitt County",America/New_York,252,NA,US,35.71,-77.27,1290 +27885,STANDARD,0,Swanquarter,,,NC,"Hyde County",America/New_York,252,NA,US,35.4,-76.27,780 +27886,STANDARD,0,Tarboro,"Leggett, Princeville",,NC,"Edgecombe County",America/New_York,252,NA,US,35.9,-77.55,15780 +27887,"PO BOX",0,Tillery,,,NC,"Halifax County",America/New_York,252,NA,US,36.25,-77.48,163 +27888,STANDARD,0,Walstonburg,,,NC,"Greene County",America/New_York,252,NA,US,35.59,-77.69,2140 +27889,STANDARD,0,Washington,,Wash,NC,"Beaufort County",America/New_York,252,NA,US,35.55,-77.05,23160 +27890,STANDARD,0,Weldon,,,NC,"Halifax County",America/New_York,252,NA,US,36.42,-77.6,1760 +27891,STANDARD,0,Whitakers,,,NC,"Nash County",America/New_York,252,NA,US,36.1,-77.71,4190 +27892,STANDARD,0,Williamston,"Bear Grass, Beargrass",,NC,"Martin County",America/New_York,252,NA,US,35.85,-77.05,11550 +27893,STANDARD,0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.73,-77.92,30310 +27894,"PO BOX",0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.73,-77.92,1581 +27895,"PO BOX",0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.73,-77.92,835 +27896,STANDARD,0,Wilson,,,NC,"Wilson County",America/New_York,252,NA,US,35.79,-77.98,18950 +27897,STANDARD,0,Woodland,George,,NC,"Northampton County",America/New_York,252,NA,US,36.33,-77.21,1120 +27906,"PO BOX",0,"Elizabeth City","Elizabeth Cty",,NC,"Pasquotank County",America/New_York,252,NA,US,36.29,-76.22,955 +27907,"PO BOX",0,"Elizabeth City","Elizabeth Cty",,NC,"Pasquotank County",America/New_York,252,NA,US,36.29,-76.22,252 +27909,STANDARD,0,"Elizabeth City","Elizabeth Cty","Eliz City, Elizabeth City Coast Guard A",NC,"Pasquotank County",America/New_York,252,NA,US,36.29,-76.22,33100 +27910,STANDARD,0,Ahoskie,,,NC,"Hertford County",America/New_York,252,NA,US,36.28,-76.98,8300 +27915,"PO BOX",0,Avon,,Kinnakeet,NC,"Dare County",America/New_York,252,NA,US,35.43,-75.49,786 +27916,STANDARD,0,Aydlett,,,NC,"Currituck County",America/New_York,252,NA,US,36.32,-75.9,750 +27917,STANDARD,0,Barco,,,NC,"Currituck County",America/New_York,252,NA,US,36.39,-75.97,600 +27919,STANDARD,0,Belvidere,,,NC,"Perquimans County",America/New_York,252,NA,US,36.26,-76.53,990 +27920,"PO BOX",0,Buxton,,"Cape Hatteras Naval Facility",NC,"Dare County",America/New_York,252,NA,US,35.24,-75.53,1518 +27921,STANDARD,0,Camden,,,NC,"Camden County",America/New_York,252,NA,US,36.32,-76.16,4640 +27922,STANDARD,0,Cofield,,,NC,"Hertford County",America/New_York,252,NA,US,36.35,-76.9,630 +27923,STANDARD,0,Coinjock,,,NC,"Currituck County",America/New_York,252,NA,US,36.34,-75.95,550 +27924,STANDARD,0,Colerain,,,NC,"Bertie County",America/New_York,252,NA,US,36.2,-76.76,2200 +27925,STANDARD,0,Columbia,,,NC,"Tyrrell County",America/New_York,252,NA,US,35.91,-76.25,2960 +27926,STANDARD,0,Corapeake,,,NC,"Gates County",America/New_York,252,NA,US,36.53,-76.57,1320 +27927,STANDARD,0,Corolla,,,NC,"Currituck County",America/New_York,252,NA,US,36.37,-75.83,1080 +27928,STANDARD,0,Creswell,,,NC,"Washington County",America/New_York,252,NA,US,35.87,-76.39,1470 +27929,STANDARD,0,Currituck,,,NC,"Currituck County",America/New_York,252,NA,US,36.44,-76.01,1690 +27930,"PO BOX",0,Hertford,,,NC,"Perquimans County",America/New_York,252,NA,US,36.18,-76.33,0 +27932,STANDARD,0,Edenton,,,NC,"Chowan County",America/New_York,252,NA,US,36.05,-76.6,10180 +27935,STANDARD,0,Eure,,,NC,"Gates County",America/New_York,252,NA,US,36.42,-76.85,1260 +27936,"PO BOX",0,Frisco,,,NC,"Dare County",America/New_York,252,NA,US,35.24,-75.58,688 +27937,STANDARD,0,Gates,,,NC,"Gates County",America/New_York,252,NA,US,36.5,-76.76,3130 +27938,STANDARD,0,Gatesville,,,NC,"Gates County",America/New_York,252,NA,US,36.4,-76.75,1090 +27939,STANDARD,0,Grandy,,,NC,"Currituck County",America/New_York,252,NA,US,36.24,-75.87,2370 +27941,STANDARD,0,Harbinger,,,NC,"Currituck County",America/New_York,252,NA,US,36.1,-75.81,540 +27942,STANDARD,0,Harrellsville,,,NC,"Hertford County",America/New_York,252,NA,US,36.3,-76.79,570 +27943,"PO BOX",0,Hatteras,,,NC,"Dare County",America/New_York,252,NA,US,35.22,-75.68,675 +27944,STANDARD,0,Hertford,,,NC,"Perquimans County",America/New_York,252,NA,US,36.18,-76.47,9710 +27946,STANDARD,0,Hobbsville,,,NC,"Gates County",America/New_York,252,NA,US,36.34,-76.6,990 +27947,STANDARD,0,Jarvisburg,,,NC,"Currituck County",America/New_York,252,NA,US,36.2,-75.86,900 +27948,STANDARD,0,"Kill Devil Hills","Kill Devil Hl",,NC,"Dare County",America/New_York,252,NA,US,36.01,-75.66,11180 +27949,STANDARD,0,"Kitty Hawk","Duck, Southern Shores, Southrn Shore",Collington,NC,"Dare County",America/New_York,252,NA,US,36.07,-75.71,8120 +27950,STANDARD,0,"Knotts Island",,Woodleigh,NC,"Currituck County",America/New_York,252,NA,US,36.51,-75.91,1630 +27953,STANDARD,0,"Manns Harbor","East Lake",,NC,"Dare County",America/New_York,252,NA,US,35.81,-75.91,830 +27954,STANDARD,0,Manteo,,"Cape Hatteras National Seash, Fort Raleigh City, Fort Raleigh National Histor, Wright Brothers National Mem",NC,"Dare County",America/New_York,252,NA,US,35.89,-75.66,6040 +27956,STANDARD,0,Maple,,,NC,"Currituck County",America/New_York,252,NA,US,36.41,-76,310 +27957,STANDARD,0,"Merry Hill",,,NC,"Bertie County",America/New_York,252,NA,US,36.01,-76.77,1190 +27958,STANDARD,0,Moyock,,,NC,"Currituck County",America/New_York,252,NA,US,36.48,-76.13,11420 +27959,STANDARD,0,"Nags Head",,,NC,"Dare County",America/New_York,252,NA,US,35.94,-75.62,2810 +27960,"PO BOX",0,Ocracoke,,Portsmouth,NC,"Hyde County",America/New_York,252,NA,US,35.07,-76,827 +27962,STANDARD,0,Plymouth,,,NC,"Washington County",America/New_York,252,NA,US,35.86,-76.74,5520 +27964,STANDARD,0,"Point Harbor",,,NC,"Currituck County",America/New_York,252,NA,US,36.08,-75.8,500 +27965,STANDARD,0,"Poplar Branch",,,NC,"Currituck County",America/New_York,252,NA,US,36.28,-75.89,460 +27966,STANDARD,0,"Powells Point",,,NC,"Currituck County",America/New_York,252,NA,US,36.15,-75.85,1120 +27967,"PO BOX",0,Powellsville,,,NC,"Bertie County",America/New_York,252,NA,US,36.23,-76.9,777 +27968,"PO BOX",0,Rodanthe,,,NC,"Dare County",America/New_York,252,NA,US,35.73,-75.51,435 +27969,"PO BOX",0,Roduco,,,NC,"Gates County",America/New_York,252,NA,US,36.46,-76.81,78 +27970,STANDARD,0,Roper,,,NC,"Washington County",America/New_York,252,NA,US,35.87,-76.61,2430 +27972,"PO BOX",0,Salvo,,,NC,"Dare County",America/New_York,252,NA,US,35.55,-75.47,77 +27973,STANDARD,0,Shawboro,,,NC,"Currituck County",America/New_York,252,NA,US,36.4,-76.09,1430 +27974,STANDARD,0,Shiloh,,,NC,"Camden County",America/New_York,252,NA,US,36.27,-76.08,1030 +27976,STANDARD,0,"South Mills",,,NC,"Camden County",America/New_York,252,NA,US,36.44,-76.32,3540 +27978,STANDARD,0,"Stumpy Point",,,NC,"Dare County",America/New_York,252,NA,US,35.73,-75.74,116 +27979,STANDARD,0,Sunbury,,,NC,"Gates County",America/New_York,252,NA,US,36.44,-76.6,1210 +27980,STANDARD,0,Tyner,,,NC,"Chowan County",America/New_York,252,NA,US,36.25,-76.63,1780 +27981,STANDARD,0,Wanchese,,,NC,"Dare County",America/New_York,252,NA,US,35.83,-75.64,1450 +27982,"PO BOX",0,Waves,,,NC,"Dare County",America/New_York,252,NA,US,35.57,-75.47,56 +27983,STANDARD,0,Windsor,Askewville,,NC,"Bertie County",America/New_York,252,NA,US,36,-76.94,6240 +27985,"PO BOX",0,Winfall,,,NC,"Perquimans County",America/New_York,252,NA,US,36.21,-76.45,380 +27986,STANDARD,0,Winton,,,NC,"Hertford County",America/New_York,252,NA,US,36.38,-76.93,910 +28001,STANDARD,0,Albemarle,,"Millingport, North Albemarle, Palestine, Plyler, River Haven, South Albemarle",NC,"Stanly County",America/New_York,"704,980",NA,US,35.36,-80.19,21510 +28002,"PO BOX",0,Albemarle,,,NC,"Stanly County",America/New_York,704,NA,US,35.36,-80.19,1663 +28006,STANDARD,0,Alexis,,,NC,"Gaston County",America/New_York,,NA,US,35.41,-81.09,1060 +28007,"PO BOX",0,Ansonville,,,NC,"Anson County",America/New_York,704,NA,US,35.1,-80.1,808 +28009,"PO BOX",0,Badin,,"Badin Air National Guard Sta",NC,"Stanly County",America/New_York,704,NA,US,35.4,-80.11,1521 +28010,"PO BOX",0,"Barium Springs","Barium Spngs",,NC,"Iredell County",America/New_York,704,NA,US,35.72,-80.9,219 +28012,STANDARD,0,Belmont,,"Catawba Heights",NC,"Gaston County",America/New_York,"704,980",NA,US,35.24,-81.04,21650 +28016,STANDARD,0,"Bessemer City",,,NC,"Gaston County",America/New_York,"704,980",NA,US,35.28,-81.28,10830 +28017,"PO BOX",0,"Boiling Springs","Boiling Spgs",,NC,"Cleveland County",America/New_York,704,NA,US,35.25,-81.67,1741 +28018,STANDARD,0,Bostic,"Golden Valley","Bostic Yard, Corinth, Golden, Sunshine, Washburn Store",NC,"Rutherford County",America/New_York,828,NA,US,35.36,-81.83,4240 +28019,"PO BOX",0,Caroleen,,,NC,"Rutherford County",America/New_York,828,NA,US,35.28,-81.79,739 +28020,STANDARD,0,Casar,,,NC,"Cleveland County",America/New_York,704,NA,US,35.51,-81.61,2020 +28021,STANDARD,0,Cherryville,,Flay,NC,"Gaston County",America/New_York,704,NA,US,35.38,-81.38,11000 +28023,STANDARD,0,"China Grove",Kannapolis,,NC,"Rowan County",America/New_York,704,NA,US,35.57,-80.58,13740 +28024,"PO BOX",0,Cliffside,,,NC,"Rutherford County",America/New_York,828,NA,US,35.23,-81.77,710 +28025,STANDARD,0,Concord,Kannapolis,"Flowes Store, North Concord, Sidestown, Stonewall Jackson Training S",NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.4,-80.59,49300 +28026,"PO BOX",0,Concord,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.4,-80.59,858 +28027,STANDARD,0,Concord,Kannapolis,,NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.41,-80.68,66820 +28031,STANDARD,0,Cornelius,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.48,-80.86,28180 +28032,STANDARD,0,Cramerton,,,NC,"Gaston County",America/New_York,704,NA,US,35.23,-81.08,2930 +28033,STANDARD,0,Crouse,,,NC,"Lincoln County",America/New_York,704,NA,US,35.42,-81.3,2690 +28034,STANDARD,0,Dallas,,,NC,"Gaston County",America/New_York,704,NA,US,35.31,-81.17,15910 +28035,"PO BOX",0,Davidson,,"Davidson College",NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.5,-80.83,56 +28036,STANDARD,0,Davidson,Kannapolis,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.49,-80.84,18230 +28037,STANDARD,0,Denver,,,NC,"Lincoln County",America/New_York,"704,980",NA,US,35.53,-81.03,23430 +28038,"PO BOX",0,Earl,,,NC,"Cleveland County",America/New_York,704,NA,US,35.19,-81.53,780 +28039,"PO BOX",0,"East Spencer",,,NC,"Rowan County",America/New_York,,NA,US,35.68,-80.44,1104 +28040,STANDARD,0,Ellenboro,,"Dobbinsville, Hollis",NC,"Rutherford County",America/New_York,"704,828,980",NA,US,35.32,-81.75,5880 +28041,"PO BOX",0,Faith,,,NC,"Rowan County",America/New_York,,NA,US,35.58,-80.46,1369 +28042,"PO BOX",0,Fallston,,,NC,"Cleveland County",America/New_York,704,NA,US,35.42,-81.5,1015 +28043,STANDARD,0,"Forest City","Alexander Mills, Alexander Mls",,NC,"Rutherford County",America/New_York,828,NA,US,35.33,-81.86,15930 +28052,STANDARD,0,Gastonia,,"Boogertown, Crowders, Groves, Pinkney, Ridge, Smyre, South Gastonia, Victory",NC,"Gaston County",America/New_York,"704,980",NA,US,35.21,-81.23,28030 +28053,"PO BOX",0,Gastonia,,,NC,"Gaston County",America/New_York,704,NA,US,35.25,-81.17,1072 +28054,STANDARD,0,Gastonia,,"Ragan Village, Ranlo, Spencer Mountain",NC,"Gaston County",America/New_York,"704,980",NA,US,35.25,-81.17,32380 +28055,"PO BOX",0,Gastonia,,,NC,"Gaston County",America/New_York,704,NA,US,35.25,-81.17,404 +28056,STANDARD,0,Gastonia,,,NC,"Gaston County",America/New_York,"704,980",NA,US,35.22,-81.13,30630 +28070,"PO BOX",0,Huntersville,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.41,-80.84,1634 +28071,STANDARD,0,"Gold Hill",,,NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.52,-80.33,2620 +28072,"PO BOX",0,"Granite Quarry","Granite Qry",,NC,"Rowan County",America/New_York,,NA,US,35.61,-80.44,1469 +28073,STANDARD,0,Grover,,,NC,"Cleveland County",America/New_York,704,NA,US,35.17,-81.45,4270 +28074,"PO BOX",0,Harris,,,NC,"Rutherford County",America/New_York,828,NA,US,35.24,-81.87,367 +28075,STANDARD,0,Harrisburg,,,NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.32,-80.66,20740 +28076,"PO BOX",0,Henrietta,,,NC,"Rutherford County",America/New_York,828,NA,US,35.26,-81.79,986 +28077,"PO BOX",0,"High Shoals",,,NC,"Gaston County",America/New_York,704,NA,US,35.4,-81.2,609 +28078,STANDARD,0,Huntersville,,"Caldwell, Hicks Crossroads, Long Creek",NC,"Mecklenburg County",America/New_York,704,NA,US,35.41,-80.84,61680 +28079,STANDARD,0,"Indian Trail","Lake Park","Hemby, Hemby Bridge, Indian Trl",NC,"Union County",America/New_York,704,NA,US,35.07,-80.67,37000 +28080,STANDARD,0,"Iron Station",,,NC,"Lincoln County",America/New_York,704,NA,US,35.44,-81.15,7210 +28081,STANDARD,0,Kannapolis,,"Centerview, Fisher Town, Glass, Royal Oaks, Shady Brook",NC,"Cabarrus County",America/New_York,704,NA,US,35.5,-80.67,24070 +28082,"PO BOX",0,Kannapolis,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.49,-80.62,788 +28083,STANDARD,0,Kannapolis,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.49,-80.62,21620 +28086,STANDARD,0,"Kings Mountain","Kings Mtn",,NC,"Cleveland County",America/New_York,"704,980",NA,US,35.24,-81.34,23510 +28088,STANDARD,0,Landis,,,NC,"Rowan County",America/New_York,,NA,US,35.54,-80.61,2930 +28089,"PO BOX",0,Lattimore,,,NC,"Cleveland County",America/New_York,704,NA,US,35.32,-81.66,469 +28090,STANDARD,0,Lawndale,,"Belwood, Delight, Double Shoals, Toluca",NC,"Cleveland County",America/New_York,704,NA,US,35.41,-81.56,6290 +28091,STANDARD,0,Lilesville,,,NC,"Anson County",America/New_York,704,NA,US,34.96,-79.98,1650 +28092,STANDARD,0,Lincolnton,"Boger City",,NC,"Lincoln County",America/New_York,"704,980",NA,US,35.47,-81.24,32080 +28093,"PO BOX",0,Lincolnton,,,NC,"Lincoln County",America/New_York,704,NA,US,35.47,-81.24,1540 +28097,STANDARD,0,Locust,,"Western Hills",NC,"Stanly County",America/New_York,"704,980",NA,US,35.25,-80.43,6110 +28098,STANDARD,0,Lowell,,,NC,"Gaston County",America/New_York,"704,980",NA,US,35.26,-81.1,3370 +28101,STANDARD,0,"Mc Adenville",,,NC,"Gaston County",America/New_York,704,NA,US,35.26,-81.08,800 +28102,"PO BOX",0,"Mc Farlan",,,NC,"Anson County",America/New_York,704,NA,US,34.81,-79.97,128 +28103,STANDARD,0,Marshville,,"Olive Branch",NC,"Union County",America/New_York,704,NA,US,34.98,-80.36,9120 +28104,STANDARD,0,Matthews,"Stallings, Weddington, Wesley Chapel",,NC,"Union County",America/New_York,"704,980",NA,US,35.06,-80.69,33060 +28105,STANDARD,0,Matthews,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.12,-80.71,40420 +28106,"PO BOX",0,Matthews,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.12,-80.71,1256 +28107,STANDARD,0,Midland,,,NC,"Cabarrus County",America/New_York,704,NA,US,35.22,-80.5,8070 +28108,"PO BOX",0,"Mineral Springs","Mineral Spgs",,NC,"Union County",America/New_York,704,NA,US,34.93,-80.68,579 +28109,"PO BOX",0,Misenheimer,,,NC,"Stanly County",America/New_York,704,NA,US,35.48,-80.28,267 +28110,STANDARD,0,Monroe,Unionville,,NC,"Union County",America/New_York,"704,980",NA,US,35.07,-80.52,48030 +28111,"PO BOX",0,Monroe,,,NC,"Union County",America/New_York,704,NA,US,34.98,-80.54,2008 +28112,STANDARD,0,Monroe,,,NC,"Union County",America/New_York,"704,980",NA,US,34.98,-80.54,23430 +28114,STANDARD,0,Mooresboro,,,NC,"Rutherford County",America/New_York,"704,828",NA,US,35.23,-81.75,5280 +28115,STANDARD,0,Mooresville,,"Doolie, Mayhew, Mazeppa",NC,"Iredell County",America/New_York,"704,980",NA,US,35.57,-80.81,38130 +28117,STANDARD,0,Mooresville,,,NC,"Iredell County",America/New_York,"704,980",NA,US,35.57,-80.9,42630 +28119,STANDARD,0,Morven,,,NC,"Anson County",America/New_York,704,NA,US,34.86,-80,2000 +28120,STANDARD,0,"Mount Holly","Mt Holly",,NC,"Gaston County",America/New_York,704,NA,US,35.3,-81.03,20840 +28123,"PO BOX",0,"Mount Mourne",Mooresville,"Mt Mourne",NC,"Iredell County",America/New_York,704,NA,US,35.53,-80.86,360 +28124,STANDARD,0,"Mount Pleasant","Mt Pleasant",,NC,"Cabarrus County",America/New_York,"704,980",NA,US,35.4,-80.43,6200 +28125,STANDARD,0,"Mount Ulla",,"Bear Poplar, Mt Ulla",NC,"Rowan County",America/New_York,,NA,US,35.65,-80.72,2430 +28126,"PO BOX",0,Newell,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.27,-80.73,280 +28127,STANDARD,0,"New London","Badin Lake","Nw London",NC,"Stanly County",America/New_York,"336,704",NA,US,35.44,-80.21,5600 +28128,STANDARD,0,Norwood,,"Aquadale, Cottonville, Porter",NC,"Stanly County",America/New_York,"980,704",NA,US,35.22,-80.12,6230 +28129,STANDARD,0,Oakboro,"Red Cross","Frog Pond",NC,"Stanly County",America/New_York,704,NA,US,35.22,-80.32,4930 +28130,"PO BOX",0,"Paw Creek",,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.27,-80.93,360 +28133,STANDARD,0,Peachland,,"Fountain Hill, White Store",NC,"Anson County",America/New_York,704,NA,US,34.99,-80.26,2200 +28134,STANDARD,0,Pineville,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.08,-80.88,10760 +28135,STANDARD,0,Polkton,,,NC,"Anson County",America/New_York,"704,980",NA,US,35,-80.2,2950 +28136,"PO BOX",0,Polkville,Shelby,,NC,"Cleveland County",America/New_York,704,NA,US,35.41,-81.64,767 +28137,STANDARD,0,Richfield,,Pooletown,NC,"Stanly County",America/New_York,"336,704",NA,US,35.47,-80.25,2540 +28138,STANDARD,0,Rockwell,,,NC,"Rowan County",America/New_York,"704,980",NA,US,35.55,-80.4,9250 +28139,STANDARD,0,Rutherfordton,,"Gilkey, Logan Station, Ruth, Shingle Hollow, Westminster",NC,"Rutherford County",America/New_York,828,NA,US,35.36,-81.96,15520 +28144,STANDARD,0,Salisbury,"East Spencer","Correll Park",NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.66,-80.48,18790 +28145,"PO BOX",0,Salisbury,,,NC,"Rowan County",America/New_York,704,NA,US,35.66,-80.48,1801 +28146,STANDARD,0,Salisbury,"Granite Qry, Granite Quarry",,NC,"Rowan County",America/New_York,"336,704,980",NA,US,35.62,-80.39,24600 +28147,STANDARD,0,Salisbury,,,NC,"Rowan County",America/New_York,"704,980",NA,US,35.68,-80.56,21550 +28150,STANDARD,0,Shelby,Kingstown,"Patterson Springs",NC,"Cleveland County",America/New_York,"704,980",NA,US,35.28,-81.54,22270 +28151,"PO BOX",0,Shelby,,,NC,"Cleveland County",America/New_York,704,NA,US,35.28,-81.54,2055 +28152,STANDARD,0,Shelby,,,NC,"Cleveland County",America/New_York,"980,704",NA,US,35.24,-81.6,19640 +28159,STANDARD,0,Spencer,,,NC,"Rowan County",America/New_York,336,NA,US,35.69,-80.43,2600 +28160,STANDARD,0,Spindale,,,NC,"Rutherford County",America/New_York,828,NA,US,35.36,-81.92,2970 +28163,STANDARD,0,Stanfield,,,NC,"Stanly County",America/New_York,704,NA,US,35.23,-80.42,4660 +28164,STANDARD,0,Stanley,,Lowesville,NC,"Gaston County",America/New_York,"704,980",NA,US,35.35,-81.09,13500 +28166,STANDARD,0,Troutman,,"Bells Cross Roads",NC,"Iredell County",America/New_York,"704,980",NA,US,35.7,-80.89,9180 +28167,STANDARD,0,"Union Mills",,,NC,"Rutherford County",America/New_York,828,NA,US,35.49,-81.96,1980 +28168,STANDARD,0,Vale,,,NC,"Lincoln County",America/New_York,704,NA,US,35.53,-81.39,8860 +28169,"PO BOX",0,Waco,,,NC,"Cleveland County",America/New_York,704,NA,US,35.36,-81.42,776 +28170,STANDARD,0,Wadesboro,,,NC,"Anson County",America/New_York,"704,980",NA,US,34.96,-80.06,8820 +28173,STANDARD,0,Waxhaw,Marvin,,NC,"Union County",America/New_York,704,NA,US,34.92,-80.74,61240 +28174,STANDARD,0,Wingate,,,NC,"Union County",America/New_York,704,NA,US,34.98,-80.44,6980 +28201,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,32 +28202,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.23,-80.84,11310 +28203,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.21,-80.86,15000 +28204,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.21,-80.83,6970 +28205,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.22,-80.79,38300 +28206,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.26,-80.82,10640 +28207,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,8590 +28208,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.23,-80.91,31580 +28209,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.18,-80.85,19870 +28210,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.13,-80.86,39700 +28211,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.17,-80.8,28280 +28212,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.74,33220 +28213,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.29,-80.73,35970 +28214,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.28,-80.97,37580 +28215,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.24,-80.69,52790 +28216,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.31,-80.89,47540 +28217,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.17,-80.91,23470 +28218,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,290 +28219,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,302 +28220,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,406 +28221,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,273 +28222,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,363 +28223,UNIQUE,0,Charlotte,,"Unc Charlotte",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,86 +28224,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,675 +28226,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.1,-80.82,37170 +28227,STANDARD,0,Charlotte,"Mint Hill",,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.65,51710 +28228,UNIQUE,0,Charlotte,,"United States Postal Service",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,43 +28229,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,556 +28230,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,150 +28231,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,131 +28232,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,162 +28233,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,202 +28234,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,129 +28235,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,105 +28236,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,153 +28237,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,75 +28241,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,1082 +28242,UNIQUE,0,Charlotte,,"Duke Power Co",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28243,UNIQUE,0,Charlotte,,AT&T,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28244,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.22,-80.84,0 +28246,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.83,0 +28247,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,620 +28250,UNIQUE,1,Charlotte,,"Charlotte Water Dept",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28253,UNIQUE,0,Charlotte,,Gmac,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28254,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28255,UNIQUE,0,Charlotte,,"Bank Of America, Nc Natl Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,249 +28256,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,876 +28258,UNIQUE,0,Charlotte,,"Branch Bank And Trust (Bb&T)",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28260,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28262,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.32,-80.74,33580 +28263,UNIQUE,0,Charlotte,,"First Citizens Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.21,-80.69,17 +28265,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28266,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,475 +28269,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.34,-80.8,72430 +28270,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.11,-80.76,32450 +28271,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.22,-80.84,417 +28272,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28273,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.13,-80.95,35190 +28274,UNIQUE,0,Charlotte,,"Queens College",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,26 +28275,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28277,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.05,-80.82,69800 +28278,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.13,-81.01,29310 +28280,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.23,-80.84,0 +28281,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.83,0 +28282,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"980,704",NA,US,35.22,-80.85,54 +28284,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28285,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,"704,980",NA,US,35.19,-80.83,0 +28287,STANDARD,0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28288,UNIQUE,0,Charlotte,,"Wachovia Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,241 +28289,UNIQUE,0,Charlotte,,"Branch Bank And Trust (Bb&T)",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28290,UNIQUE,0,Charlotte,,"Jp Morgan Chase",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28296,UNIQUE,0,Charlotte,,"Wachovia Bank",NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,0 +28297,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,314 +28299,"PO BOX",0,Charlotte,,,NC,"Mecklenburg County",America/New_York,704,NA,US,35.19,-80.83,244 +28301,STANDARD,0,Fayetteville,"E Fayetteville, E Fayettevlle, East Fayetteville","E Fayettevill, Eastover, Fay, Vander",NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.87,11260 +28302,"PO BOX",0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.87,1007 +28303,STANDARD,0,Fayetteville,,Eutaw,NC,"Cumberland County",America/New_York,910,NA,US,35.09,-78.96,26200 +28304,STANDARD,0,Fayetteville,,Lafayette,NC,"Cumberland County",America/New_York,910,NA,US,35.03,-78.99,31330 +28305,STANDARD,0,Fayetteville,,Haymount,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.91,5230 +28306,STANDARD,0,Fayetteville,,"Fayetteville Municipal Airpo, Lakedale",NC,"Bladen County",America/New_York,910,NA,US,34.96,-78.9,39020 +28307,STANDARD,0,"Fort Bragg",Fayetteville,,NC,"Cumberland County",America/New_York,910,NA,US,35.13,-79,13540 +28308,STANDARD,0,"Pope Army Airfield","Fayetteville, Pope Army Af",,NC,"Cumberland County",America/New_York,910,NA,US,35.17,-79.02,705 +28309,"PO BOX",0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-78.87,694 +28310,UNIQUE,0,"Fort Bragg",,"Fort Bragg Military",NC,"Cumberland County",America/New_York,,NA,US,35.16,-79.04,6506 +28311,STANDARD,0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.17,-78.89,30690 +28312,STANDARD,0,Fayetteville,Eastover,,NC,"Cumberland County",America/New_York,910,NA,US,34.93,-78.72,17050 +28314,STANDARD,0,Fayetteville,,,NC,"Cumberland County",America/New_York,910,NA,US,35.05,-79.03,48330 +28315,STANDARD,0,Aberdeen,,,NC,"Moore County",America/New_York,910,NA,US,35.13,-79.42,11140 +28318,STANDARD,0,Autryville,,,NC,"Sampson County",America/New_York,910,NA,US,34.99,-78.64,3990 +28319,"PO BOX",0,Barnesville,,,NC,"Robeson County",America/New_York,910,NA,US,34.4,-79.04,54 +28320,STANDARD,0,Bladenboro,Butters,,NC,"Bladen County",America/New_York,910,NA,US,34.53,-78.79,6200 +28323,STANDARD,0,Bunnlevel,,,NC,"Harnett County",America/New_York,,NA,US,35.31,-78.83,4010 +28325,"PO BOX",0,Calypso,,,NC,"Duplin County",America/New_York,910,NA,US,35.15,-78.1,580 +28326,STANDARD,0,Cameron,,,NC,"Harnett County",America/New_York,919,NA,US,35.32,-79.25,22370 +28327,STANDARD,0,Carthage,"Whisper Pnes, Whispering Pines",,NC,"Moore County",America/New_York,910,NA,US,35.34,-79.41,16320 +28328,STANDARD,0,Clinton,,,NC,"Sampson County",America/New_York,910,NA,US,35,-78.33,21010 +28329,"PO BOX",0,Clinton,,,NC,"Sampson County",America/New_York,910,NA,US,35,-78.33,2914 +28330,"PO BOX",0,Cordova,,,NC,"Richmond County",America/New_York,910,NA,US,34.91,-79.82,875 +28331,"PO BOX",0,Cumberland,,,NC,"Cumberland County",America/New_York,910,NA,US,35.03,-79.01,434 +28332,"PO BOX",0,Dublin,,,NC,"Bladen County",America/New_York,910,NA,US,34.66,-78.74,800 +28333,STANDARD,0,Dudley,,,NC,"Wayne County",America/New_York,919,NA,US,35.27,-78.03,9420 +28334,STANDARD,0,Dunn,,,NC,"Sampson County",America/New_York,910,NA,US,35.31,-78.61,19890 +28335,"PO BOX",0,Dunn,,,NC,"Harnett County",America/New_York,910,NA,US,35.31,-78.61,1695 +28337,STANDARD,0,Elizabethtown,,"White Lake",NC,"Bladen County",America/New_York,910,NA,US,34.62,-78.61,7890 +28338,STANDARD,0,Ellerbe,,,NC,"Richmond County",America/New_York,910,NA,US,35.07,-79.76,3300 +28339,STANDARD,0,Erwin,,,NC,"Harnett County",America/New_York,910,NA,US,35.32,-78.67,5440 +28340,STANDARD,0,Fairmont,,Raynham,NC,"Robeson County",America/New_York,910,NA,US,34.49,-79.11,7560 +28341,STANDARD,0,Faison,,,NC,"Duplin County",America/New_York,910,NA,US,35.11,-78.13,3540 +28342,"PO BOX",0,Falcon,,,NC,"Cumberland County",America/New_York,910,NA,US,35.19,-78.64,411 +28343,STANDARD,0,Gibson,,,NC,"Scotland County",America/New_York,910,NA,US,34.75,-79.6,1200 +28344,STANDARD,0,Godwin,,,NC,"Sampson County",America/New_York,910,NA,US,35.21,-78.68,2720 +28345,STANDARD,0,Hamlet,,,NC,"Richmond County",America/New_York,910,NA,US,34.88,-79.7,9610 +28347,STANDARD,0,Hoffman,,,NC,"Richmond County",America/New_York,910,NA,US,35.03,-79.54,730 +28348,STANDARD,0,"Hope Mills",,,NC,"Cumberland County",America/New_York,910,NA,US,34.97,-78.95,33880 +28349,STANDARD,0,Kenansville,,,NC,"Duplin County",America/New_York,910,NA,US,34.96,-77.96,2930 +28350,"PO BOX",0,Lakeview,,,NC,"Moore County",America/New_York,,NA,US,35.24,-79.31,577 +28351,STANDARD,0,"Laurel Hill",,,NC,"Scotland County",America/New_York,910,NA,US,34.8,-79.54,3800 +28352,STANDARD,0,Laurinburg,,"E Laurinburg, East Laurinburg",NC,"Scotland County",America/New_York,910,NA,US,34.76,-79.47,17700 +28353,"PO BOX",0,Laurinburg,,,NC,"Scotland County",America/New_York,910,NA,US,34.76,-79.47,2202 +28355,"PO BOX",0,"Lemon Springs",,,NC,"Lee County",America/New_York,919,NA,US,35.38,-79.2,673 +28356,STANDARD,0,Linden,,,NC,"Harnett County",America/New_York,910,NA,US,35.25,-78.74,4770 +28357,STANDARD,0,"Lumber Bridge",,,NC,"Robeson County",America/New_York,,NA,US,34.88,-79.07,2200 +28358,STANDARD,0,Lumberton,,"Biggs Park",NC,"Robeson County",America/New_York,910,NA,US,34.63,-79.01,25780 +28359,"PO BOX",0,Lumberton,,,NC,"Robeson County",America/New_York,910,NA,US,34.63,-79.01,4827 +28360,STANDARD,0,Lumberton,,,NC,"Robeson County",America/New_York,910,NA,US,34.67,-79.07,9910 +28362,"PO BOX",0,Marietta,,,NC,"Robeson County",America/New_York,910,NA,US,34.36,-79.12,259 +28363,STANDARD,0,Marston,,,NC,"Richmond County",America/New_York,910,NA,US,34.96,-79.55,940 +28364,STANDARD,0,Maxton,,,NC,"Robeson County",America/New_York,910,NA,US,34.73,-79.35,10460 +28365,STANDARD,0,"Mount Olive",,,NC,"Wayne County",America/New_York,919,NA,US,35.19,-78.06,13000 +28366,STANDARD,0,"Newton Grove",,,NC,"Sampson County",America/New_York,910,NA,US,35.25,-78.35,4750 +28367,"PO BOX",0,Norman,,,NC,"Richmond County",America/New_York,910,NA,US,35.17,-79.72,311 +28368,"PO BOX",0,Olivia,,,NC,"Harnett County",America/New_York,,NA,US,35.37,-79.11,788 +28369,STANDARD,0,Orrum,,,NC,"Robeson County",America/New_York,910,NA,US,34.46,-79.01,1780 +28370,"PO BOX",0,Pinehurst,,,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.46,1707 +28371,STANDARD,0,Parkton,,,NC,"Robeson County",America/New_York,910,NA,US,34.9,-79.01,6130 +28372,STANDARD,0,Pembroke,,,NC,"Robeson County",America/New_York,910,NA,US,34.68,-79.19,10500 +28373,STANDARD,0,Pinebluff,,,NC,"Moore County",America/New_York,910,NA,US,35.1,-79.47,2160 +28374,STANDARD,0,Pinehurst,,,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.46,17430 +28375,"PO BOX",0,Proctorville,,,NC,"Robeson County",America/New_York,910,NA,US,34.48,-79.04,347 +28376,STANDARD,0,Raeford,,,NC,"Hoke County",America/New_York,910,NA,US,34.97,-79.22,38540 +28377,STANDARD,0,"Red Springs",,,NC,"Robeson County",America/New_York,910,NA,US,34.81,-79.18,9440 +28378,"PO BOX",0,Rex,,,NC,"Robeson County",America/New_York,910,NA,US,34.85,-79.05,231 +28379,STANDARD,0,Rockingham,,,NC,"Richmond County",America/New_York,910,NA,US,34.93,-79.76,19170 +28380,"PO BOX",0,Rockingham,,,NC,"Richmond County",America/New_York,910,NA,US,34.93,-79.76,1741 +28382,STANDARD,0,Roseboro,,,NC,"Sampson County",America/New_York,910,NA,US,34.95,-78.51,6030 +28383,STANDARD,0,Rowland,Raynham,,NC,"Robeson County",America/New_York,910,NA,US,34.53,-79.29,5650 +28384,STANDARD,0,"Saint Pauls",,,NC,"Bladen County",America/New_York,910,NA,US,34.8,-78.97,9550 +28385,STANDARD,0,Salemburg,,,NC,"Sampson County",America/New_York,910,NA,US,35.01,-78.5,2810 +28386,STANDARD,0,Shannon,Rennert,,NC,"Robeson County",America/New_York,,NA,US,34.83,-79.11,4800 +28387,STANDARD,0,"Southern Pines","Southern Pnes",,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.4,13730 +28388,"PO BOX",0,"Southern Pines","Southern Pnes",,NC,"Moore County",America/New_York,910,NA,US,35.18,-79.4,1735 +28390,STANDARD,0,"Spring Lake",,"Olde Farm",NC,"Harnett County",America/New_York,,NA,US,35.17,-78.98,19750 +28391,STANDARD,0,Stedman,,,NC,"Cumberland County",America/New_York,910,NA,US,35.01,-78.69,4960 +28392,STANDARD,0,"Tar Heel",,,NC,"Bladen County",America/New_York,910,NA,US,34.73,-78.79,1470 +28393,STANDARD,0,Turkey,,,NC,"Sampson County",America/New_York,910,NA,US,34.99,-78.18,1710 +28394,STANDARD,0,Vass,,,NC,"Moore County",America/New_York,910,NA,US,35.25,-79.28,4750 +28395,STANDARD,0,Wade,,,NC,"Cumberland County",America/New_York,910,NA,US,35.16,-78.73,2320 +28396,STANDARD,0,Wagram,,,NC,"Scotland County",America/New_York,910,NA,US,34.88,-79.36,2160 +28398,STANDARD,0,Warsaw,Bowdens,,NC,"Duplin County",America/New_York,910,NA,US,34.99,-78.08,5840 +28399,STANDARD,0,"White Oak",,,NC,"Bladen County",America/New_York,910,NA,US,34.74,-78.7,1400 +28401,STANDARD,0,Wilmington,"Cape Fear",Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.27,-77.96,16190 +28402,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,1269 +28403,STANDARD,0,Wilmington,,"University Of Nc, Wilm",NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,24360 +28404,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,330 +28405,STANDARD,0,Wilmington,,"New Hanover County Airport, Wilm",NC,"New Hanover County",America/New_York,910,NA,US,34.26,-77.87,27130 +28406,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,1102 +28407,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,55 +28408,"PO BOX",0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,507 +28409,STANDARD,0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.15,-77.86,32550 +28410,UNIQUE,0,Wilmington,,"Bedford Fair Industries, Willow Ridge, Wilm",NC,"New Hanover County",America/New_York,910,NA,US,34.21,-77.91,0 +28411,STANDARD,0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.3,-77.79,34620 +28412,STANDARD,0,Wilmington,,Wilm,NC,"New Hanover County",America/New_York,910,NA,US,34.14,-77.93,36290 +28420,STANDARD,0,Ash,,,NC,"Brunswick County",America/New_York,910,NA,US,34.07,-78.47,2890 +28421,STANDARD,0,Atkinson,,,NC,"Pender County",America/New_York,910,NA,US,34.52,-78.17,1240 +28422,STANDARD,0,Bolivia,,"Sunset Harbor",NC,"Brunswick County",America/New_York,910,NA,US,34.07,-78.14,6850 +28423,STANDARD,0,Bolton,,,NC,"Columbus County",America/New_York,910,NA,US,34.31,-78.4,1670 +28424,"PO BOX",0,Brunswick,,,NC,"Columbus County",America/New_York,910,NA,US,34.29,-78.7,382 +28425,STANDARD,0,Burgaw,"Saint Helena",,NC,"Pender County",America/New_York,910,NA,US,34.55,-77.92,8640 +28428,STANDARD,0,"Carolina Beach","Carolina Bch",,NC,"New Hanover County",America/New_York,910,NA,US,34.04,-77.89,6170 +28429,STANDARD,0,"Castle Hayne",,,NC,"New Hanover County",America/New_York,910,NA,US,34.35,-77.9,7460 +28430,STANDARD,0,"Cerro Gordo",,,NC,"Columbus County",America/New_York,910,NA,US,34.32,-78.92,1410 +28431,STANDARD,0,Chadbourn,,,NC,"Columbus County",America/New_York,910,NA,US,34.32,-78.82,5410 +28432,STANDARD,0,Clarendon,,,NC,"Columbus County",America/New_York,910,NA,US,34.17,-78.76,1690 +28433,STANDARD,0,Clarkton,,Emerson,NC,"Bladen County",America/New_York,910,NA,US,34.48,-78.65,3580 +28434,STANDARD,0,Council,,,NC,"Bladen County",America/New_York,910,NA,US,34.42,-78.46,840 +28435,STANDARD,0,Currie,,"Moores Creek National Battle",NC,"Pender County",America/New_York,910,NA,US,34.46,-78.1,1960 +28436,STANDARD,0,Delco,,,NC,"Columbus County",America/New_York,910,NA,US,34.28,-78.27,1800 +28438,STANDARD,0,Evergreen,Boardman,,NC,"Columbus County",America/New_York,910,NA,US,34.4,-78.9,1330 +28439,STANDARD,0,"Fair Bluff",,,NC,"Columbus County",America/New_York,910,NA,US,34.31,-79.03,980 +28441,STANDARD,0,Garland,Ingold,,NC,"Sampson County",America/New_York,910,NA,US,34.78,-78.39,2740 +28442,STANDARD,0,Hallsboro,,,NC,"Columbus County",America/New_York,910,NA,US,34.29,-78.59,1250 +28443,STANDARD,0,Hampstead,,,NC,"Pender County",America/New_York,910,NA,US,34.36,-77.71,23030 +28444,STANDARD,0,Harrells,,,NC,"Sampson County",America/New_York,910,NA,US,34.72,-78.2,1800 +28445,STANDARD,0,"Holly Ridge","Surf City, Topsail Beach",,NC,"Onslow County",America/New_York,910,NA,US,34.49,-77.55,8580 +28447,STANDARD,0,Ivanhoe,,,NC,"Sampson County",America/New_York,910,NA,US,34.6,-78.25,930 +28448,STANDARD,0,Kelly,,,NC,"Bladen County",America/New_York,910,NA,US,34.46,-78.32,680 +28449,STANDARD,0,"Kure Beach",,"Fort Fisher Air Force Statio",NC,"New Hanover County",America/New_York,910,NA,US,33.99,-77.91,1830 +28450,STANDARD,0,"Lake Waccamaw",,,NC,"Columbus County",America/New_York,910,NA,US,34.31,-78.51,1820 +28451,STANDARD,0,Leland,"Belville, Navassa, Northwest",,NC,"Brunswick County",America/New_York,910,NA,US,34.24,-78,34070 +28452,STANDARD,0,Longwood,,,NC,"Brunswick County",America/New_York,910,NA,US,34,-78.54,600 +28453,STANDARD,0,Magnolia,,,NC,"Duplin County",America/New_York,,NA,US,34.89,-78.05,3110 +28454,STANDARD,0,"Maple Hill",,,NC,"Onslow County",America/New_York,,NA,US,34.66,-77.69,2660 +28455,STANDARD,0,Nakina,,,NC,"Columbus County",America/New_York,910,NA,US,34.13,-78.66,1460 +28456,STANDARD,0,Riegelwood,"East Arcadia, Sandyfield","Acme, Northwest",NC,"Columbus County",America/New_York,910,NA,US,34.34,-78.26,2920 +28457,STANDARD,0,"Rocky Point",,,NC,"Pender County",America/New_York,910,NA,US,34.43,-77.88,9850 +28458,STANDARD,0,"Rose Hill",Greenevers,,NC,"Duplin County",America/New_York,910,NA,US,34.82,-78.02,4740 +28459,"PO BOX",0,Shallotte,,,NC,"Brunswick County",America/New_York,910,NA,US,33.97,-78.38,3161 +28460,STANDARD,0,"Sneads Ferry","N Topsail Bch, N Topsail Beach",,NC,"Onslow County",America/New_York,910,NA,US,34.55,-77.37,11210 +28461,STANDARD,0,Southport,"Bald Head Isl, Bald Head Island, Blng Spg Lks, Boiling Spring Lakes, Oak Island, Saint James","Bald Head, Bling Spr Lks",NC,"Brunswick County",America/New_York,910,NA,US,33.92,-78.02,19750 +28462,STANDARD,0,Supply,"Holden Beach",,NC,"Brunswick County",America/New_York,910,NA,US,34.01,-78.26,10410 +28463,STANDARD,0,"Tabor City",,,NC,"Columbus County",America/New_York,910,NA,US,34.14,-78.87,5860 +28464,STANDARD,0,Teachey,,,NC,"Duplin County",America/New_York,910,NA,US,34.78,-78.02,1830 +28465,STANDARD,0,"Oak Island","Caswell Beach","Fort Caswell, Ft Caswell, Long Beach, Sunny Point Mil Ocean, Sunny Point Military Ocean T, Yaupon Beach",NC,"Brunswick County",America/New_York,910,NA,US,33.91,-78.1,7110 +28466,STANDARD,0,Wallace,,,NC,"Duplin County",America/New_York,910,NA,US,34.73,-77.99,7570 +28467,STANDARD,0,Calabash,"Carolina Shor, Carolina Shores, Ocean Isl Bch, Ocean Isle Beach",,NC,"Brunswick County",America/New_York,910,NA,US,33.89,-78.57,9860 +28468,STANDARD,0,"Sunset Beach",Shallotte,"Sunset Bch",NC,"Brunswick County",America/New_York,910,NA,US,33.87,-78.51,4390 +28469,STANDARD,0,"Ocean Isle Beach","Ocean Isl Bch, Shallotte","Ocean Isle",NC,"Brunswick County",America/New_York,910,NA,US,33.93,-78.47,7550 +28470,STANDARD,0,Shallotte,"S Brunswick, South Brunswick",,NC,"Brunswick County",America/New_York,910,NA,US,33.95,-78.39,8410 +28472,STANDARD,0,Whiteville,,,NC,"Columbus County",America/New_York,910,NA,US,34.32,-78.7,14420 +28478,STANDARD,0,Willard,Watha,,NC,"Pender County",America/New_York,,NA,US,34.69,-77.98,3720 +28479,STANDARD,0,Winnabow,,,NC,"Brunswick County",America/New_York,910,NA,US,34.1,-78.02,5440 +28480,STANDARD,0,"Wrightsville Beach","Writsvlle Bch",,NC,"New Hanover County",America/New_York,910,NA,US,34.23,-77.8,2470 +28501,STANDARD,0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.27,-77.59,13460 +28502,"PO BOX",0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.27,-77.59,1303 +28503,"PO BOX",0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.27,-77.59,802 +28504,STANDARD,0,Kinston,,,NC,"Lenoir County",America/New_York,252,NA,US,35.22,-77.63,16970 +28508,STANDARD,0,Albertson,,,NC,"Duplin County",America/New_York,252,NA,US,35.11,-77.85,2090 +28509,"PO BOX",0,Alliance,,,NC,"Pamlico County",America/New_York,252,NA,US,35.14,-76.8,485 +28510,STANDARD,0,Arapahoe,"Minnesott Bch, Minnesott Beach",,NC,"Pamlico County",America/New_York,252,NA,US,35.01,-76.82,1370 +28511,STANDARD,0,Atlantic,,,NC,"Carteret County",America/New_York,252,NA,US,34.89,-76.33,450 +28512,STANDARD,0,"Atlantic Beach","Atlantic Bch, Indian Beach, Pine Knoll Shores, Pks, Salter Path","Atlanticbeach, Fort Macon Coast Guard Base",NC,"Carteret County",America/New_York,,NA,US,34.7,-76.73,2950 +28513,STANDARD,0,Ayden,,,NC,"Pitt County",America/New_York,252,NA,US,35.47,-77.42,8080 +28515,STANDARD,0,Bayboro,Mesic,,NC,"Pamlico County",America/New_York,252,NA,US,35.18,-76.7,1600 +28516,STANDARD,0,Beaufort,,"Cape Lookout National Seasho",NC,"Carteret County",America/New_York,252,NA,US,34.72,-76.65,9390 +28518,STANDARD,0,Beulaville,,,NC,"Duplin County",America/New_York,910,NA,US,34.92,-77.77,6930 +28519,"PO BOX",0,Bridgeton,,,NC,"Craven County",America/New_York,252,NA,US,35.12,-77.02,1121 +28520,STANDARD,0,"Cedar Island",,,NC,"Carteret County",America/New_York,252,NA,US,35,-76.32,210 +28521,STANDARD,0,Chinquapin,,,NC,"Duplin County",America/New_York,910,NA,US,34.82,-77.74,1780 +28522,"PO BOX",0,Comfort,,,NC,"Jones County",America/New_York,,NA,US,35.01,-77.49,133 +28523,STANDARD,0,"Cove City",,,NC,"Craven County",America/New_York,252,NA,US,35.18,-77.32,2180 +28524,STANDARD,0,Davis,,,NC,"Carteret County",America/New_York,,NA,US,34.79,-76.47,290 +28525,STANDARD,0,"Deep Run",,,NC,"Lenoir County",America/New_York,252,NA,US,35.15,-77.69,2890 +28526,STANDARD,0,Dover,,"Fort Barnwell",NC,"Craven County",America/New_York,252,NA,US,35.21,-77.43,1840 +28527,STANDARD,0,Ernul,,,NC,"Craven County",America/New_York,252,NA,US,35.29,-77.03,1040 +28528,STANDARD,0,Gloucester,,,NC,"Carteret County",America/New_York,,NA,US,34.72,-76.54,510 +28529,STANDARD,0,Grantsboro,,"Kennells Beach",NC,"Pamlico County",America/New_York,252,NA,US,35.07,-76.85,1730 +28530,STANDARD,0,Grifton,,,NC,"Pitt County",America/New_York,252,NA,US,35.37,-77.43,5960 +28531,STANDARD,0,"Harkers Island","Harkers Is",,NC,"Carteret County",America/New_York,,NA,US,34.69,-76.55,1010 +28532,STANDARD,0,Havelock,,,NC,"Craven County",America/New_York,252,NA,US,34.9,-76.89,19250 +28533,STANDARD,0,"Cherry Point",Havelock,"Cherry Point Marine Corps Ai, Mcas Cherry Point",NC,"Craven County",America/New_York,252,NA,US,34.9,-76.9,2306 +28537,STANDARD,0,Hobucken,,,NC,"Pamlico County",America/New_York,252,NA,US,35.26,-76.53,141 +28538,STANDARD,0,Hookerton,,,NC,"Greene County",America/New_York,,NA,US,35.42,-77.58,1900 +28539,STANDARD,0,Hubert,,,NC,"Onslow County",America/New_York,910,NA,US,34.66,-77.23,15080 +28540,STANDARD,0,Jacksonville,,"New River Marine Corps Air S",NC,"Onslow County",America/New_York,910,NA,US,34.76,-77.4,42380 +28541,"PO BOX",0,Jacksonville,,,NC,"Onslow County",America/New_York,910,NA,US,34.76,-77.4,877 +28542,"PO BOX",0,"Camp Lejeune",Jacksonville,"Cp Lejeune Mcb, Cp Lejeunemcb, Lejeune",NC,"Onslow County",America/New_York,910,NA,US,34.68,-77.34,7332 +28543,STANDARD,0,"Tarawa Terrace","Jacksonville, Tarawa Ter","Tarawa, Tarawa Tr",NC,"Onslow County",America/New_York,910,NA,US,34.73,-77.37,3870 +28544,STANDARD,0,"Midway Park",Jacksonville,,NC,"Onslow County",America/New_York,910,NA,US,34.73,-77.3,4240 +28545,STANDARD,0,"Mccutcheon Field","Jacksonville, Mccutchn Fld","Mc Cutcheon Field",NC,"Onslow County",America/New_York,910,NA,US,34.67,-77.52,1177 +28546,STANDARD,0,Jacksonville,,,NC,"Onslow County",America/New_York,910,NA,US,34.8,-77.36,42290 +28547,STANDARD,0,"Camp Lejeune",,"Naval Hos, Naval Hospital",NC,"Onslow County",America/New_York,910,NA,US,34.68,-77.34,6710 +28551,STANDARD,0,"La Grange",,,NC,"Lenoir County",America/New_York,252,NA,US,35.3,-77.78,11090 +28552,STANDARD,0,Lowland,,,NC,"Pamlico County",America/New_York,252,NA,US,35.3,-76.57,152 +28553,STANDARD,0,Marshallberg,,,NC,"Carteret County",America/New_York,252,NA,US,34.73,-76.51,340 +28554,"PO BOX",0,Maury,,,NC,"Greene County",America/New_York,252,NA,US,35.48,-77.59,568 +28555,STANDARD,0,Maysville,,,NC,"Onslow County",America/New_York,910,NA,US,34.9,-77.23,4480 +28556,STANDARD,0,Merritt,,,NC,"Pamlico County",America/New_York,252,NA,US,35.11,-76.69,680 +28557,STANDARD,0,"Morehead City",,,NC,"Carteret County",America/New_York,252,NA,US,34.72,-76.73,13160 +28560,STANDARD,0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,23520 +28561,"PO BOX",0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,1645 +28562,STANDARD,0,"New Bern","Trent Woods",,NC,"Craven County",America/New_York,252,NA,US,35.08,-77.13,35480 +28563,"PO BOX",0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,694 +28564,"PO BOX",0,"New Bern",,,NC,"Craven County",America/New_York,252,NA,US,35.11,-77.07,350 +28570,STANDARD,0,Newport,Bogue,,NC,"Carteret County",America/New_York,252,NA,US,34.78,-76.86,18810 +28571,STANDARD,0,Oriental,,,NC,"Pamlico County",America/New_York,252,NA,US,35.03,-76.68,2200 +28572,STANDARD,0,"Pink Hill",,,NC,"Duplin County",America/New_York,252,NA,US,35.05,-77.74,5260 +28573,STANDARD,0,Pollocksville,,,NC,"Jones County",America/New_York,252,NA,US,35,-77.22,1750 +28574,STANDARD,0,Richlands,,,NC,"Onslow County",America/New_York,910,NA,US,34.89,-77.54,16560 +28575,"PO BOX",0,"Salter Path",,,NC,"Carteret County",America/New_York,,NA,US,34.71,-76.88,381 +28577,STANDARD,0,Sealevel,,,NC,"Carteret County",America/New_York,252,NA,US,34.89,-76.39,210 +28578,STANDARD,0,"Seven Springs",,,NC,"Wayne County",America/New_York,252,NA,US,35.22,-77.84,4920 +28579,STANDARD,0,Smyrna,Williston,,NC,"Carteret County",America/New_York,,NA,US,34.76,-76.51,470 +28580,STANDARD,0,"Snow Hill",,,NC,"Greene County",America/New_York,252,NA,US,35.45,-77.67,8140 +28581,STANDARD,0,Stacy,Sealevel,,NC,"Carteret County",America/New_York,252,NA,US,34.85,-76.41,170 +28582,STANDARD,0,Stella,,,NC,"Onslow County",America/New_York,252,NA,US,34.77,-77.12,1900 +28583,"PO BOX",0,Stonewall,,,NC,"Pamlico County",America/New_York,252,NA,US,35.13,-76.74,232 +28584,STANDARD,0,Swansboro,"Cape Carteret, Cedar Point, Peletier",,NC,"Carteret County",America/New_York,"252,910",NA,US,34.69,-77.12,12630 +28585,STANDARD,0,Trenton,,,NC,"Jones County",America/New_York,252,NA,US,35.06,-77.35,2950 +28586,STANDARD,0,Vanceboro,,,NC,"Craven County",America/New_York,252,NA,US,35.3,-77.15,5730 +28587,STANDARD,0,Vandemere,,,NC,"Pamlico County",America/New_York,252,NA,US,35.18,-76.66,210 +28589,"PO BOX",0,Williston,,,NC,"Carteret County",America/New_York,,NA,US,34.8,-76.49,148 +28590,STANDARD,0,Winterville,,,NC,"Pitt County",America/New_York,252,NA,US,35.52,-77.39,25660 +28594,STANDARD,0,"Emerald Isle",,,NC,"Carteret County",America/New_York,252,NA,US,34.69,-76.97,3970 +28601,STANDARD,0,Hickory,,"Bethlehem, Lenoir Rhyne, Longview, View Mont",NC,"Catawba County",America/New_York,828,NA,US,35.77,-81.33,44580 +28602,STANDARD,0,Hickory,,"Long View, Longview, Mountain View, Mt View",NC,"Catawba County",America/New_York,828,NA,US,35.73,-81.32,24150 +28603,"PO BOX",0,Hickory,,,NC,"Catawba County",America/New_York,828,NA,US,35.73,-81.32,3286 +28604,STANDARD,0,"Banner Elk","Beech Mountain, Beech Mtn, Seven Devils, Sugar Mountain, Sugar Mtn","Balm, Elk Valley, Foscoe, Grandfather, Kellersville, Matney, Norwood Hollow, Rominger, White Rock",NC,"Watauga County",America/New_York,828,NA,US,36.16,-81.87,5260 +28605,STANDARD,0,"Blowing Rock",,"Aho, Bamboo, Mayview Park",NC,"Watauga County",America/New_York,828,NA,US,36.12,-81.67,3420 +28606,STANDARD,0,Boomer,,,NC,"Wilkes County",America/New_York,336,NA,US,36.05,-81.32,1670 +28607,STANDARD,0,Boone,,"Adams, Deerfield, Grandview Heights, Hillcrest, Hodges Gap, Laxon, Meat Camp, Perkinsville, Rutherwood, Sands, Shulls Mills",NC,"Watauga County",America/New_York,828,NA,US,36.2,-81.66,18950 +28608,UNIQUE,0,Boone,,"Appalachian State Univ",NC,"Watauga County",America/New_York,828,NA,US,36.2,-81.66,273 +28609,STANDARD,0,Catawba,Longisland,,NC,"Catawba County",America/New_York,828,NA,US,35.7,-81.07,5370 +28610,STANDARD,0,Claremont,,,NC,"Catawba County",America/New_York,828,NA,US,35.71,-81.15,9000 +28611,STANDARD,0,Collettsville,,,NC,"Caldwell County",America/New_York,828,NA,US,36.01,-81.74,590 +28612,STANDARD,0,"Connelly Springs","Connelly Spg",,NC,"Burke County",America/New_York,828,NA,US,35.65,-81.54,9040 +28613,STANDARD,0,Conover,,,NC,"Catawba County",America/New_York,828,NA,US,35.7,-81.21,20600 +28615,STANDARD,0,Creston,,"Ashland, Fig, Grayson, Parker",NC,"Ashe County",America/New_York,336,NA,US,36.44,-81.65,1450 +28616,"PO BOX",0,Crossnore,,,NC,"Avery County",America/New_York,828,NA,US,36.02,-81.93,640 +28617,STANDARD,0,Crumpler,,"Chestnut Hill, Nathans Creek, Shatley Springs, Weaversford",NC,"Ashe County",America/New_York,336,NA,US,36.47,-81.37,1680 +28618,STANDARD,0,"Deep Gap",Triplett,"Meadow Creek, Stony Fork",NC,"Watauga County",America/New_York,828,NA,US,36.23,-81.51,2140 +28619,"PO BOX",0,Drexel,,,NC,"Burke County",America/New_York,828,NA,US,35.75,-81.6,2613 +28621,STANDARD,0,Elkin,,,NC,"Surry County",America/New_York,336,NA,US,36.25,-80.84,8200 +28622,STANDARD,0,"Elk Park",,"Cranberry, Darkridge, Flat Springs, Heaton, Whaley",NC,"Avery County",America/New_York,828,NA,US,36.15,-81.98,1790 +28623,STANDARD,0,Ennice,,"Barrett, Saddle",NC,"Alleghany County",America/New_York,336,NA,US,36.55,-81,1280 +28624,STANDARD,0,Ferguson,,"Champion, Darby, Denny, Hendrix",NC,"Wilkes County",America/New_York,336,NA,US,36.13,-81.41,1200 +28625,STANDARD,0,Statesville,,,NC,"Iredell County",America/New_York,"980,704",NA,US,35.87,-80.89,33090 +28626,STANDARD,0,Fleetwood,,,NC,"Ashe County",America/New_York,336,NA,US,36.3,-81.51,2060 +28627,STANDARD,0,"Glade Valley",,"Cherry Lane, Hare",NC,"Alleghany County",America/New_York,336,NA,US,36.48,-81.05,1030 +28628,"PO BOX",0,"Glen Alpine",,,NC,"Burke County",America/New_York,828,NA,US,35.73,-81.79,1641 +28629,STANDARD,0,"Glendale Springs","Glendale Spgs",,NC,"Ashe County",America/New_York,336,NA,US,36.35,-81.37,233 +28630,STANDARD,0,"Granite Falls",Sawmills,"Baton, Dudley Shoals, Grace Chapel",NC,"Caldwell County",America/New_York,828,NA,US,35.8,-81.42,16180 +28631,STANDARD,0,"Grassy Creek",,"Helton, Sussex",NC,"Ashe County",America/New_York,336,NA,US,36.56,-81.4,510 +28633,UNIQUE,0,Lenoir,,"Broyhill Furniture",NC,"Caldwell County",America/New_York,828,NA,US,35.9,-81.53,0 +28634,STANDARD,0,Harmony,,"Countyline, Houstonville",NC,"Iredell County",America/New_York,"336,704,980",NA,US,35.95,-80.77,4270 +28635,STANDARD,0,Hays,,Hayes,NC,"Wilkes County",America/New_York,336,NA,US,36.24,-81.11,3000 +28636,STANDARD,0,Hiddenite,,Vashti,NC,"Alexander County",America/New_York,704,NA,US,35.9,-81.09,4330 +28637,STANDARD,0,Hildebran,,,NC,"Burke County",America/New_York,"704,828",NA,US,35.71,-81.42,1930 +28638,STANDARD,0,Hudson,,,NC,"Caldwell County",America/New_York,828,NA,US,35.84,-81.48,10260 +28640,STANDARD,0,Jefferson,,"Orion, Rhine, Theta, Wagoner",NC,"Ashe County",America/New_York,336,NA,US,36.42,-81.46,3840 +28641,"PO BOX",0,"Jonas Ridge",,,NC,"Avery County",America/New_York,828,NA,US,35.97,-81.89,225 +28642,STANDARD,0,Jonesville,,Arlington,NC,"Yadkin County",America/New_York,336,NA,US,36.23,-80.84,4280 +28643,STANDARD,0,Lansing,Husk,"Apple Grove, Ball, Bly, Brandon, Comet, Dolinger, Farmers Store, Little Horse Creek, Sturgills, Tuckerdale",NC,"Ashe County",America/New_York,336,NA,US,36.49,-81.5,2390 +28644,STANDARD,0,"Laurel Springs","Laurel Spgs",,NC,"Alleghany County",America/New_York,,NA,US,36.44,-81.25,1160 +28645,STANDARD,0,Lenoir,"Boone, Cajahs Mountain, Cajahs Mtn, Cedar Rock","Brown Mountain Beach, Edgemont, Gamewell, Joyceton, Kings Creek, Laytown, Mortimer, Upton, Valmead, Warrior",NC,"Caldwell County",America/New_York,828,NA,US,35.9,-81.53,36150 +28646,"PO BOX",0,Linville,,,NC,"Avery County",America/New_York,828,NA,US,36.08,-81.85,827 +28647,"PO BOX",0,"Linville Falls","Linville Fls",,NC,"Avery County",America/New_York,828,NA,US,35.94,-81.97,248 +28649,STANDARD,0,"Mc Grady",,"Halls Mills, Mcgrady, Radical",NC,"Wilkes County",America/New_York,336,NA,US,36.33,-81.23,750 +28650,STANDARD,0,Maiden,,,NC,"Catawba County",America/New_York,828,NA,US,35.57,-81.2,11460 +28651,STANDARD,0,"Millers Creek",Wilbar,,NC,"Wilkes County",America/New_York,336,NA,US,36.18,-81.23,5370 +28652,"PO BOX",0,Minneapolis,,"Carpenter Bottom",NC,"Avery County",America/New_York,828,NA,US,36.1,-81.99,221 +28653,"PO BOX",0,Montezuma,,,NC,"Avery County",America/New_York,828,NA,US,36.05,-81.9,258 +28654,STANDARD,0,"Moravian Falls","Moravian Fls",,NC,"Wilkes County",America/New_York,336,NA,US,36.1,-81.18,2990 +28655,STANDARD,0,Morganton,,"Bridgewater, Brindle Town, Burkemont, Calvin, Enola, Joy, Oak Hill, Petersburg, Pleasant Grove, Sunnyside",NC,"Burke County",America/New_York,828,NA,US,35.74,-81.69,41630 +28656,UNIQUE,0,"North Wilkesboro","N Wilkesboro","Lowes Co Inc",NC,"Wilkes County",America/New_York,336,NA,US,36.16,-81.14,0 +28657,STANDARD,0,Newland,,"Altamont, Beech Bottom, Chestnut Dale, Cranberry Gap, Hughes, Ingalls, Pyatte, Roaring Creek, Senia, Spear, Stamey Branch, Three Mile, Valley",NC,"Avery County",America/New_York,828,NA,US,36.08,-81.92,6660 +28658,STANDARD,0,Newton,,"Blackburn, Drums Crossroads, Duan, Olivers Crossroads, Propst Crossroads, South Newton, Startown",NC,"Catawba County",America/New_York,"704,828,980",NA,US,35.66,-81.21,23140 +28659,STANDARD,0,"North Wilkesboro","N Wilkesboro","Call, Cricket, Fairplains, Hunting Creek, Mulberry, Quarry, Spurgeon, Windy Gap",NC,"Wilkes County",America/New_York,336,NA,US,36.16,-81.14,16000 +28660,STANDARD,0,Olin,,,NC,"Iredell County",America/New_York,704,NA,US,35.95,-80.85,1910 +28661,"PO BOX",0,Patterson,,"Happy Valley",NC,"Caldwell County",America/New_York,828,NA,US,36.03,-81.58,634 +28662,"PO BOX",0,Pineola,,,NC,"Avery County",America/New_York,828,NA,US,36.02,-81.9,424 +28663,STANDARD,0,"Piney Creek",,,NC,"Alleghany County",America/New_York,336,NA,US,36.55,-81.3,500 +28664,"PO BOX",0,Plumtree,,,NC,"Avery County",America/New_York,828,NA,US,35.98,-82,443 +28665,STANDARD,0,Purlear,,"Maple Springs, Parsonville, Walsh",NC,"Wilkes County",America/New_York,336,NA,US,36.21,-81.38,2010 +28666,"PO BOX",0,Icard,,,NC,"Burke County",America/New_York,828,NA,US,35.73,-81.47,1608 +28667,"PO BOX",0,Rhodhiss,,Rhodhizz,NC,"Caldwell County",America/New_York,,NA,US,35.77,-81.43,753 +28668,STANDARD,0,"Roaring Gap",,,NC,"Alleghany County",America/New_York,336,NA,US,36.4,-80.98,290 +28669,STANDARD,0,"Roaring River",,Lomax,NC,"Wilkes County",America/New_York,336,NA,US,36.21,-81,2320 +28670,STANDARD,0,Ronda,,"Clingman, Dimmette",NC,"Wilkes County",America/New_York,336,NA,US,36.22,-80.94,2280 +28671,"PO BOX",0,"Rutherford College","Rutherfrd Clg, Rutherfrd Col",,NC,"Burke County",America/New_York,828,NA,US,35.75,-81.53,1219 +28672,STANDARD,0,Scottville,,"Peden, Topia",NC,"Ashe County",America/New_York,336,NA,US,36.48,-81.33,50 +28673,STANDARD,0,"Sherrills Ford","Sherrills Frd",,NC,"Catawba County",America/New_York,828,NA,US,35.57,-80.99,6110 +28674,UNIQUE,1,"North Wilkesboro","N Wilkesboro","Northwestern Bank",NC,"Wilkes County",America/New_York,336,NA,US,36.15,-81.14,0 +28675,STANDARD,0,Sparta,Whitehead,"Edwards Crossroads, Stratford, Twin Oaks",NC,"Alleghany County",America/New_York,336,NA,US,36.5,-81.13,4990 +28676,STANDARD,0,"State Road",,"Kapps Mill, Mountain Park, State Rd",NC,"Surry County",America/New_York,336,NA,US,36.33,-80.85,3010 +28677,STANDARD,0,Statesville,,"Bradfords Cross Roads, Celeste Hinkle, Charles, East Monbo, Elmwood, Eufola, Loray, Love Valley, Sharon, Statesville West",NC,"Iredell County",America/New_York,"704,980",NA,US,35.78,-80.88,29860 +28678,STANDARD,0,"Stony Point",,,NC,"Alexander County",America/New_York,704,NA,US,35.86,-81.04,4250 +28679,STANDARD,0,"Sugar Grove",,"Amantha, Beech Creek, Peoria, Sweetwater",NC,"Watauga County",America/New_York,828,NA,US,36.26,-81.83,1650 +28680,"PO BOX",0,Morganton,,,NC,"Burke County",America/New_York,828,NA,US,35.74,-81.69,3560 +28681,STANDARD,0,Taylorsville,,"All Healing Springs, Ellendale, Kilby, Liledown, Little River, Paynes Store",NC,"Alexander County",America/New_York,828,NA,US,35.92,-81.17,20340 +28682,STANDARD,0,Terrell,,,NC,"Catawba County",America/New_York,828,NA,US,35.58,-80.97,1180 +28683,STANDARD,0,Thurmond,,Doughton,NC,"Surry County",America/New_York,336,NA,US,36.36,-80.94,1350 +28684,STANDARD,0,Todd,,"Brownwood, Tamarack, Toliver, Woodford",NC,"Ashe County",America/New_York,,NA,US,36.3,-81.6,1600 +28685,STANDARD,0,Traphill,,"Abshers, Dockery, Joynes, Moxley",NC,"Wilkes County",America/New_York,336,NA,US,36.35,-81.03,1360 +28687,"PO BOX",0,Statesville,,,NC,"Iredell County",America/New_York,704,NA,US,35.78,-80.88,2114 +28688,"PO BOX",0,Turnersburg,,,NC,"Iredell County",America/New_York,704,NA,US,35.9,-80.8,147 +28689,STANDARD,0,"Union Grove",,Osbornville,NC,"Iredell County",America/New_York,"336,704",NA,US,36.02,-80.86,1740 +28690,STANDARD,0,Valdese,,,NC,"Burke County",America/New_York,828,NA,US,35.74,-81.55,7530 +28691,"PO BOX",0,"Valle Crucis","Banner Elk",,NC,"Watauga County",America/New_York,828,NA,US,36.21,-81.78,281 +28692,STANDARD,0,Vilas,,"Reese, Sherwood",NC,"Watauga County",America/New_York,828,NA,US,36.27,-81.81,3390 +28693,STANDARD,0,Warrensville,,Clifton,NC,"Ashe County",America/New_York,336,NA,US,36.46,-81.55,1130 +28694,STANDARD,0,"West Jefferson","W Jefferson","Baldwin, Beaver Creek, Idlewild, Index, Smethport, Treetop",NC,"Ashe County",America/New_York,336,NA,US,36.39,-81.49,6590 +28697,STANDARD,0,Wilkesboro,,Goshen,NC,"Wilkes County",America/New_York,336,NA,US,36.14,-81.16,10420 +28698,STANDARD,0,Zionville,,"Mabel, Silverstone",NC,"Watauga County",America/New_York,828,NA,US,36.32,-81.74,1650 +28699,"PO BOX",0,Scotts,,,NC,"Alexander County",America/New_York,704,NA,US,35.84,-81,247 +28701,STANDARD,0,Alexander,,,NC,"Buncombe County",America/New_York,828,NA,US,35.7,-82.63,3580 +28702,STANDARD,0,Almond,,,NC,"Graham County",America/New_York,828,NA,US,35.41,-83.61,350 +28704,STANDARD,0,Arden,,"Oak Park, Royal Pines, West Haven",NC,"Buncombe County",America/New_York,828,NA,US,35.46,-82.58,19900 +28705,STANDARD,0,Bakersville,,,NC,"Mitchell County",America/New_York,828,NA,US,36.01,-82.15,4710 +28707,"PO BOX",0,Balsam,,,NC,"Jackson County",America/New_York,828,NA,US,35.42,-83.08,455 +28708,STANDARD,0,"Balsam Grove",,,NC,"Transylvania County",America/New_York,828,NA,US,35.22,-82.87,460 +28709,STANDARD,0,Barnardsville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.77,-82.45,1790 +28710,"PO BOX",0,"Bat Cave",,,NC,"Henderson County",America/New_York,828,NA,US,35.45,-82.28,254 +28711,STANDARD,0,"Black Mountain","Black Mtn",,NC,"Buncombe County",America/New_York,828,NA,US,35.61,-82.33,11260 +28712,STANDARD,0,Brevard,,,NC,"Transylvania County",America/New_York,828,NA,US,35.23,-82.73,14800 +28713,STANDARD,0,"Bryson City",,"Alarka, Ela, Needmore",NC,"Swain County",America/New_York,828,NA,US,35.42,-83.44,7310 +28714,STANDARD,0,Burnsville,,,NC,"Yancey County",America/New_York,828,NA,US,35.91,-82.29,12580 +28715,STANDARD,0,Candler,"Biltmore Lake",,NC,"Buncombe County",America/New_York,828,NA,US,35.53,-82.69,23420 +28716,STANDARD,0,Canton,,,NC,"Haywood County",America/New_York,828,NA,US,35.54,-82.84,15020 +28717,STANDARD,0,Cashiers,,,NC,"Jackson County",America/New_York,828,NA,US,35.1,-83.09,2240 +28718,STANDARD,0,"Cedar Mountain","Cedar Mtn",,NC,"Transylvania County",America/New_York,828,NA,US,35.14,-82.64,530 +28719,STANDARD,0,Cherokee,,"Ocono Lufty",NC,"Jackson County",America/New_York,828,NA,US,35.47,-83.31,7670 +28720,"PO BOX",0,"Chimney Rock",,,NC,"Rutherford County",America/New_York,828,NA,US,35.45,-82.25,127 +28721,STANDARD,0,Clyde,,,NC,"Haywood County",America/New_York,828,NA,US,35.53,-82.91,8940 +28722,STANDARD,0,Columbus,,,NC,"Polk County",America/New_York,828,NA,US,35.24,-82.2,5360 +28723,STANDARD,0,Cullowhee,,"East Laport, Erastus, Norton, Speedwell",NC,"Jackson County",America/New_York,828,NA,US,35.31,-83.17,4710 +28724,"PO BOX",0,Dana,,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.37,2199 +28725,"PO BOX",0,Dillsboro,,,NC,"Jackson County",America/New_York,828,NA,US,35.37,-83.26,1039 +28726,STANDARD,0,"East Flat Rock","E Flat Rock",,NC,"Henderson County",America/New_York,828,NA,US,35.28,-82.41,2950 +28727,"PO BOX",0,Edneyville,,,NC,"Henderson County",America/New_York,828,NA,US,35.39,-82.32,1031 +28728,"PO BOX",0,Enka,,"Enka Village",NC,"Buncombe County",America/New_York,828,NA,US,35.56,-82.65,1484 +28729,STANDARD,0,Etowah,,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.6,3370 +28730,STANDARD,0,Fairview,,,NC,"Buncombe County",America/New_York,828,NA,US,35.52,-82.4,8670 +28731,STANDARD,0,"Flat Rock",,,NC,"Henderson County",America/New_York,828,NA,US,35.27,-82.44,7820 +28732,STANDARD,0,Fletcher,"Mills River","Carolina Hills",NC,"Henderson County",America/New_York,828,NA,US,35.43,-82.5,17290 +28733,STANDARD,0,"Fontana Dam",,,NC,"Graham County",America/New_York,828,NA,US,35.43,-83.81,64 +28734,STANDARD,0,Franklin,,"Burningtown, Cartoogechaye, Cowee, Cullasaja, East Franklin, Ellijay, Hickory Knoll, Higdonville, Iotla, Prentiss, Riverside, Union, Watauga",NC,"Macon County",America/New_York,828,NA,US,35.18,-83.38,22120 +28735,STANDARD,0,Gerton,,,NC,"Henderson County",America/New_York,828,NA,US,35.48,-82.35,230 +28736,STANDARD,0,Glenville,,,NC,"Jackson County",America/New_York,828,NA,US,35.19,-83.08,540 +28737,"PO BOX",0,Glenwood,Marion,,NC,"McDowell County",America/New_York,828,NA,US,35.6,-81.97,63 +28738,"PO BOX",0,Hazelwood,,,NC,"Haywood County",America/New_York,828,NA,US,35.47,-83,595 +28739,STANDARD,0,Hendersonville,"Hendersonvlle, Laurel Park",,NC,"Henderson County",America/New_York,828,NA,US,35.26,-82.55,17120 +28740,STANDARD,0,"Green Mountain","Green Mtn","Double Island, Green Mt, Greenmountain, Grn Mountain, Lower Pig Pen, Pleasant Gap, Relief, Upper Pig Pen",NC,"Yancey County",America/New_York,828,NA,US,36.09,-82.27,1800 +28741,STANDARD,0,Highlands,,,NC,"Macon County",America/New_York,828,NA,US,35.05,-83.19,3030 +28742,STANDARD,0,"Horse Shoe",,,NC,"Henderson County",America/New_York,828,NA,US,35.39,-82.64,2830 +28743,STANDARD,0,"Hot Springs",,"Bluff, Joe, Luck, Paint Rock, Spring Creek, Trust",NC,"Madison County",America/New_York,828,NA,US,35.8,-82.88,1520 +28744,"PO BOX",0,Franklin,,,NC,"Macon County",America/New_York,828,NA,US,35.18,-83.38,2031 +28745,STANDARD,0,"Lake Junaluska","Lk Junaluska",Assembly,NC,"Haywood County",America/New_York,828,NA,US,35.52,-82.97,1220 +28746,STANDARD,0,"Lake Lure",,,NC,"Rutherford County",America/New_York,828,NA,US,35.44,-82.2,2190 +28747,STANDARD,0,"Lake Toxaway",,,NC,"Transylvania County",America/New_York,828,NA,US,35.13,-82.93,1550 +28748,STANDARD,0,Leicester,,,NC,"Buncombe County",America/New_York,828,NA,US,35.65,-82.68,10860 +28749,"PO BOX",0,"Little Switzerland","Ltl Switzrlnd",,NC,"McDowell County",America/New_York,828,NA,US,35.84,-82.1,352 +28750,"PO BOX",0,Lynn,,,NC,"Polk County",America/New_York,828,NA,US,35.23,-82.25,354 +28751,STANDARD,0,"Maggie Valley",,,NC,"Haywood County",America/New_York,828,NA,US,35.51,-83.09,3380 +28752,STANDARD,0,Marion,,,NC,"McDowell County",America/New_York,828,NA,US,35.68,-82,23990 +28753,STANDARD,0,Marshall,,,NC,"Madison County",America/New_York,828,NA,US,35.79,-82.68,9080 +28754,STANDARD,0,"Mars Hill",,,NC,"Madison County",America/New_York,828,NA,US,35.82,-82.55,6510 +28755,"PO BOX",0,Micaville,,,NC,"Yancey County",America/New_York,828,NA,US,35.9,-82.21,661 +28756,STANDARD,0,"Mill Spring",,,NC,"Polk County",America/New_York,828,NA,US,35.29,-82.16,3470 +28757,"PO BOX",0,Montreat,,,NC,"Buncombe County",America/New_York,828,NA,US,35.65,-82.31,532 +28758,"PO BOX",0,"Mountain Home","Hendersonville, Hendersonvlle",,NC,"Henderson County",America/New_York,828,NA,US,35.36,-82.5,1617 +28759,STANDARD,0,"Mills River",,,NC,"Henderson County",America/New_York,828,NA,US,35.39,-82.57,6820 +28760,"PO BOX",0,Naples,,,NC,"Henderson County",America/New_York,828,NA,US,35.4,-82.47,570 +28761,STANDARD,0,Nebo,,,NC,"McDowell County",America/New_York,828,NA,US,35.71,-81.93,6680 +28762,STANDARD,0,"Old Fort",,,NC,"McDowell County",America/New_York,828,NA,US,35.63,-82.17,5780 +28763,STANDARD,0,Otto,,,NC,"Macon County",America/New_York,828,NA,US,35.06,-83.38,2290 +28765,"PO BOX",0,Penland,,,NC,"Mitchell County",America/New_York,828,NA,US,35.96,-82.12,128 +28766,STANDARD,0,Penrose,,,NC,"Transylvania County",America/New_York,828,NA,US,35.25,-82.62,1400 +28768,STANDARD,0,"Pisgah Forest",,,NC,"Transylvania County",America/New_York,828,NA,US,35.27,-82.67,5850 +28770,"PO BOX",0,Ridgecrest,,,NC,"Buncombe County",America/New_York,828,NA,US,35.59,-82.3,351 +28771,STANDARD,0,Robbinsville,"Lake Santeetlah, Lk Santeetlah, Tapoco",,NC,"Graham County",America/New_York,828,NA,US,35.32,-83.8,6490 +28772,STANDARD,0,Rosman,,,NC,"Transylvania County",America/New_York,828,NA,US,35.12,-82.83,1570 +28773,STANDARD,0,Saluda,,,NC,"Polk County",America/New_York,828,NA,US,35.23,-82.34,2710 +28774,STANDARD,0,Sapphire,,,NC,"Transylvania County",America/New_York,828,NA,US,35.1,-83,910 +28775,STANDARD,0,"Scaly Mountain","Scaly Mtn",,NC,"Macon County",America/New_York,828,NA,US,35.01,-83.31,480 +28776,"PO BOX",0,Skyland,,,NC,"Buncombe County",America/New_York,828,NA,US,35.48,-82.52,1104 +28777,STANDARD,0,"Spruce Pine",,,NC,"Mitchell County",America/New_York,828,NA,US,35.91,-82.06,7170 +28778,STANDARD,0,Swannanoa,,,NC,"Buncombe County",America/New_York,828,NA,US,35.6,-82.39,8530 +28779,STANDARD,0,Sylva,,,NC,"Jackson County",America/New_York,828,NA,US,35.37,-83.22,12400 +28781,STANDARD,0,Topton,Aquone,,NC,"Macon County",America/New_York,,NA,US,35.22,-83.64,650 +28782,STANDARD,0,Tryon,,,NC,"Polk County",America/New_York,828,NA,US,35.2,-82.23,4700 +28783,STANDARD,0,Tuckasegee,,,NC,"Jackson County",America/New_York,828,NA,US,35.27,-83.12,1120 +28784,"PO BOX",0,Tuxedo,,,NC,"Henderson County",America/New_York,828,NA,US,35.22,-82.42,209 +28785,STANDARD,0,Waynesville,,,NC,"Haywood County",America/New_York,828,NA,US,35.63,-83.02,6420 +28786,STANDARD,0,Waynesville,Hazelwood,,NC,"Haywood County",America/New_York,828,NA,US,35.48,-82.99,16960 +28787,STANDARD,0,Weaverville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.69,-82.55,19390 +28788,"PO BOX",0,Webster,,,NC,"Jackson County",America/New_York,828,NA,US,35.35,-83.21,776 +28789,STANDARD,0,Whittier,,,NC,"Jackson County",America/New_York,828,NA,US,35.43,-83.27,4910 +28790,STANDARD,0,Zirconia,,,NC,"Henderson County",America/New_York,828,NA,US,35.2,-82.48,2640 +28791,STANDARD,0,Hendersonville,Hendersonvlle,,NC,"Henderson County",America/New_York,828,NA,US,35.36,-82.51,12460 +28792,STANDARD,0,Hendersonville,Hendersonvlle,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.46,27100 +28793,"PO BOX",0,Hendersonville,Hendersonvlle,,NC,"Henderson County",America/New_York,828,NA,US,35.32,-82.46,2318 +28801,STANDARD,0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.59,-82.56,10200 +28802,"PO BOX",0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,1439 +28803,STANDARD,0,Asheville,"Biltmore Forest, Biltmore Frst",,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,27610 +28804,STANDARD,0,Asheville,Woodfin,,NC,"Buncombe County",America/New_York,828,NA,US,35.65,-82.56,18260 +28805,STANDARD,0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.63,-82.48,15340 +28806,STANDARD,0,Asheville,,"West Ashville",NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.61,35610 +28810,STANDARD,0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,0 +28813,"PO BOX",0,Asheville,,Biltmor,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,653 +28814,"PO BOX",0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,748 +28815,"PO BOX",0,Asheville,,,NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,1007 +28816,"PO BOX",0,Asheville,,"W Asheville",NC,"Buncombe County",America/New_York,828,NA,US,35.57,-82.54,1505 +28901,STANDARD,0,Andrews,,,NC,"Cherokee County",America/New_York,828,NA,US,35.19,-83.82,3990 +28902,STANDARD,0,Brasstown,,,NC,"Clay County",America/New_York,828,NA,US,35.02,-83.96,1150 +28903,"PO BOX",0,Culberson,,,NC,"Cherokee County",America/New_York,828,NA,US,34.99,-84.16,118 +28904,STANDARD,0,Hayesville,,,NC,"Clay County",America/New_York,828,NA,US,35.04,-83.81,7130 +28905,STANDARD,0,Marble,,,NC,"Cherokee County",America/New_York,828,NA,US,35.17,-83.92,2380 +28906,STANDARD,0,Murphy,,,NC,"Cherokee County",America/New_York,828,NA,US,35.09,-84.02,15360 +28909,STANDARD,0,Warne,,,NC,"Clay County",America/New_York,828,NA,US,34.99,-83.9,780 +29001,STANDARD,0,Alcolu,,,SC,"Clarendon County",America/New_York,803,NA,US,33.76,-80.15,1630 +29002,"PO BOX",0,Ballentine,,,SC,"Richland County",America/New_York,,NA,US,34.14,-81.06,218 +29003,STANDARD,0,Bamberg,,Midway,SC,"Bamberg County",America/New_York,803,NA,US,33.29,-81.03,4860 +29006,STANDARD,0,Batesburg,"Batesburg Leesville, Batsbrg Levil","Holtson Crossroads, Kneece, New Holland Crossroads, Samaria, Summerland",SC,"Lexington County",America/New_York,803,NA,US,33.9,-81.54,7770 +29009,STANDARD,0,Bethune,,,SC,"Kershaw County",America/New_York,843,NA,US,34.41,-80.34,1920 +29010,STANDARD,0,Bishopville,Wisacky,"Alcot, Ashland, Lucknow, Manville, Mccutchen Crossroads, Mechanicsville, Stokes Bridge",SC,"Lee County",America/New_York,803,NA,US,34.21,-80.24,8440 +29014,STANDARD,0,Blackstock,,"Cornwell, Douglass, Stover, Woodward",SC,"Chester County",America/New_York,,NA,US,34.55,-81.15,1420 +29015,STANDARD,0,Blair,,,SC,"Fairfield County",America/New_York,803,NA,US,34.49,-81.35,1240 +29016,STANDARD,0,Blythewood,,,SC,"Richland County",America/New_York,803,NA,US,34.21,-80.97,23970 +29018,STANDARD,0,Bowman,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.34,-80.68,2810 +29020,STANDARD,0,Camden,,"Antioch, Dusty Bend, Kirkland, Kirkwood, Red Hill, Shamokin",SC,"Kershaw County",America/New_York,803,NA,US,34.26,-80.61,19590 +29021,"PO BOX",0,Camden,,"Antioch, Dusty Bend, Kirkland, Kirkwood, Red Hill, Shamokin",SC,"Kershaw County",America/New_York,803,NA,US,34.56,-80.58,314 +29030,STANDARD,0,Cameron,"Lone Star",Creston,SC,"Calhoun County",America/New_York,803,NA,US,33.55,-80.71,1490 +29031,STANDARD,0,Carlisle,,"Leeds, Tuckertown",SC,"Union County",America/New_York,,NA,US,34.59,-81.46,970 +29032,STANDARD,0,Cassatt,,,SC,"Kershaw County",America/New_York,,NA,US,34.34,-80.47,3530 +29033,STANDARD,0,Cayce,"West Columbia","Cayce W Cola",SC,"Lexington County",America/New_York,803,NA,US,33.95,-81.06,9640 +29036,STANDARD,0,Chapin,,"Lake Murray",SC,"Lexington County",America/New_York,803,NA,US,34.16,-81.34,25440 +29037,STANDARD,0,Chappells,,Bigcreek,SC,"Newberry County",America/New_York,864,NA,US,34.18,-81.87,710 +29038,STANDARD,0,Cope,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.37,-81,2100 +29039,STANDARD,0,Cordova,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.43,-80.92,3040 +29040,STANDARD,0,Dalzell,,"Gaillard Crossroads, Woodrow",SC,"Sumter County",America/New_York,803,NA,US,34.03,-80.45,7810 +29041,"PO BOX",0,"Davis Station",,,SC,"Clarendon County",America/New_York,,NA,US,33.6,-80.22,169 +29042,STANDARD,0,Denmark,,,SC,"Bamberg County",America/New_York,803,NA,US,33.31,-81.13,3180 +29044,STANDARD,0,Eastover,"Mcentire Jngb","Congaree, Mcentire Air National Guard, Wateree",SC,"Richland County",America/New_York,803,NA,US,33.87,-80.69,4070 +29045,STANDARD,0,Elgin,,Pontiac,SC,"Kershaw County",America/New_York,803,NA,US,34.16,-80.79,24610 +29046,"PO BOX",0,Elliott,,,SC,"Lee County",America/New_York,803,NA,US,34.1,-80.15,312 +29047,STANDARD,0,Elloree,,Felderville,SC,"Orangeburg County",America/New_York,803,NA,US,33.52,-80.57,2720 +29048,STANDARD,0,Eutawville,,"Eutaw Springs",SC,"Orangeburg County",America/New_York,"843,803",NA,US,33.39,-80.34,3750 +29051,STANDARD,0,Gable,,,SC,"Sumter County",America/New_York,803,NA,US,33.86,-80.13,680 +29052,STANDARD,0,Gadsden,,Kingville,SC,"Richland County",America/New_York,803,NA,US,33.84,-80.74,1420 +29053,STANDARD,0,Gaston,,,SC,"Lexington County",America/New_York,803,NA,US,33.81,-81.1,15570 +29054,STANDARD,0,Gilbert,,,SC,"Lexington County",America/New_York,803,NA,US,33.92,-81.39,9710 +29055,STANDARD,0,"Great Falls",,Beckhamville,SC,"Chester County",America/New_York,803,NA,US,34.57,-80.9,3260 +29056,STANDARD,0,Greeleyville,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.57,-79.98,1650 +29058,STANDARD,0,"Heath Springs",,"Pleasant Hill, Stoneboro",SC,"Lancaster County",America/New_York,803,NA,US,34.59,-80.67,3880 +29059,STANDARD,0,"Holly Hill",,Bowyer,SC,"Orangeburg County",America/New_York,803,NA,US,33.32,-80.41,4750 +29061,STANDARD,0,Hopkins,,"Horrel Hill",SC,"Richland County",America/New_York,803,NA,US,33.88,-80.84,11930 +29062,"PO BOX",0,Horatio,,,SC,"Sumter County",America/New_York,803,NA,US,34,-80.61,206 +29063,STANDARD,0,Irmo,,,SC,"Richland County",America/New_York,,NA,US,34.09,-81.18,34750 +29065,STANDARD,0,Jenkinsville,Monticello,,SC,"Fairfield County",America/New_York,803,NA,US,34.25,-81.26,580 +29067,STANDARD,0,Kershaw,,"Abney, Spring Mills, Taxahaw, White Bluff",SC,"Lancaster County",America/New_York,803,NA,US,34.54,-80.58,7260 +29069,STANDARD,0,Lamar,,"Cypress Crossroads, Oats",SC,"Darlington County",America/New_York,843,NA,US,34.16,-80.06,4070 +29070,STANDARD,0,Leesville,"Batesburg Leesville, Batsbrg Levil","Delmar, Fairview Crossroads, Lake Murray Shores, Steedman, Summit",SC,"Lexington County",America/New_York,803,NA,US,33.91,-81.51,13550 +29071,"PO BOX",0,Lexington,,,SC,"Lexington County",America/New_York,803,NA,US,33.98,-81.22,1112 +29072,STANDARD,0,Lexington,,"Barr, Edmund, Macedon, Red Bank",SC,"Lexington County",America/New_York,803,NA,US,33.98,-81.22,59300 +29073,STANDARD,0,Lexington,,,SC,"Lexington County",America/New_York,803,NA,US,33.89,-81.24,42410 +29074,"PO BOX",0,"Liberty Hill",,,SC,"Kershaw County",America/New_York,,NA,US,34.47,-80.8,259 +29075,STANDARD,0,"Little Mountain","Little Mtn",,SC,"Newberry County",America/New_York,803,NA,US,34.19,-81.41,2780 +29078,STANDARD,0,Lugoff,,,SC,"Kershaw County",America/New_York,803,NA,US,34.22,-80.68,14880 +29079,"PO BOX",0,Lydia,,,SC,"Darlington County",America/New_York,843,NA,US,34.29,-80.11,477 +29080,STANDARD,0,Lynchburg,,"Atkins, Motbridge, Shiloh, South Lynchburg",SC,"Lee County",America/New_York,803,NA,US,34.05,-80.07,2250 +29081,STANDARD,0,Ehrhardt,,,SC,"Bamberg County",America/New_York,803,NA,US,33.09,-81.01,870 +29082,STANDARD,0,Lodge,,,SC,"Colleton County",America/New_York,843,NA,US,33.06,-80.95,450 +29101,STANDARD,0,"Mc Bee",,"Clyde, Mcbee, Robinson",SC,"Chesterfield County",America/New_York,843,NA,US,34.46,-80.25,2540 +29102,STANDARD,0,Manning,Paxville,"Bloomville, Foreston, Jordan, Wilson",SC,"Clarendon County",America/New_York,803,NA,US,33.69,-80.21,14030 +29104,STANDARD,0,Mayesville,"Saint Charles",Scottsville,SC,"Sumter County",America/New_York,803,NA,US,33.98,-80.2,1190 +29105,STANDARD,0,Monetta,,"Hibernia, Jones Crossroads, Watsonia",SC,"Aiken County",America/New_York,803,NA,US,33.84,-81.61,1330 +29107,STANDARD,0,Neeses,Livingston,,SC,"Orangeburg County",America/New_York,803,NA,US,33.53,-81.12,2260 +29108,STANDARD,0,Newberry,,,SC,"Newberry County",America/New_York,803,NA,US,34.27,-81.61,16060 +29111,STANDARD,0,"New Zion",,"Oak Dale, Oakdale, Union Crossroads, Workman",SC,"Clarendon County",America/New_York,,NA,US,33.77,-80.01,1230 +29112,STANDARD,0,North,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.61,-81.1,3590 +29113,STANDARD,0,Norway,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.44,-81.12,1150 +29114,STANDARD,0,Olanta,,"Mckenzie Crossroads",SC,"Florence County",America/New_York,843,NA,US,33.93,-79.93,1660 +29115,STANDARD,0,Orangeburg,,"Bolen Town, Jamison, Pecan Way Terrace",SC,"Orangeburg County",America/New_York,803,NA,US,33.49,-80.86,20080 +29116,"PO BOX",0,Orangeburg,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.49,-80.86,2147 +29117,UNIQUE,0,Orangeburg,,"Sc State University",SC,"Orangeburg County",America/New_York,803,NA,US,33.5,-80.85,221 +29118,STANDARD,0,Orangeburg,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.57,-80.89,12250 +29122,"PO BOX",0,Peak,,,SC,"Newberry County",America/New_York,,NA,US,34.24,-81.33,72 +29123,STANDARD,0,Pelion,,Thor,SC,"Lexington County",America/New_York,803,NA,US,33.78,-81.24,6080 +29125,STANDARD,0,Pinewood,Rimini,"Millford, Panola",SC,"Sumter County",America/New_York,803,NA,US,33.73,-80.46,2200 +29126,STANDARD,0,Pomaria,,Glympville,SC,"Newberry County",America/New_York,,NA,US,34.26,-81.41,2180 +29127,STANDARD,0,Prosperity,,"Slighs, Stockman, Stoney Hill",SC,"Newberry County",America/New_York,803,NA,US,34.21,-81.53,8130 +29128,STANDARD,0,Rembert,Borden,"Boykin, Dunkins Mill, Hagood, Pisgah, Spring Hill",SC,"Sumter County",America/New_York,,NA,US,34.09,-80.51,3540 +29129,STANDARD,0,"Ridge Spring",,,SC,"Aiken County",America/New_York,803,NA,US,33.84,-81.66,2520 +29130,STANDARD,0,Ridgeway,,"Longtown, Smallwood",SC,"Fairfield County",America/New_York,803,NA,US,34.3,-80.96,5340 +29132,"PO BOX",0,Rion,,,SC,"Fairfield County",America/New_York,803,NA,US,34.3,-81.16,59 +29133,STANDARD,0,Rowesville,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.37,-80.83,750 +29135,STANDARD,0,"Saint Matthews","Fort Motte, St Matthews","Hammond Crossroads, Singleton",SC,"Calhoun County",America/New_York,803,NA,US,33.66,-80.77,6750 +29137,STANDARD,0,Salley,Perry,"Berlin, Kitchings Mill",SC,"Aiken County",America/New_York,803,NA,US,33.56,-81.3,2040 +29138,STANDARD,0,Saluda,,"Emory, Fruit Hill, Richland Springs",SC,"Saluda County",America/New_York,864,NA,US,34,-81.77,8740 +29142,STANDARD,0,Santee,,Parlers,SC,"Orangeburg County",America/New_York,803,NA,US,33.48,-80.48,4000 +29143,"PO BOX",0,Sardinia,,,SC,"Clarendon County",America/New_York,,NA,US,33.77,-80.01,0 +29145,STANDARD,0,Silverstreet,,,SC,"Newberry County",America/New_York,,NA,US,34.21,-81.71,660 +29146,STANDARD,0,Springfield,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.49,-81.27,1290 +29147,"PO BOX",0,"State Park",,,SC,"Richland County",America/New_York,803,NA,US,34.09,-80.97,78 +29148,STANDARD,0,Summerton,,"Davis Crossroads, Goat Island Resort, St Paul",SC,"Clarendon County",America/New_York,803,NA,US,33.6,-80.35,4570 +29150,STANDARD,0,Sumter,Oswego,"Bon Air, Brogdon, Frens, Highway Four Forty One, Hoyt Heights, Stateburg",SC,"Sumter County",America/New_York,803,NA,US,33.94,-80.39,32190 +29151,"PO BOX",0,Sumter,,,SC,"Sumter County",America/New_York,803,NA,US,33.94,-80.39,2316 +29152,STANDARD,0,"Shaw AFB",,,SC,"Sumter County",America/New_York,803,NA,US,33.97,-80.45,2330 +29153,STANDARD,0,Sumter,,,SC,"Sumter County",America/New_York,803,NA,US,33.96,-80.31,12670 +29154,STANDARD,0,Sumter,,,SC,"Sumter County",America/New_York,803,NA,US,33.88,-80.44,26170 +29160,STANDARD,0,Swansea,,,SC,"Lexington County",America/New_York,803,NA,US,33.73,-81.1,6540 +29161,STANDARD,0,Timmonsville,,"Cartersville, Peniel Crossroads, Sardis",SC,"Florence County",America/New_York,843,NA,US,34.13,-79.94,8810 +29162,STANDARD,0,Turbeville,,,SC,"Clarendon County",America/New_York,843,NA,US,33.89,-80.01,2090 +29163,STANDARD,0,Vance,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.43,-80.42,1560 +29164,STANDARD,0,Wagener,,"Bethcar, H L Crossroads, New Holland, Rocky Springs, Seivern",SC,"Aiken County",America/New_York,803,NA,US,33.65,-81.36,3600 +29166,STANDARD,0,Ward,,,SC,"Saluda County",America/New_York,,NA,US,33.85,-81.73,680 +29168,STANDARD,0,Wedgefield,,,SC,"Sumter County",America/New_York,803,NA,US,33.89,-80.54,2670 +29169,STANDARD,0,"West Columbia",,"Cayce, Dixiana, Kathwood, Pineridge, Saluda Gardens, Saluda Terrace, South Congaree, Springdale, Westover Acres",SC,"Lexington County",America/New_York,803,NA,US,33.99,-81.08,16810 +29170,STANDARD,0,"West Columbia",,Cayce,SC,"Lexington County",America/New_York,803,NA,US,33.94,-81.15,19380 +29171,"PO BOX",0,"West Columbia",Cayce,,SC,"Lexington County",America/New_York,803,NA,US,33.99,-81.08,1117 +29172,STANDARD,0,"West Columbia",Cayce,,SC,"Lexington County",America/New_York,803,NA,US,33.91,-81.08,7660 +29175,STANDARD,0,Westville,,"De Kalb, Dekalb",SC,"Kershaw County",America/New_York,,NA,US,34.45,-80.58,260 +29177,"PO BOX",0,"White Rock",,,SC,"Richland County",America/New_York,,NA,US,34.14,-81.06,330 +29178,STANDARD,0,Whitmire,,,SC,"Newberry County",America/New_York,803,NA,US,34.5,-81.61,2450 +29180,STANDARD,0,Winnsboro,"White Oak","Greenbrier, Winnsboro Mills",SC,"Fairfield County",America/New_York,803,NA,US,34.37,-81.08,10510 +29201,STANDARD,0,Columbia,,"Market Center, Olympia, State Hospital",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,8300 +29202,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,33.99,-81.03,1631 +29203,STANDARD,0,Columbia,,"Bendale, Crafts Farrow, Crane Forest, Denny Terrace, Eau Claire, Fairfield Terrace, Farrow Terrace, Greenview, Haskell Heights, Hollywood Hills, Killian, Lincolnshire, Ridgewood, Stark Terrace",SC,"Richland County",America/New_York,803,NA,US,34.1,-81.04,29930 +29204,STANDARD,0,Columbia,,"Bayview, Edgewood",SC,"Richland County",America/New_York,803,NA,US,34.03,-81,13160 +29205,STANDARD,0,Columbia,,"Five Points",SC,"Richland County",America/New_York,803,NA,US,33.99,-81,16970 +29206,STANDARD,0,Columbia,,"Arcadia Lakes, Forest Acres, Forest Lake, Ravenwood, Sandwood",SC,"Richland County",America/New_York,803,NA,US,34.03,-80.96,18530 +29207,"PO BOX",0,Columbia,,"Fort Jackson",SC,"Richland County",America/New_York,803,NA,US,34.04,-80.85,467 +29208,UNIQUE,0,Columbia,,"University Of Sc, Usc",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,132 +29209,STANDARD,0,Columbia,,"Bluff Estates, Capitol View, Cedar Terrace, Eastmont, Galaxy, Hazelwood Acres, Leesburg, Mountain Brook, Twin Lake Hill",SC,"Richland County",America/New_York,803,NA,US,33.93,-80.95,28920 +29210,STANDARD,0,Columbia,,"Dutch Fork",SC,"Richland County",America/New_York,803,NA,US,34.05,-81.11,27230 +29211,"PO BOX",0,Columbia,,Capitol,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,416 +29212,STANDARD,0,Columbia,,Harbison,SC,"Lexington County",America/New_York,803,NA,US,34.08,-81.2,26330 +29214,UNIQUE,0,Columbia,,"Sc Tax Comm",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29215,UNIQUE,0,Columbia,,"Bell South",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29216,UNIQUE,0,Columbia,,"Sc Dept Of Motor Vehicles",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29217,UNIQUE,0,Columbia,,"City Of Columbia",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29218,UNIQUE,0,Columbia,,"Sc Electric And Gas",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29219,UNIQUE,0,Columbia,,"Blue Cross Blue Shield Of Sc",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,14 +29220,UNIQUE,0,Columbia,,"Baptist Medical Center",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,30 +29221,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,961 +29222,STANDARD,0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29223,STANDARD,0,Columbia,,"North Pointe, Northeast",SC,"Richland County",America/New_York,803,NA,US,34.09,-80.92,44200 +29224,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,974 +29225,UNIQUE,0,Columbia,,"Univ Of Sc Students Mail",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,97 +29226,UNIQUE,0,Columbia,,"Wells Fargo",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,26 +29227,UNIQUE,0,Columbia,,"Wells Fargo",SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29228,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,157 +29229,STANDARD,0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34.14,-80.89,48540 +29230,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,677 +29240,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,359 +29250,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,417 +29260,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,442 +29290,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,611 +29292,"PO BOX",0,Columbia,,,SC,"Richland County",America/New_York,803,NA,US,34,-81.03,0 +29301,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.01,28230 +29302,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.88,-81.84,14620 +29303,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,35,-81.96,17470 +29304,"PO BOX",0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,2180 +29305,"PO BOX",0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,518 +29306,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,12780 +29307,STANDARD,0,Spartanburg,,Sptbg,SC,"Spartanburg County",America/New_York,864,NA,US,34.98,-81.83,15550 +29316,STANDARD,0,"Boiling Springs","Boiling Spgs, Spartanburg",,SC,"Spartanburg County",America/New_York,864,NA,US,35.04,-81.98,26240 +29318,STANDARD,1,"Boiling Springs","Boiling Spgs",Spartanburg,SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,55 +29319,UNIQUE,0,Spartanburg,,"Dennys Corporation, Sptbg",SC,"Spartanburg County",America/New_York,864,NA,US,34.94,-81.92,0 +29320,"PO BOX",0,Arcadia,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.96,-81.99,644 +29321,STANDARD,0,Buffalo,,,SC,"Union County",America/New_York,864,NA,US,34.72,-81.68,2080 +29322,STANDARD,0,Campobello,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.11,-82.14,8070 +29323,STANDARD,0,Chesnee,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.14,-81.86,13740 +29324,"PO BOX",0,Clifton,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.98,-81.83,250 +29325,STANDARD,0,Clinton,,,SC,"Laurens County",America/New_York,864,NA,US,34.47,-81.86,11020 +29329,"PO BOX",0,Converse,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.99,-81.84,406 +29330,STANDARD,0,Cowpens,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.01,-81.8,6910 +29331,"PO BOX",0,"Cross Anchor",,,SC,"Spartanburg County",America/New_York,864,NA,US,34.65,-81.84,248 +29332,STANDARD,0,"Cross Hill",,,SC,"Laurens County",America/New_York,864,NA,US,34.3,-81.98,2040 +29333,"PO BOX",0,Drayton,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.97,-81.91,583 +29334,STANDARD,0,Duncan,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.13,14110 +29335,STANDARD,0,Enoree,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.65,-81.96,3730 +29336,"PO BOX",0,Fairforest,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-81.99,699 +29338,"PO BOX",0,Fingerville,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.14,-82,192 +29340,STANDARD,0,Gaffney,,,SC,"Cherokee County",America/New_York,864,NA,US,35.07,-81.65,16000 +29341,STANDARD,0,Gaffney,,,SC,"Cherokee County",America/New_York,864,NA,US,35.11,-81.71,16540 +29342,"PO BOX",0,Gaffney,,,SC,"Cherokee County",America/New_York,864,NA,US,35.07,-81.65,1747 +29346,"PO BOX",0,Glendale,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-81.84,347 +29348,"PO BOX",0,Gramling,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.07,-82.16,293 +29349,STANDARD,0,Inman,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.05,-82.09,31220 +29351,STANDARD,0,Joanna,,,SC,"Laurens County",America/New_York,864,NA,US,34.41,-81.81,1160 +29353,STANDARD,0,Jonesville,,,SC,"Union County",America/New_York,864,NA,US,34.83,-81.67,3220 +29355,STANDARD,0,Kinards,,,SC,"Laurens County",America/New_York,,NA,US,34.29,-81.83,620 +29356,STANDARD,0,Landrum,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.17,-82.18,7400 +29360,STANDARD,0,Laurens,,,SC,"Laurens County",America/New_York,864,NA,US,34.5,-82.02,16920 +29364,"PO BOX",0,Lockhart,,,SC,"Union County",America/New_York,864,NA,US,34.79,-81.46,569 +29365,STANDARD,0,Lyman,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-82.12,11980 +29368,"PO BOX",0,Mayo,,,SC,"Spartanburg County",America/New_York,864,NA,US,35.08,-81.86,917 +29369,STANDARD,0,Moore,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.87,-82.02,14650 +29370,STANDARD,0,Mountville,,,SC,"Laurens County",America/New_York,864,NA,US,34.33,-81.95,820 +29372,STANDARD,0,Pacolet,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.89,-81.76,3630 +29373,"PO BOX",0,"Pacolet Mills",,,SC,"Spartanburg County",America/New_York,864,NA,US,34.92,-81.75,539 +29374,STANDARD,0,Pauline,"Glenn Springs",,SC,"Spartanburg County",America/New_York,,NA,US,34.83,-81.87,3180 +29375,"PO BOX",0,Reidville,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.86,-82.11,446 +29376,STANDARD,0,Roebuck,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.87,-81.96,7230 +29377,"PO BOX",0,Startex,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.09,707 +29378,"PO BOX",0,Una,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.97,-81.97,1394 +29379,STANDARD,0,Union,,,SC,"Union County",America/New_York,864,NA,US,34.72,-81.62,13820 +29384,STANDARD,0,Waterloo,,,SC,"Laurens County",America/New_York,864,NA,US,34.35,-82.05,3260 +29385,STANDARD,0,Wellford,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-82.09,7360 +29386,"PO BOX",0,"White Stone",,,SC,"Spartanburg County",America/New_York,864,NA,US,34.95,-81.85,133 +29388,STANDARD,0,Woodruff,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.74,-82.03,13550 +29390,UNIQUE,1,Duncan,"Bmg Columbia Hse Video Club",,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.14,0 +29391,UNIQUE,1,Duncan,"Bmg Columbia House Acs",,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.14,0 +29395,UNIQUE,0,Jonesville,,"Disney Direct Marketing",SC,"Union County",America/New_York,864,NA,US,34.84,-81.68,0 +29401,STANDARD,0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.93,5720 +29402,"PO BOX",0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,626 +29403,STANDARD,0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.81,-79.94,13520 +29404,STANDARD,0,"Charleston AFB","Charleston, Chas AFB, Joint Base Charleston, Jt Base Chas","Chas, N Charleston, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.9,-80.06,1910 +29405,STANDARD,0,"North Charleston","Charleston, N Charleston","Chas, Chas Hgts, No Chas, Pinehaven",SC,"Charleston County",America/New_York,843,NA,US,32.86,-79.98,19460 +29406,STANDARD,0,Charleston,"N Charleston, North Charleston","Chas, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.94,-80.04,22430 +29407,STANDARD,0,Charleston,,"Chas, Saint Andrews, St Andrews",SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,29890 +29409,UNIQUE,0,Charleston,,"Chas, The Citadel",SC,"Charleston County",America/New_York,843,NA,US,32.8,-79.96,227 +29410,STANDARD,0,Hanahan,"Charleston, N Charleston, North Charleston",Chas,SC,"Berkeley County",America/New_York,843,NA,US,32.91,-80.01,17030 +29412,STANDARD,0,Charleston,,"Chas, James Island",SC,"Charleston County",America/New_York,843,NA,US,32.71,-79.95,34530 +29413,"PO BOX",0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,962 +29414,STANDARD,0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.84,-80.09,39010 +29415,"PO BOX",0,"North Charleston","Charleston, N Charleston",Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,802 +29416,"PO BOX",0,Charleston,,,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,501 +29417,"PO BOX",0,Charleston,,Chas,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,941 +29418,STANDARD,0,"North Charleston","Charleston, N Charleston","Ch Hgts, Charleston Heights, Charleston Hts, Chas, Chas Hgts, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.91,-80.09,19970 +29419,"PO BOX",0,"North Charleston","Charleston, N Charleston","Chas, No Chas",SC,"Charleston County",America/New_York,843,NA,US,32.93,-80.1,1139 +29420,STANDARD,0,"North Charleston","Charleston, N Charleston","Chas, No Chas",SC,"Dorchester County",America/New_York,843,NA,US,32.93,-80.1,20650 +29422,"PO BOX",0,Charleston,,,SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,758 +29423,"PO BOX",0,Charleston,"N Charleston, North Charleston",Chas,SC,"Charleston County",America/New_York,843,NA,US,32.98,-80.07,818 +29424,UNIQUE,0,Charleston,,"Chas, The College Of Charleston",SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.94,64 +29425,UNIQUE,0,Charleston,,"Chas, Medical University Of Sc",SC,"Charleston County",America/New_York,843,NA,US,32.78,-79.99,0 +29426,STANDARD,0,"Adams Run",Jericho,Osborn,SC,"Charleston County",America/New_York,,NA,US,32.8,-80.37,1380 +29429,STANDARD,0,Awendaw,"Mount Pleasant, Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,33.03,-79.61,3710 +29430,"PO BOX",1,Bethera,"Moncks Corner",,SC,"Berkeley County",America/New_York,843,NA,US,33.2,-79.78,0 +29431,STANDARD,0,Bonneau,,,SC,"Berkeley County",America/New_York,843,NA,US,33.3,-79.95,5360 +29432,STANDARD,0,Branchville,,,SC,"Orangeburg County",America/New_York,803,NA,US,33.25,-80.81,2100 +29433,"PO BOX",0,Canadys,,,SC,"Colleton County",America/New_York,843,NA,US,33.05,-80.62,49 +29434,STANDARD,0,Cordesville,,,SC,"Berkeley County",America/New_York,843,NA,US,33.13,-79.88,470 +29435,STANDARD,0,Cottageville,,,SC,"Colleton County",America/New_York,843,NA,US,32.93,-80.47,3280 +29436,STANDARD,0,Cross,,,SC,"Berkeley County",America/New_York,843,NA,US,33.32,-80.14,3440 +29437,STANDARD,0,Dorchester,,,SC,"Dorchester County",America/New_York,843,NA,US,33.13,-80.39,1920 +29438,STANDARD,0,"Edisto Island",Edisto,"Edisto Beach",SC,"Charleston County",America/New_York,843,NA,US,32.56,-80.28,2460 +29439,"PO BOX",0,"Folly Beach",,,SC,"Charleston County",America/New_York,843,NA,US,32.65,-79.95,1979 +29440,STANDARD,0,Georgetown,,Maryville,SC,"Georgetown County",America/New_York,843,NA,US,33.36,-79.29,21740 +29442,"PO BOX",0,Georgetown,,,SC,"Georgetown County",America/New_York,843,NA,US,33.36,-79.29,2591 +29445,STANDARD,0,"Goose Creek",,,SC,"Berkeley County",America/New_York,843,NA,US,32.98,-79.99,51940 +29446,STANDARD,0,"Green Pond",Greenpond,,SC,"Colleton County",America/New_York,843,NA,US,32.73,-80.61,850 +29447,"PO BOX",0,Grover,,,SC,"Dorchester County",America/New_York,843,NA,US,33.1,-80.59,63 +29448,STANDARD,0,Harleyville,,,SC,"Dorchester County",America/New_York,843,NA,US,33.21,-80.44,2010 +29449,STANDARD,0,Hollywood,"Meggett, Yonges Island",Rantowels,SC,"Charleston County",America/New_York,843,NA,US,32.75,-80.2,7090 +29450,STANDARD,0,Huger,,,SC,"Berkeley County",America/New_York,843,NA,US,33.09,-79.8,2760 +29451,STANDARD,0,"Isle Of Palms","Dewees Island",,SC,"Charleston County",America/New_York,843,NA,US,32.8,-79.75,4280 +29452,"PO BOX",0,Jacksonboro,,,SC,"Colleton County",America/New_York,843,NA,US,32.77,-80.45,451 +29453,STANDARD,0,Jamestown,Shulerville,,SC,"Berkeley County",America/New_York,843,NA,US,33.28,-79.69,970 +29455,STANDARD,0,"Johns Island","Kiawah Island, Seabrook Isl, Seabrook Island",,SC,"Charleston County",America/New_York,843,NA,US,32.72,-80.07,23600 +29456,STANDARD,0,Ladson,,"College Park",SC,"Dorchester County",America/New_York,843,NA,US,33,-80.1,31030 +29457,"PO BOX",0,"Johns Island",,,SC,"Charleston County",America/New_York,843,NA,US,32.72,-80.07,1005 +29458,STANDARD,0,"Mc Clellanville",Mcclellanvle,Mcclellanville,SC,"Charleston County",America/New_York,843,NA,US,33.08,-79.46,2080 +29461,STANDARD,0,"Moncks Corner",,,SC,"Berkeley County",America/New_York,843,NA,US,33.19,-79.99,36210 +29464,STANDARD,0,"Mount Pleasant","Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,32.82,-79.86,45370 +29465,"PO BOX",0,"Mount Pleasant","Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,32.82,-79.86,1175 +29466,STANDARD,0,"Mount Pleasant","Mt Pleasant",,SC,"Charleston County",America/New_York,843,NA,US,32.88,-79.79,39500 +29468,STANDARD,0,Pineville,,,SC,"Berkeley County",America/New_York,843,NA,US,33.42,-80.02,1420 +29469,STANDARD,0,Pinopolis,,,SC,"Berkeley County",America/New_York,843,NA,US,33.26,-80.06,780 +29470,STANDARD,0,Ravenel,,,SC,"Charleston County",America/New_York,843,NA,US,32.77,-80.22,3910 +29471,STANDARD,0,Reevesville,,,SC,"Dorchester County",America/New_York,843,NA,US,33.2,-80.64,1290 +29472,STANDARD,0,Ridgeville,,,SC,"Dorchester County",America/New_York,,NA,US,33.08,-80.3,7580 +29474,STANDARD,0,"Round O",,,SC,"Colleton County",America/New_York,843,NA,US,32.93,-80.54,1850 +29475,STANDARD,0,Ruffin,,,SC,"Colleton County",America/New_York,843,NA,US,33,-80.81,2190 +29476,"PO BOX",0,Russellville,,,SC,"Berkeley County",America/New_York,843,NA,US,33.39,-79.97,157 +29477,STANDARD,0,"Saint George",,"St George",SC,"Dorchester County",America/New_York,843,NA,US,33.18,-80.58,5310 +29479,STANDARD,0,"Saint Stephen",Alvin,,SC,"Berkeley County",America/New_York,843,NA,US,33.4,-79.92,5290 +29481,STANDARD,0,Smoaks,,,SC,"Colleton County",America/New_York,843,NA,US,33.08,-80.81,1370 +29482,STANDARD,0,"Sullivans Island","Sullivans Is",,SC,"Charleston County",America/New_York,843,NA,US,32.76,-79.85,1850 +29483,STANDARD,0,Summerville,Knightsville,,SC,"Dorchester County",America/New_York,843,NA,US,33.05,-80.19,49760 +29484,"PO BOX",0,Summerville,,Summ,SC,"Dorchester County",America/New_York,843,NA,US,33,-80.17,2060 +29485,STANDARD,0,Summerville,"Ladson, Lincolnville",Summ,SC,"Dorchester County",America/New_York,843,NA,US,33,-80.17,51600 +29486,STANDARD,0,Summerville,,"Carnes Crossroads, Carnes Xrds",SC,"Berkeley County",America/New_York,,NA,US,33.02,-80.18,25250 +29487,STANDARD,0,"Wadmalaw Island","Wadmalaw Is",,SC,"Charleston County",America/New_York,843,NA,US,32.68,-80.16,2280 +29488,STANDARD,0,Walterboro,Ritter,,SC,"Colleton County",America/New_York,843,NA,US,32.9,-80.67,18370 +29492,STANDARD,0,Charleston,"Cainhoy, Daniel Island, Wando",,SC,"Berkeley County",America/New_York,843,NA,US,32.9,-79.91,17340 +29493,"PO BOX",0,Williams,,,SC,"Colleton County",America/New_York,843,NA,US,33.03,-80.84,165 +29501,STANDARD,0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,38910 +29502,"PO BOX",0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,1833 +29503,"PO BOX",0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,876 +29504,"PO BOX",0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.18,-79.78,1095 +29505,STANDARD,0,Florence,,,SC,"Florence County",America/New_York,843,NA,US,34.13,-79.69,21420 +29506,STANDARD,0,Florence,Quinby,,SC,"Florence County",America/New_York,843,NA,US,34.21,-79.65,14830 +29510,STANDARD,0,Andrews,,,SC,"Georgetown County",America/New_York,843,NA,US,33.44,-79.56,8630 +29511,STANDARD,0,Aynor,,,SC,"Horry County",America/New_York,843,NA,US,33.99,-79.2,4850 +29512,STANDARD,0,Bennettsville,,,SC,"Marlboro County",America/New_York,843,NA,US,34.63,-79.68,12580 +29516,STANDARD,0,Blenheim,,,SC,"Marlboro County",America/New_York,843,NA,US,34.51,-79.65,620 +29518,STANDARD,0,Cades,,Hebron,SC,"Williamsburg County",America/New_York,843,NA,US,33.79,-79.85,970 +29519,"PO BOX",0,Centenary,,,SC,"Marion County",America/New_York,843,NA,US,34.03,-79.35,373 +29520,STANDARD,0,Cheraw,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.69,-79.89,11030 +29525,STANDARD,0,Clio,,,SC,"Marlboro County",America/New_York,843,NA,US,34.57,-79.54,1640 +29526,STANDARD,0,Conway,,,SC,"Horry County",America/New_York,843,NA,US,33.83,-79.04,37020 +29527,STANDARD,0,Conway,Bucksport,,SC,"Horry County",America/New_York,843,NA,US,33.79,-79.15,21210 +29528,"PO BOX",0,Conway,,,SC,"Horry County",America/New_York,843,NA,US,33.83,-79.04,1759 +29530,STANDARD,0,Coward,,,SC,"Florence County",America/New_York,843,NA,US,33.97,-79.74,2310 +29532,STANDARD,0,Darlington,,,SC,"Darlington County",America/New_York,843,NA,US,34.29,-79.87,15550 +29536,STANDARD,0,Dillon,"Floyd Dale","Floyd Dl",SC,"Dillon County",America/New_York,843,NA,US,34.42,-79.36,13120 +29540,STANDARD,0,Darlington,,,SC,"Darlington County",America/New_York,843,NA,US,34.38,-79.85,4770 +29541,STANDARD,0,Effingham,,,SC,"Florence County",America/New_York,843,NA,US,34.06,-79.74,7850 +29543,STANDARD,0,Fork,,,SC,"Dillon County",America/New_York,843,NA,US,34.28,-79.27,410 +29544,STANDARD,0,"Galivants Ferry","Aynor, Galivants Fry",,SC,"Horry County",America/New_York,843,NA,US,34.05,-79.24,5440 +29545,STANDARD,0,"Green Sea",,,SC,"Horry County",America/New_York,843,NA,US,34.16,-78.97,1390 +29546,STANDARD,0,Gresham,"Brittons Neck",,SC,"Marion County",America/New_York,843,NA,US,33.93,-79.41,1910 +29547,STANDARD,0,Hamer,"S Of Border, South Of The Border",,SC,"Dillon County",America/New_York,843,NA,US,34.5,-79.33,2270 +29550,STANDARD,0,Hartsville,,,SC,"Darlington County",America/New_York,843,NA,US,34.36,-80.08,24690 +29551,"PO BOX",0,Hartsville,,,SC,"Darlington County",America/New_York,843,NA,US,34.36,-80.08,2034 +29554,STANDARD,0,Hemingway,,Stuckey,SC,"Williamsburg County",America/New_York,843,NA,US,33.75,-79.44,7020 +29555,STANDARD,0,Johnsonville,Poston,,SC,"Florence County",America/New_York,843,NA,US,33.81,-79.44,4940 +29556,STANDARD,0,Kingstree,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.66,-79.82,9300 +29560,STANDARD,0,"Lake City",,,SC,"Florence County",America/New_York,843,NA,US,33.86,-79.75,10450 +29563,STANDARD,0,"Lake View",,,SC,"Dillon County",America/New_York,843,NA,US,34.34,-79.16,2010 +29564,STANDARD,0,Lane,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.52,-79.88,740 +29565,STANDARD,0,Latta,,,SC,"Dillon County",America/New_York,843,NA,US,34.33,-79.43,5590 +29566,STANDARD,0,"Little River",,,SC,"Horry County",America/New_York,843,NA,US,33.87,-78.63,18480 +29567,STANDARD,0,"Little Rock",,,SC,"Dillon County",America/New_York,843,NA,US,34.56,-79.43,630 +29568,STANDARD,0,Longs,,,SC,"Horry County",America/New_York,843,NA,US,33.93,-78.73,13520 +29569,STANDARD,0,Loris,,,SC,"Horry County",America/New_York,843,NA,US,34.05,-78.89,14720 +29570,STANDARD,0,"Mc Coll",,Mccoll,SC,"Marlboro County",America/New_York,843,NA,US,34.66,-79.54,2980 +29571,STANDARD,0,Marion,,,SC,"Marion County",America/New_York,843,NA,US,34.17,-79.4,12040 +29572,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.77,-78.78,9730 +29573,"PO BOX",1,Minturn,,,SC,"Dillon County",America/New_York,843,NA,US,34.51,-79.47,92 +29574,STANDARD,0,Mullins,,,SC,"Marion County",America/New_York,843,NA,US,34.2,-79.25,8480 +29575,STANDARD,0,"Myrtle Beach","Surfside Bch, Surfside Beach",Surfside,SC,"Horry County",America/New_York,843,NA,US,33.63,-78.97,15880 +29576,STANDARD,0,"Murrells Inlet","Murrells Inlt","Garden City, Garden City Beach",SC,"Horry County",America/New_York,843,NA,US,33.55,-79.05,28360 +29577,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.69,-78.89,28000 +29578,"PO BOX",0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.69,-78.89,2789 +29579,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.75,-78.92,43590 +29580,STANDARD,0,Nesmith,,,SC,"Williamsburg County",America/New_York,843,NA,US,33.65,-79.51,910 +29581,STANDARD,0,Nichols,,,SC,"Horry County",America/New_York,843,NA,US,34.23,-79.14,3250 +29582,STANDARD,0,"North Myrtle Beach","Atlantic Bch, Atlantic Beach, Cherry Grove, Cherry Grove Beach, N Myrtle Bch, Ocean Drive","Crescent Beach, N Myrtle Beach, Ocean Dr Beach, Ocean Drive Beach",SC,"Horry County",America/New_York,843,NA,US,33.82,-78.67,15880 +29583,STANDARD,0,Pamplico,,,SC,"Florence County",America/New_York,843,NA,US,33.99,-79.56,3960 +29584,STANDARD,0,Patrick,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.57,-80.04,1810 +29585,STANDARD,0,"Pawleys Island","Litchfield, N Litchfield, Pawleys Isl","Pawleys Is",SC,"Georgetown County",America/New_York,843,NA,US,33.52,-79.14,15430 +29587,"PO BOX",0,"Myrtle Beach","Surfside Bch, Surfside Beach",,SC,"Horry County",America/New_York,843,NA,US,33.69,-78.89,1450 +29588,STANDARD,0,"Myrtle Beach",,,SC,"Horry County",America/New_York,843,NA,US,33.63,-79.02,41460 +29589,"PO BOX",0,Rains,,,SC,"Marion County",America/New_York,843,NA,US,34.09,-79.31,459 +29590,STANDARD,0,Salters,Trio,,SC,"Williamsburg County",America/New_York,843,NA,US,33.59,-79.85,1730 +29591,STANDARD,0,Scranton,,,SC,"Florence County",America/New_York,843,NA,US,33.91,-79.74,3730 +29592,STANDARD,0,Sellers,,,SC,"Dillon County",America/New_York,843,NA,US,34.28,-79.47,870 +29593,STANDARD,0,"Society Hill",,,SC,"Darlington County",America/New_York,843,NA,US,34.5,-79.85,1440 +29594,"PO BOX",0,Tatum,,,SC,"Marlboro County",America/New_York,843,NA,US,34.64,-79.58,226 +29596,STANDARD,0,Wallace,,,SC,"Marlboro County",America/New_York,843,NA,US,34.72,-79.84,1790 +29597,"PO BOX",0,"North Myrtle Beach","N Myrtle Bch",,SC,"Horry County",America/New_York,843,NA,US,33.82,-78.67,1107 +29598,"PO BOX",0,"North Myrtle Beach","N Myrtle Bch",,SC,"Horry County",America/New_York,843,NA,US,33.82,-78.67,528 +29601,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.85,-82.4,9000 +29602,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,1004 +29603,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,139 +29604,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,659 +29605,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.77,-82.38,30830 +29606,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,1115 +29607,STANDARD,0,Greenville,,"Batesville, Gville",SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,36610 +29608,"PO BOX",0,Greenville,,"Gville, Park Place",SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,805 +29609,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.39,26000 +29610,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,762 +29611,STANDARD,0,Greenville,Powdersville,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.46,24860 +29612,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,68 +29613,UNIQUE,0,Greenville,,"Furman University, Gville",SC,"Greenville County",America/New_York,864,NA,US,34.92,-82.44,64 +29614,UNIQUE,0,Greenville,,"Bob Jones University, Gville",SC,"Greenville County",America/New_York,864,NA,US,34.87,-82.36,368 +29615,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.86,-82.3,33490 +29616,"PO BOX",0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.83,-82.37,752 +29617,STANDARD,0,Greenville,,Gville,SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.47,22210 +29620,STANDARD,0,Abbeville,,,SC,"Abbeville County",America/New_York,864,NA,US,34.17,-82.37,10660 +29621,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.51,-82.64,36900 +29622,"PO BOX",0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.51,-82.64,2111 +29623,"PO BOX",0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.51,-82.64,397 +29624,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.44,-82.62,11210 +29625,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.56,-82.76,23310 +29626,STANDARD,0,Anderson,,And,SC,"Anderson County",America/New_York,864,NA,US,34.46,-82.76,10920 +29627,STANDARD,0,Belton,,,SC,"Anderson County",America/New_York,864,NA,US,34.52,-82.49,15500 +29628,STANDARD,0,"Calhoun Falls",,,SC,"Abbeville County",America/New_York,864,NA,US,34.09,-82.59,1810 +29630,STANDARD,0,Central,,,SC,"Pickens County",America/New_York,864,NA,US,34.72,-82.78,10250 +29631,STANDARD,0,Clemson,,,SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.81,8120 +29632,UNIQUE,0,Clemson,,"Clemson University",SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.81,103 +29633,"PO BOX",0,Clemson,,,SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.81,763 +29634,UNIQUE,0,Clemson,,"Clemson University",SC,"Pickens County",America/New_York,864,NA,US,34.68,-82.84,34 +29635,STANDARD,0,Cleveland,,,SC,"Greenville County",America/New_York,864,NA,US,35.08,-82.63,1220 +29636,"PO BOX",0,Conestee,,,SC,"Greenville County",America/New_York,864,NA,US,34.78,-82.4,441 +29638,STANDARD,0,Donalds,"Shoals Jct, Shoals Junction",,SC,"Abbeville County",America/New_York,864,NA,US,34.37,-82.34,2300 +29639,STANDARD,0,"Due West",,,SC,"Abbeville County",America/New_York,864,NA,US,34.33,-82.38,1080 +29640,STANDARD,0,Easley,,,SC,"Pickens County",America/New_York,864,NA,US,34.88,-82.58,26080 +29641,"PO BOX",0,Easley,,,SC,"Pickens County",America/New_York,864,NA,US,34.82,-82.58,1757 +29642,STANDARD,0,Easley,Powdersville,,SC,"Pickens County",America/New_York,864,NA,US,34.82,-82.58,31740 +29643,STANDARD,0,"Fair Play",,,SC,"Oconee County",America/New_York,864,NA,US,34.51,-82.98,2560 +29644,STANDARD,0,"Fountain Inn",,,SC,"Greenville County",America/New_York,864,NA,US,34.69,-82.2,18810 +29645,STANDARD,0,"Gray Court",,Ora,SC,"Laurens County",America/New_York,864,NA,US,34.6,-82.11,8830 +29646,STANDARD,0,Greenwood,,Gwd,SC,"Greenwood County",America/New_York,864,NA,US,34.19,-82.15,20940 +29647,UNIQUE,0,Greenwood,,"Gwd, Park Seed Co",SC,"Greenwood County",America/New_York,864,NA,US,34.19,-82.15,0 +29648,"PO BOX",0,Greenwood,,Gwd,SC,"Greenwood County",America/New_York,864,NA,US,34.19,-82.15,1182 +29649,STANDARD,0,Greenwood,,Gwd,SC,"Greenwood County",America/New_York,864,NA,US,34.24,-82.15,21770 +29650,STANDARD,0,Greer,,,SC,"Greenville County",America/New_York,864,NA,US,34.9,-82.26,34280 +29651,STANDARD,0,Greer,Duncan,,SC,"Greenville County",America/New_York,864,NA,US,34.93,-82.23,44010 +29652,"PO BOX",0,Greer,,,SC,"Spartanburg County",America/New_York,864,NA,US,34.93,-82.23,1385 +29653,STANDARD,0,Hodges,,,SC,"Greenwood County",America/New_York,864,NA,US,34.28,-82.24,4050 +29654,STANDARD,0,"Honea Path",,,SC,"Anderson County",America/New_York,864,NA,US,34.44,-82.39,8430 +29655,STANDARD,0,Iva,,,SC,"Anderson County",America/New_York,864,NA,US,34.3,-82.66,5850 +29656,"PO BOX",0,"La France",,,SC,"Anderson County",America/New_York,864,NA,US,34.62,-82.73,392 +29657,STANDARD,0,Liberty,,,SC,"Pickens County",America/New_York,864,NA,US,34.79,-82.69,12950 +29658,STANDARD,0,"Long Creek",,,SC,"Oconee County",America/New_York,864,NA,US,34.77,-83.25,290 +29659,"PO BOX",0,Lowndesville,,,SC,"Abbeville County",America/New_York,864,NA,US,34.21,-82.64,245 +29661,STANDARD,0,Marietta,,,SC,"Greenville County",America/New_York,,NA,US,35.03,-82.49,4610 +29662,STANDARD,0,Mauldin,,,SC,"Greenville County",America/New_York,864,NA,US,34.78,-82.3,13440 +29664,STANDARD,0,"Mountain Rest",,,SC,"Oconee County",America/New_York,864,NA,US,34.86,-83.15,1320 +29665,"PO BOX",0,Newry,,,SC,"Oconee County",America/New_York,864,NA,US,34.73,-82.91,158 +29666,STANDARD,0,"Ninety Six",,,SC,"Greenwood County",America/New_York,864,NA,US,34.17,-82.02,5740 +29667,STANDARD,0,Norris,Cateechee,,SC,"Pickens County",America/New_York,864,NA,US,34.76,-82.75,350 +29669,STANDARD,0,Pelzer,,,SC,"Anderson County",America/New_York,864,NA,US,34.64,-82.46,10980 +29670,STANDARD,0,Pendleton,,,SC,"Anderson County",America/New_York,864,NA,US,34.65,-82.78,7640 +29671,STANDARD,0,Pickens,,,SC,"Pickens County",America/New_York,864,NA,US,34.88,-82.7,15540 +29672,STANDARD,0,Seneca,,,SC,"Oconee County",America/New_York,864,NA,US,34.75,-82.93,10820 +29673,STANDARD,0,Piedmont,Powdersville,,SC,"Greenville County",America/New_York,864,NA,US,34.71,-82.46,25570 +29675,"PO BOX",0,Richland,,,SC,"Oconee County",America/New_York,864,NA,US,34.7,-83.02,116 +29676,STANDARD,0,Salem,,,SC,"Oconee County",America/New_York,864,NA,US,34.89,-82.97,4980 +29677,"PO BOX",0,"Sandy Springs",,,SC,"Anderson County",America/New_York,864,NA,US,34.59,-82.75,641 +29678,STANDARD,0,Seneca,,,SC,"Oconee County",America/New_York,864,NA,US,34.68,-82.95,17680 +29679,"PO BOX",0,Seneca,,,SC,"Oconee County",America/New_York,864,NA,US,34.68,-82.95,1185 +29680,STANDARD,0,Simpsonville,,,SC,"Greenville County",America/New_York,864,NA,US,34.69,-82.29,31890 +29681,STANDARD,0,Simpsonville,,,SC,"Greenville County",America/New_York,864,NA,US,34.73,-82.25,59040 +29682,STANDARD,0,"Six Mile",,,SC,"Pickens County",America/New_York,864,NA,US,34.8,-82.81,3570 +29683,"PO BOX",0,Slater,,,SC,"Greenville County",America/New_York,864,NA,US,35.03,-82.49,389 +29684,STANDARD,0,Starr,,,SC,"Anderson County",America/New_York,864,NA,US,34.37,-82.69,4070 +29685,STANDARD,0,Sunset,,,SC,"Pickens County",America/New_York,864,NA,US,34.99,-82.84,1500 +29686,STANDARD,0,Tamassee,,,SC,"Oconee County",America/New_York,864,NA,US,34.96,-83.05,790 +29687,STANDARD,0,Taylors,,,SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.31,39060 +29688,"PO BOX",0,Tigerville,,,SC,"Greenville County",America/New_York,864,NA,US,35.07,-82.37,298 +29689,STANDARD,0,Townville,,,SC,"Anderson County",America/New_York,864,NA,US,34.56,-82.89,3660 +29690,STANDARD,0,"Travelers Rest","Travelers Rst",,SC,"Greenville County",America/New_York,864,NA,US,34.96,-82.43,19050 +29691,STANDARD,0,Walhalla,,,SC,"Oconee County",America/New_York,864,NA,US,34.77,-83.06,8930 +29692,STANDARD,0,"Ware Shoals",,,SC,"Laurens County",America/New_York,864,NA,US,34.39,-82.24,3680 +29693,STANDARD,0,Westminster,Madison,,SC,"Oconee County",America/New_York,864,NA,US,34.66,-83.09,11940 +29695,UNIQUE,0,Hodges,,"Wayside Nurseries",SC,"Greenwood County",America/New_York,864,NA,US,34.28,-82.24,0 +29696,STANDARD,0,"West Union",,,SC,"Oconee County",America/New_York,864,NA,US,34.76,-83.04,4270 +29697,STANDARD,0,Williamston,,,SC,"Anderson County",America/New_York,864,NA,US,34.61,-82.47,11560 +29698,UNIQUE,1,Greenville,,"Bmg Columbia Hse Music Club",SC,"Greenville County",America/New_York,864,NA,US,34.91,-82.09,0 +29702,STANDARD,0,Blacksburg,"Cherokee Falls, Cherokee Fls, Kings Creek",,SC,"Cherokee County",America/New_York,864,NA,US,35.12,-81.51,8010 +29703,"PO BOX",0,"Bowling Green",,,SC,"York County",America/New_York,803,NA,US,35.1,-81.22,389 +29704,STANDARD,0,Catawba,,,SC,"York County",America/New_York,803,NA,US,34.85,-80.91,3220 +29706,STANDARD,0,Chester,,,SC,"Chester County",America/New_York,803,NA,US,34.7,-81.21,16030 +29707,STANDARD,0,"Fort Mill","Indian Land","Ft Mill",SC,"Lancaster County",America/New_York,803,NA,US,34.99,-80.86,30080 +29708,STANDARD,0,"Fort Mill","Tega Cay","Ft Mill",SC,"York County",America/New_York,803,NA,US,35.05,-80.99,37990 +29709,STANDARD,0,Chesterfield,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.73,-80.08,4980 +29710,STANDARD,0,Clover,"Lake Wylie, River Hills","Lk Wylie",SC,"York County",America/New_York,803,NA,US,35.11,-81.22,35170 +29712,STANDARD,0,Edgemoor,,,SC,"Chester County",America/New_York,803,NA,US,34.8,-81.01,2100 +29714,STANDARD,0,"Fort Lawn",,"Ft Lawn",SC,"Chester County",America/New_York,803,NA,US,34.7,-80.89,2420 +29715,STANDARD,0,"Fort Mill",,,SC,"York County",America/New_York,803,NA,US,35,-80.94,37350 +29716,"PO BOX",0,"Fort Mill",,,SC,"York County",America/New_York,803,NA,US,35,-80.94,889 +29717,STANDARD,0,"Hickory Grove",,,SC,"York County",America/New_York,803,NA,US,34.98,-81.41,1170 +29718,STANDARD,0,Jefferson,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.65,-80.38,3040 +29720,STANDARD,0,Lancaster,,,SC,"Lancaster County",America/New_York,803,NA,US,34.72,-80.77,41640 +29721,"PO BOX",0,Lancaster,,,SC,"Lancaster County",America/New_York,803,NA,US,34.72,-80.77,3087 +29722,UNIQUE,0,Lancaster,,"Hosiery Corp Of America",SC,"Lancaster County",America/New_York,803,NA,US,34.72,-80.77,0 +29724,"PO BOX",0,Lando,,,SC,"Chester County",America/New_York,803,NA,US,34.77,-81.01,55 +29726,STANDARD,0,"Mc Connells",,Mcconnells,SC,"York County",America/New_York,803,NA,US,34.86,-81.22,1620 +29727,STANDARD,0,"Mount Croghan",,,SC,"Chesterfield County",America/New_York,843,NA,US,34.76,-80.22,1230 +29728,STANDARD,0,Pageland,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.77,-80.38,7460 +29729,STANDARD,0,Richburg,Lando,,SC,"Chester County",America/New_York,803,NA,US,34.71,-81.02,2040 +29730,STANDARD,0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.93,-81.02,47710 +29731,"PO BOX",0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.93,-81.02,1492 +29732,STANDARD,0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.97,-81.08,53030 +29733,UNIQUE,0,"Rock Hill",,"Winthrop University, Withrop College",SC,"York County",America/New_York,803,NA,US,34.94,-81.03,119 +29734,STANDARD,0,"Rock Hill",,,SC,"York County",America/New_York,803,NA,US,34.93,-81.02,0 +29741,STANDARD,0,Ruby,,,SC,"Chesterfield County",America/New_York,843,NA,US,34.74,-80.17,1490 +29742,STANDARD,0,Sharon,,,SC,"York County",America/New_York,"803,864",NA,US,34.95,-81.34,2060 +29743,STANDARD,0,Smyrna,,,SC,"York County",America/New_York,"864,803",NA,US,35.04,-81.41,1130 +29744,"PO BOX",0,"Van Wyck",,,SC,"Lancaster County",America/New_York,803,NA,US,34.91,-80.84,370 +29745,STANDARD,0,York,,,SC,"York County",America/New_York,803,NA,US,34.99,-81.23,28710 +29801,STANDARD,0,Aiken,Vaucluse,,SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,21060 +29802,"PO BOX",0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,2023 +29803,STANDARD,0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.49,-81.76,35700 +29804,"PO BOX",0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,671 +29805,STANDARD,0,Aiken,,,SC,"Aiken County",America/New_York,803,NA,US,33.65,-81.6,5140 +29808,UNIQUE,0,Aiken,,"Ei Dupont Corp",SC,"Aiken County",America/New_York,803,NA,US,33.54,-81.72,0 +29809,STANDARD,0,"New Ellenton",,,SC,"Aiken County",America/New_York,803,NA,US,33.41,-81.68,2020 +29810,STANDARD,0,Allendale,,Seigling,SC,"Allendale County",America/New_York,803,NA,US,33,-81.3,3270 +29812,STANDARD,0,Barnwell,Kline,Snelling,SC,"Barnwell County",America/New_York,803,NA,US,33.24,-81.36,9100 +29813,"PO BOX",0,Hilda,,,SC,"Barnwell County",America/New_York,803,NA,US,33.27,-81.24,75 +29816,"PO BOX",0,Bath,,,SC,"Aiken County",America/New_York,803,NA,US,33.5,-81.87,1309 +29817,STANDARD,0,Blackville,,,SC,"Barnwell County",America/New_York,803,NA,US,33.36,-81.28,3240 +29819,STANDARD,0,Bradley,,"Callison, Promised Land",SC,"Greenwood County",America/New_York,864,NA,US,34.04,-82.21,1190 +29821,STANDARD,0,"Clarks Hill",,,SC,"McCormick County",America/New_York,864,NA,US,33.63,-82.14,1190 +29822,"PO BOX",0,Clearwater,,,SC,"Aiken County",America/New_York,803,NA,US,33.5,-81.9,1588 +29824,STANDARD,0,Edgefield,,"Cleora, Meeting Street, Pleasant Lane",SC,"Edgefield County",America/New_York,803,NA,US,33.78,-81.93,4980 +29826,"PO BOX",0,Elko,,,SC,"Barnwell County",America/New_York,803,NA,US,33.39,-81.36,253 +29827,STANDARD,0,Fairfax,,Barton,SC,"Allendale County",America/New_York,803,NA,US,32.95,-81.23,2130 +29828,STANDARD,0,Gloverville,,,SC,"Aiken County",America/New_York,803,NA,US,33.52,-81.83,710 +29829,STANDARD,0,Graniteville,,,SC,"Aiken County",America/New_York,803,NA,US,33.56,-81.81,10630 +29831,STANDARD,0,Jackson,,"Dunbarton, Savannah River Plant",SC,"Aiken County",America/New_York,803,NA,US,33.32,-81.79,3170 +29832,STANDARD,0,Johnston,,,SC,"Edgefield County",America/New_York,803,NA,US,33.83,-81.8,4300 +29834,"PO BOX",0,Langley,,"Breeze Hill",SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.86,1409 +29835,STANDARD,0,"Mc Cormick",,"Bordeaux, Britts, Willington",SC,"McCormick County",America/New_York,864,NA,US,33.91,-82.29,5070 +29836,STANDARD,0,Martin,,,SC,"Allendale County",America/New_York,803,NA,US,33.06,-81.47,300 +29838,STANDARD,0,Modoc,,Colliers,SC,"Edgefield County",America/New_York,864,NA,US,33.75,-82.15,460 +29839,"PO BOX",0,Montmorenci,,,SC,"Aiken County",America/New_York,803,NA,US,33.52,-81.63,484 +29840,STANDARD,0,"Mount Carmel",,,SC,"McCormick County",America/New_York,864,NA,US,34,-82.5,190 +29841,STANDARD,0,"North Augusta","Beech Island, Belvedere, Clearwater",,SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.95,27170 +29842,STANDARD,0,"Beech Island",Clearwater,,SC,"Aiken County",America/New_York,803,NA,US,33.48,-81.89,6330 +29843,STANDARD,0,Olar,,,SC,"Bamberg County",America/New_York,803,NA,US,33.18,-81.18,860 +29844,"PO BOX",0,Parksville,,,SC,"McCormick County",America/New_York,864,NA,US,33.78,-82.21,145 +29845,STANDARD,0,"Plum Branch",Parksville,,SC,"McCormick County",America/New_York,864,NA,US,33.84,-82.25,880 +29846,"PO BOX",0,Sycamore,,,SC,"Allendale County",America/New_York,803,NA,US,33.03,-81.22,115 +29847,STANDARD,0,Trenton,,Eureka,SC,"Edgefield County",America/New_York,,NA,US,33.74,-81.84,4040 +29848,STANDARD,0,Troy,,,SC,"Greenwood County",America/New_York,864,NA,US,33.97,-82.08,650 +29849,STANDARD,0,Ulmer,,,SC,"Allendale County",America/New_York,803,NA,US,33.09,-81.2,260 +29850,"PO BOX",0,Vaucluse,,,SC,"Aiken County",America/New_York,803,NA,US,33.61,-81.82,169 +29851,STANDARD,0,Warrenville,,"Burnettown, Mixville, Stiefeltown",SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.82,6760 +29853,STANDARD,0,Williston,,"White Pond",SC,"Barnwell County",America/New_York,803,NA,US,33.4,-81.42,5040 +29856,STANDARD,0,Windsor,,,SC,"Aiken County",America/New_York,803,NA,US,33.48,-81.51,2260 +29860,STANDARD,0,"North Augusta",,,SC,"Edgefield County",America/New_York,803,NA,US,33.61,-81.98,14830 +29861,"PO BOX",0,"North Augusta",,,SC,"Aiken County",America/New_York,803,NA,US,33.51,-81.95,1547 +29899,UNIQUE,0,"Mc Cormick",,"Mccormick Correctional Inst",SC,"McCormick County",America/New_York,864,NA,US,33.93,-82.25,0 +29901,"PO BOX",0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.42,-80.68,1623 +29902,STANDARD,0,Beaufort,,"Laurel Bay, Naval Hospital",SC,"Beaufort County",America/New_York,843,NA,US,32.33,-80.68,12420 +29903,"PO BOX",0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.42,-80.68,1428 +29904,"PO BOX",0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.46,-80.72,420 +29905,"PO BOX",0,"Parris Island",Beaufort,,SC,"Beaufort County",America/New_York,843,NA,US,32.35,-80.68,240 +29906,STANDARD,0,Beaufort,,,SC,"Beaufort County",America/New_York,843,NA,US,32.45,-80.75,18510 +29907,STANDARD,0,Beaufort,"Ladys Island","Ladies Island",SC,"Beaufort County",America/New_York,843,NA,US,32.43,-80.64,12410 +29909,STANDARD,0,Okatie,Bluffton,"Callawassie Island, Spring Island, Sun City",SC,"Beaufort County",America/New_York,843,NA,US,32.3,-80.92,20520 +29910,STANDARD,0,Bluffton,,"Brighton Beach, Pritchardville",SC,"Beaufort County",America/New_York,843,NA,US,32.23,-80.86,44260 +29911,STANDARD,0,Brunson,,,SC,"Hampton County",America/New_York,803,NA,US,32.92,-81.18,1240 +29912,STANDARD,0,Coosawhatchie,,,SC,"Jasper County",America/New_York,843,NA,US,32.58,-80.93,18 +29913,"PO BOX",0,Crocketville,,,SC,"Hampton County",America/New_York,803,NA,US,32.91,-81.07,0 +29914,"PO BOX",0,Dale,,,SC,"Beaufort County",America/New_York,843,NA,US,32.55,-80.69,31 +29915,STANDARD,0,"Daufuskie Island","Daufuskie Is",,SC,"Beaufort County",America/New_York,843,NA,US,32.12,-80.86,440 +29916,STANDARD,0,"Early Branch",,"Barkersville, Fechtig, Grays",SC,"Hampton County",America/New_York,843,NA,US,32.74,-80.92,1150 +29918,STANDARD,0,Estill,,Nixville,SC,"Hampton County",America/New_York,803,NA,US,32.75,-81.24,3310 +29920,STANDARD,0,"Saint Helena Island","Fripp Island, St Helena Is","Dataw Island, Frogmore, Harbor Isl",SC,"Beaufort County",America/New_York,843,NA,US,32.38,-80.56,8110 +29921,"PO BOX",0,Furman,,,SC,"Hampton County",America/New_York,803,NA,US,32.68,-81.18,244 +29922,STANDARD,0,Garnett,,"Brighton, Robertville, Shirley",SC,"Hampton County",America/New_York,803,NA,US,32.6,-81.24,730 +29923,"PO BOX",0,Gifford,,,SC,"Hampton County",America/New_York,803,NA,US,32.86,-81.23,313 +29924,STANDARD,0,Hampton,,,SC,"Hampton County",America/New_York,803,NA,US,32.86,-81.1,3400 +29925,"PO BOX",0,"Hilton Head Island","Hilton Head",,SC,"Beaufort County",America/New_York,843,NA,US,32.19,-80.74,1988 +29926,STANDARD,0,"Hilton Head Island","Hilton Head",,SC,"Beaufort County",America/New_York,843,NA,US,32.19,-80.74,22420 +29927,STANDARD,0,Hardeeville,,"Bellinger, Harbville, Limehouse, Purysburgh",SC,"Jasper County",America/New_York,843,NA,US,32.27,-81.07,7440 +29928,STANDARD,0,"Hilton Head Island","Hilton Head",Fairfield,SC,"Beaufort County",America/New_York,843,NA,US,32.16,-80.76,13550 +29929,STANDARD,0,Islandton,,"Ashton, Moselle",SC,"Colleton County",America/New_York,843,NA,US,32.9,-80.93,900 +29931,"PO BOX",0,Lobeco,,,SC,"Beaufort County",America/New_York,843,NA,US,32.55,-80.74,467 +29932,STANDARD,0,Luray,,,SC,"Hampton County",America/New_York,803,NA,US,32.82,-81.35,230 +29933,"PO BOX",0,Miley,,,SC,"Hampton County",America/New_York,803,NA,US,32.94,-81.03,0 +29934,STANDARD,0,Pineland,,,SC,"Jasper County",America/New_York,,NA,US,32.6,-81.15,800 +29935,STANDARD,0,"Port Royal",,,SC,"Beaufort County",America/New_York,843,NA,US,32.38,-80.69,3240 +29936,STANDARD,0,Ridgeland,Coosawhatchie,"Gillisonville, Mitchellville, Switzerland",SC,"Jasper County",America/New_York,843,NA,US,32.48,-80.98,11120 +29938,"PO BOX",0,"Hilton Head Island","Hilton Head",,SC,"Beaufort County",America/New_York,843,NA,US,32.19,-80.74,1784 +29939,"PO BOX",0,Scotia,Estill,,SC,"Hampton County",America/New_York,803,NA,US,32.68,-81.24,122 +29940,STANDARD,0,Seabrook,,Coosaw,SC,"Beaufort County",America/New_York,843,NA,US,32.56,-80.73,2910 +29941,STANDARD,0,Sheldon,,,SC,"Beaufort County",America/New_York,843,NA,US,32.55,-80.81,530 +29943,STANDARD,0,Tillman,,Tarboro,SC,"Jasper County",America/New_York,843,NA,US,32.46,-81.1,470 +29944,STANDARD,0,Varnville,,,SC,"Hampton County",America/New_York,803,NA,US,32.85,-81.08,3810 +29945,STANDARD,0,Yemassee,,"Blake, Gardens Corner, Pocataligo, Salkehatchie, White Hall, Whitehall",SC,"Hampton County",America/New_York,843,NA,US,32.69,-80.85,3370 +30002,STANDARD,0,"Avondale Estates","Avondale Est",,GA,"DeKalb County",America/New_York,"404,678",NA,US,33.77,-84.26,5640 +30003,"PO BOX",0,Norcross,,Rockbridge,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,551 +30004,STANDARD,0,Alpharetta,Milton,,GA,"Fulton County",America/New_York,678,NA,US,34.14,-84.29,64590 +30005,STANDARD,0,Alpharetta,"Johns Creek",,GA,"Fulton County",America/New_York,678,NA,US,34.09,-84.22,36680 +30006,"PO BOX",0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,1112 +30007,"PO BOX",0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,259 +30008,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.9,-84.59,25700 +30009,STANDARD,0,Alpharetta,Milton,,GA,"Fulton County",America/New_York,678,NA,US,34.08,-84.31,18080 +30010,"PO BOX",0,Norcross,"Peachtree Cor, Peachtree Corners",,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,784 +30011,STANDARD,0,Auburn,Carl,,GA,"Barrow County",America/New_York,678,NA,US,34.01,-83.83,16340 +30012,STANDARD,0,Conyers,,,GA,"Rockdale County",America/New_York,"470,678,770",NA,US,33.66,-84.01,23960 +30013,STANDARD,0,Conyers,,,GA,"Rockdale County",America/New_York,"470,678,770",NA,US,33.65,-83.97,25020 +30014,STANDARD,0,Covington,Porterdale,"Walnut Grove",GA,"Newton County",America/New_York,"470,678,770",NA,US,33.6,-83.85,31960 +30015,"PO BOX",0,Covington,,,GA,"Newton County",America/New_York,678,NA,US,33.6,-83.85,1785 +30016,STANDARD,0,Covington,Porterdale,,GA,"Newton County",America/New_York,"470,678,770",NA,US,33.52,-83.93,50420 +30017,STANDARD,0,Grayson,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.89,-83.95,23440 +30018,"PO BOX",0,Jersey,,,GA,"Walton County",America/New_York,678,NA,US,33.71,-83.8,286 +30019,STANDARD,0,Dacula,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.98,-83.88,47410 +30021,STANDARD,0,Clarkston,,,GA,"DeKalb County",America/New_York,"404,678",NA,US,33.81,-84.24,21900 +30022,STANDARD,0,Alpharetta,"Johns Creek",,GA,"Fulton County",America/New_York,678,NA,US,34.06,-84.27,62820 +30023,"PO BOX",0,Alpharetta,,,GA,"Fulton County",America/New_York,678,NA,US,34.06,-84.27,643 +30024,STANDARD,0,Suwanee,"Johns Creek",,GA,"Gwinnett County",America/New_York,"470,678",NA,US,34.05,-84.07,81610 +30025,STANDARD,0,"Social Circle",,,GA,"Walton County",America/New_York,"470,678,770",NA,US,33.65,-83.71,9120 +30026,"PO BOX",0,"North Metro",Duluth,,GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,15 +30028,STANDARD,0,Cumming,,,GA,"Forsyth County",America/New_York,"470,678,770",NA,US,34.29,-84.18,28660 +30029,"PO BOX",0,"North Metro",Duluth,,GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,0 +30030,STANDARD,0,Decatur,,,GA,"DeKalb County",America/New_York,404,NA,US,33.77,-84.29,27450 +30031,"PO BOX",0,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.77,-84.29,1305 +30032,STANDARD,0,Decatur,,"Belvedere, Dunaire",GA,"DeKalb County",America/New_York,404,NA,US,33.74,-84.26,34620 +30033,STANDARD,0,Decatur,,"North Decatur, Vista Grove",GA,"DeKalb County",America/New_York,404,NA,US,33.81,-84.28,25790 +30034,STANDARD,0,Decatur,,,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.69,-84.25,37900 +30035,STANDARD,0,Decatur,,Snapfinger,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.72,-84.2,18260 +30036,"PO BOX",0,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.77,-84.29,839 +30037,"PO BOX",0,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.77,-84.29,1054 +30038,STANDARD,0,Lithonia,Stonecrest,,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.67,-84.14,34630 +30039,STANDARD,0,Snellville,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.8,-84.03,44310 +30040,STANDARD,0,Cumming,,,GA,"Forsyth County",America/New_York,"470,678,770",NA,US,34.2,-84.13,75040 +30041,STANDARD,0,Cumming,,,GA,"Forsyth County",America/New_York,"470,678,770",NA,US,34.2,-84.1,68880 +30042,"PO BOX",0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-83.99,737 +30043,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34,-84.01,79510 +30044,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.92,-84.07,83580 +30045,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,33.94,-83.93,39190 +30046,STANDARD,0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,470,NA,US,33.94,-83.99,34780 +30047,STANDARD,0,Lilburn,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.88,-84.13,62210 +30048,"PO BOX",0,Lilburn,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.88,-84.13,1316 +30049,"PO BOX",0,Lawrenceville,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.64,-84.26,725 +30052,STANDARD,0,Loganville,"Walnut Grove",,GA,"Walton County",America/New_York,,NA,US,33.83,-83.89,67170 +30054,STANDARD,0,Oxford,,,GA,"Newton County",America/New_York,678,NA,US,33.62,-83.87,10390 +30055,STANDARD,0,Mansfield,,,GA,"Jasper County",America/New_York,,NA,US,33.51,-83.73,3230 +30056,STANDARD,0,Newborn,,,GA,"Jasper County",America/New_York,,NA,US,33.51,-83.69,2300 +30058,STANDARD,0,Lithonia,Stonecrest,,GA,"DeKalb County",America/New_York,"678,770",NA,US,33.71,-84.1,48920 +30060,STANDARD,0,Marietta,,"Atlanta Naval Air Station, Dobbins AFB, Dobbins Air Force Base",GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.95,-84.54,31060 +30061,"PO BOX",0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,1272 +30062,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"678,770",NA,US,34,-84.47,62910 +30063,UNIQUE,0,Marietta,,Lockheed,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,41 +30064,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.94,-84.61,46240 +30065,"PO BOX",0,Marietta,,Mreta,GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,611 +30066,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,678,NA,US,34.03,-84.51,54720 +30067,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"678,770",NA,US,33.93,-84.46,38460 +30068,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"678,770",NA,US,33.97,-84.43,33330 +30069,UNIQUE,0,Marietta,"Dobbins AFB","Dobbins Air Force Base",GA,"Cobb County",America/New_York,678,NA,US,33.95,-84.54,41 +30070,"PO BOX",0,Porterdale,,,GA,"Newton County",America/New_York,678,NA,US,33.57,-83.89,1069 +30071,STANDARD,0,Norcross,"Berkeley Lake, Peachtree Cor, Peachtree Corners",,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,22320 +30072,"PO BOX",0,"Pine Lake",,,GA,"DeKalb County",America/New_York,678,NA,US,33.79,-84.21,1132 +30073,STANDARD,1,Decatur,,,GA,"Dekalb County",America/New_York,404,NA,US,33.7,-84.25,206 +30074,"PO BOX",0,Redan,Lithonia,,GA,"Dekalb County",America/New_York,678,NA,US,33.73,-84.15,503 +30075,STANDARD,0,Roswell,"Mountain Park","Sandy Plains",GA,"Fulton County",America/New_York,678,NA,US,34.03,-84.35,53880 +30076,STANDARD,0,Roswell,,,GA,"Fulton County",America/New_York,678,NA,US,34.03,-84.31,39820 +30077,"PO BOX",0,Roswell,,,GA,"Fulton County",America/New_York,678,NA,US,34.03,-84.35,937 +30078,STANDARD,0,Snellville,,,GA,"Gwinnett County",America/New_York,"678,770",NA,US,33.85,-84,35210 +30079,STANDARD,0,Scottdale,,,GA,"DeKalb County",America/New_York,"404,678",NA,US,33.79,-84.26,2820 +30080,STANDARD,0,Smyrna,,,GA,"Cobb County",America/New_York,678,NA,US,33.86,-84.51,44280 +30081,"PO BOX",0,Smyrna,,,GA,"Cobb County",America/New_York,678,NA,US,33.86,-84.51,1158 +30082,STANDARD,0,Smyrna,,,GA,"Cobb County",America/New_York,678,NA,US,33.85,-84.54,24780 +30083,STANDARD,0,"Stone Mountain","Stone Mtn","Memorial Square, St Mountain, St Mtn",GA,"DeKalb County",America/New_York,"678,770,404",NA,US,33.8,-84.17,47380 +30084,STANDARD,0,Tucker,,,GA,"DeKalb County",America/New_York,678,NA,US,33.85,-84.22,35060 +30085,"PO BOX",0,Tucker,,,GA,"Dekalb County",America/New_York,678,NA,US,33.85,-84.22,828 +30086,"PO BOX",0,"Stone Mountain","Stone Mtn","St Mountain",GA,"Dekalb County",America/New_York,404,NA,US,33.8,-84.17,1204 +30087,STANDARD,0,"Stone Mountain","Smoke Rise, Stone Mtn",,GA,"DeKalb County",America/New_York,"404,678,770",NA,US,33.81,-84.13,34590 +30088,STANDARD,0,"Stone Mountain","Stone Mtn",,GA,"DeKalb County",America/New_York,"404,678,770",NA,US,33.76,-84.18,22840 +30090,STANDARD,0,Marietta,,,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.95,-84.54,0 +30091,"PO BOX",0,Norcross,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.94,-84.2,903 +30092,STANDARD,0,"Peachtree Corners","Berkeley Lake, Norcross, Peachtree Cor",Parkway,GA,"Gwinnett County",America/New_York,678,NA,US,33.97,-84.23,32090 +30093,STANDARD,0,Norcross,,,GA,"Gwinnett County",America/New_York,678,NA,US,33.91,-84.18,44520 +30094,STANDARD,0,Conyers,,,GA,"Rockdale County",America/New_York,"770,470,678",NA,US,33.61,-84.05,28310 +30095,"PO BOX",0,Duluth,,,GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,747 +30096,STANDARD,0,Duluth,"Berkeley Lake, Peachtree Cor, Peachtree Corners",,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34,-84.15,60360 +30097,STANDARD,0,Duluth,"Johns Creek, Peachtree Cor, Peachtree Corners",,GA,"Fulton County",America/New_York,"470,678,770",NA,US,34.03,-84.15,46340 +30098,UNIQUE,0,Duluth,,"State Farm Insurance Co",GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,28 +30099,UNIQUE,0,Duluth,,"Primerica Financial Services",GA,"Gwinnett County",America/New_York,678,NA,US,34,-84.15,0 +30101,STANDARD,0,Acworth,,"Oak Grove",GA,"Cobb County",America/New_York,"678,770",NA,US,34.05,-84.67,57910 +30102,STANDARD,0,Acworth,,,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.1,-84.63,38510 +30103,STANDARD,0,Adairsville,,,GA,"Bartow County",America/New_York,"470,678,770",NA,US,34.36,-84.91,13110 +30104,STANDARD,0,Aragon,,,GA,"Polk County",America/New_York,678,NA,US,34.04,-85.05,4040 +30105,STANDARD,0,Armuchee,,,GA,"Floyd County",America/New_York,706,NA,US,34.47,-85.21,2110 +30106,STANDARD,0,Austell,,,GA,"Cobb County",America/New_York,"770,678",NA,US,33.82,-84.64,19140 +30107,STANDARD,0,"Ball Ground",,,GA,"Cherokee County",America/New_York,"770,678",NA,US,34.33,-84.37,14670 +30108,STANDARD,0,Bowdon,,,GA,"Carroll County",America/New_York,"470,678,770",NA,US,33.53,-85.25,6690 +30109,"PO BOX",0,"Bowdon Junction","Bowdon Jct",,GA,"Carroll County",America/New_York,678,NA,US,33.65,-85.13,151 +30110,STANDARD,0,Bremen,,,GA,"Haralson County",America/New_York,"678,770",NA,US,33.7,-85.15,11820 +30111,"PO BOX",0,Clarkdale,,,GA,"Cobb County",America/New_York,678,NA,US,33.82,-84.65,314 +30112,"PO BOX",0,Carrollton,,,GA,"Carroll County",America/New_York,678,NA,US,33.58,-85.08,1616 +30113,STANDARD,0,Buchanan,,,GA,"Haralson County",America/New_York,"678,770",NA,US,33.8,-85.18,5090 +30114,STANDARD,0,Canton,"Holly Springs",,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.24,-84.49,51740 +30115,STANDARD,0,Canton,"Holly Springs",,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.2,-84.4,44680 +30116,STANDARD,0,Carrollton,,,GA,"Carroll County",America/New_York,"678,770",NA,US,33.54,-85,20630 +30117,STANDARD,0,Carrollton,,"University Of West Georgia",GA,"Carroll County",America/New_York,"678,770",NA,US,33.58,-85.07,27610 +30118,UNIQUE,0,Carrollton,,"University Of West Georgia",GA,"Carroll County",America/New_York,678,NA,US,33.57,-85.1,101 +30119,UNIQUE,0,Carrollton,,Southwire,GA,"Carroll County",America/New_York,678,NA,US,33.58,-85.07,0 +30120,STANDARD,0,Cartersville,Euharlee,"North Corners",GA,"Bartow County",America/New_York,"470,678,770",NA,US,34.16,-84.8,37530 +30121,STANDARD,0,Cartersville,Emerson,,GA,"Bartow County",America/New_York,"470,678,770",NA,US,34.21,-84.78,19900 +30122,STANDARD,0,"Lithia Springs","Lithia Spgs",,GA,"Douglas County",America/New_York,678,NA,US,33.77,-84.64,20410 +30123,"PO BOX",0,Cassville,,,GA,"Bartow County",America/New_York,,NA,US,34.23,-84.84,906 +30124,STANDARD,0,"Cave Spring",,,GA,"Floyd County",America/New_York,706,NA,US,34.1,-85.33,2440 +30125,STANDARD,0,Cedartown,,,GA,"Polk County",America/New_York,"470,678,770",NA,US,34.01,-85.25,20320 +30126,STANDARD,0,Mableton,Smyrna,,GA,"Cobb County",America/New_York,678,NA,US,33.81,-84.56,35960 +30127,STANDARD,0,"Powder Springs","Powder Spgs",,GA,"Cobb County",America/New_York,"470,678,770",NA,US,33.86,-84.68,63510 +30129,"PO BOX",0,Coosa,,,GA,"Floyd County",America/New_York,706,NA,US,34.22,-85.39,434 +30132,STANDARD,0,Dallas,,,GA,"Paulding County",America/New_York,"678,770",NA,US,33.91,-84.83,40960 +30133,"PO BOX",0,Douglasville,,,GA,"Douglas County",America/New_York,678,NA,US,33.74,-84.74,1123 +30134,STANDARD,0,Douglasville,,,GA,"Douglas County",America/New_York,"678,770",NA,US,33.74,-84.74,40210 +30135,STANDARD,0,Douglasville,,,GA,"Douglas County",America/New_York,"678,770",NA,US,33.67,-84.73,60000 +30137,STANDARD,0,Emerson,,,GA,"Bartow County",America/New_York,,NA,US,34.12,-84.76,1450 +30138,"PO BOX",0,"Esom Hill",,,GA,"Cleburne County",America/New_York,678,NA,US,33.93,-85.37,75 +30139,STANDARD,0,Fairmount,,,GA,"Gordon County",America/New_York,"706,770",NA,US,34.44,-84.7,3670 +30140,"PO BOX",0,Felton,,,GA,"Haralson County",America/New_York,678,NA,US,33.88,-85.21,118 +30141,STANDARD,0,Hiram,,,GA,"Paulding County",America/New_York,678,NA,US,33.86,-84.77,21110 +30142,"PO BOX",0,"Holly Springs",,,GA,"Cherokee County",America/New_York,678,NA,US,34.17,-84.49,574 +30143,STANDARD,0,Jasper,"Big Canoe",,GA,"Pickens County",America/New_York,"678,770,706",NA,US,34.46,-84.42,21460 +30144,STANDARD,0,Kennesaw,,"Barrett Parkway",GA,"Cobb County",America/New_York,678,NA,US,34.02,-84.61,44120 +30145,STANDARD,0,Kingston,Euharlee,,GA,"Bartow County",America/New_York,"678,770",NA,US,34.23,-84.94,7180 +30146,"PO BOX",0,Lebanon,,,GA,"Cherokee County",America/New_York,678,NA,US,34.21,-84.44,259 +30147,STANDARD,0,Lindale,,,GA,"Floyd County",America/New_York,706,NA,US,34.18,-85.18,3780 +30148,STANDARD,0,"Marble Hill",,Marblehill,GA,"Pickens County",America/New_York,"678,770,706",NA,US,34.46,-84.26,610 +30149,"PO BOX",0,"Mount Berry",Rome,,GA,"Floyd County",America/New_York,706,NA,US,34.31,-85.23,347 +30150,"PO BOX",0,"Mount Zion",,,GA,"Carroll County",America/New_York,678,NA,US,33.63,-85.18,197 +30151,"PO BOX",0,Nelson,,,GA,"Pickens County",America/New_York,,NA,US,34.38,-84.37,402 +30152,STANDARD,0,Kennesaw,,,GA,"Cobb County",America/New_York,678,NA,US,33.99,-84.65,41190 +30153,STANDARD,0,Rockmart,Braswell,,GA,"Polk County",America/New_York,"470,678,770",NA,US,34,-85.04,16400 +30154,"PO BOX",0,Douglasville,,,GA,"Douglas County",America/New_York,678,NA,US,33.74,-84.74,744 +30156,"PO BOX",0,Kennesaw,,,GA,"Cobb County",America/New_York,678,NA,US,33.99,-84.65,872 +30157,STANDARD,0,Dallas,,,GA,"Paulding County",America/New_York,"678,770",NA,US,33.88,-84.87,45250 +30160,"PO BOX",0,Kennesaw,,,GA,"Cobb County",America/New_York,678,NA,US,33.99,-84.65,372 +30161,STANDARD,0,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.24,-85.17,27600 +30162,"PO BOX",0,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.26,-85.18,1153 +30163,"PO BOX",1,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.26,-85.18,0 +30164,"PO BOX",0,Rome,,,GA,"Newton County",America/New_York,706,NA,US,33.4,-83.83,965 +30165,STANDARD,0,Rome,,,GA,"Floyd County",America/New_York,706,NA,US,34.26,-85.18,35040 +30168,STANDARD,0,Austell,,,GA,"Cobb County",America/New_York,"678,770",NA,US,33.78,-84.59,22540 +30169,"PO BOX",0,Canton,,,GA,"Cherokee County",America/New_York,678,NA,US,34.14,-84.3,843 +30170,STANDARD,0,Roopville,,Ephesus,GA,"Carroll County",America/New_York,"678,770",NA,US,33.45,-85.13,2690 +30171,STANDARD,0,Rydal,,,GA,"Bartow County",America/New_York,,NA,US,34.37,-84.7,3330 +30172,"PO BOX",0,Shannon,,,GA,"Floyd County",America/New_York,706,NA,US,34.33,-85.08,1257 +30173,STANDARD,0,"Silver Creek",,,GA,"Floyd County",America/New_York,706,NA,US,34.13,-85.13,5460 +30175,STANDARD,0,"Talking Rock",,"White Stone",GA,"Pickens County",America/New_York,706,NA,US,34.5,-84.5,5430 +30176,STANDARD,0,Tallapoosa,,,GA,"Haralson County",America/New_York,"470,678,770",NA,US,33.75,-85.29,5780 +30177,STANDARD,0,Tate,,,GA,"Pickens County",America/New_York,"678,706,770",NA,US,34.41,-84.38,530 +30178,STANDARD,0,Taylorsville,,,GA,"Bartow County",America/New_York,,NA,US,34.08,-84.98,3680 +30179,STANDARD,0,Temple,,,GA,"Carroll County",America/New_York,"470,678,770",NA,US,33.73,-85.03,15770 +30180,STANDARD,0,"Villa Rica",,,GA,"Carroll County",America/New_York,"678,770",NA,US,33.73,-84.92,33850 +30182,STANDARD,0,Waco,,,GA,"Carroll County",America/New_York,,NA,US,33.7,-85.18,2260 +30183,STANDARD,0,Waleska,,"Lake Arrowhead",GA,"Cherokee County",America/New_York,678,NA,US,34.31,-84.55,5260 +30184,STANDARD,0,White,,,GA,"Bartow County",America/New_York,,NA,US,34.28,-84.74,6570 +30185,STANDARD,0,Whitesburg,,,GA,"Carroll County",America/New_York,,NA,US,33.49,-84.91,3480 +30187,STANDARD,0,Winston,,,GA,"Douglas County",America/New_York,678,NA,US,33.65,-84.86,8640 +30188,STANDARD,0,Woodstock,"Holly Springs, Mountain Park",,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.1,-84.51,61190 +30189,STANDARD,0,Woodstock,,,GA,"Cherokee County",America/New_York,"678,770",NA,US,34.12,-84.57,35810 +30204,STANDARD,0,Barnesville,Aldora,,GA,"Lamar County",America/New_York,"470,678,770",NA,US,33.05,-84.15,9900 +30205,STANDARD,0,Brooks,,,GA,"Fayette County",America/New_York,,NA,US,33.29,-84.45,3320 +30206,STANDARD,0,Concord,,,GA,"Pike County",America/New_York,"678,770",NA,US,33.09,-84.43,2750 +30212,"PO BOX",0,Experiment,,,GA,"Spalding County",America/New_York,678,NA,US,33.27,-84.27,717 +30213,STANDARD,0,Fairburn,,,GA,"Fulton County",America/New_York,770,NA,US,33.56,-84.58,34710 +30214,STANDARD,0,Fayetteville,Woolsey,,GA,"Fayette County",America/New_York,"770,678",NA,US,33.49,-84.49,29280 +30215,STANDARD,0,Fayetteville,,,GA,"Fayette County",America/New_York,"678,770",NA,US,33.44,-84.46,34640 +30216,STANDARD,0,Flovilla,,"Indian Springs",GA,"Butts County",America/New_York,678,NA,US,33.25,-83.89,1700 +30217,STANDARD,0,Franklin,"Centralhatchee, Ctrlhatchee",,GA,"Heard County",America/New_York,706,NA,US,33.28,-85.09,7050 +30218,STANDARD,0,Gay,,,GA,"Meriwether County",America/New_York,706,NA,US,33.09,-84.57,1710 +30219,"PO BOX",1,Glenn,,,GA,"Heard County",America/New_York,706,NA,US,33.28,-85.12,0 +30220,STANDARD,0,Grantville,"Lone Oak",,GA,"Coweta County",America/New_York,"470,678,770",NA,US,33.23,-84.82,4630 +30222,STANDARD,0,Greenville,Stovall,,GA,"Meriwether County",America/New_York,706,NA,US,33.02,-84.71,3510 +30223,STANDARD,0,Griffin,,,GA,"Spalding County",America/New_York,"770,470,678",NA,US,33.29,-84.28,29970 +30224,STANDARD,0,Griffin,,,GA,"Spalding County",America/New_York,"470,678,770",NA,US,33.24,-84.27,22150 +30228,STANDARD,0,Hampton,,,GA,"Henry County",America/New_York,770,NA,US,33.38,-84.28,42490 +30229,"PO BOX",0,Haralson,,,GA,"Coweta County",America/New_York,678,NA,US,33.22,-84.57,193 +30230,STANDARD,0,Hogansville,"Lone Oak",,GA,"Troup County",America/New_York,706,NA,US,33.16,-84.9,7470 +30233,STANDARD,0,Jackson,,,GA,"Butts County",America/New_York,"470,678,770",NA,US,33.29,-83.96,20040 +30234,STANDARD,0,Jenkinsburg,,,GA,"Butts County",America/New_York,678,NA,US,33.32,-84.03,1790 +30236,STANDARD,0,Jonesboro,"Lake Spivey",,GA,"Clayton County",America/New_York,"770,678",NA,US,33.52,-84.35,41100 +30237,"PO BOX",0,Jonesboro,,,GA,"Clayton County",America/New_York,678,NA,US,33.52,-84.35,1145 +30238,STANDARD,0,Jonesboro,,,GA,"Clayton County",America/New_York,"678,770",NA,US,33.49,-84.38,35500 +30240,STANDARD,0,Lagrange,,,GA,"Troup County",America/New_York,"706,762",NA,US,33.04,-85.12,24550 +30241,STANDARD,0,Lagrange,,,GA,"Troup County",America/New_York,"762,706",NA,US,33.03,-84.98,20680 +30248,STANDARD,0,"Locust Grove",,,GA,"Henry County",America/New_York,"678,770",NA,US,33.34,-84.1,25740 +30250,"PO BOX",0,Lovejoy,,,GA,"Clayton County",America/New_York,678,NA,US,33.44,-84.31,362 +30251,STANDARD,0,Luthersville,,,GA,"Meriwether County",America/New_York,"470,678,770",NA,US,33.2,-84.74,1860 +30252,STANDARD,0,Mcdonough,,,GA,"Henry County",America/New_York,"678,770",NA,US,33.47,-84.06,44530 +30253,STANDARD,0,Mcdonough,,"Mc Donough",GA,"Henry County",America/New_York,"678,770",NA,US,33.45,-84.14,54170 +30256,STANDARD,0,Meansville,,,GA,"Pike County",America/New_York,,NA,US,33.04,-84.3,2380 +30257,STANDARD,0,Milner,,,GA,"Lamar County",America/New_York,678,NA,US,33.11,-84.19,4020 +30258,STANDARD,0,Molena,,,GA,"Pike County",America/New_York,678,NA,US,33.01,-84.5,2260 +30259,STANDARD,0,Moreland,,,GA,"Coweta County",America/New_York,678,NA,US,33.28,-84.77,3340 +30260,STANDARD,0,Morrow,"Lake City",,GA,"Clayton County",America/New_York,404,NA,US,33.57,-84.34,22520 +30261,"PO BOX",0,Lagrange,Mountville,,GA,"Troup County",America/New_York,706,NA,US,33.03,-84.98,31 +30263,STANDARD,0,Newnan,Raymond,,GA,"Coweta County",America/New_York,"470,678,770",NA,US,33.37,-84.78,50790 +30264,"PO BOX",0,Newnan,,,GA,"Coweta County",America/New_York,678,NA,US,33.37,-84.78,1068 +30265,STANDARD,0,Newnan,,Shenandoah,GA,"Coweta County",America/New_York,"470,678,770",NA,US,33.41,-84.71,33560 +30266,"PO BOX",0,"Orchard Hill",,,GA,"Spalding County",America/New_York,678,NA,US,33.18,-84.21,459 +30268,STANDARD,0,Palmetto,"Chatt Hills, Chattahoochee Hills",,GA,"Fulton County",America/New_York,678,NA,US,33.52,-84.66,9460 +30269,STANDARD,0,"Peachtree City","Peachtree Cty",,GA,"Fayette County",America/New_York,"678,770",NA,US,33.39,-84.56,37400 +30270,UNIQUE,0,"Peachtree City","Fayetteville, Peachtree Cty","Peachtree City Parcel Return",GA,"Fayette County",America/New_York,678,NA,US,33.4,-84.6,0 +30271,"PO BOX",0,Newnan,,,GA,"Coweta County",America/New_York,678,NA,US,33.37,-84.78,961 +30272,"PO BOX",0,"Red Oak",,,GA,"Fulton County",America/New_York,678,NA,US,33.62,-84.53,642 +30273,STANDARD,0,Rex,,,GA,"Clayton County",America/New_York,678,NA,US,33.58,-84.27,16270 +30274,STANDARD,0,Riverdale,,,GA,"Clayton County",America/New_York,"678,770",NA,US,33.56,-84.4,29150 +30275,"PO BOX",0,Sargent,,,GA,"Coweta County",America/New_York,678,NA,US,33.44,-84.87,253 +30276,STANDARD,0,Senoia,,,GA,"Coweta County",America/New_York,"678,770",NA,US,33.31,-84.55,16820 +30277,STANDARD,0,Sharpsburg,,,GA,"Coweta County",America/New_York,678,NA,US,33.38,-84.65,20990 +30281,STANDARD,0,Stockbridge,,,GA,"Henry County",America/New_York,"678,770",NA,US,33.54,-84.24,60480 +30284,"PO BOX",0,"Sunny Side",,,GA,"Spalding County",America/New_York,678,NA,US,33.34,-84.29,497 +30285,STANDARD,0,"The Rock",,,GA,"Upson County",America/New_York,,NA,US,32.96,-84.24,630 +30286,STANDARD,0,Thomaston,,,GA,"Upson County",America/New_York,706,NA,US,32.89,-84.32,18400 +30287,"PO BOX",0,Morrow,,,GA,"Clayton County",America/New_York,404,NA,US,33.57,-84.34,239 +30288,STANDARD,0,Conley,,,GA,"Clayton County",America/New_York,,NA,US,33.65,-84.33,7370 +30289,"PO BOX",0,Turin,,,GA,"Coweta County",America/New_York,678,NA,US,33.32,-84.63,242 +30290,STANDARD,0,Tyrone,,,GA,"Fayette County",America/New_York,"678,770",NA,US,33.46,-84.59,9000 +30291,STANDARD,0,"Union City",,,GA,"Fulton County",America/New_York,678,NA,US,33.57,-84.54,19980 +30292,STANDARD,0,Williamson,,,GA,"Pike County",America/New_York,"678,770",NA,US,33.18,-84.36,5690 +30293,STANDARD,0,Woodbury,,,GA,"Meriwether County",America/New_York,706,NA,US,32.98,-84.58,2230 +30294,STANDARD,0,Ellenwood,,,GA,"DeKalb County",America/New_York,,NA,US,33.63,-84.26,37600 +30295,STANDARD,0,Zebulon,,,GA,"Pike County",America/New_York,"470,678,770",NA,US,33.1,-84.34,4070 +30296,STANDARD,0,Riverdale,,,GA,"Clayton County",America/New_York,678,NA,US,33.56,-84.44,24560 +30297,STANDARD,0,"Forest Park","Fort Gillem, Gillem Enclave, Gillem Enclv",,GA,"Clayton County",America/New_York,404,NA,US,33.62,-84.37,23090 +30298,"PO BOX",0,"Forest Park",,Forest,GA,"Clayton County",America/New_York,404,NA,US,33.61,-84.35,875 +30301,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.85,-84.39,1009 +30302,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,774 +30303,STANDARD,0,Atlanta,,"Atl, Georgia State University",GA,"Fulton County",America/New_York,"470,404,678",NA,US,33.75,-84.39,1800 +30304,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30305,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"678,404,470,770",NA,US,33.83,-84.38,22750 +30306,STANDARD,0,Atlanta,,"Atl, North Highland Finance",GA,"Fulton County",America/New_York,404,NA,US,33.78,-84.34,20460 +30307,STANDARD,0,Atlanta,,"Atl, Little Five Points Pstl Str",GA,"DeKalb County",America/New_York,404,NA,US,33.76,-84.33,17540 +30308,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678",NA,US,33.77,-84.37,13770 +30309,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"678,404",NA,US,33.78,-84.38,22880 +30310,STANDARD,0,Atlanta,,"Atl, Fort Mcpherson",GA,"Fulton County",America/New_York,"404,678",NA,US,33.72,-84.42,19900 +30311,STANDARD,0,Atlanta,"South Fulton",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.72,-84.48,25150 +30312,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"470,404,678,770",NA,US,33.74,-84.38,17770 +30313,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,470,678",NA,US,33.76,-84.4,2940 +30314,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.42,11130 +30315,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"678,404",NA,US,33.7,-84.38,24320 +30316,STANDARD,0,Atlanta,,Atl,GA,"DeKalb County",America/New_York,404,NA,US,33.72,-84.32,26920 +30317,STANDARD,0,Atlanta,,Atl,GA,"DeKalb County",America/New_York,404,NA,US,33.75,-84.32,11610 +30318,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.78,-84.44,39770 +30319,STANDARD,0,Atlanta,"Brookhaven, Sandy Spgs, Sandy Springs","Atl, North Atlanta",GA,"DeKalb County",America/New_York,"678,770",NA,US,33.87,-84.33,36360 +30320,"PO BOX",0,Atlanta,,"Atl, Logistics & Distribution Ctr",GA,"Clayton County",America/New_York,404,NA,US,33.63,-84.43,312 +30321,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,1247 +30322,UNIQUE,0,Atlanta,,"Atl, Emory University",GA,"DeKalb County",America/New_York,678,NA,US,33.79,-84.33,252 +30324,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.81,-84.36,23340 +30325,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.44,475 +30326,STANDARD,0,Atlanta,Brookhaven,Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.85,-84.36,6150 +30327,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.86,-84.42,21940 +30328,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,"404,470,678,770",NA,US,33.93,-84.38,34380 +30329,STANDARD,0,Atlanta,Brookhaven,"Atl, Briarcliff",GA,"DeKalb County",America/New_York,"404,470",NA,US,33.82,-84.32,23410 +30330,UNIQUE,1,Atlanta,"Fort Mcpherson, Ft Mcpherson",Atl,GA,"Fulton County",America/New_York,678,NA,US,33.7,-84.43,121 +30331,STANDARD,0,Atlanta,"South Fulton",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.71,-84.53,46720 +30332,UNIQUE,0,Atlanta,,"Atl, Georgia Tech",GA,"Fulton County",America/New_York,404,NA,US,33.78,-84.4,793 +30333,"PO BOX",0,Atlanta,,"Atl, Druid Hills",GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.32,198 +30334,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678,770,470",NA,US,33.75,-84.39,257 +30336,STANDARD,0,Atlanta,"South Fulton","Atl, Industrial",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.57,1370 +30337,STANDARD,0,Atlanta,"College Park, South Fulton",Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.64,-84.46,8580 +30338,STANDARD,0,Atlanta,"Dunwoody, Sandy Spgs, Sandy Springs","Atl, North Springs",GA,"DeKalb County",America/New_York,"404,470,678,770",NA,US,33.94,-84.31,34840 +30339,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs, Vinings","Atl, Cumberland, Overlook Sru, Vinnings",GA,"Cobb County",America/New_York,"404,470,678,770",NA,US,33.86,-84.47,25130 +30340,STANDARD,0,Atlanta,Doraville,Atl,GA,"DeKalb County",America/New_York,"678,470,770",NA,US,33.89,-84.25,25050 +30341,STANDARD,0,Atlanta,Chamblee,Atl,GA,"DeKalb County",America/New_York,"404,470,770,678",NA,US,33.9,-84.3,27350 +30342,STANDARD,0,Atlanta,"Sandy Spgs, Sandy Springs","Atl, Tuxedo",GA,"Fulton County",America/New_York,"470,678,770,404",NA,US,33.88,-84.37,27680 +30343,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,260 +30344,STANDARD,0,Atlanta,"East Point",Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.68,-84.46,26670 +30345,STANDARD,0,Atlanta,,Atl,GA,"DeKalb County",America/New_York,"770,470,678",NA,US,33.85,-84.28,21850 +30346,STANDARD,0,Atlanta,Dunwoody,Atl,GA,"DeKalb County",America/New_York,"404,770,470,678",NA,US,33.92,-84.34,4870 +30347,STANDARD,1,Atlanta,"Atl, Executive Park",,GA,"Fulton County",America/New_York,404,NA,US,33.82,-84.33,242 +30348,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.83,-84.38,41 +30349,STANDARD,0,Atlanta,"College Park, South Fulton",Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.61,-84.49,66560 +30350,STANDARD,0,Atlanta,"Dunwoody, Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,"404,770,678",NA,US,33.97,-84.32,28970 +30353,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30354,STANDARD,0,Atlanta,Hapeville,Atl,GA,"Fulton County",America/New_York,"770,404,678",NA,US,33.66,-84.39,12290 +30355,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.83,-84.36,836 +30356,"PO BOX",0,Atlanta,Dunwoody,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.94,-84.33,418 +30357,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.38,646 +30358,"PO BOX",0,Atlanta,"Sandy Spgs, Sandy Springs",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,702 +30359,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.82,-84.32,549 +30360,STANDARD,0,Atlanta,"Doraville, Dunwoody","Atl, Winters Chapel",GA,"DeKalb County",America/New_York,"470,404,678,770",NA,US,33.93,-84.27,13510 +30361,STANDARD,0,Atlanta,,Atl,GA,"Fulton County",America/New_York,"404,678,770",NA,US,33.78,-84.38,58 +30362,"PO BOX",0,Atlanta,Doraville,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,981 +30363,STANDARD,0,Atlanta,,,GA,"Fulton County",America/New_York,404,NA,US,33.79,-84.4,2240 +30364,"PO BOX",0,Atlanta,"East Point",Atl,GA,"Fulton County",America/New_York,404,NA,US,33.67,-84.46,880 +30366,"PO BOX",0,Atlanta,Chamblee,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.88,-84.29,375 +30368,UNIQUE,0,Atlanta,,"Atl, Suntrust",GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30369,STANDARD,0,Atlanta,,,GA,"Fulton County",America/New_York,"678,404,470",NA,US,33.8,-84.47,0 +30370,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30371,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30374,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.57,-84.39,0 +30375,UNIQUE,0,Atlanta,,"Atl, Att Bellsouth",GA,"Fulton County",America/New_York,404,NA,US,33.77,-84.38,0 +30376,STANDARD,1,Atlanta,Atl,,GA,"Fulton County",America/New_York,404,NA,US,33.81,-84.35,0 +30377,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,286 +30378,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30379,STANDARD,1,Atlanta,Atl,,GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30380,UNIQUE,0,Atlanta,,"Atl, Atlanta Postal Credit Union",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30384,UNIQUE,0,Atlanta,,"Atl, Bank America",GA,"Fulton County",America/New_York,404,NA,US,33.89,-84.45,0 +30385,UNIQUE,0,Atlanta,,"Atl, Att Bellsouth",GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30386,UNIQUE,1,Atlanta,Atl,"Sears Roebuck Co",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30387,UNIQUE,1,Atlanta,Atl,"J C Penney",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30388,UNIQUE,0,Atlanta,,"Atl, Avon",GA,"Fulton County",America/New_York,404,NA,US,33.76,-84.42,0 +30389,UNIQUE,1,Atlanta,Atl,"Atlanta Gas Light",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30390,UNIQUE,1,Atlanta,Atl,"J C Penney",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30392,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30394,"PO BOX",0,Atlanta,,Atl,GA,"Fulton County",America/New_York,404,NA,US,33.75,-84.38,0 +30396,UNIQUE,0,Atlanta,,"Atl, Georgia Power",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30398,UNIQUE,0,Atlanta,,"Atl, Bank America",GA,"Fulton County",America/New_York,404,NA,US,33.64,-84.39,0 +30399,UNIQUE,1,Atlanta,Atl,"Bankamerica Corporation",GA,"Fulton County",America/New_York,404,NA,US,33.74,-84.38,0 +30401,STANDARD,0,Swainsboro,"Covena, Summertown","Blun, Blundale, Dellwood, Gary, Kemp, Lexsy, Modoc, Wesley",GA,"Emanuel County",America/New_York,"478,912",NA,US,32.59,-82.33,10560 +30410,STANDARD,0,Ailey,,"Higgston, Mcgregor",GA,"Montgomery County",America/New_York,912,NA,US,32.18,-82.57,1280 +30411,STANDARD,0,Alamo,,,GA,"Wheeler County",America/New_York,"912,478",NA,US,32.14,-82.77,2020 +30412,"PO BOX",0,Alston,,,GA,"Montgomery County",America/New_York,912,NA,US,32.08,-82.49,150 +30413,STANDARD,0,Bartow,,,GA,"Jefferson County",America/New_York,478,NA,US,32.88,-82.47,1190 +30414,"PO BOX",0,Bellville,,,GA,"Evans County",America/New_York,912,NA,US,32.15,-81.97,193 +30415,STANDARD,0,Brooklet,,"Akin, Arcola, Denmark, Hubert, Ivanhoe, Mcgregor, Stilson",GA,"Bulloch County",America/New_York,912,NA,US,32.38,-81.66,6780 +30417,STANDARD,0,Claxton,,,GA,"Evans County",America/New_York,912,NA,US,32.16,-81.9,7900 +30420,STANDARD,0,Cobbtown,,Aline,GA,"Tattnall County",America/New_York,912,NA,US,32.28,-82.13,1410 +30421,STANDARD,0,Collins,,,GA,"Tattnall County",America/New_York,912,NA,US,32.18,-82.1,2400 +30423,"PO BOX",0,Daisy,,,GA,"Evans County",America/New_York,912,NA,US,32.15,-81.83,337 +30424,"PO BOX",0,Dover,,,GA,"Screven County",America/New_York,912,NA,US,32.57,-81.71,77 +30425,STANDARD,0,Garfield,,,GA,"Emanuel County",America/New_York,478,NA,US,32.65,-82.09,1110 +30426,STANDARD,0,Girard,,,GA,"Burke County",America/New_York,912,NA,US,33.04,-81.71,790 +30427,STANDARD,0,Glennville,,Mendes,GA,"Tattnall County",America/New_York,912,NA,US,31.93,-81.93,8800 +30428,STANDARD,0,Glenwood,,,GA,"Wheeler County",America/New_York,912,NA,US,32.18,-82.67,1770 +30429,"PO BOX",0,Hagan,,,GA,"Evans County",America/New_York,912,NA,US,32.17,-81.94,1364 +30434,STANDARD,0,Louisville,,"Grange, Rosier, Vidette",GA,"Jefferson County",America/New_York,478,NA,US,32.99,-82.4,4390 +30436,STANDARD,0,Lyons,"Oak Park","Cedar Crossing, Ohoopee, Santa Claus",GA,"Toombs County",America/New_York,912,NA,US,32.2,-82.32,9150 +30438,"PO BOX",0,Manassas,,,GA,"Tattnall County",America/New_York,912,NA,US,32.17,-82.02,71 +30439,STANDARD,0,Metter,,Excelsior,GA,"Candler County",America/New_York,912,NA,US,32.39,-82.06,7890 +30441,STANDARD,0,Midville,,"Coleman Lake, Colemans Lake, Green Way, Greenway, Herndon",GA,"Emanuel County",America/New_York,478,NA,US,32.82,-82.23,1620 +30442,STANDARD,0,Millen,Perkins,"Birdsville, Butts, Emmalane, Scarboro, Thrift",GA,"Jenkins County",America/New_York,478,NA,US,32.8,-81.94,5780 +30445,STANDARD,0,"Mount Vernon",,,GA,"Montgomery County",America/New_York,912,NA,US,32.18,-82.59,2090 +30446,STANDARD,0,Newington,,,GA,"Screven County",America/New_York,912,NA,US,32.58,-81.5,1230 +30447,"PO BOX",0,Norristown,,,GA,"Emanuel County",America/New_York,478,NA,US,32.56,-82.55,0 +30448,"PO BOX",0,Nunez,,,GA,"Emanuel County",America/New_York,478,NA,US,32.49,-82.36,190 +30449,"PO BOX",0,Oliver,,,GA,"Screven County",America/New_York,912,NA,US,32.52,-81.53,171 +30450,STANDARD,0,Portal,,Aaron,GA,"Bulloch County",America/New_York,912,NA,US,32.53,-81.93,2170 +30451,"PO BOX",0,Pulaski,,,GA,"Candler County",America/New_York,912,NA,US,32.39,-81.95,325 +30452,STANDARD,0,Register,,,GA,"Bulloch County",America/New_York,912,NA,US,32.36,-81.88,1250 +30453,STANDARD,0,Reidsville,,,GA,"Tattnall County",America/New_York,912,NA,US,32.08,-82.11,5070 +30454,STANDARD,0,Rockledge,,,GA,"Laurens County",America/New_York,478,NA,US,32.44,-82.73,580 +30455,STANDARD,0,"Rocky Ford",,,GA,"Screven County",America/New_York,912,NA,US,32.66,-81.82,510 +30456,STANDARD,0,Sardis,,,GA,"Burke County",America/New_York,"478,912",NA,US,32.97,-81.76,1570 +30457,STANDARD,0,Soperton,,,GA,"Treutlen County",America/New_York,912,NA,US,32.37,-82.59,4480 +30458,STANDARD,0,Statesboro,,,GA,"Bulloch County",America/New_York,912,NA,US,32.44,-81.77,24520 +30459,"PO BOX",0,Statesboro,,,GA,"Bulloch County",America/New_York,912,NA,US,32.44,-81.77,2235 +30460,UNIQUE,0,Statesboro,,"Ga Southern University",GA,"Bulloch County",America/New_York,912,NA,US,32.42,-81.78,254 +30461,STANDARD,0,Statesboro,,,GA,"Bulloch County",America/New_York,912,NA,US,32.51,-81.72,13240 +30464,"PO BOX",0,Stillmore,,,GA,"Emanuel County",America/New_York,478,NA,US,32.44,-82.22,518 +30467,STANDARD,0,Sylvania,Hiltonia,,GA,"Screven County",America/New_York,912,NA,US,32.75,-81.63,9330 +30470,STANDARD,0,Tarrytown,,,GA,"Montgomery County",America/New_York,912,NA,US,32.31,-82.55,770 +30471,STANDARD,0,"Twin City",,Canoochee,GA,"Emanuel County",America/New_York,"478,912",NA,US,32.58,-82.15,3370 +30473,STANDARD,0,Uvalda,,,GA,"Montgomery County",America/New_York,912,NA,US,32.03,-82.5,2050 +30474,STANDARD,0,Vidalia,,"Center, Charles, Kibbee, Normantown, Petross",GA,"Toombs County",America/New_York,912,NA,US,32.21,-82.4,12500 +30475,"PO BOX",0,Vidalia,,,GA,"Toombs County",America/New_York,912,NA,US,32.22,-82.37,2406 +30477,STANDARD,0,Wadley,,Moxley,GA,"Jefferson County",America/New_York,478,NA,US,32.86,-82.4,2440 +30499,UNIQUE,0,Reidsville,,"Georgia State Penitentiary",GA,"Tattnall County",America/New_York,912,NA,US,32.08,-82.11,0 +30501,STANDARD,0,Gainesville,,Westside,GA,"Hall County",America/New_York,"470,678,770",NA,US,34.29,-83.83,24830 +30502,"PO BOX",0,"Chestnut Mountain","Chestnut Mtn, Oakwood",,GA,"Hall County",America/New_York,678,NA,US,34.19,-83.85,384 +30503,"PO BOX",0,Gainesville,,,GA,"Hall County",America/New_York,678,NA,US,34.29,-83.83,2112 +30504,STANDARD,0,Gainesville,,,GA,"Hall County",America/New_York,"470,678,770",NA,US,34.27,-83.89,25280 +30506,STANDARD,0,Gainesville,,,GA,"Hall County",America/New_York,678,NA,US,34.35,-83.9,40210 +30507,STANDARD,0,Gainesville,,,GA,"Hall County",America/New_York,"770,470,678",NA,US,34.25,-83.77,28330 +30510,STANDARD,0,Alto,,,GA,"Habersham County",America/New_York,,NA,US,34.47,-83.57,5680 +30511,STANDARD,0,Baldwin,,,GA,"Banks County",America/New_York,,NA,US,34.48,-83.53,3150 +30512,STANDARD,0,Blairsville,,,GA,"Union County",America/New_York,706,NA,US,34.87,-83.95,16590 +30513,STANDARD,0,"Blue Ridge",,,GA,"Fannin County",America/New_York,"762,706",NA,US,34.86,-84.32,9610 +30514,"PO BOX",0,Blairsville,,,GA,"Union County",America/New_York,706,NA,US,34.87,-83.95,2962 +30515,"PO BOX",0,Buford,,,GA,"Gwinnett County",America/New_York,678,NA,US,34.11,-83.99,1072 +30516,STANDARD,0,Bowersville,,,GA,"Hart County",America/New_York,706,NA,US,34.37,-83.08,1630 +30517,STANDARD,0,Braselton,,,GA,"Jackson County",America/New_York,"706,762",NA,US,34.13,-83.8,15720 +30518,STANDARD,0,Buford,"Rest Haven, Sugar Hill",Sugarhill,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34.11,-83.99,50830 +30519,STANDARD,0,Buford,,,GA,"Gwinnett County",America/New_York,"470,678,770",NA,US,34.09,-83.94,48280 +30520,STANDARD,0,Canon,,,GA,"Franklin County",America/New_York,,NA,US,34.34,-83.11,3530 +30521,STANDARD,0,Carnesville,,,GA,"Franklin County",America/New_York,706,NA,US,34.36,-83.23,4330 +30522,STANDARD,0,"Cherry Log",,,GA,"Gilmer County",America/New_York,"706,762",NA,US,34.8,-84.34,950 +30523,STANDARD,0,Clarkesville,,,GA,"Habersham County",America/New_York,"706,762",NA,US,34.6,-83.52,11230 +30525,STANDARD,0,Clayton,,,GA,"Rabun County",America/New_York,706,NA,US,34.87,-83.4,7120 +30527,STANDARD,0,Clermont,,,GA,"Hall County",America/New_York,"678,770",NA,US,34.47,-83.77,4300 +30528,STANDARD,0,Cleveland,,,GA,"White County",America/New_York,706,NA,US,34.59,-83.76,19740 +30529,STANDARD,0,Commerce,,,GA,"Jackson County",America/New_York,"706,762",NA,US,34.2,-83.46,10310 +30530,STANDARD,0,Commerce,,,GA,"Banks County",America/New_York,"706,762",NA,US,34.22,-83.39,5610 +30531,STANDARD,0,Cornelia,,,GA,"Habersham County",America/New_York,706,NA,US,34.51,-83.52,10010 +30533,STANDARD,0,Dahlonega,,,GA,"Lumpkin County",America/New_York,706,NA,US,34.53,-83.98,19880 +30534,STANDARD,0,Dawsonville,,,GA,"Dawson County",America/New_York,706,NA,US,34.42,-84.11,26510 +30535,STANDARD,0,Demorest,,,GA,"Habersham County",America/New_York,706,NA,US,34.56,-83.54,6190 +30536,STANDARD,0,Ellijay,,,GA,"Gilmer County",America/New_York,706,NA,US,34.66,-84.33,6430 +30537,STANDARD,0,Dillard,"Sky Valley",,GA,"Rabun County",America/New_York,706,NA,US,34.97,-83.38,1110 +30538,STANDARD,0,Eastanollee,,,GA,"Stephens County",America/New_York,706,NA,US,34.49,-83.25,2630 +30539,"PO BOX",0,"East Ellijay",,,GA,"Gilmer County",America/New_York,706,NA,US,34.68,-84.47,2028 +30540,STANDARD,0,Ellijay,"East Ellijay",,GA,"Gilmer County",America/New_York,706,NA,US,34.69,-84.48,16020 +30541,STANDARD,0,Epworth,,,GA,"Fannin County",America/New_York,706,NA,US,34.92,-84.51,1530 +30542,STANDARD,0,"Flowery Branch","Flowery Br",,GA,"Hall County",America/New_York,"470,678,770",NA,US,34.18,-83.92,34450 +30543,STANDARD,0,Gillsville,,,GA,"Hall County",America/New_York,678,NA,US,34.31,-83.63,4470 +30544,"PO BOX",1,Habersham,Demorest,,GA,"Habersham County",America/New_York,706,NA,US,34.56,-83.54,0 +30545,STANDARD,0,Helen,,,GA,"White County",America/New_York,706,NA,US,34.7,-83.72,990 +30546,STANDARD,0,Hiawassee,,,GA,"Towns County",America/New_York,706,NA,US,34.94,-83.75,6390 +30547,STANDARD,0,Homer,,,GA,"Banks County",America/New_York,706,NA,US,34.33,-83.49,3000 +30548,STANDARD,0,Hoschton,,,GA,"Jackson County",America/New_York,706,NA,US,34.09,-83.76,20520 +30549,STANDARD,0,Jefferson,Arcade,,GA,"Jackson County",America/New_York,706,NA,US,34.13,-83.59,25150 +30552,STANDARD,0,Lakemont,,,GA,"Rabun County",America/New_York,706,NA,US,34.78,-83.41,1370 +30553,STANDARD,0,Lavonia,,,GA,"Franklin County",America/New_York,706,NA,US,34.43,-83.1,6550 +30554,STANDARD,0,Lula,,,GA,"Hall County",America/New_York,"678,770",NA,US,34.39,-83.66,7040 +30555,STANDARD,0,"Mc Caysville",,"Fry, Mccaysville",GA,"Fannin County",America/New_York,706,NA,US,34.98,-84.37,1750 +30557,STANDARD,0,Martin,Avalon,,GA,"Stephens County",America/New_York,,NA,US,34.48,-83.18,4010 +30558,STANDARD,0,Maysville,,,GA,"Jackson County",America/New_York,706,NA,US,34.25,-83.55,4510 +30559,STANDARD,0,"Mineral Bluff",,,GA,"Fannin County",America/New_York,706,NA,US,34.91,-84.27,3640 +30560,STANDARD,0,Morganton,,,GA,"Fannin County",America/New_York,706,NA,US,34.87,-84.24,3910 +30562,"PO BOX",0,"Mountain City",,,GA,"Rabun County",America/New_York,706,NA,US,34.91,-83.38,997 +30563,STANDARD,0,"Mount Airy",,,GA,"Habersham County",America/New_York,706,NA,US,34.51,-83.5,4890 +30564,STANDARD,0,Murrayville,,,GA,"Hall County",America/New_York,678,NA,US,34.44,-83.89,4150 +30565,STANDARD,0,Nicholson,,,GA,"Jackson County",America/New_York,706,NA,US,34.11,-83.43,4290 +30566,STANDARD,0,Oakwood,,,GA,"Hall County",America/New_York,678,NA,US,34.23,-83.88,7980 +30567,STANDARD,0,Pendergrass,,,GA,"Jackson County",America/New_York,706,NA,US,34.16,-83.67,3750 +30568,STANDARD,0,"Rabun Gap",,,GA,"Rabun County",America/New_York,706,NA,US,34.95,-83.39,1710 +30571,STANDARD,0,"Sautee Nacoochee","Saute Nacoche, Sautee",,GA,"White County",America/New_York,706,NA,US,34.74,-83.71,2720 +30572,STANDARD,0,Suches,,,GA,"Union County",America/New_York,"762,706",NA,US,34.73,-84.06,860 +30573,"PO BOX",0,"Tallulah Falls","Tallulah Fls",,GA,"Rabun County",America/New_York,,NA,US,34.75,-83.42,209 +30575,STANDARD,0,Talmo,,,GA,"Jackson County",America/New_York,706,NA,US,34.21,-83.71,1470 +30576,STANDARD,0,Tiger,,,GA,"Rabun County",America/New_York,706,NA,US,34.84,-83.43,2190 +30577,STANDARD,0,Toccoa,,Avalon,GA,"Stephens County",America/New_York,706,NA,US,34.57,-83.32,17570 +30580,"PO BOX",0,Turnerville,,,GA,"Habersham County",America/New_York,706,NA,US,34.68,-83.42,398 +30581,"PO BOX",0,Wiley,,,GA,"Rabun County",America/New_York,706,NA,US,34.8,-83.42,339 +30582,STANDARD,0,"Young Harris",,,GA,"Towns County",America/New_York,"706,762",NA,US,34.93,-83.84,4030 +30596,UNIQUE,1,Alto,,"Ga Industrial Institute",GA,"Habersham County",America/New_York,706,NA,US,34.44,-83.59,0 +30597,UNIQUE,0,Dahlonega,,"North Georgia College",GA,"Lumpkin County",America/New_York,706,NA,US,34.53,-83.98,44 +30598,"PO BOX",0,"Toccoa Falls",,,GA,"Stephens County",America/New_York,706,NA,US,34.57,-83.32,285 +30599,UNIQUE,0,Commerce,,Baker-Taylor,GA,"Jackson County",America/New_York,706,NA,US,34.2,-83.46,0 +30601,STANDARD,0,Athens,,,GA,"Clarke County",America/New_York,"706,762",NA,US,34,-83.34,14460 +30602,UNIQUE,0,Athens,,"University Of Georgia",GA,"Clarke County",America/New_York,706,NA,US,33.94,-83.37,77 +30603,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,624 +30604,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,1230 +30605,STANDARD,0,Athens,,,GA,"Clarke County",America/New_York,762,NA,US,33.91,-83.32,24080 +30606,STANDARD,0,Athens,,"Navy Supply Corps School",GA,"Clarke County",America/New_York,"706,762,678,770",NA,US,33.95,-83.39,33630 +30607,STANDARD,0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,34.02,-83.45,9500 +30608,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,990 +30609,UNIQUE,0,Athens,,"University Of Georgia",GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.38,110 +30612,"PO BOX",0,Athens,,,GA,"Clarke County",America/New_York,706,NA,US,33.95,-83.39,94 +30619,STANDARD,0,Arnoldsville,,,GA,"Oglethorpe County",America/New_York,706,NA,US,33.91,-83.21,1390 +30620,STANDARD,0,Bethlehem,,,GA,"Barrow County",America/New_York,678,NA,US,33.93,-83.76,13930 +30621,STANDARD,0,Bishop,"N High Shoals, North High Shoals",,GA,"Oconee County",America/New_York,706,NA,US,33.81,-83.43,5690 +30622,STANDARD,0,Bogart,,,GA,"Oconee County",America/New_York,"470,678,770",NA,US,33.94,-83.53,10200 +30623,"PO BOX",0,Bostwick,,,GA,"Morgan County",America/New_York,,NA,US,33.73,-83.54,491 +30624,STANDARD,0,Bowman,,,GA,"Elbert County",America/New_York,706,NA,US,34.2,-83.02,2190 +30625,STANDARD,0,Buckhead,,,GA,"Morgan County",America/New_York,,NA,US,33.56,-83.36,2170 +30627,STANDARD,0,Carlton,,,GA,"Oglethorpe County",America/New_York,706,NA,US,34.04,-83.03,1840 +30628,STANDARD,0,Colbert,,,GA,"Madison County",America/New_York,706,NA,US,34.03,-83.21,6150 +30629,STANDARD,0,Comer,,,GA,"Madison County",America/New_York,706,NA,US,34.06,-83.12,4050 +30630,STANDARD,0,Crawford,,,GA,"Oglethorpe County",America/New_York,706,NA,US,33.88,-83.15,2100 +30631,STANDARD,0,Crawfordville,,,GA,"Taliaferro County",America/New_York,706,NA,US,33.55,-82.89,1140 +30633,STANDARD,0,Danielsville,,,GA,"Madison County",America/New_York,706,NA,US,34.12,-83.22,7020 +30634,STANDARD,0,"Dewy Rose",,,GA,"Elbert County",America/New_York,706,NA,US,34.16,-82.95,2010 +30635,STANDARD,0,Elberton,,,GA,"Elbert County",America/New_York,706,NA,US,34.1,-82.86,12490 +30638,"PO BOX",0,Farmington,,,GA,"Oconee County",America/New_York,706,NA,US,33.81,-83.4,241 +30639,"PO BOX",0,"Franklin Springs","Franklin Spgs",,GA,"Franklin County",America/New_York,706,NA,US,34.28,-83.14,425 +30641,STANDARD,0,"Good Hope",,,GA,"Walton County",America/New_York,,NA,US,33.78,-83.6,1700 +30642,STANDARD,0,Greensboro,,"Reynolds Plantation",GA,"Greene County",America/New_York,"706,762",NA,US,33.57,-83.18,11990 +30643,STANDARD,0,Hartwell,,,GA,"Hart County",America/New_York,706,NA,US,34.35,-82.93,13380 +30645,"PO BOX",0,"High Shoals",,,GA,,America/New_York,,NA,US,33.81,-83.5,195 +30646,STANDARD,0,Hull,,,GA,"Madison County",America/New_York,706,NA,US,34.01,-83.29,6860 +30647,"PO BOX",0,Ila,,,GA,"Madison County",America/New_York,706,NA,US,34.17,-83.29,670 +46792,STANDARD,0,Warren,,"Buckeye, Dillman, Meth Mem Home, Methodist Mem Home, Methodist Memorial Home, Mount Zion, Pleasant Plain, Plum Tree, Salamonie",IN,"Huntington County",America/Indiana/Indianapolis,260,NA,US,40.68,-85.42,3470 +46793,STANDARD,0,Waterloo,,Sedan,IN,"DeKalb County",America/Indiana/Indianapolis,260,NA,US,41.43,-85.02,3920 +46794,STANDARD,0,Wawaka,Brimfield,"Brimfld, Cosperville, Diamond Lake, Waldron Lake",IN,"Noble County",America/Indiana/Indianapolis,260,NA,US,41.48,-85.48,1230 +46795,STANDARD,0,Wolcottville,,"Adams Lake, Lakeside, Pretty Lake, Shady Nook, Timberhurst, Witmer Manor, Woodland Park, Woodruff",IN,"LaGrange County",America/Indiana/Indianapolis,260,NA,US,41.52,-85.36,5850 +46796,"PO BOX",0,Wolflake,,"Wolf Lake",IN,"Noble County",America/Indiana/Indianapolis,260,NA,US,41.32,-85.48,210 +46797,STANDARD,0,Woodburn,,"Edgerton, Maumee",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.12,-84.85,3820 +46798,STANDARD,0,Yoder,,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,40.93,-85.2,1220 +46799,"PO BOX",0,Zanesville,,,IN,"Wells County",America/Indiana/Indianapolis,260,NA,US,40.91,-85.29,526 +46801,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,44 +46802,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.17,7200 +46803,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,7840 +46804,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.05,-85.24,26630 +46805,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.1,-85.12,17330 +46806,STANDARD,0,"Fort Wayne",,"Diplomat, Diplomat Plaza, Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.05,-85.09,21420 +46807,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.04,-85.15,14750 +46808,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.1,-85.18,16570 +46809,STANDARD,0,"Fort Wayne",,"Ft Wayne, Waynedale",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41,-85.21,7720 +46814,STANDARD,0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.05,-85.3,16210 +46815,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.1,-85.06,25180 +46816,STANDARD,0,"Fort Wayne",,"Diplomat, Ft Wayne, Maples, Southtown, Southtown Mall",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41,-85.04,16270 +46818,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.16,-85.25,19630 +46819,STANDARD,0,"Fort Wayne",,"Ft Wayne, Poe, Waynedale",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,40.97,-85.13,8020 +46825,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.15,-85.13,25750 +46835,STANDARD,0,"Fort Wayne",,"Ft Wayne",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.15,-85.04,33110 +46845,STANDARD,0,"Fort Wayne",,"Ft Wayne, Hazelwood",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.21,-85.11,27850 +46850,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,28 +46851,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,35 +46852,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,38 +46853,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,58 +46854,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,50 +46855,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,59 +46856,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,20 +46857,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46858,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46859,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,76 +46860,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46861,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46862,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,34 +46863,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,35 +46864,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,50 +46865,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,65 +46866,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,101 +46867,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,65 +46868,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,58 +46869,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,56 +46885,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,236 +46895,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,164 +46896,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,243 +46897,UNIQUE,0,"Fort Wayne",,"Business Reply, Fort Wayne Brm",IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,0 +46898,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,283 +46899,"PO BOX",0,"Fort Wayne",,,IN,"Allen County",America/Indiana/Indianapolis,260,NA,US,41.07,-85.13,172 +46901,STANDARD,0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.53,-86.17,32550 +46902,STANDARD,0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.47,-86.13,32490 +46903,"PO BOX",0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.47,-86.13,392 +46904,"PO BOX",0,Kokomo,,,IN,"Howard County",America/Indiana/Indianapolis,765,NA,US,40.47,-86.13,778 \ No newline at end of file diff --git a/spring-6/api-gateway/README.md b/spring-6/api-gateway/README.md new file mode 100644 index 0000000000..d0d8cbb8a2 --- /dev/null +++ b/spring-6/api-gateway/README.md @@ -0,0 +1,2 @@ +### Relevant Articles: +- [Global Exception Handling with Spring Cloud Gateway](https://www.baeldung.com/spring-cloud-global-exception-handling) diff --git a/spring-batch-2/README.md b/spring-batch-2/README.md index 9b5d59f0b9..cddd52e70a 100644 --- a/spring-batch-2/README.md +++ b/spring-batch-2/README.md @@ -2,4 +2,5 @@ - [Spring Boot With Spring Batch](https://www.baeldung.com/spring-boot-spring-batch) - [How to Trigger and Stop a Scheduled Spring Batch Job](https://www.baeldung.com/spring-batch-start-stop-job) +- [Access Job Parameters From ItemReader in Spring Batch](https://www.baeldung.com/spring-batch-itemreader-access-job-parameters) - More articles [[<-- prev]](/spring-batch) diff --git a/spring-batch-2/pom.xml b/spring-batch-2/pom.xml index 378191c91c..5b6a012e96 100644 --- a/spring-batch-2/pom.xml +++ b/spring-batch-2/pom.xml @@ -48,12 +48,18 @@ ${awaitility.version} test + + org.projectlombok + lombok + ${lombok.version} + 5.0.0 4.2.0 com.baeldung.batch.SpringBootBatchProcessingApplication + 1.18.28 \ No newline at end of file diff --git a/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/BatchConfiguration.java b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/BatchConfiguration.java new file mode 100644 index 0000000000..8fe567c4ea --- /dev/null +++ b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/BatchConfiguration.java @@ -0,0 +1,78 @@ +package com.baeldung.batchreaderproperties; + +import java.time.ZonedDateTime; +import java.util.Map; + +import org.springframework.batch.core.Job; +import org.springframework.batch.core.Step; +import org.springframework.batch.core.configuration.annotation.StepScope; +import org.springframework.batch.core.job.builder.JobBuilder; +import org.springframework.batch.core.launch.support.RunIdIncrementer; +import org.springframework.batch.core.repository.JobRepository; +import org.springframework.batch.core.step.builder.StepBuilder; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.jdbc.core.JdbcTemplate; +import org.springframework.transaction.PlatformTransactionManager; + +import com.baeldung.batchreaderproperties.job.ExpiresSoonMedicineReader; +import com.baeldung.batchreaderproperties.job.MedicineProcessor; +import com.baeldung.batchreaderproperties.job.MedicineWriter; +import com.baeldung.batchreaderproperties.model.Medicine; + +@Configuration +public class BatchConfiguration { + + @Bean + @StepScope + public ExpiresSoonMedicineReader expiresSoonMedicineReader(JdbcTemplate jdbcTemplate, @Value("#{jobParameters}") Map jobParameters) { + + ExpiresSoonMedicineReader medicineReader = new ExpiresSoonMedicineReader(jdbcTemplate); + enrichWithJobParameters(jobParameters, medicineReader); + return medicineReader; + } + + @Bean + @StepScope + public MedicineProcessor medicineProcessor(@Value("#{jobParameters}") Map jobParameters) { + MedicineProcessor medicineProcessor = new MedicineProcessor(); + enrichWithJobParameters(jobParameters, medicineProcessor); + return medicineProcessor; + } + + @Bean + @StepScope + public MedicineWriter medicineWriter(@Value("#{jobParameters}") Map jobParameters) { + MedicineWriter medicineWriter = new MedicineWriter(); + enrichWithJobParameters(jobParameters, medicineWriter); + return medicineWriter; + } + + @Bean + public Job medExpirationJob(JobRepository jobRepository, PlatformTransactionManager transactionManager, MedicineWriter medicineWriter, MedicineProcessor medicineProcessor, ExpiresSoonMedicineReader expiresSoonMedicineReader) { + Step notifyAboutExpiringMedicine = new StepBuilder("notifyAboutExpiringMedicine", jobRepository).chunk(10) + .reader(expiresSoonMedicineReader) + .processor(medicineProcessor) + .writer(medicineWriter) + .faultTolerant() + .transactionManager(transactionManager) + .build(); + + return new JobBuilder("medExpirationJob", jobRepository).incrementer(new RunIdIncrementer()) + .start(notifyAboutExpiringMedicine) + .build(); + } + + private void enrichWithJobParameters(Map jobParameters, ContainsJobParameters container) { + if (jobParameters.get(BatchConstants.TRIGGERED_DATE_TIME) != null) { + container.setTriggeredDateTime(ZonedDateTime.parse(jobParameters.get(BatchConstants.TRIGGERED_DATE_TIME) + .toString())); + } + if (jobParameters.get(BatchConstants.TRACE_ID) != null) { + container.setTraceId(jobParameters.get(BatchConstants.TRACE_ID) + .toString()); + } + } + +} diff --git a/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/BatchConstants.java b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/BatchConstants.java new file mode 100644 index 0000000000..ac86bd223a --- /dev/null +++ b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/BatchConstants.java @@ -0,0 +1,10 @@ +package com.baeldung.batchreaderproperties; + +public class BatchConstants { + public static final String TRIGGERED_DATE_TIME = "TRIGGERED_DATE_TIME"; + public static final String TRACE_ID = "TRACE_ID"; + public static final String ALERT_TYPE = "ALERT_TYPE"; + public static final String DEFAULT_EXPIRATION = "DEFAULT_EXPIRATION"; + public static final String SALE_STARTS_DAYS = "SALE_STARTS_DAYS"; + public static final String MEDICINE_SALE = "MEDICINE_SALE"; +} diff --git a/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/ContainsJobParameters.java b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/ContainsJobParameters.java new file mode 100644 index 0000000000..517246ca07 --- /dev/null +++ b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/ContainsJobParameters.java @@ -0,0 +1,11 @@ +package com.baeldung.batchreaderproperties; + +import java.time.ZonedDateTime; + +public interface ContainsJobParameters { + ZonedDateTime getTriggeredDateTime(); + String getTraceId(); + + void setTriggeredDateTime(ZonedDateTime triggeredDateTime); + void setTraceId(String traceId); +} diff --git a/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/MedExpirationBatchRunner.java b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/MedExpirationBatchRunner.java new file mode 100644 index 0000000000..cf031727ba --- /dev/null +++ b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/MedExpirationBatchRunner.java @@ -0,0 +1,65 @@ +package com.baeldung.batchreaderproperties; + +import java.time.ZoneOffset; +import java.time.ZonedDateTime; +import java.util.UUID; + +import org.springframework.batch.core.Job; +import org.springframework.batch.core.JobParameters; +import org.springframework.batch.core.JobParametersBuilder; +import org.springframework.batch.core.launch.JobLauncher; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.scheduling.annotation.EnableScheduling; +import org.springframework.scheduling.annotation.Scheduled; +import org.springframework.stereotype.Component; + +import lombok.extern.slf4j.Slf4j; + +@Slf4j +@Component +@EnableScheduling +public class MedExpirationBatchRunner { + + @Autowired + private Job medExpirationJob; + + @Autowired + private JobLauncher jobLauncher; + + @Value("${batch.medicine.alert_type}") + private String alertType; + + @Value("${batch.medicine.expiration.default.days}") + private long defaultExpiration; + + @Value("${batch.medicine.start.sale.default.days}") + private long saleStartDays; + + @Value("${batch.medicine.sale}") + private double medicineSale; + + @Scheduled(cron = "${batch.medicine.cron}", zone = "GMT") + public void runJob() { + ZonedDateTime now = ZonedDateTime.now(ZoneOffset.UTC); + launchJob(now); + } + + public void launchJob(ZonedDateTime triggerZonedDateTime) { + try { + JobParameters jobParameters = new JobParametersBuilder().addString(BatchConstants.TRIGGERED_DATE_TIME, triggerZonedDateTime.toString()) + .addString(BatchConstants.ALERT_TYPE, alertType) + .addLong(BatchConstants.DEFAULT_EXPIRATION, defaultExpiration) + .addLong(BatchConstants.SALE_STARTS_DAYS, saleStartDays) + .addDouble(BatchConstants.MEDICINE_SALE, medicineSale) + .addString(BatchConstants.TRACE_ID, UUID.randomUUID() + .toString()) + .toJobParameters(); + + jobLauncher.run(medExpirationJob, jobParameters); + } catch (Exception e) { + log.error("Failed to run", e); + } + } + +} diff --git a/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/SpringBatchExpireMedicationApplication.java b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/SpringBatchExpireMedicationApplication.java new file mode 100644 index 0000000000..f71dc323c7 --- /dev/null +++ b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/SpringBatchExpireMedicationApplication.java @@ -0,0 +1,15 @@ +package com.baeldung.batchreaderproperties; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.context.annotation.PropertySource; + +@SpringBootApplication +@PropertySource("classpath:disable-job-autorun.properties") +public class SpringBatchExpireMedicationApplication { + + public static void main(String[] args) { + SpringApplication.run(SpringBatchExpireMedicationApplication.class, args); + } + +} diff --git a/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/job/ExpiresSoonMedicineReader.java b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/job/ExpiresSoonMedicineReader.java new file mode 100644 index 0000000000..821d054818 --- /dev/null +++ b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/job/ExpiresSoonMedicineReader.java @@ -0,0 +1,84 @@ +package com.baeldung.batchreaderproperties.job; + +import java.sql.ResultSet; +import java.sql.SQLException; +import java.time.ZonedDateTime; +import java.util.List; +import java.util.UUID; + +import org.springframework.batch.core.JobParameters; +import org.springframework.batch.core.StepExecution; +import org.springframework.batch.core.annotation.BeforeStep; +import org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.jdbc.core.JdbcTemplate; +import org.springframework.util.ClassUtils; + +import com.baeldung.batchreaderproperties.ContainsJobParameters; +import com.baeldung.batchreaderproperties.model.Medicine; +import com.baeldung.batchreaderproperties.model.MedicineCategory; + +import jakarta.annotation.PostConstruct; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.Setter; +import lombok.extern.slf4j.Slf4j; + +@Getter +@Setter +@RequiredArgsConstructor +@Slf4j +public class ExpiresSoonMedicineReader extends AbstractItemCountingItemStreamItemReader implements ContainsJobParameters { + + private static final String FIND_EXPIRING_SOON_MEDICINE = "Select * from MEDICINE where EXPIRATION_DATE >= CURRENT_DATE AND EXPIRATION_DATE <= DATEADD('DAY', ?, CURRENT_DATE)"; + //common job parameters populated in bean initialization + private ZonedDateTime triggeredDateTime; + private String traceId; + //job parameter injected by Spring + @Value("#{jobParameters['DEFAULT_EXPIRATION']}") + private long defaultExpiration; + + private final JdbcTemplate jdbcTemplate; + + private List expiringMedicineList; + + @Override + protected Medicine doRead() { + if (expiringMedicineList != null && !expiringMedicineList.isEmpty()) { + return expiringMedicineList.get(getCurrentItemCount() - 1); + } + + return null; + } + + @Override + protected void doOpen() { + expiringMedicineList = jdbcTemplate.query(FIND_EXPIRING_SOON_MEDICINE, ps -> ps.setLong(1, defaultExpiration), (rs, row) -> getMedicine(rs)); + + log.info("Trace = {}. Found {} meds that expires soon", traceId, expiringMedicineList.size()); + if (!expiringMedicineList.isEmpty()) { + setMaxItemCount(expiringMedicineList.size()); + } + } + + private static Medicine getMedicine(ResultSet rs) throws SQLException { + return new Medicine(UUID.fromString(rs.getString(1)), rs.getString(2), MedicineCategory.valueOf(rs.getString(3)), rs.getTimestamp(4), rs.getDouble(5), rs.getObject(6, Double.class)); + } + + @Override + protected void doClose() { + + } + + @PostConstruct + public void init() { + setName(ClassUtils.getShortName(getClass())); + } + + @BeforeStep + public void beforeStep(StepExecution stepExecution) { + JobParameters parameters = stepExecution.getJobExecution() + .getJobParameters(); + log.info("Before step params: {}", parameters); + } +} diff --git a/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/job/MedicineProcessor.java b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/job/MedicineProcessor.java new file mode 100644 index 0000000000..5e4e853c98 --- /dev/null +++ b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/job/MedicineProcessor.java @@ -0,0 +1,46 @@ +package com.baeldung.batchreaderproperties.job; + +import java.sql.Timestamp; +import java.time.Duration; +import java.time.ZoneId; +import java.time.ZonedDateTime; + +import org.springframework.batch.item.ItemProcessor; +import org.springframework.beans.factory.annotation.Value; + +import com.baeldung.batchreaderproperties.ContainsJobParameters; +import com.baeldung.batchreaderproperties.model.Medicine; + +import lombok.Getter; +import lombok.Setter; +import lombok.extern.slf4j.Slf4j; + +@Slf4j +@Getter +@Setter +public class MedicineProcessor implements ItemProcessor, ContainsJobParameters { + + private ZonedDateTime triggeredDateTime; + private String traceId; + + @Value("#{jobParameters['SALE_STARTS_DAYS']}") + private long saleStartsDays; + @Value("#{jobParameters['MEDICINE_SALE']}") + private double medicineSale; + + @Override + public Medicine process(Medicine medicine) { + + final Double originalPrice = medicine.getOriginalPrice(); + final Timestamp expirationDate = medicine.getExpirationDate(); + + Duration daysToExpiration = Duration.between(ZonedDateTime.now(), ZonedDateTime.ofInstant(expirationDate.toInstant(), ZoneId.of("UTC"))); + + if (daysToExpiration.toDays() < saleStartsDays) { + medicine.setSalePrice(originalPrice * (1 - medicineSale)); + log.info("Trace = {}, calculated new sale price {} for medicine {}", traceId, medicine.getSalePrice(), medicine.getId()); + } + + return medicine; + } +} diff --git a/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/job/MedicineWriter.java b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/job/MedicineWriter.java new file mode 100644 index 0000000000..47c1a6a831 --- /dev/null +++ b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/job/MedicineWriter.java @@ -0,0 +1,29 @@ +package com.baeldung.batchreaderproperties.job; + +import java.time.ZonedDateTime; + +import org.springframework.batch.item.Chunk; +import org.springframework.batch.item.ItemWriter; + +import com.baeldung.batchreaderproperties.ContainsJobParameters; +import com.baeldung.batchreaderproperties.model.Medicine; + +import lombok.Getter; +import lombok.Setter; +import lombok.extern.slf4j.Slf4j; + +@Getter +@Setter +@Slf4j +public class MedicineWriter implements ItemWriter, ContainsJobParameters { + + private ZonedDateTime triggeredDateTime; + private String traceId; + + @Override + public void write(Chunk chunk) { + chunk.forEach((medicine) -> log.info("Trace = {}. This medicine is expiring {}", traceId, medicine)); + + log.info("Finishing job started at {}", triggeredDateTime); + } +} diff --git a/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/model/Medicine.java b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/model/Medicine.java new file mode 100644 index 0000000000..0d657f8a8b --- /dev/null +++ b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/model/Medicine.java @@ -0,0 +1,18 @@ +package com.baeldung.batchreaderproperties.model; + +import java.sql.Timestamp; +import java.util.UUID; + +import lombok.AllArgsConstructor; +import lombok.Data; + +@Data +@AllArgsConstructor +public class Medicine { + private UUID id; + private String name; + private MedicineCategory type; + private Timestamp expirationDate; + private Double originalPrice; + private Double salePrice; +} diff --git a/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/model/MedicineCategory.java b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/model/MedicineCategory.java new file mode 100644 index 0000000000..6a2f9b50e1 --- /dev/null +++ b/spring-batch-2/src/main/java/com/baeldung/batchreaderproperties/model/MedicineCategory.java @@ -0,0 +1,5 @@ +package com.baeldung.batchreaderproperties.model; + +public enum MedicineCategory { + ANESTHETICS, ANTIBACTERIALS, ANTIDEPRESSANTS; +} diff --git a/spring-batch-2/src/main/resources/application.properties b/spring-batch-2/src/main/resources/application.properties index 0b8c56d3f8..bbca1d65a2 100644 --- a/spring-batch-2/src/main/resources/application.properties +++ b/spring-batch-2/src/main/resources/application.properties @@ -1 +1,7 @@ -file.input=coffee-list.csv \ No newline at end of file +file.input=coffee-list.csv +##medicine batch related properties +batch.medicine.cron=0 */1 * * * * +batch.medicine.alert_type=LOGS +batch.medicine.expiration.default.days=60 +batch.medicine.start.sale.default.days=45 +batch.medicine.sale=0.1 \ No newline at end of file diff --git a/spring-batch-2/src/main/resources/data.sql b/spring-batch-2/src/main/resources/data.sql new file mode 100644 index 0000000000..4147f20390 --- /dev/null +++ b/spring-batch-2/src/main/resources/data.sql @@ -0,0 +1,4 @@ +INSERT INTO medicine VALUES ('ec278dd3-87b9-4ad1-858f-dfe5bc34bdb5', 'Lidocaine', 'ANESTHETICS', DATEADD('DAY', 120, CURRENT_DATE), 10, null); +INSERT INTO medicine VALUES ('9d39321d-34f3-4eb7-bb9a-a69734e0e372', 'Flucloxacillin', 'ANTIBACTERIALS', DATEADD('DAY', 40, CURRENT_DATE), 20, null); +INSERT INTO medicine VALUES ('87f4ff13-de40-4c7f-95db-627f309394dd', 'Amoxicillin', 'ANTIBACTERIALS', DATEADD('DAY', 70, CURRENT_DATE), 30, null); +INSERT INTO medicine VALUES ('acd99d6a-27be-4c89-babe-0edf4dca22cb', 'Prozac', 'ANTIDEPRESSANTS', DATEADD('DAY', 30, CURRENT_DATE), 40, null); \ No newline at end of file diff --git a/spring-batch-2/src/main/resources/disable-job-autorun.properties b/spring-batch-2/src/main/resources/disable-job-autorun.properties new file mode 100644 index 0000000000..132728afcd --- /dev/null +++ b/spring-batch-2/src/main/resources/disable-job-autorun.properties @@ -0,0 +1 @@ +spring.batch.job.enabled=false \ No newline at end of file diff --git a/spring-batch-2/src/main/resources/schema-all.sql b/spring-batch-2/src/main/resources/schema-all.sql index c17b9f9749..8e04e9a0ed 100644 --- a/spring-batch-2/src/main/resources/schema-all.sql +++ b/spring-batch-2/src/main/resources/schema-all.sql @@ -5,4 +5,15 @@ CREATE TABLE coffee ( brand VARCHAR(20), origin VARCHAR(20), characteristics VARCHAR(30) +); + +DROP TABLE medicine IF EXISTS; + +CREATE TABLE medicine ( + med_id VARCHAR(36) PRIMARY KEY, + name VARCHAR(30), + type VARCHAR(30), + expiration_date TIMESTAMP, + original_price DECIMAL, + sale_price DECIMAL ); \ No newline at end of file diff --git a/spring-boot-modules/spring-boot-3-grpc/README.md b/spring-boot-modules/spring-boot-3-grpc/README.md new file mode 100644 index 0000000000..2aaf35bf20 --- /dev/null +++ b/spring-boot-modules/spring-boot-3-grpc/README.md @@ -0,0 +1,2 @@ +### Relevant Articles +- [Introduction to gRPC with Spring Boot](https://www.baeldung.com/spring-boot-grpc) diff --git a/spring-boot-modules/spring-boot-3-observation/README.md b/spring-boot-modules/spring-boot-3-observation/README.md index 6d8c02af67..ae812d5f56 100644 --- a/spring-boot-modules/spring-boot-3-observation/README.md +++ b/spring-boot-modules/spring-boot-3-observation/README.md @@ -1,3 +1,3 @@ ## Relevant Articles -- [Observability with Spring Boot 3](https://www.baeldung.com/spring-boot-3-observability) +- [Observability With Spring Boot 3](https://www.baeldung.com/spring-boot-3-observability) - [Intercept SQL Logging with P6Spy](https://www.baeldung.com/java-p6spy-intercept-sql-logging) diff --git a/spring-boot-modules/spring-boot-basic-customization-2/README.md b/spring-boot-modules/spring-boot-basic-customization-2/README.md index 0f4167d25b..4cd0ffc824 100644 --- a/spring-boot-modules/spring-boot-basic-customization-2/README.md +++ b/spring-boot-modules/spring-boot-basic-customization-2/README.md @@ -10,4 +10,5 @@ This module contains articles about Spring Boot customization 2 - [Spring Boot Exit Codes](https://www.baeldung.com/spring-boot-exit-codes) - [Guide to Spring Type Conversions](https://www.baeldung.com/spring-type-conversions) - [Container Configuration in Spring Boot 2](https://www.baeldung.com/embeddedservletcontainercustomizer-configurableembeddedservletcontainer-spring-boot) - - [Speed up Spring Boot Startup Time](https://www.baeldung.com/spring-boot-startup-speed) \ No newline at end of file + - [Speed up Spring Boot Startup Time](https://www.baeldung.com/spring-boot-startup-speed) + - More articles: [[<-- prev]](/spring-boot-modules/spring-boot-basic-customization) \ No newline at end of file diff --git a/spring-boot-modules/spring-boot-basic-customization-2/pom.xml b/spring-boot-modules/spring-boot-basic-customization-2/pom.xml index 439051c7e6..452207bfc2 100644 --- a/spring-boot-modules/spring-boot-basic-customization-2/pom.xml +++ b/spring-boot-modules/spring-boot-basic-customization-2/pom.xml @@ -9,9 +9,10 @@ Module For Spring Boot Basic Customization 2 - com.baeldung.spring-boot-modules - spring-boot-modules - 1.0.0-SNAPSHOT + com.baeldung + parent-boot-3 + 0.0.1-SNAPSHOT + ../../parent-boot-3 diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/conf/WebConf.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/conf/WebConf.java index 7c52b117fd..9d54a7f80b 100644 --- a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/conf/WebConf.java +++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/conf/WebConf.java @@ -7,7 +7,7 @@ import org.springframework.boot.web.servlet.ServletRegistrationBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; -import javax.servlet.ServletContextListener; +import jakarta.servlet.ServletContextListener; @Configuration public class WebConf { diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/filter/CustomFilter.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/filter/CustomFilter.java index 8429fc855f..47c8b492a9 100644 --- a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/filter/CustomFilter.java +++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/filter/CustomFilter.java @@ -4,7 +4,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; -import javax.servlet.*; +import jakarta.servlet.*; import java.io.IOException; @Component diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/listener/CustomListener.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/listener/CustomListener.java index 62b316c012..8ea990a026 100644 --- a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/listener/CustomListener.java +++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/listener/CustomListener.java @@ -3,8 +3,8 @@ package com.baeldung.dispatchservlet.listener; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import javax.servlet.ServletContextEvent; -import javax.servlet.ServletContextListener; +import jakarta.servlet.ServletContextEvent; +import jakarta.servlet.ServletContextListener; public class CustomListener implements ServletContextListener { diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/servlet/CustomServlet.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/servlet/CustomServlet.java index 2a99e797ce..b01116eb20 100644 --- a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/servlet/CustomServlet.java +++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/servlet/CustomServlet.java @@ -4,11 +4,11 @@ import com.baeldung.dispatchservlet.filter.CustomFilter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import javax.servlet.ServletException; -import javax.servlet.annotation.WebServlet; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.ServletException; +import jakarta.servlet.annotation.WebServlet; +import jakarta.servlet.http.HttpServlet; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import java.io.IOException; public class CustomServlet extends HttpServlet { diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/AuthenticationFilter.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/AuthenticationFilter.java index 7ddcde7dc8..c7f5ea04f3 100644 --- a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/AuthenticationFilter.java +++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/AuthenticationFilter.java @@ -3,10 +3,10 @@ package com.baeldung.onceperrequestfilter; import org.springframework.stereotype.Component; import org.springframework.web.filter.OncePerRequestFilter; -import javax.servlet.FilterChain; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.FilterChain; +import jakarta.servlet.ServletException; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import java.io.IOException; @Component diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/HelloController.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/HelloController.java index 0a354c91ac..225fb7ac78 100644 --- a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/HelloController.java +++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/HelloController.java @@ -6,7 +6,7 @@ import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.context.request.async.DeferredResult; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletResponse; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/MyOncePerRequestFilter.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/MyOncePerRequestFilter.java index 3fd304f86b..4543af06b7 100644 --- a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/MyOncePerRequestFilter.java +++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/onceperrequestfilter/MyOncePerRequestFilter.java @@ -5,10 +5,10 @@ import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import org.springframework.web.filter.OncePerRequestFilter; -import javax.servlet.FilterChain; -import javax.servlet.ServletException; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.FilterChain; +import jakarta.servlet.ServletException; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import java.io.IOException; @Component diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/typeconversion/entity/Employee.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/typeconversion/entity/Employee.java index e1897de877..d05ecab621 100644 --- a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/typeconversion/entity/Employee.java +++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/typeconversion/entity/Employee.java @@ -1,7 +1,7 @@ package com.baeldung.typeconversion.entity; -import javax.persistence.Entity; -import javax.persistence.Id; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; @Entity public class Employee { diff --git a/spring-boot-modules/spring-boot-basic-customization/README.md b/spring-boot-modules/spring-boot-basic-customization/README.md index a3d9f1b1fc..0e5c5ddcbe 100644 --- a/spring-boot-modules/spring-boot-basic-customization/README.md +++ b/spring-boot-modules/spring-boot-basic-customization/README.md @@ -11,3 +11,4 @@ This module contains articles about Spring Boot customization - [Spring Boot: Configuring a Main Class](https://www.baeldung.com/spring-boot-main-class) - [How to Define a Spring Boot Filter?](https://www.baeldung.com/spring-boot-add-filter) - [Guide to the Favicon in Spring Boot](https://www.baeldung.com/spring-boot-favicon) + - More articles: [[next -->]](/spring-boot-modules/spring-boot-basic-customization-2) diff --git a/spring-boot-modules/spring-boot-basic-customization/pom.xml b/spring-boot-modules/spring-boot-basic-customization/pom.xml index 581a7fec06..a491dd769f 100644 --- a/spring-boot-modules/spring-boot-basic-customization/pom.xml +++ b/spring-boot-modules/spring-boot-basic-customization/pom.xml @@ -9,9 +9,10 @@ Module For Spring Boot Basic Customization - com.baeldung.spring-boot-modules - spring-boot-modules - 1.0.0-SNAPSHOT + com.baeldung + parent-boot-3 + 0.0.1-SNAPSHOT + ../../parent-boot-3 @@ -81,7 +82,7 @@ - 1.5.2.RELEASE + 3.1.5 com.baeldung.changeport.CustomApplication diff --git a/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/bootcustomfilters/filters/RequestResponseLoggingFilter.java b/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/bootcustomfilters/filters/RequestResponseLoggingFilter.java index 3924354932..ae2a89dc2d 100644 --- a/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/bootcustomfilters/filters/RequestResponseLoggingFilter.java +++ b/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/bootcustomfilters/filters/RequestResponseLoggingFilter.java @@ -5,9 +5,14 @@ import org.slf4j.LoggerFactory; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; -import javax.servlet.*; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.Filter; +import jakarta.servlet.FilterChain; +import jakarta.servlet.FilterConfig; +import jakarta.servlet.ServletException; +import jakarta.servlet.ServletRequest; +import jakarta.servlet.ServletResponse; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import java.io.IOException; /** @@ -23,7 +28,7 @@ public class RequestResponseLoggingFilter implements Filter { private final static Logger LOG = LoggerFactory.getLogger(RequestResponseLoggingFilter.class); @Override - public void init(final FilterConfig filterConfig) throws ServletException { + public void init(final FilterConfig filterConfig) { LOG.info("Initializing filter :{}", this); } diff --git a/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/bootcustomfilters/filters/TransactionFilter.java b/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/bootcustomfilters/filters/TransactionFilter.java index 604829c3d3..dcf940614c 100644 --- a/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/bootcustomfilters/filters/TransactionFilter.java +++ b/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/bootcustomfilters/filters/TransactionFilter.java @@ -5,8 +5,13 @@ import org.slf4j.LoggerFactory; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; -import javax.servlet.*; -import javax.servlet.http.HttpServletRequest; +import jakarta.servlet.Filter; +import jakarta.servlet.FilterChain; +import jakarta.servlet.FilterConfig; +import jakarta.servlet.ServletException; +import jakarta.servlet.ServletRequest; +import jakarta.servlet.ServletResponse; +import jakarta.servlet.http.HttpServletRequest; import java.io.IOException; /** diff --git a/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/errorhandling/controllers/MyErrorController.java b/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/errorhandling/controllers/MyErrorController.java index be27f099db..604067fe26 100644 --- a/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/errorhandling/controllers/MyErrorController.java +++ b/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/errorhandling/controllers/MyErrorController.java @@ -5,8 +5,8 @@ import org.springframework.http.HttpStatus; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; -import javax.servlet.RequestDispatcher; -import javax.servlet.http.HttpServletRequest; +import jakarta.servlet.RequestDispatcher; +import jakarta.servlet.http.HttpServletRequest; @Controller public class MyErrorController implements ErrorController { diff --git a/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/failureanalyzer/FailureAnalyzerApplication.java b/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/failureanalyzer/FailureAnalyzerApplication.java index 4ad763e0ab..397b872a53 100644 --- a/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/failureanalyzer/FailureAnalyzerApplication.java +++ b/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/failureanalyzer/FailureAnalyzerApplication.java @@ -4,7 +4,7 @@ import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.Profile; -import javax.annotation.security.RolesAllowed; +import jakarta.annotation.security.RolesAllowed; @Profile("failureanalyzer") @SpringBootApplication(scanBasePackages = "com.baeldung.failureanalyzer") diff --git a/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/failureanalyzer/MyService.java b/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/failureanalyzer/MyService.java index f31b67615f..dbdb2dfcc3 100644 --- a/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/failureanalyzer/MyService.java +++ b/spring-boot-modules/spring-boot-basic-customization/src/main/java/com/baeldung/failureanalyzer/MyService.java @@ -2,7 +2,7 @@ package com.baeldung.failureanalyzer; import org.springframework.stereotype.Service; -import javax.annotation.Resource; +import jakarta.annotation.Resource; @Service public class MyService { diff --git a/spring-boot-modules/spring-boot-basic-customization/src/main/resources/META-INF/spring.factories b/spring-boot-modules/spring-boot-basic-customization/src/main/resources/META-INF/spring.factories index 336477df96..af3bdb6ea6 100644 --- a/spring-boot-modules/spring-boot-basic-customization/src/main/resources/META-INF/spring.factories +++ b/spring-boot-modules/spring-boot-basic-customization/src/main/resources/META-INF/spring.factories @@ -1,2 +1 @@ org.springframework.boot.diagnostics.FailureAnalyzer=com.baeldung.failureanalyzer.MyBeanNotOfRequiredTypeFailureAnalyzer - diff --git a/spring-boot-modules/spring-boot-bootstrap/pom.xml b/spring-boot-modules/spring-boot-bootstrap/pom.xml index da16f79a2a..dbaa90644d 100644 --- a/spring-boot-modules/spring-boot-bootstrap/pom.xml +++ b/spring-boot-modules/spring-boot-bootstrap/pom.xml @@ -330,8 +330,8 @@ 4.0.0 - Greenwich.RELEASE - 1.0.0.RELEASE + 2023.0.0 + 1.2.8.RELEASE 2.2.13.RELEASE diff --git a/spring-boot-modules/spring-boot-data-2/pom.xml b/spring-boot-modules/spring-boot-data-2/pom.xml index 9aaab02925..41e4616a38 100644 --- a/spring-boot-modules/spring-boot-data-2/pom.xml +++ b/spring-boot-modules/spring-boot-data-2/pom.xml @@ -6,9 +6,10 @@ spring-boot-data-2 - com.baeldung.spring-boot-modules - spring-boot-modules - 1.0.0-SNAPSHOT + com.baeldung + parent-boot-3 + 0.0.1-SNAPSHOT + ../../parent-boot-3 @@ -42,6 +43,7 @@ 6.6.5 + com.baeldung.boot.bootstrapmode.Application \ No newline at end of file diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/bootstrapmode/domain/Todo.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/bootstrapmode/domain/Todo.java index 8d6ab3cfb8..23e9a4d483 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/bootstrapmode/domain/Todo.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/bootstrapmode/domain/Todo.java @@ -1,9 +1,9 @@ package com.baeldung.boot.bootstrapmode.domain; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; @Entity public class Todo { diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/readonlyrepository/Book.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/readonlyrepository/Book.java index ff0a8a1bb3..bb208239e3 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/readonlyrepository/Book.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/readonlyrepository/Book.java @@ -1,8 +1,8 @@ package com.baeldung.boot.readonlyrepository; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.Id; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.Id; @Entity public class Book diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/ContactInfo.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/ContactInfo.java index 41f873b42a..7b3139ac5f 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/ContactInfo.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/ContactInfo.java @@ -10,8 +10,8 @@ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; -import javax.validation.Constraint; -import javax.validation.Payload; +import jakarta.validation.Constraint; +import jakarta.validation.Payload; @Constraint(validatedBy = { ContactInfoValidator.class }) @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER }) diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/ContactInfoValidator.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/ContactInfoValidator.java index cc05fd4fbd..331706e87a 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/ContactInfoValidator.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/ContactInfoValidator.java @@ -9,8 +9,8 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.thymeleaf.util.StringUtils; -import javax.validation.ConstraintValidator; -import javax.validation.ConstraintValidatorContext; +import jakarta.validation.ConstraintValidator; +import jakarta.validation.ConstraintValidatorContext; import java.util.regex.Pattern; public class ContactInfoValidator implements ConstraintValidator { diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/DynamicValidationApp.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/DynamicValidationApp.java index 6b04380ece..f9bc89ded9 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/DynamicValidationApp.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/DynamicValidationApp.java @@ -1,6 +1,6 @@ package com.baeldung.dynamicvalidation; -import javax.annotation.security.RolesAllowed; +import jakarta.annotation.security.RolesAllowed; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/config/CustomerController.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/config/CustomerController.java index f08271f307..2e0e65dda9 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/config/CustomerController.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/config/CustomerController.java @@ -1,6 +1,6 @@ package com.baeldung.dynamicvalidation.config; -import javax.validation.Valid; +import jakarta.validation.Valid; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/model/ContactInfoExpression.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/model/ContactInfoExpression.java index 9c202b07c8..41e328361a 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/model/ContactInfoExpression.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/model/ContactInfoExpression.java @@ -1,8 +1,8 @@ package com.baeldung.dynamicvalidation.model; -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; @Entity public class ContactInfoExpression { diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/model/Customer.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/model/Customer.java index 78d3580793..b69b4d4502 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/model/Customer.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/dynamicvalidation/model/Customer.java @@ -1,10 +1,10 @@ package com.baeldung.dynamicvalidation.model; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.validation.constraints.NotNull; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.validation.constraints.NotNull; import com.baeldung.dynamicvalidation.ContactInfo; diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Address.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Address.java index 930276b3ee..b6a8ded010 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Address.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Address.java @@ -1,6 +1,6 @@ package com.baeldung.javers.domain; -import javax.persistence.Embeddable; +import jakarta.persistence.Embeddable; @Embeddable public class Address { diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Product.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Product.java index 61a2993bb9..513ce094ac 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Product.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Product.java @@ -1,6 +1,6 @@ package com.baeldung.javers.domain; -import javax.persistence.*; +import jakarta.persistence.*; @Entity public class Product { diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Store.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Store.java index 5aa6686261..cfe5cf19ac 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Store.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/javers/domain/Store.java @@ -1,6 +1,6 @@ package com.baeldung.javers.domain; -import javax.persistence.*; +import jakarta.persistence.*; import java.util.ArrayList; import java.util.List; diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/propertyeditor/PropertyEditorRestController.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/propertyeditor/PropertyEditorRestController.java index 02edc96cf6..729c4baa66 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/propertyeditor/PropertyEditorRestController.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/propertyeditor/PropertyEditorRestController.java @@ -17,13 +17,13 @@ import com.baeldung.propertyeditor.exotictype.model.ExoticType; public class PropertyEditorRestController { @GetMapping(value = "/credit-card/{card-no}", - produces = MediaType.APPLICATION_JSON_UTF8_VALUE) + produces = MediaType.APPLICATION_JSON_VALUE ) public CreditCard parseCreditCardNumber(@PathVariable("card-no") CreditCard creditCard) { return creditCard; } @GetMapping(value = "/exotic-type/{value}", - produces = MediaType.APPLICATION_JSON_UTF8_VALUE) + produces = MediaType.APPLICATION_JSON_VALUE ) public ExoticType parseExoticType(@PathVariable("value") ExoticType exoticType) { return exoticType; } diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/propertyeditor/creditcard/CreditCardEditor.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/propertyeditor/creditcard/CreditCardEditor.java index d413afee85..5d9738d3a7 100644 --- a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/propertyeditor/creditcard/CreditCardEditor.java +++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/propertyeditor/creditcard/CreditCardEditor.java @@ -15,7 +15,7 @@ public class CreditCardEditor extends PropertyEditorSupport { @Override public void setAsText(String text) throws IllegalArgumentException { - if (StringUtils.isEmpty(text)) { + if (!StringUtils.hasLength(text)) { setValue(null); } else { CreditCard creditCard = new CreditCard(); diff --git a/spring-boot-modules/spring-boot-data-3/README.md b/spring-boot-modules/spring-boot-data-3/README.md index 7130d25118..94516a506c 100644 --- a/spring-boot-modules/spring-boot-data-3/README.md +++ b/spring-boot-modules/spring-boot-data-3/README.md @@ -2,3 +2,4 @@ - [Spring Data JPA – Run an App Without a Database](https://www.baeldung.com/spring-data-jpa-run-app-without-db) - [Integrate AWS Secrets Manager in Spring Boot](https://www.baeldung.com/spring-boot-integrate-aws-secrets-manager) - [Fix Spring Data JPA Exception: No Property Found for Type](https://www.baeldung.com/spring-data-jpa-exception-no-property-found-for-type) +- [Remove Null Objects in JSON Response When Using Spring and Jackson](https://www.baeldung.com/spring-remove-null-objects-json-response-jackson) diff --git a/spring-boot-modules/spring-boot-keycloak/pom.xml b/spring-boot-modules/spring-boot-keycloak/pom.xml index ebba1f7f67..250ddb73b4 100644 --- a/spring-boot-modules/spring-boot-keycloak/pom.xml +++ b/spring-boot-modules/spring-boot-keycloak/pom.xml @@ -107,6 +107,7 @@ 4.0.0 1.6.3 3.1.0 + 17 \ No newline at end of file diff --git a/spring-boot-modules/spring-boot-keycloak/src/main/java/com/baeldung/keycloak/SecurityConfig.java b/spring-boot-modules/spring-boot-keycloak/src/main/java/com/baeldung/keycloak/SecurityConfig.java index 5b9ce9677a..2bf3c12397 100644 --- a/spring-boot-modules/spring-boot-keycloak/src/main/java/com/baeldung/keycloak/SecurityConfig.java +++ b/spring-boot-modules/spring-boot-keycloak/src/main/java/com/baeldung/keycloak/SecurityConfig.java @@ -1,15 +1,21 @@ package com.baeldung.keycloak; +import java.util.Collection; +import java.util.HashSet; +import java.util.Map; +import java.util.Set; +import java.util.stream.Collectors; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; -import org.springframework.core.annotation.Order; -import org.springframework.security.authentication.AuthenticationManager; import org.springframework.security.config.Customizer; -import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; -import org.springframework.security.config.annotation.web.configurers.oauth2.server.resource.OAuth2ResourceServerConfigurer; +import org.springframework.security.core.GrantedAuthority; +import org.springframework.security.core.authority.SimpleGrantedAuthority; +import org.springframework.security.core.authority.mapping.GrantedAuthoritiesMapper; import org.springframework.security.core.session.SessionRegistryImpl; +import org.springframework.security.oauth2.core.oidc.user.OidcUserAuthority; +import org.springframework.security.oauth2.core.user.OAuth2UserAuthority; import org.springframework.security.web.SecurityFilterChain; import org.springframework.security.web.authentication.session.RegisterSessionAuthenticationStrategy; import org.springframework.security.web.authentication.session.SessionAuthenticationStrategy; @@ -19,6 +25,10 @@ import org.springframework.security.web.util.matcher.AntPathRequestMatcher; @EnableWebSecurity class SecurityConfig { + private static final String GROUPS = "groups"; + private static final String REALM_ACCESS_CLAIM = "realm_access"; + private static final String ROLES_CLAIM = "roles"; + private final KeycloakLogoutHandler keycloakLogoutHandler; SecurityConfig(KeycloakLogoutHandler keycloakLogoutHandler) { @@ -30,38 +40,63 @@ class SecurityConfig { return new RegisterSessionAuthenticationStrategy(new SessionRegistryImpl()); } - @Order(1) + @Bean - public SecurityFilterChain clientFilterChain(HttpSecurity http) throws Exception { - http.authorizeRequests() + public SecurityFilterChain resourceServerFilterChain(HttpSecurity http) throws Exception { + http.authorizeHttpRequests(auth -> auth + .requestMatchers(new AntPathRequestMatcher("/customers*")) + .hasRole("user") .requestMatchers(new AntPathRequestMatcher("/")) .permitAll() .anyRequest() - .authenticated(); - http.oauth2Login() - .and() - .logout() - .addLogoutHandler(keycloakLogoutHandler) - .logoutSuccessUrl("/"); - return http.build(); - } - - @Order(2) - @Bean - public SecurityFilterChain resourceServerFilterChain(HttpSecurity http) throws Exception { - http.authorizeRequests() - .requestMatchers(new AntPathRequestMatcher("/customers*")) - .hasRole("USER") - .anyRequest() - .authenticated(); + .authenticated()); http.oauth2ResourceServer((oauth2) -> oauth2 .jwt(Customizer.withDefaults())); + http.oauth2Login(Customizer.withDefaults()) + .logout(logout -> logout.addLogoutHandler(keycloakLogoutHandler).logoutSuccessUrl("/")); return http.build(); } + @Bean - public AuthenticationManager authenticationManager(HttpSecurity http) throws Exception { - return http.getSharedObject(AuthenticationManagerBuilder.class) - .build(); + public GrantedAuthoritiesMapper userAuthoritiesMapperForKeycloak() { + return authorities -> { + Set mappedAuthorities = new HashSet<>(); + var authority = authorities.iterator().next(); + boolean isOidc = authority instanceof OidcUserAuthority; + + if (isOidc) { + var oidcUserAuthority = (OidcUserAuthority) authority; + var userInfo = oidcUserAuthority.getUserInfo(); + + // Tokens can be configured to return roles under + // Groups or REALM ACCESS hence have to check both + if (userInfo.hasClaim(REALM_ACCESS_CLAIM)) { + var realmAccess = userInfo.getClaimAsMap(REALM_ACCESS_CLAIM); + var roles = (Collection) realmAccess.get(ROLES_CLAIM); + mappedAuthorities.addAll(generateAuthoritiesFromClaim(roles)); + } else if (userInfo.hasClaim(GROUPS)) { + Collection roles = (Collection) userInfo.getClaim( + GROUPS); + mappedAuthorities.addAll(generateAuthoritiesFromClaim(roles)); + } + } else { + var oauth2UserAuthority = (OAuth2UserAuthority) authority; + Map userAttributes = oauth2UserAuthority.getAttributes(); + + if (userAttributes.containsKey(REALM_ACCESS_CLAIM)) { + Map realmAccess = (Map) userAttributes.get( + REALM_ACCESS_CLAIM); + Collection roles = (Collection) realmAccess.get(ROLES_CLAIM); + mappedAuthorities.addAll(generateAuthoritiesFromClaim(roles)); + } + } + return mappedAuthorities; + }; + } + + Collection generateAuthoritiesFromClaim(Collection roles) { + return roles.stream().map(role -> new SimpleGrantedAuthority("ROLE_" + role)).collect( + Collectors.toList()); } } diff --git a/spring-boot-modules/spring-boot-keycloak/src/test/java/com/baeldung/keycloaksoap/KeycloakSoapLiveTest.java b/spring-boot-modules/spring-boot-keycloak/src/test/java/com/baeldung/keycloaksoap/KeycloakSoapLiveTest.java index 508061396f..8851d706c0 100644 --- a/spring-boot-modules/spring-boot-keycloak/src/test/java/com/baeldung/keycloaksoap/KeycloakSoapLiveTest.java +++ b/spring-boot-modules/spring-boot-keycloak/src/test/java/com/baeldung/keycloaksoap/KeycloakSoapLiveTest.java @@ -73,7 +73,7 @@ class KeycloakSoapLiveTest { ResponseEntity responseEntity = restTemplate.postForEntity("http://localhost:" + port + "/ws/api/v1/", request, String.class); assertThat(responseEntity).isNotNull(); - assertThat(responseEntity.getStatusCodeValue()).isEqualTo(HttpStatus.OK.value()); + assertThat(responseEntity.getStatusCode()).isEqualTo(HttpStatus.OK.value()); assertThat(responseEntity.getBody()).isNotBlank(); assertThat(responseEntity.getBody()).containsIgnoringCase(":id>1 request = new HttpEntity<>(Utility.getGetProductDetailsRequest(), headers); ResponseEntity responseEntity = restTemplate.postForEntity("http://localhost:" + port + "/ws/api/v1/", request, String.class); assertThat(responseEntity).isNotNull(); - assertThat(responseEntity.getStatusCodeValue()).isEqualTo(HttpStatus.UNAUTHORIZED.value()); + assertThat(responseEntity.getStatusCode()).isEqualTo(HttpStatus.UNAUTHORIZED.value()); assertThat(responseEntity.getBody()).isBlank(); } @@ -110,7 +110,7 @@ class KeycloakSoapLiveTest { ResponseEntity responseEntity = restTemplate.postForEntity("http://localhost:" + port + "/ws/api/v1/", request, String.class); assertThat(responseEntity).isNotNull(); - assertThat(responseEntity.getStatusCodeValue()).isEqualTo(HttpStatus.OK.value()); + assertThat(responseEntity.getStatusCode()).isEqualTo(HttpStatus.OK.value()); assertThat(responseEntity.getBody()).isNotBlank(); assertThat(responseEntity.getBody()).containsIgnoringCase("Deleted the product with the id"); } @@ -130,7 +130,7 @@ class KeycloakSoapLiveTest { ResponseEntity responseEntity = restTemplate.postForEntity("http://localhost:" + port + "/ws/api/v1/", request, String.class); assertThat(responseEntity).isNotNull(); - assertThat(responseEntity.getStatusCodeValue()).isEqualTo(HttpStatus.INTERNAL_SERVER_ERROR.value()); + assertThat(responseEntity.getStatusCode()).isEqualTo(HttpStatus.INTERNAL_SERVER_ERROR.value()); assertThat(responseEntity.getBody()).isNotBlank(); assertThat(responseEntity.getBody()).containsIgnoringCase("Access is denied"); } diff --git a/spring-boot-modules/spring-boot-libraries-3/README.md b/spring-boot-modules/spring-boot-libraries-3/README.md new file mode 100644 index 0000000000..7d9fd87ad5 --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/README.md @@ -0,0 +1,6 @@ +## Spring Boot Libraries + +This module contains articles about various Spring Boot libraries + +### Relevant Articles: +- [Event Externalization with Spring Modulith](https://www.baeldung.com/spring-modulith-event-externalization) diff --git a/spring-boot-modules/spring-boot-libraries-3/pom.xml b/spring-boot-modules/spring-boot-libraries-3/pom.xml new file mode 100644 index 0000000000..43d8be84a4 --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/pom.xml @@ -0,0 +1,89 @@ + + + 4.0.0 + spring-boot-libraries-3 + + + spring-boot-modules + com.baeldung.spring-boot-modules + 1.0.0-SNAPSHOT + + + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.springframework.kafka + spring-kafka + + + + org.springframework.modulith + spring-modulith-events-api + ${spring-modulith-events-kafka.version} + + + org.springframework.modulith + spring-modulith-events-kafka + ${spring-modulith-events-kafka.version} + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.boot + spring-boot-testcontainers + test + + + + org.testcontainers + kafka + ${testcontainers.version} + test + + + org.testcontainers + testcontainers + ${testcontainers.version} + test + + + org.testcontainers + junit-jupiter + ${testcontainers.version} + test + + + + com.h2database + h2 + 2.2.224 + test + + + + org.awaitility + awaitility + ${awaitility.version} + test + + + + + + 17 + 3.1.5 + 1.1.2 + 1.19.3 + 4.2.0 + + + \ No newline at end of file diff --git a/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/Application.java b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/Application.java new file mode 100644 index 0000000000..aeaf57becd --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/Application.java @@ -0,0 +1,13 @@ +package com.baeldung.springmodulith; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + + public static void main(String[] args) { + SpringApplication.run( Application.class, args); + } + +} diff --git a/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/Article.java b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/Article.java new file mode 100644 index 0000000000..d52ed5afe5 --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/Article.java @@ -0,0 +1,45 @@ +package com.baeldung.springmodulith.events.externalization; + +import static jakarta.persistence.GenerationType.*; + +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.Id; + +@Entity +public class Article { + @Id + @GeneratedValue(strategy = AUTO) + private Long id; + + private String slug; + private String title; + private String author; + private String content; + + public Article(String slug, String title, String author, String content) { + this.slug = slug; + this.title = title; + this.author = author; + this.content = content; + } + + public Article() { + } + + public String author() { + return author; + } + + public String content() { + return content; + } + + public String slug() { + return slug; + } + + public String title() { + return title; + } +} \ No newline at end of file diff --git a/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/ArticlePublishedEvent.java b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/ArticlePublishedEvent.java new file mode 100644 index 0000000000..e12b6dafe5 --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/ArticlePublishedEvent.java @@ -0,0 +1,7 @@ +package com.baeldung.springmodulith.events.externalization; + +import org.springframework.modulith.events.Externalized; + +@Externalized("baeldung.article.published::#{slug()}") +public record ArticlePublishedEvent(String slug, String title) { +} diff --git a/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/ArticleRepository.java b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/ArticleRepository.java new file mode 100644 index 0000000000..f6351b6262 --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/ArticleRepository.java @@ -0,0 +1,8 @@ +package com.baeldung.springmodulith.events.externalization; + +import org.springframework.data.repository.CrudRepository; +import org.springframework.stereotype.Repository; + +@Repository +interface ArticleRepository extends CrudRepository { +} diff --git a/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/Baeldung.java b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/Baeldung.java new file mode 100644 index 0000000000..1d309a8653 --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/Baeldung.java @@ -0,0 +1,37 @@ +package com.baeldung.springmodulith.events.externalization; + +import org.springframework.context.ApplicationEventPublisher; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Service +public class Baeldung { + + private final ApplicationEventPublisher applicationEvents; + private final ArticleRepository articleRepository; + + + public Baeldung(ApplicationEventPublisher applicationEvents, ArticleRepository articleRepository) { + this.applicationEvents = applicationEvents; + this.articleRepository = articleRepository; + } + + @Transactional + public void createArticle(Article article) { + // ... business logic + validateArticle(article); + article = addArticleTags(article); + article = articleRepository.save(article); + + applicationEvents.publishEvent(new ArticlePublishedEvent(article.slug(), article.title())); + } + + + private Article addArticleTags(Article article) { + return article; + } + + private void validateArticle(Article article) { + } + +} diff --git a/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/EventExternalizationConfig.java b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/EventExternalizationConfig.java new file mode 100644 index 0000000000..9564696d92 --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/EventExternalizationConfig.java @@ -0,0 +1,41 @@ +package com.baeldung.springmodulith.events.externalization; + +import org.springframework.boot.autoconfigure.kafka.KafkaProperties; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.kafka.core.DefaultKafkaProducerFactory; +import org.springframework.kafka.core.KafkaTemplate; +import org.springframework.kafka.core.ProducerFactory; +import org.springframework.kafka.core.KafkaOperations; +import org.springframework.modulith.events.EventExternalizationConfiguration; +import org.springframework.modulith.events.RoutingTarget; + +@Configuration +class EventExternalizationConfig { + + @Bean + EventExternalizationConfiguration eventExternalizationConfiguration() { + return EventExternalizationConfiguration.externalizing() + .select(EventExternalizationConfiguration.annotatedAsExternalized()) + .route( + ArticlePublishedEvent.class, + it -> RoutingTarget.forTarget("baeldung.articles.published").andKey(it.slug()) + ) + .mapping( + ArticlePublishedEvent.class, + it -> new ArticlePublishedKafkaEvent(it.slug(), it.title()) + ) + .build(); + } + + record ArticlePublishedKafkaEvent(String slug, String title) { + } + + + @Bean + KafkaOperations kafkaOperations(KafkaProperties kafkaProperties) { + ProducerFactory producerFactory = new DefaultKafkaProducerFactory<>(kafkaProperties.buildProducerProperties()); + return new KafkaTemplate<>(producerFactory); + } +} + diff --git a/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/infra/ArticlePublishedKafkaProducer.java b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/infra/ArticlePublishedKafkaProducer.java new file mode 100644 index 0000000000..17a88a73f7 --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/src/main/java/com/baeldung/springmodulith/events/externalization/infra/ArticlePublishedKafkaProducer.java @@ -0,0 +1,34 @@ +package com.baeldung.springmodulith.events.externalization.infra; + +import org.springframework.context.event.EventListener; +import org.springframework.kafka.core.KafkaOperations; +import org.springframework.scheduling.annotation.Async; +import org.springframework.transaction.event.TransactionalEventListener; +import org.springframework.util.Assert; + +import com.baeldung.springmodulith.events.externalization.ArticlePublishedEvent; + +//@Component +// this is used in sections 3 and 4 of tha article +// but it will cause the tests to fail if it used together with the @Externalized annotation +class ArticlePublishedKafkaProducer { + + private final KafkaOperations messageProducer; + + public ArticlePublishedKafkaProducer(KafkaOperations messageProducer) { + this.messageProducer = messageProducer; + } + + @EventListener + public void publish(ArticlePublishedEvent event) { + Assert.notNull(event.slug(), "Article Slug must not be null!"); + messageProducer.send("baeldung.articles.published", event); + } + + @Async + @TransactionalEventListener + public void publishAsync(ArticlePublishedEvent article) { + Assert.notNull(article.slug(), "Article Slug must not be null!"); + messageProducer.send("baeldung.articles.published", article.slug(), article); + } +} diff --git a/spring-boot-modules/spring-boot-libraries-3/src/main/resources/application.yml b/spring-boot-modules/spring-boot-libraries-3/src/main/resources/application.yml new file mode 100644 index 0000000000..ad8f7ab4e6 --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/src/main/resources/application.yml @@ -0,0 +1,12 @@ +logging.level.org.springframework.orm.jpa: TRACE + +spring.kafka: + bootstrap-servers: localhost:9092 + producer: + key-serializer: org.apache.kafka.common.serialization.StringSerializer + value-serializer: org.springframework.kafka.support.serializer.JsonSerializer + type-mapping: com.baeldung.annotation.events.externalization.producer.ArticlePublished + consumer: + key-deserializer: org.apache.kafka.common.serialization.StringDeserializer + value-deserializer: org.apache.kafka.common.serialization.StringDeserializer + auto-offset-reset: earliest diff --git a/spring-boot-modules/spring-boot-libraries-3/src/test/java/com/baeldung/springmodulith/events/externalization/EventsExternalizationLiveTest.java b/spring-boot-modules/spring-boot-libraries-3/src/test/java/com/baeldung/springmodulith/events/externalization/EventsExternalizationLiveTest.java new file mode 100644 index 0000000000..7f4f7a8224 --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/src/test/java/com/baeldung/springmodulith/events/externalization/EventsExternalizationLiveTest.java @@ -0,0 +1,89 @@ +package com.baeldung.springmodulith.events.externalization; + +import static java.time.Duration.ofMillis; +import static java.time.Duration.ofSeconds; +import static org.assertj.core.api.Assertions.assertThat; +import static org.testcontainers.shaded.org.awaitility.Awaitility.await; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.DynamicPropertyRegistry; +import org.springframework.test.context.DynamicPropertySource; +import org.testcontainers.containers.KafkaContainer; +import org.testcontainers.junit.jupiter.Container; +import org.testcontainers.junit.jupiter.Testcontainers; +import org.testcontainers.shaded.org.awaitility.Awaitility; +import org.testcontainers.utility.DockerImageName; + +import com.baeldung.springmodulith.Application; +import com.baeldung.springmodulith.events.externalization.listener.TestKafkaListenerConfig; +import com.baeldung.springmodulith.events.externalization.listener.TestListener; + +@Testcontainers +@SpringBootTest(classes = { Application.class, TestKafkaListenerConfig.class }) +class EventsExternalizationLiveTest { + + @Autowired + private Baeldung baeldung; + @Autowired + private TestListener listener; + @Autowired + private ArticleRepository repository; + + @Container + static KafkaContainer kafkaContainer = new KafkaContainer(DockerImageName.parse("confluentinc/cp-kafka:latest")); + + @DynamicPropertySource + static void dynamicProperties(DynamicPropertyRegistry registry) { + registry.add("spring.kafka.bootstrap-servers", kafkaContainer::getBootstrapServers); + } + + static { + Awaitility.setDefaultTimeout(ofSeconds(3)); + Awaitility.setDefaultPollDelay(ofMillis(100)); + } + + @BeforeEach + void beforeEach() { + listener.reset(); + repository.deleteAll(); + } + + @Test + void whenArticleIsSavedToDB_thenItIsAlsoPublishedToKafka() { + var article = new Article("introduction-to-spring-boot", "Introduction to Spring Boot", "John Doe", "

Spring Boot is [...]

"); + + baeldung.createArticle(article); + + await().untilAsserted(() -> + assertThat(listener.getEvents()) + .hasSize(1) + .first().asString() + .contains("\"slug\":\"introduction-to-spring-boot\"") + .contains("\"title\":\"Introduction to Spring Boot\"")); + + assertThat(repository.findAll()) + .hasSize(1) + .first() + .extracting(Article::slug, Article::title) + .containsExactly("introduction-to-spring-boot", "Introduction to Spring Boot"); + } + + @Test + void whenPublishingMessageFails_thenArticleIsStillSavedToDB() { + var article = new Article(null, "Introduction to Spring Boot", "John Doe", "

Spring Boot is [...]

"); + + baeldung.createArticle(article); + + assertThat(listener.getEvents()) + .isEmpty(); + + assertThat(repository.findAll()) + .hasSize(1) + .first() + .extracting(Article::title, Article::author) + .containsExactly("Introduction to Spring Boot", "John Doe"); + } +} \ No newline at end of file diff --git a/spring-boot-modules/spring-boot-libraries-3/src/test/java/com/baeldung/springmodulith/events/externalization/listener/TestKafkaListenerConfig.java b/spring-boot-modules/spring-boot-libraries-3/src/test/java/com/baeldung/springmodulith/events/externalization/listener/TestKafkaListenerConfig.java new file mode 100644 index 0000000000..c2ee9b24a2 --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/src/test/java/com/baeldung/springmodulith/events/externalization/listener/TestKafkaListenerConfig.java @@ -0,0 +1,31 @@ +package com.baeldung.springmodulith.events.externalization.listener; + +import org.springframework.boot.autoconfigure.kafka.KafkaProperties; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.kafka.annotation.EnableKafka; +import org.springframework.kafka.config.ConcurrentKafkaListenerContainerFactory; +import org.springframework.kafka.config.KafkaListenerContainerFactory; +import org.springframework.kafka.core.ConsumerFactory; +import org.springframework.kafka.core.DefaultKafkaConsumerFactory; +import org.springframework.kafka.listener.ConcurrentMessageListenerContainer; + +@EnableKafka +@Configuration +public class TestKafkaListenerConfig { + + @Bean + KafkaListenerContainerFactory> kafkaListenerContainerFactory( + ConsumerFactory consumerFactory + ) { + var factory = new ConcurrentKafkaListenerContainerFactory(); + factory.setConsumerFactory(consumerFactory); + return factory; + } + + @Bean + ConsumerFactory consumerFactory(KafkaProperties kafkaProperties) { + return new DefaultKafkaConsumerFactory<>(kafkaProperties.buildConsumerProperties()); + } + +} \ No newline at end of file diff --git a/spring-boot-modules/spring-boot-libraries-3/src/test/java/com/baeldung/springmodulith/events/externalization/listener/TestListener.java b/spring-boot-modules/spring-boot-libraries-3/src/test/java/com/baeldung/springmodulith/events/externalization/listener/TestListener.java new file mode 100644 index 0000000000..bf5a36f66f --- /dev/null +++ b/spring-boot-modules/spring-boot-libraries-3/src/test/java/com/baeldung/springmodulith/events/externalization/listener/TestListener.java @@ -0,0 +1,25 @@ +package com.baeldung.springmodulith.events.externalization.listener; + +import java.util.ArrayList; +import java.util.List; + +import org.springframework.kafka.annotation.KafkaListener; +import org.springframework.stereotype.Component; + +@Component +public class TestListener { + private List events = new ArrayList<>(); + + @KafkaListener(id = "test-id", topics = "baeldung.articles.published") + public void listen(String event) { + events.add(event); + } + + public List getEvents() { + return events; + } + + public void reset() { + events = new ArrayList<>(); + } +} \ No newline at end of file diff --git a/spring-boot-modules/spring-boot-properties-4/README.md b/spring-boot-modules/spring-boot-properties-4/README.md index 3033b8725c..ffff3ac236 100644 --- a/spring-boot-modules/spring-boot-properties-4/README.md +++ b/spring-boot-modules/spring-boot-properties-4/README.md @@ -7,4 +7,5 @@ - [Using Environment Variables in Spring Boot’s Properties Files](https://www.baeldung.com/spring-boot-properties-env-variables) - [Spring Boot Properties Prefix Must Be in Canonical Form](https://www.baeldung.com/spring-boot-properties-canonical-form) +- [Bind Case Insensitive @Value to Enum in Spring Boot](https://www.baeldung.com/spring-boot-enum-bind-case-insensitive-value) - More articles: [[<-- Prev]](../spring-boot-properties-3) diff --git a/spring-boot-modules/spring-boot-telegram/baeldungbot b/spring-boot-modules/spring-boot-telegram/baeldungbot new file mode 100644 index 0000000000..75faf49e5e Binary files /dev/null and b/spring-boot-modules/spring-boot-telegram/baeldungbot differ diff --git a/spring-boot-modules/spring-boot-testing-spock/.gitattributes b/spring-boot-modules/spring-boot-testing-spock/.gitattributes new file mode 100644 index 0000000000..097f9f98d9 --- /dev/null +++ b/spring-boot-modules/spring-boot-testing-spock/.gitattributes @@ -0,0 +1,9 @@ +# +# https://help.github.com/articles/dealing-with-line-endings/ +# +# Linux start script should use lf +/gradlew text eol=lf + +# These are Windows script files and should use crlf +*.bat text eol=crlf + diff --git a/spring-boot-modules/spring-boot-testing-spock/.gitignore b/spring-boot-modules/spring-boot-testing-spock/.gitignore new file mode 100644 index 0000000000..1b6985c009 --- /dev/null +++ b/spring-boot-modules/spring-boot-testing-spock/.gitignore @@ -0,0 +1,5 @@ +# Ignore Gradle project-specific cache directory +.gradle + +# Ignore Gradle build output directory +build diff --git a/spring-boot-modules/spring-boot-testing-spock/README.md b/spring-boot-modules/spring-boot-testing-spock/README.md index ab8193ab4e..ac37403a2a 100644 --- a/spring-boot-modules/spring-boot-testing-spock/README.md +++ b/spring-boot-modules/spring-boot-testing-spock/README.md @@ -5,3 +5,4 @@ This module contains articles about Spring Boot testing with Spock framework ### Relevant Articles: - [Testing with Spring and Spock](https://www.baeldung.com/spring-spock-testing) +- [Setting up and Using Spock With Gradle](https://www.baeldung.com/groovy/spock-gradle-setup) diff --git a/spring-boot-modules/spring-boot-testing-spock/build.gradle b/spring-boot-modules/spring-boot-testing-spock/build.gradle new file mode 100644 index 0000000000..974cdd6b74 --- /dev/null +++ b/spring-boot-modules/spring-boot-testing-spock/build.gradle @@ -0,0 +1,45 @@ +plugins { + id 'java' + id 'groovy' + id 'io.spring.dependency-management' version '1.1.4' +} + +repositories { + mavenCentral() +} + +dependencyManagement { + imports { + mavenBom 'org.springframework.boot:spring-boot-dependencies:3.0.0' + } +} + +dependencies { + + // Spring implementation dependencies + implementation 'org.springframework.boot:spring-boot-starter-web' + + // Test implementation + testImplementation( + 'junit:junit', + 'org.spockframework:spock-core:2.4-M1-groovy-4.0', + 'org.spockframework:spock-spring:2.4-M1-groovy-4.0', + 'org.springframework.boot:spring-boot-starter-test', + ) + // Test run time only + testRuntimeOnly 'org.junit.platform:junit-platform-launcher' +} + +java { + toolchain { + languageVersion = JavaLanguageVersion.of(17) + } +} + +test { + useJUnitPlatform() + + testLogging { + events "started", "passed", "skipped", "failed" + } +} \ No newline at end of file diff --git a/spring-boot-modules/spring-boot-testing-spock/gradle/libs.versions.toml b/spring-boot-modules/spring-boot-testing-spock/gradle/libs.versions.toml new file mode 100644 index 0000000000..4ac3234a6a --- /dev/null +++ b/spring-boot-modules/spring-boot-testing-spock/gradle/libs.versions.toml @@ -0,0 +1,2 @@ +# This file was generated by the Gradle 'init' task. +# https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format diff --git a/spring-boot-modules/spring-boot-testing-spock/gradle/wrapper/gradle-wrapper.properties b/spring-boot-modules/spring-boot-testing-spock/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000000..1af9e0930b --- /dev/null +++ b/spring-boot-modules/spring-boot-testing-spock/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/spring-boot-modules/spring-boot-testing-spock/gradlew b/spring-boot-modules/spring-boot-testing-spock/gradlew new file mode 100755 index 0000000000..1aa94a4269 --- /dev/null +++ b/spring-boot-modules/spring-boot-testing-spock/gradlew @@ -0,0 +1,249 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/spring-boot-modules/spring-boot-testing-spock/gradlew.bat b/spring-boot-modules/spring-boot-testing-spock/gradlew.bat new file mode 100644 index 0000000000..93e3f59f13 --- /dev/null +++ b/spring-boot-modules/spring-boot-testing-spock/gradlew.bat @@ -0,0 +1,92 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/spring-boot-modules/spring-boot-testing-spock/settings.gradle b/spring-boot-modules/spring-boot-testing-spock/settings.gradle new file mode 100644 index 0000000000..66a6367abb --- /dev/null +++ b/spring-boot-modules/spring-boot-testing-spock/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'spring-boot-testing-spock' diff --git a/spring-boot-modules/spring-boot-validation/pom.xml b/spring-boot-modules/spring-boot-validation/pom.xml index 1412a57e2a..197fc67b22 100644 --- a/spring-boot-modules/spring-boot-validation/pom.xml +++ b/spring-boot-modules/spring-boot-validation/pom.xml @@ -8,9 +8,10 @@ 0.0.1-SNAPSHOT - com.baeldung.spring-boot-modules - spring-boot-modules - 1.0.0-SNAPSHOT + com.baeldung + parent-boot-3 + 0.0.1-SNAPSHOT + ../../parent-boot-3 @@ -41,4 +42,8 @@ + + com.baeldung.beanvalidation.application.Application + + \ No newline at end of file diff --git a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/Application.java b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/Application.java index e2b933a67e..2a1e10edbc 100644 --- a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/Application.java +++ b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/Application.java @@ -16,7 +16,7 @@ public class Application { } @Bean - public CommandLineRunner run(UserRepository userRepository) throws Exception { + public CommandLineRunner run(UserRepository userRepository) { return (String[] args) -> { User user1 = new User("Bob", "bob@domain.com"); User user2 = new User("Jenny", "jenny@domain.com"); diff --git a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/controllers/UserController.java b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/controllers/UserController.java index abda9a9449..7e13aec4a0 100644 --- a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/controllers/UserController.java +++ b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/controllers/UserController.java @@ -6,7 +6,7 @@ import com.baeldung.beanvalidation.application.repositories.UserRepository; import java.util.HashMap; import java.util.List; import java.util.Map; -import javax.validation.Valid; +import jakarta.validation.Valid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; diff --git a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/entities/User.java b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/entities/User.java index 511ce47775..13fc97661d 100644 --- a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/entities/User.java +++ b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/beanvalidation/application/entities/User.java @@ -1,11 +1,10 @@ package com.baeldung.beanvalidation.application.entities; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.Table; -import javax.validation.constraints.NotBlank; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.validation.constraints.NotBlank; @Entity public class User { diff --git a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/dao/UserAccountDao.java b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/dao/UserAccountDao.java index c49c5220f4..adb0117997 100644 --- a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/dao/UserAccountDao.java +++ b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/dao/UserAccountDao.java @@ -11,7 +11,7 @@ import com.baeldung.spring.servicevalidation.domain.UserAccount; @Service public class UserAccountDao { - private Map DB = new HashMap(); + private Map DB = new HashMap<>(); public String addUserAccount(UserAccount useraccount) { DB.put(useraccount.getName(), useraccount); diff --git a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/domain/UserAccount.java b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/domain/UserAccount.java index 5b0e795a8a..50ea9a4a66 100644 --- a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/domain/UserAccount.java +++ b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/domain/UserAccount.java @@ -1,10 +1,10 @@ package com.baeldung.spring.servicevalidation.domain; -import javax.validation.Valid; -import javax.validation.constraints.Min; -import javax.validation.constraints.NotBlank; -import javax.validation.constraints.NotNull; -import javax.validation.constraints.Size; +import jakarta.validation.Valid; +import jakarta.validation.constraints.Min; +import jakarta.validation.constraints.NotBlank; +import jakarta.validation.constraints.NotNull; +import jakarta.validation.constraints.Size; public class UserAccount { diff --git a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/domain/UserAddress.java b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/domain/UserAddress.java index cd149dc5f5..276f18ff67 100644 --- a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/domain/UserAddress.java +++ b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/domain/UserAddress.java @@ -1,6 +1,6 @@ package com.baeldung.spring.servicevalidation.domain; -import javax.validation.constraints.NotBlank; +import jakarta.validation.constraints.NotBlank; public class UserAddress { diff --git a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/service/UserAccountService.java b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/service/UserAccountService.java index 9d79e4e226..648c45d893 100644 --- a/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/service/UserAccountService.java +++ b/spring-boot-modules/spring-boot-validation/src/main/java/com/baeldung/spring/servicevalidation/service/UserAccountService.java @@ -2,9 +2,9 @@ package com.baeldung.spring.servicevalidation.service; import java.util.Set; -import javax.validation.ConstraintViolation; -import javax.validation.ConstraintViolationException; -import javax.validation.Validator; +import jakarta.validation.ConstraintViolation; +import jakarta.validation.ConstraintViolationException; +import jakarta.validation.Validator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; diff --git a/spring-boot-modules/spring-boot-validation/src/main/resources/application.properties b/spring-boot-modules/spring-boot-validation/src/main/resources/application.properties new file mode 100644 index 0000000000..ead0df89a3 --- /dev/null +++ b/spring-boot-modules/spring-boot-validation/src/main/resources/application.properties @@ -0,0 +1 @@ +spring.jpa.properties.hibernate.globally_quoted_identifiers=true diff --git a/spring-boot-modules/spring-boot-validation/src/test/java/com/baeldung/beanvalidation/application/UserControllerIntegrationTest.java b/spring-boot-modules/spring-boot-validation/src/test/java/com/baeldung/beanvalidation/application/UserControllerIntegrationTest.java index 21fcaf922c..c26174d961 100644 --- a/spring-boot-modules/spring-boot-validation/src/test/java/com/baeldung/beanvalidation/application/UserControllerIntegrationTest.java +++ b/spring-boot-modules/spring-boot-validation/src/test/java/com/baeldung/beanvalidation/application/UserControllerIntegrationTest.java @@ -34,7 +34,7 @@ public class UserControllerIntegrationTest { private MockMvc mockMvc; @Test - public void whenUserControllerInjected_thenNotNull() throws Exception { + public void whenUserControllerInjected_thenNotNull() { assertThat(userController).isNotNull(); } diff --git a/spring-boot-rest/pom.xml b/spring-boot-rest/pom.xml index 71916900a4..2fd05ef394 100644 --- a/spring-boot-rest/pom.xml +++ b/spring-boot-rest/pom.xml @@ -11,9 +11,9 @@ com.baeldung - parent-boot-2 + parent-boot-3 0.0.1-SNAPSHOT - ../parent-boot-2 + ../parent-boot-3 @@ -144,8 +144,8 @@ - org.glassfish.jaxb - jaxb-runtime + com.sun.xml.bind + jaxb-impl ${jaxb-runtime.version} @@ -164,6 +164,6 @@ 1.4.11.1 3.2.0 3.3.0 - 2.3.7 + 4.0.1 diff --git a/spring-boot-rest/src/main/java/com/baeldung/persistence/model/Foo.java b/spring-boot-rest/src/main/java/com/baeldung/persistence/model/Foo.java index c8af731bc5..02f33bc5db 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/persistence/model/Foo.java +++ b/spring-boot-rest/src/main/java/com/baeldung/persistence/model/Foo.java @@ -2,12 +2,12 @@ package com.baeldung.persistence.model; import java.io.Serializable; -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.Version; +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.persistence.Version; import com.thoughtworks.xstream.annotations.XStreamAlias; @@ -16,7 +16,7 @@ import com.thoughtworks.xstream.annotations.XStreamAlias; public class Foo implements Serializable { @Id - @GeneratedValue(strategy = GenerationType.AUTO) + @GeneratedValue(strategy = GenerationType.IDENTITY) private long id; @Column(nullable = false) diff --git a/spring-boot-rest/src/main/java/com/baeldung/persistence/service/common/AbstractService.java b/spring-boot-rest/src/main/java/com/baeldung/persistence/service/common/AbstractService.java index f589eaecf5..fcf5426438 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/persistence/service/common/AbstractService.java +++ b/spring-boot-rest/src/main/java/com/baeldung/persistence/service/common/AbstractService.java @@ -5,7 +5,7 @@ import java.util.List; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; -import org.springframework.data.repository.PagingAndSortingRepository; +import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.transaction.annotation.Transactional; import com.baeldung.persistence.IOperations; @@ -57,6 +57,6 @@ public abstract class AbstractService implements IOperat getDao().deleteById(entityId); } - protected abstract PagingAndSortingRepository getDao(); + protected abstract JpaRepository getDao(); } diff --git a/spring-boot-rest/src/main/java/com/baeldung/persistence/service/impl/FooService.java b/spring-boot-rest/src/main/java/com/baeldung/persistence/service/impl/FooService.java index 299e5ec214..9a8f48ba6e 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/persistence/service/impl/FooService.java +++ b/spring-boot-rest/src/main/java/com/baeldung/persistence/service/impl/FooService.java @@ -1,19 +1,17 @@ package com.baeldung.persistence.service.impl; -import java.util.List; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.data.domain.Page; -import org.springframework.data.domain.Pageable; -import org.springframework.data.repository.PagingAndSortingRepository; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - import com.baeldung.persistence.dao.IFooDao; import com.baeldung.persistence.model.Foo; import com.baeldung.persistence.service.IFooService; import com.baeldung.persistence.service.common.AbstractService; import com.google.common.collect.Lists; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; @Service @Transactional @@ -29,7 +27,7 @@ public class FooService extends AbstractService implements IFooService { // API @Override - protected PagingAndSortingRepository getDao() { + protected JpaRepository getDao() { return dao; } diff --git a/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Post.java b/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Post.java index 88e9ef67bb..e3719c8b10 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Post.java +++ b/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Post.java @@ -2,16 +2,16 @@ package com.baeldung.springpagination.model; import java.util.Date; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; @Entity public class Post { @Id - @GeneratedValue(strategy = GenerationType.AUTO) + @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String title; diff --git a/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Preference.java b/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Preference.java index 44f8f41aff..3469fc19b3 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Preference.java +++ b/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Preference.java @@ -1,15 +1,15 @@ package com.baeldung.springpagination.model; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; @Entity public class Preference { @Id - @GeneratedValue(strategy = GenerationType.AUTO) + @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String timezone; diff --git a/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Subject.java b/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Subject.java index 80598ae07d..50e9d534c6 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Subject.java +++ b/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/Subject.java @@ -1,10 +1,10 @@ package com.baeldung.springpagination.model; -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; @Entity public class Subject { diff --git a/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/User.java b/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/User.java index 4d33834b28..1dc06210da 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/User.java +++ b/spring-boot-rest/src/main/java/com/baeldung/springpagination/model/User.java @@ -1,16 +1,16 @@ package com.baeldung.springpagination.model; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.OneToOne; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.persistence.OneToOne; @Entity public class User { @Id - @GeneratedValue(strategy = GenerationType.AUTO) + @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String name; diff --git a/spring-boot-rest/src/main/java/com/baeldung/springpagination/repository/PostRepository.java b/spring-boot-rest/src/main/java/com/baeldung/springpagination/repository/PostRepository.java index 62f05f8262..c50ddcdf48 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/springpagination/repository/PostRepository.java +++ b/spring-boot-rest/src/main/java/com/baeldung/springpagination/repository/PostRepository.java @@ -4,7 +4,6 @@ import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; -import org.springframework.data.repository.PagingAndSortingRepository; import org.springframework.data.repository.query.Param; import com.baeldung.springpagination.model.Post; diff --git a/spring-boot-rest/src/main/java/com/baeldung/springpagination/service/PostService.java b/spring-boot-rest/src/main/java/com/baeldung/springpagination/service/PostService.java index bb4869dd33..faa3d124b3 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/springpagination/service/PostService.java +++ b/spring-boot-rest/src/main/java/com/baeldung/springpagination/service/PostService.java @@ -42,6 +42,6 @@ public class PostService implements IPostService { @Override public Post getPostById(Long id) { - return postRepository.getOne(id); + return postRepository.getReferenceById(id); } } diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/config/MyErrorController.java b/spring-boot-rest/src/main/java/com/baeldung/web/config/MyErrorController.java index 05150716f6..df6418fee3 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/config/MyErrorController.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/config/MyErrorController.java @@ -2,7 +2,7 @@ package com.baeldung.web.config; import java.util.Map; -import javax.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletRequest; import org.springframework.boot.autoconfigure.web.ServerProperties; import org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController; diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/controller/FooController.java b/spring-boot-rest/src/main/java/com/baeldung/web/controller/FooController.java index a09878fb84..54fb4faab4 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/controller/FooController.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/controller/FooController.java @@ -2,7 +2,7 @@ package com.baeldung.web.controller; import java.util.List; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/controller/RootController.java b/spring-boot-rest/src/main/java/com/baeldung/web/controller/RootController.java index d618e9f0bf..32671ef225 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/controller/RootController.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/controller/RootController.java @@ -2,8 +2,8 @@ package com.baeldung.web.controller; import java.net.URI; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import org.springframework.http.HttpStatus; import org.springframework.stereotype.Controller; diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/controller/students/StudentService.java b/spring-boot-rest/src/main/java/com/baeldung/web/controller/students/StudentService.java index d923f4f14f..88e59727d1 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/controller/students/StudentService.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/controller/students/StudentService.java @@ -19,7 +19,7 @@ public class StudentService { new Student(2, "Sebastian","Bach"), new Student(3, "Pablo","Picasso"), }).stream() - .collect(Collectors.toConcurrentMap(s -> s.getId(), Function.identity())); + .collect(Collectors.toConcurrentMap(Student::getId, Function.identity())); // DB id sequence mock private AtomicLong sequence = new AtomicLong(3); diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java b/spring-boot-rest/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java index 2e2672f510..1726e00dff 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java @@ -1,13 +1,14 @@ package com.baeldung.web.error; -import javax.persistence.EntityNotFoundException; - +import com.baeldung.web.exception.MyResourceNotFoundException; +import jakarta.persistence.EntityNotFoundException; import org.hibernate.exception.ConstraintViolationException; import org.springframework.dao.DataAccessException; import org.springframework.dao.DataIntegrityViolationException; import org.springframework.dao.InvalidDataAccessApiUsageException; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; +import org.springframework.http.HttpStatusCode; import org.springframework.http.ResponseEntity; import org.springframework.http.converter.HttpMessageNotReadableException; import org.springframework.web.bind.MethodArgumentNotValidException; @@ -16,8 +17,6 @@ import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.context.request.WebRequest; import org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler; -import com.baeldung.web.exception.MyResourceNotFoundException; - @ControllerAdvice public class RestResponseEntityExceptionHandler extends ResponseEntityExceptionHandler { @@ -42,14 +41,14 @@ public class RestResponseEntityExceptionHandler extends ResponseEntityExceptionH } @Override - protected ResponseEntity handleHttpMessageNotReadable(final HttpMessageNotReadableException ex, final HttpHeaders headers, final HttpStatus status, final WebRequest request) { + protected ResponseEntity handleHttpMessageNotReadable(HttpMessageNotReadableException ex, HttpHeaders headers, HttpStatusCode status, WebRequest request) { final String bodyOfResponse = "This should be application specific"; // ex.getCause() instanceof JsonMappingException, JsonParseException // for additional information later on return handleExceptionInternal(ex, bodyOfResponse, headers, HttpStatus.BAD_REQUEST, request); } @Override - protected ResponseEntity handleMethodArgumentNotValid(final MethodArgumentNotValidException ex, final HttpHeaders headers, final HttpStatus status, final WebRequest request) { + protected ResponseEntity handleMethodArgumentNotValid(final MethodArgumentNotValidException ex, HttpHeaders headers, HttpStatusCode status, WebRequest request) { final String bodyOfResponse = "This should be application specific"; return handleExceptionInternal(ex, bodyOfResponse, headers, HttpStatus.BAD_REQUEST, request); } diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/error/RestResponseStatusExceptionResolver.java b/spring-boot-rest/src/main/java/com/baeldung/web/error/RestResponseStatusExceptionResolver.java index 6753ab35cf..095d16bcc6 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/error/RestResponseStatusExceptionResolver.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/error/RestResponseStatusExceptionResolver.java @@ -3,8 +3,8 @@ package com.baeldung.web.error; import java.util.HashMap; import java.util.Map; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/PaginatedResultsRetrievedEvent.java b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/PaginatedResultsRetrievedEvent.java index f62fbf6247..15ae2a1a8b 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/PaginatedResultsRetrievedEvent.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/PaginatedResultsRetrievedEvent.java @@ -2,7 +2,7 @@ package com.baeldung.web.hateoas.event; import java.io.Serializable; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletResponse; import org.springframework.context.ApplicationEvent; import org.springframework.web.util.UriComponentsBuilder; diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/ResourceCreatedEvent.java b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/ResourceCreatedEvent.java index b602f7ec4b..a029ed7386 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/ResourceCreatedEvent.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/ResourceCreatedEvent.java @@ -1,6 +1,6 @@ package com.baeldung.web.hateoas.event; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletResponse; import org.springframework.context.ApplicationEvent; diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/SingleResourceRetrievedEvent.java b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/SingleResourceRetrievedEvent.java index 70face083c..055fcab626 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/SingleResourceRetrievedEvent.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/event/SingleResourceRetrievedEvent.java @@ -1,6 +1,6 @@ package com.baeldung.web.hateoas.event; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletResponse; import org.springframework.context.ApplicationEvent; diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/PaginatedResultsRetrievedDiscoverabilityListener.java b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/PaginatedResultsRetrievedDiscoverabilityListener.java index afcd364cce..3c4b5a49d3 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/PaginatedResultsRetrievedDiscoverabilityListener.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/PaginatedResultsRetrievedDiscoverabilityListener.java @@ -2,7 +2,7 @@ package com.baeldung.web.hateoas.listener; import java.util.StringJoiner; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletResponse; import org.springframework.context.ApplicationListener; import org.springframework.stereotype.Component; diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/ResourceCreatedDiscoverabilityListener.java b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/ResourceCreatedDiscoverabilityListener.java index 37afcdace4..b42805f9d0 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/ResourceCreatedDiscoverabilityListener.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/ResourceCreatedDiscoverabilityListener.java @@ -1,17 +1,14 @@ package com.baeldung.web.hateoas.listener; -import java.net.URI; - -import javax.servlet.http.HttpServletResponse; - -import org.apache.http.HttpHeaders; import com.baeldung.web.hateoas.event.ResourceCreatedEvent; +import com.google.common.base.Preconditions; +import java.net.URI; +import jakarta.servlet.http.HttpServletResponse; +import org.apache.http.HttpHeaders; import org.springframework.context.ApplicationListener; import org.springframework.stereotype.Component; import org.springframework.web.servlet.support.ServletUriComponentsBuilder; -import com.google.common.base.Preconditions; - @Component class ResourceCreatedDiscoverabilityListener implements ApplicationListener { diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/SingleResourceRetrievedDiscoverabilityListener.java b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/SingleResourceRetrievedDiscoverabilityListener.java index d527c308b9..f751b325e1 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/SingleResourceRetrievedDiscoverabilityListener.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/hateoas/listener/SingleResourceRetrievedDiscoverabilityListener.java @@ -1,6 +1,6 @@ package com.baeldung.web.hateoas.listener; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletResponse; import com.baeldung.web.hateoas.event.SingleResourceRetrievedEvent; import com.baeldung.web.util.LinkUtil; diff --git a/spring-boot-rest/src/main/java/com/baeldung/web/util/LinkUtil.java b/spring-boot-rest/src/main/java/com/baeldung/web/util/LinkUtil.java index 3ebba8ae1c..82e3d2c913 100644 --- a/spring-boot-rest/src/main/java/com/baeldung/web/util/LinkUtil.java +++ b/spring-boot-rest/src/main/java/com/baeldung/web/util/LinkUtil.java @@ -1,6 +1,6 @@ package com.baeldung.web.util; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletResponse; /** * Provides some constants and utility methods to build a Link Header to be stored in the {@link HttpServletResponse} object diff --git a/spring-boot-rest/src/test/java/com/baeldung/common/web/AbstractBasicLiveTest.java b/spring-boot-rest/src/test/java/com/baeldung/common/web/AbstractBasicLiveTest.java index 6e50f828de..70208658f1 100644 --- a/spring-boot-rest/src/test/java/com/baeldung/common/web/AbstractBasicLiveTest.java +++ b/spring-boot-rest/src/test/java/com/baeldung/common/web/AbstractBasicLiveTest.java @@ -9,7 +9,7 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertTrue; import java.io.Serializable; diff --git a/spring-boot-rest/src/test/java/com/baeldung/common/web/AbstractDiscoverabilityLiveTest.java b/spring-boot-rest/src/test/java/com/baeldung/common/web/AbstractDiscoverabilityLiveTest.java index fc581f2631..c2eaa11849 100644 --- a/spring-boot-rest/src/test/java/com/baeldung/common/web/AbstractDiscoverabilityLiveTest.java +++ b/spring-boot-rest/src/test/java/com/baeldung/common/web/AbstractDiscoverabilityLiveTest.java @@ -4,7 +4,7 @@ import static org.apache.commons.lang3.RandomStringUtils.randomAlphabetic; import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.is; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; import java.io.Serializable; diff --git a/spring-boot-rest/src/test/java/com/baeldung/rest/GithubBasicLiveTest.java b/spring-boot-rest/src/test/java/com/baeldung/rest/GithubBasicLiveTest.java index 3082b34421..430b6116d1 100644 --- a/spring-boot-rest/src/test/java/com/baeldung/rest/GithubBasicLiveTest.java +++ b/spring-boot-rest/src/test/java/com/baeldung/rest/GithubBasicLiveTest.java @@ -3,7 +3,7 @@ package com.baeldung.rest; import static org.apache.commons.lang3.RandomStringUtils.randomAlphabetic; import static org.hamcrest.Matchers.equalTo; import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; import java.io.IOException; diff --git a/spring-boot-rest/src/test/java/com/baeldung/springhateoas/CustomerControllerIntegrationTest.java b/spring-boot-rest/src/test/java/com/baeldung/springhateoas/CustomerControllerIntegrationTest.java index 644ce5132a..2c0da4af39 100644 --- a/spring-boot-rest/src/test/java/com/baeldung/springhateoas/CustomerControllerIntegrationTest.java +++ b/spring-boot-rest/src/test/java/com/baeldung/springhateoas/CustomerControllerIntegrationTest.java @@ -86,7 +86,7 @@ public class CustomerControllerIntegrationTest { List orders = Collections.singletonList(order1); given(this.orderService.getAllOrdersForCustomer(DEFAULT_CUSTOMER_ID)).willReturn(orders); - this.mvc.perform(get("/customers/").accept(MediaTypes.HAL_JSON_VALUE)) + this.mvc.perform(get("/customers").accept(MediaTypes.HAL_JSON_VALUE)) .andExpect(status().isOk()) .andExpect( jsonPath("$._embedded.customers[0]._links.self.href", is("http://localhost/customers/customer1"))) diff --git a/spring-boot-rest/src/test/java/com/baeldung/web/FooControllerCustomEtagIntegrationTest.java b/spring-boot-rest/src/test/java/com/baeldung/web/FooControllerCustomEtagIntegrationTest.java index e472d308e8..a6de23a7d1 100644 --- a/spring-boot-rest/src/test/java/com/baeldung/web/FooControllerCustomEtagIntegrationTest.java +++ b/spring-boot-rest/src/test/java/com/baeldung/web/FooControllerCustomEtagIntegrationTest.java @@ -29,7 +29,7 @@ public class FooControllerCustomEtagIntegrationTest { @Autowired private MockMvc mvc; - private String FOOS_ENDPOINT = "/foos/"; + private String FOOS_ENDPOINT = "/foos"; private String CUSTOM_ETAG_ENDPOINT_SUFFIX = "/custom-etag"; private static String serializeFoo(Foo foo) throws Exception { diff --git a/spring-boot-rest/src/test/java/com/baeldung/web/FooMessageConvertersLiveTest.java b/spring-boot-rest/src/test/java/com/baeldung/web/FooMessageConvertersLiveTest.java index 9b1a9e9733..8e093a90ae 100644 --- a/spring-boot-rest/src/test/java/com/baeldung/web/FooMessageConvertersLiveTest.java +++ b/spring-boot-rest/src/test/java/com/baeldung/web/FooMessageConvertersLiveTest.java @@ -4,7 +4,7 @@ import static com.baeldung.Consts.APPLICATION_PORT; import static org.apache.commons.lang3.RandomStringUtils.randomAlphabetic; import static org.hamcrest.Matchers.notNullValue; import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; import com.baeldung.common.web.AbstractLiveTest; import com.baeldung.persistence.model.Foo; diff --git a/spring-boot-rest/src/test/java/com/baeldung/web/FooPageableLiveTest.java b/spring-boot-rest/src/test/java/com/baeldung/web/FooPageableLiveTest.java index 242fbb609e..cb7786b097 100644 --- a/spring-boot-rest/src/test/java/com/baeldung/web/FooPageableLiveTest.java +++ b/spring-boot-rest/src/test/java/com/baeldung/web/FooPageableLiveTest.java @@ -5,7 +5,7 @@ import static org.apache.commons.lang3.RandomStringUtils.randomAlphabetic; import static org.apache.commons.lang3.RandomStringUtils.randomNumeric; import static org.hamcrest.Matchers.is; import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; import java.util.List; diff --git a/spring-cloud-modules/pom.xml b/spring-cloud-modules/pom.xml index ccc8590b0b..2613b9f9ce 100644 --- a/spring-cloud-modules/pom.xml +++ b/spring-cloud-modules/pom.xml @@ -34,7 +34,7 @@ spring-cloud-aws-v3 spring-cloud-consul - + spring-cloud-contract spring-cloud-kubernetes spring-cloud-open-service-broker spring-cloud-archaius diff --git a/spring-cloud-modules/spring-cloud-aws-v3/README.md b/spring-cloud-modules/spring-cloud-aws-v3/README.md index d63b0eaa5d..d42883b1f7 100644 --- a/spring-cloud-modules/spring-cloud-aws-v3/README.md +++ b/spring-cloud-modules/spring-cloud-aws-v3/README.md @@ -1,3 +1,4 @@ # Spring Cloud AWS -TBD \ No newline at end of file +### Relevant Articles: +- [Introduction to Spring Cloud AWS 3.0 – SQS Integration](https://www.baeldung.com/java-spring-cloud-aws-v3-intro) diff --git a/spring-cloud-modules/spring-cloud-contract/pom.xml b/spring-cloud-modules/spring-cloud-contract/pom.xml index 5a987d2862..3044bc3a74 100644 --- a/spring-cloud-modules/spring-cloud-contract/pom.xml +++ b/spring-cloud-modules/spring-cloud-contract/pom.xml @@ -60,7 +60,7 @@ 4.0.3 4.0.4 - 2.1.4.RELEASE + 2.7.11 2.5.6 diff --git a/spring-jinq/pom.xml b/spring-jinq/pom.xml index c1dee7fa9f..ebac1c3112 100644 --- a/spring-jinq/pom.xml +++ b/spring-jinq/pom.xml @@ -64,7 +64,7 @@ 2.0.1 - 6.4.0.Final + 6.4.2.Final \ No newline at end of file diff --git a/spring-kafka-2/README.md b/spring-kafka-2/README.md index 250927314c..f9e07d4893 100644 --- a/spring-kafka-2/README.md +++ b/spring-kafka-2/README.md @@ -10,3 +10,4 @@ This module contains articles about Spring with Kafka - [How to Subscribe a Kafka Consumer to Multiple Topics](https://www.baeldung.com/kafka-subscribe-consumer-multiple-topics) - [Splitting Streams in Kafka](https://www.baeldung.com/kafka-splitting-streams) - [Manage Kafka Consumer Groups](https://www.baeldung.com/kafka-manage-consumer-groups) +- [Dead Letter Queue for Kafka With Spring](https://www.baeldung.com/kafka-spring-dead-letter-queue) diff --git a/spring-kafka-3/README.md b/spring-kafka-3/README.md index f9c0036ce3..5250070952 100644 --- a/spring-kafka-3/README.md +++ b/spring-kafka-3/README.md @@ -1,2 +1,3 @@ ## Relevant Articles - [Spring Kafka Trusted Packages Feature](https://www.baeldung.com/spring-kafka-trusted-packages-feature) +- [How to Catch Deserialization Errors in Spring-Kafka?](https://www.baeldung.com/spring-kafka-deserialization-errors) diff --git a/spring-kafka-3/pom.xml b/spring-kafka-3/pom.xml index 972412d18e..894eab2576 100644 --- a/spring-kafka-3/pom.xml +++ b/spring-kafka-3/pom.xml @@ -15,6 +15,10 @@ spring-kafka-3 + + org.springframework.boot + spring-boot-starter + org.springframework.kafka spring-kafka @@ -28,9 +32,30 @@ spring-kafka-test test + + org.testcontainers + junit-jupiter + ${testcontainers.version} + test + + + org.testcontainers + kafka + ${testcontainers.version} + test + + + org.awaitility + awaitility + ${awaitility.version} + test + + 17 3.0.12 + 1.19.3 + 4.2.0 diff --git a/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/Application.java b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/Application.java new file mode 100644 index 0000000000..d3857a0ca0 --- /dev/null +++ b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/Application.java @@ -0,0 +1,13 @@ +package com.baeldung.spring.kafka.deserialization.exception; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + + public static void main(String[] args) { + SpringApplication.run(Application.class, args); + } + +} diff --git a/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/ArticlePublishedEvent.java b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/ArticlePublishedEvent.java new file mode 100644 index 0000000000..d43f6a6692 --- /dev/null +++ b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/ArticlePublishedEvent.java @@ -0,0 +1,4 @@ +package com.baeldung.spring.kafka.deserialization.exception; + +public record ArticlePublishedEvent(String article) { +} \ No newline at end of file diff --git a/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/ArticlesPublishedListener.java b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/ArticlesPublishedListener.java new file mode 100644 index 0000000000..c5d977aa8e --- /dev/null +++ b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/ArticlesPublishedListener.java @@ -0,0 +1,22 @@ +package com.baeldung.spring.kafka.deserialization.exception; + +import java.util.logging.Logger; + +import org.springframework.kafka.annotation.KafkaListener; +import org.springframework.stereotype.Component; + +@Component +public class ArticlesPublishedListener { + private static final Logger log = Logger.getLogger(ArticlesPublishedListener.class.getName()); + private final EmailService emailService; + + public ArticlesPublishedListener(EmailService emailService) { + this.emailService = emailService; + } + + @KafkaListener(topics = "baeldung.articles.published") + public void onArticlePublished(ArticlePublishedEvent event) { + log.info("Received event published event: " + event); + emailService.sendNewsletter(event.article()); + } +} diff --git a/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/EmailService.java b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/EmailService.java new file mode 100644 index 0000000000..1e48bd87b3 --- /dev/null +++ b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/EmailService.java @@ -0,0 +1,22 @@ +package com.baeldung.spring.kafka.deserialization.exception; + +import java.util.ArrayList; +import java.util.List; +import java.util.logging.Logger; + +import org.springframework.stereotype.Service; + +@Service +public class EmailService { + private final static Logger log = Logger.getLogger(EmailService.class.getName()); + private final List articles = new ArrayList<>(); + + public void sendNewsletter(String article) { + log.info("Sending newsletter for article: " + article); + articles.add(article); + } + + public List getArticles() { + return articles; + } +} diff --git a/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/KafkaConfig.java b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/KafkaConfig.java new file mode 100644 index 0000000000..5151e98b87 --- /dev/null +++ b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/KafkaConfig.java @@ -0,0 +1,55 @@ +package com.baeldung.spring.kafka.deserialization.exception; + +import java.util.HashMap; +import java.util.Map; + +import org.apache.kafka.clients.consumer.ConsumerConfig; +import org.apache.kafka.common.serialization.StringDeserializer; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.kafka.annotation.EnableKafka; +import org.springframework.kafka.config.ConcurrentKafkaListenerContainerFactory; +import org.springframework.kafka.core.ConsumerFactory; +import org.springframework.kafka.core.DefaultKafkaConsumerFactory; +import org.springframework.kafka.listener.CommonErrorHandler; +import org.springframework.kafka.support.serializer.JsonDeserializer; + +@EnableKafka +@Configuration +class KafkaConfig { + + @Bean + ConsumerFactory consumerFactory( + @Value("${spring.kafka.bootstrap-servers}") String bootstrapServers + ) { + Map props = new HashMap<>(); + props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, bootstrapServers); + props.put(ConsumerConfig.GROUP_ID_CONFIG, "baeldung-app-1"); + props.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest"); + props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class); + props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, JsonDeserializer.class); + return new DefaultKafkaConsumerFactory<>( + props, + new StringDeserializer(), + new JsonDeserializer<>(ArticlePublishedEvent.class) + ); + } + + @Bean + ConcurrentKafkaListenerContainerFactory kafkaListenerContainerFactory( + ConsumerFactory consumerFactory, + CommonErrorHandler commonErrorHandler + ) { + var factory = new ConcurrentKafkaListenerContainerFactory(); + factory.setConsumerFactory(consumerFactory); + factory.setCommonErrorHandler(commonErrorHandler); + return factory; + } + + @Bean + CommonErrorHandler kafkaErrorHandler() { + return new KafkaErrorHandler(); + } + +} \ No newline at end of file diff --git a/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/KafkaErrorHandler.java b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/KafkaErrorHandler.java new file mode 100644 index 0000000000..ea4211ab53 --- /dev/null +++ b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/deserialization/exception/KafkaErrorHandler.java @@ -0,0 +1,34 @@ +package com.baeldung.spring.kafka.deserialization.exception; + + +import org.apache.kafka.clients.consumer.Consumer; +import org.apache.kafka.clients.consumer.ConsumerRecord; +import org.apache.kafka.common.errors.RecordDeserializationException; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.kafka.listener.CommonErrorHandler; +import org.springframework.kafka.listener.MessageListenerContainer; + +class KafkaErrorHandler implements CommonErrorHandler { + private static final Logger log = LoggerFactory.getLogger(KafkaErrorHandler.class); + + @Override + public void handleRecord(Exception exception, ConsumerRecord record, Consumer consumer, MessageListenerContainer container) { + handle(exception, consumer); + } + + @Override + public void handleOtherException(Exception exception, Consumer consumer, MessageListenerContainer container, boolean batchListener) { + handle(exception, consumer); + } + + private void handle(Exception exception, Consumer consumer) { + log.error("Exception thrown", exception); + if (exception instanceof RecordDeserializationException ex) { + consumer.seek(ex.topicPartition(), ex.offset() + 1L); + consumer.commitSync(); + } else { + log.error("Exception not handled", exception); + } + } +} \ No newline at end of file diff --git a/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/trusted/packages/SomeData.java b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/trusted/packages/SomeData.java new file mode 100644 index 0000000000..1da3ad8635 --- /dev/null +++ b/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/trusted/packages/SomeData.java @@ -0,0 +1,37 @@ +package com.baeldung.spring.kafka.trusted.packages; + +import java.time.Instant; + +public class SomeData { + + private String id; + private String type; + private String status; + private Instant timestamp; + + public SomeData() { + } + + public SomeData(String id, String type, String status, Instant timestamp) { + this.id = id; + this.type = type; + this.status = status; + this.timestamp = timestamp; + } + + public String getId() { + return id; + } + + public String getType() { + return type; + } + + public String getStatus() { + return status; + } + + public Instant getTimestamp() { + return timestamp; + } +} diff --git a/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/deserialization/exception/DeserializationExceptionLiveTest.java b/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/deserialization/exception/DeserializationExceptionLiveTest.java new file mode 100644 index 0000000000..19950ad54b --- /dev/null +++ b/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/deserialization/exception/DeserializationExceptionLiveTest.java @@ -0,0 +1,96 @@ +package com.baeldung.spring.kafka.deserialization.exception; + +import static java.time.Duration.ofMillis; +import static java.time.Duration.ofSeconds; +import static org.assertj.core.api.Assertions.assertThat; +import static org.awaitility.Awaitility.await; + +import java.util.Properties; +import java.util.concurrent.ExecutionException; + +import org.apache.kafka.clients.producer.KafkaProducer; +import org.apache.kafka.clients.producer.ProducerConfig; +import org.apache.kafka.clients.producer.ProducerRecord; +import org.apache.kafka.common.serialization.StringSerializer; +import org.awaitility.Awaitility; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.DynamicPropertyRegistry; +import org.springframework.test.context.DynamicPropertySource; +import org.testcontainers.containers.KafkaContainer; +import org.testcontainers.junit.jupiter.Container; +import org.testcontainers.junit.jupiter.Testcontainers; +import org.testcontainers.utility.DockerImageName; + +@Testcontainers +@SpringBootTest(classes = Application.class) +class DeserializationExceptionLiveTest { + + @Container + private static KafkaContainer KAFKA = new KafkaContainer(DockerImageName.parse("confluentinc/cp-kafka:latest")); + + private static KafkaProducer testKafkaProducer; + + @Autowired + private EmailService emailService; + + @DynamicPropertySource + static void setProps(DynamicPropertyRegistry registry) { + registry.add("spring.kafka.bootstrap-servers", KAFKA::getBootstrapServers); + } + + @BeforeAll + static void beforeAll() { + Properties props = new Properties(); + props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, KAFKA.getBootstrapServers()); + props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class.getName()); + props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, StringSerializer.class.getName()); + testKafkaProducer = new KafkaProducer<>(props); + + Awaitility.setDefaultTimeout(ofSeconds(5)); + Awaitility.setDefaultPollInterval(ofMillis(50)); + } + + @BeforeEach + void beforeEach() { + emailService.getArticles().clear(); + } + + @Test + void whenPublishingInvalidArticleEvent_thenHandleExceptionAndContinueProcessing() { + publishArticle("{ \"article\": \"Introduction to Kafka\" }"); + publishArticle(" !! Invalid JSON !! "); + publishArticle("{ \"article\": \"Kafka Streams Tutorial\" }"); + + await().untilAsserted(() -> assertThat(emailService.getArticles()) + .containsExactlyInAnyOrder( + "Introduction to Kafka", + "Kafka Streams Tutorial" + )); + } + + @Test + void whenPublishingValidArticleEvent_thenProcessWithoutErrors() { + publishArticle("{ \"article\": \"Kotlin for Java Developers\" }"); + publishArticle("{ \"article\": \"The S.O.L.I.D. Principles\" }"); + + await().untilAsserted(() -> assertThat(emailService.getArticles()) + .containsExactlyInAnyOrder( + "Kotlin for Java Developers", + "The S.O.L.I.D. Principles" + )); + } + + + static void publishArticle(String jsonBody) { + ProducerRecord record = new ProducerRecord<>("baeldung.articles.published", jsonBody); + try { + testKafkaProducer.send(record).get(); + } catch (ExecutionException | InterruptedException e) { + throw new RuntimeException(e); + } + } +} diff --git a/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/trusted/packages/ListenerConfiguration.java b/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/trusted/packages/ListenerConfiguration.java new file mode 100644 index 0000000000..6bcb047c19 --- /dev/null +++ b/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/trusted/packages/ListenerConfiguration.java @@ -0,0 +1,42 @@ +package com.baeldung.spring.kafka.trusted.packages; + +import java.util.Map; + +import org.apache.kafka.clients.consumer.ConsumerConfig; +import org.apache.kafka.common.serialization.StringDeserializer; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.kafka.config.ConcurrentKafkaListenerContainerFactory; +import org.springframework.kafka.core.ConsumerFactory; +import org.springframework.kafka.core.DefaultKafkaConsumerFactory; +import org.springframework.kafka.support.serializer.JsonDeserializer; + +@Configuration +public class ListenerConfiguration { + + @Bean("messageListenerContainer") + public ConcurrentKafkaListenerContainerFactory messageListenerContainer() { + ConcurrentKafkaListenerContainerFactory container = new ConcurrentKafkaListenerContainerFactory<>(); + container.setConsumerFactory(someDataConsumerFactory()); + return container; + } + + @Bean + public ConsumerFactory someDataConsumerFactory() { + JsonDeserializer payloadJsonDeserializer = new JsonDeserializer<>(); + payloadJsonDeserializer.trustedPackages("com.baeldung.spring.kafka"); + return new DefaultKafkaConsumerFactory<>( + consumerConfigs(), + new StringDeserializer(), + payloadJsonDeserializer + ); + } + + @Bean + public Map consumerConfigs() { + return Map.of( + ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, "PLAINTEXT://localhost:9092", + ConsumerConfig.GROUP_ID_CONFIG, "some-group-id" + ); + } +} \ No newline at end of file diff --git a/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/trusted/packages/ProducerConfiguration.java b/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/trusted/packages/ProducerConfiguration.java new file mode 100644 index 0000000000..f7de2f5023 --- /dev/null +++ b/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/trusted/packages/ProducerConfiguration.java @@ -0,0 +1,39 @@ +package com.baeldung.spring.kafka.trusted.packages; + +import org.apache.kafka.clients.producer.ProducerConfig; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.kafka.core.DefaultKafkaProducerFactory; +import org.springframework.kafka.core.KafkaTemplate; +import org.springframework.kafka.core.ProducerFactory; +import org.springframework.kafka.support.serializer.JsonSerializer; +import org.springframework.kafka.support.serializer.StringOrBytesSerializer; + +import java.util.Map; + +@Configuration +public class ProducerConfiguration { + + @Bean + public KafkaTemplate kafkaTemplate() { + return new KafkaTemplate<>(producerFactory()); + } + + @Bean + public ProducerFactory producerFactory() { + JsonSerializer jsonSerializer = new JsonSerializer<>(); + jsonSerializer.setAddTypeInfo(true); + return new DefaultKafkaProducerFactory<>( + producerFactoryConfig(), + new StringOrBytesSerializer(), + jsonSerializer + ); + } + + @Bean + public Map producerFactoryConfig() { + return Map.of( + ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "PLAINTEXT://localhost:9092" + ); + } +} \ No newline at end of file diff --git a/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/trusted/packages/TrustedPackagesLiveTest.java b/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/trusted/packages/TrustedPackagesLiveTest.java new file mode 100644 index 0000000000..532f862e13 --- /dev/null +++ b/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/trusted/packages/TrustedPackagesLiveTest.java @@ -0,0 +1,59 @@ +package com.baeldung.spring.kafka.trusted.packages; + +import java.time.Instant; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.TimeUnit; + +import org.apache.kafka.clients.producer.ProducerRecord; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.mockito.Mockito; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.test.mock.mockito.SpyBean; +import org.springframework.kafka.annotation.KafkaListener; +import org.springframework.kafka.core.KafkaTemplate; +import org.springframework.stereotype.Component; + +/** + * This test requires a running instance of kafka to be present + */ +@SpringBootTest +@Disabled("This test requires a running instance of kafka to be present - manually run it") +public class TrustedPackagesLiveTest { + + @Autowired + private KafkaTemplate kafkaTemplate; + + @SpyBean + TestConsumer testConsumer; + + @Test + void givenMessageInTheTopic_whenTypeInfoPackageIsTrusted_thenMessageIsSuccessfullyConsumed() throws InterruptedException { + CountDownLatch latch = new CountDownLatch(1); + + Mockito.doAnswer(invocationOnMock -> { + try { + latch.countDown(); + return invocationOnMock.callRealMethod(); + } catch (Exception e) { + return null; + } + }).when(testConsumer).onMessage(Mockito.any()); + + SomeData someData = new SomeData("1", "active", "sent", Instant.now()); + kafkaTemplate.send(new ProducerRecord<>("sourceTopic", null, someData)); + + Assertions.assertTrue(latch.await(10, TimeUnit.SECONDS)); + } + + @Component + static class TestConsumer { + + @KafkaListener(topics = "sourceTopic", containerFactory = "messageListenerContainer") + public void onMessage(SomeData someData) { + + } + } +} diff --git a/spring-kafka-3_/README.md b/spring-kafka-3_/README.md new file mode 100644 index 0000000000..f9c0036ce3 --- /dev/null +++ b/spring-kafka-3_/README.md @@ -0,0 +1,2 @@ +## Relevant Articles +- [Spring Kafka Trusted Packages Feature](https://www.baeldung.com/spring-kafka-trusted-packages-feature) diff --git a/spring-kafka-3_/pom.xml b/spring-kafka-3_/pom.xml new file mode 100644 index 0000000000..058b981bc1 --- /dev/null +++ b/spring-kafka-3_/pom.xml @@ -0,0 +1,34 @@ + + 4.0.0 + spring-kafka-3_ + jar + spring-kafka-3_ + + + com.baeldung + parent-boot-2 + 0.0.1-SNAPSHOT + ../parent-boot-2 + + + + + org.springframework.kafka + spring-kafka + + + com.fasterxml.jackson.core + jackson-databind + + + org.springframework.kafka + spring-kafka-test + test + + + + + 3.0.12 + + diff --git a/spring-kafka-3/src/main/java/com/baeldung/spring/kafka/SomeData.java b/spring-kafka-3_/src/main/java/com/baeldung/spring/kafka/SomeData.java similarity index 100% rename from spring-kafka-3/src/main/java/com/baeldung/spring/kafka/SomeData.java rename to spring-kafka-3_/src/main/java/com/baeldung/spring/kafka/SomeData.java diff --git a/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/ListenerConfiguration.java b/spring-kafka-3_/src/test/java/com/baeldung/spring/kafka/ListenerConfiguration.java similarity index 100% rename from spring-kafka-3/src/test/java/com/baeldung/spring/kafka/ListenerConfiguration.java rename to spring-kafka-3_/src/test/java/com/baeldung/spring/kafka/ListenerConfiguration.java diff --git a/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/ProducerConfiguration.java b/spring-kafka-3_/src/test/java/com/baeldung/spring/kafka/ProducerConfiguration.java similarity index 100% rename from spring-kafka-3/src/test/java/com/baeldung/spring/kafka/ProducerConfiguration.java rename to spring-kafka-3_/src/test/java/com/baeldung/spring/kafka/ProducerConfiguration.java diff --git a/spring-kafka-3/src/test/java/com/baeldung/spring/kafka/TrustedPackagesLiveTest.java b/spring-kafka-3_/src/test/java/com/baeldung/spring/kafka/TrustedPackagesLiveTest.java similarity index 100% rename from spring-kafka-3/src/test/java/com/baeldung/spring/kafka/TrustedPackagesLiveTest.java rename to spring-kafka-3_/src/test/java/com/baeldung/spring/kafka/TrustedPackagesLiveTest.java diff --git a/spring-kafka/README.md b/spring-kafka/README.md index 49b19ed448..97f459f534 100644 --- a/spring-kafka/README.md +++ b/spring-kafka/README.md @@ -11,6 +11,7 @@ This module contains articles about Spring with Kafka - [Configuring Kafka SSL Using Spring Boot](https://www.baeldung.com/spring-boot-kafka-ssl) - [Kafka Streams With Spring Boot](https://www.baeldung.com/spring-boot-kafka-streams) - [Get the Number of Messages in an Apache Kafka Topic](https://www.baeldung.com/java-kafka-count-topic-messages) +- [Sending Data to a Specific Partition in Kafka](https://www.baeldung.com/kafka-send-data-partition) ### Intro diff --git a/spring-reactive-modules/spring-reactive-2/README.md b/spring-reactive-modules/spring-reactive-2/README.md index dbaebc370e..c635d4c9b5 100644 --- a/spring-reactive-modules/spring-reactive-2/README.md +++ b/spring-reactive-modules/spring-reactive-2/README.md @@ -2,7 +2,7 @@ This module contains articles about reactive Spring Boot. -- [Validation for Functional Endpoints in Spring 5](https://www.baeldung.com/spring-functional-endpoints-validation) +- [Validation for Functional Endpoints in Spring 6](https://www.baeldung.com/spring-functional-endpoints-validation) - [Testing Reactive Streams Using StepVerifier and TestPublisher](https://www.baeldung.com/reactive-streams-step-verifier-test-publisher) - [Static Content in Spring WebFlux](https://www.baeldung.com/spring-webflux-static-content) - [Server-Sent Events in Spring](https://www.baeldung.com/spring-server-sent-events) diff --git a/spring-reactive-modules/spring-reactive-3/README.md b/spring-reactive-modules/spring-reactive-3/README.md index 4dbaa93226..5c4bf97d66 100644 --- a/spring-reactive-modules/spring-reactive-3/README.md +++ b/spring-reactive-modules/spring-reactive-3/README.md @@ -8,4 +8,5 @@ This module contains articles about reactive Spring Boot. - [Spring Boot Actuator](https://www.baeldung.com/spring-boot-actuators) - [Reactive WebSockets with Spring 5](https://www.baeldung.com/spring-5-reactive-websockets) - [A Guide to Spring Session Reactive Support: WebSession](https://www.baeldung.com/spring-session-reactive) +- [Custom JSON Deserialization Using Spring WebClient](https://www.baeldung.com/spring-webclient-json-custom-deserialization) - More articles: [[<-- prev]](../spring-reactive-2) diff --git a/spring-reactive-modules/spring-reactive-3/pom.xml b/spring-reactive-modules/spring-reactive-3/pom.xml index 17c9690157..45dd25794e 100644 --- a/spring-reactive-modules/spring-reactive-3/pom.xml +++ b/spring-reactive-modules/spring-reactive-3/pom.xml @@ -64,6 +64,11 @@ org.springframework.session spring-session-data-redis + + com.squareup.okhttp3 + mockwebserver + 4.12.0 + diff --git a/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/Application.java b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/Application.java new file mode 100644 index 0000000000..0fcdb3a2fb --- /dev/null +++ b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/Application.java @@ -0,0 +1,13 @@ +package com.baeldung.custom.deserialization; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + + public static void main(String[] args) { + SpringApplication.run(Application.class, args); + } + +} diff --git a/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/config/CodecCustomizerConfig.java b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/config/CodecCustomizerConfig.java new file mode 100644 index 0000000000..ef3eb1e97f --- /dev/null +++ b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/config/CodecCustomizerConfig.java @@ -0,0 +1,27 @@ +package com.baeldung.custom.deserialization.config; + +import org.springframework.boot.web.codec.CodecCustomizer; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.http.MediaType; +import org.springframework.http.codec.CodecConfigurer; +import org.springframework.http.codec.json.Jackson2JsonDecoder; +import org.springframework.http.codec.json.Jackson2JsonEncoder; +import org.springframework.util.MimeType; + +import com.fasterxml.jackson.databind.ObjectMapper; + +@Configuration +public class CodecCustomizerConfig { + + @Bean + public CodecCustomizer codecCustomizer(ObjectMapper customObjectMapper) { + return configurer -> { + MimeType mimeType = MimeType.valueOf(MediaType.APPLICATION_JSON_VALUE); + CodecConfigurer.CustomCodecs customCodecs = configurer.customCodecs(); + customCodecs.register(new Jackson2JsonDecoder(customObjectMapper, mimeType)); + customCodecs.register(new Jackson2JsonEncoder(customObjectMapper, mimeType)); + }; + } + +} diff --git a/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/config/CustomDeserializer.java b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/config/CustomDeserializer.java new file mode 100644 index 0000000000..2eeb250e0b --- /dev/null +++ b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/config/CustomDeserializer.java @@ -0,0 +1,21 @@ +package com.baeldung.custom.deserialization.config; + +import java.io.IOException; +import java.time.LocalDateTime; +import java.time.OffsetDateTime; +import java.time.ZoneOffset; + +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer; + +public class CustomDeserializer extends LocalDateTimeDeserializer { + @Override + public LocalDateTime deserialize(JsonParser jsonParser, DeserializationContext ctxt) throws IOException { + try { + return OffsetDateTime.parse(jsonParser.getText()).atZoneSameInstant(ZoneOffset.UTC).toLocalDateTime(); + } catch (Exception e) { + return super.deserialize(jsonParser, ctxt); + } + } +} diff --git a/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/config/CustomObjectMapper.java b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/config/CustomObjectMapper.java new file mode 100644 index 0000000000..9ebd85abf8 --- /dev/null +++ b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/config/CustomObjectMapper.java @@ -0,0 +1,18 @@ +package com.baeldung.custom.deserialization.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +import com.fasterxml.jackson.databind.DeserializationFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; + +@Configuration +public class CustomObjectMapper { + @Bean + public ObjectMapper objectMapper() { + return new ObjectMapper() + .configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, true) + .registerModule(new JavaTimeModule()); + } +} diff --git a/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/controller/OrderController.java b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/controller/OrderController.java new file mode 100644 index 0000000000..20327333f1 --- /dev/null +++ b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/controller/OrderController.java @@ -0,0 +1,37 @@ +package com.baeldung.custom.deserialization.controller; + +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RestController; + +import com.baeldung.custom.deserialization.model.OrderResponse; +import com.baeldung.custom.deserialization.service.ExternalServiceV1; +import com.baeldung.custom.deserialization.service.ExternalServiceV2; + +import reactor.core.publisher.Mono; + +@RestController +public class OrderController { + + private final ExternalServiceV1 externalServiceV1; + private final ExternalServiceV2 externalServiceV2; + + public OrderController(ExternalServiceV1 externalServiceV1, ExternalServiceV2 externalServiceV2) { + this.externalServiceV1 = externalServiceV1; + this.externalServiceV2 = externalServiceV2; + } + + @GetMapping(value = "v1/order/{id}", produces = MediaType.APPLICATION_JSON_VALUE) + public final Mono searchOrderV1(@PathVariable(value = "id") int id) { + return externalServiceV1.findById(id) + .bodyToMono(OrderResponse.class); + } + + @GetMapping(value = "v2/order/{id}", produces = MediaType.APPLICATION_JSON_VALUE) + public final Mono searchOrderV2(@PathVariable(value = "id") int id) { + return externalServiceV2.findById(id) + .bodyToMono(OrderResponse.class); + } + +} diff --git a/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/model/OrderResponse.java b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/model/OrderResponse.java new file mode 100644 index 0000000000..18d45e7dba --- /dev/null +++ b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/model/OrderResponse.java @@ -0,0 +1,19 @@ +package com.baeldung.custom.deserialization.model; + +import java.time.LocalDateTime; +import java.util.List; +import java.util.UUID; + +import lombok.Data; + +@Data +public class OrderResponse { + + private UUID orderId; + + private LocalDateTime orderDateTime; + + private List address; + + private List orderNotes; +} diff --git a/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/service/ExternalServiceV1.java b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/service/ExternalServiceV1.java new file mode 100644 index 0000000000..34c78ae416 --- /dev/null +++ b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/service/ExternalServiceV1.java @@ -0,0 +1,23 @@ +package com.baeldung.custom.deserialization.service; + +import org.springframework.stereotype.Component; +import org.springframework.web.reactive.function.client.WebClient; + +@Component +public class ExternalServiceV1 { + + private final WebClient.Builder webclientBuilder; + + public ExternalServiceV1(WebClient.Builder webclientBuilder) { + this.webclientBuilder = webclientBuilder; + } + + public WebClient.ResponseSpec findById(int id) { + return webclientBuilder.baseUrl("http://localhost:8090/") + .build() + .get() + .uri("external/order/" + id) + .retrieve(); + } + +} diff --git a/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/service/ExternalServiceV2.java b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/service/ExternalServiceV2.java new file mode 100644 index 0000000000..0f976a42f2 --- /dev/null +++ b/spring-reactive-modules/spring-reactive-3/src/main/java/com/baeldung/custom/deserialization/service/ExternalServiceV2.java @@ -0,0 +1,40 @@ +package com.baeldung.custom.deserialization.service; + +import java.time.LocalDateTime; + +import org.springframework.http.MediaType; +import org.springframework.http.codec.json.Jackson2JsonDecoder; +import org.springframework.http.codec.json.Jackson2JsonEncoder; +import org.springframework.stereotype.Component; +import org.springframework.web.reactive.function.client.ExchangeStrategies; +import org.springframework.web.reactive.function.client.WebClient; + +import com.baeldung.custom.deserialization.config.CustomDeserializer; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.module.SimpleModule; + +@Component +public class ExternalServiceV2 { + + public WebClient.ResponseSpec findById(int id) { + + ObjectMapper objectMapper = new ObjectMapper().registerModule(new SimpleModule().addDeserializer(LocalDateTime.class, new CustomDeserializer())); + + WebClient webClient = WebClient.builder() + .baseUrl("http://localhost:8090/") + .exchangeStrategies(ExchangeStrategies.builder() + .codecs(clientDefaultCodecsConfigurer -> { + clientDefaultCodecsConfigurer.defaultCodecs() + .jackson2JsonEncoder(new Jackson2JsonEncoder(objectMapper, MediaType.APPLICATION_JSON)); + clientDefaultCodecsConfigurer.defaultCodecs() + .jackson2JsonDecoder(new Jackson2JsonDecoder(objectMapper, MediaType.APPLICATION_JSON)); + }) + .build()) + .build(); + + return webClient.get() + .uri("external/order/" + id) + .retrieve(); + } + +} diff --git a/spring-reactive-modules/spring-reactive-3/src/test/java/com/baeldung/custom/deserialization/OrderControllerIntegrationTest.java b/spring-reactive-modules/spring-reactive-3/src/test/java/com/baeldung/custom/deserialization/OrderControllerIntegrationTest.java new file mode 100644 index 0000000000..9c8bd7c0d4 --- /dev/null +++ b/spring-reactive-modules/spring-reactive-3/src/test/java/com/baeldung/custom/deserialization/OrderControllerIntegrationTest.java @@ -0,0 +1,135 @@ +package com.baeldung.custom.deserialization; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.io.IOException; +import java.time.LocalDateTime; +import java.util.UUID; + +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.reactive.AutoConfigureWebTestClient; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.http.HttpStatus; +import org.springframework.test.context.TestPropertySource; +import org.springframework.test.web.reactive.server.WebTestClient; + +import com.baeldung.custom.deserialization.model.OrderResponse; + +import okhttp3.mockwebserver.MockResponse; +import okhttp3.mockwebserver.MockWebServer; + +@SpringBootTest(classes = Application.class, webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT) +@TestPropertySource(properties = "server.port=8091") +@AutoConfigureWebTestClient(timeout = "100000") +class OrderControllerIntegrationTest { + + @Autowired + private WebTestClient webTestClient; + + private static MockWebServer mockExternalService; + + @BeforeAll + static void setup() throws IOException { + mockExternalService = new MockWebServer(); + mockExternalService.start(8090); + } + + @Test + void givenMockedExternalResponse_whenSearchByIdV1_thenOrderResponseShouldFailBecauseOfUnknownProperty() { + + mockExternalService.enqueue(new MockResponse().addHeader("Content-Type", "application/json; charset=utf-8") + .setBody("{\n" + " \"orderId\": \"a1b2c3d4-e5f6-4a5b-8c9d-0123456789ab\",\n" + + " \"orderDateTime\": \"2024-01-20T12:34:56\",\n" + + " \"address\": [\"123 Main St\", \"Apt 456\", \"Cityville\"],\n" + + " \"orderNotes\": [\"Special request: Handle with care\", \"Gift wrapping required\"],\n" + + " \"customerName\": \"John Doe\",\n" + " \"totalAmount\": 99.99,\n" + + " \"paymentMethod\": \"Credit Card\"\n" + " }") + .setResponseCode(HttpStatus.OK.value())); + + webTestClient.get() + .uri("v1/order/1") + .exchange() + .expectStatus() + .is5xxServerError(); + } + + @Test + void givenMockedExternalResponse_whenSearchByIdV1_thenOrderResponseShouldBeReceivedSuccessfully() { + + mockExternalService.enqueue(new MockResponse().addHeader("Content-Type", "application/json; charset=utf-8") + .setBody("{\n" + " \"orderId\": \"a1b2c3d4-e5f6-4a5b-8c9d-0123456789ab\",\n" + + " \"orderDateTime\": \"2024-01-20T12:34:56\",\n" + + " \"address\": [\"123 Main St\", \"Apt 456\", \"Cityville\"],\n" + + " \"orderNotes\": [\"Special request: Handle with care\", \"Gift wrapping required\"]\n" + + " }") + .setResponseCode(HttpStatus.OK.value())); + + OrderResponse orderResponse = webTestClient.get() + .uri("v1/order/1") + .exchange() + .expectStatus() + .isOk() + .expectBody(OrderResponse.class) + .returnResult() + .getResponseBody(); + assertEquals(UUID.fromString("a1b2c3d4-e5f6-4a5b-8c9d-0123456789ab"), orderResponse.getOrderId()); + assertEquals(LocalDateTime.of(2024, 1, 20, 12, 34, 56), orderResponse.getOrderDateTime()); + assertThat(orderResponse.getAddress()).hasSize(3); + assertThat(orderResponse.getOrderNotes()).hasSize(2); + } + + @Test + void givenMockedExternalResponse_whenSearchByIdV2_thenOrderResponseShouldFailBecauseOfUnknownProperty() { + + mockExternalService.enqueue(new MockResponse().addHeader("Content-Type", "application/json; charset=utf-8") + .setBody("{\n" + " \"orderId\": \"a1b2c3d4-e5f6-4a5b-8c9d-0123456789ab\",\n" + + " \"orderDateTime\": \"2024-01-20T12:34:56\",\n" + + " \"address\": [\"123 Main St\", \"Apt 456\", \"Cityville\"],\n" + + " \"orderNotes\": [\"Special request: Handle with care\", \"Gift wrapping required\"],\n" + + " \"customerName\": \"John Doe\",\n" + + " \"totalAmount\": 99.99,\n" + + " \"paymentMethod\": \"Credit Card\"\n" + + " }") + .setResponseCode(HttpStatus.OK.value())); + + webTestClient.get() + .uri("v2/order/1") + .exchange() + .expectStatus() + .is5xxServerError(); + } + + @Test + void givenMockedExternalResponse_whenSearchByIdV2_thenOrderResponseShouldBeReceivedSuccessfully() { + + mockExternalService.enqueue(new MockResponse().addHeader("Content-Type", "application/json; charset=utf-8") + .setBody("{\n" + " \"orderId\": \"a1b2c3d4-e5f6-4a5b-8c9d-0123456789ab\",\n" + + " \"orderDateTime\": \"2024-01-20T14:34:56+01:00\",\n" + + " \"address\": [\"123 Main St\", \"Apt 456\", \"Cityville\"],\n" + + " \"orderNotes\": [\"Special request: Handle with care\", \"Gift wrapping required\"]\n" + " }") + .setResponseCode(HttpStatus.OK.value())); + + OrderResponse orderResponse = webTestClient.get() + .uri("v2/order/1") + .exchange() + .expectStatus() + .isOk() + .expectBody(OrderResponse.class) + .returnResult() + .getResponseBody(); + assertEquals(UUID.fromString("a1b2c3d4-e5f6-4a5b-8c9d-0123456789ab"), orderResponse.getOrderId()); + assertEquals(LocalDateTime.of(2024, 1, 20, 13, 34, 56), orderResponse.getOrderDateTime()); + assertThat(orderResponse.getAddress()).hasSize(3); + assertThat(orderResponse.getOrderNotes()).hasSize(2); + } + + @AfterAll + static void tearDown() throws IOException { + mockExternalService.shutdown(); + } + +} \ No newline at end of file diff --git a/spring-reactive-modules/spring-reactive-client-2/pom.xml b/spring-reactive-modules/spring-reactive-client-2/pom.xml index f7d82053bb..22b2943433 100644 --- a/spring-reactive-modules/spring-reactive-client-2/pom.xml +++ b/spring-reactive-modules/spring-reactive-client-2/pom.xml @@ -9,9 +9,10 @@ spring boot sample project about new features - com.baeldung.spring.reactive - spring-reactive-modules - 1.0.0-SNAPSHOT + com.baeldung + parent-boot-3 + 0.0.1-SNAPSHOT + ../../parent-boot-3 @@ -33,8 +34,8 @@ ${reactor-spring.version} - javax.json.bind - javax.json.bind-api + jakarta.json.bind + jakarta.json.bind-api io.github.resilience4j @@ -89,6 +90,9 @@ org.springframework.boot spring-boot-maven-plugin + + com.baeldung.limitrequests.LimitRequestsApp + org.apache.maven.plugins diff --git a/spring-security-modules/pom.xml b/spring-security-modules/pom.xml index 1b3db18b84..0781a98119 100644 --- a/spring-security-modules/pom.xml +++ b/spring-security-modules/pom.xml @@ -17,7 +17,7 @@ spring-security-acl - spring-security-auth0 + spring-security-auth0 spring-security-cognito spring-security-core spring-security-core-2 diff --git a/spring-security-modules/spring-security-azuread/pom.xml b/spring-security-modules/spring-security-azuread/pom.xml index b32a1eb16a..c334bbba3e 100644 --- a/spring-security-modules/spring-security-azuread/pom.xml +++ b/spring-security-modules/spring-security-azuread/pom.xml @@ -2,14 +2,15 @@ - 4.0.0 + spring-security-azuread + com.baeldung - spring-security-modules + parent-boot-3 + ../../parent-boot-3 0.0.1-SNAPSHOT - spring-security-azuread diff --git a/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/Application.java b/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/Application.java index ac36bc1328..ada9b69df4 100644 --- a/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/Application.java +++ b/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/Application.java @@ -6,7 +6,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Application { - + public static void main(String[] args) { SpringApplication.run(Application.class, args); } diff --git a/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/config/JwtAuthorizationConfiguration.java b/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/config/JwtAuthorizationConfiguration.java index 4d82e930ae..9945ad44fa 100644 --- a/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/config/JwtAuthorizationConfiguration.java +++ b/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/config/JwtAuthorizationConfiguration.java @@ -10,9 +10,7 @@ import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.oauth2.client.oidc.userinfo.OidcUserRequest; import org.springframework.security.oauth2.client.oidc.userinfo.OidcUserService; -import org.springframework.security.oauth2.client.registration.ClientRegistration.ProviderDetails; import org.springframework.security.oauth2.client.userinfo.OAuth2UserService; -import org.springframework.security.oauth2.core.oidc.user.DefaultOidcUser; import org.springframework.security.oauth2.core.oidc.user.OidcUser; import org.springframework.security.web.SecurityFilterChain; @@ -22,18 +20,14 @@ import com.baeldung.security.azuread.support.NamedOidcUser; @Configuration @EnableConfigurationProperties(JwtAuthorizationProperties.class) public class JwtAuthorizationConfiguration { - - - + @Bean SecurityFilterChain customJwtSecurityChain(HttpSecurity http, JwtAuthorizationProperties props) throws Exception { // @formatter:off return http - .authorizeRequests( r -> r.anyRequest().authenticated()) - .oauth2Login(oauth2 -> { - oauth2.userInfoEndpoint(ep -> - ep.oidcUserService(customOidcUserService(props))); - }) + .authorizeHttpRequests( r -> r.anyRequest().authenticated()) + .oauth2Login(oauth2 -> oauth2.userInfoEndpoint(ep -> + ep.oidcUserService(customOidcUserService(props)))) .build(); // @formatter:on } @@ -45,28 +39,16 @@ public class JwtAuthorizationConfiguration { props.getGroupsClaim(), props.getGroupToAuthorities()); - return (userRequest) -> { + return userRequest -> { OidcUser oidcUser = delegate.loadUser(userRequest); // Enrich standard authorities with groups Set mappedAuthorities = new HashSet<>(); mappedAuthorities.addAll(oidcUser.getAuthorities()); mappedAuthorities.addAll(mapper.mapAuthorities(oidcUser)); - + oidcUser = new NamedOidcUser(mappedAuthorities, oidcUser.getIdToken(), oidcUser.getUserInfo(),oidcUser.getName()); return oidcUser; }; } - - - -// @Bean -// GrantedAuthoritiesMapper jwtAuthoritiesMapper(JwtAuthorizationProperties props) { -// return new MappingJwtGrantedAuthoritiesMapper( -// props.getAuthoritiesPrefix(), -// props.getGroupsClaim(), -// props.getGroupToAuthorities()); -// } - - } diff --git a/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/config/JwtAuthorizationProperties.java b/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/config/JwtAuthorizationProperties.java index 981be317a3..3520c4aa6d 100644 --- a/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/config/JwtAuthorizationProperties.java +++ b/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/config/JwtAuthorizationProperties.java @@ -62,7 +62,4 @@ public class JwtAuthorizationProperties { public void setAuthoritiesPrefix(String authoritiesPrefix) { this.authoritiesPrefix = authoritiesPrefix; } - - - } diff --git a/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/support/GroupsClaimMapper.java b/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/support/GroupsClaimMapper.java index 2487cd9db3..74f92d96d8 100644 --- a/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/support/GroupsClaimMapper.java +++ b/spring-security-modules/spring-security-azuread/src/main/java/com/baeldung/security/azuread/support/GroupsClaimMapper.java @@ -10,19 +10,16 @@ import java.util.List; import java.util.Map; import java.util.stream.Collectors; -import org.springframework.core.convert.converter.Converter; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.authority.SimpleGrantedAuthority; -import org.springframework.security.core.authority.mapping.GrantedAuthoritiesMapper; import org.springframework.security.oauth2.core.ClaimAccessor; -import org.springframework.security.oauth2.jwt.Jwt; /** * @author Baeldung * */ public class GroupsClaimMapper { - + private final String authoritiesPrefix; private final String groupsClaim; private final Map> groupToAuthorities; diff --git a/spring-security-modules/spring-security-azuread/src/main/resources/application-azuread.yml b/spring-security-modules/spring-security-azuread/src/main/resources/application-azuread.yml index 5e65c381c8..fec11b84c7 100644 --- a/spring-security-modules/spring-security-azuread/src/main/resources/application-azuread.yml +++ b/spring-security-modules/spring-security-azuread/src/main/resources/application-azuread.yml @@ -17,7 +17,7 @@ spring: - openid - email - profile - + # Group mapping baeldung: jwt: diff --git a/spring-security-modules/spring-security-azuread/src/test/java/com/baeldung/security/azuread/ApplicationLiveTest.java b/spring-security-modules/spring-security-azuread/src/test/java/com/baeldung/security/azuread/ApplicationLiveTest.java index 8c941aa787..2ffa9e9a6f 100644 --- a/spring-security-modules/spring-security-azuread/src/test/java/com/baeldung/security/azuread/ApplicationLiveTest.java +++ b/spring-security-modules/spring-security-azuread/src/test/java/com/baeldung/security/azuread/ApplicationLiveTest.java @@ -1,7 +1,6 @@ package com.baeldung.security.azuread; import static org.assertj.core.api.Assertions.assertThat; -import static org.junit.jupiter.api.Assertions.*; import java.net.URI; @@ -12,6 +11,7 @@ import org.springframework.boot.test.context.SpringBootTest.WebEnvironment; import org.springframework.boot.test.web.client.TestRestTemplate; import org.springframework.boot.test.web.server.LocalServerPort; import org.springframework.http.HttpStatus; +import org.springframework.http.HttpStatusCode; import org.springframework.http.ResponseEntity; import org.springframework.test.context.ActiveProfiles; @@ -27,9 +27,9 @@ class ApplicationLiveTest { @Test void testWhenAccessRootPath_thenRedirectToAzureAD() { - - ResponseEntity response = rest.getForEntity("http://localhost:" + port , String.class); - HttpStatus st = response.getStatusCode(); + + ResponseEntity response = rest.getForEntity("http://localhost:" + port , String.class); + HttpStatusCode st = response.getStatusCode(); assertThat(st) .isEqualTo(HttpStatus.FOUND); diff --git a/spring-security-modules/spring-security-web-mvc/.gitignore b/spring-security-modules/spring-security-web-mvc/.gitignore index 83c05e60c8..32d2932000 100644 --- a/spring-security-modules/spring-security-web-mvc/.gitignore +++ b/spring-security-modules/spring-security-web-mvc/.gitignore @@ -4,7 +4,7 @@ /target /neoDb* /data -/src/main/webapp/WEB-INF/classes +/src/main/resources/templates/classes */META-INF/* # Packaged files # diff --git a/spring-security-modules/spring-security-web-mvc/pom.xml b/spring-security-modules/spring-security-web-mvc/pom.xml index 10dd89f618..857865267c 100644 --- a/spring-security-modules/spring-security-web-mvc/pom.xml +++ b/spring-security-modules/spring-security-web-mvc/pom.xml @@ -10,7 +10,8 @@ com.baeldung - spring-security-modules + parent-boot-3 + ../../parent-boot-3 0.0.1-SNAPSHOT @@ -38,11 +39,6 @@ org.springframework.boot spring-boot-starter-tomcat - - javax.servlet - jstl - runtime - io.dropwizard.metrics @@ -55,9 +51,16 @@ test - javax.servlet - javax.servlet-api - ${javax.version} + io.rest-assured + rest-assured + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity6 @@ -67,7 +70,7 @@ org.springframework.boot spring-boot-maven-plugin - com.baeldung.SpringSessionApplication + com.baeldung.session.SpringSessionApplication JAR diff --git a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/clearsitedata/SpringSecurityConfig.java b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/clearsitedata/SpringSecurityConfig.java index 9138c6fd7b..225f627434 100644 --- a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/clearsitedata/SpringSecurityConfig.java +++ b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/clearsitedata/SpringSecurityConfig.java @@ -1,36 +1,34 @@ package com.baeldung.clearsitedata; - import static org.springframework.security.web.header.writers.ClearSiteDataHeaderWriter.Directive.CACHE; import static org.springframework.security.web.header.writers.ClearSiteDataHeaderWriter.Directive.COOKIES; import static org.springframework.security.web.header.writers.ClearSiteDataHeaderWriter.Directive.STORAGE; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; -import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity; +import org.springframework.security.config.annotation.method.configuration.EnableMethodSecurity; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; +import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer; import org.springframework.security.web.SecurityFilterChain; import org.springframework.security.web.authentication.logout.HeaderWriterLogoutHandler; import org.springframework.security.web.header.writers.ClearSiteDataHeaderWriter; @Configuration @EnableWebSecurity -@EnableGlobalMethodSecurity(prePostEnabled = true) +@EnableMethodSecurity public class SpringSecurityConfig { @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { - http.csrf() - .disable() - .formLogin() - .loginPage("/login.html") - .loginProcessingUrl("/perform_login") - .defaultSuccessUrl("/homepage.html", true) - .and() - .logout() - .logoutUrl("/baeldung/logout") - .addLogoutHandler(new HeaderWriterLogoutHandler(new ClearSiteDataHeaderWriter(CACHE, COOKIES, STORAGE))); + http.csrf(AbstractHttpConfigurer::disable) + .formLogin(httpSecurityFormLoginConfigurer -> + httpSecurityFormLoginConfigurer.loginPage("/login") + .loginProcessingUrl("/perform_login") + .defaultSuccessUrl("/homepage", true)) + .logout(httpSecurityLogoutConfigurer -> + httpSecurityLogoutConfigurer.logoutUrl("/baeldung/logout") + .addLogoutHandler(new HeaderWriterLogoutHandler(new ClearSiteDataHeaderWriter(CACHE, COOKIES, STORAGE)))); return http.build(); } } diff --git a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/security/MySimpleUrlAuthenticationSuccessHandler.java b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/security/MySimpleUrlAuthenticationSuccessHandler.java index 9d4fc19098..e3e8c54306 100644 --- a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/security/MySimpleUrlAuthenticationSuccessHandler.java +++ b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/security/MySimpleUrlAuthenticationSuccessHandler.java @@ -3,9 +3,9 @@ package com.baeldung.security; import java.io.IOException; import java.util.Collection; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import javax.servlet.http.HttpSession; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpSession; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -61,9 +61,9 @@ public class MySimpleUrlAuthenticationSuccessHandler implements AuthenticationSu } if (isUser) { - return "/homepage.html"; + return "/homepage"; } else if (isAdmin) { - return "/console.html"; + return "/console"; } else { throw new IllegalStateException(); } diff --git a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/filter/SessionFilter.java b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/filter/SessionFilter.java index c30bfa5506..f61e240a05 100644 --- a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/filter/SessionFilter.java +++ b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/filter/SessionFilter.java @@ -3,15 +3,15 @@ package com.baeldung.session.filter; import java.io.IOException; import java.util.Arrays; -import javax.servlet.Filter; -import javax.servlet.FilterChain; -import javax.servlet.FilterConfig; -import javax.servlet.ServletException; -import javax.servlet.ServletRequest; -import javax.servlet.ServletResponse; -import javax.servlet.http.Cookie; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.Filter; +import jakarta.servlet.FilterChain; +import jakarta.servlet.FilterConfig; +import jakarta.servlet.ServletException; +import jakarta.servlet.ServletRequest; +import jakarta.servlet.ServletResponse; +import jakarta.servlet.http.Cookie; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; public class SessionFilter implements Filter{ diff --git a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/security/config/SecSecurityConfig.java b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/security/config/SecSecurityConfig.java index 1dfb72eca9..86cdccfa46 100644 --- a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/security/config/SecSecurityConfig.java +++ b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/security/config/SecSecurityConfig.java @@ -3,6 +3,7 @@ package com.baeldung.session.security.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.web.builders.HttpSecurity; +import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer; import org.springframework.security.config.http.SessionCreationPolicy; import org.springframework.security.core.userdetails.User; import org.springframework.security.core.userdetails.UserDetails; @@ -11,7 +12,9 @@ import org.springframework.security.crypto.password.PasswordEncoder; import org.springframework.security.provisioning.InMemoryUserDetailsManager; import org.springframework.security.web.SecurityFilterChain; import org.springframework.security.web.authentication.AuthenticationSuccessHandler; +import org.springframework.security.web.servlet.util.matcher.MvcRequestMatcher; import org.springframework.security.web.session.HttpSessionEventPublisher; +import org.springframework.web.servlet.handler.HandlerMappingIntrospector; import com.baeldung.security.MySimpleUrlAuthenticationSuccessHandler; @@ -35,37 +38,28 @@ public class SecSecurityConfig { } @Bean - public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { - http.csrf() - .disable() - .authorizeRequests() - .antMatchers("/anonymous*") - .anonymous() - .antMatchers("/login*", "/invalidSession*", "/sessionExpired*", "/foo/**") - .permitAll() - .anyRequest() - .authenticated() - .and() - .formLogin() - .loginPage("/login.html") - .loginProcessingUrl("/login") - .successHandler(successHandler()) - .failureUrl("/login.html?error=true") - .and() - .logout() - .deleteCookies("JSESSIONID") - .and() - .rememberMe() - .key("uniqueAndSecret") - .tokenValiditySeconds(86400) - .and() - .sessionManagement() - .sessionFixation() - .migrateSession() - .sessionCreationPolicy(SessionCreationPolicy.IF_REQUIRED) - .invalidSessionUrl("/invalidSession.html") - .maximumSessions(2) - .expiredUrl("/sessionExpired.html"); + public SecurityFilterChain filterChain(HttpSecurity http, MvcRequestMatcher.Builder mvc) throws Exception { + http.csrf(AbstractHttpConfigurer::disable) + .authorizeHttpRequests(authorizationManagerRequestMatcherRegistry -> + authorizationManagerRequestMatcherRegistry + .requestMatchers(mvc.pattern("/anonymous*")).anonymous() + .requestMatchers(mvc.pattern("/login*"), mvc.pattern("/invalidSession*"), mvc.pattern("/sessionExpired*"), + mvc.pattern("/foo/**")).permitAll() + .anyRequest().authenticated()) + .formLogin(httpSecurityFormLoginConfigurer -> httpSecurityFormLoginConfigurer.loginPage("/login") + .loginProcessingUrl("/login") + .successHandler(successHandler()) + .failureUrl("/login?error=true")) + .logout(httpSecurityLogoutConfigurer -> httpSecurityLogoutConfigurer.deleteCookies("JSESSIONID")) + .rememberMe(httpSecurityRememberMeConfigurer -> + httpSecurityRememberMeConfigurer.key("uniqueAndSecret") + .tokenValiditySeconds(86400)) + .sessionManagement(httpSecuritySessionManagementConfigurer -> + httpSecuritySessionManagementConfigurer.sessionFixation() + .migrateSession().sessionCreationPolicy(SessionCreationPolicy.IF_REQUIRED) + .invalidSessionUrl("/invalidSession") + .maximumSessions(2) + .expiredUrl("/sessionExpired")); return http.build(); } @@ -83,4 +77,8 @@ public class SecSecurityConfig { return new BCryptPasswordEncoder(); } + @Bean + MvcRequestMatcher.Builder mvc(HandlerMappingIntrospector introspector) { + return new MvcRequestMatcher.Builder(introspector); + } } diff --git a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/FooController.java b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/FooController.java index 7c3385dcbd..e8295fc8da 100644 --- a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/FooController.java +++ b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/FooController.java @@ -1,6 +1,6 @@ package com.baeldung.session.web; -import javax.servlet.http.HttpSession; +import jakarta.servlet.http.HttpSession; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; diff --git a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/SessionRestController.java b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/SessionRestController.java index 79f57246a9..1211362d8c 100644 --- a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/SessionRestController.java +++ b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/SessionRestController.java @@ -1,6 +1,6 @@ package com.baeldung.session.web; -import javax.servlet.http.HttpSession; +import jakarta.servlet.http.HttpSession; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; diff --git a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/config/MainWebAppInitializer.java b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/config/MainWebAppInitializer.java index f85f9f3fb0..5c2bbe01ee 100644 --- a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/config/MainWebAppInitializer.java +++ b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/config/MainWebAppInitializer.java @@ -1,14 +1,13 @@ package com.baeldung.session.web.config; -import javax.servlet.ServletContext; -import javax.servlet.ServletException; +import jakarta.servlet.ServletContext; import org.springframework.web.WebApplicationInitializer; public class MainWebAppInitializer implements WebApplicationInitializer { @Override - public void onStartup(ServletContext sc) throws ServletException { + public void onStartup(ServletContext sc) { sc.getSessionCookieConfig().setHttpOnly(true); sc.getSessionCookieConfig().setSecure(true); } diff --git a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/config/MvcConfig.java b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/config/MvcConfig.java index 4db6d07872..885f02798b 100644 --- a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/config/MvcConfig.java +++ b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/session/web/config/MvcConfig.java @@ -9,13 +9,13 @@ public class MvcConfig implements WebMvcConfigurer { @Override public void addViewControllers(final ViewControllerRegistry registry) { - registry.addViewController("/anonymous.html"); + registry.addViewController("/anonymous").setViewName("view/anonymous"); - registry.addViewController("/login.html"); - registry.addViewController("/homepage.html"); - registry.addViewController("/sessionExpired.html"); - registry.addViewController("/invalidSession.html"); - registry.addViewController("/console.html"); + registry.addViewController("/login").setViewName("view/login"); + registry.addViewController("/homepage").setViewName("view/homepage"); + registry.addViewController("/sessionExpired").setViewName("view/sessionExpired"); + registry.addViewController("/invalidSession").setViewName("view/invalidSession"); + registry.addViewController("/console").setViewName("view/console"); } @@ -27,7 +27,8 @@ public class MvcConfig implements WebMvcConfigurer { // final InternalResourceViewResolver bean = new InternalResourceViewResolver(); // // bean.setViewClass(JstlView.class); -// bean.setPrefix("/WEB-INF/view/"); +// bean.setPrefix("/templates/view/"); // bean.setSuffix(".jsp"); +// return bean; // } } diff --git a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/web/SessionListenerWithMetrics.java b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/web/SessionListenerWithMetrics.java index fb1a81744e..10baa1c561 100644 --- a/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/web/SessionListenerWithMetrics.java +++ b/spring-security-modules/spring-security-web-mvc/src/main/java/com/baeldung/web/SessionListenerWithMetrics.java @@ -2,8 +2,8 @@ package com.baeldung.web; import java.util.concurrent.atomic.AtomicInteger; -import javax.servlet.http.HttpSessionEvent; -import javax.servlet.http.HttpSessionListener; +import jakarta.servlet.http.HttpSessionEvent; +import jakarta.servlet.http.HttpSessionListener; import com.baeldung.monitoring.MetricRegistrySingleton; import com.codahale.metrics.Counter; diff --git a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/mvc-servlet.xml b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/mvc-servlet.xml similarity index 100% rename from spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/mvc-servlet.xml rename to spring-security-modules/spring-security-web-mvc/src/main/resources/templates/mvc-servlet.xml diff --git a/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/anonymous.html b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/anonymous.html new file mode 100644 index 0000000000..d8ec862901 --- /dev/null +++ b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/anonymous.html @@ -0,0 +1,9 @@ + + + + +

Anonymous page

+ + To Login + + \ No newline at end of file diff --git a/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/console.html b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/console.html new file mode 100644 index 0000000000..4c15ffc1fe --- /dev/null +++ b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/console.html @@ -0,0 +1,20 @@ + + + + +

This is the landing page for the admin

+ +
+ This text is only visible to a user +
+
+ +
+ This text is only visible to an admin +
+
+ + Logout + + + \ No newline at end of file diff --git a/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/homepage.html b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/homepage.html new file mode 100644 index 0000000000..83a1dff376 --- /dev/null +++ b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/homepage.html @@ -0,0 +1,20 @@ + + + + +

This is the homepage for the user

+ +
+ This text is only visible to a user +
+
+ +
+ This text is only visible to an admin +
+
+ + Logout + + + \ No newline at end of file diff --git a/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/invalidSession.html b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/invalidSession.html new file mode 100644 index 0000000000..06a4761335 --- /dev/null +++ b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/invalidSession.html @@ -0,0 +1,9 @@ + + + + +

Invalid Session Page

+ + To Login + + \ No newline at end of file diff --git a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/login.jsp b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/login.html similarity index 100% rename from spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/login.jsp rename to spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/login.html diff --git a/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/sessionExpired.html b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/sessionExpired.html new file mode 100644 index 0000000000..94d1286f74 --- /dev/null +++ b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/view/sessionExpired.html @@ -0,0 +1,9 @@ + + + + +

Session Expired Page

+ + To Login + + \ No newline at end of file diff --git a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/web.xml b/spring-security-modules/spring-security-web-mvc/src/main/resources/templates/web.xml similarity index 100% rename from spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/web.xml rename to spring-security-modules/spring-security-web-mvc/src/main/resources/templates/web.xml diff --git a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/anonymous.jsp b/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/anonymous.jsp deleted file mode 100644 index d4e9c0289b..0000000000 --- a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/anonymous.jsp +++ /dev/null @@ -1,10 +0,0 @@ -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> - - - - -

Anonymous page

- - ">To Login - - \ No newline at end of file diff --git a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/console.jsp b/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/console.jsp deleted file mode 100644 index 5a58d8892f..0000000000 --- a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/console.jsp +++ /dev/null @@ -1,22 +0,0 @@ -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> -<%@ taglib prefix="security" uri="http://www.springframework.org/security/tags" %> - - - - -

This is the landing page for the admin

- - - This text is only visible to a user -
-
- - - This text is only visible to an admin -
-
- - ">Logout - - - \ No newline at end of file diff --git a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/homepage.jsp b/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/homepage.jsp deleted file mode 100644 index 2568adec66..0000000000 --- a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/homepage.jsp +++ /dev/null @@ -1,22 +0,0 @@ -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> -<%@ taglib prefix="security" uri="http://www.springframework.org/security/tags"%> - - - - -

This is the homepage for the user

- - - This text is only visible to a user -
-
- - - This text is only visible to an admin -
-
- - ">Logout - - - \ No newline at end of file diff --git a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/invalidSession.jsp b/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/invalidSession.jsp deleted file mode 100644 index e8455ee118..0000000000 --- a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/invalidSession.jsp +++ /dev/null @@ -1,10 +0,0 @@ -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> - - - - -

Invalid Session Page

- - ">To Login - - \ No newline at end of file diff --git a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/sessionExpired.jsp b/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/sessionExpired.jsp deleted file mode 100644 index ab0f1c8c63..0000000000 --- a/spring-security-modules/spring-security-web-mvc/src/main/webapp/WEB-INF/view/sessionExpired.jsp +++ /dev/null @@ -1,10 +0,0 @@ -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> - - - - -

Session Expired Page

- - ">To Login - - \ No newline at end of file diff --git a/spring-security-modules/spring-security-web-mvc/src/test/java/com/baeldung/clearsitedata/LogoutClearSiteDataControllerUnitTest.java b/spring-security-modules/spring-security-web-mvc/src/test/java/com/baeldung/clearsitedata/LogoutClearSiteDataControllerUnitTest.java index 30036eea89..22fdd2351d 100644 --- a/spring-security-modules/spring-security-web-mvc/src/test/java/com/baeldung/clearsitedata/LogoutClearSiteDataControllerUnitTest.java +++ b/spring-security-modules/spring-security-web-mvc/src/test/java/com/baeldung/clearsitedata/LogoutClearSiteDataControllerUnitTest.java @@ -13,7 +13,7 @@ import org.springframework.test.web.servlet.result.MockMvcResultHandlers; import org.springframework.test.web.servlet.result.MockMvcResultMatchers; import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.web.context.WebApplicationContext; -import javax.servlet.Filter; +import jakarta.servlet.Filter; @ExtendWith(SpringExtension.class) @WebAppConfiguration diff --git a/spring-security-modules/spring-security-web-mvc/src/test/java/com/baeldung/session/SessionConfigurationLiveTest.java b/spring-security-modules/spring-security-web-mvc/src/test/java/com/baeldung/session/SessionConfigurationLiveTest.java index 7d9a03d5f6..90342592f8 100644 --- a/spring-security-modules/spring-security-web-mvc/src/test/java/com/baeldung/session/SessionConfigurationLiveTest.java +++ b/spring-security-modules/spring-security-web-mvc/src/test/java/com/baeldung/session/SessionConfigurationLiveTest.java @@ -35,11 +35,11 @@ public class SessionConfigurationLiveTest { Response resp3 = simpleResponseRequestUsingSessionNotFollowingRedirects(sessionFilter); assertThat(resp3.getStatusCode()).isEqualTo(HttpStatus.FOUND.value()); - assertThat(resp3.getHeader("Location")).isEqualTo("http://localhost:8080/invalidSession.html"); + assertThat(resp3.getHeader("Location")).isEqualTo("http://localhost:8080/invalidSession"); } @Test - public void givenValidUser_whenLoginMoreThanMaxValidSession_thenRedirectedToExpiredSessionUri() throws Exception { + public void givenValidUser_whenLoginMoreThanMaxValidSession_thenRedirectedToExpiredSessionUri() { SessionFilter sessionFilter = new SessionFilter(); simpleSvcRequestLoggingIn(sessionFilter); simpleSvcRequestLoggingIn(); @@ -56,7 +56,7 @@ public class SessionConfigurationLiveTest { .get(SESSION_SVC_URL); assertThat(resp4.getStatusCode()).isEqualTo(HttpStatus.FOUND.value()); - assertThat(resp4.getHeader("Location")).isEqualTo("http://localhost:8080/sessionExpired.html"); + assertThat(resp4.getHeader("Location")).isEqualTo("http://localhost:8080/sessionExpired"); } private static void simpleSvcRequestLoggingIn() { diff --git a/spring-security-modules/spring-security-web-thymeleaf/pom.xml b/spring-security-modules/spring-security-web-thymeleaf/pom.xml index dd5f2d7c97..2c8764b88a 100644 --- a/spring-security-modules/spring-security-web-thymeleaf/pom.xml +++ b/spring-security-modules/spring-security-web-thymeleaf/pom.xml @@ -11,7 +11,8 @@ com.baeldung - spring-security-modules + parent-boot-3 + ../../parent-boot-3 0.0.1-SNAPSHOT @@ -40,8 +41,12 @@
org.thymeleaf.extras - thymeleaf-extras-springsecurity5 + thymeleaf-extras-springsecurity6
+ + com.baeldung.springsecuritythymeleaf.SpringSecurityThymeleafApplication + + \ No newline at end of file diff --git a/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/customuserdetails/CustomUserDetailsService.java b/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/customuserdetails/CustomUserDetailsService.java index e84f9eac55..2382630e62 100644 --- a/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/customuserdetails/CustomUserDetailsService.java +++ b/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/customuserdetails/CustomUserDetailsService.java @@ -7,7 +7,7 @@ import org.springframework.security.core.userdetails.UsernameNotFoundException; import org.springframework.security.crypto.password.PasswordEncoder; import org.springframework.stereotype.Service; -import javax.annotation.PostConstruct; +import jakarta.annotation.PostConstruct; import java.util.Collections; import java.util.HashMap; diff --git a/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/customuserdetails/SecurityConfiguration.java b/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/customuserdetails/SecurityConfiguration.java index d438aefcdc..cd8eec18aa 100644 --- a/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/customuserdetails/SecurityConfiguration.java +++ b/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/customuserdetails/SecurityConfiguration.java @@ -21,19 +21,14 @@ public class SecurityConfiguration { @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { http.userDetailsService(userDetailsService) - .authorizeRequests() - .anyRequest() - .authenticated() - .and() - .formLogin() - .loginPage("/login") - .permitAll() - .defaultSuccessUrl("/index") - .and() - .logout() - .permitAll() - .logoutRequestMatcher(new AntPathRequestMatcher("/logout")) - .logoutSuccessUrl("/login"); + .authorizeHttpRequests(authorizationManagerRequestMatcherRegistry -> authorizationManagerRequestMatcherRegistry + .anyRequest().authenticated()) + .formLogin(httpSecurityFormLoginConfigurer -> httpSecurityFormLoginConfigurer + .loginPage("/login").permitAll() + .defaultSuccessUrl("/index")) + .logout(httpSecurityLogoutConfigurer -> httpSecurityLogoutConfigurer.permitAll() + .logoutRequestMatcher(new AntPathRequestMatcher("/logout")) + .logoutSuccessUrl("/login")); return http.build(); } } diff --git a/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/springsecuritythymeleaf/SecurityConfiguration.java b/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/springsecuritythymeleaf/SecurityConfiguration.java index b0478ed01c..c270635363 100644 --- a/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/springsecuritythymeleaf/SecurityConfiguration.java +++ b/spring-security-modules/spring-security-web-thymeleaf/src/main/java/com/baeldung/springsecuritythymeleaf/SecurityConfiguration.java @@ -16,19 +16,13 @@ public class SecurityConfiguration { @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { - http.authorizeRequests() - .anyRequest() - .authenticated() - .and() - .formLogin() - .loginPage("/login") - .permitAll() - .successForwardUrl("/index") - .and() - .logout() - .permitAll() - .logoutRequestMatcher(new AntPathRequestMatcher("/logout")) - .logoutSuccessUrl("/login"); + http.authorizeHttpRequests(authorizationManagerRequestMatcherRegistry -> + authorizationManagerRequestMatcherRegistry.anyRequest().authenticated()) + .formLogin(httpSecurityFormLoginConfigurer -> + httpSecurityFormLoginConfigurer.loginPage("/login").permitAll().successForwardUrl("/index")) + .logout(httpSecurityLogoutConfigurer -> httpSecurityLogoutConfigurer.permitAll() + .logoutRequestMatcher(new AntPathRequestMatcher("/logout")) + .logoutSuccessUrl("/login")); return http.build(); } diff --git a/spring-web-modules/spring-mvc-basics-4/pom.xml b/spring-web-modules/spring-mvc-basics-4/pom.xml index 7e8ef257c7..b54ed01161 100644 --- a/spring-web-modules/spring-mvc-basics-4/pom.xml +++ b/spring-web-modules/spring-mvc-basics-4/pom.xml @@ -22,7 +22,6 @@ org.springframework.boot spring-boot-starter-web - 3.0.2 org.apache.tomcat.embed @@ -31,7 +30,7 @@ javax.servlet jstl - 1.2 + ${jstl.version} org.springframework.boot @@ -39,4 +38,8 @@ + + 1.2 + + \ No newline at end of file diff --git a/spring-web-modules/spring-mvc-basics-5/README.md b/spring-web-modules/spring-mvc-basics-5/README.md index ec91449b0f..d503b9e78e 100644 --- a/spring-web-modules/spring-mvc-basics-5/README.md +++ b/spring-web-modules/spring-mvc-basics-5/README.md @@ -14,4 +14,5 @@ The "REST With Spring" Classes: https://bit.ly/restwithspring - [Spring @RequestParam vs @PathVariable Annotations](https://www.baeldung.com/spring-requestparam-vs-pathvariable) - [@RequestMapping Value in Properties File](https://www.baeldung.com/spring-requestmapping-properties-file) - [Map a JSON POST to Multiple Spring MVC Parameters](https://www.baeldung.com/spring-mvc-json-param-mapping) +- [Getting Query String Parameters from HttpServletRequest](https://www.baeldung.com/java-httpservletrequest-get-query-parameters) - More articles: [[<-- prev]](../spring-mvc-basics-4) diff --git a/spring-web-modules/spring-mvc-basics-5/src/main/java/com/baeldung/requestparam/QueryStringController.java b/spring-web-modules/spring-mvc-basics-5/src/main/java/com/baeldung/requestparam/QueryStringController.java new file mode 100644 index 0000000000..8d34ecd802 --- /dev/null +++ b/spring-web-modules/spring-mvc-basics-5/src/main/java/com/baeldung/requestparam/QueryStringController.java @@ -0,0 +1,65 @@ +package com.baeldung.requestparam; + +import java.util.Arrays; +import java.util.List; +import java.util.Map; + +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import jakarta.servlet.http.HttpServletRequest; + +@RestController +public class QueryStringController { + + @GetMapping("/api/byGetQueryString") + public String byGetQueryString(HttpServletRequest request) { + return request.getQueryString(); + } + + @GetMapping("/api/byGetParameter") + public String byGetParameter(HttpServletRequest request) { + String username = request.getParameter("username"); + return "username:" + username; + } + + @GetMapping("/api/byGetParameterValues") + public String byGetParameterValues(HttpServletRequest request) { + String[] roles = request.getParameterValues("roles"); + return "roles:" + Arrays.toString(roles); + } + + @GetMapping("/api/byGetParameterMap") + public UserDto byGetParameterMap(HttpServletRequest request) { + Map parameterMap = request.getParameterMap(); + String[] usernames = parameterMap.get("username"); + String[] roles = parameterMap.get("roles"); + UserDto userDto = new UserDto(); + userDto.setUsername(usernames[0]); + userDto.setRoles(Arrays.asList(roles)); + return userDto; + } + + @GetMapping("/api/byParameterName") + public UserDto byParameterName(String username, String[] roles) { + UserDto userDto = new UserDto(); + userDto.setUsername(username); + userDto.setRoles(Arrays.asList(roles)); + return userDto; + } + + @GetMapping("/api/byAnnoRequestParam") + public UserDto byAnnoRequestParam(@RequestParam("username") String var1, @RequestParam("roles") List var2) { + UserDto userDto = new UserDto(); + userDto.setUsername(var1); + userDto.setRoles(var2); + return userDto; + } + + @GetMapping("/api/byPojo") + public UserDto byPojo(UserDto userDto) { + return userDto; + } + +} diff --git a/spring-web-modules/spring-mvc-basics-5/src/main/java/com/baeldung/requestparam/UserDto.java b/spring-web-modules/spring-mvc-basics-5/src/main/java/com/baeldung/requestparam/UserDto.java new file mode 100644 index 0000000000..5e7327c6d3 --- /dev/null +++ b/spring-web-modules/spring-mvc-basics-5/src/main/java/com/baeldung/requestparam/UserDto.java @@ -0,0 +1,24 @@ +package com.baeldung.requestparam; + +import java.util.List; + +public class UserDto { + private String username; + private List roles; + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + public List getRoles() { + return roles; + } + + public void setRoles(List roles) { + this.roles = roles; + } +} diff --git a/spring-web-modules/spring-mvc-basics-5/src/test/java/com/baeldung/requestparam/QueryStringControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics-5/src/test/java/com/baeldung/requestparam/QueryStringControllerIntegrationTest.java new file mode 100644 index 0000000000..4aeaa60156 --- /dev/null +++ b/spring-web-modules/spring-mvc-basics-5/src/test/java/com/baeldung/requestparam/QueryStringControllerIntegrationTest.java @@ -0,0 +1,65 @@ +package com.baeldung.requestparam; + +import static org.hamcrest.Matchers.containsInRelativeOrder; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; +import static org.springframework.test.web.servlet.setup.MockMvcBuilders.standaloneSetup; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.CsvSource; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.web.servlet.MockMvc; + +@SpringBootTest +@AutoConfigureMockMvc +class QueryStringControllerIntegrationTest { + + @Autowired + private MockMvc mockMvc; + + @BeforeEach + public void setup() { + this.mockMvc = standaloneSetup(new QueryStringController()).build(); + } + + @Test + public void whenInvokeGetQueryString_thenReturnTheOriginQueryString() throws Exception { + this.mockMvc.perform(get("/api/byGetQueryString?username=bob&roles=admin&roles=stuff")) + .andExpect(status().isOk()) + .andExpect(content().string("username=bob&roles=admin&roles=stuff")); + } + + @Test + public void whenInvokeGetQueryParameter_thenReturnOneParameterValue() throws Exception { + this.mockMvc.perform(get("/api/byGetParameter?username=bob")) + .andExpect(status().isOk()) + .andExpect(content().string("username:bob")); + } + + @Test + public void whenInvokeGetParameterValues_thenReturnParameterAsArray() throws Exception { + this.mockMvc.perform(get("/api/byGetParameterValues?roles=admin&roles=stuff")) + .andExpect(status().isOk()) + .andExpect(content().string("roles:[admin, stuff]")); + } + + @ParameterizedTest + @CsvSource(textBlock = """ + /api/byGetParameterMap + /api/byParameterName + /api/byAnnoRequestParam + /api/byPojo + """) + public void whenPassParameters_thenReturnResolvedModel(String path) throws Exception { + this.mockMvc.perform(get(path + "?username=bob&roles=admin&roles=stuff")) + .andExpect(status().isOk()) + .andExpect(jsonPath("$.username").value("bob")) + .andExpect(jsonPath("$.roles").value(containsInRelativeOrder("admin", "stuff"))); + } +} \ No newline at end of file diff --git a/spring-web-modules/spring-mvc-basics/pom.xml b/spring-web-modules/spring-mvc-basics/pom.xml index 919122f591..bfd8ed5d5f 100644 --- a/spring-web-modules/spring-mvc-basics/pom.xml +++ b/spring-web-modules/spring-mvc-basics/pom.xml @@ -26,9 +26,14 @@ tomcat-embed-jasper - javax.servlet - jstl - ${jstl-version} + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + ${jakarta.servlet.jsp.jstl.version} + + + org.glassfish.web + jakarta.servlet.jsp.jstl + ${jakarta.servlet.jsp.jstl.version} com.sun.xml.bind @@ -67,6 +72,7 @@ 4.0.1 5.4.0 1.2 + 2.0.0 \ No newline at end of file diff --git a/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SampleControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SampleControllerIntegrationTest.java new file mode 100644 index 0000000000..af79ef8ec8 --- /dev/null +++ b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SampleControllerIntegrationTest.java @@ -0,0 +1,31 @@ +package com.baeldung.web.controller; + +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.http.MediaType; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.setup.MockMvcBuilders; + +@SpringBootTest +@AutoConfigureMockMvc +public class SampleControllerIntegrationTest { + @Autowired + private MockMvc mockMvc; + + @Test + public void givenBookId_whenMockMVC_thenVerifyResponse() throws Exception { + // Verifies that the controller can be invoked without any error. + this.mockMvc + .perform(get("/sample")) + .andExpect(status().isOk()); + } +} + diff --git a/spring-web-modules/spring-mvc-java-2/pom.xml b/spring-web-modules/spring-mvc-java-2/pom.xml index a4484ed56d..f91e2dd541 100644 --- a/spring-web-modules/spring-mvc-java-2/pom.xml +++ b/spring-web-modules/spring-mvc-java-2/pom.xml @@ -10,21 +10,15 @@ com.baeldung - parent-boot-2 + parent-boot-3 0.0.1-SNAPSHOT - ../../parent-boot-2 + ../../parent-boot-3 - - javax.servlet - javax.servlet-api - ${javax.version} - org.springframework spring-webmvc - ${spring.mvc.version} com.fasterxml.jackson.core @@ -37,15 +31,10 @@ ${commons-io.version} - org.glassfish.jaxb - jaxb-runtime + com.sun.xml.bind + jaxb-impl ${jaxb-runtime.version} - - commons-fileupload - commons-fileupload - ${commons-fileupload.version} - net.sourceforge.htmlunit htmlunit @@ -80,6 +69,7 @@ javax.servlet jstl + ${jstl.version} org.apache.tomcat.embed @@ -89,7 +79,7 @@ org.thymeleaf - thymeleaf-spring4 + thymeleaf-spring5 ${thymeleaf.version} @@ -110,15 +100,13 @@ - 4.0.1 - 5.2.2.RELEASE - 2.3.5 - 1.5 + 4.0.1 2.32 3.16-beta1 3.0.1-b09 2.3.3 - 3.0.9.RELEASE + 3.1.2.RELEASE + true \ No newline at end of file diff --git a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheControlController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheControlController.java index 7305f836cf..641611f5c9 100644 --- a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheControlController.java +++ b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheControlController.java @@ -7,7 +7,7 @@ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.context.request.WebRequest; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletResponse; import java.time.LocalDateTime; import java.time.ZoneId; import java.util.concurrent.TimeUnit; diff --git a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/excel/ExcelController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/excel/ExcelController.java index 5cb5de7124..cda8ef123d 100644 --- a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/excel/ExcelController.java +++ b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/excel/ExcelController.java @@ -7,7 +7,7 @@ import java.io.InputStream; import java.util.List; import java.util.Map; -import javax.annotation.Resource; +import jakarta.annotation.Resource; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; diff --git a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/CompanyController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/CompanyController.java index 7a21ded026..81ff304047 100644 --- a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/CompanyController.java +++ b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/CompanyController.java @@ -49,7 +49,7 @@ public class CompanyController { @RequestMapping(value = "/companyData/{company}/employeeData/{employee}", method = RequestMethod.GET) @ResponseBody public ResponseEntity> getCompanyName(@MatrixVariable(value = "name", pathVar = "company") final String name) { - final Map result = new HashMap(); + final Map result = new HashMap<>(); result.put("name", name); return new ResponseEntity<>(result, HttpStatus.OK); } diff --git a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/EmployeeController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/EmployeeController.java index 3d5df0653d..48b58adbc2 100644 --- a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/EmployeeController.java +++ b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/EmployeeController.java @@ -53,7 +53,7 @@ public class EmployeeController { @RequestMapping(value = "/employees/{name}", method = RequestMethod.GET) @ResponseBody public ResponseEntity> getEmployeeByNameAndBeginContactNumber(@PathVariable final String name, @MatrixVariable final String beginContactNumber) { - final List employeesList = new ArrayList(); + final List employeesList = new ArrayList<>(); for (final Map.Entry employeeEntry : employeeMap.entrySet()) { final Employee employee = employeeEntry.getValue(); if (employee.getName().equalsIgnoreCase(name) && employee.getContactNumber().startsWith(beginContactNumber)) { @@ -66,7 +66,7 @@ public class EmployeeController { @RequestMapping(value = "/employeesContacts/{contactNumber}", method = RequestMethod.GET) @ResponseBody public ResponseEntity> getEmployeeByContactNumber(@MatrixVariable(required = true) final String contactNumber) { - final List employeesList = new ArrayList(); + final List employeesList = new ArrayList<>(); for (final Map.Entry employeeEntry : employeeMap.entrySet()) { final Employee employee = employeeEntry.getValue(); if (employee.getContactNumber().equalsIgnoreCase(contactNumber)) { diff --git a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Employee.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Employee.java index c3384122b4..b6aa3815fc 100644 --- a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Employee.java +++ b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Employee.java @@ -1,6 +1,7 @@ package com.baeldung.matrix.model; -import javax.xml.bind.annotation.XmlRootElement; + +import jakarta.xml.bind.annotation.XmlRootElement; @XmlRootElement public class Employee { diff --git a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/multiparttesting/MultipartPostRequestController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/multiparttesting/MultipartPostRequestController.java index d624ea368f..a9cf4c4f7a 100644 --- a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/multiparttesting/MultipartPostRequestController.java +++ b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/multiparttesting/MultipartPostRequestController.java @@ -12,6 +12,7 @@ public class MultipartPostRequestController { @PostMapping(path = "/upload") public ResponseEntity uploadFile(@RequestParam("file") MultipartFile file) { - return file.isEmpty() ? new ResponseEntity(HttpStatus.NOT_FOUND) : new ResponseEntity(HttpStatus.OK); + return file.isEmpty() ? new ResponseEntity<>(HttpStatus.NOT_FOUND) : new ResponseEntity<>( + HttpStatus.OK); } } \ No newline at end of file diff --git a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/CustomWebMvcConfigurationSupport.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/CustomWebMvcConfigurationSupport.java index 24d5a447ab..d4b716d6f1 100644 --- a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/CustomWebMvcConfigurationSupport.java +++ b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/CustomWebMvcConfigurationSupport.java @@ -10,8 +10,6 @@ public class CustomWebMvcConfigurationSupport extends WebMvcConfigurationSupport @Override protected PathMatchConfigurer getPathMatchConfigurer() { PathMatchConfigurer pathMatchConfigurer = super.getPathMatchConfigurer(); - pathMatchConfigurer.setUseSuffixPatternMatch(false); - return pathMatchConfigurer; } } diff --git a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/SiteController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/SiteController.java index c9584afdc9..86ad9e531d 100644 --- a/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/SiteController.java +++ b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/SiteController.java @@ -1,6 +1,5 @@ package com.baeldung.pathvariable.dottruncated; -import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; diff --git a/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/htmlunit/TestConfig.java b/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/htmlunit/TestConfig.java index 6e55f01454..5d7264137c 100644 --- a/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/htmlunit/TestConfig.java +++ b/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/htmlunit/TestConfig.java @@ -1,17 +1,20 @@ package com.baeldung.htmlunit; -import javax.servlet.ServletContext; - import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.ApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.ViewResolver; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; -import org.thymeleaf.spring4.SpringTemplateEngine; -import org.thymeleaf.spring4.view.ThymeleafViewResolver; -import org.thymeleaf.templateresolver.ServletContextTemplateResolver; +import org.thymeleaf.spring5.SpringTemplateEngine; +import org.thymeleaf.spring5.templateresolver.SpringResourceTemplateResolver; +import org.thymeleaf.spring5.view.ThymeleafViewResolver; +import org.thymeleaf.templateresolver.WebApplicationTemplateResolver; +import org.thymeleaf.web.IWebApplication; +import org.thymeleaf.web.servlet.IServletWebApplication; +import org.thymeleaf.web.servlet.JakartaServletWebApplication; @Configuration @EnableWebMvc @@ -19,7 +22,7 @@ import org.thymeleaf.templateresolver.ServletContextTemplateResolver; public class TestConfig implements WebMvcConfigurer { @Autowired - private ServletContext ctx; + private ApplicationContext ctx; @Bean public ViewResolver thymeleafViewResolver() { @@ -30,8 +33,8 @@ public class TestConfig implements WebMvcConfigurer { } @Bean - public ServletContextTemplateResolver templateResolver() { - final ServletContextTemplateResolver templateResolver = new ServletContextTemplateResolver(ctx); + public SpringResourceTemplateResolver templateResolver() { + final SpringResourceTemplateResolver templateResolver = new SpringResourceTemplateResolver (); templateResolver.setPrefix("/WEB-INF/templates/"); templateResolver.setSuffix(".html"); templateResolver.setTemplateMode("HTML5"); diff --git a/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeMvcIntegrationTest.java b/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeMvcIntegrationTest.java index c061c1efc7..6d91f08bb0 100644 --- a/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeMvcIntegrationTest.java +++ b/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeMvcIntegrationTest.java @@ -29,7 +29,7 @@ public class EmployeeMvcIntegrationTest { @Before public void setup() { - MockitoAnnotations.initMocks(this); + MockitoAnnotations.openMocks(this); mockMvc = MockMvcBuilders.webAppContextSetup(webAppContext).build(); } diff --git a/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/multipart/file/ConvertFileToMultipartFileUnitTest.java b/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/multipart/file/ConvertFileToMultipartFileUnitTest.java index 7d99f7f9bb..47b9bfb058 100644 --- a/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/multipart/file/ConvertFileToMultipartFileUnitTest.java +++ b/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/multipart/file/ConvertFileToMultipartFileUnitTest.java @@ -4,18 +4,16 @@ import static org.junit.Assert.assertEquals; import java.io.File; import java.io.FileInputStream; +import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.nio.file.Files; - -import org.apache.commons.fileupload.FileItem; -import org.apache.commons.fileupload.disk.DiskFileItem; import org.apache.commons.io.IOUtils; import org.junit.jupiter.api.Test; -import org.springframework.web.multipart.MultipartFile; -import org.springframework.web.multipart.commons.CommonsMultipartFile; +import org.springframework.http.MediaType; import org.springframework.mock.web.MockMultipartFile; +import org.springframework.web.multipart.MultipartFile; public class ConvertFileToMultipartFileUnitTest { @@ -32,11 +30,11 @@ public class ConvertFileToMultipartFileUnitTest { @Test public void givenFile_whenCreateMultipartFileUsingCommonsMultipart_thenContentMatch() throws IOException { File file = new File("src/main/resources/targetFile.tmp"); - FileItem fileItem = new DiskFileItem("file", Files.probeContentType(file.toPath()), false, file.getName(), (int) file.length(), file.getParentFile()); InputStream input = new FileInputStream(file); - OutputStream outputStream = fileItem.getOutputStream(); + byte [] arr = IOUtils.toByteArray(input); + OutputStream outputStream = new FileOutputStream(file); IOUtils.copy(input, outputStream); - MultipartFile multipartFile = new CommonsMultipartFile(fileItem); + MultipartFile multipartFile = new MockMultipartFile("test","targetFile.tmp", MediaType.TEXT_PLAIN_VALUE, arr); String fileContent = new String(multipartFile.getBytes()); assertEquals("Hello World", fileContent); assertEquals("targetFile.tmp", multipartFile.getOriginalFilename()); diff --git a/spring-web-modules/spring-mvc-java/pom.xml b/spring-web-modules/spring-mvc-java/pom.xml index d4c8f24431..e7c66ac0ee 100644 --- a/spring-web-modules/spring-mvc-java/pom.xml +++ b/spring-web-modules/spring-mvc-java/pom.xml @@ -10,9 +10,9 @@ com.baeldung - parent-boot-2 + parent-boot-3 0.0.1-SNAPSHOT - ../../parent-boot-2 + ../../parent-boot-3 @@ -25,18 +25,19 @@ spring-boot-starter-tomcat - javax.servlet - javax.servlet-api - ${javax.version} + jakarta.servlet + jakarta.servlet-api + ${jakarta.version} - javax.servlet.jsp - javax.servlet.jsp-api - ${javax-servlet-api.version} + jakarta.servlet.jsp + jakarta.servlet.jsp-api + ${jakarta-servlet-api.version} - javax.servlet - jstl + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + ${jakarta-servlet-jstl-version} org.apache.tomcat.embed @@ -50,11 +51,6 @@ commons-io ${commons-io.version} - - commons-fileupload - commons-fileupload - ${commons-fileupload.version} - org.thymeleaf @@ -69,14 +65,21 @@ com.jayway.jsonpath json-path - test ${json-path.version} + test org.springframework.boot spring-boot-starter-test test + + io.rest-assured + rest-assured + ${rest.assured.version} + test + + @@ -85,9 +88,10 @@ org.glassfish - javax.el - ${javax.el.version} + jakarta.el + ${jakarta.el.version} + @@ -115,12 +119,10 @@ cargo-maven2-plugin ${cargo-maven2-plugin.version} - true jetty8x embedded - @@ -167,9 +169,6 @@ org.codehaus.cargo cargo-maven2-plugin - - false - start-server @@ -208,11 +207,13 @@ 3.1.0 1.9.1 - 3.0.1-b09 - 4.0.1 - 2.3.3 + 5.0.0-M1 + 6.1.0-M1 + 4.0.0-M1 2.8.0 com.baeldung.SpringMVCApplication + 3.0.0 + 5.4.0 \ No newline at end of file diff --git a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/filters/EmptyParamFilter.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/filters/EmptyParamFilter.java index b0b5392237..88f0431ab8 100644 --- a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/filters/EmptyParamFilter.java +++ b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/filters/EmptyParamFilter.java @@ -1,12 +1,12 @@ package com.baeldung.filters; -import javax.servlet.Filter; -import javax.servlet.FilterChain; -import javax.servlet.FilterConfig; -import javax.servlet.ServletException; -import javax.servlet.ServletRequest; -import javax.servlet.ServletResponse; -import javax.servlet.annotation.WebFilter; +import jakarta.servlet.Filter; +import jakarta.servlet.FilterChain; +import jakarta.servlet.FilterConfig; +import jakarta.servlet.ServletException; +import jakarta.servlet.ServletRequest; +import jakarta.servlet.ServletResponse; +import jakarta.servlet.annotation.WebFilter; import java.io.IOException; @WebFilter(urlPatterns = "/uppercase") diff --git a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/AppListener.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/AppListener.java index ed16dd1654..422af34c18 100644 --- a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/AppListener.java +++ b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/AppListener.java @@ -1,9 +1,9 @@ package com.baeldung.listeners; -import javax.servlet.ServletContext; -import javax.servlet.ServletContextEvent; -import javax.servlet.ServletContextListener; -import javax.servlet.annotation.WebListener; +import jakarta.servlet.ServletContext; +import jakarta.servlet.ServletContextEvent; +import jakarta.servlet.ServletContextListener; +import jakarta.servlet.annotation.WebListener; @WebListener public class AppListener implements ServletContextListener { diff --git a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/RequestListener.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/RequestListener.java index 7f0c37b666..5070e266ec 100644 --- a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/RequestListener.java +++ b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/RequestListener.java @@ -1,10 +1,10 @@ package com.baeldung.listeners; -import javax.servlet.ServletContext; -import javax.servlet.ServletRequestEvent; -import javax.servlet.ServletRequestListener; -import javax.servlet.annotation.WebListener; -import javax.servlet.http.HttpServletRequest; +import jakarta.servlet.ServletContext; +import jakarta.servlet.ServletRequestEvent; +import jakarta.servlet.ServletRequestListener; +import jakarta.servlet.annotation.WebListener; +import jakarta.servlet.http.HttpServletRequest; @WebListener public class RequestListener implements ServletRequestListener { diff --git a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/CounterServlet.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/CounterServlet.java index a11f084db2..3c827b5fdd 100644 --- a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/CounterServlet.java +++ b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/CounterServlet.java @@ -1,9 +1,9 @@ package com.baeldung.servlets; -import javax.servlet.annotation.WebServlet; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.annotation.WebServlet; +import jakarta.servlet.http.HttpServlet; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.PrintWriter; diff --git a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/UppercaseServlet.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/UppercaseServlet.java index 766ec2e6ff..f5dc2d82ff 100644 --- a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/UppercaseServlet.java +++ b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/UppercaseServlet.java @@ -1,9 +1,9 @@ package com.baeldung.servlets; -import javax.servlet.annotation.WebServlet; -import javax.servlet.http.HttpServlet; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.annotation.WebServlet; +import jakarta.servlet.http.HttpServlet; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.PrintWriter; diff --git a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/MainWebAppInitializer.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/MainWebAppInitializer.java index 3623217130..c6d8407af4 100644 --- a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/MainWebAppInitializer.java +++ b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/MainWebAppInitializer.java @@ -1,29 +1,29 @@ package com.baeldung.spring.web.config; -import javax.servlet.MultipartConfigElement; -import javax.servlet.ServletContext; -import javax.servlet.ServletException; -import javax.servlet.ServletRegistration; import org.springframework.web.WebApplicationInitializer; import org.springframework.web.context.support.GenericWebApplicationContext; import org.springframework.web.servlet.DispatcherServlet; +import jakarta.servlet.MultipartConfigElement; +import jakarta.servlet.ServletContext; +import jakarta.servlet.ServletRegistration; + public class MainWebAppInitializer implements WebApplicationInitializer { - private String TMP_FOLDER = "/tmp"; - private int MAX_UPLOAD_SIZE = 5 * 1024 * 1024; - + private static final String TMP_FOLDER = "/tmp"; + private static final int MAX_UPLOAD_SIZE = 5 * 1024 * 1024; + @Override - public void onStartup(ServletContext sc) throws ServletException { + public void onStartup(ServletContext sc) { ServletRegistration.Dynamic appServlet = sc.addServlet("mvc", new DispatcherServlet( - new GenericWebApplicationContext())); + new GenericWebApplicationContext())); appServlet.setLoadOnStartup(1); - MultipartConfigElement multipartConfigElement = new MultipartConfigElement(TMP_FOLDER, - MAX_UPLOAD_SIZE, MAX_UPLOAD_SIZE * 2, MAX_UPLOAD_SIZE / 2); + MultipartConfigElement multipartConfigElement = new MultipartConfigElement(TMP_FOLDER, + MAX_UPLOAD_SIZE, MAX_UPLOAD_SIZE * 2L, MAX_UPLOAD_SIZE / 2); appServlet.setMultipartConfig(multipartConfigElement); diff --git a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/WebConfig.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/WebConfig.java index c135164a95..5ec4dd70c1 100644 --- a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/WebConfig.java +++ b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/WebConfig.java @@ -12,7 +12,7 @@ import org.springframework.context.support.ResourceBundleMessageSource; import org.springframework.http.MediaType; import org.springframework.http.converter.ByteArrayHttpMessageConverter; import org.springframework.http.converter.HttpMessageConverter; -import org.springframework.web.multipart.commons.CommonsMultipartResolver; +import org.springframework.web.multipart.support.StandardServletMultipartResolver; import org.springframework.web.servlet.ViewResolver; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.PathMatchConfigurer; @@ -113,14 +113,11 @@ public class WebConfig implements WebMvcConfigurer { public void configurePathMatch(final PathMatchConfigurer configurer) { final UrlPathHelper urlPathHelper = new UrlPathHelper(); urlPathHelper.setRemoveSemicolonContent(false); - configurer.setUrlPathHelper(urlPathHelper); } @Bean(name = "multipartResolver") - public CommonsMultipartResolver multipartResolver() { - CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver(); - multipartResolver.setMaxUploadSize(100000); - return multipartResolver; + public StandardServletMultipartResolver multipartResolver() { + return new StandardServletMultipartResolver(); } } \ No newline at end of file diff --git a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/ImageController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/ImageController.java index 5a8a491989..89c4bac261 100644 --- a/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/ImageController.java +++ b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/ImageController.java @@ -3,7 +3,7 @@ package com.baeldung.web.controller; import java.io.IOException; import java.io.InputStream; -import javax.servlet.ServletContext; +import jakarta.servlet.ServletContext; import org.apache.commons.io.IOUtils; import org.springframework.beans.factory.annotation.Autowired; diff --git a/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerIntegrationTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerIntegrationTest.java index 7b9da5707d..996821d1d8 100644 --- a/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerIntegrationTest.java +++ b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerIntegrationTest.java @@ -16,7 +16,7 @@ import org.springframework.test.web.servlet.result.MockMvcResultMatchers; import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.web.context.WebApplicationContext; -import javax.servlet.ServletContext; +import jakarta.servlet.ServletContext; import static org.junit.jupiter.api.Assertions.*; import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; diff --git a/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerRealIntegrationTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerRealIntegrationTest.java index 825520526e..899bad1310 100644 --- a/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerRealIntegrationTest.java +++ b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerRealIntegrationTest.java @@ -1,14 +1,14 @@ package com.baeldung.web.controller; -import io.restassured.RestAssured; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.boot.web.server.LocalServerPort; +import org.springframework.boot.test.web.server.LocalServerPort; import org.springframework.test.context.TestPropertySource; - -import static io.restassured.RestAssured.given; import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT; +import static io.restassured.RestAssured.given; + +import io.restassured.RestAssured; @SpringBootTest(webEnvironment = RANDOM_PORT) @TestPropertySource(properties = {"spring.main.allow-bean-definition-overriding=true", "server.servlet.context-path=/"}) diff --git a/spring-web-modules/spring-mvc-xml-2/pom.xml b/spring-web-modules/spring-mvc-xml-2/pom.xml index 49590758cc..f247a67a02 100644 --- a/spring-web-modules/spring-mvc-xml-2/pom.xml +++ b/spring-web-modules/spring-mvc-xml-2/pom.xml @@ -84,6 +84,13 @@ + + org.apache.maven.plugins + maven-compiler-plugin + + true + + diff --git a/spring-web-modules/spring-rest-http-3/README.md b/spring-web-modules/spring-rest-http-3/README.md index a5b3d51e93..fe4cfaa269 100644 --- a/spring-web-modules/spring-rest-http-3/README.md +++ b/spring-web-modules/spring-rest-http-3/README.md @@ -7,4 +7,5 @@ The "REST With Spring 3" Classes: http://bit.ly/restwithspring ### Relevant Articles: - [Send Array as Part of x-www-form-urlencoded Using Postman](https://www.baeldung.com/java-postman-send-array) +- [Using XML in @RequestBody in Spring REST](https://www.baeldung.com/spring-xml-requestbody) - More articles: [[<-- prev]](../spring-rest-http) diff --git a/spring-web-modules/spring-rest-http/README.md b/spring-web-modules/spring-rest-http/README.md index 4c160ee513..04aed3d076 100644 --- a/spring-web-modules/spring-rest-http/README.md +++ b/spring-web-modules/spring-rest-http/README.md @@ -7,7 +7,7 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring ### Relevant Articles: -- [How to Set a Header on a Response with Spring 5](https://www.baeldung.com/spring-response-header) +- [How to Set a Header on a Response with Spring 6](https://www.baeldung.com/spring-response-header) - [Returning Custom Status Codes from Spring Controllers](https://www.baeldung.com/spring-mvc-controller-custom-http-status-code) - [Spring RequestMapping](https://www.baeldung.com/spring-requestmapping) - [Guide to DeferredResult in Spring](https://www.baeldung.com/spring-deferred-result) diff --git a/spring-web-modules/spring-rest-query-language/pom.xml b/spring-web-modules/spring-rest-query-language/pom.xml index b44972603d..4f4bb78ad8 100644 --- a/spring-web-modules/spring-rest-query-language/pom.xml +++ b/spring-web-modules/spring-rest-query-language/pom.xml @@ -10,9 +10,9 @@ com.baeldung - parent-boot-2 + parent-boot-3 0.0.1-SNAPSHOT - ../../parent-boot-2 + ../../parent-boot-3 @@ -90,10 +90,14 @@ com.querydsl querydsl-apt + ${querydsl.version} + jakarta com.querydsl querydsl-jpa + ${querydsl.version} + jakarta @@ -111,6 +115,7 @@ commons-logging + ${httpclient.version} org.apache.httpcomponents @@ -128,6 +133,7 @@ org.hibernate hibernate-core + ${hibernate-core.version} xml-apis @@ -150,14 +156,20 @@ - javax.servlet - javax.servlet-api + jakarta.servlet + jakarta.servlet-api provided + ${jakarta.servlet-api.version} - javax.servlet - jstl - runtime + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + ${jakarta.servlet.jsp.jstl.version} + + + org.glassfish.web + jakarta.servlet.jsp.jstl + ${jakarta.servlet.jsp.jstl.version} @@ -181,6 +193,12 @@ spring-test test + + io.rest-assured + rest-assured + ${rest-assured.version} + test + @@ -216,23 +234,6 @@ - - - com.mysema.maven - apt-maven-plugin - ${apt-maven-plugin.version} - - - - process - - - target/generated-sources/java - com.querydsl.apt.jpa.JPAAnnotationProcessor - - - - @@ -305,6 +306,13 @@ 1.7.0 1.1.3 + 6.4.2.Final + 4.5.8 + 3.14.0 + ${querydsl.version} + 2.0.0 + 5.4.0 + 5.0.0 \ No newline at end of file diff --git a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserDAO.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserDAO.java index 6bc899176a..afedb2544b 100644 --- a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserDAO.java +++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserDAO.java @@ -2,12 +2,12 @@ package com.baeldung.persistence.dao; import java.util.List; -import javax.persistence.EntityManager; -import javax.persistence.PersistenceContext; -import javax.persistence.criteria.CriteriaBuilder; -import javax.persistence.criteria.CriteriaQuery; -import javax.persistence.criteria.Predicate; -import javax.persistence.criteria.Root; +import jakarta.persistence.EntityManager; +import jakarta.persistence.PersistenceContext; +import jakarta.persistence.criteria.CriteriaBuilder; +import jakarta.persistence.criteria.CriteriaQuery; +import jakarta.persistence.criteria.Predicate; +import jakarta.persistence.criteria.Root; import org.springframework.stereotype.Repository; diff --git a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSearchQueryCriteriaConsumer.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSearchQueryCriteriaConsumer.java index a3e619ad21..a6100a9c66 100644 --- a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSearchQueryCriteriaConsumer.java +++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSearchQueryCriteriaConsumer.java @@ -2,9 +2,9 @@ package com.baeldung.persistence.dao; import java.util.function.Consumer; -import javax.persistence.criteria.CriteriaBuilder; -import javax.persistence.criteria.Predicate; -import javax.persistence.criteria.Root; +import jakarta.persistence.criteria.CriteriaBuilder; +import jakarta.persistence.criteria.Predicate; +import jakarta.persistence.criteria.Root; import com.baeldung.web.util.SearchCriteria; diff --git a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecification.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecification.java index 928e75aea7..cb3a04fd6c 100644 --- a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecification.java +++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecification.java @@ -5,10 +5,10 @@ import org.springframework.data.jpa.domain.Specification; import com.baeldung.persistence.model.User; import com.baeldung.web.util.SpecSearchCriteria; -import javax.persistence.criteria.CriteriaBuilder; -import javax.persistence.criteria.CriteriaQuery; -import javax.persistence.criteria.Predicate; -import javax.persistence.criteria.Root; +import jakarta.persistence.criteria.CriteriaBuilder; +import jakarta.persistence.criteria.CriteriaQuery; +import jakarta.persistence.criteria.Predicate; +import jakarta.persistence.criteria.Root; public class UserSpecification implements Specification { diff --git a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecification.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecification.java index 87a46d4a85..c50f258bf6 100644 --- a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecification.java +++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecification.java @@ -3,10 +3,10 @@ package com.baeldung.persistence.dao.rsql; import java.util.List; import java.util.stream.Collectors; -import javax.persistence.criteria.CriteriaBuilder; -import javax.persistence.criteria.CriteriaQuery; -import javax.persistence.criteria.Predicate; -import javax.persistence.criteria.Root; +import jakarta.persistence.criteria.CriteriaBuilder; +import jakarta.persistence.criteria.CriteriaQuery; +import jakarta.persistence.criteria.Predicate; +import jakarta.persistence.criteria.Root; import org.springframework.data.jpa.domain.Specification; diff --git a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/MyUser.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/MyUser.java index f3b9dc3810..b8f7c93a23 100644 --- a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/MyUser.java +++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/MyUser.java @@ -1,9 +1,9 @@ package com.baeldung.persistence.model; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; // used for Querydsl test diff --git a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User.java index dbc2b9360f..8a019eccaf 100644 --- a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User.java +++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User.java @@ -1,9 +1,9 @@ package com.baeldung.persistence.model; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; @Entity public class User { diff --git a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User_.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User_.java index c101b1d9b3..056f8e09dd 100644 --- a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User_.java +++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User_.java @@ -1,7 +1,7 @@ package com.baeldung.persistence.model; -import javax.persistence.metamodel.SingularAttribute; -import javax.persistence.metamodel.StaticMetamodel; +import jakarta.persistence.metamodel.SingularAttribute; +import jakarta.persistence.metamodel.StaticMetamodel; @StaticMetamodel(User.class) public class User_ { diff --git a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/spring/Application.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/spring/Application.java index 371377021a..c869949162 100644 --- a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/spring/Application.java +++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/spring/Application.java @@ -1,7 +1,7 @@ package com.baeldung.spring; -import javax.servlet.ServletContext; -import javax.servlet.ServletException; +import jakarta.servlet.ServletContext; +import jakarta.servlet.ServletException; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; diff --git a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java index b30f435ee4..bf6aad064e 100644 --- a/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java +++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java @@ -1,6 +1,6 @@ package com.baeldung.web.error; -import javax.persistence.EntityNotFoundException; +import jakarta.persistence.EntityNotFoundException; import org.hibernate.exception.ConstraintViolationException; import org.springframework.dao.DataAccessException; @@ -8,6 +8,7 @@ import org.springframework.dao.DataIntegrityViolationException; import org.springframework.dao.InvalidDataAccessApiUsageException; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; +import org.springframework.http.HttpStatusCode; import org.springframework.http.ResponseEntity; import org.springframework.http.converter.HttpMessageNotReadableException; import org.springframework.web.bind.MethodArgumentNotValidException; @@ -42,14 +43,14 @@ public class RestResponseEntityExceptionHandler extends ResponseEntityExceptionH } @Override - protected ResponseEntity handleHttpMessageNotReadable(final HttpMessageNotReadableException ex, final HttpHeaders headers, final HttpStatus status, final WebRequest request) { + protected ResponseEntity handleHttpMessageNotReadable(final HttpMessageNotReadableException ex, final HttpHeaders headers, final HttpStatusCode status, final WebRequest request) { final String bodyOfResponse = "This should be application specific"; // ex.getCause() instanceof JsonMappingException, JsonParseException // for additional information later on return handleExceptionInternal(ex, bodyOfResponse, headers, HttpStatus.BAD_REQUEST, request); } @Override - protected ResponseEntity handleMethodArgumentNotValid(final MethodArgumentNotValidException ex, final HttpHeaders headers, final HttpStatus status, final WebRequest request) { + protected ResponseEntity handleMethodArgumentNotValid(final MethodArgumentNotValidException ex, final HttpHeaders headers, final HttpStatusCode status, final WebRequest request) { final String bodyOfResponse = "This should be application specific"; return handleExceptionInternal(ex, bodyOfResponse, headers, HttpStatus.BAD_REQUEST, request); } diff --git a/spring-web-modules/spring-rest-testing/pom.xml b/spring-web-modules/spring-rest-testing/pom.xml index db1ec6c165..d3f110bb90 100644 --- a/spring-web-modules/spring-rest-testing/pom.xml +++ b/spring-web-modules/spring-rest-testing/pom.xml @@ -10,9 +10,9 @@ com.baeldung - parent-boot-2 + parent-boot-3 0.0.1-SNAPSHOT - ../../parent-boot-2 + ../../parent-boot-3 @@ -74,6 +74,7 @@ commons-logging + ${httpclient.version} org.apache.httpcomponents @@ -91,6 +92,7 @@ org.hibernate hibernate-core + ${hibernate-core.version} xml-apis @@ -132,6 +134,14 @@ spring-test test + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + test + + @@ -238,6 +248,10 @@ 1.9.9 1.1.3 + 6.4.2.Final + 4.5.8 + 3.14.0 + com.baeldung.spring.Application \ No newline at end of file diff --git a/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/Foo.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/Foo.java index 9af3d07bed..99a6a8a3ce 100644 --- a/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/Foo.java +++ b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/Foo.java @@ -2,11 +2,11 @@ package com.baeldung.persistence.model; import java.io.Serializable; -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; @Entity public class Foo implements Serializable { diff --git a/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/User.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/User.java index dbc2b9360f..8a019eccaf 100644 --- a/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/User.java +++ b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/User.java @@ -1,9 +1,9 @@ package com.baeldung.persistence.model; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; @Entity public class User { diff --git a/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/common/AbstractService.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/common/AbstractService.java index 5a5d9d6241..a7122248d1 100644 --- a/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/common/AbstractService.java +++ b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/common/AbstractService.java @@ -4,6 +4,7 @@ import java.io.Serializable; import java.util.List; import com.baeldung.persistence.IOperations; +import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.repository.PagingAndSortingRepository; import org.springframework.transaction.annotation.Transactional; @@ -40,6 +41,6 @@ public abstract class AbstractService implements IOperat return getDao().save(entity); } - protected abstract PagingAndSortingRepository getDao(); + protected abstract JpaRepository getDao(); } diff --git a/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/impl/FooService.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/impl/FooService.java index 92fb6c28a0..3da077183e 100644 --- a/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/impl/FooService.java +++ b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/impl/FooService.java @@ -5,6 +5,7 @@ import com.baeldung.persistence.model.Foo; import com.baeldung.persistence.service.IFooService; import com.baeldung.persistence.service.common.AbstractService; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.repository.PagingAndSortingRepository; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @@ -23,7 +24,7 @@ public class FooService extends AbstractService implements IFooService { // API @Override - protected PagingAndSortingRepository getDao() { + protected JpaRepository getDao() { return dao; } diff --git a/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/controller/FooController.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/controller/FooController.java index b5350c33c1..45f9ca443f 100644 --- a/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/controller/FooController.java +++ b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/controller/FooController.java @@ -2,7 +2,7 @@ package com.baeldung.web.controller; import java.util.List; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletResponse; import com.baeldung.persistence.model.Foo; import com.baeldung.persistence.service.IFooService; diff --git a/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/persistence/service/AbstractServicePersistenceIntegrationTest.java b/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/persistence/service/AbstractServicePersistenceIntegrationTest.java index e66e9d49e2..89f76b2990 100644 --- a/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/persistence/service/AbstractServicePersistenceIntegrationTest.java +++ b/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/persistence/service/AbstractServicePersistenceIntegrationTest.java @@ -6,7 +6,7 @@ import static org.hamcrest.Matchers.not; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; import java.io.Serializable; import java.util.List; diff --git a/spring-web-modules/spring-resttemplate/.gitignore b/spring-web-modules/spring-resttemplate/.gitignore deleted file mode 100644 index 83c05e60c8..0000000000 --- a/spring-web-modules/spring-resttemplate/.gitignore +++ /dev/null @@ -1,13 +0,0 @@ -*.class - -#folders# -/target -/neoDb* -/data -/src/main/webapp/WEB-INF/classes -*/META-INF/* - -# Packaged files # -*.jar -*.war -*.ear \ No newline at end of file diff --git a/spring-web-modules/spring-resttemplate/pom.xml b/spring-web-modules/spring-resttemplate/pom.xml index 84c1add07e..3a03f3aafc 100644 --- a/spring-web-modules/spring-resttemplate/pom.xml +++ b/spring-web-modules/spring-resttemplate/pom.xml @@ -10,71 +10,20 @@ com.baeldung - parent-boot-2 + parent-boot-3 0.0.1-SNAPSHOT - ../../parent-boot-2 + ../../parent-boot-3 - - org.springframework.boot - spring-boot-starter-actuator - - - org.springframework.boot - spring-boot-starter-thymeleaf - - - org.springframework.boot - spring-boot-devtools - org.springframework.boot spring-boot-starter-web org.springframework.boot - spring-boot-starter-test - - - au.com.dius - pact-jvm-provider-junit5_2.12 - ${pact.version} - - - au.com.dius - pact-jvm-consumer-junit5_2.12 - ${pact.version} - test - - - - org.springframework - spring-web - - - commons-logging - commons-logging - - - - - org.springframework - spring-webmvc - - - org.springframework - spring-oxm - - - - com.fasterxml.jackson.core - jackson-databind - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml + spring-boot-starter-actuator com.thoughtworks.xstream @@ -100,14 +49,15 @@ - org.springframework - spring-test - - - org.mockito - mockito-junit-jupiter - ${mockito.version} + org.springframework.boot + spring-boot-starter-test test + + + org.junit.vintage + junit-vintage-engine + + @@ -120,14 +70,13 @@ + + org.springframework.boot + spring-boot-maven-plugin + org.apache.maven.plugins maven-compiler-plugin - ${maven.version} - - ${source.version} - ${target.version} - org.apache.maven.plugins @@ -254,16 +203,12 @@ - 1.4.9 + 1.4.20 1.6.1 3.0.4 4.12.0 - 3.6.3 - 1.8 - 1.8 - 3.7.0 \ No newline at end of file diff --git a/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/SpringConfig.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/SpringConfig.java index 7866a4abcd..f6a618fc12 100644 --- a/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/SpringConfig.java +++ b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/SpringConfig.java @@ -7,7 +7,6 @@ import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.DependsOn; -import org.springframework.web.client.RestTemplate; @Configuration @EnableAutoConfiguration diff --git a/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/handler/RestTemplateResponseErrorHandler.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/handler/RestTemplateResponseErrorHandler.java index 02260438c7..fe7e1239c5 100644 --- a/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/handler/RestTemplateResponseErrorHandler.java +++ b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/handler/RestTemplateResponseErrorHandler.java @@ -2,40 +2,32 @@ package com.baeldung.resttemplate.web.handler; import java.io.IOException; -import com.baeldung.resttemplate.web.exception.NotFoundException; import org.springframework.http.HttpStatus; import org.springframework.http.client.ClientHttpResponse; import org.springframework.stereotype.Component; import org.springframework.web.client.HttpClientErrorException; import org.springframework.web.client.ResponseErrorHandler; +import com.baeldung.resttemplate.web.exception.NotFoundException; + @Component -public class RestTemplateResponseErrorHandler - implements ResponseErrorHandler { +public class RestTemplateResponseErrorHandler implements ResponseErrorHandler { @Override - public boolean hasError(ClientHttpResponse httpResponse) - throws IOException { - - return (httpResponse - .getStatusCode() - .series() == HttpStatus.Series.CLIENT_ERROR || httpResponse - .getStatusCode() - .series() == HttpStatus.Series.SERVER_ERROR); + public boolean hasError(ClientHttpResponse httpResponse) throws IOException { + return httpResponse.getStatusCode() + .is5xxServerError() || httpResponse.getStatusCode() + .is4xxClientError(); } @Override - public void handleError(ClientHttpResponse httpResponse) - throws IOException { - - if (httpResponse - .getStatusCode() - .series() == HttpStatus.Series.SERVER_ERROR) { + public void handleError(ClientHttpResponse httpResponse) throws IOException { + if (httpResponse.getStatusCode() + .is5xxServerError()) { //Handle SERVER_ERROR throw new HttpClientErrorException(httpResponse.getStatusCode()); - } else if (httpResponse - .getStatusCode() - .series() == HttpStatus.Series.CLIENT_ERROR) { + } else if (httpResponse.getStatusCode() + .is4xxClientError()) { //Handle CLIENT_ERROR if (httpResponse.getStatusCode() == HttpStatus.NOT_FOUND) { throw new NotFoundException(); diff --git a/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/MyFooController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/MyFooController.java index 5c385edb07..c1a4825fc0 100644 --- a/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/MyFooController.java +++ b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/MyFooController.java @@ -4,7 +4,7 @@ import java.util.Collection; import java.util.HashMap; import java.util.Map; -import javax.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpServletResponse; import org.springframework.http.HttpStatus; import org.springframework.stereotype.Controller; diff --git a/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/mock/EmployeeServiceUnitTest.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/mock/EmployeeServiceUnitTest.java index 4c6e2fa5ca..97d49bd335 100644 --- a/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/mock/EmployeeServiceUnitTest.java +++ b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/mock/EmployeeServiceUnitTest.java @@ -1,5 +1,7 @@ package com.baeldung.mock; +import static org.junit.jupiter.api.Assertions.assertEquals; + import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -18,8 +20,6 @@ import com.baeldung.resttemplate.web.model.Employee; @ExtendWith(MockitoExtension.class) public class EmployeeServiceUnitTest { - private static final Logger logger = LoggerFactory.getLogger(EmployeeServiceUnitTest.class); - @Mock private RestTemplate restTemplate; @@ -34,7 +34,6 @@ public class EmployeeServiceUnitTest { Employee employee = empService.getEmployee("E001"); - Assertions.assertEquals(emp, employee); + assertEquals(emp, employee); } - } diff --git a/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateBasicLiveTest.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateBasicLiveTest.java index a433ac73c3..0c5d473291 100644 --- a/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateBasicLiveTest.java +++ b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateBasicLiveTest.java @@ -1,6 +1,6 @@ package com.baeldung.resttemplate; -import static org.apache.commons.codec.binary.Base64.encodeBase64; +import java.util.Base64; import static com.baeldung.client.Consts.APPLICATION_PORT; import static org.junit.jupiter.api.Assertions.fail; @@ -32,7 +32,7 @@ import org.springframework.web.client.RestTemplate; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.dataformat.xml.XmlMapper; +import org.springframework.web.client.RestTemplate; import com.google.common.base.Charsets; // This test needs RestTemplateConfigurationApplication to be up and running @@ -62,7 +62,7 @@ public class RestTemplateBasicLiveTest { final RestTemplate template = new RestTemplate(); final ResponseEntity response = template.getForEntity(fooResourceUrl + "/1", String.class); - final ObjectMapper mapper = new XmlMapper(); + final ObjectMapper mapper = new ObjectMapper(); final JsonNode root = mapper.readTree(response.getBody()); final JsonNode name = root.path("name"); Assertions.assertNotNull(name.asText()); @@ -243,7 +243,7 @@ public class RestTemplateBasicLiveTest { private String getBase64EncodedLogPass() { final String logPass = "user1:user1Pass"; - final byte[] authHeaderBytes = encodeBase64(logPass.getBytes(Charsets.US_ASCII)); + final byte[] authHeaderBytes = Base64.getEncoder().encode(logPass.getBytes(Charsets.US_ASCII)); return new String(authHeaderBytes, Charsets.US_ASCII); } diff --git a/spring-web-modules/spring-session/pom.xml b/spring-web-modules/spring-session/pom.xml index aec64da088..119c71af55 100644 --- a/spring-web-modules/spring-session/pom.xml +++ b/spring-web-modules/spring-session/pom.xml @@ -3,7 +3,6 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - com.baeldung spring-session 1.0.0-SNAPSHOT spring-session diff --git a/spring-web-modules/spring-thymeleaf-5/README.md b/spring-web-modules/spring-thymeleaf-5/README.md index 7b64a4e423..dcf5dd91b3 100644 --- a/spring-web-modules/spring-thymeleaf-5/README.md +++ b/spring-web-modules/spring-thymeleaf-5/README.md @@ -7,4 +7,5 @@ This module contains articles about Spring with Thymeleaf - [Conditionals in Thymeleaf](https://www.baeldung.com/spring-thymeleaf-conditionals) - [Iteration in Thymeleaf](https://www.baeldung.com/thymeleaf-iteration) - [Spring with Thymeleaf Pagination for a List](https://www.baeldung.com/spring-thymeleaf-pagination) +- [Display Image With Thymeleaf](https://www.baeldung.com/spring-thymeleaf-image) - More articles: [[<-- prev]](../spring-thymeleaf-4) diff --git a/spring-web-modules/spring-thymeleaf-5/src/main/java/com/baeldung/thymeleaf/controller/HomeController.java b/spring-web-modules/spring-thymeleaf-5/src/main/java/com/baeldung/thymeleaf/controller/HomeController.java index 8bbcd8fdb7..091662fb33 100644 --- a/spring-web-modules/spring-thymeleaf-5/src/main/java/com/baeldung/thymeleaf/controller/HomeController.java +++ b/spring-web-modules/spring-thymeleaf-5/src/main/java/com/baeldung/thymeleaf/controller/HomeController.java @@ -11,7 +11,7 @@ import java.util.Locale; /** * Handles requests for the application home page. - * + * */ @Controller public class HomeController { @@ -23,4 +23,15 @@ public class HomeController { return "home.html"; } + @RequestMapping(value = "/variable-defined", method = RequestMethod.GET) + public String getVariableIsDefined(Model model) { + DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, Locale.getDefault()); + model.addAttribute("serverTime", dateFormat.format(new Date())); + return "checkVariableIsDefined.html"; + } + + @RequestMapping(value = "/variable-not-defined", method = RequestMethod.GET) + public String getVariableIsNotDefined(Model model) { + return "checkVariableIsDefined.html"; + } } diff --git a/spring-web-modules/spring-thymeleaf-5/src/main/java/com/baeldung/thymeleaf/controller/PetController.java b/spring-web-modules/spring-thymeleaf-5/src/main/java/com/baeldung/thymeleaf/controller/PetController.java new file mode 100644 index 0000000000..c2071ac9c7 --- /dev/null +++ b/spring-web-modules/spring-thymeleaf-5/src/main/java/com/baeldung/thymeleaf/controller/PetController.java @@ -0,0 +1,13 @@ +package com.baeldung.thymeleaf.controller; + +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; + +@Controller +public class PetController { + + @RequestMapping("/") + public String home() { + return "index"; + } +} diff --git a/spring-web-modules/spring-thymeleaf-5/src/main/resources/static/cat.jpg b/spring-web-modules/spring-thymeleaf-5/src/main/resources/static/cat.jpg new file mode 100644 index 0000000000..cd92bb4a16 Binary files /dev/null and b/spring-web-modules/spring-thymeleaf-5/src/main/resources/static/cat.jpg differ diff --git a/spring-web-modules/spring-thymeleaf-5/src/main/resources/static/images/cat.jpg b/spring-web-modules/spring-thymeleaf-5/src/main/resources/static/images/cat.jpg new file mode 100644 index 0000000000..cd92bb4a16 Binary files /dev/null and b/spring-web-modules/spring-thymeleaf-5/src/main/resources/static/images/cat.jpg differ diff --git a/spring-web-modules/spring-thymeleaf-5/src/main/resources/template/index.html b/spring-web-modules/spring-thymeleaf-5/src/main/resources/template/index.html new file mode 100644 index 0000000000..7e045e9769 --- /dev/null +++ b/spring-web-modules/spring-thymeleaf-5/src/main/resources/template/index.html @@ -0,0 +1,13 @@ + + + + + Baeldung Pet Store + + +

Welcome Image

+
Pet Store
+ cat + cat + + \ No newline at end of file diff --git a/spring-web-modules/spring-thymeleaf-5/src/main/webapp/WEB-INF/views/checkVariableIsDefined.html b/spring-web-modules/spring-thymeleaf-5/src/main/webapp/WEB-INF/views/checkVariableIsDefined.html new file mode 100644 index 0000000000..7d995718f6 --- /dev/null +++ b/spring-web-modules/spring-thymeleaf-5/src/main/webapp/WEB-INF/views/checkVariableIsDefined.html @@ -0,0 +1,19 @@ + + + + How to Check if a Variable is Defined in Thymeleaf + + + +
+
+
+ +
+
+
+
+ + + diff --git a/spring-web-modules/spring-thymeleaf-5/src/test/java/com/baeldung/thymeleaf/controller/HomeControllerIntegrationTest.java b/spring-web-modules/spring-thymeleaf-5/src/test/java/com/baeldung/thymeleaf/controller/HomeControllerIntegrationTest.java new file mode 100644 index 0000000000..9ebc80c658 --- /dev/null +++ b/spring-web-modules/spring-thymeleaf-5/src/test/java/com/baeldung/thymeleaf/controller/HomeControllerIntegrationTest.java @@ -0,0 +1,103 @@ +package com.baeldung.thymeleaf.controller; + +import static org.hamcrest.CoreMatchers.containsString; +import static org.hamcrest.CoreMatchers.not; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; +import org.springframework.test.web.servlet.setup.MockMvcBuilders; + +import com.baeldung.thymeleaf.config.WebApp; +import com.baeldung.thymeleaf.config.WebMVCConfig; + +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.context.web.WebAppConfiguration; +import org.springframework.web.context.WebApplicationContext; + +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.view; + +@RunWith(SpringJUnit4ClassRunner.class) +@WebAppConfiguration +@ContextConfiguration(classes = { WebApp.class, WebMVCConfig.class }) +public class HomeControllerIntegrationTest { + private static final String CTX_OBJECT_MSG = "Server Time Using the #ctx Object Is: "; + private static final String IF_CONDITIONAL_MSG = "Server Time Using #th:if Conditional Is: "; + private static final String UNLESS_CONDITIONAL_MSG = "Server Time Using #th:unless Conditional Is: "; + + @Autowired + private WebApplicationContext wac; + + private MockMvc mockMvc; + + @Before + public void setup() { + mockMvc = MockMvcBuilders.webAppContextSetup(wac) + .build(); + } + + @Test + public void whenVariableIsDefined_thenCtxObjectContainsVariable() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.get("/variable-defined")) + .andExpect(status().isOk()) + .andExpect(view().name("checkVariableIsDefined.html")) + .andExpect(content().string(containsString(CTX_OBJECT_MSG))); + } + + @Test + public void whenVariableNotDefined_thenCtxObjectDoesNotContainVariable() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.get("/variable-not-defined")) + .andExpect(status().isOk()) + .andExpect(view().name("checkVariableIsDefined.html")) + .andExpect(content().string(not(containsString(CTX_OBJECT_MSG)))); + } + + @Test + public void whenVariableIsDefined_thenIfConditionalIsTrue() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.get("/variable-defined")) + .andExpect(status().isOk()) + .andExpect(view().name("checkVariableIsDefined.html")) + .andExpect(content().string(containsString(IF_CONDITIONAL_MSG))); + } + + @Test + public void whenVariableIsNotDefined_thenIfConditionalIsFalse() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.get("/variable-not-defined")) + .andExpect(status().isOk()) + .andExpect(view().name("checkVariableIsDefined.html")) + .andExpect(content().string(not(containsString(IF_CONDITIONAL_MSG)))); + } + + @Test + public void whenVariableIsDefinedAndNotTrue_thenIfConditionalIsFalse() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.get("/variable-defined")) + .andExpect(status().isOk()) + .andExpect(view().name("checkVariableIsDefined.html")) + .andExpect(content().string(not(containsString("Evaluating \"false\"")))) + .andExpect(content().string(not(containsString("Evaluating \"no\"")))) + .andExpect(content().string(not(containsString("Evaluating \"off\"")))) + .andExpect(content().string(not(containsString("Evaluating 0")))); + } + + @Test + public void whenVariableIsDefined_thenUnlessConditionalIsTrue() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.get("/variable-defined")) + .andExpect(status().isOk()) + .andExpect(view().name("checkVariableIsDefined.html")) + .andExpect(content().string(containsString(IF_CONDITIONAL_MSG))); + } + + @Test + public void whenVariableIsNotDefined_thenUnlessConditionalIsFalse() throws Exception { + mockMvc.perform(MockMvcRequestBuilders.get("/variable-not-defined")) + .andExpect(status().isOk()) + .andExpect(view().name("checkVariableIsDefined.html")) + .andExpect(content().string(not(containsString(UNLESS_CONDITIONAL_MSG)))); + } +} \ No newline at end of file diff --git a/spring-web-modules/spring-thymeleaf/pom.xml b/spring-web-modules/spring-thymeleaf/pom.xml index ca94d4581e..9f6c62847d 100644 --- a/spring-web-modules/spring-thymeleaf/pom.xml +++ b/spring-web-modules/spring-thymeleaf/pom.xml @@ -108,7 +108,6 @@ org.apache.maven.plugins maven-war-plugin - ${maven-war-plugin.version} false diff --git a/tablesaw/src/test/resources/avocado.csv b/tablesaw/src/test/resources/avocado.csv new file mode 100644 index 0000000000..8c05945b67 --- /dev/null +++ b/tablesaw/src/test/resources/avocado.csv @@ -0,0 +1,18250 @@ +,Date,AveragePrice,Total Volume,4046,4225,4770,Total Bags,Small Bags,Large Bags,XLarge Bags,type,year,region +0,2015-12-27,1.33,64236.62,1036.74,54454.85,48.16,8696.87,8603.62,93.25,0.0,conventional,2015,Albany +1,2015-12-20,1.35,54876.98,674.28,44638.81,58.33,9505.56,9408.07,97.49,0.0,conventional,2015,Albany +2,2015-12-13,0.93,118220.22,794.7,109149.67,130.5,8145.35,8042.21,103.14,0.0,conventional,2015,Albany +3,2015-12-06,1.08,78992.15,1132.0,71976.41,72.58,5811.16,5677.4,133.76,0.0,conventional,2015,Albany +4,2015-11-29,1.28,51039.6,941.48,43838.39,75.78,6183.95,5986.26,197.69,0.0,conventional,2015,Albany +5,2015-11-22,1.26,55979.78,1184.27,48067.99,43.61,6683.91,6556.47,127.44,0.0,conventional,2015,Albany +6,2015-11-15,0.99,83453.76,1368.92,73672.72,93.26,8318.86,8196.81,122.05,0.0,conventional,2015,Albany +7,2015-11-08,0.98,109428.33,703.75,101815.36,80.0,6829.22,6266.85,562.37,0.0,conventional,2015,Albany +8,2015-11-01,1.02,99811.42,1022.15,87315.57,85.34,11388.36,11104.53,283.83,0.0,conventional,2015,Albany +9,2015-10-25,1.07,74338.76,842.4,64757.44,113.0,8625.92,8061.47,564.45,0.0,conventional,2015,Albany +10,2015-10-18,1.12,84843.44,924.86,75595.85,117.07,8205.66,7877.86,327.8,0.0,conventional,2015,Albany +11,2015-10-11,1.28,64489.17,1582.03,52677.92,105.32,10123.9,9866.27,257.63,0.0,conventional,2015,Albany +12,2015-10-04,1.31,61007.1,2268.32,49880.67,101.36,8756.75,8379.98,376.77,0.0,conventional,2015,Albany +13,2015-09-27,0.99,106803.39,1204.88,99409.21,154.84,6034.46,5888.87,145.59,0.0,conventional,2015,Albany +14,2015-09-20,1.33,69759.01,1028.03,59313.12,150.5,9267.36,8489.1,778.26,0.0,conventional,2015,Albany +15,2015-09-13,1.28,76111.27,985.73,65696.86,142.0,9286.68,8665.19,621.49,0.0,conventional,2015,Albany +16,2015-09-06,1.11,99172.96,879.45,90062.62,240.79,7990.1,7762.87,227.23,0.0,conventional,2015,Albany +17,2015-08-30,1.07,105693.84,689.01,94362.67,335.43,10306.73,10218.93,87.8,0.0,conventional,2015,Albany +18,2015-08-23,1.34,79992.09,733.16,67933.79,444.78,10880.36,10745.79,134.57,0.0,conventional,2015,Albany +19,2015-08-16,1.33,80043.78,539.65,68666.01,394.9,10443.22,10297.68,145.54,0.0,conventional,2015,Albany +20,2015-08-09,1.12,111140.93,584.63,100961.46,368.95,9225.89,9116.34,109.55,0.0,conventional,2015,Albany +21,2015-08-02,1.45,75133.1,509.94,62035.06,741.08,11847.02,11768.52,78.5,0.0,conventional,2015,Albany +22,2015-07-26,1.11,106757.1,648.75,91949.05,966.61,13192.69,13061.53,131.16,0.0,conventional,2015,Albany +23,2015-07-19,1.26,96617.0,1042.1,82049.4,2238.02,11287.48,11103.49,183.99,0.0,conventional,2015,Albany +24,2015-07-12,1.05,124055.31,672.25,94693.52,4257.64,24431.9,24290.08,108.49,33.33,conventional,2015,Albany +25,2015-07-05,1.35,109252.12,869.45,72600.55,5883.16,29898.96,29663.19,235.77,0.0,conventional,2015,Albany +26,2015-06-28,1.37,89534.81,664.23,57545.79,4662.71,26662.08,26311.76,350.32,0.0,conventional,2015,Albany +27,2015-06-21,1.27,104849.39,804.01,76688.55,5481.18,21875.65,21662.0,213.65,0.0,conventional,2015,Albany +28,2015-06-14,1.32,89631.3,850.58,55400.94,4377.19,29002.59,28343.14,659.45,0.0,conventional,2015,Albany +29,2015-06-07,1.07,122743.06,656.71,99220.82,90.32,22775.21,22314.99,460.22,0.0,conventional,2015,Albany +30,2015-05-31,1.23,95123.62,922.37,70469.69,50.55,23681.01,23222.49,458.52,0.0,conventional,2015,Albany +31,2015-05-24,1.19,101470.91,680.27,71376.81,58.7,29355.13,28761.81,593.32,0.0,conventional,2015,Albany +32,2015-05-17,1.43,109857.47,1150.55,81955.16,94.32,26657.44,26285.43,372.01,0.0,conventional,2015,Albany +33,2015-05-10,1.26,120427.91,1420.43,102000.52,185.66,16821.3,16535.55,285.75,0.0,conventional,2015,Albany +34,2015-05-03,1.2,59197.67,919.87,45490.05,217.24,12570.51,12201.95,368.56,0.0,conventional,2015,Albany +35,2015-04-26,1.22,49585.46,875.65,35841.75,89.62,12778.44,12076.83,701.61,0.0,conventional,2015,Albany +36,2015-04-19,1.19,49064.73,774.15,33941.51,47.15,14301.92,13602.97,698.95,0.0,conventional,2015,Albany +37,2015-04-12,1.13,48364.29,864.27,30374.15,21.5,17104.37,16438.49,665.88,0.0,conventional,2015,Albany +38,2015-04-05,1.16,47362.13,961.77,35577.66,93.76,10728.94,9869.16,755.61,104.17,conventional,2015,Albany +39,2015-03-29,1.02,67799.08,1402.28,58623.22,89.5,7684.08,7208.49,475.59,0.0,conventional,2015,Albany +40,2015-03-22,1.12,46346.85,2141.83,34313.56,141.8,9749.66,9252.6,497.06,0.0,conventional,2015,Albany +41,2015-03-15,1.11,43045.79,2128.26,30447.17,99.67,10370.69,9989.59,381.1,0.0,conventional,2015,Albany +42,2015-03-08,1.07,40507.36,795.68,30370.64,159.05,9181.99,8827.55,354.44,0.0,conventional,2015,Albany +43,2015-03-01,0.99,55595.74,629.46,45633.34,181.49,9151.45,8986.06,165.39,0.0,conventional,2015,Albany +44,2015-02-22,1.07,45675.05,1088.38,35056.13,151.0,9379.54,9000.16,379.38,0.0,conventional,2015,Albany +45,2015-02-15,1.06,41567.62,986.66,30045.51,222.42,10313.03,9979.87,333.16,0.0,conventional,2015,Albany +46,2015-02-08,0.99,51253.97,1357.37,39111.81,163.25,10621.54,10113.1,508.44,0.0,conventional,2015,Albany +47,2015-02-01,0.99,70873.6,1353.9,60017.2,179.32,9323.18,9170.82,152.36,0.0,conventional,2015,Albany +48,2015-01-25,1.06,45147.5,941.38,33196.16,164.14,10845.82,10103.35,742.47,0.0,conventional,2015,Albany +49,2015-01-18,1.17,44511.28,914.14,31540.32,135.77,11921.05,11651.09,269.96,0.0,conventional,2015,Albany +50,2015-01-11,1.24,41195.08,1002.85,31640.34,127.12,8424.77,8036.04,388.73,0.0,conventional,2015,Albany +51,2015-01-04,1.22,40873.28,2819.5,28287.42,49.9,9716.46,9186.93,529.53,0.0,conventional,2015,Albany +0,2015-12-27,0.99,386100.49,292097.36,27350.92,297.9,66354.31,48605.95,17748.36,0.0,conventional,2015,Atlanta +1,2015-12-20,1.08,331377.53,251774.15,20702.45,103.06,58797.87,46930.26,11867.61,0.0,conventional,2015,Atlanta +2,2015-12-13,0.96,417772.47,324932.28,31019.08,275.8,61545.31,38903.57,22628.21,13.53,conventional,2015,Atlanta +3,2015-12-06,1.07,357636.82,283024.01,23740.85,181.92,50690.04,37032.67,13654.66,2.71,conventional,2015,Atlanta +4,2015-11-29,0.99,333280.79,250288.65,28889.63,307.83,53794.68,33031.72,20738.55,24.41,conventional,2015,Atlanta +5,2015-11-22,1.0,356414.57,269799.03,29732.3,501.16,56382.08,36992.3,19389.78,0.0,conventional,2015,Atlanta +6,2015-11-15,1.13,339860.68,263915.78,28442.45,455.97,47046.48,33656.42,13390.06,0.0,conventional,2015,Atlanta +7,2015-11-08,1.12,334041.6,250441.38,34483.33,488.24,48628.65,35662.93,12941.12,24.6,conventional,2015,Atlanta +8,2015-11-01,0.99,419088.74,290457.5,62980.07,252.79,65398.38,39460.77,25929.39,8.22,conventional,2015,Atlanta +9,2015-10-25,1.09,358478.08,236814.29,64607.97,304.36,56751.46,31826.88,24924.58,0.0,conventional,2015,Atlanta +10,2015-10-18,1.09,349072.48,228710.28,59731.79,291.22,60339.19,36884.35,23454.84,0.0,conventional,2015,Atlanta +11,2015-10-11,0.95,433874.46,255933.32,91047.32,599.71,86294.11,41159.96,45134.15,0.0,conventional,2015,Atlanta +12,2015-10-04,0.96,418682.26,265797.09,92780.33,644.43,59460.41,14875.64,44584.77,0.0,conventional,2015,Atlanta +13,2015-09-27,1.07,370321.17,262107.44,61870.63,680.8,45662.3,20533.87,25125.65,2.78,conventional,2015,Atlanta +14,2015-09-20,0.93,516432.6,346118.51,82762.72,1349.41,86201.96,33698.43,52442.25,61.28,conventional,2015,Atlanta +15,2015-09-13,1.07,417232.18,278048.26,62485.97,714.93,75983.02,46290.32,29678.76,13.94,conventional,2015,Atlanta +16,2015-09-06,0.97,472136.53,303113.24,73675.85,911.25,94436.19,49833.55,44549.67,52.97,conventional,2015,Atlanta +17,2015-08-30,1.15,382972.72,275818.27,44839.12,1034.09,61281.24,47138.07,14112.5,30.67,conventional,2015,Atlanta +18,2015-08-23,1.12,379054.29,274462.42,46223.69,950.09,57418.09,45534.11,11883.98,0.0,conventional,2015,Atlanta +19,2015-08-16,1.09,465213.81,362579.51,41992.44,1424.96,59216.9,45068.25,14148.65,0.0,conventional,2015,Atlanta +20,2015-08-09,1.01,503791.72,385027.71,47040.07,4251.74,67472.2,45820.45,21568.48,83.27,conventional,2015,Atlanta +21,2015-08-02,1.15,405898.44,306587.86,41906.78,3515.48,53888.32,42126.47,11720.3,41.55,conventional,2015,Atlanta +22,2015-07-26,1.08,437377.75,335372.02,44087.07,708.0,57210.66,45114.22,12096.44,0.0,conventional,2015,Atlanta +23,2015-07-19,0.97,557212.99,446100.17,47838.42,1982.03,61292.37,45099.87,16192.5,0.0,conventional,2015,Atlanta +24,2015-07-12,1.14,407204.88,310080.33,37953.24,867.46,58303.85,46023.59,12280.26,0.0,conventional,2015,Atlanta +25,2015-07-05,1.01,562462.33,436377.91,54675.38,848.55,70560.49,50684.74,19851.0,24.75,conventional,2015,Atlanta +26,2015-06-28,1.13,435210.71,331353.43,37698.53,816.56,65342.19,52099.76,13108.03,134.4,conventional,2015,Atlanta +27,2015-06-21,0.99,554763.76,449311.47,30231.78,678.4,74542.11,55484.76,19010.81,46.54,conventional,2015,Atlanta +28,2015-06-14,1.1,465804.78,386370.5,17701.12,471.72,61261.44,48612.13,12578.28,71.03,conventional,2015,Atlanta +29,2015-06-07,0.99,551009.05,455565.92,22414.17,738.68,72290.28,50954.84,21329.99,5.45,conventional,2015,Atlanta +30,2015-05-31,1.1,454702.0,382900.99,19543.18,522.81,51735.02,40505.16,11199.95,29.91,conventional,2015,Atlanta +31,2015-05-24,0.96,623212.04,538126.94,27284.43,1260.8,56539.87,33867.0,22651.15,21.72,conventional,2015,Atlanta +32,2015-05-17,1.11,451250.7,386400.89,18618.84,838.68,45392.29,33710.2,11682.09,0.0,conventional,2015,Atlanta +33,2015-05-10,1.1,480071.18,413452.96,18860.63,1089.33,46668.26,34108.44,12559.82,0.0,conventional,2015,Atlanta +34,2015-05-03,1.0,634213.1,538403.48,28568.26,1059.73,66181.63,32520.82,33660.81,0.0,conventional,2015,Atlanta +35,2015-04-26,1.12,448596.76,387676.81,18366.33,1041.78,41511.84,31315.29,10196.55,0.0,conventional,2015,Atlanta +36,2015-04-19,1.12,430966.34,368709.65,18040.85,873.24,43342.6,29661.72,13680.88,0.0,conventional,2015,Atlanta +37,2015-04-12,0.99,451101.89,377578.48,22419.95,219.14,50884.32,25833.07,25051.25,0.0,conventional,2015,Atlanta +38,2015-04-05,1.04,383139.49,318473.47,19254.39,374.51,45037.12,28612.48,16289.92,134.72,conventional,2015,Atlanta +39,2015-03-29,1.11,365722.14,305028.89,16651.99,261.01,43780.25,29313.92,14466.33,0.0,conventional,2015,Atlanta +40,2015-03-22,1.0,479590.62,393591.03,23419.6,304.89,62275.1,40495.12,21766.54,13.44,conventional,2015,Atlanta +41,2015-03-15,1.12,399566.22,336172.08,16508.21,310.7,46575.23,34911.7,11625.94,37.59,conventional,2015,Atlanta +42,2015-03-08,1.1,420826.32,361559.22,15788.71,236.97,43241.42,33847.33,9394.09,0.0,conventional,2015,Atlanta +43,2015-03-01,0.99,512532.44,441544.0,21183.7,347.78,49456.96,32180.9,17273.38,2.68,conventional,2015,Atlanta +44,2015-02-22,1.1,431308.56,369316.29,18324.76,237.47,43430.04,33423.74,10006.3,0.0,conventional,2015,Atlanta +45,2015-02-15,1.06,427391.28,364446.77,17420.41,638.18,44885.92,26727.66,18158.26,0.0,conventional,2015,Atlanta +46,2015-02-08,1.03,433883.91,377256.38,17162.5,524.85,38940.18,18044.41,20895.77,0.0,conventional,2015,Atlanta +47,2015-02-01,0.96,636771.37,553198.56,31583.38,294.94,51694.49,10553.73,41140.76,0.0,conventional,2015,Atlanta +48,2015-01-25,1.1,449332.85,393408.17,18718.27,594.25,36612.16,13176.39,23435.77,0.0,conventional,2015,Atlanta +49,2015-01-18,1.11,431490.99,372236.92,18701.9,511.69,40040.48,16782.71,23257.77,0.0,conventional,2015,Atlanta +50,2015-01-11,1.11,397542.72,330411.24,18958.22,1135.18,47038.08,21309.61,25728.47,0.0,conventional,2015,Atlanta +51,2015-01-04,1.0,435021.49,364302.39,23821.16,82.15,46815.79,16707.15,30108.64,0.0,conventional,2015,Atlanta +0,2015-12-27,1.17,596819.4,40450.49,394104.02,17353.79,144911.1,142543.88,2367.22,0.0,conventional,2015,BaltimoreWashington +1,2015-12-20,1.11,642682.4,44741.37,434590.82,19112.14,144238.07,141751.91,2486.16,0.0,conventional,2015,BaltimoreWashington +2,2015-12-13,1.15,619509.33,44400.26,399851.59,24291.2,150966.28,149070.4,1895.88,0.0,conventional,2015,BaltimoreWashington +3,2015-12-06,1.04,649141.25,51129.29,453586.5,25760.49,118664.97,117112.77,1552.2,0.0,conventional,2015,BaltimoreWashington +4,2015-11-29,1.16,545800.05,41028.15,379156.09,20147.53,105468.28,103615.95,1852.33,0.0,conventional,2015,BaltimoreWashington +5,2015-11-22,1.12,572019.8,40867.8,386137.78,23343.49,121670.73,119007.61,2663.12,0.0,conventional,2015,BaltimoreWashington +6,2015-11-15,1.04,718330.48,47109.75,503470.08,37990.29,129760.36,125297.67,4462.69,0.0,conventional,2015,BaltimoreWashington +7,2015-11-08,1.05,830967.23,58579.27,576512.71,51035.04,144840.21,138777.63,6062.58,0.0,conventional,2015,BaltimoreWashington +8,2015-11-01,1.12,742220.67,51860.07,473819.14,58615.76,157925.7,152716.4,5209.3,0.0,conventional,2015,BaltimoreWashington +9,2015-10-25,1.19,656892.03,53766.25,397911.35,49085.74,156128.69,149987.55,6141.14,0.0,conventional,2015,BaltimoreWashington +10,2015-10-18,0.99,1005603.78,59121.55,745385.26,49171.33,151925.64,146421.02,5504.62,0.0,conventional,2015,BaltimoreWashington +11,2015-10-11,1.24,653560.14,34707.02,392008.6,58490.1,168354.42,163669.01,4685.41,0.0,conventional,2015,BaltimoreWashington +12,2015-10-04,1.28,657444.04,35342.34,407609.95,42257.73,172234.02,167494.61,4739.41,0.0,conventional,2015,BaltimoreWashington +13,2015-09-27,1.19,696281.81,34309.05,451061.03,59018.61,151893.12,146792.81,5100.31,0.0,conventional,2015,BaltimoreWashington +14,2015-09-20,1.17,709268.62,39619.87,450283.01,45336.12,174029.62,168889.78,5139.84,0.0,conventional,2015,BaltimoreWashington +15,2015-09-13,1.09,924993.61,55699.25,675524.33,42270.47,151499.56,145686.02,5813.54,0.0,conventional,2015,BaltimoreWashington +16,2015-09-06,1.18,823623.36,63903.73,522568.44,68180.35,168970.84,165696.58,3268.72,5.54,conventional,2015,BaltimoreWashington +17,2015-08-30,1.24,734721.29,48455.25,458207.46,42754.34,185304.24,181968.79,3158.9,176.55,conventional,2015,BaltimoreWashington +18,2015-08-23,1.16,783935.36,59242.02,499100.39,47216.18,178376.77,175047.15,3060.44,269.18,conventional,2015,BaltimoreWashington +19,2015-08-16,1.14,882754.72,86492.03,597184.73,43102.61,155975.35,153156.63,2796.82,21.9,conventional,2015,BaltimoreWashington +20,2015-08-09,1.16,821523.45,56362.75,557363.94,42933.87,164862.89,161564.81,3298.08,0.0,conventional,2015,BaltimoreWashington +21,2015-08-02,1.17,800603.23,53957.63,535167.1,44749.58,166728.92,163667.68,3061.24,0.0,conventional,2015,BaltimoreWashington +22,2015-07-26,1.2,772926.12,52746.41,496508.65,45010.81,178660.25,174774.8,3880.04,5.41,conventional,2015,BaltimoreWashington +23,2015-07-19,1.18,800194.34,52954.94,496206.47,50319.84,200713.09,196837.6,3862.02,13.47,conventional,2015,BaltimoreWashington +24,2015-07-12,1.1,850931.58,58827.99,547537.41,50679.01,193887.17,189236.32,4406.05,244.8,conventional,2015,BaltimoreWashington +25,2015-07-05,1.16,896298.77,66504.67,567640.7,56044.51,206108.89,200097.99,5890.57,120.33,conventional,2015,BaltimoreWashington +26,2015-06-28,1.15,862261.64,65051.95,534535.21,51109.85,211564.63,207378.09,4022.51,164.03,conventional,2015,BaltimoreWashington +27,2015-06-21,1.16,862840.73,58398.76,527866.5,51952.74,224622.73,220904.35,3488.37,230.01,conventional,2015,BaltimoreWashington +28,2015-06-14,1.09,955046.82,64005.15,593499.63,48344.86,249197.18,244982.26,3668.3,546.62,conventional,2015,BaltimoreWashington +29,2015-06-07,1.26,794310.29,62585.45,462951.05,43720.95,225052.84,221165.85,3626.41,260.58,conventional,2015,BaltimoreWashington +30,2015-05-31,1.19,949177.06,67744.84,617813.87,45832.8,217785.55,211787.29,5730.22,268.04,conventional,2015,BaltimoreWashington +31,2015-05-24,1.18,908661.83,63610.12,560740.03,49808.51,234503.17,228842.95,5548.94,111.28,conventional,2015,BaltimoreWashington +32,2015-05-17,1.27,790853.86,63515.06,455166.65,44840.98,227331.17,222163.1,5152.19,15.88,conventional,2015,BaltimoreWashington +33,2015-05-10,1.26,855205.82,79192.07,507104.15,44390.54,224519.06,215572.03,8947.03,0.0,conventional,2015,BaltimoreWashington +34,2015-05-03,1.17,896972.05,73038.46,536709.99,77537.43,209686.17,201874.28,7767.45,44.44,conventional,2015,BaltimoreWashington +35,2015-04-26,1.29,747841.09,58013.85,431532.87,39942.57,218351.8,212064.73,6184.29,102.78,conventional,2015,BaltimoreWashington +36,2015-04-19,1.28,762862.62,67486.78,427623.27,42125.28,225627.29,219885.88,5741.41,0.0,conventional,2015,BaltimoreWashington +37,2015-04-12,1.15,837629.62,70796.72,523170.13,42270.76,201392.01,196076.34,5315.67,0.0,conventional,2015,BaltimoreWashington +38,2015-04-05,1.29,688065.45,53579.17,401279.47,41867.08,191339.73,184109.06,6357.06,873.61,conventional,2015,BaltimoreWashington +39,2015-03-29,1.25,663677.32,58098.15,398050.87,43759.68,163768.62,158964.08,4804.54,0.0,conventional,2015,BaltimoreWashington +40,2015-03-22,1.1,808897.21,65158.96,524971.24,42381.39,176385.62,171699.95,4685.67,0.0,conventional,2015,BaltimoreWashington +41,2015-03-15,1.24,693698.13,53400.14,395837.01,46596.22,197864.76,193130.9,4733.86,0.0,conventional,2015,BaltimoreWashington +42,2015-03-08,1.26,657745.9,55284.8,367670.93,42267.91,192522.26,188374.49,4147.77,0.0,conventional,2015,BaltimoreWashington +43,2015-03-01,1.16,770115.24,59039.85,498872.67,40241.65,171961.07,168224.2,3736.87,0.0,conventional,2015,BaltimoreWashington +44,2015-02-22,1.11,749845.79,50501.07,445970.56,62611.61,190762.55,186976.97,3785.58,0.0,conventional,2015,BaltimoreWashington +45,2015-02-15,1.25,637319.34,49751.74,361677.37,45900.05,179990.18,174864.87,5125.31,0.0,conventional,2015,BaltimoreWashington +46,2015-02-08,1.09,844931.21,71703.52,554857.41,37437.32,180932.96,175771.39,5161.57,0.0,conventional,2015,BaltimoreWashington +47,2015-02-01,1.06,1007418.76,93166.54,666010.38,83652.48,164589.36,159916.87,4672.49,0.0,conventional,2015,BaltimoreWashington +48,2015-01-25,1.2,692934.46,49696.14,386398.73,39488.95,217350.64,209761.81,7588.83,0.0,conventional,2015,BaltimoreWashington +49,2015-01-18,1.23,657741.34,49947.16,393359.6,40576.08,173858.5,169390.88,4467.62,0.0,conventional,2015,BaltimoreWashington +50,2015-01-11,1.17,670231.94,51460.64,420837.82,42526.96,155406.52,151330.87,4075.65,0.0,conventional,2015,BaltimoreWashington +51,2015-01-04,1.08,788025.06,53987.31,552906.04,39995.03,141136.68,137146.07,3990.61,0.0,conventional,2015,BaltimoreWashington +0,2015-12-27,0.97,62909.69,30482.25,2971.94,5894.4,23561.1,23520.19,5.69,35.22,conventional,2015,Boise +1,2015-12-20,1.03,57504.05,25628.22,2546.09,7393.84,21935.9,21900.35,11.43,24.12,conventional,2015,Boise +2,2015-12-13,0.99,58461.05,27148.61,2985.73,6458.44,21868.27,21842.87,4.44,20.96,conventional,2015,Boise +3,2015-12-06,0.71,95295.34,35590.98,12526.5,4086.26,43091.6,42734.53,0.0,357.07,conventional,2015,Boise +4,2015-11-29,1.06,49069.13,24189.98,2789.67,6031.49,16057.99,15860.63,0.0,197.36,conventional,2015,Boise +5,2015-11-22,1.09,52875.58,25408.86,3255.97,6662.8,17547.95,17530.67,4.32,12.96,conventional,2015,Boise +6,2015-11-15,1.01,68648.22,24424.72,12085.72,6502.37,25635.41,25200.25,8.65,426.51,conventional,2015,Boise +7,2015-11-08,1.11,55847.79,31910.27,4651.88,6285.73,12999.91,12777.83,119.79,102.29,conventional,2015,Boise +8,2015-11-01,1.14,53585.51,30434.99,4359.52,6428.27,12362.73,12331.82,0.0,30.91,conventional,2015,Boise +9,2015-10-25,1.11,59874.45,29521.58,10089.82,6551.57,13711.48,13660.98,0.0,50.5,conventional,2015,Boise +10,2015-10-18,1.16,54191.14,29614.23,9069.38,6586.27,8921.26,8918.0,0.0,3.26,conventional,2015,Boise +11,2015-10-11,0.94,80904.19,26114.19,33415.88,7604.48,13769.64,13543.47,185.46,40.71,conventional,2015,Boise +12,2015-10-04,1.12,59496.33,35154.43,10821.85,7551.63,5968.42,5462.15,504.65,1.62,conventional,2015,Boise +13,2015-09-27,0.99,64187.8,47007.35,5754.04,3663.3,7763.11,7596.64,160.0,6.47,conventional,2015,Boise +14,2015-09-20,1.03,73952.9,34826.9,21592.13,6640.07,10893.8,10601.02,273.41,19.37,conventional,2015,Boise +15,2015-09-13,1.08,64208.84,45738.83,4393.9,6593.46,7482.65,7482.65,0.0,0.0,conventional,2015,Boise +16,2015-09-06,1.16,64464.61,44134.65,5402.17,7991.75,6936.04,6934.43,0.0,1.61,conventional,2015,Boise +17,2015-08-30,1.19,60099.83,40926.77,5809.92,7922.58,5440.56,5440.56,0.0,0.0,conventional,2015,Boise +18,2015-08-23,1.05,70773.76,44059.22,14861.33,4433.12,7420.09,7420.09,0.0,0.0,conventional,2015,Boise +19,2015-08-16,1.12,64001.61,46189.28,5258.21,6457.21,6096.91,6090.51,0.0,6.4,conventional,2015,Boise +20,2015-08-09,1.1,61286.98,44739.54,5034.0,3931.19,7582.25,7568.92,13.33,0.0,conventional,2015,Boise +21,2015-08-02,1.07,67763.91,51151.27,5140.89,5435.36,6036.39,5987.5,48.89,0.0,conventional,2015,Boise +22,2015-07-26,1.07,67826.07,50978.38,4856.27,5479.57,6511.85,6358.04,153.81,0.0,conventional,2015,Boise +23,2015-07-19,1.09,63958.04,45921.6,5300.3,5565.17,7170.97,6354.45,816.52,0.0,conventional,2015,Boise +24,2015-07-12,1.05,74677.72,51828.75,5802.65,7474.4,9571.92,8335.04,1236.88,0.0,conventional,2015,Boise +25,2015-07-05,1.15,85044.45,61949.73,8022.13,8434.98,6637.61,6557.06,80.55,0.0,conventional,2015,Boise +26,2015-06-28,1.04,75280.41,59111.33,6573.26,3974.75,5621.07,5619.44,0.0,1.63,conventional,2015,Boise +27,2015-06-21,1.06,81397.07,52790.21,15444.74,5875.85,7286.27,7021.56,0.0,264.71,conventional,2015,Boise +28,2015-06-14,0.99,87607.71,58791.25,17880.43,3135.99,7800.04,7800.04,0.0,0.0,conventional,2015,Boise +29,2015-06-07,1.12,80751.29,61245.49,7237.55,6655.69,5612.56,5603.8,8.76,0.0,conventional,2015,Boise +30,2015-05-31,0.97,76689.38,57373.57,7421.36,4028.3,7866.15,7860.31,5.84,0.0,conventional,2015,Boise +31,2015-05-24,1.03,83209.77,54825.95,14839.33,6037.23,7507.26,7469.51,0.0,37.75,conventional,2015,Boise +32,2015-05-17,0.96,77987.53,61319.66,7393.99,2919.87,6354.01,6345.82,0.0,8.19,conventional,2015,Boise +33,2015-05-10,1.06,95788.53,62505.3,15896.54,7891.16,9495.53,9453.06,0.0,42.47,conventional,2015,Boise +34,2015-05-03,1.0,85466.99,66880.12,7942.34,4289.72,6354.81,6349.93,0.0,4.88,conventional,2015,Boise +35,2015-04-26,0.96,88111.17,69544.59,7985.48,3401.65,7179.45,7174.6,0.0,4.85,conventional,2015,Boise +36,2015-04-19,0.99,89694.96,56843.62,21630.9,3260.22,7960.22,7953.8,0.0,6.42,conventional,2015,Boise +37,2015-04-12,1.19,66246.3,44469.15,8506.36,7523.01,5747.78,5747.78,0.0,0.0,conventional,2015,Boise +38,2015-04-05,1.09,76704.46,57339.81,9060.49,3790.38,6513.78,6510.61,0.0,3.17,conventional,2015,Boise +39,2015-03-29,0.98,74543.98,59532.94,7119.52,3101.98,4789.54,4789.54,0.0,0.0,conventional,2015,Boise +40,2015-03-22,1.17,61419.11,44227.33,6589.77,7290.24,3311.77,3311.77,0.0,0.0,conventional,2015,Boise +41,2015-03-15,1.0,65918.28,51472.29,7018.29,2981.8,4445.9,4445.9,0.0,0.0,conventional,2015,Boise +42,2015-03-08,1.14,65350.24,45879.84,7206.22,7403.75,4860.43,4860.43,0.0,0.0,conventional,2015,Boise +43,2015-03-01,1.06,75046.37,40578.0,23738.56,3491.83,7237.98,6478.75,759.23,0.0,conventional,2015,Boise +44,2015-02-22,0.99,76836.1,50872.0,16374.74,2122.09,7467.27,7235.2,232.07,0.0,conventional,2015,Boise +45,2015-02-15,1.14,61221.98,41547.87,7840.31,6492.94,5340.86,3647.52,1693.34,0.0,conventional,2015,Boise +46,2015-02-08,1.07,69970.75,54229.34,9647.24,3047.0,3047.17,1373.42,1673.75,0.0,conventional,2015,Boise +47,2015-02-01,0.91,113578.24,67496.3,36532.33,2904.77,6644.84,4867.26,1777.58,0.0,conventional,2015,Boise +48,2015-01-25,1.03,66069.21,51922.06,7555.95,2061.16,4530.04,2009.53,2520.51,0.0,conventional,2015,Boise +49,2015-01-18,1.08,62870.49,50354.95,6342.37,2257.23,3915.94,1119.18,2796.76,0.0,conventional,2015,Boise +50,2015-01-11,1.18,57355.52,38112.34,10997.54,3321.89,4923.75,3295.11,1628.64,0.0,conventional,2015,Boise +51,2015-01-04,1.01,80034.32,44562.12,24964.23,2752.35,7755.62,6064.3,1691.32,0.0,conventional,2015,Boise +0,2015-12-27,1.13,450816.39,3886.27,346964.7,13952.56,86012.86,85913.6,99.26,0.0,conventional,2015,Boston +1,2015-12-20,1.07,489802.88,4912.37,390100.99,5887.72,88901.8,88768.47,133.33,0.0,conventional,2015,Boston +2,2015-12-13,1.01,549945.76,4641.02,455362.38,219.4,89722.96,89523.38,199.58,0.0,conventional,2015,Boston +3,2015-12-06,1.02,488679.31,5126.32,407520.22,142.99,75889.78,75666.22,223.56,0.0,conventional,2015,Boston +4,2015-11-29,1.19,350559.81,3609.25,272719.08,105.86,74125.62,73864.52,261.1,0.0,conventional,2015,Boston +5,2015-11-22,1.07,466759.99,4457.62,383420.46,233.74,78648.17,78161.82,486.35,0.0,conventional,2015,Boston +6,2015-11-15,1.05,513738.98,5310.32,420936.8,139.71,87352.15,85604.19,1747.96,0.0,conventional,2015,Boston +7,2015-11-08,1.04,641759.57,5304.09,542880.92,231.74,93342.82,88265.25,5077.57,0.0,conventional,2015,Boston +8,2015-11-01,1.06,553096.84,4886.14,449532.49,170.29,98507.92,93443.08,5064.84,0.0,conventional,2015,Boston +9,2015-10-25,1.02,534249.47,4005.39,430725.78,191.31,99326.99,94581.94,4745.05,0.0,conventional,2015,Boston +10,2015-10-18,0.94,725296.29,6409.86,627503.98,332.87,91049.58,86046.25,5003.33,0.0,conventional,2015,Boston +11,2015-10-11,1.14,485706.68,5145.86,378295.9,355.03,101909.89,97513.23,4396.66,0.0,conventional,2015,Boston +12,2015-10-04,1.07,536479.42,5804.31,427358.64,277.56,103038.91,97207.43,5831.48,0.0,conventional,2015,Boston +13,2015-09-27,1.07,553307.04,5210.84,463079.81,289.49,84726.9,82123.56,2603.34,0.0,conventional,2015,Boston +14,2015-09-20,1.15,498640.23,4376.74,398673.48,418.46,95171.55,91612.66,3558.89,0.0,conventional,2015,Boston +15,2015-09-13,1.03,655682.95,5422.29,560792.23,353.77,89114.66,84843.55,4271.11,0.0,conventional,2015,Boston +16,2015-09-06,1.11,577774.74,4237.44,477867.83,496.62,95172.85,94558.41,614.44,0.0,conventional,2015,Boston +17,2015-08-30,1.13,526664.87,4177.03,438502.9,554.04,83430.9,83242.01,188.89,0.0,conventional,2015,Boston +18,2015-08-23,1.07,589471.32,4744.11,488292.1,608.61,95826.5,95585.38,241.12,0.0,conventional,2015,Boston +19,2015-08-16,1.15,565795.06,4460.85,464476.33,748.65,96109.23,95887.01,222.22,0.0,conventional,2015,Boston +20,2015-08-09,1.07,690517.19,4173.23,590998.11,827.06,94518.79,94287.69,231.1,0.0,conventional,2015,Boston +21,2015-08-02,1.17,571994.5,4442.2,468591.76,1451.95,97508.59,97214.15,294.44,0.0,conventional,2015,Boston +22,2015-07-26,1.28,500233.69,4299.27,393281.62,1957.86,100694.94,100466.86,228.08,0.0,conventional,2015,Boston +23,2015-07-19,1.18,597168.12,4720.08,477629.8,5071.77,109746.47,109519.0,227.47,0.0,conventional,2015,Boston +24,2015-07-12,1.14,634515.74,5332.07,471639.53,9361.55,148182.59,146946.54,1236.05,0.0,conventional,2015,Boston +25,2015-07-05,1.27,582909.73,4743.46,418251.03,11053.82,148861.42,145982.99,2878.43,0.0,conventional,2015,Boston +26,2015-06-28,1.25,560494.92,4688.28,403230.6,9120.3,143455.74,142574.63,881.11,0.0,conventional,2015,Boston +27,2015-06-21,1.24,543504.66,3582.45,404908.53,8899.2,126114.48,125821.15,293.33,0.0,conventional,2015,Boston +28,2015-06-14,1.08,684346.48,5104.19,521254.77,6545.42,151442.1,151258.77,183.33,0.0,conventional,2015,Boston +29,2015-06-07,1.25,562542.86,4034.11,421007.42,93.05,137408.28,137224.94,183.34,0.0,conventional,2015,Boston +30,2015-05-31,1.26,565160.95,4128.35,418105.36,108.6,142818.64,142515.32,303.32,0.0,conventional,2015,Boston +31,2015-05-24,1.14,633521.98,4601.66,490485.76,276.82,138157.74,137769.31,388.43,0.0,conventional,2015,Boston +32,2015-05-17,1.26,534488.54,4285.68,380514.08,162.66,149526.12,147667.72,1858.4,0.0,conventional,2015,Boston +33,2015-05-10,1.14,625558.14,4601.5,476827.52,131.47,143997.65,141309.43,2688.22,0.0,conventional,2015,Boston +34,2015-05-03,1.17,552368.94,3828.64,429586.28,239.76,118714.26,115148.87,3565.39,0.0,conventional,2015,Boston +35,2015-04-26,1.28,465911.37,3915.3,352464.49,131.46,109400.12,106866.42,2533.7,0.0,conventional,2015,Boston +36,2015-04-19,1.15,504619.83,4013.71,384880.49,162.91,115562.72,114562.17,1000.55,0.0,conventional,2015,Boston +37,2015-04-12,1.26,408485.16,3575.89,294164.23,106.09,110638.95,108644.33,1994.62,0.0,conventional,2015,Boston +38,2015-04-05,1.27,449818.01,3657.54,330424.74,99.92,115635.81,113541.34,1948.64,145.83,conventional,2015,Boston +39,2015-03-29,1.19,453631.25,3619.31,339299.3,151.36,110561.28,108838.11,1723.17,0.0,conventional,2015,Boston +40,2015-03-22,1.18,453173.22,5956.18,344396.92,155.94,102664.18,102204.17,460.01,0.0,conventional,2015,Boston +41,2015-03-15,1.25,417750.36,6085.75,308996.7,111.59,102556.32,101931.87,624.45,0.0,conventional,2015,Boston +42,2015-03-08,1.17,408403.96,3425.53,290512.65,78.96,114386.82,113811.26,575.56,0.0,conventional,2015,Boston +43,2015-03-01,1.11,485736.1,4106.42,383573.77,192.98,97862.93,97423.17,439.76,0.0,conventional,2015,Boston +44,2015-02-22,1.23,355432.28,3232.68,251341.3,142.33,100715.97,100498.19,217.78,0.0,conventional,2015,Boston +45,2015-02-15,1.2,399883.99,3794.97,281106.45,143.41,114839.16,114283.61,555.55,0.0,conventional,2015,Boston +46,2015-02-08,1.04,609985.34,7653.19,495731.7,383.73,106216.72,105403.38,813.34,0.0,conventional,2015,Boston +47,2015-02-01,1.22,490022.14,6082.88,373452.06,272.81,110214.39,109900.93,313.46,0.0,conventional,2015,Boston +48,2015-01-25,1.17,409343.56,4730.77,288094.65,45.98,116472.16,115538.05,934.11,0.0,conventional,2015,Boston +49,2015-01-18,1.23,401331.33,4383.76,287778.52,132.53,109036.52,108668.74,367.78,0.0,conventional,2015,Boston +50,2015-01-11,1.1,437771.89,5548.11,320577.36,121.81,111524.61,111192.88,331.73,0.0,conventional,2015,Boston +51,2015-01-04,1.02,491738.0,7193.87,396752.18,128.82,87663.13,87406.84,256.29,0.0,conventional,2015,Boston +0,2015-12-27,1.35,96233.08,1367.81,39542.83,85.76,55236.68,55236.68,0.0,0.0,conventional,2015,BuffaloRochester +1,2015-12-20,1.37,90867.51,1164.92,38430.71,106.67,51165.21,51165.21,0.0,0.0,conventional,2015,BuffaloRochester +2,2015-12-13,1.35,98473.23,1421.12,40783.22,66.45,56202.44,56202.44,0.0,0.0,conventional,2015,BuffaloRochester +3,2015-12-06,1.23,108457.82,1737.71,58197.34,167.12,48355.65,48355.65,0.0,0.0,conventional,2015,BuffaloRochester +4,2015-11-29,1.39,79973.14,1514.69,35682.71,113.49,42662.25,42662.25,0.0,0.0,conventional,2015,BuffaloRochester +5,2015-11-22,1.4,90242.31,1711.77,38780.66,107.53,49642.35,49642.35,0.0,0.0,conventional,2015,BuffaloRochester +6,2015-11-15,1.36,99703.72,1803.78,41457.12,107.48,56335.34,55593.12,742.22,0.0,conventional,2015,BuffaloRochester +7,2015-11-08,1.3,111038.95,1288.83,49507.25,55.0,60187.87,58885.65,1302.22,0.0,conventional,2015,BuffaloRochester +8,2015-11-01,1.23,118541.11,2181.17,61874.92,186.4,54298.62,52956.4,1342.22,0.0,conventional,2015,BuffaloRochester +9,2015-10-25,1.36,99554.55,1545.57,36645.91,79.64,61283.43,59381.21,1902.22,0.0,conventional,2015,BuffaloRochester +10,2015-10-18,1.29,106083.75,1536.35,40701.65,58.28,63787.47,62627.47,1160.0,0.0,conventional,2015,BuffaloRochester +11,2015-10-11,1.3,109153.84,2170.49,50862.0,96.18,56025.17,54829.61,1195.56,0.0,conventional,2015,BuffaloRochester +12,2015-10-04,1.33,98900.48,3020.03,38353.35,101.43,57425.67,56141.23,1284.44,0.0,conventional,2015,BuffaloRochester +13,2015-09-27,1.31,90745.72,1908.16,60292.79,106.47,28438.3,27767.19,671.11,0.0,conventional,2015,BuffaloRochester +14,2015-09-20,1.54,60624.47,1445.25,39831.66,88.61,19258.95,18437.84,821.11,0.0,conventional,2015,BuffaloRochester +15,2015-09-13,1.59,73043.2,1572.71,48468.73,134.33,22867.43,22421.87,445.56,0.0,conventional,2015,BuffaloRochester +16,2015-09-06,1.56,76139.58,1471.69,49388.48,173.32,25106.09,25092.76,13.33,0.0,conventional,2015,BuffaloRochester +17,2015-08-30,1.38,83731.42,1406.11,61600.62,241.67,20483.02,20483.02,0.0,0.0,conventional,2015,BuffaloRochester +18,2015-08-23,1.49,68953.29,1287.09,43655.31,170.47,23840.42,23840.42,0.0,0.0,conventional,2015,BuffaloRochester +19,2015-08-16,1.5,69798.09,1230.78,45937.58,258.0,22371.73,22371.73,0.0,0.0,conventional,2015,BuffaloRochester +20,2015-08-09,1.47,81830.13,1139.74,56289.28,349.19,24051.92,24051.92,0.0,0.0,conventional,2015,BuffaloRochester +21,2015-08-02,1.47,78162.92,1447.81,44620.7,471.55,31622.86,31622.86,0.0,0.0,conventional,2015,BuffaloRochester +22,2015-07-26,1.39,91825.07,1679.28,45615.48,741.77,43788.54,43788.54,0.0,0.0,conventional,2015,BuffaloRochester +23,2015-07-19,1.36,128846.15,1165.75,54492.85,2205.14,70982.41,70982.41,0.0,0.0,conventional,2015,BuffaloRochester +24,2015-07-12,1.45,127351.46,1119.38,47294.67,4714.73,74222.68,73796.01,426.67,0.0,conventional,2015,BuffaloRochester +25,2015-07-05,1.47,140413.9,1503.1,56925.46,6707.85,75277.49,74370.82,906.67,0.0,conventional,2015,BuffaloRochester +26,2015-06-28,1.36,137246.7,1235.69,51801.73,5397.32,78811.96,78749.74,62.22,0.0,conventional,2015,BuffaloRochester +27,2015-06-21,1.5,108655.36,1254.83,47845.57,5424.52,54130.44,54130.44,0.0,0.0,conventional,2015,BuffaloRochester +28,2015-06-14,1.34,149376.79,1183.9,48286.51,4432.54,95473.84,95473.84,0.0,0.0,conventional,2015,BuffaloRochester +29,2015-06-07,1.38,130908.11,779.02,57999.61,138.81,71990.67,71990.67,0.0,0.0,conventional,2015,BuffaloRochester +30,2015-05-31,1.4,130841.08,1039.49,54249.06,79.38,75473.15,75473.15,0.0,0.0,conventional,2015,BuffaloRochester +31,2015-05-24,1.43,121942.61,1033.76,55018.95,103.94,65785.96,65741.52,44.44,0.0,conventional,2015,BuffaloRochester +32,2015-05-17,1.35,137050.23,932.52,61668.49,56.53,74392.69,73414.91,977.78,0.0,conventional,2015,BuffaloRochester +33,2015-05-10,1.33,170547.18,1321.83,73754.3,185.16,95285.89,94832.56,453.33,0.0,conventional,2015,BuffaloRochester +34,2015-05-03,1.42,136771.79,946.38,50266.22,81.86,85477.33,84332.05,1102.22,43.06,conventional,2015,BuffaloRochester +35,2015-04-26,1.41,136964.3,1117.56,49556.91,106.4,86183.43,85503.15,640.0,40.28,conventional,2015,BuffaloRochester +36,2015-04-19,1.42,139612.52,1021.72,52954.82,59.18,85576.8,85056.94,519.86,0.0,conventional,2015,BuffaloRochester +37,2015-04-12,1.42,118172.53,884.02,45443.61,92.75,71752.15,70938.4,813.75,0.0,conventional,2015,BuffaloRochester +38,2015-04-05,1.44,124145.62,969.27,51023.86,95.69,72056.8,71408.88,597.92,50.0,conventional,2015,BuffaloRochester +39,2015-03-29,1.39,119890.65,1352.63,48430.03,80.52,70027.47,69919.0,108.47,0.0,conventional,2015,BuffaloRochester +40,2015-03-22,1.4,119902.96,3090.55,45420.06,48.2,71344.15,71288.59,55.56,0.0,conventional,2015,BuffaloRochester +41,2015-03-15,1.47,103413.11,3500.48,45688.61,66.42,54157.6,54046.49,111.11,0.0,conventional,2015,BuffaloRochester +42,2015-03-08,1.35,125724.96,1072.46,61973.56,102.31,62576.63,62216.63,360.0,0.0,conventional,2015,BuffaloRochester +43,2015-03-01,1.43,112363.86,1032.92,41685.04,104.16,69541.74,69479.52,62.22,0.0,conventional,2015,BuffaloRochester +44,2015-02-22,1.41,109546.92,1709.23,45393.96,131.72,62312.01,61765.34,546.67,0.0,conventional,2015,BuffaloRochester +45,2015-02-15,1.44,100207.14,1520.76,43271.55,57.76,55357.07,55232.63,124.44,0.0,conventional,2015,BuffaloRochester +46,2015-02-08,1.36,132760.1,1822.41,66261.92,161.96,64513.81,63918.25,595.56,0.0,conventional,2015,BuffaloRochester +47,2015-02-01,1.33,153920.35,2117.73,64770.55,112.49,86919.58,86848.47,71.11,0.0,conventional,2015,BuffaloRochester +48,2015-01-25,1.5,114052.94,1321.19,54007.48,74.53,58649.74,57909.74,740.0,0.0,conventional,2015,BuffaloRochester +49,2015-01-18,1.52,107040.29,1625.26,61859.85,133.29,43421.89,43419.67,2.22,0.0,conventional,2015,BuffaloRochester +50,2015-01-11,1.54,106221.32,1642.25,50985.2,79.61,53514.26,53514.26,0.0,0.0,conventional,2015,BuffaloRochester +51,2015-01-04,1.4,116253.44,3267.97,55693.04,109.55,57182.88,57182.88,0.0,0.0,conventional,2015,BuffaloRochester +0,2015-12-27,0.9,5040365.47,1833946.59,1760956.02,232755.85,1212707.01,1090140.07,110737.35,11829.59,conventional,2015,California +1,2015-12-20,0.94,4695737.21,1676601.43,1543280.76,266689.82,1209165.2,1061703.58,136747.1,10714.52,conventional,2015,California +2,2015-12-13,0.87,5259354.3,1806690.08,1627240.76,232985.13,1592438.33,1404012.0,180150.37,8275.96,conventional,2015,California +3,2015-12-06,0.78,5775536.27,1943065.5,2100246.17,221957.26,1510267.34,1376640.91,126664.37,6962.06,conventional,2015,California +4,2015-11-29,0.91,4575710.62,1461699.38,1810202.7,222311.07,1081497.47,991568.84,82338.39,7590.24,conventional,2015,California +5,2015-11-22,0.92,4804278.16,1602215.57,1917124.52,215632.16,1069305.91,979612.52,82444.32,7249.07,conventional,2015,California +6,2015-11-15,0.83,5755190.69,2243013.44,2164098.99,195159.32,1152918.94,1091768.68,53797.92,7352.34,conventional,2015,California +7,2015-11-08,0.98,5148983.51,2317858.81,1758964.54,216523.58,855636.58,813006.4,36305.96,6324.22,conventional,2015,California +8,2015-11-01,0.95,5830427.96,2369824.75,2596785.28,211901.97,651915.96,626993.54,19804.69,5117.73,conventional,2015,California +9,2015-10-25,1.12,4592461.81,1733791.31,2025016.15,215622.63,618031.72,606392.86,7596.27,4042.59,conventional,2015,California +10,2015-10-18,1.07,4999031.79,1847991.31,2286235.79,217814.17,646990.52,633893.61,10780.32,2316.59,conventional,2015,California +11,2015-10-11,1.08,5063309.38,1757211.58,2530023.18,221032.74,555041.88,533478.03,18373.18,3190.67,conventional,2015,California +12,2015-10-04,1.02,4943781.29,1461112.39,2788317.94,222260.58,472090.38,442923.78,25572.26,3594.34,conventional,2015,California +13,2015-09-27,1.04,5216784.63,1860050.39,2635028.38,206460.07,515245.79,496867.66,13336.34,5041.79,conventional,2015,California +14,2015-09-20,1.14,4759791.13,1702965.49,2230693.51,273922.36,552209.77,529779.37,17303.91,5126.49,conventional,2015,California +15,2015-09-13,1.13,5106508.12,1863270.81,2388023.33,270794.34,584419.64,502056.88,76297.56,6065.2,conventional,2015,California +16,2015-09-06,1.09,5806392.78,2859325.91,2077193.6,240185.0,629688.27,591629.83,33545.37,4513.07,conventional,2015,California +17,2015-08-30,1.08,5647385.15,3104607.82,1660274.32,233027.36,649475.65,640600.64,5989.25,2885.76,conventional,2015,California +18,2015-08-23,1.18,5193221.0,2626977.95,1798911.33,222082.91,545248.81,535183.95,6573.5,3491.36,conventional,2015,California +19,2015-08-16,1.11,5616434.08,3098708.55,1731349.0,208724.73,577651.8,572197.46,2081.96,3372.38,conventional,2015,California +20,2015-08-09,1.1,6232081.27,3260775.73,2196704.97,193831.6,580768.97,570728.54,7356.84,2683.59,conventional,2015,California +21,2015-08-02,1.16,5428238.87,2940145.82,1737845.94,183471.03,566776.08,559587.76,4953.57,2234.75,conventional,2015,California +22,2015-07-26,1.13,5557616.27,3112921.78,1636659.9,209427.05,598607.54,590750.1,5181.16,2676.28,conventional,2015,California +23,2015-07-19,1.18,5225200.52,2805887.74,1629871.75,188207.47,601233.56,577736.96,20673.8,2822.8,conventional,2015,California +24,2015-07-12,1.13,5451636.92,2747299.98,1923893.11,157478.05,622965.78,601358.64,18032.41,3574.73,conventional,2015,California +25,2015-07-05,1.12,6718011.83,3581149.88,2120303.06,254187.47,762371.42,731692.08,27317.19,3362.15,conventional,2015,California +26,2015-06-28,1.1,5641742.02,3163839.74,1610910.07,212173.21,654819.0,630301.44,21861.54,2656.02,conventional,2015,California +27,2015-06-21,1.07,5952597.29,3328631.93,1743509.25,218423.77,662032.34,634244.68,24277.53,3510.13,conventional,2015,California +28,2015-06-14,0.97,6741662.31,4075881.34,1771908.98,210670.82,683201.17,657421.42,22961.19,2818.56,conventional,2015,California +29,2015-06-07,0.98,6374842.9,3614314.44,1860329.3,221330.48,678868.68,651944.51,23422.39,3501.78,conventional,2015,California +30,2015-05-31,0.98,6236903.31,3620440.35,1826496.62,209443.33,580523.01,554224.64,23083.08,3215.29,conventional,2015,California +31,2015-05-24,1.1,5621713.64,2978396.74,1873205.91,195991.06,574119.93,546420.69,24485.84,3213.4,conventional,2015,California +32,2015-05-17,1.08,5289138.5,2923673.93,1649623.66,168597.35,547243.56,525804.7,18497.03,2941.83,conventional,2015,California +33,2015-05-10,0.93,6650357.96,4085858.78,1735132.32,194575.97,634790.89,613601.09,18366.27,2823.53,conventional,2015,California +34,2015-05-03,0.88,8567534.49,4340117.03,3403145.1,192473.92,631798.44,609388.58,19735.89,2673.97,conventional,2015,California +35,2015-04-26,1.15,4923565.04,2421009.67,1729486.77,196469.02,576599.58,548252.41,26483.99,1863.18,conventional,2015,California +36,2015-04-19,1.05,5871080.81,3024466.22,2070974.14,177354.82,598285.63,524767.96,71988.59,1529.08,conventional,2015,California +37,2015-04-12,1.06,5636644.51,2848184.0,1988818.23,185198.77,614443.51,532714.02,79865.3,1864.19,conventional,2015,California +38,2015-04-05,1.12,5467155.55,2754464.87,1886168.89,225396.85,601124.94,539258.29,59212.09,2654.56,conventional,2015,California +39,2015-03-29,1.1,5341821.67,2609532.63,1869271.31,193577.55,669440.18,605995.11,61958.73,1486.34,conventional,2015,California +40,2015-03-22,1.06,5571812.77,2348618.25,2314393.94,195791.46,713009.12,681403.86,30058.97,1546.29,conventional,2015,California +41,2015-03-15,1.06,5557163.11,2962520.41,1737353.95,194761.49,662527.26,632903.55,27625.15,1998.56,conventional,2015,California +42,2015-03-08,0.96,5990243.89,3484274.6,1649936.05,184720.58,671312.66,642307.0,27241.05,1764.61,conventional,2015,California +43,2015-03-01,0.84,6700134.25,3516551.29,2460932.41,170580.54,552070.01,515386.4,34845.51,1838.1,conventional,2015,California +44,2015-02-22,0.96,5951871.32,3210177.22,1933699.49,172675.88,635318.73,596184.9,36940.51,2193.32,conventional,2015,California +45,2015-02-15,0.96,5699944.93,3315163.6,1620462.13,169907.54,594411.66,544990.68,47017.93,2403.05,conventional,2015,California +46,2015-02-08,0.91,5871224.58,2908845.38,2200393.89,149458.93,612526.38,553682.71,56311.08,2532.59,conventional,2015,California +47,2015-02-01,0.85,9032180.67,4794142.14,3460743.8,177145.49,600149.24,556205.2,41203.2,2740.84,conventional,2015,California +48,2015-01-25,1.06,4929884.26,2380955.61,1827783.28,150535.5,570609.87,521004.15,46809.48,2796.24,conventional,2015,California +49,2015-01-18,1.02,5570915.26,2780859.66,2108450.36,121614.31,559990.93,520299.26,36501.18,3190.49,conventional,2015,California +50,2015-01-11,0.92,6024932.34,2889591.29,2485720.1,103573.42,546047.53,510560.41,31874.03,3613.09,conventional,2015,California +51,2015-01-04,0.93,5777334.9,2843648.26,2267755.26,137479.64,528451.74,477193.38,47882.56,3375.8,conventional,2015,California +0,2015-12-27,0.96,156698.24,33070.27,62956.24,23041.69,37630.04,35130.42,2499.62,0.0,conventional,2015,Charlotte +1,2015-12-20,0.98,139917.89,29500.04,55520.58,19842.51,35054.76,33273.25,1781.51,0.0,conventional,2015,Charlotte +2,2015-12-13,0.95,157146.19,31727.46,62544.19,23842.95,39031.59,35793.08,3238.51,0.0,conventional,2015,Charlotte +3,2015-12-06,0.99,156114.08,34117.36,63074.74,28482.72,30439.26,28181.92,2257.34,0.0,conventional,2015,Charlotte +4,2015-11-29,0.95,138858.86,31911.11,53470.54,22685.8,30791.41,27376.3,3415.11,0.0,conventional,2015,Charlotte +5,2015-11-22,1.0,133618.33,30028.69,53644.97,24221.58,25723.09,22228.47,3494.62,0.0,conventional,2015,Charlotte +6,2015-11-15,1.01,169281.16,28543.88,80244.55,36860.51,23632.22,21132.1,2500.12,0.0,conventional,2015,Charlotte +7,2015-11-08,1.03,164322.04,30860.74,54456.01,49282.25,29723.04,28076.04,1647.0,0.0,conventional,2015,Charlotte +8,2015-11-01,1.11,171793.87,33371.6,47079.68,53968.86,37373.73,32848.04,4525.69,0.0,conventional,2015,Charlotte +9,2015-10-25,1.27,140920.61,23093.86,38356.83,44882.51,34587.41,30219.23,4368.18,0.0,conventional,2015,Charlotte +10,2015-10-18,1.26,156565.98,22805.02,54518.85,44707.32,34534.79,31176.68,3358.11,0.0,conventional,2015,Charlotte +11,2015-10-11,1.14,167396.56,22941.59,45669.33,58989.81,39795.83,33103.01,6692.82,0.0,conventional,2015,Charlotte +12,2015-10-04,1.22,146737.74,23648.94,44671.1,40366.93,38050.77,30388.81,7661.96,0.0,conventional,2015,Charlotte +13,2015-09-27,1.09,168780.22,24397.92,54210.03,58551.64,31620.63,27053.27,4567.36,0.0,conventional,2015,Charlotte +14,2015-09-20,1.2,161443.98,25922.66,46906.06,41261.83,47353.43,38940.45,8412.98,0.0,conventional,2015,Charlotte +15,2015-09-13,1.19,171077.53,30122.92,41616.87,36469.43,62868.31,56910.24,5958.07,0.0,conventional,2015,Charlotte +16,2015-09-06,1.01,227728.43,35126.74,62187.49,64372.34,66041.86,59197.7,6844.16,0.0,conventional,2015,Charlotte +17,2015-08-30,1.2,179026.88,33511.97,41700.97,38130.29,65683.65,63371.06,2312.59,0.0,conventional,2015,Charlotte +18,2015-08-23,1.15,203298.37,32280.63,50475.57,41677.6,78864.57,76846.13,2018.44,0.0,conventional,2015,Charlotte +19,2015-08-16,1.24,178525.52,32128.6,42068.1,41343.26,62985.56,60769.22,2216.34,0.0,conventional,2015,Charlotte +20,2015-08-09,1.21,173059.32,29915.8,43782.95,37614.3,61746.27,57783.2,3963.07,0.0,conventional,2015,Charlotte +21,2015-08-02,1.24,179321.9,30200.32,48686.77,39734.9,60699.91,58627.67,2072.24,0.0,conventional,2015,Charlotte +22,2015-07-26,1.23,173896.82,30901.1,39607.94,39260.71,64127.07,62053.65,2073.42,0.0,conventional,2015,Charlotte +23,2015-07-19,1.19,187575.03,33382.11,49072.16,39515.29,65605.47,62470.83,3134.64,0.0,conventional,2015,Charlotte +24,2015-07-12,1.18,182856.82,23580.7,56317.45,35107.11,67851.56,65681.23,2170.33,0.0,conventional,2015,Charlotte +25,2015-07-05,1.18,216118.9,30803.29,73470.29,40602.17,71243.15,67865.26,3377.89,0.0,conventional,2015,Charlotte +26,2015-06-28,1.17,193654.01,23693.74,58162.31,42044.35,69753.61,67989.08,1764.53,0.0,conventional,2015,Charlotte +27,2015-06-21,1.17,201173.1,30951.17,58913.49,38260.1,73048.34,69426.0,3622.34,0.0,conventional,2015,Charlotte +28,2015-06-14,1.15,207093.88,31247.67,64828.77,41193.22,69824.22,67842.39,1981.83,0.0,conventional,2015,Charlotte +29,2015-06-07,1.15,199980.3,43524.21,45226.73,38578.8,72650.56,69123.57,3526.99,0.0,conventional,2015,Charlotte +30,2015-05-31,1.19,194630.86,45688.14,43259.91,44529.73,61153.08,58990.8,2162.28,0.0,conventional,2015,Charlotte +31,2015-05-24,1.2,212527.72,43628.72,59207.62,46014.43,63676.95,59663.25,4013.7,0.0,conventional,2015,Charlotte +32,2015-05-17,1.21,190799.99,44340.34,46424.29,40248.52,59786.84,57583.99,2202.85,0.0,conventional,2015,Charlotte +33,2015-05-10,1.19,192767.09,47626.37,42863.8,38370.27,63906.65,61759.57,2147.08,0.0,conventional,2015,Charlotte +34,2015-05-03,1.0,261492.2,50203.31,69446.61,77627.49,64214.79,58626.28,5588.51,0.0,conventional,2015,Charlotte +35,2015-04-26,1.2,182141.55,39481.13,44796.9,37961.14,59902.38,58701.2,1201.18,0.0,conventional,2015,Charlotte +36,2015-04-19,1.18,180944.22,38330.46,41954.32,36041.12,64618.32,63182.05,1436.27,0.0,conventional,2015,Charlotte +37,2015-04-12,1.17,204005.24,48793.38,50390.01,39638.34,65183.51,61787.29,3396.22,0.0,conventional,2015,Charlotte +38,2015-04-05,1.19,177919.28,43112.4,40448.49,36210.12,58148.27,56450.56,1599.1,98.61,conventional,2015,Charlotte +39,2015-03-29,1.23,178788.49,34498.06,50741.07,40688.42,52860.94,51856.01,1004.93,0.0,conventional,2015,Charlotte +40,2015-03-22,1.19,182876.15,41638.46,44726.81,37099.23,59411.65,56443.98,2967.67,0.0,conventional,2015,Charlotte +41,2015-03-15,1.19,183944.05,39138.41,48595.62,43739.93,52470.09,51028.01,1442.08,0.0,conventional,2015,Charlotte +42,2015-03-08,1.25,159386.69,29980.15,39244.64,36249.61,53912.29,52537.96,1374.33,0.0,conventional,2015,Charlotte +43,2015-03-01,1.18,176146.34,45465.24,40006.65,34948.86,55725.59,52873.84,2851.75,0.0,conventional,2015,Charlotte +44,2015-02-22,1.08,201741.43,44679.57,48498.63,61590.31,46972.92,44919.71,2053.21,0.0,conventional,2015,Charlotte +45,2015-02-15,1.22,156798.51,28227.83,38591.73,40430.51,49548.44,40419.97,9128.47,0.0,conventional,2015,Charlotte +46,2015-02-08,1.17,150139.38,31509.41,35566.91,31778.73,51284.33,41921.3,9363.03,0.0,conventional,2015,Charlotte +47,2015-02-01,0.98,254009.7,52915.5,71209.89,80813.88,49070.43,33450.14,15620.29,0.0,conventional,2015,Charlotte +48,2015-01-25,1.18,167270.13,37383.37,44000.75,31576.2,54309.81,41623.4,12686.41,0.0,conventional,2015,Charlotte +49,2015-01-18,1.25,152671.15,26462.87,40475.81,38677.39,47055.08,33996.73,13058.35,0.0,conventional,2015,Charlotte +50,2015-01-11,1.26,159942.68,31586.35,38118.77,40801.77,49435.79,38822.26,10613.53,0.0,conventional,2015,Charlotte +51,2015-01-04,1.19,166006.29,29419.03,47220.75,38568.95,50797.56,44329.03,6468.53,0.0,conventional,2015,Charlotte +0,2015-12-27,0.93,661137.13,42799.0,445218.79,78378.25,94741.09,83066.75,1617.67,10056.67,conventional,2015,Chicago +1,2015-12-20,0.91,690669.34,35724.99,464574.15,96306.3,94063.9,76241.25,9592.65,8230.0,conventional,2015,Chicago +2,2015-12-13,1.07,668601.5,40380.09,451470.42,94162.53,82588.46,76829.42,5693.75,65.29,conventional,2015,Chicago +3,2015-12-06,1.14,664020.49,53173.18,455048.11,92888.37,62910.83,62473.12,420.95,16.76,conventional,2015,Chicago +4,2015-11-29,1.11,602481.22,42851.47,422479.32,74988.97,62161.46,61862.57,298.89,0.0,conventional,2015,Chicago +5,2015-11-22,0.94,751897.89,34868.5,553545.31,89732.33,73751.75,73457.31,294.44,0.0,conventional,2015,Chicago +6,2015-11-15,1.17,641881.96,31286.11,441753.6,93857.48,74984.77,74723.66,261.11,0.0,conventional,2015,Chicago +7,2015-11-08,1.01,711146.61,44528.42,498562.41,101889.32,66166.46,65842.08,324.38,0.0,conventional,2015,Chicago +8,2015-11-01,1.0,807041.46,69420.04,562214.56,106536.92,68869.94,68447.93,422.01,0.0,conventional,2015,Chicago +9,2015-10-25,1.12,687650.27,59161.08,454352.6,108012.41,66124.18,65795.24,323.33,5.61,conventional,2015,Chicago +10,2015-10-18,1.15,690302.58,25883.13,482992.35,118311.09,63116.01,62076.66,285.56,753.79,conventional,2015,Chicago +11,2015-10-11,1.08,708914.17,16455.46,503813.92,119996.31,68648.48,65144.93,528.99,2974.56,conventional,2015,Chicago +12,2015-10-04,1.18,675172.63,14268.84,485262.12,105711.4,69930.27,66015.29,2240.14,1674.84,conventional,2015,Chicago +13,2015-09-27,1.15,720501.55,16483.95,532028.74,101193.84,70795.02,63370.36,2923.19,4501.47,conventional,2015,Chicago +14,2015-09-20,1.19,729117.42,16477.56,534644.45,103103.75,74891.66,71195.89,3316.58,379.19,conventional,2015,Chicago +15,2015-09-13,1.19,775671.49,17172.26,546965.49,128619.66,82914.08,78368.45,3809.54,736.09,conventional,2015,Chicago +16,2015-09-06,1.11,808677.78,17595.54,581941.46,122938.43,86202.35,82905.34,3289.62,7.39,conventional,2015,Chicago +17,2015-08-30,1.12,773773.53,17363.14,570147.23,112344.22,73918.94,71627.03,2205.32,86.59,conventional,2015,Chicago +18,2015-08-23,1.2,751850.01,17595.95,550359.51,103622.38,80272.17,77073.51,2759.79,438.87,conventional,2015,Chicago +19,2015-08-16,1.16,817690.89,19193.94,609692.45,104997.44,83807.06,80018.54,3447.81,340.71,conventional,2015,Chicago +20,2015-08-09,1.25,731125.01,18237.36,526303.06,104796.41,81788.18,79510.48,1904.8,372.9,conventional,2015,Chicago +21,2015-08-02,1.27,761027.42,21607.12,559825.17,97419.33,82175.8,79197.97,2476.3,501.53,conventional,2015,Chicago +22,2015-07-26,1.12,791332.34,26653.29,577460.34,99066.58,88152.13,83728.75,3516.34,907.04,conventional,2015,Chicago +23,2015-07-19,1.24,797060.27,20534.84,560871.56,116910.43,98743.44,92362.71,3531.27,2849.46,conventional,2015,Chicago +24,2015-07-12,1.26,772151.2,22933.92,545739.34,109149.46,94328.48,90428.86,2536.23,1363.39,conventional,2015,Chicago +25,2015-07-05,1.24,937317.45,28422.72,661207.19,118634.7,129052.84,126579.11,2236.49,237.24,conventional,2015,Chicago +26,2015-06-28,1.21,786250.22,27391.54,524476.99,104595.1,129786.59,126835.7,1896.33,1054.56,conventional,2015,Chicago +27,2015-06-21,1.24,804902.52,34715.08,536926.08,122239.65,111021.71,107242.86,1658.76,2120.09,conventional,2015,Chicago +28,2015-06-14,1.21,868197.41,55227.59,586037.06,107908.15,119024.61,116318.18,2618.95,87.48,conventional,2015,Chicago +29,2015-06-07,1.24,824216.23,51410.51,544663.98,122929.34,105212.4,99942.37,4693.09,576.94,conventional,2015,Chicago +30,2015-05-31,1.26,803571.87,50563.81,518850.04,132732.66,101425.36,99122.66,2299.08,3.62,conventional,2015,Chicago +31,2015-05-24,1.23,887105.04,57568.25,611797.34,113475.77,104263.68,101615.53,2639.11,9.04,conventional,2015,Chicago +32,2015-05-17,1.23,817870.17,54087.8,569043.02,109205.15,85534.2,82689.93,2813.47,30.8,conventional,2015,Chicago +33,2015-05-10,1.23,835938.63,55587.31,545784.15,141250.98,93316.19,88847.94,4468.25,0.0,conventional,2015,Chicago +34,2015-05-03,1.04,978376.13,64798.64,690167.81,129694.01,93715.67,89297.42,4414.64,3.61,conventional,2015,Chicago +35,2015-04-26,1.24,779868.01,46749.43,543002.3,97410.38,92705.9,88341.96,3573.83,790.11,conventional,2015,Chicago +36,2015-04-19,1.24,832529.06,52850.1,594214.84,93303.25,92160.87,89276.61,2780.32,103.94,conventional,2015,Chicago +37,2015-04-12,1.24,710718.98,45103.98,488323.33,83137.77,94153.9,91664.47,2475.13,14.3,conventional,2015,Chicago +38,2015-04-05,1.27,751812.42,38641.17,530946.92,90801.53,91422.8,87170.22,3422.83,829.75,conventional,2015,Chicago +39,2015-03-29,1.22,757271.96,25629.52,545317.99,84865.54,101458.91,97284.77,4163.46,10.68,conventional,2015,Chicago +40,2015-03-22,1.21,799946.53,29308.0,596341.85,83937.78,90358.9,87394.44,2925.41,39.05,conventional,2015,Chicago +41,2015-03-15,1.09,827010.39,30100.78,600833.1,98822.1,97254.41,93312.94,3914.88,26.59,conventional,2015,Chicago +42,2015-03-08,1.18,772997.09,27489.32,523118.0,112934.4,109455.37,107215.4,2234.66,5.31,conventional,2015,Chicago +43,2015-03-01,1.09,863391.73,24137.05,637043.16,111791.06,90420.46,88092.48,2289.01,38.97,conventional,2015,Chicago +44,2015-02-22,1.18,773078.09,39072.26,533387.47,106178.47,94439.89,90447.44,3976.51,15.94,conventional,2015,Chicago +45,2015-02-15,1.17,726401.24,29711.82,488591.6,110446.6,97651.22,92518.95,5112.69,19.58,conventional,2015,Chicago +46,2015-02-08,1.13,729325.61,28216.83,499138.28,119634.41,82336.09,78980.96,3273.2,81.93,conventional,2015,Chicago +47,2015-02-01,0.91,1133491.66,50783.91,824745.44,164884.41,93077.9,89516.93,3448.62,112.35,conventional,2015,Chicago +48,2015-01-25,1.22,745439.17,26117.56,488218.44,145882.24,85220.93,75867.61,9265.81,87.51,conventional,2015,Chicago +49,2015-01-18,1.14,797741.43,24917.77,533717.99,140239.95,98865.72,95516.44,3311.71,37.57,conventional,2015,Chicago +50,2015-01-11,1.15,802874.94,31239.94,558487.79,133848.57,79298.64,74716.43,4539.25,42.96,conventional,2015,Chicago +51,2015-01-04,1.11,783068.03,30270.26,550752.19,124506.1,77539.48,72888.46,4651.02,0.0,conventional,2015,Chicago +0,2015-12-27,0.87,162993.77,2633.37,100444.22,9546.88,50369.3,14050.64,30968.06,5350.6,conventional,2015,CincinnatiDayton +1,2015-12-20,0.85,175425.57,2732.05,108930.75,7517.01,56245.76,12118.45,39679.66,4447.65,conventional,2015,CincinnatiDayton +2,2015-12-13,0.79,207386.27,3802.6,123544.78,4574.03,75464.86,15835.2,58783.54,846.12,conventional,2015,CincinnatiDayton +3,2015-12-06,0.83,207513.04,2914.81,129978.67,15475.56,59144.0,13539.21,42885.85,2718.94,conventional,2015,CincinnatiDayton +4,2015-11-29,0.88,141356.34,2399.32,94093.55,5885.57,38977.9,12785.15,24850.38,1342.37,conventional,2015,CincinnatiDayton +5,2015-11-22,0.89,174892.99,2565.81,115591.25,9595.72,47140.21,13804.56,31446.68,1888.97,conventional,2015,CincinnatiDayton +6,2015-11-15,0.88,193723.22,2680.0,129291.79,4905.63,56845.8,15733.89,40083.17,1028.74,conventional,2015,CincinnatiDayton +7,2015-11-08,0.87,239070.13,2979.02,156267.5,19577.35,60246.26,12989.82,42509.75,4746.69,conventional,2015,CincinnatiDayton +8,2015-11-01,0.93,254760.33,2998.18,166867.82,13267.88,71626.45,14831.2,53584.84,3210.41,conventional,2015,CincinnatiDayton +9,2015-10-25,1.01,203681.71,2264.65,132625.92,9187.24,59603.9,12423.07,45209.19,1971.64,conventional,2015,CincinnatiDayton +10,2015-10-18,0.98,186044.56,2297.3,131737.84,8931.62,43077.8,17414.57,24553.19,1110.04,conventional,2015,CincinnatiDayton +11,2015-10-11,0.91,213527.77,2251.48,146962.49,13777.63,50536.17,16191.77,31742.92,2601.48,conventional,2015,CincinnatiDayton +12,2015-10-04,0.93,235243.88,2132.57,157237.69,11767.9,64105.72,16488.06,45980.45,1637.21,conventional,2015,CincinnatiDayton +13,2015-09-27,1.08,202012.62,2220.62,138937.95,11725.37,49128.68,12344.28,34341.61,2442.79,conventional,2015,CincinnatiDayton +14,2015-09-20,1.05,210445.12,3127.8,139042.8,21179.76,47094.76,12353.22,29601.09,5140.45,conventional,2015,CincinnatiDayton +15,2015-09-13,1.05,216548.9,2195.13,139863.58,18310.19,56180.0,17271.72,34690.26,4218.02,conventional,2015,CincinnatiDayton +16,2015-09-06,1.02,232157.91,2462.55,154106.32,8956.92,66632.12,19499.39,45312.94,1819.79,conventional,2015,CincinnatiDayton +17,2015-08-30,1.01,234132.09,2623.58,153832.57,14357.02,63318.92,17804.54,42734.02,2780.36,conventional,2015,CincinnatiDayton +18,2015-08-23,1.05,208608.84,2750.77,141969.26,5299.54,58589.27,15961.91,41548.22,1079.14,conventional,2015,CincinnatiDayton +19,2015-08-16,1.01,234349.47,2472.69,146747.71,21571.37,63557.7,16806.65,41442.96,5308.09,conventional,2015,CincinnatiDayton +20,2015-08-09,1.08,214374.41,2357.57,144957.92,10921.95,56136.97,19933.89,34194.18,2008.9,conventional,2015,CincinnatiDayton +21,2015-08-02,1.09,206121.36,2443.41,142847.6,9778.16,51052.19,16179.92,33163.78,1708.49,conventional,2015,CincinnatiDayton +22,2015-07-26,1.03,216611.18,2474.11,139527.28,5691.94,68917.85,24769.87,43020.67,1127.31,conventional,2015,CincinnatiDayton +23,2015-07-19,1.06,223479.02,3726.35,146965.54,14449.26,58337.87,21470.67,33782.97,3084.23,conventional,2015,CincinnatiDayton +24,2015-07-12,1.03,218170.8,3503.25,148642.65,4243.48,61781.42,23225.75,37926.4,629.27,conventional,2015,CincinnatiDayton +25,2015-07-05,1.03,250626.33,3238.38,165479.82,10201.81,71706.32,27500.3,43026.64,1179.38,conventional,2015,CincinnatiDayton +26,2015-06-28,1.01,225165.84,3691.48,144983.7,3666.71,72823.95,34098.54,38098.48,626.93,conventional,2015,CincinnatiDayton +27,2015-06-21,1.02,243012.2,3795.3,158957.39,15259.47,65000.04,25431.9,37441.3,2126.84,conventional,2015,CincinnatiDayton +28,2015-06-14,1.05,229363.51,6856.14,145975.24,10046.57,66485.56,30258.12,34920.23,1307.21,conventional,2015,CincinnatiDayton +29,2015-06-07,1.07,234981.67,10630.01,146360.2,14601.72,63389.74,23651.85,36952.36,2785.53,conventional,2015,CincinnatiDayton +30,2015-05-31,1.06,222382.69,10459.41,143893.61,4652.39,63377.28,20976.26,41425.81,975.21,conventional,2015,CincinnatiDayton +31,2015-05-24,1.1,222390.09,10258.51,152036.29,4490.78,55604.51,24486.78,30170.62,947.11,conventional,2015,CincinnatiDayton +32,2015-05-17,1.04,234579.34,10239.98,150323.91,14523.82,59491.63,18091.92,38536.09,2863.62,conventional,2015,CincinnatiDayton +33,2015-05-10,1.06,259598.76,11982.39,172173.77,2408.09,73034.51,22506.92,50265.04,262.55,conventional,2015,CincinnatiDayton +34,2015-05-03,1.08,238140.96,11468.92,162213.47,7282.09,57176.48,18315.96,37361.33,1499.19,conventional,2015,CincinnatiDayton +35,2015-04-26,1.06,214469.51,8217.17,138764.19,6904.19,60583.96,21522.31,37783.16,1278.49,conventional,2015,CincinnatiDayton +36,2015-04-19,1.02,226978.72,8229.4,144900.84,12959.1,60889.38,35196.33,23101.71,2591.34,conventional,2015,CincinnatiDayton +37,2015-04-12,1.02,188937.83,11176.67,120830.33,1306.19,55624.64,38219.34,17270.02,135.28,conventional,2015,CincinnatiDayton +38,2015-04-05,1.06,196168.6,7516.57,135093.59,2508.15,51050.29,36567.48,14361.02,121.79,conventional,2015,CincinnatiDayton +39,2015-03-29,0.95,198365.16,3014.53,122178.0,2448.36,70724.27,46587.15,23745.65,391.47,conventional,2015,CincinnatiDayton +40,2015-03-22,0.98,212719.94,2968.26,137560.99,23368.18,48822.51,11317.29,31773.08,5732.14,conventional,2015,CincinnatiDayton +41,2015-03-15,0.94,196008.57,3550.62,131234.14,3387.38,57836.43,19570.41,37402.27,863.75,conventional,2015,CincinnatiDayton +42,2015-03-08,0.87,219110.81,3470.71,147536.24,3678.29,64425.57,30834.06,32786.33,805.18,conventional,2015,CincinnatiDayton +43,2015-03-01,0.89,226951.64,3610.46,157400.74,18680.72,47259.72,14963.96,28229.86,4065.9,conventional,2015,CincinnatiDayton +44,2015-02-22,0.93,183072.02,4431.56,134258.95,3240.16,41141.35,18685.14,21703.66,752.55,conventional,2015,CincinnatiDayton +45,2015-02-15,0.94,169950.37,4399.26,122866.03,3067.22,39617.86,21356.07,17556.58,705.21,conventional,2015,CincinnatiDayton +46,2015-02-08,0.93,186617.2,4246.12,140926.77,4185.64,37258.67,17773.67,18571.14,913.86,conventional,2015,CincinnatiDayton +47,2015-02-01,0.86,300905.18,4665.89,224967.68,19442.29,51829.32,15335.37,31756.14,4737.81,conventional,2015,CincinnatiDayton +48,2015-01-25,0.93,213554.45,3617.45,162644.69,656.23,46636.08,20650.03,25970.02,16.03,conventional,2015,CincinnatiDayton +49,2015-01-18,0.93,175681.09,3333.29,128858.15,1086.61,42403.04,24024.17,18264.75,114.12,conventional,2015,CincinnatiDayton +50,2015-01-11,0.92,201392.27,3612.86,153100.22,1203.53,43475.66,17035.73,26345.43,94.5,conventional,2015,CincinnatiDayton +51,2015-01-04,0.88,228569.58,3274.3,168764.78,1447.06,55083.44,17525.31,37445.46,112.67,conventional,2015,CincinnatiDayton +0,2015-12-27,0.99,107565.04,41808.54,27120.67,15564.05,23071.78,15032.43,3874.64,4164.71,conventional,2015,Columbus +1,2015-12-20,1.03,117393.22,57557.75,23198.49,16370.5,20266.48,11760.83,4248.29,4257.36,conventional,2015,Columbus +2,2015-12-13,1.03,124617.07,69742.59,21750.83,12957.84,20165.81,14642.3,4307.42,1216.09,conventional,2015,Columbus +3,2015-12-06,0.99,137195.59,60376.23,33565.14,24435.11,18819.11,12451.6,3866.86,2500.65,conventional,2015,Columbus +4,2015-11-29,1.03,97235.6,40352.94,22858.09,16653.11,17371.46,12106.21,4115.58,1149.67,conventional,2015,Columbus +5,2015-11-22,1.04,115089.62,50334.8,25643.76,20730.65,18380.41,13855.13,2827.12,1698.16,conventional,2015,Columbus +6,2015-11-15,0.99,117462.94,52474.75,26705.74,15258.85,23023.6,19594.87,2618.43,810.3,conventional,2015,Columbus +7,2015-11-08,0.95,152084.79,61494.68,35336.71,29583.9,25669.5,14899.79,6935.32,3834.39,conventional,2015,Columbus +8,2015-11-01,0.99,135237.01,58162.23,31821.24,23764.43,21489.11,14668.1,3691.47,3129.54,conventional,2015,Columbus +9,2015-10-25,1.04,119210.27,59745.47,23351.18,19024.16,17089.46,11461.37,3925.91,1702.18,conventional,2015,Columbus +10,2015-10-18,0.98,137773.84,62590.79,33116.75,18606.59,23459.71,18601.8,4384.37,473.54,conventional,2015,Columbus +11,2015-10-11,0.9,145305.65,57480.41,39207.76,24724.8,23892.68,16946.85,4765.93,2179.9,conventional,2015,Columbus +12,2015-10-04,0.93,134326.53,53606.35,38396.06,23069.29,19254.83,14952.36,2202.87,2099.6,conventional,2015,Columbus +13,2015-09-27,1.02,137298.77,66587.59,33743.19,18527.75,18440.24,10970.85,5538.06,1931.33,conventional,2015,Columbus +14,2015-09-20,1.0,165068.86,86031.9,31599.19,26200.37,21237.4,12029.73,4671.88,4535.79,conventional,2015,Columbus +15,2015-09-13,1.02,169025.14,86159.05,31464.67,26703.23,24698.19,17099.64,4201.55,3397.0,conventional,2015,Columbus +16,2015-09-06,1.04,144563.15,61052.61,40880.96,20842.4,21787.18,16533.98,3611.52,1641.68,conventional,2015,Columbus +17,2015-08-30,1.03,147230.76,64531.04,32172.79,25751.74,24775.19,16928.02,4937.44,2909.73,conventional,2015,Columbus +18,2015-08-23,1.08,130920.97,64597.94,29728.3,15723.09,20871.64,14961.58,5010.51,899.55,conventional,2015,Columbus +19,2015-08-16,1.03,155881.73,63291.37,36257.41,32383.88,23949.07,15230.44,4314.54,4404.09,conventional,2015,Columbus +20,2015-08-09,1.0,167387.9,64121.12,52440.39,20857.42,29968.97,20668.0,7460.64,1840.33,conventional,2015,Columbus +21,2015-08-02,1.05,148597.91,77973.44,30063.76,17344.74,23215.97,17997.33,3281.88,1936.76,conventional,2015,Columbus +22,2015-07-26,1.02,159846.2,91758.41,25540.09,13557.25,28990.45,23981.05,3986.29,1023.11,conventional,2015,Columbus +23,2015-07-19,1.05,159137.17,75080.98,33397.18,24209.42,26449.59,21845.65,2442.62,2161.32,conventional,2015,Columbus +24,2015-07-12,1.04,143992.91,69964.42,32449.21,16034.68,25544.6,22605.91,2366.05,572.64,conventional,2015,Columbus +25,2015-07-05,0.98,173370.68,79063.5,39343.65,24674.62,30288.91,24909.93,4244.24,1134.74,conventional,2015,Columbus +26,2015-06-28,0.94,159970.54,72752.84,38877.79,12796.57,35543.34,29338.02,5683.66,521.66,conventional,2015,Columbus +27,2015-06-21,0.99,164161.25,67311.23,40382.51,24529.19,31938.32,24969.38,4739.34,2229.6,conventional,2015,Columbus +28,2015-06-14,1.01,171353.59,83138.56,33535.09,20023.58,34656.36,27204.22,6030.43,1421.71,conventional,2015,Columbus +29,2015-06-07,1.03,187983.88,92110.97,33225.37,29167.3,33480.24,23654.01,5888.63,3937.6,conventional,2015,Columbus +30,2015-05-31,1.1,143985.96,80729.03,21813.84,13935.13,27507.96,21434.49,4733.2,1340.27,conventional,2015,Columbus +31,2015-05-24,1.01,171879.57,85510.9,37314.24,14261.54,34792.89,22680.26,10832.31,1280.32,conventional,2015,Columbus +32,2015-05-17,1.0,180511.78,97341.26,38624.07,22934.89,21611.56,15997.43,2463.86,3150.27,conventional,2015,Columbus +33,2015-05-10,1.1,162802.65,97879.64,27581.34,10126.3,27215.37,23689.19,2796.71,729.47,conventional,2015,Columbus +34,2015-05-03,0.99,176737.77,79998.58,53621.15,15882.39,27235.65,16302.79,9726.39,1206.47,conventional,2015,Columbus +35,2015-04-26,1.02,161438.17,87214.58,28964.04,16624.25,28635.3,22384.1,4959.65,1291.55,conventional,2015,Columbus +36,2015-04-19,1.0,172913.44,80303.92,40370.03,26369.27,25870.22,20819.2,1861.68,3189.34,conventional,2015,Columbus +37,2015-04-12,1.07,129397.39,66513.95,28065.91,9955.72,24861.81,23837.01,840.46,184.34,conventional,2015,Columbus +38,2015-04-05,1.09,126109.82,67298.39,30313.37,9926.54,18571.52,17853.07,642.52,75.93,conventional,2015,Columbus +39,2015-03-29,0.96,139065.31,72473.25,25151.42,8711.76,32728.88,31416.0,937.48,375.4,conventional,2015,Columbus +40,2015-03-22,0.94,182625.49,101143.03,40165.62,24995.65,16321.19,9158.76,2691.96,4470.47,conventional,2015,Columbus +41,2015-03-15,1.01,149884.1,90582.35,27040.2,9632.1,22629.45,18487.57,3462.12,679.76,conventional,2015,Columbus +42,2015-03-08,0.95,141281.56,56323.87,37382.46,11404.82,36170.41,29553.3,5482.53,1134.58,conventional,2015,Columbus +43,2015-03-01,1.03,136795.35,55610.59,36034.55,25775.13,19375.08,13297.29,1837.6,4240.19,conventional,2015,Columbus +44,2015-02-22,1.09,114280.87,56131.64,26134.29,10603.51,21411.43,18266.69,2275.13,869.61,conventional,2015,Columbus +45,2015-02-15,1.05,106663.68,52221.93,20939.99,8939.85,24561.91,22104.1,1860.18,597.63,conventional,2015,Columbus +46,2015-02-08,0.96,128078.27,76792.99,23238.8,7652.85,20393.63,17859.26,1970.91,563.46,conventional,2015,Columbus +47,2015-02-01,0.87,216653.06,111171.46,59739.98,21795.64,23945.98,16360.12,3422.61,4163.25,conventional,2015,Columbus +48,2015-01-25,1.08,116995.68,53201.66,32775.08,7822.59,23196.35,21117.47,2057.45,21.43,conventional,2015,Columbus +49,2015-01-18,1.02,116450.21,55532.76,26458.99,7040.95,27417.51,24386.64,2962.41,68.46,conventional,2015,Columbus +50,2015-01-11,0.97,125742.48,64726.71,34844.49,7190.05,18981.23,16400.27,2458.67,122.29,conventional,2015,Columbus +51,2015-01-04,0.89,158638.04,80298.77,51860.47,7609.24,18869.56,16518.15,2132.21,219.2,conventional,2015,Columbus +0,2015-12-27,0.8,1020390.64,494425.64,276556.76,84912.97,164495.27,136560.04,12277.7,15657.53,conventional,2015,DallasFtWorth +1,2015-12-20,0.82,928051.16,439792.68,257532.45,91158.34,139567.69,103511.91,10331.25,25724.53,conventional,2015,DallasFtWorth +2,2015-12-13,0.79,980891.18,476178.99,319789.56,62436.8,122485.83,114978.22,7472.99,34.62,conventional,2015,DallasFtWorth +3,2015-12-06,0.74,1054849.97,514160.41,412692.22,8533.47,119463.87,108772.12,10525.27,166.48,conventional,2015,DallasFtWorth +4,2015-11-29,0.8,839818.87,477944.48,244879.52,6211.5,110783.37,96799.4,13967.44,16.53,conventional,2015,DallasFtWorth +5,2015-11-22,0.78,885067.49,494872.79,264820.58,9913.68,115460.44,102317.99,13138.76,3.69,conventional,2015,DallasFtWorth +6,2015-11-15,0.71,1040439.71,642897.96,263132.27,10305.52,124103.96,109552.23,14527.64,24.09,conventional,2015,DallasFtWorth +7,2015-11-08,0.8,977717.36,563069.05,278244.62,33026.94,103376.75,92853.6,10364.96,158.19,conventional,2015,DallasFtWorth +8,2015-11-01,0.78,1114177.66,546040.25,376913.25,85323.07,105901.09,98097.43,7644.9,158.76,conventional,2015,DallasFtWorth +9,2015-10-25,0.86,1010394.81,557469.46,301143.5,49959.1,101822.75,96417.63,5279.41,125.71,conventional,2015,DallasFtWorth +10,2015-10-18,0.83,992983.76,570732.49,266044.08,61892.18,94315.01,87201.1,7044.44,69.47,conventional,2015,DallasFtWorth +11,2015-10-11,0.81,1100679.15,543166.98,349743.64,99900.94,107867.59,101828.12,5967.19,72.28,conventional,2015,DallasFtWorth +12,2015-10-04,0.82,1104602.14,491729.14,439095.32,50993.14,122784.54,107305.26,15396.93,82.35,conventional,2015,DallasFtWorth +13,2015-09-27,0.84,1063583.86,533088.33,390554.54,25647.49,114293.5,101477.9,12776.1,39.5,conventional,2015,DallasFtWorth +14,2015-09-20,0.77,1155212.67,606586.38,425539.41,10973.08,112113.8,99272.95,12833.33,7.52,conventional,2015,DallasFtWorth +15,2015-09-13,0.86,1212585.41,564967.74,494078.53,9094.89,144444.25,119755.29,24666.41,22.55,conventional,2015,DallasFtWorth +16,2015-09-06,0.84,1270739.69,626166.71,505568.94,9815.66,129188.38,120588.01,8581.65,18.72,conventional,2015,DallasFtWorth +17,2015-08-30,0.82,1101680.91,674670.89,309275.19,7468.25,110266.58,101093.6,9171.11,1.87,conventional,2015,DallasFtWorth +18,2015-08-23,0.85,1120172.03,679440.88,321325.08,8261.74,111144.33,102621.57,8502.23,20.53,conventional,2015,DallasFtWorth +19,2015-08-16,0.88,1122668.33,718594.72,287298.98,7090.26,109684.37,100806.9,8864.44,13.03,conventional,2015,DallasFtWorth +20,2015-08-09,0.85,1124259.51,674531.14,332173.47,7793.22,109761.68,101618.63,8139.34,3.71,conventional,2015,DallasFtWorth +21,2015-08-02,0.87,1067498.21,705846.27,253860.7,4688.24,103103.0,91893.62,11209.38,0.0,conventional,2015,DallasFtWorth +22,2015-07-26,0.8,1191310.92,661845.98,406523.56,6417.32,116524.06,97727.08,18793.29,3.69,conventional,2015,DallasFtWorth +23,2015-07-19,0.82,1186878.88,684455.16,364124.15,4970.49,133329.08,115942.32,17379.41,7.35,conventional,2015,DallasFtWorth +24,2015-07-12,0.82,1144448.23,713425.63,319277.99,4382.19,107362.42,102573.93,4008.88,779.61,conventional,2015,DallasFtWorth +25,2015-07-05,0.83,1320696.13,835215.79,334916.29,5388.47,145175.58,139670.52,5497.78,7.28,conventional,2015,DallasFtWorth +26,2015-06-28,0.77,1203553.98,760374.24,302577.78,7191.26,133410.7,125900.09,7499.76,10.85,conventional,2015,DallasFtWorth +27,2015-06-21,0.75,1283503.44,755351.26,375820.52,8600.7,143730.96,134708.23,9013.74,8.99,conventional,2015,DallasFtWorth +28,2015-06-14,0.65,1508750.45,1013252.58,353165.21,7557.93,134774.73,130578.16,4187.62,8.95,conventional,2015,DallasFtWorth +29,2015-06-07,0.73,1255575.78,788982.74,319283.75,13350.4,133958.89,126849.55,7102.22,7.12,conventional,2015,DallasFtWorth +30,2015-05-31,0.68,1377670.81,941838.33,315653.39,7287.06,112892.03,99456.4,13421.47,14.16,conventional,2015,DallasFtWorth +31,2015-05-24,0.81,1184131.34,775365.99,299938.43,6833.07,101993.85,96860.23,5117.65,15.97,conventional,2015,DallasFtWorth +32,2015-05-17,0.73,1219398.43,855871.73,261026.33,6382.5,96117.87,88480.13,7628.89,8.85,conventional,2015,DallasFtWorth +33,2015-05-10,0.75,1298826.19,817727.07,357330.3,7803.87,115964.95,107302.84,8644.44,17.67,conventional,2015,DallasFtWorth +34,2015-05-03,0.77,1282852.08,652304.49,509069.75,9753.52,111724.32,104797.33,6148.99,778.0,conventional,2015,DallasFtWorth +35,2015-04-26,0.81,1102639.51,717960.82,270228.19,12091.21,102359.29,91505.88,10463.78,389.63,conventional,2015,DallasFtWorth +36,2015-04-19,0.8,1137811.87,735235.09,284292.72,16013.68,102270.38,89209.96,13055.16,5.26,conventional,2015,DallasFtWorth +37,2015-04-12,0.72,1266899.55,871511.12,288420.79,12596.79,94370.85,85100.44,9261.6,8.81,conventional,2015,DallasFtWorth +38,2015-04-05,0.77,1324348.89,802917.65,387745.54,13592.62,120093.08,105522.18,13748.75,822.15,conventional,2015,DallasFtWorth +39,2015-03-29,0.79,1164808.22,645523.05,396361.0,13339.76,109584.41,95894.64,13670.42,19.35,conventional,2015,DallasFtWorth +40,2015-03-22,0.67,1333424.37,925527.04,297656.4,11678.42,98562.51,88559.01,9991.57,11.93,conventional,2015,DallasFtWorth +41,2015-03-15,0.72,1211158.55,726176.09,368421.28,14065.99,102495.19,90708.11,11780.0,7.08,conventional,2015,DallasFtWorth +42,2015-03-08,0.75,1218684.28,724775.83,371564.05,11201.82,111142.58,97450.44,13677.78,14.36,conventional,2015,DallasFtWorth +43,2015-03-01,0.82,1144032.03,665032.82,358628.24,12398.67,107972.3,95284.48,12675.55,12.27,conventional,2015,DallasFtWorth +44,2015-02-22,0.8,1116600.76,695493.39,305788.6,12580.26,102738.51,85321.83,17416.68,0.0,conventional,2015,DallasFtWorth +45,2015-02-15,0.77,1020856.87,625813.98,299799.46,12656.97,82586.46,67518.45,15061.17,6.84,conventional,2015,DallasFtWorth +46,2015-02-08,0.67,1207167.54,737968.75,376914.26,12106.6,80177.93,67959.08,12176.08,42.77,conventional,2015,DallasFtWorth +47,2015-02-01,0.68,1391089.32,786166.9,495262.11,18855.32,90804.99,79314.06,11474.72,16.21,conventional,2015,DallasFtWorth +48,2015-01-25,0.8,1008295.47,649344.32,271152.06,9610.83,78188.26,60158.3,18029.96,0.0,conventional,2015,DallasFtWorth +49,2015-01-18,0.76,1091677.29,627090.61,374230.89,15550.56,74805.23,62375.69,12416.71,12.83,conventional,2015,DallasFtWorth +50,2015-01-11,0.76,1128693.04,680572.11,348535.22,11900.83,87684.88,67857.83,19801.95,25.1,conventional,2015,DallasFtWorth +51,2015-01-04,0.74,1086363.97,612795.8,374420.68,9817.28,89330.21,54563.33,34760.08,6.8,conventional,2015,DallasFtWorth +0,2015-12-27,0.98,625475.1,93034.2,246747.13,19103.69,266590.08,38620.02,227884.21,85.85,conventional,2015,Denver +1,2015-12-20,1.05,528944.54,113403.55,188263.2,24477.83,202799.96,34993.02,167806.94,0.0,conventional,2015,Denver +2,2015-12-13,0.83,741702.5,96222.34,321764.32,29349.34,294366.5,34244.4,260040.92,81.18,conventional,2015,Denver +3,2015-12-06,0.76,838225.19,111259.34,378124.28,8807.96,340033.61,35086.04,304844.07,103.5,conventional,2015,Denver +4,2015-11-29,1.12,429109.64,85241.45,179982.42,14146.28,149739.49,31920.41,117819.08,0.0,conventional,2015,Denver +5,2015-11-22,0.85,724865.72,100047.56,323796.5,18215.73,282805.93,31358.6,251447.33,0.0,conventional,2015,Denver +6,2015-11-15,0.82,925618.09,98269.82,428998.81,20029.1,378320.36,36279.71,342040.65,0.0,conventional,2015,Denver +7,2015-11-08,0.93,690633.88,113964.9,354454.62,12294.0,209920.36,39635.83,170279.53,5.0,conventional,2015,Denver +8,2015-11-01,0.82,831994.43,140330.11,446007.8,8551.05,237105.47,41633.91,195471.56,0.0,conventional,2015,Denver +9,2015-10-25,0.93,735206.51,106239.17,393920.63,11222.0,223824.71,39914.62,183910.09,0.0,conventional,2015,Denver +10,2015-10-18,0.87,805437.95,117059.41,435491.56,13693.47,239193.51,41688.37,197487.51,17.63,conventional,2015,Denver +11,2015-10-11,0.9,775976.51,108538.74,432102.05,18840.69,216495.03,40462.27,176032.76,0.0,conventional,2015,Denver +12,2015-10-04,1.02,678935.84,101712.18,364774.25,27621.71,184827.7,41345.58,143474.53,7.59,conventional,2015,Denver +13,2015-09-27,0.97,694871.74,119089.66,386987.12,15285.72,173509.24,43108.21,130401.03,0.0,conventional,2015,Denver +14,2015-09-20,0.98,760083.16,85382.01,461272.5,25529.99,187898.66,40644.98,147253.68,0.0,conventional,2015,Denver +15,2015-09-13,1.01,735436.91,115935.68,451936.38,17938.63,149626.22,47733.95,101892.27,0.0,conventional,2015,Denver +16,2015-09-06,1.09,729046.74,138154.55,420365.75,19090.66,151435.78,47833.83,103601.95,0.0,conventional,2015,Denver +17,2015-08-30,1.14,721703.83,119849.97,421032.49,19353.95,161467.42,43991.55,117475.87,0.0,conventional,2015,Denver +18,2015-08-23,1.2,598195.03,135261.61,318115.81,21420.3,123397.31,45407.51,77989.8,0.0,conventional,2015,Denver +19,2015-08-16,1.17,648148.15,157630.43,348863.51,18154.64,123499.57,46710.57,76789.0,0.0,conventional,2015,Denver +20,2015-08-09,1.09,669377.04,131770.05,377129.38,24025.84,136451.77,46596.12,89855.65,0.0,conventional,2015,Denver +21,2015-08-02,1.05,727916.83,153498.68,423519.88,16711.0,134187.27,45644.8,88542.47,0.0,conventional,2015,Denver +22,2015-07-26,1.18,703672.69,138942.76,376355.19,25777.83,162596.91,58753.1,103843.81,0.0,conventional,2015,Denver +23,2015-07-19,1.1,857872.86,119266.12,513055.1,17089.18,208462.46,68585.03,139859.47,17.96,conventional,2015,Denver +24,2015-07-12,1.18,738933.68,123673.43,423853.38,22068.15,169338.72,66816.09,101611.95,910.68,conventional,2015,Denver +25,2015-07-05,1.19,736913.15,146171.45,428389.18,19546.92,142805.6,88349.57,54456.03,0.0,conventional,2015,Denver +26,2015-06-28,1.2,696697.65,162885.58,362226.14,18449.63,153136.3,93206.17,59917.38,12.75,conventional,2015,Denver +27,2015-06-21,1.16,730826.79,184206.21,405469.62,12854.03,128296.93,83581.46,44715.47,0.0,conventional,2015,Denver +28,2015-06-14,1.16,743005.75,194447.12,401133.25,17694.15,129731.23,79508.59,50222.64,0.0,conventional,2015,Denver +29,2015-06-07,1.11,782886.63,167992.06,439309.16,17507.3,158078.11,70061.87,88016.24,0.0,conventional,2015,Denver +30,2015-05-31,1.26,600377.94,127747.5,365471.2,18725.02,88434.22,52816.05,35618.17,0.0,conventional,2015,Denver +31,2015-05-24,1.16,657593.22,198187.29,369924.19,18817.6,70664.14,50060.32,20603.82,0.0,conventional,2015,Denver +32,2015-05-17,1.21,592588.01,156010.24,305200.86,17377.87,113999.04,50687.72,63311.32,0.0,conventional,2015,Denver +33,2015-05-10,1.08,735145.02,148762.57,454026.16,16724.31,115631.98,49343.56,66285.96,2.46,conventional,2015,Denver +34,2015-05-03,1.01,781496.4,182975.49,485743.46,14810.14,97967.31,45163.77,52803.54,0.0,conventional,2015,Denver +35,2015-04-26,1.19,620827.49,160372.05,381779.34,5981.19,72694.91,44469.33,27221.41,1004.17,conventional,2015,Denver +36,2015-04-19,1.08,797021.22,129744.18,544167.43,6231.67,116877.94,44279.02,72598.92,0.0,conventional,2015,Denver +37,2015-04-12,1.05,858680.51,176304.23,574793.28,8603.75,98979.25,42716.25,56263.0,0.0,conventional,2015,Denver +38,2015-04-05,1.19,645727.95,156966.84,396449.92,6308.61,86002.58,53589.8,31483.61,929.17,conventional,2015,Denver +39,2015-03-29,1.11,627546.3,160679.31,371990.15,4760.21,90116.63,55936.09,34180.54,0.0,conventional,2015,Denver +40,2015-03-22,1.15,603112.11,131881.99,380284.5,8461.12,82484.5,47368.3,35116.2,0.0,conventional,2015,Denver +41,2015-03-15,1.03,662131.8,160422.27,403060.76,5122.11,93526.66,50621.03,42905.63,0.0,conventional,2015,Denver +42,2015-03-08,1.03,719792.51,118578.11,491584.39,7264.83,102365.18,54092.42,48272.76,0.0,conventional,2015,Denver +43,2015-03-01,1.03,670820.5,101528.39,487873.51,5507.38,75911.22,38246.75,37664.47,0.0,conventional,2015,Denver +44,2015-02-22,1.0,899302.8,153410.25,584093.63,5686.33,156112.59,62564.22,93534.16,14.21,conventional,2015,Denver +45,2015-02-15,1.12,629074.28,116907.81,404107.32,7797.57,100261.58,80270.81,19965.51,25.26,conventional,2015,Denver +46,2015-02-08,0.95,766576.39,153584.14,466313.49,5420.92,141257.84,92800.41,48427.25,30.18,conventional,2015,Denver +47,2015-02-01,0.93,990211.57,217715.85,608156.34,5736.45,158602.93,90555.95,68006.59,40.39,conventional,2015,Denver +48,2015-01-25,1.02,695658.81,140914.23,422434.82,4944.79,127364.97,74743.6,52611.95,9.42,conventional,2015,Denver +49,2015-01-18,0.99,808194.41,151976.7,500683.5,4225.31,151308.9,77528.06,73764.68,16.16,conventional,2015,Denver +50,2015-01-11,1.09,666579.35,110974.25,427723.2,5357.69,122524.21,85793.27,36703.98,26.96,conventional,2015,Denver +51,2015-01-04,0.99,668086.0,117454.09,429518.41,5553.6,115559.9,67894.33,47661.52,4.05,conventional,2015,Denver +0,2015-12-27,1.08,255499.7,83097.26,50545.78,59789.18,62067.48,48936.21,762.35,12368.92,conventional,2015,Detroit +1,2015-12-20,1.1,250436.24,110507.5,42663.06,45459.85,51805.83,40496.17,2931.68,8377.98,conventional,2015,Detroit +2,2015-12-13,1.05,275587.85,132206.07,38088.87,47788.47,57504.44,48318.35,2843.43,6342.66,conventional,2015,Detroit +3,2015-12-06,0.98,339797.19,92957.56,78805.63,113791.21,54242.79,30612.06,885.86,22744.87,conventional,2015,Detroit +4,2015-11-29,1.11,228427.08,84236.03,38244.11,63664.14,42282.8,31628.56,920.38,9733.86,conventional,2015,Detroit +5,2015-11-22,1.09,270529.34,95526.76,55945.23,63404.02,55653.33,47388.76,1257.23,7007.34,conventional,2015,Detroit +6,2015-11-15,1.1,248933.35,88132.72,35472.8,52490.9,72836.93,65345.24,1141.32,6350.37,conventional,2015,Detroit +7,2015-11-08,1.03,343645.67,103367.05,72647.24,113928.21,53703.17,30614.89,734.95,22353.33,conventional,2015,Detroit +8,2015-11-01,1.04,340746.59,112432.15,67252.29,104529.5,56532.65,35176.99,1106.6,20249.06,conventional,2015,Detroit +9,2015-10-25,1.17,251336.74,84318.99,49927.69,74327.91,42762.15,30131.74,727.93,11902.48,conventional,2015,Detroit +10,2015-10-18,0.97,358143.26,117479.44,97788.02,72553.22,70322.58,63143.78,823.99,6354.81,conventional,2015,Detroit +11,2015-10-11,0.99,362400.65,110374.23,105188.14,72960.79,73877.49,68721.34,1222.93,3933.22,conventional,2015,Detroit +12,2015-10-04,1.1,286400.89,81617.68,60336.35,90271.45,54175.41,40779.28,1039.04,12357.09,conventional,2015,Detroit +13,2015-09-27,1.17,257472.31,88573.56,43702.48,78776.6,46419.67,33816.62,1081.83,11521.22,conventional,2015,Detroit +14,2015-09-20,1.0,373545.23,129945.11,71335.62,111298.27,60966.23,38180.88,839.26,21946.09,conventional,2015,Detroit +15,2015-09-13,1.03,401472.63,151274.05,73572.68,106452.77,70173.13,51456.91,1329.55,17386.67,conventional,2015,Detroit +16,2015-09-06,1.09,336982.39,143927.73,51351.12,79770.33,61933.21,49676.97,1237.68,11018.56,conventional,2015,Detroit +17,2015-08-30,0.96,422762.9,177827.49,75478.01,100520.31,68937.09,52515.07,1066.62,15355.4,conventional,2015,Detroit +18,2015-08-23,1.11,267968.5,114208.75,36663.35,61914.67,55181.73,45741.01,2154.69,7286.03,conventional,2015,Detroit +19,2015-08-16,0.97,400251.59,113822.13,86783.96,125069.99,74575.51,53326.63,1573.3,19675.58,conventional,2015,Detroit +20,2015-08-09,1.07,341289.98,136799.68,56896.42,80145.92,67447.96,54938.34,1471.57,11038.05,conventional,2015,Detroit +21,2015-08-02,1.04,364735.69,157018.49,58592.28,76533.58,72591.34,63454.14,1676.31,7460.89,conventional,2015,Detroit +22,2015-07-26,0.99,326233.8,119084.73,38501.17,63099.7,105548.2,98037.18,2518.38,4992.64,conventional,2015,Detroit +23,2015-07-19,1.04,370830.93,125844.19,66223.96,105281.52,73481.26,61402.16,2038.49,10040.61,conventional,2015,Detroit +24,2015-07-12,1.02,310049.5,127995.39,36569.66,62708.05,82776.4,76701.28,1977.04,4098.08,conventional,2015,Detroit +25,2015-07-05,1.06,373691.57,140339.02,62718.27,96051.18,74583.1,66416.56,1849.74,6316.8,conventional,2015,Detroit +26,2015-06-28,1.0,329753.61,135230.94,30175.61,48618.79,115728.27,111301.27,2126.05,2300.95,conventional,2015,Detroit +27,2015-06-21,0.97,424580.52,133405.45,87075.84,121664.66,82434.57,70155.32,2831.82,9447.43,conventional,2015,Detroit +28,2015-06-14,1.04,372413.5,136802.87,58418.17,90747.55,86444.91,80661.4,1786.01,3997.5,conventional,2015,Detroit +29,2015-06-07,0.97,447813.52,153214.87,87106.49,131114.3,76377.86,61921.23,1180.76,13275.87,conventional,2015,Detroit +30,2015-05-31,1.09,324400.67,162243.06,28903.88,53233.66,80020.07,74758.21,797.64,4464.22,conventional,2015,Detroit +31,2015-05-24,1.03,373245.43,193348.39,34774.04,46503.59,98619.41,94585.49,715.81,3318.11,conventional,2015,Detroit +32,2015-05-17,0.95,495155.82,214237.95,98513.1,116503.88,65900.89,53494.15,591.25,11815.49,conventional,2015,Detroit +33,2015-05-10,1.11,360917.96,177872.77,42422.72,48825.24,91797.23,87986.35,1880.03,1930.85,conventional,2015,Detroit +34,2015-05-03,1.06,374659.88,161288.26,71919.54,74593.79,66858.29,60634.57,785.52,5438.2,conventional,2015,Detroit +35,2015-04-26,1.01,361243.2,133322.95,61051.45,66651.75,100217.05,93903.26,1475.78,4838.01,conventional,2015,Detroit +36,2015-04-19,0.96,468643.05,140434.29,139016.06,107930.54,81262.16,68265.07,4057.84,8939.25,conventional,2015,Detroit +37,2015-04-12,1.02,271182.01,96441.78,24663.5,43008.11,107068.62,101770.1,2451.53,2846.99,conventional,2015,Detroit +38,2015-04-05,1.11,295385.41,113210.53,62859.83,49925.6,69389.45,65997.82,1999.07,1392.56,conventional,2015,Detroit +39,2015-03-29,0.97,304048.16,120782.43,28182.89,38352.45,116730.39,113016.39,2415.87,1298.13,conventional,2015,Detroit +40,2015-03-22,0.97,455372.43,138397.72,109057.9,144745.74,63171.07,44419.39,754.44,17997.24,conventional,2015,Detroit +41,2015-03-15,1.13,254974.87,107980.24,31613.46,48302.85,67078.32,62158.56,1375.92,3543.84,conventional,2015,Detroit +42,2015-03-08,1.01,278695.29,97420.1,29942.92,46763.06,104569.21,99704.49,473.7,4391.02,conventional,2015,Detroit +43,2015-03-01,0.97,397899.56,97605.68,101935.17,129285.88,69072.83,50732.68,1144.16,17195.99,conventional,2015,Detroit +44,2015-02-22,1.15,250888.8,99207.09,34703.33,46471.63,70506.75,66789.41,267.65,3449.69,conventional,2015,Detroit +45,2015-02-15,1.16,255597.63,100594.59,31170.09,41639.69,82193.26,78474.19,676.16,3042.91,conventional,2015,Detroit +46,2015-02-08,1.11,268195.87,129910.26,35996.84,40515.81,61772.96,57777.05,1023.87,2972.04,conventional,2015,Detroit +47,2015-02-01,0.92,539750.77,205775.28,136119.82,127173.89,70681.78,54003.36,688.47,15989.95,conventional,2015,Detroit +48,2015-01-25,1.19,277325.29,110113.35,47558.4,45889.29,73764.25,69311.52,1280.03,3172.7,conventional,2015,Detroit +49,2015-01-18,1.1,291788.43,113616.86,45446.17,37740.18,94985.22,92319.38,1066.01,1599.83,conventional,2015,Detroit +50,2015-01-11,1.08,332165.05,108378.69,90104.73,76985.0,56696.63,48639.13,620.82,7436.68,conventional,2015,Detroit +51,2015-01-04,1.01,369694.27,121634.27,117865.11,74062.76,56132.13,46679.86,1060.51,8391.76,conventional,2015,Detroit +0,2015-12-27,1.13,147713.85,2992.62,101109.84,5754.75,37856.64,30738.09,2919.24,4199.31,conventional,2015,GrandRapids +1,2015-12-20,1.13,126262.26,2630.11,85259.91,3211.51,35160.73,30547.62,2288.36,2324.75,conventional,2015,GrandRapids +2,2015-12-13,1.24,117645.69,3809.88,69582.68,3264.07,40989.06,38257.02,2231.37,500.67,conventional,2015,GrandRapids +3,2015-12-06,0.93,217174.66,4026.57,165454.45,15635.86,32057.78,26570.4,1560.59,3926.79,conventional,2015,GrandRapids +4,2015-11-29,1.12,120552.43,3726.77,82760.11,3336.97,30728.58,27835.71,2816.43,76.44,conventional,2015,GrandRapids +5,2015-11-22,1.11,140981.22,3734.97,94794.75,5725.81,36725.69,33606.78,2327.22,791.69,conventional,2015,GrandRapids +6,2015-11-15,1.2,129448.75,3490.77,74695.44,2506.31,48756.23,47301.23,1427.26,27.74,conventional,2015,GrandRapids +7,2015-11-08,0.93,198257.69,3970.87,149876.75,7556.57,36853.5,34956.27,1819.27,77.96,conventional,2015,GrandRapids +8,2015-11-01,0.91,205592.1,3731.64,147281.28,8605.43,45973.75,43392.69,1757.12,823.94,conventional,2015,GrandRapids +9,2015-10-25,1.14,134921.44,3899.73,86434.9,9431.21,35155.6,30487.72,3036.22,1631.66,conventional,2015,GrandRapids +10,2015-10-18,0.94,184806.99,3821.47,118521.96,17329.17,45134.39,40257.54,1830.77,3046.08,conventional,2015,GrandRapids +11,2015-10-11,0.97,198769.54,3638.99,106363.84,49279.06,39487.65,21799.3,2155.38,15532.97,conventional,2015,GrandRapids +12,2015-10-04,0.99,160322.48,3241.7,102316.58,18103.36,36660.84,29446.94,2198.98,5014.92,conventional,2015,GrandRapids +13,2015-09-27,1.15,137849.61,2977.77,87274.97,13024.28,34572.59,28888.74,1913.24,3770.61,conventional,2015,GrandRapids +14,2015-09-20,0.88,244696.01,3612.73,177686.12,9651.55,53745.61,51686.05,1815.57,243.99,conventional,2015,GrandRapids +15,2015-09-13,0.95,219380.93,4113.5,143018.46,20439.94,51809.03,43865.37,2851.68,5091.98,conventional,2015,GrandRapids +16,2015-09-06,1.09,170309.3,3673.53,111964.57,6016.37,48654.83,45108.48,3486.89,59.46,conventional,2015,GrandRapids +17,2015-08-30,0.91,226898.73,3931.2,152332.2,16719.44,53915.89,48562.08,2309.09,3044.72,conventional,2015,GrandRapids +18,2015-08-23,1.28,128681.94,4847.16,72826.86,5459.79,45548.13,40204.96,4716.36,626.81,conventional,2015,GrandRapids +19,2015-08-16,0.89,268902.14,5134.58,177609.75,20395.04,65762.77,55316.85,6674.12,3771.8,conventional,2015,GrandRapids +20,2015-08-09,1.08,186733.16,4807.41,120579.39,8389.85,52956.51,49559.83,3294.27,102.41,conventional,2015,GrandRapids +21,2015-08-02,1.05,184067.49,4122.95,109853.88,10359.57,59731.09,55048.69,4030.14,652.26,conventional,2015,GrandRapids +22,2015-07-26,1.12,153868.79,3192.59,66065.84,9957.92,74652.44,69267.05,4085.24,1300.15,conventional,2015,GrandRapids +23,2015-07-19,1.05,215736.47,2680.7,122122.69,29478.33,61454.75,52697.22,3806.21,4951.32,conventional,2015,GrandRapids +24,2015-07-12,1.19,153112.84,4663.59,66045.81,9833.58,72569.86,66368.31,4901.72,1299.83,conventional,2015,GrandRapids +25,2015-07-05,1.16,202842.97,2709.26,109357.57,34986.3,55789.84,44032.97,5692.28,6064.59,conventional,2015,GrandRapids +26,2015-06-28,1.1,155972.38,3089.5,55014.27,9941.32,87927.29,80548.8,5044.35,2334.14,conventional,2015,GrandRapids +27,2015-06-21,0.96,265555.66,2552.14,167585.16,32903.12,62515.24,53623.47,4943.16,3948.61,conventional,2015,GrandRapids +28,2015-06-14,1.07,197387.76,4446.1,116392.81,4934.17,71614.68,67207.35,4401.93,5.4,conventional,2015,GrandRapids +29,2015-06-07,1.14,212599.11,6926.42,134230.11,10407.58,61035.0,55432.55,4067.09,1535.36,conventional,2015,GrandRapids +30,2015-05-31,1.31,167907.51,7097.0,90411.8,3360.05,67038.66,64208.38,2794.35,35.93,conventional,2015,GrandRapids +31,2015-05-24,1.3,158917.21,7888.33,74169.01,3111.69,73748.18,69048.81,4663.55,35.82,conventional,2015,GrandRapids +32,2015-05-17,0.97,277502.12,5515.43,202939.01,12421.42,56626.26,52456.3,3991.49,178.47,conventional,2015,GrandRapids +33,2015-05-10,1.36,159642.82,7383.85,84947.73,3817.57,63493.67,59129.49,4335.74,28.44,conventional,2015,GrandRapids +34,2015-05-03,1.06,238550.81,6301.92,176717.87,6727.83,48803.19,46862.74,1898.03,42.42,conventional,2015,GrandRapids +35,2015-04-26,1.09,189609.49,4480.46,105590.91,6421.76,73116.36,68758.56,4305.08,52.72,conventional,2015,GrandRapids +36,2015-04-19,0.93,310672.4,5547.29,217323.81,15023.71,72777.59,68697.84,3761.98,317.77,conventional,2015,GrandRapids +37,2015-04-12,1.13,147494.24,5875.73,66804.31,2717.16,72097.04,68693.55,3377.45,26.04,conventional,2015,GrandRapids +38,2015-04-05,1.22,157721.54,4487.21,92044.84,5487.61,55701.88,50462.56,5165.79,73.53,conventional,2015,GrandRapids +39,2015-03-29,1.11,149631.24,1977.68,63600.68,3003.97,81048.91,75725.67,5299.2,24.04,conventional,2015,GrandRapids +40,2015-03-22,0.91,311876.75,1930.32,231211.7,19097.99,59636.74,57118.41,2105.9,412.43,conventional,2015,GrandRapids +41,2015-03-15,1.35,123895.07,1621.03,69452.53,4214.32,48607.19,45347.61,3244.22,15.36,conventional,2015,GrandRapids +42,2015-03-08,1.08,146835.6,1783.51,68592.44,3903.17,72556.48,69329.04,3169.54,57.9,conventional,2015,GrandRapids +43,2015-03-01,0.95,263987.21,1355.2,182093.72,26454.42,54083.87,47217.11,3519.09,3347.67,conventional,2015,GrandRapids +44,2015-02-22,1.31,129295.86,1593.4,69934.93,4894.78,52872.75,48858.06,3767.48,247.21,conventional,2015,GrandRapids +45,2015-02-15,1.21,136761.35,1659.05,67025.59,4215.01,63861.7,57601.99,6203.39,56.32,conventional,2015,GrandRapids +46,2015-02-08,1.24,132621.01,1155.67,74113.5,4855.23,52496.61,48150.41,4209.37,136.83,conventional,2015,GrandRapids +47,2015-02-01,0.94,309471.69,1621.68,240215.65,19211.54,48422.82,43899.75,4377.27,145.8,conventional,2015,GrandRapids +48,2015-01-25,1.19,144301.73,1112.09,78092.72,6374.01,58722.91,54053.21,4552.75,116.95,conventional,2015,GrandRapids +49,2015-01-18,1.07,150201.39,970.13,78433.37,6411.99,64385.9,60381.95,3727.81,276.14,conventional,2015,GrandRapids +50,2015-01-11,1.03,185135.41,972.96,127984.25,13798.9,42379.3,39193.44,2896.97,288.89,conventional,2015,GrandRapids +51,2015-01-04,0.95,258979.63,1097.0,189348.6,22612.46,45921.57,43899.46,1097.68,924.43,conventional,2015,GrandRapids +0,2015-12-27,1.01,2580602.96,336673.7,1411808.83,254629.93,577490.5,400003.8,98401.09,79085.61,conventional,2015,GreatLakes +1,2015-12-20,1.01,2504745.45,383701.76,1337404.03,241580.61,542059.05,358218.65,122999.48,60840.92,conventional,2015,GreatLakes +2,2015-12-13,1.03,2608448.06,463349.67,1342449.84,228576.54,574072.01,409909.7,148004.93,16157.38,conventional,2015,GreatLakes +3,2015-12-06,1.0,2981347.2,401676.14,1680591.43,398320.64,500758.99,325850.0,124306.44,50602.55,conventional,2015,GreatLakes +4,2015-11-29,1.07,2198408.92,318661.4,1199426.12,248818.72,431502.68,328369.47,83149.01,19984.2,conventional,2015,GreatLakes +5,2015-11-22,1.03,2601821.63,347803.29,1471865.16,280543.97,501609.21,391454.61,89472.08,20682.52,conventional,2015,GreatLakes +6,2015-11-15,1.09,2494044.41,342002.87,1322818.28,248635.49,580587.77,465154.46,99695.62,15737.69,conventional,2015,GreatLakes +7,2015-11-08,0.98,3184946.53,410061.0,1794703.2,425242.73,554939.6,365002.12,138161.32,51776.16,conventional,2015,GreatLakes +8,2015-11-01,1.0,3229124.75,436343.74,1825512.93,388703.05,578565.03,399665.31,133071.89,45827.83,conventional,2015,GreatLakes +9,2015-10-25,1.1,2671535.94,383559.81,1460066.36,331096.84,496812.93,335249.25,130933.76,30629.92,conventional,2015,GreatLakes +10,2015-10-18,1.03,2981549.94,396690.54,1695841.56,353741.96,535275.88,419558.97,92629.46,23087.45,conventional,2015,GreatLakes +11,2015-10-11,1.02,3004133.39,355508.86,1652244.4,456771.26,539608.87,384772.59,93016.17,61820.11,conventional,2015,GreatLakes +12,2015-10-04,1.05,2814678.93,296032.66,1632488.05,381986.61,504171.61,354840.13,106127.86,43203.62,conventional,2015,GreatLakes +13,2015-09-27,1.1,2770074.76,343271.52,1605775.14,344488.51,476539.59,327299.75,103091.55,46148.29,conventional,2015,GreatLakes +14,2015-09-20,1.02,3336245.24,460475.95,1887110.85,418235.21,570423.23,406010.16,109268.58,55144.49,conventional,2015,GreatLakes +15,2015-09-13,1.03,3532480.92,492741.15,1958150.0,447108.5,634481.27,448051.74,132685.58,53743.95,conventional,2015,GreatLakes +16,2015-09-06,1.07,3272555.01,432770.76,1876392.91,348448.68,614942.66,468148.29,121209.44,25584.93,conventional,2015,GreatLakes +17,2015-08-30,1.04,3388803.79,478858.03,1877733.21,419390.5,612822.05,457558.59,111788.68,43474.78,conventional,2015,GreatLakes +18,2015-08-23,1.14,2849127.29,404182.26,1596909.93,279710.88,568324.22,427635.3,122225.92,18463.0,conventional,2015,GreatLakes +19,2015-08-16,1.03,3653376.07,414756.68,2087149.52,475383.38,676086.49,486209.97,129683.8,60192.72,conventional,2015,GreatLakes +20,2015-08-09,1.12,3230139.65,420919.7,1839862.82,331336.66,638020.47,497895.48,115527.66,24597.33,conventional,2015,GreatLakes +21,2015-08-02,1.14,3162447.64,490577.01,1722754.95,321610.93,627504.75,500704.88,104570.86,22229.01,conventional,2015,GreatLakes +22,2015-07-26,1.1,3135698.38,475306.73,1616355.0,281882.1,762154.55,617211.53,127530.47,17412.55,conventional,2015,GreatLakes +23,2015-07-19,1.12,3436864.41,449090.82,1843047.36,454643.18,690083.05,535843.25,110898.39,43341.41,conventional,2015,GreatLakes +24,2015-07-12,1.14,3077237.12,456044.5,1617124.36,288141.07,715927.19,581802.24,120335.36,13789.59,conventional,2015,GreatLakes +25,2015-07-05,1.13,3774004.27,502233.05,2055125.98,442059.88,774585.36,606612.51,140253.5,27719.35,conventional,2015,GreatLakes +26,2015-06-28,1.07,3336314.35,476721.82,1631460.3,261863.52,966268.71,803974.11,148652.02,13642.58,conventional,2015,GreatLakes +27,2015-06-21,1.08,3720458.83,487936.68,1958437.1,493928.69,780156.36,611156.81,132172.82,36826.73,conventional,2015,GreatLakes +28,2015-06-14,1.12,3511185.14,604782.48,1744519.06,346867.18,815016.42,683334.7,119899.69,11782.03,conventional,2015,GreatLakes +29,2015-06-07,1.13,3602112.79,689242.14,1723625.04,447117.42,742128.19,584086.31,122232.65,35809.23,conventional,2015,GreatLakes +30,2015-05-31,1.2,3151714.0,667193.97,1478975.82,280464.92,725079.29,593192.94,119920.22,11966.13,conventional,2015,GreatLakes +31,2015-05-24,1.15,3574050.61,758183.5,1764210.85,263068.72,788587.54,641756.72,134308.54,12522.28,conventional,2015,GreatLakes +32,2015-05-17,1.09,3753201.03,787079.55,1939235.3,406338.23,620547.95,481046.82,110126.4,29374.73,conventional,2015,GreatLakes +33,2015-05-10,1.15,3501344.46,766730.7,1723310.79,274259.73,737043.24,585000.53,147022.85,5019.86,conventional,2015,GreatLakes +34,2015-05-03,1.05,3901054.42,719493.66,2200706.49,327171.65,653682.62,493009.35,146837.36,13835.91,conventional,2015,GreatLakes +35,2015-04-26,1.14,3234024.32,609506.22,1580854.41,294073.96,749589.73,615887.17,116500.49,17202.07,conventional,2015,GreatLakes +36,2015-04-19,1.06,3857605.11,615564.03,2140254.41,383840.98,717945.69,609139.49,84879.59,23926.61,conventional,2015,GreatLakes +37,2015-04-12,1.11,2895992.9,548501.37,1403326.56,190091.28,754073.69,688965.8,60642.37,4465.52,conventional,2015,GreatLakes +38,2015-04-05,1.18,2938918.81,504487.79,1595354.39,221603.31,617473.32,552075.78,61643.12,3754.42,conventional,2015,GreatLakes +39,2015-03-29,1.09,2971443.88,456518.93,1472879.42,196545.04,845500.49,758625.31,82421.91,4453.27,conventional,2015,GreatLakes +40,2015-03-22,1.04,3746598.18,543151.72,2146436.5,451798.84,605211.12,453829.96,105804.36,45576.8,conventional,2015,GreatLakes +41,2015-03-15,1.1,2948199.23,475449.58,1626922.95,223788.7,622038.0,498932.31,114147.11,8958.58,conventional,2015,GreatLakes +42,2015-03-08,1.04,3134752.64,380674.2,1675102.29,253978.78,824997.37,697812.88,114519.6,12664.89,conventional,2015,GreatLakes +43,2015-03-01,1.02,3566752.43,353818.94,2135517.89,478701.64,598713.96,462539.26,88541.92,47632.78,conventional,2015,GreatLakes +44,2015-02-22,1.16,2730224.03,391400.93,1482033.31,246541.13,610248.66,512270.39,88536.91,9441.36,conventional,2015,GreatLakes +45,2015-02-15,1.15,2610004.41,390973.21,1331420.43,237030.33,650580.44,561485.4,81172.24,7922.8,conventional,2015,GreatLakes +46,2015-02-08,1.07,2856456.35,515789.01,1541252.99,238780.53,560633.82,472576.07,78544.87,9512.88,conventional,2015,GreatLakes +47,2015-02-01,0.91,4874124.41,768874.35,2948564.71,510153.65,646531.7,479453.25,126925.79,40152.66,conventional,2015,GreatLakes +48,2015-01-25,1.13,2928692.32,390289.67,1649082.75,271642.56,617677.34,503612.64,109501.0,4563.7,conventional,2015,GreatLakes +49,2015-01-18,1.08,3006207.02,401683.43,1650327.26,257105.89,697090.44,600155.95,93434.54,3499.95,conventional,2015,GreatLakes +50,2015-01-11,1.1,3067638.32,416900.3,1818618.04,316856.73,515263.25,412976.97,91214.54,11071.74,conventional,2015,GreatLakes +51,2015-01-04,1.02,3382800.12,467259.47,2059657.71,318102.38,537780.56,412779.64,111072.91,13928.01,conventional,2015,GreatLakes +0,2015-12-27,1.16,173645.55,22694.58,98629.2,149.11,52172.66,51396.6,776.06,0.0,conventional,2015,HarrisburgScranton +1,2015-12-20,1.11,180186.23,24111.34,100758.01,158.29,55158.59,53929.04,1229.55,0.0,conventional,2015,HarrisburgScranton +2,2015-12-13,1.14,187058.65,27053.78,107144.99,229.97,52629.91,51752.86,877.05,0.0,conventional,2015,HarrisburgScranton +3,2015-12-06,1.1,171195.76,25260.16,99013.86,118.19,46803.55,46345.26,458.29,0.0,conventional,2015,HarrisburgScranton +4,2015-11-29,1.17,146103.34,23707.06,82015.89,110.54,40269.85,39640.65,629.2,0.0,conventional,2015,HarrisburgScranton +5,2015-11-22,1.16,162429.43,26601.95,85742.43,198.26,49886.79,47519.78,2367.01,0.0,conventional,2015,HarrisburgScranton +6,2015-11-15,1.09,189916.88,25483.85,113515.58,93.58,50823.87,46939.57,3884.3,0.0,conventional,2015,HarrisburgScranton +7,2015-11-08,1.09,214993.36,27837.88,137670.52,169.5,49315.46,47637.88,1677.58,0.0,conventional,2015,HarrisburgScranton +8,2015-11-01,1.13,219970.37,28916.15,140625.82,173.18,50255.22,49340.53,914.69,0.0,conventional,2015,HarrisburgScranton +9,2015-10-25,1.11,183276.68,27595.5,101618.92,185.61,53876.65,52569.78,1306.87,0.0,conventional,2015,HarrisburgScranton +10,2015-10-18,0.93,264223.22,27640.26,186372.86,408.03,49802.07,48878.61,923.46,0.0,conventional,2015,HarrisburgScranton +11,2015-10-11,1.05,225079.92,32042.53,137367.2,267.77,55402.42,53610.63,1791.79,0.0,conventional,2015,HarrisburgScranton +12,2015-10-04,1.16,188436.91,32554.49,95392.4,323.79,60166.23,59227.5,938.73,0.0,conventional,2015,HarrisburgScranton +13,2015-09-27,1.15,192478.26,30410.27,108385.85,294.6,53387.54,51731.16,1656.38,0.0,conventional,2015,HarrisburgScranton +14,2015-09-20,1.17,188314.24,31925.36,101200.97,279.75,54908.16,53988.59,919.57,0.0,conventional,2015,HarrisburgScranton +15,2015-09-13,1.07,254744.58,33047.61,170884.4,294.21,50518.36,48537.65,1980.71,0.0,conventional,2015,HarrisburgScranton +16,2015-09-06,1.19,225494.59,37453.63,128772.37,465.01,58803.58,57426.04,1344.61,32.93,conventional,2015,HarrisburgScranton +17,2015-08-30,1.18,219908.82,34595.95,125106.29,614.86,59591.72,57205.13,1779.77,606.82,conventional,2015,HarrisburgScranton +18,2015-08-23,1.1,222637.15,37213.9,128402.42,584.81,56436.02,54580.78,1140.14,715.1,conventional,2015,HarrisburgScranton +19,2015-08-16,1.09,247813.45,37089.49,161018.66,402.5,49302.8,48581.44,714.85,6.51,conventional,2015,HarrisburgScranton +20,2015-08-09,1.07,247575.06,40320.2,149595.95,510.58,57148.33,56333.05,815.28,0.0,conventional,2015,HarrisburgScranton +21,2015-08-02,1.1,242281.36,40387.93,143352.05,733.22,57808.16,56786.27,1018.67,3.22,conventional,2015,HarrisburgScranton +22,2015-07-26,1.17,225227.57,39346.13,123455.52,480.44,61945.48,60632.24,1271.5,41.74,conventional,2015,HarrisburgScranton +23,2015-07-19,1.19,229650.57,42405.8,119272.94,1020.51,66951.32,65842.25,1051.54,57.53,conventional,2015,HarrisburgScranton +24,2015-07-12,1.17,233638.96,42200.05,119798.85,2740.31,68899.75,67025.83,1705.19,168.73,conventional,2015,HarrisburgScranton +25,2015-07-05,1.19,275844.88,49829.42,142250.13,3215.99,80549.34,78409.83,1623.22,516.29,conventional,2015,HarrisburgScranton +26,2015-06-28,1.2,243537.29,42688.0,124701.97,2556.6,73590.72,70488.1,2376.23,726.39,conventional,2015,HarrisburgScranton +27,2015-06-21,1.19,255431.85,44179.19,128614.97,3182.4,79455.29,76907.65,1624.65,922.99,conventional,2015,HarrisburgScranton +28,2015-06-14,1.13,277578.88,42766.16,140403.76,2028.31,92380.65,87952.58,2821.41,1606.66,conventional,2015,HarrisburgScranton +29,2015-06-07,1.21,265638.42,40587.95,138950.26,675.56,85424.65,81417.34,3219.51,787.8,conventional,2015,HarrisburgScranton +30,2015-05-31,1.22,260058.34,42572.44,125281.89,804.17,91399.84,87880.67,2341.73,1177.44,conventional,2015,HarrisburgScranton +31,2015-05-24,1.21,270097.92,43499.81,132429.7,777.66,93390.75,89913.88,2641.89,834.98,conventional,2015,HarrisburgScranton +32,2015-05-17,1.19,252843.56,44842.47,120942.94,487.01,86571.14,85065.22,1400.8,105.12,conventional,2015,HarrisburgScranton +33,2015-05-10,1.19,299147.73,53021.23,158314.43,585.43,87226.64,85161.38,2065.26,0.0,conventional,2015,HarrisburgScranton +34,2015-05-03,1.17,255913.63,46183.27,130134.66,527.56,79068.14,76930.85,2137.29,0.0,conventional,2015,HarrisburgScranton +35,2015-04-26,1.21,234322.13,45102.26,118533.62,415.14,70271.11,68210.88,2022.73,37.5,conventional,2015,HarrisburgScranton +36,2015-04-19,1.17,237429.16,45693.41,112023.17,501.77,79210.81,77244.93,1965.88,0.0,conventional,2015,HarrisburgScranton +37,2015-04-12,1.18,201544.53,35513.59,101051.47,400.34,64579.13,62948.16,1630.97,0.0,conventional,2015,HarrisburgScranton +38,2015-04-05,1.21,216376.66,35705.85,112157.42,485.39,68028.0,66320.66,1643.45,63.89,conventional,2015,HarrisburgScranton +39,2015-03-29,1.14,197282.25,31891.81,102587.16,418.1,62385.18,61035.96,1349.22,0.0,conventional,2015,HarrisburgScranton +40,2015-03-22,1.08,219149.75,28701.47,129731.5,481.59,60235.19,57777.32,2457.87,0.0,conventional,2015,HarrisburgScranton +41,2015-03-15,1.2,190760.3,31225.82,84433.44,470.53,74630.51,72181.56,2448.95,0.0,conventional,2015,HarrisburgScranton +42,2015-03-08,1.15,192277.92,38517.23,75750.79,334.13,77675.77,75825.42,1850.35,0.0,conventional,2015,HarrisburgScranton +43,2015-03-01,1.07,230913.14,28899.98,134019.55,614.07,67379.54,65870.9,1508.64,0.0,conventional,2015,HarrisburgScranton +44,2015-02-22,1.2,191040.19,32241.22,83702.91,506.96,74589.1,73386.08,1203.02,0.0,conventional,2015,HarrisburgScranton +45,2015-02-15,1.22,187671.77,28592.73,85311.1,503.53,73264.41,72146.24,1118.17,0.0,conventional,2015,HarrisburgScranton +46,2015-02-08,1.02,239756.62,35933.38,126557.74,722.59,76542.91,75408.57,1134.34,0.0,conventional,2015,HarrisburgScranton +47,2015-02-01,1.06,283137.88,42732.12,168621.69,851.33,70932.74,69529.64,1403.1,0.0,conventional,2015,HarrisburgScranton +48,2015-01-25,1.17,206074.14,33193.27,89075.29,426.35,83379.23,79720.85,3658.38,0.0,conventional,2015,HarrisburgScranton +49,2015-01-18,1.24,182604.68,30928.18,85410.46,535.87,65730.17,64180.88,1549.29,0.0,conventional,2015,HarrisburgScranton +50,2015-01-11,1.26,178735.25,34535.57,78778.96,582.3,64838.42,63840.09,998.33,0.0,conventional,2015,HarrisburgScranton +51,2015-01-04,1.05,203939.14,32679.84,121020.54,1286.19,48952.57,47583.64,1368.93,0.0,conventional,2015,HarrisburgScranton +0,2015-12-27,1.27,243556.57,4427.27,194438.24,169.66,44521.4,43577.26,944.14,0.0,conventional,2015,HartfordSpringfield +1,2015-12-20,1.18,264155.74,4806.75,212205.34,184.96,46958.69,45981.69,977.0,0.0,conventional,2015,HartfordSpringfield +2,2015-12-13,1.24,238558.16,4439.86,186550.43,332.83,47235.04,46493.47,741.57,0.0,conventional,2015,HartfordSpringfield +3,2015-12-06,1.19,239945.42,4269.91,199395.25,192.36,36087.9,35448.13,639.77,0.0,conventional,2015,HartfordSpringfield +4,2015-11-29,1.32,213631.54,3572.7,172790.41,169.1,37099.33,36423.45,675.88,0.0,conventional,2015,HartfordSpringfield +5,2015-11-22,1.27,212091.14,3720.08,176358.45,319.25,31693.36,30800.02,893.34,0.0,conventional,2015,HartfordSpringfield +6,2015-11-15,1.12,275217.97,4680.06,228183.77,197.29,42156.85,40290.46,1866.39,0.0,conventional,2015,HartfordSpringfield +7,2015-11-08,1.16,309186.06,5048.2,260745.71,171.88,43220.27,37770.33,5449.94,0.0,conventional,2015,HartfordSpringfield +8,2015-11-01,1.16,326067.03,4471.3,271817.93,288.44,49489.36,44831.2,4658.16,0.0,conventional,2015,HartfordSpringfield +9,2015-10-25,1.2,234361.36,3444.57,183080.97,300.22,47535.6,43920.24,3615.36,0.0,conventional,2015,HartfordSpringfield +10,2015-10-18,0.93,407866.27,4980.03,357183.34,594.12,45108.78,42004.56,3104.22,0.0,conventional,2015,HartfordSpringfield +11,2015-10-11,1.38,264227.78,4555.33,206738.06,491.68,52442.71,49064.3,3378.41,0.0,conventional,2015,HartfordSpringfield +12,2015-10-04,1.3,262638.61,5369.78,205512.49,287.31,51469.03,46352.66,5116.37,0.0,conventional,2015,HartfordSpringfield +13,2015-09-27,1.29,247141.63,3978.86,196807.93,248.86,46105.98,42271.23,3834.75,0.0,conventional,2015,HartfordSpringfield +14,2015-09-20,1.25,241532.74,3716.84,179938.31,270.67,57606.92,52877.17,4729.75,0.0,conventional,2015,HartfordSpringfield +15,2015-09-13,1.11,341176.21,4326.64,283221.2,206.25,53422.12,47929.52,5492.6,0.0,conventional,2015,HartfordSpringfield +16,2015-09-06,1.27,281256.19,3976.35,221997.7,497.89,54784.25,52839.06,1945.19,0.0,conventional,2015,HartfordSpringfield +17,2015-08-30,1.26,292827.27,3882.25,241162.58,593.94,47188.5,46616.28,572.22,0.0,conventional,2015,HartfordSpringfield +18,2015-08-23,1.14,298493.22,4337.08,248478.66,422.19,45255.29,44345.82,909.47,0.0,conventional,2015,HartfordSpringfield +19,2015-08-16,1.12,351074.46,4402.25,292976.9,886.72,52808.59,51496.76,1311.83,0.0,conventional,2015,HartfordSpringfield +20,2015-08-09,1.12,354490.75,4619.78,292318.39,706.64,56845.94,55625.9,1220.04,0.0,conventional,2015,HartfordSpringfield +21,2015-08-02,1.16,323449.77,4543.97,268797.64,1283.94,48824.22,47631.34,1192.88,0.0,conventional,2015,HartfordSpringfield +22,2015-07-26,1.3,266049.58,3579.93,205203.65,2171.08,55094.92,52815.8,2279.12,0.0,conventional,2015,HartfordSpringfield +23,2015-07-19,1.32,258239.1,3759.04,189919.51,5496.69,59063.86,56769.39,2294.47,0.0,conventional,2015,HartfordSpringfield +24,2015-07-12,1.06,389782.2,4947.35,299937.47,11286.35,73611.03,71429.27,2181.76,0.0,conventional,2015,HartfordSpringfield +25,2015-07-05,1.25,339064.22,4847.8,250696.56,11793.14,71726.72,67565.11,4161.61,0.0,conventional,2015,HartfordSpringfield +26,2015-06-28,1.27,304624.07,4253.95,226699.55,9682.22,63988.35,60622.57,3365.78,0.0,conventional,2015,HartfordSpringfield +27,2015-06-21,1.25,341628.84,4030.52,258200.71,10100.06,69297.55,67505.16,1792.39,0.0,conventional,2015,HartfordSpringfield +28,2015-06-14,1.15,338036.94,4926.58,253423.88,6839.64,72846.84,69607.77,3239.07,0.0,conventional,2015,HartfordSpringfield +29,2015-06-07,1.29,353474.52,4435.64,281285.58,219.26,67534.04,66052.8,1481.24,0.0,conventional,2015,HartfordSpringfield +30,2015-05-31,1.33,319502.82,4974.69,237651.14,142.52,76734.47,74809.0,1925.47,0.0,conventional,2015,HartfordSpringfield +31,2015-05-24,1.34,314930.61,4532.15,229800.24,177.56,80420.66,78505.66,1915.0,0.0,conventional,2015,HartfordSpringfield +32,2015-05-17,1.2,358753.17,4623.9,281567.1,249.3,72312.87,69888.23,2424.64,0.0,conventional,2015,HartfordSpringfield +33,2015-05-10,1.25,370924.13,5262.94,288462.56,390.91,76807.72,73455.49,3352.23,0.0,conventional,2015,HartfordSpringfield +34,2015-05-03,1.25,329589.03,4005.44,255378.5,539.0,69666.09,66957.03,2709.06,0.0,conventional,2015,HartfordSpringfield +35,2015-04-26,1.36,277178.42,4159.5,206008.87,229.9,66780.15,64008.53,2693.84,77.78,conventional,2015,HartfordSpringfield +36,2015-04-19,1.35,271198.73,3625.55,196720.42,175.12,70677.64,66844.17,3833.47,0.0,conventional,2015,HartfordSpringfield +37,2015-04-12,1.25,251083.39,3432.34,182584.86,133.93,64932.26,63103.19,1829.07,0.0,conventional,2015,HartfordSpringfield +38,2015-04-05,1.33,246967.21,4021.27,183801.36,194.45,58950.13,56550.7,2399.43,0.0,conventional,2015,HartfordSpringfield +39,2015-03-29,1.22,241495.12,3980.5,184277.87,217.08,53019.67,50509.85,2509.82,0.0,conventional,2015,HartfordSpringfield +40,2015-03-22,1.11,292821.36,5900.6,230143.88,139.93,56636.95,53990.12,2646.83,0.0,conventional,2015,HartfordSpringfield +41,2015-03-15,1.4,225761.68,6740.23,150490.66,160.54,68370.25,65306.48,3063.77,0.0,conventional,2015,HartfordSpringfield +42,2015-03-08,1.43,210375.08,3253.02,125712.73,145.3,81264.03,77718.63,3545.4,0.0,conventional,2015,HartfordSpringfield +43,2015-03-01,1.12,314917.55,4547.97,250129.65,271.71,59968.22,57600.88,2367.34,0.0,conventional,2015,HartfordSpringfield +44,2015-02-22,1.38,220210.32,3632.57,142741.2,285.7,73550.85,71330.51,2220.34,0.0,conventional,2015,HartfordSpringfield +45,2015-02-15,1.39,223170.31,3681.09,138690.77,216.75,80581.7,79026.53,1555.17,0.0,conventional,2015,HartfordSpringfield +46,2015-02-08,1.09,364571.57,6791.17,289098.22,215.13,68467.05,65594.58,2872.47,0.0,conventional,2015,HartfordSpringfield +47,2015-02-01,1.32,297969.31,4803.72,216923.02,364.83,75877.74,72234.63,3643.11,0.0,conventional,2015,HartfordSpringfield +48,2015-01-25,1.35,241174.11,4305.86,150044.76,231.99,86591.5,79402.42,7189.08,0.0,conventional,2015,HartfordSpringfield +49,2015-01-18,1.39,229216.05,3347.41,160683.8,286.52,64898.32,62671.58,2226.74,0.0,conventional,2015,HartfordSpringfield +50,2015-01-11,1.38,232640.15,4365.27,143001.84,223.15,85049.89,83319.8,1730.09,0.0,conventional,2015,HartfordSpringfield +51,2015-01-04,1.06,332208.14,6387.6,267593.62,165.35,58061.57,55401.31,2660.26,0.0,conventional,2015,HartfordSpringfield +0,2015-12-27,0.78,944506.54,389773.22,288003.62,126150.81,140578.89,73711.94,36493.62,30373.33,conventional,2015,Houston +1,2015-12-20,0.75,922355.67,382444.22,278067.11,127372.19,134472.15,72198.16,31520.66,30753.33,conventional,2015,Houston +2,2015-12-13,0.73,998752.95,412187.8,386865.21,81450.04,118249.9,69011.01,48622.22,616.67,conventional,2015,Houston +3,2015-12-06,0.74,989676.85,368528.91,490805.0,7041.19,123301.75,61020.31,62281.44,0.0,conventional,2015,Houston +4,2015-11-29,0.79,783225.98,391616.95,289533.68,4334.89,97740.46,67880.28,29860.18,0.0,conventional,2015,Houston +5,2015-11-22,0.73,913002.96,402191.51,391110.76,6924.43,112776.26,70785.25,41991.01,0.0,conventional,2015,Houston +6,2015-11-15,0.72,998801.78,530464.33,332541.11,4611.0,131185.34,62414.66,68770.68,0.0,conventional,2015,Houston +7,2015-11-08,0.75,983909.85,427828.16,411365.91,20404.29,124311.49,56573.89,67737.6,0.0,conventional,2015,Houston +8,2015-11-01,0.77,1007805.74,395945.0,365506.02,111263.81,135090.91,56198.27,78892.64,0.0,conventional,2015,Houston +9,2015-10-25,0.88,933623.58,437329.85,313129.29,81274.85,101889.59,57577.21,44260.6,51.78,conventional,2015,Houston +10,2015-10-18,0.9,847813.12,436132.2,242842.91,80895.03,87942.98,59835.83,28107.15,0.0,conventional,2015,Houston +11,2015-10-11,0.79,1036269.51,410949.18,385629.69,126765.96,112924.68,62638.13,50286.55,0.0,conventional,2015,Houston +12,2015-10-04,0.82,1019283.99,411727.49,435388.05,43558.15,128610.3,59751.0,68859.3,0.0,conventional,2015,Houston +13,2015-09-27,0.86,968988.09,383218.43,458982.9,16780.9,110005.86,61098.51,48907.35,0.0,conventional,2015,Houston +14,2015-09-20,0.83,967228.05,417701.88,445473.03,6959.5,97093.64,55198.32,41895.32,0.0,conventional,2015,Houston +15,2015-09-13,0.89,1095790.27,421533.83,540499.39,5559.36,128197.69,55636.91,72560.78,0.0,conventional,2015,Houston +16,2015-09-06,0.89,1090493.39,460377.08,495487.54,6230.7,128398.07,63724.96,64673.11,0.0,conventional,2015,Houston +17,2015-08-30,0.88,926124.93,559048.7,260761.33,4514.17,101800.73,72264.6,29536.13,0.0,conventional,2015,Houston +18,2015-08-23,0.89,933166.17,509472.17,321616.5,4323.68,97753.82,62733.47,35020.35,0.0,conventional,2015,Houston +19,2015-08-16,0.92,968899.09,565965.79,297434.65,3479.25,102019.4,65764.02,36255.38,0.0,conventional,2015,Houston +20,2015-08-09,0.92,935149.69,474778.09,356592.63,5288.3,98490.67,62834.44,35656.23,0.0,conventional,2015,Houston +21,2015-08-02,0.9,948126.9,568694.81,281941.22,3494.6,93996.27,60782.86,33213.41,0.0,conventional,2015,Houston +22,2015-07-26,0.79,1086740.19,522819.52,443177.18,5096.53,115646.96,69845.31,45801.65,0.0,conventional,2015,Houston +23,2015-07-19,0.78,1093424.59,517797.01,424786.53,4233.66,146607.39,73695.03,72912.36,0.0,conventional,2015,Houston +24,2015-07-12,0.79,999607.51,559622.59,307628.06,3226.08,129130.78,71467.17,57474.72,188.89,conventional,2015,Houston +25,2015-07-05,0.79,1173819.67,652959.91,371700.87,3957.2,145201.69,98660.98,46540.71,0.0,conventional,2015,Houston +26,2015-06-28,0.74,1135915.03,613485.76,337700.09,1935.65,182793.53,87444.74,95348.79,0.0,conventional,2015,Houston +27,2015-06-21,0.74,1196121.27,578767.93,449584.59,2227.98,165540.77,84406.17,81134.6,0.0,conventional,2015,Houston +28,2015-06-14,0.62,1533409.28,924661.29,439063.48,4700.1,164984.41,85200.08,79784.33,0.0,conventional,2015,Houston +29,2015-06-07,0.72,1172177.72,675888.37,364707.14,3899.67,127682.54,72504.8,55177.74,0.0,conventional,2015,Houston +30,2015-05-31,0.72,1262932.78,757230.93,383626.57,2927.27,119148.01,53981.67,65166.34,0.0,conventional,2015,Houston +31,2015-05-24,0.83,1089679.39,662438.33,324447.92,5151.72,97641.42,58142.73,39498.69,0.0,conventional,2015,Houston +32,2015-05-17,0.82,1025659.59,676510.74,263395.46,3241.06,82512.33,47881.9,34630.43,0.0,conventional,2015,Houston +33,2015-05-10,0.76,1201673.17,654227.6,424395.94,3776.21,119273.42,49686.88,69586.54,0.0,conventional,2015,Houston +34,2015-05-03,0.74,1296308.05,651055.45,502617.22,4521.86,138113.52,55875.33,82238.19,0.0,conventional,2015,Houston +35,2015-04-26,0.79,1082231.89,689172.94,295785.8,5527.28,91745.87,58557.13,33188.74,0.0,conventional,2015,Houston +36,2015-04-19,0.82,933033.17,566197.65,250464.55,3898.56,112472.41,78217.04,34255.37,0.0,conventional,2015,Houston +37,2015-04-12,0.79,1096074.97,631292.63,353794.42,3936.53,107051.39,97144.19,9907.2,0.0,conventional,2015,Houston +38,2015-04-05,0.83,1249645.2,608887.6,496479.07,4878.2,139400.33,132586.15,6814.18,0.0,conventional,2015,Houston +39,2015-03-29,0.79,1116225.29,502389.02,480447.28,4633.28,128755.71,122988.43,5767.28,0.0,conventional,2015,Houston +40,2015-03-22,0.8,1036663.77,514614.47,393974.61,5199.15,122875.54,71977.68,50897.86,0.0,conventional,2015,Houston +41,2015-03-15,0.77,1043172.77,526390.61,401259.86,5000.2,110522.1,62352.87,48169.23,0.0,conventional,2015,Houston +42,2015-03-08,0.78,1166055.83,507328.95,517669.77,5321.52,135735.59,60498.92,75236.67,0.0,conventional,2015,Houston +43,2015-03-01,0.87,991328.46,481279.09,391780.92,4149.71,114118.74,63264.46,50854.28,0.0,conventional,2015,Houston +44,2015-02-22,0.82,978807.74,520034.92,346617.64,6532.39,105622.79,73227.41,32395.38,0.0,conventional,2015,Houston +45,2015-02-15,0.73,1062387.72,571823.28,364817.51,5598.15,120148.78,83840.62,36308.16,0.0,conventional,2015,Houston +46,2015-02-08,0.7,1180723.02,525259.71,535768.93,5175.33,114519.05,103507.51,11011.54,0.0,conventional,2015,Houston +47,2015-02-01,0.72,1280364.01,540024.17,597855.73,8063.4,134420.71,86145.18,48275.53,0.0,conventional,2015,Houston +48,2015-01-25,0.77,983910.94,549415.32,309974.97,4231.47,120289.18,95546.28,24742.9,0.0,conventional,2015,Houston +49,2015-01-18,0.77,1017854.16,458532.19,429687.47,9353.74,120280.76,107320.39,12960.37,0.0,conventional,2015,Houston +50,2015-01-11,0.78,1062071.65,463272.52,441785.8,4094.47,152918.86,126995.76,25923.1,0.0,conventional,2015,Houston +51,2015-01-04,0.71,1062990.62,506426.58,436347.57,4378.92,115837.55,90299.85,25537.7,0.0,conventional,2015,Houston +0,2015-12-27,1.04,123096.09,4647.28,69384.73,11206.4,37857.68,20644.64,11524.06,5688.98,conventional,2015,Indianapolis +1,2015-12-20,1.1,116353.68,3702.2,67983.94,9327.71,35339.83,18144.63,12133.67,5061.53,conventional,2015,Indianapolis +2,2015-12-13,1.03,125342.89,4904.51,69984.32,11398.44,39055.62,21259.82,15580.08,2215.72,conventional,2015,Indianapolis +3,2015-12-06,0.92,145740.44,4067.0,89452.99,13570.12,38650.33,19365.92,17733.68,1550.73,conventional,2015,Indianapolis +4,2015-11-29,1.08,108444.41,3079.44,65254.08,10854.59,29256.3,17455.74,9975.21,1825.35,conventional,2015,Indianapolis +5,2015-11-22,1.11,115384.56,3979.57,68939.61,9639.94,32825.44,20313.48,11041.51,1470.45,conventional,2015,Indianapolis +6,2015-11-15,1.08,124218.61,3478.99,71346.37,12795.08,36598.17,22294.87,11753.19,2550.11,conventional,2015,Indianapolis +7,2015-11-08,0.96,147799.55,4337.57,84844.19,20220.42,38397.37,19246.38,15189.72,3961.27,conventional,2015,Indianapolis +8,2015-11-01,1.01,147459.62,5224.61,84968.04,16933.14,40333.83,20800.04,16206.13,3327.66,conventional,2015,Indianapolis +9,2015-10-25,1.02,151558.74,4333.17,89943.26,16586.3,40696.01,18548.38,19394.8,2752.83,conventional,2015,Indianapolis +10,2015-10-18,0.97,159463.52,4397.88,102117.87,12142.13,40805.64,24129.91,15546.0,1129.73,conventional,2015,Indianapolis +11,2015-10-11,1.1,128848.68,4270.64,75604.83,13860.26,35112.95,21300.25,11566.09,2246.61,conventional,2015,Indianapolis +12,2015-10-04,0.98,139679.01,3645.9,87385.31,13528.83,35118.97,18727.08,14546.97,1844.92,conventional,2015,Indianapolis +13,2015-09-27,1.04,139490.52,2961.25,85578.17,16176.43,34774.67,19742.24,12078.24,2954.19,conventional,2015,Indianapolis +14,2015-09-20,0.91,185962.59,3942.44,116683.58,24166.47,41170.1,18045.98,18135.33,4988.79,conventional,2015,Indianapolis +15,2015-09-13,0.87,201620.58,3668.07,130327.72,17967.91,49656.88,22010.51,24284.79,3361.58,conventional,2015,Indianapolis +16,2015-09-06,1.11,156608.28,3361.77,92568.64,16662.01,44015.86,25163.49,15845.63,3006.74,conventional,2015,Indianapolis +17,2015-08-30,1.17,147066.48,3709.1,86767.95,15531.08,41058.35,23305.32,15000.54,2752.49,conventional,2015,Indianapolis +18,2015-08-23,1.22,131935.23,4293.59,77251.43,10288.24,40101.97,23701.08,14786.36,1614.53,conventional,2015,Indianapolis +19,2015-08-16,1.14,160059.77,5270.74,90141.76,20017.79,44629.48,23010.0,17605.07,4014.41,conventional,2015,Indianapolis +20,2015-08-09,1.2,148384.89,3553.34,91631.6,12389.35,40810.6,24883.56,14289.69,1637.35,conventional,2015,Indianapolis +21,2015-08-02,1.21,151883.21,3914.24,94006.28,13847.9,40114.79,22812.1,14978.27,2324.42,conventional,2015,Indianapolis +22,2015-07-26,1.22,144476.44,3840.1,84797.31,7897.34,47941.69,27526.1,19119.03,1296.56,conventional,2015,Indianapolis +23,2015-07-19,1.07,168164.47,4866.47,101983.73,15100.98,46213.29,25201.47,18741.75,2270.07,conventional,2015,Indianapolis +24,2015-07-12,1.05,161431.59,4181.35,101947.17,7053.06,48250.01,27061.56,20240.11,948.34,conventional,2015,Indianapolis +25,2015-07-05,1.05,190716.43,4890.33,119457.27,13495.86,52872.97,30631.37,21037.53,1204.07,conventional,2015,Indianapolis +26,2015-06-28,0.95,198267.13,5514.89,121148.6,9267.12,62336.52,34863.23,26114.84,1358.45,conventional,2015,Indianapolis +27,2015-06-21,1.03,205199.16,7214.14,124628.24,14564.3,58792.48,33861.06,23155.13,1776.29,conventional,2015,Indianapolis +28,2015-06-14,1.15,173545.33,10382.27,97079.96,13744.21,52338.89,33478.56,17581.12,1279.21,conventional,2015,Indianapolis +29,2015-06-07,1.28,155730.59,16121.1,80781.48,10648.98,48179.03,30541.64,15866.46,1770.93,conventional,2015,Indianapolis +30,2015-05-31,1.37,142817.83,13199.86,80053.62,6630.76,42933.59,26714.31,15126.47,1092.81,conventional,2015,Indianapolis +31,2015-05-24,1.29,168797.97,19662.17,92856.9,14814.07,41464.83,26023.27,12630.31,2811.25,conventional,2015,Indianapolis +32,2015-05-17,1.26,164076.81,18666.08,89510.92,16162.78,39737.03,21260.58,16314.28,2162.17,conventional,2015,Indianapolis +33,2015-05-10,1.06,195532.38,16899.58,127193.06,5271.2,46168.54,23578.29,22228.41,361.84,conventional,2015,Indianapolis +34,2015-05-03,1.13,178889.83,18025.82,113204.3,7488.56,40171.15,21559.51,17453.1,1158.54,conventional,2015,Indianapolis +35,2015-04-26,1.24,158499.41,12319.28,88398.02,16641.02,41141.09,23192.65,14397.12,3551.32,conventional,2015,Indianapolis +36,2015-04-19,1.08,179103.3,12091.85,106308.89,10136.69,50565.87,35778.37,13533.9,1253.6,conventional,2015,Indianapolis +37,2015-04-12,1.15,146422.18,13496.9,86722.03,2457.5,43745.75,33143.47,10414.35,187.93,conventional,2015,Indianapolis +38,2015-04-05,1.17,151260.15,12623.45,95213.63,2843.96,40579.11,33761.92,6720.88,96.31,conventional,2015,Indianapolis +39,2015-03-29,1.09,161288.59,5382.76,97691.27,8095.81,50118.75,37465.78,11727.21,925.76,conventional,2015,Indianapolis +40,2015-03-22,1.11,160557.81,3961.0,102319.13,15542.64,38735.04,19721.51,16305.28,2708.25,conventional,2015,Indianapolis +41,2015-03-15,1.21,140487.57,4942.49,88080.11,5551.28,41913.69,24140.96,16954.05,818.68,conventional,2015,Indianapolis +42,2015-03-08,1.07,160438.38,6082.65,97697.59,10846.32,45811.82,27937.4,15551.62,2322.8,conventional,2015,Indianapolis +43,2015-03-01,1.13,169556.49,4876.24,110740.95,14372.16,39567.14,22401.71,14728.68,2436.75,conventional,2015,Indianapolis +44,2015-02-22,1.34,127501.04,4269.36,80442.92,5161.84,37626.92,22828.92,13884.93,913.07,conventional,2015,Indianapolis +45,2015-02-15,1.3,121767.82,5833.67,75495.03,4664.15,35774.97,22442.7,12428.29,903.98,conventional,2015,Indianapolis +46,2015-02-08,0.98,158792.02,7650.86,109166.71,8455.43,33519.02,18968.55,12562.27,1988.2,conventional,2015,Indianapolis +47,2015-02-01,0.92,245352.56,7245.61,181784.28,14761.53,41561.14,20669.59,18130.75,2760.8,conventional,2015,Indianapolis +48,2015-01-25,1.06,149473.79,3642.56,108152.4,724.5,36954.33,21963.56,14952.61,38.16,conventional,2015,Indianapolis +49,2015-01-18,1.14,149319.82,2910.77,103890.9,2048.78,40469.37,22405.47,17913.92,149.98,conventional,2015,Indianapolis +50,2015-01-11,1.25,138617.04,3024.88,100509.97,1771.71,33310.48,18466.87,14765.56,78.05,conventional,2015,Indianapolis +51,2015-01-04,1.02,160130.15,4007.41,118435.79,1201.5,36485.45,20325.41,16160.04,0.0,conventional,2015,Indianapolis +0,2015-12-27,0.99,132982.84,91470.46,7688.79,514.7,33308.89,15300.85,18008.04,0.0,conventional,2015,Jacksonville +1,2015-12-20,1.19,95935.66,63053.15,6544.15,241.09,26097.27,16151.43,9940.6,5.24,conventional,2015,Jacksonville +2,2015-12-13,0.96,140036.16,100533.31,8913.72,199.12,30390.01,11312.69,19064.31,13.01,conventional,2015,Jacksonville +3,2015-12-06,1.19,93337.13,65041.02,7716.82,703.2,19876.09,8770.31,11105.78,0.0,conventional,2015,Jacksonville +4,2015-11-29,0.96,121236.54,85341.93,7840.61,266.31,27787.69,7638.25,20149.44,0.0,conventional,2015,Jacksonville +5,2015-11-22,0.98,115300.79,77130.61,8054.18,301.94,29814.06,10738.71,19075.35,0.0,conventional,2015,Jacksonville +6,2015-11-15,1.25,90999.05,57764.9,7319.36,998.99,24915.8,12498.87,12406.71,10.22,conventional,2015,Jacksonville +7,2015-11-08,1.25,94495.69,62219.27,7707.94,411.4,24157.08,12761.19,11395.89,0.0,conventional,2015,Jacksonville +8,2015-11-01,0.97,162559.72,110439.42,11892.01,995.43,39232.86,14379.48,24853.38,0.0,conventional,2015,Jacksonville +9,2015-10-25,1.22,98097.37,61125.82,8956.16,796.53,27218.86,19339.98,7878.88,0.0,conventional,2015,Jacksonville +10,2015-10-18,1.25,92599.79,57713.02,9666.15,834.92,24385.7,14116.28,10269.42,0.0,conventional,2015,Jacksonville +11,2015-10-11,0.99,141875.2,93556.4,12101.67,1201.18,35015.95,14261.06,20754.89,0.0,conventional,2015,Jacksonville +12,2015-10-04,0.99,153146.21,102479.0,13922.67,537.65,36206.89,14925.09,21281.8,0.0,conventional,2015,Jacksonville +13,2015-09-27,1.27,92325.73,52301.92,14641.98,1047.02,24334.81,14588.26,9746.55,0.0,conventional,2015,Jacksonville +14,2015-09-20,0.99,157688.29,97864.33,21665.96,447.77,37710.23,17060.74,20649.49,0.0,conventional,2015,Jacksonville +15,2015-09-13,1.24,102870.89,55192.87,19471.72,461.14,27745.16,18430.6,9314.56,0.0,conventional,2015,Jacksonville +16,2015-09-06,0.98,179837.71,109912.85,23440.35,1561.01,44923.5,20609.55,24313.95,0.0,conventional,2015,Jacksonville +17,2015-08-30,1.26,116109.0,64015.75,19572.08,657.28,31863.89,20460.51,11403.38,0.0,conventional,2015,Jacksonville +18,2015-08-23,1.25,111825.39,60641.9,19269.77,731.09,31182.63,20588.04,10594.59,0.0,conventional,2015,Jacksonville +19,2015-08-16,1.25,107523.14,60507.19,16156.31,697.22,30162.42,19619.87,10514.58,27.97,conventional,2015,Jacksonville +20,2015-08-09,0.99,188720.77,121358.64,22750.53,668.99,43942.61,21556.41,22386.2,0.0,conventional,2015,Jacksonville +21,2015-08-02,1.24,112332.05,63302.99,19717.01,759.06,28552.99,19135.05,9417.94,0.0,conventional,2015,Jacksonville +22,2015-07-26,1.25,112997.27,69032.32,19637.03,619.03,23708.89,18522.5,5186.39,0.0,conventional,2015,Jacksonville +23,2015-07-19,1.0,173741.3,111744.79,24068.98,647.13,37280.4,17718.5,19561.9,0.0,conventional,2015,Jacksonville +24,2015-07-12,1.22,110964.6,62590.29,18465.56,584.22,29324.53,19289.35,10035.18,0.0,conventional,2015,Jacksonville +25,2015-07-05,0.95,211960.25,132207.91,27446.0,1193.27,51113.07,31922.01,19191.06,0.0,conventional,2015,Jacksonville +26,2015-06-28,1.16,135739.94,78066.95,19522.69,866.73,37283.57,29903.31,7380.26,0.0,conventional,2015,Jacksonville +27,2015-06-21,0.95,192111.32,118742.11,23814.65,1147.34,48407.22,26218.22,22189.0,0.0,conventional,2015,Jacksonville +28,2015-06-14,1.2,129526.61,72175.96,13979.81,2356.55,41014.29,30968.84,10045.45,0.0,conventional,2015,Jacksonville +29,2015-06-07,0.98,190396.8,132109.76,13656.8,710.02,43920.22,24338.56,19581.66,0.0,conventional,2015,Jacksonville +30,2015-05-31,1.24,128105.43,86553.01,7980.5,615.86,32956.06,22617.48,10338.58,0.0,conventional,2015,Jacksonville +31,2015-05-24,1.0,195410.86,139484.96,13258.26,1049.26,41618.38,20782.4,20835.98,0.0,conventional,2015,Jacksonville +32,2015-05-17,1.22,120930.26,81751.17,8351.79,524.46,30302.84,19947.77,10355.07,0.0,conventional,2015,Jacksonville +33,2015-05-10,1.24,125605.25,85005.28,8543.63,625.5,31430.84,22038.43,9392.41,0.0,conventional,2015,Jacksonville +34,2015-05-03,0.96,254514.32,185046.86,16450.96,1347.25,51669.25,25088.83,26430.42,150.0,conventional,2015,Jacksonville +35,2015-04-26,1.21,127939.11,87231.57,9218.89,595.04,30893.61,21798.68,9094.93,0.0,conventional,2015,Jacksonville +36,2015-04-19,1.17,124795.93,81015.05,8893.31,650.56,34237.01,24494.31,9742.7,0.0,conventional,2015,Jacksonville +37,2015-04-12,0.99,180970.46,132039.44,13392.51,645.1,34893.41,17504.21,17389.2,0.0,conventional,2015,Jacksonville +38,2015-04-05,1.1,146744.37,105691.56,11012.21,848.18,29192.42,16686.17,12506.25,0.0,conventional,2015,Jacksonville +39,2015-03-29,1.2,109050.11,74529.93,8432.63,861.41,25226.14,17583.62,7642.52,0.0,conventional,2015,Jacksonville +40,2015-03-22,0.96,185570.06,136390.88,13642.52,613.36,34923.3,19581.38,15341.92,0.0,conventional,2015,Jacksonville +41,2015-03-15,1.27,110128.66,76237.55,8987.99,999.8,23903.32,17130.38,6772.94,0.0,conventional,2015,Jacksonville +42,2015-03-08,1.24,112487.2,77300.18,8997.99,745.39,25443.64,19549.59,5894.05,0.0,conventional,2015,Jacksonville +43,2015-03-01,1.01,167254.64,121358.37,13685.85,570.69,31639.73,17059.55,14580.18,0.0,conventional,2015,Jacksonville +44,2015-02-22,1.1,121048.7,79840.95,10684.39,1447.09,29076.27,21773.29,7302.98,0.0,conventional,2015,Jacksonville +45,2015-02-15,1.24,105176.25,70695.14,9457.72,595.88,24427.51,15354.4,9073.11,0.0,conventional,2015,Jacksonville +46,2015-02-08,1.21,91840.75,62181.18,9886.68,375.65,19397.24,11016.44,8380.8,0.0,conventional,2015,Jacksonville +47,2015-02-01,0.92,237910.63,171139.21,22525.96,1299.6,42945.86,20816.49,22129.37,0.0,conventional,2015,Jacksonville +48,2015-01-25,1.2,109940.55,66985.59,14505.13,523.89,27925.94,16753.47,11172.47,0.0,conventional,2015,Jacksonville +49,2015-01-18,1.27,99496.16,57479.2,16442.71,513.69,25060.56,14684.19,10376.37,0.0,conventional,2015,Jacksonville +50,2015-01-11,1.2,99757.17,57635.74,17025.48,529.41,24566.54,14862.7,9703.84,0.0,conventional,2015,Jacksonville +51,2015-01-04,0.97,153506.84,105203.79,19147.78,468.7,28686.57,13653.15,15033.42,0.0,conventional,2015,Jacksonville +0,2015-12-27,0.83,292707.14,135799.94,93317.46,4977.64,58612.1,34675.97,23936.13,0.0,conventional,2015,LasVegas +1,2015-12-20,0.96,232294.71,96355.05,77086.11,4749.61,54103.94,34992.96,19110.98,0.0,conventional,2015,LasVegas +2,2015-12-13,0.95,216119.35,101042.61,68490.51,4942.71,41643.52,33834.13,7809.39,0.0,conventional,2015,LasVegas +3,2015-12-06,0.89,244024.83,94777.64,107758.8,10794.34,30694.05,30201.26,492.79,0.0,conventional,2015,LasVegas +4,2015-11-29,0.95,205476.61,88653.67,81160.21,5227.59,30435.14,29475.24,959.9,0.0,conventional,2015,LasVegas +5,2015-11-22,0.98,215985.17,87241.86,91574.86,3926.84,33241.61,31653.96,1587.65,0.0,conventional,2015,LasVegas +6,2015-11-15,0.95,247795.44,100856.23,106817.36,4614.58,35507.27,33636.41,1870.86,0.0,conventional,2015,LasVegas +7,2015-11-08,0.92,237248.22,119810.22,74648.59,5456.06,37333.35,36573.68,759.67,0.0,conventional,2015,LasVegas +8,2015-11-01,0.99,230414.44,87202.7,94900.43,12912.69,35398.62,34277.25,1121.37,0.0,conventional,2015,LasVegas +9,2015-10-25,0.98,245167.14,79873.47,115618.11,14217.03,35458.53,33684.23,1774.3,0.0,conventional,2015,LasVegas +10,2015-10-18,0.91,279364.03,108979.09,126743.26,4681.66,38960.02,37274.27,1685.75,0.0,conventional,2015,LasVegas +11,2015-10-11,0.94,268709.29,62866.32,155590.5,13357.96,36894.51,33903.57,2990.94,0.0,conventional,2015,LasVegas +12,2015-10-04,0.97,269072.2,69916.72,154943.93,5551.93,38659.62,30931.87,7727.75,0.0,conventional,2015,LasVegas +13,2015-09-27,0.97,272925.76,63209.79,170341.44,4057.49,35317.04,31037.22,4279.82,0.0,conventional,2015,LasVegas +14,2015-09-20,0.97,284247.2,70945.65,163822.19,5225.21,44254.15,35941.12,8313.03,0.0,conventional,2015,LasVegas +15,2015-09-13,0.88,346994.49,82171.46,179103.0,11064.14,74655.89,31703.25,42952.64,0.0,conventional,2015,LasVegas +16,2015-09-06,1.02,311124.27,123361.73,128141.12,7149.5,52471.92,38692.25,13779.67,0.0,conventional,2015,LasVegas +17,2015-08-30,1.09,284309.17,114660.27,124423.82,6958.54,38266.54,37518.56,747.98,0.0,conventional,2015,LasVegas +18,2015-08-23,1.06,261084.13,131414.8,84541.6,4561.64,40566.09,38541.74,2024.35,0.0,conventional,2015,LasVegas +19,2015-08-16,0.96,314774.36,110442.18,136169.01,7799.26,60363.91,48127.04,12236.87,0.0,conventional,2015,LasVegas +20,2015-08-09,0.96,353118.24,117882.58,163299.76,8925.51,63010.39,41697.82,21312.57,0.0,conventional,2015,LasVegas +21,2015-08-02,1.09,272441.01,137413.89,79606.69,6250.99,49169.44,38914.95,10254.49,0.0,conventional,2015,LasVegas +22,2015-07-26,1.06,272267.5,137702.81,75823.92,8654.82,50085.95,41514.45,8571.5,0.0,conventional,2015,LasVegas +23,2015-07-19,1.03,269642.38,131325.7,78566.88,5011.33,54738.47,44134.02,10604.45,0.0,conventional,2015,LasVegas +24,2015-07-12,1.02,277827.44,136319.06,83225.67,5024.08,53258.63,41822.44,11436.19,0.0,conventional,2015,LasVegas +25,2015-07-05,1.05,332735.24,147937.64,100709.15,6281.59,77806.86,63540.12,14266.74,0.0,conventional,2015,LasVegas +26,2015-06-28,1.01,293408.89,138921.52,86492.67,4334.64,63660.06,52651.46,11008.6,0.0,conventional,2015,LasVegas +27,2015-06-21,0.9,338638.8,128876.23,126683.91,4219.33,78859.33,58695.06,20164.27,0.0,conventional,2015,LasVegas +28,2015-06-14,0.88,389599.87,145932.79,161219.75,3768.89,78678.44,45747.4,32931.04,0.0,conventional,2015,LasVegas +29,2015-06-07,1.02,335693.08,146782.32,112611.12,5234.25,71065.39,47209.35,23856.04,0.0,conventional,2015,LasVegas +30,2015-05-31,1.03,285741.48,134269.07,84841.82,8253.99,58376.6,41385.11,16991.49,0.0,conventional,2015,LasVegas +31,2015-05-24,0.98,293059.1,152869.01,83857.08,4566.03,51766.98,40849.99,10916.99,0.0,conventional,2015,LasVegas +32,2015-05-17,0.95,279843.22,144311.49,84178.93,3609.37,47743.43,34337.21,13406.22,0.0,conventional,2015,LasVegas +33,2015-05-10,0.98,325085.14,148053.33,117101.65,4266.19,55663.97,36501.34,19162.63,0.0,conventional,2015,LasVegas +34,2015-05-03,0.94,406840.38,146068.11,188533.85,6101.01,66137.41,37775.36,28362.05,0.0,conventional,2015,LasVegas +35,2015-04-26,0.88,334718.74,133307.7,132942.52,5032.11,63436.41,39250.19,24170.94,15.28,conventional,2015,LasVegas +36,2015-04-19,0.82,336520.6,206745.02,66506.38,7618.69,55650.51,34413.09,21237.42,0.0,conventional,2015,LasVegas +37,2015-04-12,0.76,369817.99,245368.93,69484.66,4229.89,50734.51,32104.77,18629.74,0.0,conventional,2015,LasVegas +38,2015-04-05,0.81,360356.29,226614.58,76597.83,6194.31,50949.57,38773.41,12176.16,0.0,conventional,2015,LasVegas +39,2015-03-29,0.84,354048.59,194240.37,104621.47,7463.43,47723.32,39098.87,8624.45,0.0,conventional,2015,LasVegas +40,2015-03-22,0.9,311228.44,151597.02,115109.24,5684.01,38838.17,38187.21,650.96,0.0,conventional,2015,LasVegas +41,2015-03-15,1.07,261650.41,112120.65,108345.08,5897.76,35286.92,34915.51,371.41,0.0,conventional,2015,LasVegas +42,2015-03-08,1.01,291046.81,114868.1,132275.9,5339.34,38563.47,38263.99,299.48,0.0,conventional,2015,LasVegas +43,2015-03-01,1.05,293036.34,92829.75,151163.75,12440.57,36602.27,35745.05,857.22,0.0,conventional,2015,LasVegas +44,2015-02-22,1.16,242732.32,98669.04,103066.3,4731.85,36265.13,36112.87,152.26,0.0,conventional,2015,LasVegas +45,2015-02-15,1.12,255465.26,101363.74,111729.04,3869.22,38503.26,38196.57,306.69,0.0,conventional,2015,LasVegas +46,2015-02-08,1.01,318770.67,108258.88,162192.25,4610.86,43708.68,42743.96,964.72,0.0,conventional,2015,LasVegas +47,2015-02-01,0.94,370223.11,144461.66,185057.29,4255.15,36449.01,35205.21,1243.8,0.0,conventional,2015,LasVegas +48,2015-01-25,1.06,249509.99,114584.67,98937.17,3874.78,32113.37,31833.66,279.71,0.0,conventional,2015,LasVegas +49,2015-01-18,1.06,233186.09,100191.96,94930.69,4887.89,33175.55,32897.59,277.96,0.0,conventional,2015,LasVegas +50,2015-01-11,0.93,274481.48,126092.05,101653.19,9591.88,37144.36,36874.44,269.92,0.0,conventional,2015,LasVegas +51,2015-01-04,0.8,317861.35,134003.07,120628.37,4591.23,58638.68,58126.59,512.09,0.0,conventional,2015,LasVegas +0,2015-12-27,0.8,2326942.14,976982.58,455203.42,86202.11,808554.03,722787.61,74359.03,11407.39,conventional,2015,LosAngeles +1,2015-12-20,0.85,2149872.45,870581.1,396515.66,96111.9,786663.79,681332.22,94921.87,10409.7,conventional,2015,LosAngeles +2,2015-12-13,0.74,2690296.07,1072331.45,456120.56,67975.05,1093869.01,962784.81,123270.26,7813.94,conventional,2015,LosAngeles +3,2015-12-06,0.66,3048290.53,1204232.39,682692.02,64728.33,1096637.79,997845.83,92324.72,6467.24,conventional,2015,LosAngeles +4,2015-11-29,0.83,2156008.93,833468.11,501667.47,70943.62,749929.73,681435.37,61342.99,7151.37,conventional,2015,LosAngeles +5,2015-11-22,0.81,2268076.38,886079.66,558302.72,75963.22,747730.78,676325.88,64489.99,6914.91,conventional,2015,LosAngeles +6,2015-11-15,0.74,2828361.9,1281378.91,661936.25,70734.46,814312.28,763322.82,44152.29,6837.17,conventional,2015,LosAngeles +7,2015-11-08,0.84,2621078.31,1314856.37,702841.97,75385.11,527994.86,492713.56,29335.02,5946.28,conventional,2015,LosAngeles +8,2015-11-01,0.89,2617806.65,1232603.24,914725.31,74252.61,396225.49,378048.56,13371.54,4805.39,conventional,2015,LosAngeles +9,2015-10-25,0.95,2327634.45,974251.62,925306.32,78774.2,349302.31,341731.29,3774.75,3796.27,conventional,2015,LosAngeles +10,2015-10-18,0.89,2661345.12,1045819.2,1169758.16,78303.54,367464.22,358998.74,6303.21,2162.27,conventional,2015,LosAngeles +11,2015-10-11,0.92,2591981.76,1014382.6,1205553.71,74862.42,297183.03,280841.88,13203.35,3137.8,conventional,2015,LosAngeles +12,2015-10-04,0.98,2278629.09,798046.49,1120569.37,86683.25,273329.98,251924.68,17899.44,3505.86,conventional,2015,LosAngeles +13,2015-09-27,0.9,2674658.54,1004429.55,1305809.85,81864.64,282554.5,268104.31,9642.69,4807.5,conventional,2015,LosAngeles +14,2015-09-20,0.99,2392448.9,1024117.14,947562.49,118706.07,302063.2,284791.57,12275.43,4996.2,conventional,2015,LosAngeles +15,2015-09-13,0.98,2549512.5,1076046.71,1079298.4,97210.13,296957.26,226956.87,64067.31,5933.08,conventional,2015,LosAngeles +16,2015-09-06,0.92,2983163.34,1809743.28,738938.41,90624.69,343856.96,312763.93,26701.71,4391.32,conventional,2015,LosAngeles +17,2015-08-30,0.9,3037663.98,2084250.55,503077.81,86574.37,363761.25,357387.32,3503.63,2870.3,conventional,2015,LosAngeles +18,2015-08-23,1.03,2604991.25,1687625.73,538010.14,92245.94,287109.44,279700.22,3994.61,3414.61,conventional,2015,LosAngeles +19,2015-08-16,0.93,2943218.77,2040657.52,516718.52,79890.52,305952.21,301831.12,760.09,3361.0,conventional,2015,LosAngeles +20,2015-08-09,0.94,3371114.14,2176899.72,813280.77,69168.37,311765.28,304882.47,4251.42,2631.39,conventional,2015,LosAngeles +21,2015-08-02,1.0,2742211.46,1883744.01,503247.72,58532.61,296687.12,291524.01,2991.1,2172.01,conventional,2015,LosAngeles +22,2015-07-26,0.95,2893887.74,2052103.6,440413.6,79478.59,321891.95,316322.88,2936.81,2632.26,conventional,2015,LosAngeles +23,2015-07-19,1.02,2614726.11,1801294.72,417289.56,89206.49,306935.34,290890.18,13264.37,2780.79,conventional,2015,LosAngeles +24,2015-07-12,1.03,2652480.7,1707544.28,548712.47,83398.45,312825.5,298568.77,11398.26,2858.47,conventional,2015,LosAngeles +25,2015-07-05,0.96,3435374.51,2373501.16,564583.23,99097.11,398193.01,377663.89,17234.66,3294.46,conventional,2015,LosAngeles +26,2015-06-28,0.94,2921148.91,2073077.35,419199.06,75759.53,353112.97,336537.82,13953.67,2621.48,conventional,2015,LosAngeles +27,2015-06-21,0.91,3040023.34,2133616.93,473295.46,79616.07,353494.88,334560.23,15484.32,3450.33,conventional,2015,LosAngeles +28,2015-06-14,0.79,3689140.93,2747257.69,497878.86,69556.02,374448.36,357012.13,14619.41,2816.82,conventional,2015,LosAngeles +29,2015-06-07,0.84,3261844.41,2356669.17,447751.9,71705.74,385717.6,367627.51,14651.88,3438.21,conventional,2015,LosAngeles +30,2015-05-31,0.85,3196936.02,2355022.1,455405.46,76580.26,309928.2,292423.13,14480.99,3024.08,conventional,2015,LosAngeles +31,2015-05-24,0.97,2853904.6,2013195.78,465604.19,73414.62,301690.01,283662.09,14885.79,3142.13,conventional,2015,LosAngeles +32,2015-05-17,0.98,2557700.83,1817736.96,390302.38,54789.31,294872.18,280916.4,11067.18,2888.6,conventional,2015,LosAngeles +33,2015-05-10,0.78,3553642.53,2743972.44,390901.84,60232.29,358535.96,345073.29,10675.7,2786.97,conventional,2015,LosAngeles +34,2015-05-03,0.78,4015563.02,2914047.44,670161.4,61569.48,369784.7,356360.42,11566.37,1857.91,conventional,2015,LosAngeles +35,2015-04-26,1.02,2355703.98,1567937.53,427885.78,62487.28,297393.39,280321.62,15427.14,1644.63,conventional,2015,LosAngeles +36,2015-04-19,0.93,2901188.07,2029025.26,487491.5,58423.48,326247.83,279355.95,45364.01,1527.87,conventional,2015,LosAngeles +37,2015-04-12,0.93,2799667.4,1818859.19,579426.16,64716.4,336665.65,284383.05,50472.61,1809.99,conventional,2015,LosAngeles +38,2015-04-05,1.01,2603114.56,1753452.57,490701.38,73965.36,284995.25,245998.59,36929.22,2067.44,conventional,2015,LosAngeles +39,2015-03-29,1.0,2566690.28,1672623.8,535932.2,69022.84,289111.44,250801.63,36844.97,1464.84,conventional,2015,LosAngeles +40,2015-03-22,1.01,2466735.33,1423482.89,679696.81,68607.44,294948.19,275797.37,17691.29,1459.53,conventional,2015,LosAngeles +41,2015-03-15,0.94,2690257.2,1841764.25,445562.2,70872.78,332057.97,313898.03,16220.47,1939.47,conventional,2015,LosAngeles +42,2015-03-08,0.86,2797745.89,2005781.71,400644.42,62567.6,328752.16,311497.6,15650.13,1604.43,conventional,2015,LosAngeles +43,2015-03-01,0.75,3094278.93,2145439.03,592196.29,61863.94,294779.67,269524.6,23570.43,1684.64,conventional,2015,LosAngeles +44,2015-02-22,0.83,2954705.54,2050402.87,505580.16,61573.28,337149.23,309850.06,25218.02,2081.15,conventional,2015,LosAngeles +45,2015-02-15,0.83,2926435.94,2146773.46,408395.74,62511.83,308754.91,271596.41,35034.18,2124.32,conventional,2015,LosAngeles +46,2015-02-08,0.9,2641032.65,1673425.82,582236.24,58216.26,327154.33,280560.62,44327.49,2266.22,conventional,2015,LosAngeles +47,2015-02-01,0.74,4031949.04,2770656.27,854673.24,64439.7,342179.83,308754.64,31108.07,2317.12,conventional,2015,LosAngeles +48,2015-01-25,0.96,2329987.29,1518406.36,456562.55,60922.43,294095.95,255279.65,36398.19,2418.11,conventional,2015,LosAngeles +49,2015-01-18,0.89,2800679.5,1925013.31,526106.8,59364.23,290195.16,260857.96,26671.18,2666.02,conventional,2015,LosAngeles +50,2015-01-11,0.85,2713699.6,1786326.65,617233.39,58892.91,251246.65,222971.68,25111.74,3163.23,conventional,2015,LosAngeles +51,2015-01-04,0.85,2682159.95,1837999.65,524430.47,64225.78,255504.05,215571.8,36981.72,2950.53,conventional,2015,LosAngeles +0,2015-12-27,1.04,61654.94,1377.63,37760.21,3204.01,19313.09,11289.8,7288.66,734.63,conventional,2015,Louisville +1,2015-12-20,1.05,56443.43,1703.96,30942.26,2554.61,21242.6,11290.59,9360.13,591.88,conventional,2015,Louisville +2,2015-12-13,0.91,76543.82,1830.69,47375.43,1613.63,25724.07,11718.37,13677.35,328.35,conventional,2015,Louisville +3,2015-12-06,0.83,103277.35,2186.88,65644.34,4604.01,30842.12,10619.03,19216.17,1006.92,conventional,2015,Louisville +4,2015-11-29,0.97,58667.71,1290.11,34019.62,2342.95,21015.03,10740.29,9710.74,564.0,conventional,2015,Louisville +5,2015-11-22,1.01,60971.36,1319.83,33164.09,3367.31,23120.13,12082.22,10219.32,818.59,conventional,2015,Louisville +6,2015-11-15,1.04,58816.5,1374.81,33868.95,1787.47,21785.27,12910.54,8473.25,401.48,conventional,2015,Louisville +7,2015-11-08,0.93,86929.62,2052.89,52494.09,6709.02,25673.62,10817.81,12978.02,1877.79,conventional,2015,Louisville +8,2015-11-01,0.89,103768.67,3443.02,60544.64,5446.36,34334.65,11070.08,21945.2,1319.37,conventional,2015,Louisville +9,2015-10-25,1.06,64602.5,2031.83,36450.26,4127.43,21992.98,11226.36,9879.33,887.29,conventional,2015,Louisville +10,2015-10-18,1.03,74092.73,1772.55,46436.42,2941.09,22942.67,12347.11,10100.74,494.82,conventional,2015,Louisville +11,2015-10-11,1.03,74536.59,2060.03,44941.49,4873.81,22661.26,11836.73,10132.33,692.2,conventional,2015,Louisville +12,2015-10-04,1.11,63157.22,1596.38,39700.73,4198.9,17661.21,10607.98,6299.47,753.76,conventional,2015,Louisville +13,2015-09-27,1.18,60980.52,1456.28,40352.61,4205.02,14966.61,8797.15,5225.48,943.98,conventional,2015,Louisville +14,2015-09-20,1.05,71064.71,1645.41,40184.52,7294.86,21939.92,9084.99,10942.97,1911.96,conventional,2015,Louisville +15,2015-09-13,0.98,85919.67,1730.17,56765.08,5424.16,22000.26,9468.95,11295.37,1235.94,conventional,2015,Louisville +16,2015-09-06,0.98,98154.04,2188.71,65116.35,3287.09,27561.89,10648.23,16180.34,733.32,conventional,2015,Louisville +17,2015-08-30,1.13,70164.74,4909.59,40377.06,5962.35,18915.74,10816.15,6584.54,1515.05,conventional,2015,Louisville +18,2015-08-23,1.15,65333.2,2607.26,39932.88,1974.24,20818.82,10968.34,9442.4,408.08,conventional,2015,Louisville +19,2015-08-16,1.09,78926.9,5051.31,45325.78,7750.34,20799.47,11076.0,7718.56,2004.91,conventional,2015,Louisville +20,2015-08-09,1.08,83592.89,3152.23,52753.42,4025.84,23661.4,12114.64,10835.71,711.05,conventional,2015,Louisville +21,2015-08-02,0.93,91136.65,2141.86,59505.29,3666.88,25822.62,11522.64,13604.5,695.48,conventional,2015,Louisville +22,2015-07-26,0.88,99545.41,1965.35,64026.49,2057.87,31495.7,13129.21,17841.09,525.4,conventional,2015,Louisville +23,2015-07-19,1.08,77503.36,5812.67,44739.72,4934.99,22015.98,13721.17,7346.56,948.25,conventional,2015,Louisville +24,2015-07-12,1.13,72693.94,2051.9,43381.39,1678.98,25581.67,13950.77,11355.84,275.06,conventional,2015,Louisville +25,2015-07-05,1.15,81748.59,1948.65,49319.51,3205.65,27274.78,16460.65,10376.77,437.36,conventional,2015,Louisville +26,2015-06-28,1.15,69230.74,2289.22,41216.44,1060.8,24664.28,15247.78,9197.48,219.02,conventional,2015,Louisville +27,2015-06-21,1.17,78272.57,3338.54,44777.85,6132.64,24023.54,15669.16,7104.77,1249.61,conventional,2015,Louisville +28,2015-06-14,1.07,82364.21,2241.94,50907.67,3570.35,25644.25,15803.53,9422.58,418.14,conventional,2015,Louisville +29,2015-06-07,1.01,98865.51,8145.6,62401.26,4540.35,23778.3,12423.77,10432.41,922.12,conventional,2015,Louisville +30,2015-05-31,1.0,92345.33,7195.55,58910.38,1622.81,24616.59,11607.93,12647.23,361.43,conventional,2015,Louisville +31,2015-05-24,1.05,79567.66,2581.31,55999.82,1616.65,19369.88,10358.52,8634.83,376.53,conventional,2015,Louisville +32,2015-05-17,1.2,73537.14,2114.98,48390.37,4737.13,18294.66,8983.07,8235.74,1075.85,conventional,2015,Louisville +33,2015-05-10,1.1,85446.43,2278.4,60221.59,606.53,22339.91,9533.88,12740.14,65.89,conventional,2015,Louisville +34,2015-05-03,1.03,95550.51,2031.68,66286.54,2641.74,24590.55,8761.52,15348.83,480.2,conventional,2015,Louisville +35,2015-04-26,1.21,65742.4,2070.06,42192.26,2780.63,18699.45,9812.43,8286.28,600.74,conventional,2015,Louisville +36,2015-04-19,1.01,95959.08,2113.76,62591.27,5341.52,25912.53,19572.82,5205.38,1134.33,conventional,2015,Louisville +37,2015-04-12,0.97,88236.19,2761.77,61733.99,340.98,23399.45,19990.04,3351.93,57.48,conventional,2015,Louisville +38,2015-04-05,1.08,75626.3,1833.31,49893.14,565.69,23334.16,15903.95,7424.19,6.02,conventional,2015,Louisville +39,2015-03-29,1.0,93802.08,2639.24,64264.48,1117.0,25781.36,22498.91,3113.19,169.26,conventional,2015,Louisville +40,2015-03-22,0.99,95101.27,2464.06,62778.34,7475.66,22383.21,7992.82,12576.61,1813.78,conventional,2015,Louisville +41,2015-03-15,1.21,56870.1,2010.14,36582.61,1294.26,16983.09,9906.76,6777.06,299.27,conventional,2015,Louisville +42,2015-03-08,1.18,62728.85,2777.27,38415.34,1615.17,19921.07,11944.24,7667.38,309.45,conventional,2015,Louisville +43,2015-03-01,1.02,78626.99,1553.83,53158.82,6909.13,17005.21,7537.07,7839.58,1628.56,conventional,2015,Louisville +44,2015-02-22,1.01,107443.35,3122.61,77315.21,1217.83,25787.7,9789.94,15762.59,235.17,conventional,2015,Louisville +45,2015-02-15,1.13,80537.77,3843.22,50486.3,1394.17,24814.08,11567.45,12926.67,319.96,conventional,2015,Louisville +46,2015-02-08,1.0,87054.02,6359.25,59424.49,1307.44,19962.84,10210.07,9464.13,288.64,conventional,2015,Louisville +47,2015-02-01,0.9,125504.98,5378.31,83854.56,5155.25,31116.86,8618.05,21296.75,1202.06,conventional,2015,Louisville +48,2015-01-25,1.02,86635.35,2283.0,63038.53,234.29,21079.53,8875.65,12189.0,14.88,conventional,2015,Louisville +49,2015-01-18,1.06,85580.15,2250.1,63826.82,426.73,19076.5,10228.66,8804.67,43.17,conventional,2015,Louisville +50,2015-01-11,1.05,75129.36,2299.74,53313.74,237.88,19278.0,7964.88,11299.66,13.46,conventional,2015,Louisville +51,2015-01-04,0.92,101162.98,1991.63,75090.16,283.88,23797.31,7769.36,16027.95,0.0,conventional,2015,Louisville +0,2015-12-27,0.99,545064.74,387953.32,44652.25,54.44,112404.73,53606.13,58798.6,0.0,conventional,2015,MiamiFtLauderdale +1,2015-12-20,1.21,350533.71,238269.18,32386.55,92.33,79785.65,50138.45,29624.11,23.09,conventional,2015,MiamiFtLauderdale +2,2015-12-13,0.97,529317.46,387065.94,49363.2,85.47,92802.85,38463.54,54339.31,0.0,conventional,2015,MiamiFtLauderdale +3,2015-12-06,1.25,340513.61,247061.97,34861.19,83.27,58507.18,25297.27,33209.91,0.0,conventional,2015,MiamiFtLauderdale +4,2015-11-29,0.98,470218.14,349408.27,42435.51,70.13,78304.23,27392.48,50911.75,0.0,conventional,2015,MiamiFtLauderdale +5,2015-11-22,0.98,499396.26,359876.76,47195.19,72.44,92251.87,32763.43,59482.61,5.83,conventional,2015,MiamiFtLauderdale +6,2015-11-15,1.22,368996.48,258624.78,42921.48,21.31,67428.91,34369.92,33058.99,0.0,conventional,2015,MiamiFtLauderdale +7,2015-11-08,1.22,329065.04,223219.98,37562.72,21.15,68261.19,36440.1,31818.17,2.92,conventional,2015,MiamiFtLauderdale +8,2015-11-01,0.98,566030.64,415970.77,54992.76,32.81,95034.3,37980.05,57051.32,2.93,conventional,2015,MiamiFtLauderdale +9,2015-10-25,1.25,307072.85,212163.19,35901.59,42.02,58966.05,33429.62,25527.63,8.8,conventional,2015,MiamiFtLauderdale +10,2015-10-18,1.24,333933.98,224505.79,42454.42,24.92,66948.85,40518.51,26421.51,8.83,conventional,2015,MiamiFtLauderdale +11,2015-10-11,1.0,538384.22,384920.27,59335.78,21.6,94106.57,39787.55,54316.07,2.95,conventional,2015,MiamiFtLauderdale +12,2015-10-04,0.99,570367.24,411182.68,63182.62,48.48,95953.46,47869.19,48084.27,0.0,conventional,2015,MiamiFtLauderdale +13,2015-09-27,1.31,318048.12,200219.37,57857.02,40.63,59931.1,35358.56,24572.54,0.0,conventional,2015,MiamiFtLauderdale +14,2015-09-20,0.98,559818.31,381034.21,76606.11,58.29,102119.7,47692.12,54427.58,0.0,conventional,2015,MiamiFtLauderdale +15,2015-09-13,1.26,331077.9,197328.71,64770.61,17.92,68960.66,42655.4,26305.26,0.0,conventional,2015,MiamiFtLauderdale +16,2015-09-06,0.98,637326.79,442545.72,80524.31,13.63,114243.13,49819.37,64423.76,0.0,conventional,2015,MiamiFtLauderdale +17,2015-08-30,1.24,362232.28,212188.58,66569.74,73.73,83400.23,59815.95,23581.37,2.91,conventional,2015,MiamiFtLauderdale +18,2015-08-23,1.24,372525.3,218751.04,70677.18,63.85,83033.23,58853.12,24165.63,14.48,conventional,2015,MiamiFtLauderdale +19,2015-08-16,1.24,360308.77,213812.79,61634.91,31.89,84829.18,62035.11,22794.07,0.0,conventional,2015,MiamiFtLauderdale +20,2015-08-09,0.97,655821.9,450713.76,86740.57,81.16,118286.41,61527.63,56758.78,0.0,conventional,2015,MiamiFtLauderdale +21,2015-08-02,1.22,371660.15,219518.15,66230.77,66.26,85844.97,63761.3,22083.67,0.0,conventional,2015,MiamiFtLauderdale +22,2015-07-26,1.24,379954.31,233056.82,63065.93,76.64,83754.92,63018.58,20736.34,0.0,conventional,2015,MiamiFtLauderdale +23,2015-07-19,0.96,626841.5,436603.6,96849.49,98.68,93289.73,55330.18,37959.55,0.0,conventional,2015,MiamiFtLauderdale +24,2015-07-12,1.24,402706.71,235985.01,79717.36,87.27,86917.07,61873.39,24836.74,206.94,conventional,2015,MiamiFtLauderdale +25,2015-07-05,0.98,718152.22,483878.34,101119.61,193.76,132960.51,72566.19,60394.32,0.0,conventional,2015,MiamiFtLauderdale +26,2015-06-28,1.21,443970.6,259852.13,79482.73,262.36,104373.38,76411.06,27962.32,0.0,conventional,2015,MiamiFtLauderdale +27,2015-06-21,0.96,669409.29,445033.36,90433.46,5433.8,128508.67,74032.13,54476.54,0.0,conventional,2015,MiamiFtLauderdale +28,2015-06-14,1.26,437896.64,273373.33,55875.2,9215.34,99432.77,72754.69,26678.08,0.0,conventional,2015,MiamiFtLauderdale +29,2015-06-07,0.99,683877.72,503235.62,60937.0,103.99,119601.11,65839.19,53761.92,0.0,conventional,2015,MiamiFtLauderdale +30,2015-05-31,1.27,419158.75,296763.96,35493.31,57.9,86843.58,61102.87,25740.71,0.0,conventional,2015,MiamiFtLauderdale +31,2015-05-24,1.01,757305.14,571149.16,62989.67,72.94,123093.37,62451.72,60641.65,0.0,conventional,2015,MiamiFtLauderdale +32,2015-05-17,1.24,450603.36,323238.36,36762.19,136.17,90466.64,64400.34,26066.3,0.0,conventional,2015,MiamiFtLauderdale +33,2015-05-10,1.28,435547.13,315524.39,37151.03,58.42,82813.29,60376.64,22436.65,0.0,conventional,2015,MiamiFtLauderdale +34,2015-05-03,0.98,917424.76,690389.21,81078.28,35.99,145921.28,68322.23,77201.83,397.22,conventional,2015,MiamiFtLauderdale +35,2015-04-26,1.25,476017.06,341780.74,41476.06,120.02,92640.24,63701.43,28442.98,495.83,conventional,2015,MiamiFtLauderdale +36,2015-04-19,1.23,434025.46,306881.48,38958.56,41.04,88144.38,58121.16,30023.22,0.0,conventional,2015,MiamiFtLauderdale +37,2015-04-12,1.0,692569.85,525432.6,63130.09,59.84,103947.32,47627.94,56319.38,0.0,conventional,2015,MiamiFtLauderdale +38,2015-04-05,1.11,510738.88,370549.02,48767.27,91.39,91331.2,49707.36,41286.34,337.5,conventional,2015,MiamiFtLauderdale +39,2015-03-29,1.25,370065.74,261045.75,32977.11,87.26,75955.62,47569.63,28385.99,0.0,conventional,2015,MiamiFtLauderdale +40,2015-03-22,0.97,642934.25,480064.45,58232.21,165.2,104472.39,51350.08,53122.31,0.0,conventional,2015,MiamiFtLauderdale +41,2015-03-15,1.33,371716.28,272270.43,35374.87,145.85,63925.13,38984.8,24940.33,0.0,conventional,2015,MiamiFtLauderdale +42,2015-03-08,1.3,356311.66,253963.7,32888.65,62.9,69396.41,47346.87,22049.54,0.0,conventional,2015,MiamiFtLauderdale +43,2015-03-01,1.01,647014.16,484615.92,60307.81,41.65,102048.78,45516.03,56532.75,0.0,conventional,2015,MiamiFtLauderdale +44,2015-02-22,1.24,369819.98,256141.1,35032.65,67.64,78578.59,51870.47,26708.12,0.0,conventional,2015,MiamiFtLauderdale +45,2015-02-15,1.29,353520.71,243991.59,34941.84,77.29,74509.99,38771.73,35738.26,0.0,conventional,2015,MiamiFtLauderdale +46,2015-02-08,1.25,348210.5,249833.46,35897.43,34.5,62445.11,36164.82,26280.29,0.0,conventional,2015,MiamiFtLauderdale +47,2015-02-01,0.95,753300.79,566917.32,74532.61,82.04,111768.82,48097.17,63671.65,0.0,conventional,2015,MiamiFtLauderdale +48,2015-01-25,1.27,398055.71,289948.64,41120.06,65.81,66921.2,35279.75,31641.45,0.0,conventional,2015,MiamiFtLauderdale +49,2015-01-18,1.3,405138.19,285204.29,42798.99,42.64,77092.27,41312.0,35780.27,0.0,conventional,2015,MiamiFtLauderdale +50,2015-01-11,1.28,342796.99,242922.42,36043.54,38.69,63792.34,35069.71,28722.63,0.0,conventional,2015,MiamiFtLauderdale +51,2015-01-04,0.97,540234.22,398670.03,54844.33,39.07,86680.79,38505.18,48175.61,0.0,conventional,2015,MiamiFtLauderdale +0,2015-12-27,1.05,2065131.33,435246.31,1022861.71,103811.97,503211.34,464119.16,35717.26,3374.92,conventional,2015,Midsouth +1,2015-12-20,1.05,2044020.93,446433.13,1024405.09,96387.48,476795.23,434534.42,38523.1,3737.71,conventional,2015,Midsouth +2,2015-12-13,1.03,2193142.82,515063.58,1060753.67,113979.43,503346.14,445274.87,57239.73,831.54,conventional,2015,Midsouth +3,2015-12-06,1.0,2233138.01,507201.58,1154808.22,133316.89,437811.32,377999.41,57793.89,2018.02,conventional,2015,Midsouth +4,2015-11-29,1.05,1845443.13,417849.42,939038.5,101739.67,386815.54,344830.99,40738.63,1245.92,conventional,2015,Midsouth +5,2015-11-22,1.06,1903245.0,422437.27,955972.74,117353.23,407481.76,364155.91,41724.4,1601.45,conventional,2015,Midsouth +6,2015-11-15,1.02,2355839.19,470482.8,1302219.95,168586.54,414549.9,373075.42,40843.12,631.36,conventional,2015,Midsouth +7,2015-11-08,1.04,2503008.26,568612.19,1248271.45,228267.05,457857.57,402488.58,52180.99,3188.0,conventional,2015,Midsouth +8,2015-11-01,1.08,2511760.36,549089.55,1188242.89,260946.16,513481.76,429082.15,81904.3,2495.31,conventional,2015,Midsouth +9,2015-10-25,1.13,2188485.29,522060.98,980865.05,211478.23,474081.03,417038.17,55815.71,1227.15,conventional,2015,Midsouth +10,2015-10-18,1.05,2783170.15,555583.11,1537196.96,215608.69,474781.39,423533.77,50778.19,469.43,conventional,2015,Midsouth +11,2015-10-11,1.13,2329757.67,469059.21,1057488.47,277954.43,525255.56,455592.88,68091.96,1570.72,conventional,2015,Midsouth +12,2015-10-04,1.18,2233935.94,467701.3,1070891.86,194003.8,501338.98,438547.27,61454.54,1337.17,conventional,2015,Midsouth +13,2015-09-27,1.11,2390611.02,479660.47,1206766.08,274903.15,429281.32,383854.11,43807.49,1619.72,conventional,2015,Midsouth +14,2015-09-20,1.13,2447264.74,555127.12,1122683.82,208537.92,560915.88,479718.29,76793.78,4403.81,conventional,2015,Midsouth +15,2015-09-13,1.09,2814803.06,574792.78,1444401.99,182702.62,612905.67,548306.36,61850.13,2749.18,conventional,2015,Midsouth +16,2015-09-06,1.08,3013825.75,564493.74,1458691.19,314497.84,676142.98,598816.21,75569.59,1757.18,conventional,2015,Midsouth +17,2015-08-30,1.18,2535192.78,516825.42,1161145.08,196950.9,660271.38,620018.68,36845.26,3407.44,conventional,2015,Midsouth +18,2015-08-23,1.12,2765838.1,571552.62,1286342.3,210164.47,697778.71,654945.01,41707.37,1126.33,conventional,2015,Midsouth +19,2015-08-16,1.14,2823405.23,627950.44,1355609.83,222563.23,617281.73,577210.39,36597.11,3474.23,conventional,2015,Midsouth +20,2015-08-09,1.15,2710710.15,531460.61,1328248.62,203932.87,647068.05,597061.79,48069.52,1936.74,conventional,2015,Midsouth +21,2015-08-02,1.14,2752081.97,532287.84,1359710.96,208419.92,651663.25,604227.7,46004.95,1430.6,conventional,2015,Midsouth +22,2015-07-26,1.15,2664424.22,531729.96,1239353.81,199553.32,693787.13,638982.26,53809.21,995.66,conventional,2015,Midsouth +23,2015-07-19,1.14,2751192.77,569216.65,1234664.0,218257.94,729054.18,685065.97,41646.75,2341.46,conventional,2015,Midsouth +24,2015-07-12,1.13,2783554.82,532046.38,1337980.83,205773.72,707753.89,662158.17,44652.53,943.19,conventional,2015,Midsouth +25,2015-07-05,1.13,3183419.6,632988.75,1545460.43,232974.97,771995.45,717654.81,53154.69,1185.95,conventional,2015,Midsouth +26,2015-06-28,1.14,2835630.41,534709.22,1324231.26,215752.18,760937.75,722276.9,37287.39,1373.46,conventional,2015,Midsouth +27,2015-06-21,1.13,2979417.82,601782.55,1363070.07,215613.45,798951.75,750253.84,45536.54,3161.37,conventional,2015,Midsouth +28,2015-06-14,1.09,3173051.42,653441.16,1484200.81,206159.51,829249.94,786795.07,40769.55,1685.32,conventional,2015,Midsouth +29,2015-06-07,1.14,2918298.91,724315.73,1217522.42,200001.49,776459.27,717859.42,56141.4,2458.45,conventional,2015,Midsouth +30,2015-05-31,1.14,3039403.06,734816.3,1377202.12,207708.91,719675.73,661787.82,56794.41,1093.5,conventional,2015,Midsouth +31,2015-05-24,1.14,3119050.91,719874.17,1431141.56,231744.91,736290.27,679537.84,55107.23,1645.2,conventional,2015,Midsouth +32,2015-05-17,1.18,2817008.33,698401.8,1201257.18,203615.52,713733.83,667222.64,44437.39,2073.8,conventional,2015,Midsouth +33,2015-05-10,1.17,2956859.19,721935.59,1299998.7,190755.81,744169.09,679213.0,64322.24,633.85,conventional,2015,Midsouth +34,2015-05-03,1.07,3410467.52,793989.95,1557507.45,364283.54,694686.58,624533.81,68904.63,1248.14,conventional,2015,Midsouth +35,2015-04-26,1.2,2699614.5,698128.52,1125853.0,192090.19,683542.79,642966.9,39078.44,1497.45,conventional,2015,Midsouth +36,2015-04-19,1.18,2711008.32,654378.33,1125460.56,190006.01,741163.42,701805.76,37167.77,2189.89,conventional,2015,Midsouth +37,2015-04-12,1.13,2829416.58,665283.33,1298472.42,185691.58,679969.25,635124.32,44745.79,99.14,conventional,2015,Midsouth +38,2015-04-05,1.19,2519677.31,617567.29,1066608.5,183653.85,651847.67,607923.59,42910.27,1013.81,conventional,2015,Midsouth +39,2015-03-29,1.18,2523110.39,576473.89,1160794.38,203057.64,582784.48,547007.1,35421.43,355.95,conventional,2015,Midsouth +40,2015-03-22,1.11,2779012.66,681261.26,1282053.45,197573.91,618124.04,560370.06,53740.87,4013.11,conventional,2015,Midsouth +41,2015-03-15,1.19,2462108.11,570576.91,1066470.63,210234.78,614825.79,578103.5,34641.93,2080.36,conventional,2015,Midsouth +42,2015-03-08,1.21,2297509.11,545690.6,949015.34,179824.24,622978.93,588931.15,33275.04,772.74,conventional,2015,Midsouth +43,2015-03-01,1.14,2538981.6,620672.44,1151353.87,182873.34,584081.95,543841.07,37011.94,3228.94,conventional,2015,Midsouth +44,2015-02-22,1.1,2720346.71,632670.12,1209150.04,295228.18,583298.37,535973.53,46783.55,541.29,conventional,2015,Midsouth +45,2015-02-15,1.17,2420829.45,634266.43,982380.32,206499.63,597683.07,515932.56,81139.48,611.03,conventional,2015,Midsouth +46,2015-02-08,1.06,2734006.98,732854.05,1222159.62,159491.59,619501.72,543231.71,75649.4,620.61,conventional,2015,Midsouth +47,2015-02-01,0.99,3668037.65,888523.17,1798504.77,388259.15,592750.56,464442.27,125798.21,2510.08,conventional,2015,Midsouth +48,2015-01-25,1.15,2480820.72,566435.98,1077630.8,164873.48,671880.46,572717.4,99142.71,20.35,conventional,2015,Midsouth +49,2015-01-18,1.19,2330829.2,530333.83,1045424.87,186027.52,569042.98,478770.7,90214.44,57.84,conventional,2015,Midsouth +50,2015-01-11,1.17,2335986.11,560119.16,1032606.49,191515.19,551745.27,465764.93,85966.27,14.07,conventional,2015,Midsouth +51,2015-01-04,1.1,2578275.12,575245.44,1311502.53,181058.65,510468.5,429166.89,80986.81,314.8,conventional,2015,Midsouth +0,2015-12-27,0.96,123669.89,79508.7,8706.29,4748.08,30706.82,23563.06,7140.43,3.33,conventional,2015,Nashville +1,2015-12-20,0.99,127373.56,87309.07,7415.81,4356.81,28291.87,23562.1,4722.17,7.6,conventional,2015,Nashville +2,2015-12-13,0.91,153425.94,103097.4,11175.45,6145.91,33007.18,23065.69,9806.94,134.55,conventional,2015,Nashville +3,2015-12-06,1.0,130989.23,88033.66,9655.78,5447.67,27852.12,22956.94,4797.18,98.0,conventional,2015,Nashville +4,2015-11-29,0.95,119919.67,77155.36,9407.46,5435.02,27921.83,20470.74,7440.75,10.34,conventional,2015,Nashville +5,2015-11-22,0.96,127165.59,79960.92,10083.16,5985.48,31136.03,23717.19,7157.13,261.71,conventional,2015,Nashville +6,2015-11-15,1.04,124671.4,77510.5,11869.33,5903.53,29388.04,24126.65,5261.39,0.0,conventional,2015,Nashville +7,2015-11-08,1.03,135506.08,87957.9,11807.4,4873.39,30867.39,25641.93,5225.46,0.0,conventional,2015,Nashville +8,2015-11-01,0.94,159318.32,97774.21,20102.72,5054.46,36386.93,24437.2,11949.73,0.0,conventional,2015,Nashville +9,2015-10-25,0.91,148660.26,89991.51,20511.16,4334.1,33823.49,25000.22,8823.27,0.0,conventional,2015,Nashville +10,2015-10-18,0.91,182647.96,114107.69,29076.74,6047.46,33416.07,23996.08,9419.99,0.0,conventional,2015,Nashville +11,2015-10-11,0.96,167655.6,83621.05,35428.18,7009.22,41597.15,23793.78,17803.37,0.0,conventional,2015,Nashville +12,2015-10-04,0.96,157490.03,78331.45,30106.11,6363.08,42689.39,26267.85,16376.41,45.13,conventional,2015,Nashville +13,2015-09-27,1.04,160547.52,93381.62,25445.0,6807.92,34912.98,25432.19,9435.58,45.21,conventional,2015,Nashville +14,2015-09-20,0.95,197649.58,108519.0,32478.82,9286.56,47365.2,27175.41,19540.16,649.63,conventional,2015,Nashville +15,2015-09-13,1.05,154621.8,76424.28,25095.26,9786.12,43316.14,31983.6,11023.29,309.25,conventional,2015,Nashville +16,2015-09-06,0.97,175977.6,92988.8,30510.75,9638.66,42839.39,27102.45,15494.02,242.92,conventional,2015,Nashville +17,2015-08-30,1.09,142153.55,82766.98,21072.35,7912.88,30401.34,24581.81,5819.53,0.0,conventional,2015,Nashville +18,2015-08-23,0.97,171575.35,112284.06,19284.06,10060.87,29946.36,25633.87,4312.49,0.0,conventional,2015,Nashville +19,2015-08-16,0.96,187310.28,126796.3,18393.32,13672.42,28448.24,22867.47,5354.02,226.75,conventional,2015,Nashville +20,2015-08-09,0.98,176410.4,105537.27,20560.4,10196.35,40116.38,30602.26,8883.04,631.08,conventional,2015,Nashville +21,2015-08-02,1.08,151807.11,87160.08,19863.22,9366.36,35417.45,30724.37,4552.23,140.85,conventional,2015,Nashville +22,2015-07-26,1.07,149262.89,85386.58,19400.24,9807.32,34668.75,29923.8,4702.51,42.44,conventional,2015,Nashville +23,2015-07-19,0.98,186258.97,113404.36,19371.52,9567.97,43915.12,34877.55,8680.3,357.27,conventional,2015,Nashville +24,2015-07-12,1.09,152991.78,90781.1,17434.57,9746.41,35029.7,29736.49,5171.88,121.33,conventional,2015,Nashville +25,2015-07-05,0.97,201797.82,121473.02,25125.21,10804.25,44395.34,35733.99,8482.0,179.35,conventional,2015,Nashville +26,2015-06-28,1.06,159981.66,90881.66,19436.14,8297.63,41366.23,36900.28,3662.58,803.37,conventional,2015,Nashville +27,2015-06-21,0.96,188762.81,111226.04,17917.39,8103.01,51516.37,41015.0,9725.53,775.84,conventional,2015,Nashville +28,2015-06-14,1.03,172302.47,103389.69,17224.17,7010.57,44678.04,38948.35,5729.69,0.0,conventional,2015,Nashville +29,2015-06-07,0.96,189470.19,128293.7,10385.79,10508.18,40282.52,31059.24,8944.38,278.9,conventional,2015,Nashville +30,2015-05-31,1.04,166214.14,117285.11,8351.55,11839.0,28738.48,24244.27,4413.3,80.91,conventional,2015,Nashville +31,2015-05-24,0.98,194990.71,140921.85,9348.72,14228.41,30491.73,22090.48,7942.08,459.17,conventional,2015,Nashville +32,2015-05-17,1.07,149400.13,100832.21,8161.87,10852.62,29553.43,25235.57,4310.3,7.56,conventional,2015,Nashville +33,2015-05-10,1.07,165726.92,114337.07,9079.59,13932.74,28377.52,23620.06,4406.92,350.54,conventional,2015,Nashville +34,2015-05-03,0.98,222813.0,159791.64,13149.16,16218.93,33653.27,23216.64,10436.63,0.0,conventional,2015,Nashville +35,2015-04-26,1.08,166556.79,117295.03,8599.82,15685.44,24976.5,21480.56,3495.94,0.0,conventional,2015,Nashville +36,2015-04-19,1.11,140649.3,91537.59,7598.5,12377.93,29135.28,22422.52,6712.76,0.0,conventional,2015,Nashville +37,2015-04-12,1.0,158490.37,111682.33,9658.98,12737.74,24411.32,14353.71,10057.61,0.0,conventional,2015,Nashville +38,2015-04-05,1.06,155074.03,104270.46,8266.56,14141.74,28395.27,21583.06,6812.21,0.0,conventional,2015,Nashville +39,2015-03-29,1.07,151301.45,102824.72,8307.47,14079.54,26089.72,19540.62,6549.1,0.0,conventional,2015,Nashville +40,2015-03-22,1.01,173980.22,122204.32,9195.02,13155.99,29424.89,22501.23,6833.78,89.88,conventional,2015,Nashville +41,2015-03-15,1.08,131053.65,86390.93,6821.52,11458.43,26382.77,21886.31,3381.7,1114.76,conventional,2015,Nashville +42,2015-03-08,1.08,149239.4,104187.91,7723.68,10813.59,26514.22,22958.63,3555.59,0.0,conventional,2015,Nashville +43,2015-03-01,0.99,169423.5,121799.85,9712.84,10894.89,27015.92,20732.64,6153.5,129.78,conventional,2015,Nashville +44,2015-02-22,1.05,148164.2,101095.06,10053.42,13693.83,23321.89,20671.7,2645.2,4.99,conventional,2015,Nashville +45,2015-02-15,1.03,153852.03,109047.7,9817.42,11085.73,23901.18,21186.15,2715.03,0.0,conventional,2015,Nashville +46,2015-02-08,0.94,171749.31,125785.83,8119.73,9717.73,28126.02,25896.73,2229.29,0.0,conventional,2015,Nashville +47,2015-02-01,0.94,221471.45,160834.57,13445.84,17578.18,29612.86,23898.35,5714.51,0.0,conventional,2015,Nashville +48,2015-01-25,1.07,140855.47,95428.54,8371.74,11082.07,25973.12,24183.43,1789.69,0.0,conventional,2015,Nashville +49,2015-01-18,1.08,143464.64,97216.47,8423.57,12187.72,25636.88,23520.54,2116.34,0.0,conventional,2015,Nashville +50,2015-01-11,1.07,149832.2,103822.6,9098.86,11665.78,25244.96,22478.92,2766.04,0.0,conventional,2015,Nashville +51,2015-01-04,1.0,162162.75,113865.83,11083.58,11699.03,25514.31,19681.13,5611.51,221.67,conventional,2015,Nashville +0,2015-12-27,0.91,187664.29,105570.93,18655.62,284.7,63153.04,53908.72,9224.82,19.5,conventional,2015,NewOrleansMobile +1,2015-12-20,0.92,191937.02,110266.94,18630.27,255.72,62784.09,57100.55,5619.06,64.48,conventional,2015,NewOrleansMobile +2,2015-12-13,0.86,204217.2,119689.49,31214.29,437.88,52875.54,44564.8,8310.74,0.0,conventional,2015,NewOrleansMobile +3,2015-12-06,0.94,185395.2,117854.69,21553.04,325.0,45662.47,41822.8,3839.67,0.0,conventional,2015,NewOrleansMobile +4,2015-11-29,0.9,175833.54,96662.75,23572.73,298.68,55299.38,49172.32,6127.06,0.0,conventional,2015,NewOrleansMobile +5,2015-11-22,0.94,192074.98,112638.84,18822.53,388.83,60224.78,53791.54,6426.96,6.28,conventional,2015,NewOrleansMobile +6,2015-11-15,0.98,195780.23,113570.58,21747.26,335.0,60127.39,56099.0,4028.39,0.0,conventional,2015,NewOrleansMobile +7,2015-11-08,0.96,197713.69,122265.65,21552.54,692.39,53203.11,49206.68,3996.43,0.0,conventional,2015,NewOrleansMobile +8,2015-11-01,0.97,204738.15,129683.8,16059.69,486.47,58508.19,50413.78,8082.05,12.36,conventional,2015,NewOrleansMobile +9,2015-10-25,1.01,191180.56,117736.07,17516.63,646.78,55281.08,51959.11,3321.97,0.0,conventional,2015,NewOrleansMobile +10,2015-10-18,1.02,206563.03,124894.03,18241.03,1003.78,62424.19,58060.12,4364.07,0.0,conventional,2015,NewOrleansMobile +11,2015-10-11,1.0,217777.46,135769.89,16126.01,1155.54,64726.02,56426.31,8293.55,6.16,conventional,2015,NewOrleansMobile +12,2015-10-04,1.0,222488.23,133195.58,20601.83,1171.5,67519.32,59907.03,7612.29,0.0,conventional,2015,NewOrleansMobile +13,2015-09-27,1.06,199908.44,123528.92,17616.44,1515.75,57247.33,53115.57,4131.76,0.0,conventional,2015,NewOrleansMobile +14,2015-09-20,1.0,224017.47,135003.95,24187.24,1608.76,63217.52,56901.55,6309.86,6.11,conventional,2015,NewOrleansMobile +15,2015-09-13,1.02,219776.27,140509.91,18106.55,1713.51,59446.3,54335.47,5110.83,0.0,conventional,2015,NewOrleansMobile +16,2015-09-06,0.99,248354.52,155273.07,18010.18,2204.32,72866.95,64673.2,8193.75,0.0,conventional,2015,NewOrleansMobile +17,2015-08-30,1.03,234307.92,144651.98,14746.53,2416.44,72492.97,68104.04,4376.84,12.09,conventional,2015,NewOrleansMobile +18,2015-08-23,1.04,240560.86,152247.87,18687.77,2886.6,66738.62,61777.91,4942.58,18.13,conventional,2015,NewOrleansMobile +19,2015-08-16,1.04,253158.7,151208.53,16681.65,7405.88,77862.64,72975.89,4844.44,42.31,conventional,2015,NewOrleansMobile +20,2015-08-09,1.0,272464.74,171948.43,10121.42,11932.03,78462.86,71332.39,7130.47,0.0,conventional,2015,NewOrleansMobile +21,2015-08-02,1.04,248670.72,157656.04,8025.5,11763.0,71226.18,66186.24,5015.77,24.17,conventional,2015,NewOrleansMobile +22,2015-07-26,1.03,258960.17,171672.53,10443.49,12343.88,64500.27,61569.83,2930.44,0.0,conventional,2015,NewOrleansMobile +23,2015-07-19,0.98,258559.32,167068.14,8930.71,11720.44,70840.03,62702.44,8131.55,6.04,conventional,2015,NewOrleansMobile +24,2015-07-12,1.05,239908.64,149305.77,11069.26,11822.33,67711.28,62705.51,4999.72,6.05,conventional,2015,NewOrleansMobile +25,2015-07-05,1.01,297481.36,185225.73,9201.65,15050.73,88003.25,81157.38,6839.81,6.06,conventional,2015,NewOrleansMobile +26,2015-06-28,1.03,261199.27,163193.51,10737.56,8080.05,79188.15,75120.4,4043.46,24.29,conventional,2015,NewOrleansMobile +27,2015-06-21,0.93,293734.93,182416.44,8803.83,7161.74,95352.92,86878.25,8474.67,0.0,conventional,2015,NewOrleansMobile +28,2015-06-14,1.02,262250.02,166072.0,10920.46,268.71,84988.85,80570.6,4418.25,0.0,conventional,2015,NewOrleansMobile +29,2015-06-07,0.99,288859.92,186502.94,8769.22,297.49,93290.27,85387.95,7902.32,0.0,conventional,2015,NewOrleansMobile +30,2015-05-31,1.04,245293.53,164856.45,8536.94,319.0,71581.14,67111.69,4469.45,0.0,conventional,2015,NewOrleansMobile +31,2015-05-24,1.03,265237.17,175841.33,10463.04,235.0,78697.8,71635.79,7062.01,0.0,conventional,2015,NewOrleansMobile +32,2015-05-17,0.96,257403.43,172610.15,9661.21,262.0,74870.07,69919.72,4950.35,0.0,conventional,2015,NewOrleansMobile +33,2015-05-10,1.05,256291.77,176480.19,7959.95,321.0,71530.63,67176.21,4354.42,0.0,conventional,2015,NewOrleansMobile +34,2015-05-03,0.93,308655.6,204609.56,13133.92,299.55,90612.57,81127.8,9484.77,0.0,conventional,2015,NewOrleansMobile +35,2015-04-26,0.96,265739.79,179543.83,9195.1,288.0,76712.86,72727.69,3985.17,0.0,conventional,2015,NewOrleansMobile +36,2015-04-19,0.93,263486.63,172951.25,12171.55,373.11,77990.72,74117.3,3873.42,0.0,conventional,2015,NewOrleansMobile +37,2015-04-12,0.97,235709.99,168050.37,7155.35,294.0,60210.27,53843.01,6367.26,0.0,conventional,2015,NewOrleansMobile +38,2015-04-05,0.99,237821.61,166893.13,7766.84,250.0,62911.64,57555.16,5167.59,188.89,conventional,2015,NewOrleansMobile +39,2015-03-29,0.97,237188.41,161509.61,9472.68,77.75,66128.37,62564.2,3564.17,0.0,conventional,2015,NewOrleansMobile +40,2015-03-22,0.9,282494.07,196325.14,8985.9,179.21,77003.82,68626.59,8377.23,0.0,conventional,2015,NewOrleansMobile +41,2015-03-15,1.09,233696.32,159683.23,11363.11,183.95,62466.03,58352.29,4113.74,0.0,conventional,2015,NewOrleansMobile +42,2015-03-08,1.06,248273.79,163007.69,12379.43,269.87,72616.8,69335.51,3281.29,0.0,conventional,2015,NewOrleansMobile +43,2015-03-01,1.08,224752.17,138924.43,16229.64,384.82,69213.28,62740.63,6472.65,0.0,conventional,2015,NewOrleansMobile +44,2015-02-22,0.92,256174.52,178792.99,10819.78,346.88,66214.87,62873.75,3341.12,0.0,conventional,2015,NewOrleansMobile +45,2015-02-15,1.02,230069.01,155288.64,11863.71,253.04,62663.62,60468.24,2195.38,0.0,conventional,2015,NewOrleansMobile +46,2015-02-08,0.93,242065.29,169656.18,8648.32,202.67,63558.12,61345.53,2212.59,0.0,conventional,2015,NewOrleansMobile +47,2015-02-01,0.81,367711.87,271075.59,11860.86,426.32,84349.1,76463.29,7885.81,0.0,conventional,2015,NewOrleansMobile +48,2015-01-25,0.94,271448.06,188798.96,12771.98,352.52,69524.6,66085.94,3438.66,0.0,conventional,2015,NewOrleansMobile +49,2015-01-18,1.03,267666.12,179991.12,23263.42,213.64,64197.94,61302.5,2895.44,0.0,conventional,2015,NewOrleansMobile +50,2015-01-11,0.97,239232.35,165505.1,10680.54,231.54,62815.17,59593.91,3221.26,0.0,conventional,2015,NewOrleansMobile +51,2015-01-04,0.94,222751.51,148384.22,14085.72,218.63,60062.94,54422.22,5640.72,0.0,conventional,2015,NewOrleansMobile +0,2015-12-27,1.17,1129876.05,13711.19,872603.6,894.58,242666.68,208470.99,34191.25,4.44,conventional,2015,NewYork +1,2015-12-20,1.23,1139347.98,13998.35,867406.68,803.83,257139.12,212615.2,44523.92,0.0,conventional,2015,NewYork +2,2015-12-13,1.12,1254805.29,15990.38,975504.52,1657.92,261652.47,222446.62,39205.85,0.0,conventional,2015,NewYork +3,2015-12-06,1.2,1068971.54,15730.1,887708.08,892.62,164640.74,136643.23,27997.51,0.0,conventional,2015,NewYork +4,2015-11-29,1.16,999169.64,13652.41,814571.57,863.58,170082.08,139508.76,30573.32,0.0,conventional,2015,NewYork +5,2015-11-22,1.14,1111803.12,15004.7,905344.06,1227.89,190226.47,156660.8,33558.6,7.07,conventional,2015,NewYork +6,2015-11-15,1.04,1357393.34,23669.62,1107466.31,929.57,225327.84,196060.17,29267.67,0.0,conventional,2015,NewYork +7,2015-11-08,1.13,1406262.16,20146.29,1097994.07,753.78,287368.02,198024.18,89343.84,0.0,conventional,2015,NewYork +8,2015-11-01,1.06,2180520.22,24197.61,1916954.83,1226.57,238141.21,183727.03,54399.03,15.15,conventional,2015,NewYork +9,2015-10-25,1.23,1048045.86,18035.94,790163.44,540.63,239305.85,192750.44,46555.41,0.0,conventional,2015,NewYork +10,2015-10-18,0.97,1856337.85,23873.63,1598365.27,1173.01,232925.94,181854.71,51069.15,2.08,conventional,2015,NewYork +11,2015-10-11,1.28,1099283.22,14859.09,792683.64,721.46,291019.03,214209.27,76809.76,0.0,conventional,2015,NewYork +12,2015-10-04,1.26,1342963.26,19623.48,1060768.61,1078.17,261493.0,208106.11,53386.89,0.0,conventional,2015,NewYork +13,2015-09-27,1.16,1201066.41,15448.68,941112.78,983.6,243521.35,185973.17,57548.18,0.0,conventional,2015,NewYork +14,2015-09-20,1.18,1192210.54,16098.34,913022.98,801.09,262288.13,214317.49,47970.64,0.0,conventional,2015,NewYork +15,2015-09-13,1.16,1479334.84,20526.41,1208256.11,1030.24,249522.08,181277.74,68237.18,7.16,conventional,2015,NewYork +16,2015-09-06,1.22,1340925.56,19894.27,1074698.43,1295.45,245037.41,201210.17,43820.11,7.13,conventional,2015,NewYork +17,2015-08-30,1.22,1251081.11,18628.2,982355.97,1530.58,248566.36,208604.73,39872.77,88.86,conventional,2015,NewYork +18,2015-08-23,1.1,1477964.12,22589.42,1222687.73,822.48,231864.49,197249.71,34604.15,10.63,conventional,2015,NewYork +19,2015-08-16,1.14,1535981.4,19663.39,1291206.23,1727.95,223383.83,188594.0,34787.84,1.99,conventional,2015,NewYork +20,2015-08-09,1.1,1563915.04,23326.28,1290583.13,976.16,249029.47,218715.85,30313.62,0.0,conventional,2015,NewYork +21,2015-08-02,1.14,1458722.6,21768.56,1184264.91,1330.65,251358.48,216693.68,34664.8,0.0,conventional,2015,NewYork +22,2015-07-26,1.28,1211731.19,19228.22,910716.77,1321.69,280464.51,233874.8,46589.71,0.0,conventional,2015,NewYork +23,2015-07-19,1.37,1251919.24,20811.41,923816.05,2324.14,304967.64,256581.76,48382.38,3.5,conventional,2015,NewYork +24,2015-07-12,1.27,1338282.24,22742.33,956051.1,5130.14,354358.67,306199.58,47542.37,616.72,conventional,2015,NewYork +25,2015-07-05,1.18,1666825.63,23947.74,1290776.67,5470.64,346630.58,278911.21,67625.57,93.8,conventional,2015,NewYork +26,2015-06-28,1.36,1284789.44,17714.92,917010.98,3347.48,346716.06,266450.36,80224.13,41.57,conventional,2015,NewYork +27,2015-06-21,1.28,1667026.11,18711.02,1312242.38,5159.36,330913.35,287710.54,43147.53,55.28,conventional,2015,NewYork +28,2015-06-14,1.32,1363133.97,23161.35,931945.04,3548.03,404479.55,323080.99,81280.96,117.6,conventional,2015,NewYork +29,2015-06-07,1.32,1731061.12,24734.98,1347902.88,2235.54,356187.72,296939.83,59171.88,76.01,conventional,2015,NewYork +30,2015-05-31,1.43,1493218.75,24958.8,1077663.26,1368.92,389227.77,322139.9,67077.51,10.36,conventional,2015,NewYork +31,2015-05-24,1.37,1515022.63,21741.7,1103694.97,1724.03,387861.93,322563.16,65288.42,10.35,conventional,2015,NewYork +32,2015-05-17,1.43,1255552.68,21866.23,871213.06,1648.45,360824.94,300933.75,59891.19,0.0,conventional,2015,NewYork +33,2015-05-10,1.22,2118593.92,27734.02,1711900.09,4590.52,374369.29,316975.34,57393.95,0.0,conventional,2015,NewYork +34,2015-05-03,1.32,1679103.39,23447.41,1317970.18,4554.01,333131.79,257688.23,74835.23,608.33,conventional,2015,NewYork +35,2015-04-26,1.44,1295589.61,20400.34,932216.48,2618.1,340354.69,246376.89,93487.52,490.28,conventional,2015,NewYork +36,2015-04-19,1.42,1332514.63,20252.47,927145.61,2366.85,382749.7,278784.54,103965.16,0.0,conventional,2015,NewYork +37,2015-04-12,1.43,1084407.8,18928.26,764676.24,1846.37,298956.93,239070.0,59886.93,0.0,conventional,2015,NewYork +38,2015-04-05,1.41,1244324.47,20081.53,909664.31,2011.01,312567.62,252129.98,59757.08,680.56,conventional,2015,NewYork +39,2015-03-29,1.36,1183815.23,21780.45,882071.76,1812.92,278150.1,216859.46,61290.64,0.0,conventional,2015,NewYork +40,2015-03-22,1.33,1192732.41,22713.33,884992.9,1650.73,283375.45,223369.68,60005.77,0.0,conventional,2015,NewYork +41,2015-03-15,1.45,1097737.98,22591.72,749461.13,1923.63,323761.5,258642.39,65119.11,0.0,conventional,2015,NewYork +42,2015-03-08,1.36,1129333.95,31886.43,755537.72,2109.98,339799.82,271636.2,68163.62,0.0,conventional,2015,NewYork +43,2015-03-01,1.18,1338129.89,19919.91,1025372.06,2849.43,289988.49,228539.44,61449.05,0.0,conventional,2015,NewYork +44,2015-02-22,1.33,1088977.45,18716.23,757987.66,2885.0,309388.56,253336.8,56051.76,0.0,conventional,2015,NewYork +45,2015-02-15,1.36,997562.44,17342.31,688201.27,2659.51,289359.35,240950.54,48408.81,0.0,conventional,2015,NewYork +46,2015-02-08,1.11,1658708.73,26781.64,1310966.23,2996.36,317964.5,249204.48,68760.02,0.0,conventional,2015,NewYork +47,2015-02-01,1.36,1433763.11,22622.87,1084529.78,3251.93,323358.53,243186.43,80172.1,0.0,conventional,2015,NewYork +48,2015-01-25,1.36,1102868.27,18101.89,768131.81,3184.12,313450.45,249848.32,63602.13,0.0,conventional,2015,NewYork +49,2015-01-18,1.37,1044280.56,18945.56,749309.2,3039.37,272986.43,211934.06,61052.37,0.0,conventional,2015,NewYork +50,2015-01-11,1.34,1018225.83,15880.8,714530.7,2315.72,285498.61,221731.33,63767.28,0.0,conventional,2015,NewYork +51,2015-01-04,1.09,1402890.2,23641.0,1127882.44,1871.07,249495.69,178683.01,70812.68,0.0,conventional,2015,NewYork +0,2015-12-27,1.2,3156360.2,69920.54,2313155.65,35858.35,737425.66,690116.94,46305.06,1003.66,conventional,2015,Northeast +1,2015-12-20,1.2,3190120.04,72576.52,2330694.41,14909.65,771939.46,709816.2,60823.26,1300.0,conventional,2015,Northeast +2,2015-12-13,1.09,3696551.52,81055.1,2852333.86,4716.39,758446.17,706707.82,51734.84,3.51,conventional,2015,Northeast +3,2015-12-06,1.14,3218494.55,85444.57,2541186.76,3341.42,588521.8,547611.8,40901.19,8.81,conventional,2015,Northeast +4,2015-11-29,1.22,2593780.51,71191.69,1964333.5,3025.26,555230.06,513647.72,41582.34,0.0,conventional,2015,Northeast +5,2015-11-22,1.16,3026217.24,79006.95,2316404.82,4067.05,626738.42,581899.23,44833.83,5.36,conventional,2015,Northeast +6,2015-11-15,1.09,3538946.22,89242.5,2738913.76,3393.33,707396.63,658542.91,48853.72,0.0,conventional,2015,Northeast +7,2015-11-08,1.1,4205775.44,86385.14,3333003.32,4491.79,781895.19,645890.25,136004.94,0.0,conventional,2015,Northeast +8,2015-11-01,1.09,4801621.08,95355.74,3920642.46,4729.26,780893.62,697293.46,83580.91,19.25,conventional,2015,Northeast +9,2015-10-25,1.15,3306614.18,88907.0,2438454.39,3363.89,775888.9,693912.61,81976.29,0.0,conventional,2015,Northeast +10,2015-10-18,0.99,4866607.14,93569.28,4025382.16,5421.22,742234.48,661214.66,81018.08,1.74,conventional,2015,Northeast +11,2015-10-11,1.23,3307828.65,88376.7,2383018.56,4364.98,832068.41,721415.51,110651.17,1.73,conventional,2015,Northeast +12,2015-10-04,1.21,3585183.3,99666.72,2679760.58,5434.32,800321.68,716567.95,83753.73,0.0,conventional,2015,Northeast +13,2015-09-27,1.13,3739072.7,86278.88,2965153.82,4785.85,682854.15,589490.48,93363.67,0.0,conventional,2015,Northeast +14,2015-09-20,1.21,3334592.0,86196.27,2492113.6,4293.65,751988.48,672883.2,79105.28,0.0,conventional,2015,Northeast +15,2015-09-13,1.14,4205294.58,95839.65,3364304.91,4616.79,740533.23,638404.31,102122.78,6.14,conventional,2015,Northeast +16,2015-09-06,1.18,4088061.71,99311.62,3227507.37,6693.26,754549.46,688674.24,65777.16,98.06,conventional,2015,Northeast +17,2015-08-30,1.2,3825966.51,93227.99,2981372.2,11075.1,740291.22,678533.22,60808.49,949.51,conventional,2015,Northeast +18,2015-08-23,1.13,4146220.81,107907.11,3291930.64,7167.44,739215.62,682203.72,55968.11,1043.79,conventional,2015,Northeast +19,2015-08-16,1.17,4221435.38,97139.95,3382543.31,8138.99,733613.13,677997.05,55602.12,13.96,conventional,2015,Northeast +20,2015-08-09,1.1,4786334.13,105393.94,3894801.66,9116.57,777021.96,722077.58,54944.38,0.0,conventional,2015,Northeast +21,2015-08-02,1.19,4154658.67,104772.22,3244095.85,11726.4,794064.2,742929.61,51131.53,3.06,conventional,2015,Northeast +22,2015-07-26,1.28,3757524.71,102482.55,2757145.78,14864.77,883031.61,815705.91,67279.91,45.79,conventional,2015,Northeast +23,2015-07-19,1.27,4169213.2,107602.07,3057929.0,36476.44,967205.69,900291.21,66844.37,70.11,conventional,2015,Northeast +24,2015-07-12,1.2,4454138.91,110242.95,3051823.18,75096.18,1216976.6,1148604.15,67207.62,1164.83,conventional,2015,Northeast +25,2015-07-05,1.24,4855273.71,122190.4,3328289.46,92678.08,1312115.77,1208641.02,102680.02,794.73,conventional,2015,Northeast +26,2015-06-28,1.3,4100932.47,105387.01,2670469.78,72708.66,1252367.02,1129604.18,121974.02,788.82,conventional,2015,Northeast +27,2015-06-21,1.27,4508474.0,106859.5,3203944.93,77296.43,1120373.14,1052770.72,66494.05,1108.37,conventional,2015,Northeast +28,2015-06-14,1.2,4561749.66,112693.47,2985953.81,56827.08,1406275.3,1285655.99,118366.89,2252.42,conventional,2015,Northeast +29,2015-06-07,1.27,4721927.3,109587.85,3416600.27,7058.9,1188680.28,1099881.5,87700.94,1097.84,conventional,2015,Northeast +30,2015-05-31,1.34,4329239.82,116068.2,2954175.96,5488.64,1253507.02,1154091.74,97864.57,1550.71,conventional,2015,Northeast +31,2015-05-24,1.26,4661457.29,112425.95,3212552.24,7774.83,1328704.27,1206950.37,120720.48,1033.42,conventional,2015,Northeast +32,2015-05-17,1.33,4094677.85,114065.77,2730591.16,5593.26,1244427.66,1156872.13,87402.54,152.99,conventional,2015,Northeast +33,2015-05-10,1.21,5498650.28,134556.37,4143702.97,10220.82,1210170.12,1120295.45,89874.67,0.0,conventional,2015,Northeast +34,2015-05-03,1.24,4597313.41,129459.52,3365962.7,13487.57,1088403.62,954844.81,132615.75,943.06,conventional,2015,Northeast +35,2015-04-26,1.36,3646363.66,110930.88,2492744.36,7040.21,1035648.21,902141.63,132855.85,650.73,conventional,2015,Northeast +36,2015-04-19,1.31,3786141.18,110954.74,2552885.19,6389.9,1115911.35,984678.78,131232.57,0.0,conventional,2015,Northeast +37,2015-04-12,1.33,3203213.09,93987.65,2102179.57,5306.97,1001738.9,920108.45,81630.45,0.0,conventional,2015,Northeast +38,2015-04-05,1.34,3467770.71,97887.72,2409449.74,6203.7,954229.55,869574.86,83524.01,1130.68,conventional,2015,Northeast +39,2015-03-29,1.26,3497026.98,96169.31,2543290.15,5707.16,851860.36,769079.25,82778.21,2.9,conventional,2015,Northeast +40,2015-03-22,1.22,3520408.65,118765.0,2526519.62,5436.84,869687.19,782209.83,87477.36,0.0,conventional,2015,Northeast +41,2015-03-15,1.34,3135991.73,111777.91,2082038.09,5531.34,936644.39,843930.39,92714.0,0.0,conventional,2015,Northeast +42,2015-03-08,1.27,3250832.53,113602.19,2111936.1,7864.97,1017429.27,909308.32,108119.32,1.63,conventional,2015,Northeast +43,2015-03-01,1.15,3780455.44,88609.28,2790180.2,7317.59,894348.37,810060.6,84287.77,0.0,conventional,2015,Northeast +44,2015-02-22,1.29,3042447.03,92283.05,2003076.22,7049.52,940038.24,860636.05,79402.19,0.0,conventional,2015,Northeast +45,2015-02-15,1.29,2983695.9,88056.2,1958075.38,7773.07,929791.25,864046.29,65744.96,0.0,conventional,2015,Northeast +46,2015-02-08,1.09,4457049.41,128978.49,3354876.63,7219.81,965974.48,869917.39,96055.45,1.64,conventional,2015,Northeast +47,2015-02-01,1.23,4298883.17,133613.0,3149375.34,9191.41,1006703.42,896750.09,109953.33,0.0,conventional,2015,Northeast +48,2015-01-25,1.27,3238501.89,96761.81,2129188.49,7923.65,1004627.94,903840.54,100787.4,0.0,conventional,2015,Northeast +49,2015-01-18,1.32,3066789.62,91803.09,2098784.32,7215.59,868986.62,784229.51,84757.11,0.0,conventional,2015,Northeast +50,2015-01-11,1.28,3056024.77,97343.55,2070661.43,6915.47,881104.32,796190.93,84913.39,0.0,conventional,2015,Northeast +51,2015-01-04,1.09,3759282.62,126640.65,2860709.93,7580.38,764351.66,669970.5,94381.16,0.0,conventional,2015,Northeast +0,2015-12-27,1.21,304598.42,2601.32,250270.9,12123.24,39602.96,39602.96,0.0,0.0,conventional,2015,NorthernNewEngland +1,2015-12-20,1.17,284808.22,2616.13,232459.75,3820.83,45911.51,45911.51,0.0,0.0,conventional,2015,NorthernNewEngland +2,2015-12-13,0.95,407482.83,2970.12,369076.25,116.84,35319.62,35319.62,0.0,0.0,conventional,2015,NorthernNewEngland +3,2015-12-06,1.11,303058.29,3320.11,261503.41,94.18,38140.59,38140.59,0.0,0.0,conventional,2015,NorthernNewEngland +4,2015-11-29,1.25,219689.9,2897.91,181977.84,88.58,34725.57,34725.57,0.0,0.0,conventional,2015,NorthernNewEngland +5,2015-11-22,1.08,274209.2,2770.62,230517.24,140.77,40780.57,40777.1,3.47,0.0,conventional,2015,NorthernNewEngland +6,2015-11-15,1.07,287015.98,2589.55,237255.49,90.93,47080.01,46867.66,212.35,0.0,conventional,2015,NorthernNewEngland +7,2015-11-08,0.96,489339.78,2347.38,453089.14,132.37,33770.89,33362.0,408.89,0.0,conventional,2015,NorthernNewEngland +8,2015-11-01,1.07,350260.55,3271.4,281498.53,209.48,65281.14,65081.14,200.0,0.0,conventional,2015,NorthernNewEngland +9,2015-10-25,1.08,313881.26,2599.46,268057.07,158.24,43066.49,42475.38,591.11,0.0,conventional,2015,NorthernNewEngland +10,2015-10-18,1.0,402466.4,3274.11,361448.46,192.81,37551.02,36297.69,1253.33,0.0,conventional,2015,NorthernNewEngland +11,2015-10-11,1.19,278472.66,3616.8,231543.02,204.79,43108.05,43001.38,106.67,0.0,conventional,2015,NorthernNewEngland +12,2015-10-04,1.12,298222.53,3978.7,253346.07,248.25,40649.51,40431.73,217.78,0.0,conventional,2015,NorthernNewEngland +13,2015-09-27,0.98,458602.59,2768.16,427544.89,265.22,28024.32,27515.43,508.89,0.0,conventional,2015,NorthernNewEngland +14,2015-09-20,1.17,322729.94,2413.3,270775.68,291.7,49249.26,48164.82,1084.44,0.0,conventional,2015,NorthernNewEngland +15,2015-09-13,1.09,356105.25,1752.73,301172.05,277.25,52903.22,52023.22,880.0,0.0,conventional,2015,NorthernNewEngland +16,2015-09-06,1.01,508207.79,2506.81,456884.53,377.7,48438.75,48349.86,88.89,0.0,conventional,2015,NorthernNewEngland +17,2015-08-30,1.13,395127.18,2834.15,337184.98,457.24,54650.81,54650.81,0.0,0.0,conventional,2015,NorthernNewEngland +18,2015-08-23,1.18,400101.77,2487.19,338130.6,608.29,58875.69,58875.69,0.0,0.0,conventional,2015,NorthernNewEngland +19,2015-08-16,1.23,372516.0,2067.21,304465.27,775.0,65208.52,65208.52,0.0,0.0,conventional,2015,NorthernNewEngland +20,2015-08-09,1.03,579226.47,2513.38,523492.97,815.98,52404.14,52400.81,3.33,0.0,conventional,2015,NorthernNewEngland +21,2015-08-02,1.25,417082.92,2279.1,347110.01,1637.61,66056.2,66056.2,0.0,0.0,conventional,2015,NorthernNewEngland +22,2015-07-26,1.25,402791.86,2558.33,324258.79,2452.04,73522.7,73518.43,4.27,0.0,conventional,2015,NorthernNewEngland +23,2015-07-19,1.03,594451.88,3108.09,522040.27,6851.58,62451.94,62434.86,17.08,0.0,conventional,2015,NorthernNewEngland +24,2015-07-12,1.1,509215.2,3111.08,341891.96,15371.77,148840.39,148811.62,28.77,0.0,conventional,2015,NorthernNewEngland +25,2015-07-05,1.15,536642.98,2968.62,338863.42,17991.98,176818.96,176636.74,182.22,0.0,conventional,2015,NorthernNewEngland +26,2015-06-28,1.14,452801.32,2582.77,282587.99,15156.27,152474.29,152425.4,48.89,0.0,conventional,2015,NorthernNewEngland +27,2015-06-21,1.18,425885.58,2279.37,300069.61,14779.66,108756.94,108756.94,0.0,0.0,conventional,2015,NorthernNewEngland +28,2015-06-14,1.04,537725.07,2804.46,362082.5,10744.54,162093.57,162093.57,0.0,0.0,conventional,2015,NorthernNewEngland +29,2015-06-07,1.17,427216.77,2096.21,314308.78,37.43,110774.35,110774.35,0.0,0.0,conventional,2015,NorthernNewEngland +30,2015-05-31,1.2,413699.46,2523.96,313153.31,61.25,97960.94,97960.94,0.0,0.0,conventional,2015,NorthernNewEngland +31,2015-05-24,1.04,512172.44,2624.76,372289.48,53.34,137204.86,137204.86,0.0,0.0,conventional,2015,NorthernNewEngland +32,2015-05-17,1.15,422484.37,2745.99,287792.49,29.88,131916.01,131904.74,11.27,0.0,conventional,2015,NorthernNewEngland +33,2015-05-10,1.05,578436.76,2739.66,503984.46,78.56,71634.08,71253.97,380.11,0.0,conventional,2015,NorthernNewEngland +34,2015-05-03,1.16,366987.36,2322.24,304233.27,59.55,60372.3,60354.57,17.73,0.0,conventional,2015,NorthernNewEngland +35,2015-04-26,1.24,311879.23,1960.76,253562.76,79.62,56276.09,56259.03,17.06,0.0,conventional,2015,NorthernNewEngland +36,2015-04-19,1.13,346561.62,2156.47,284389.27,78.27,59937.61,59936.64,0.97,0.0,conventional,2015,NorthernNewEngland +37,2015-04-12,1.16,306250.63,2160.72,214309.89,58.52,89721.5,89699.64,21.86,0.0,conventional,2015,NorthernNewEngland +38,2015-04-05,1.19,309143.83,2352.11,252306.55,82.02,54403.15,54288.7,114.45,0.0,conventional,2015,NorthernNewEngland +39,2015-03-29,1.07,412639.2,2452.76,372165.06,57.27,37964.11,37036.33,927.78,0.0,conventional,2015,NorthernNewEngland +40,2015-03-22,1.19,282155.05,4556.72,229492.52,55.64,48050.17,47856.09,194.08,0.0,conventional,2015,NorthernNewEngland +41,2015-03-15,1.15,301852.8,6236.37,247092.81,90.6,48433.02,48390.8,42.22,0.0,conventional,2015,NorthernNewEngland +42,2015-03-08,1.09,287963.73,2507.83,234532.06,15.02,50908.82,50606.6,302.22,0.0,conventional,2015,NorthernNewEngland +43,2015-03-01,1.05,355677.99,2266.45,310490.26,41.26,42880.02,42880.02,0.0,0.0,conventional,2015,NorthernNewEngland +44,2015-02-22,1.13,264118.86,2875.24,217477.35,23.63,43742.64,43735.97,6.67,0.0,conventional,2015,NorthernNewEngland +45,2015-02-15,1.11,288514.78,2897.82,232117.81,33.13,53466.02,53303.8,162.22,0.0,conventional,2015,NorthernNewEngland +46,2015-02-08,1.03,363935.24,4606.01,308443.03,33.62,50852.58,50014.8,837.78,0.0,conventional,2015,NorthernNewEngland +47,2015-02-01,1.06,412752.74,4353.96,361694.45,34.23,46670.1,46576.76,93.34,0.0,conventional,2015,NorthernNewEngland +48,2015-01-25,1.06,290611.31,3806.65,233232.89,24.12,53547.65,53543.21,4.44,0.0,conventional,2015,NorthernNewEngland +49,2015-01-18,1.12,309202.71,3012.79,241380.95,38.05,64770.92,64770.92,0.0,0.0,conventional,2015,NorthernNewEngland +50,2015-01-11,1.06,314717.03,4578.25,265252.09,22.9,44863.79,44863.79,0.0,0.0,conventional,2015,NorthernNewEngland +51,2015-01-04,1.05,321823.77,4966.76,264351.96,14.68,52490.37,52490.37,0.0,0.0,conventional,2015,NorthernNewEngland +0,2015-12-27,0.99,305773.54,211102.9,20765.29,124.04,73781.31,40641.55,33139.76,0.0,conventional,2015,Orlando +1,2015-12-20,1.21,200074.81,131152.6,15794.56,122.07,53005.58,36258.03,16747.55,0.0,conventional,2015,Orlando +2,2015-12-13,0.96,310101.52,217679.37,24260.86,168.63,67992.66,31407.15,36585.51,0.0,conventional,2015,Orlando +3,2015-12-06,1.2,199063.82,135222.96,21555.66,121.93,42163.27,24098.62,18064.65,0.0,conventional,2015,Orlando +4,2015-11-29,0.96,262683.8,190361.54,21007.77,37.82,51276.67,21536.82,29739.85,0.0,conventional,2015,Orlando +5,2015-11-22,0.98,266950.55,184441.61,21585.56,120.55,60802.83,27114.53,33688.3,0.0,conventional,2015,Orlando +6,2015-11-15,1.24,200715.34,129533.08,20681.56,109.39,50391.31,27742.9,22648.41,0.0,conventional,2015,Orlando +7,2015-11-08,1.24,202954.88,132375.83,21007.3,92.19,49479.56,31369.94,18109.62,0.0,conventional,2015,Orlando +8,2015-11-01,0.97,330071.34,228073.04,29350.55,80.56,72567.19,33748.18,38819.01,0.0,conventional,2015,Orlando +9,2015-10-25,1.25,210265.79,138110.06,24182.08,91.29,47882.36,29737.38,18128.16,16.82,conventional,2015,Orlando +10,2015-10-18,1.24,204526.46,131126.38,24094.4,71.02,49234.66,32915.51,16319.15,0.0,conventional,2015,Orlando +11,2015-10-11,1.0,308032.62,211056.18,30064.22,105.62,66806.6,31968.47,34838.13,0.0,conventional,2015,Orlando +12,2015-10-04,1.0,332997.12,224769.27,34085.54,60.86,74081.45,37192.16,36886.48,2.81,conventional,2015,Orlando +13,2015-09-27,1.28,202457.31,114107.06,41995.26,142.31,46212.68,29149.95,17062.73,0.0,conventional,2015,Orlando +14,2015-09-20,0.99,329684.97,201392.27,51930.95,119.94,76241.81,36956.49,39285.32,0.0,conventional,2015,Orlando +15,2015-09-13,1.23,221548.25,113374.88,51291.97,43.61,56837.79,37653.91,19183.88,0.0,conventional,2015,Orlando +16,2015-09-06,0.99,375737.02,232502.52,56930.16,82.75,86221.59,43014.65,43206.94,0.0,conventional,2015,Orlando +17,2015-08-30,1.25,238269.85,123335.43,51487.73,173.11,63273.58,44694.9,18578.68,0.0,conventional,2015,Orlando +18,2015-08-23,1.21,228926.1,113657.5,51869.47,81.78,63317.35,47516.81,15800.54,0.0,conventional,2015,Orlando +19,2015-08-16,1.23,240185.69,128769.54,46941.6,91.62,64382.93,45260.21,19122.72,0.0,conventional,2015,Orlando +20,2015-08-09,0.99,388550.28,249265.95,57952.32,99.51,81232.5,47242.5,33990.0,0.0,conventional,2015,Orlando +21,2015-08-02,1.24,240821.52,130990.19,49482.92,88.69,60259.72,43472.9,16786.82,0.0,conventional,2015,Orlando +22,2015-07-26,1.22,239841.95,128204.96,51179.38,71.27,60386.34,44878.7,15507.64,0.0,conventional,2015,Orlando +23,2015-07-19,0.98,363733.15,226313.4,57749.18,61.06,79609.51,42477.4,37132.11,0.0,conventional,2015,Orlando +24,2015-07-12,1.22,245528.89,133073.61,53986.68,73.35,58395.25,41732.15,16663.1,0.0,conventional,2015,Orlando +25,2015-07-05,0.97,420329.35,258450.62,66371.81,83.04,95423.88,58523.36,36900.52,0.0,conventional,2015,Orlando +26,2015-06-28,1.15,277853.94,144510.58,52467.4,118.88,80757.08,62186.73,18570.35,0.0,conventional,2015,Orlando +27,2015-06-21,0.96,394035.19,243576.61,57122.76,726.55,92609.27,55420.02,37189.25,0.0,conventional,2015,Orlando +28,2015-06-14,1.22,256149.75,141946.09,36946.34,2083.82,75173.5,56501.85,18663.64,8.01,conventional,2015,Orlando +29,2015-06-07,0.98,391556.97,271323.04,33611.14,561.66,86061.13,48219.72,37841.41,0.0,conventional,2015,Orlando +30,2015-05-31,1.26,250040.49,174419.44,19641.65,73.35,55906.05,38303.2,17602.85,0.0,conventional,2015,Orlando +31,2015-05-24,1.0,401991.2,295794.7,29758.0,160.42,76278.08,37157.88,39120.2,0.0,conventional,2015,Orlando +32,2015-05-17,1.23,243265.56,168886.63,19797.32,173.63,54407.98,38066.02,16341.96,0.0,conventional,2015,Orlando +33,2015-05-10,1.23,257032.99,185586.2,19590.84,138.92,51717.03,35990.16,15726.87,0.0,conventional,2015,Orlando +34,2015-05-03,0.98,501573.86,369352.45,36610.76,165.6,95445.05,40398.41,54823.03,223.61,conventional,2015,Orlando +35,2015-04-26,1.23,257307.97,179052.54,21351.58,93.98,56809.87,38167.83,18294.82,347.22,conventional,2015,Orlando +36,2015-04-19,1.23,231777.27,157931.42,18812.23,205.89,54827.73,35504.7,19323.03,0.0,conventional,2015,Orlando +37,2015-04-12,0.99,375363.86,275283.48,28203.4,96.79,71780.19,31886.66,39893.53,0.0,conventional,2015,Orlando +38,2015-04-05,1.1,300679.66,211116.53,25858.76,103.76,63600.61,34091.52,29143.81,365.28,conventional,2015,Orlando +39,2015-03-29,1.25,216925.45,150612.51,18785.42,128.97,47398.55,29215.6,18182.95,0.0,conventional,2015,Orlando +40,2015-03-22,0.98,363504.44,260635.0,29682.52,141.02,73045.9,37453.09,35592.81,0.0,conventional,2015,Orlando +41,2015-03-15,1.27,226247.68,154931.57,21353.84,115.89,49846.38,34513.35,15333.03,0.0,conventional,2015,Orlando +42,2015-03-08,1.27,219071.79,149785.3,19868.22,86.78,49331.49,33996.64,15334.85,0.0,conventional,2015,Orlando +43,2015-03-01,1.0,316199.07,227527.01,26599.79,114.63,61957.64,31707.62,30250.02,0.0,conventional,2015,Orlando +44,2015-02-22,1.18,226965.26,151270.02,22481.35,66.79,53147.1,36700.48,16446.62,0.0,conventional,2015,Orlando +45,2015-02-15,1.26,204812.28,139189.15,21210.42,37.33,44375.38,20733.73,23641.65,0.0,conventional,2015,Orlando +46,2015-02-08,1.23,204396.56,137587.02,24318.2,99.17,42392.17,18229.35,24162.82,0.0,conventional,2015,Orlando +47,2015-02-01,0.95,489224.51,358731.15,50048.43,180.21,80264.72,26854.75,53409.97,0.0,conventional,2015,Orlando +48,2015-01-25,1.28,211991.09,133616.3,29418.39,91.59,48864.81,22591.61,26273.2,0.0,conventional,2015,Orlando +49,2015-01-18,1.33,191078.37,112722.12,34703.28,83.8,43569.17,18914.84,24654.33,0.0,conventional,2015,Orlando +50,2015-01-11,1.29,202034.59,119336.02,39236.11,52.44,43410.02,18762.45,24647.57,0.0,conventional,2015,Orlando +51,2015-01-04,1.0,281803.19,190743.27,38265.21,75.22,52719.49,19933.7,32785.79,0.0,conventional,2015,Orlando +0,2015-12-27,1.25,308546.88,9778.07,208945.03,530.89,89292.89,82776.35,6513.36,3.18,conventional,2015,Philadelphia +1,2015-12-20,1.33,306843.13,9646.13,198361.8,532.68,98302.52,88587.5,9715.02,0.0,conventional,2015,Philadelphia +2,2015-12-13,1.18,352369.17,12500.24,244536.03,683.27,94649.63,87738.34,6908.05,3.24,conventional,2015,Philadelphia +3,2015-12-06,1.18,346896.0,16536.57,254808.6,540.52,75010.31,67405.8,7596.24,8.27,conventional,2015,Philadelphia +4,2015-11-29,1.23,275091.78,11335.64,195284.31,533.71,67938.12,62262.05,5676.07,0.0,conventional,2015,Philadelphia +5,2015-11-22,1.23,320058.33,12680.14,226193.52,591.76,80592.91,74840.49,5752.42,0.0,conventional,2015,Philadelphia +6,2015-11-15,1.17,363548.06,13989.06,263608.21,604.6,85346.19,78169.59,7176.6,0.0,conventional,2015,Philadelphia +7,2015-11-08,1.27,374933.8,13866.99,268320.02,479.7,92267.09,76143.42,16123.67,0.0,conventional,2015,Philadelphia +8,2015-11-01,1.13,559566.5,15179.56,453729.65,570.57,90086.72,78873.23,11206.74,6.75,conventional,2015,Philadelphia +9,2015-10-25,1.19,398337.69,19897.83,283085.98,437.37,94916.51,84288.89,10627.62,0.0,conventional,2015,Philadelphia +10,2015-10-18,1.06,496236.63,14369.89,388376.48,819.38,92670.88,83101.65,9569.23,0.0,conventional,2015,Philadelphia +11,2015-10-11,1.26,373650.83,13073.44,256350.83,550.69,103675.87,83281.81,20392.37,1.69,conventional,2015,Philadelphia +12,2015-10-04,1.28,388205.8,14121.46,268719.03,754.42,104610.89,91635.61,12975.28,0.0,conventional,2015,Philadelphia +13,2015-09-27,1.25,368779.77,14983.22,255352.91,497.49,97946.15,82669.93,15276.22,0.0,conventional,2015,Philadelphia +14,2015-09-20,1.25,361361.6,14832.84,251090.34,580.3,94858.12,84698.03,10160.09,0.0,conventional,2015,Philadelphia +15,2015-09-13,1.19,454795.64,15898.8,346217.39,752.17,91927.28,78976.79,12950.49,0.0,conventional,2015,Philadelphia +16,2015-09-06,1.25,399061.75,16018.81,284480.15,633.36,97929.43,89096.28,8827.37,5.78,conventional,2015,Philadelphia +17,2015-08-30,1.26,381319.43,14942.34,269812.12,654.66,95910.31,86293.69,9570.66,45.96,conventional,2015,Philadelphia +18,2015-08-23,1.09,449716.31,21862.51,336374.97,717.48,90761.35,82479.25,8193.68,88.42,conventional,2015,Philadelphia +19,2015-08-16,1.2,425707.59,14748.68,324061.94,652.49,86244.48,78393.26,7851.22,0.0,conventional,2015,Philadelphia +20,2015-08-09,1.19,405555.56,14929.69,294414.04,801.53,95410.3,88554.27,6856.03,0.0,conventional,2015,Philadelphia +21,2015-08-02,1.21,399212.29,15487.29,288809.36,955.95,93959.69,85344.81,8614.88,0.0,conventional,2015,Philadelphia +22,2015-07-26,1.36,373032.23,16844.86,251976.91,856.78,103353.68,92024.65,11329.03,0.0,conventional,2015,Philadelphia +23,2015-07-19,1.39,369973.99,15791.25,237182.53,1472.69,115527.52,103254.89,12272.63,0.0,conventional,2015,Philadelphia +24,2015-07-12,1.38,372062.3,15106.58,233808.22,1885.79,121261.71,109196.16,11757.42,308.13,conventional,2015,Philadelphia +25,2015-07-05,1.25,460459.45,16232.83,306535.67,1024.11,136666.84,122252.96,14370.22,43.66,conventional,2015,Philadelphia +26,2015-06-28,1.38,378931.1,15520.17,234777.69,806.52,127826.72,111168.32,16658.4,0.0,conventional,2015,Philadelphia +27,2015-06-21,1.33,456983.44,16066.69,310906.06,1155.21,128855.48,117744.63,11040.67,70.18,conventional,2015,Philadelphia +28,2015-06-14,1.32,421514.11,16036.91,253565.67,1064.13,150847.4,130970.38,19779.78,97.24,conventional,2015,Philadelphia +29,2015-06-07,1.35,476827.34,17117.86,325420.87,1339.88,132948.73,116932.41,15941.0,75.32,conventional,2015,Philadelphia +30,2015-05-31,1.43,436027.81,18200.08,270397.51,1068.66,146361.56,130734.4,15496.02,131.14,conventional,2015,Philadelphia +31,2015-05-24,1.4,440574.33,15940.65,277233.41,1055.58,146344.69,129470.64,16871.38,2.67,conventional,2015,Philadelphia +32,2015-05-17,1.44,388799.73,16905.14,241209.0,1129.29,129556.3,116806.95,12725.41,23.94,conventional,2015,Philadelphia +33,2015-05-10,1.32,535922.59,18571.03,381134.53,2051.34,134165.69,118815.58,15350.11,0.0,conventional,2015,Philadelphia +34,2015-05-03,1.22,548556.66,27871.95,393975.99,1834.71,124874.01,106616.53,18018.59,238.89,conventional,2015,Philadelphia +35,2015-04-26,1.46,385541.99,17337.89,249070.68,1439.55,117693.87,100776.04,16917.83,0.0,conventional,2015,Philadelphia +36,2015-04-19,1.43,389414.29,16585.73,242740.8,1309.62,128778.14,110321.07,18457.07,0.0,conventional,2015,Philadelphia +37,2015-04-12,1.44,335389.56,15208.07,210183.29,1217.98,108780.22,95743.68,13036.54,0.0,conventional,2015,Philadelphia +38,2015-04-05,1.43,365947.19,15897.74,240591.74,1290.63,108167.08,94087.03,14028.66,51.39,conventional,2015,Philadelphia +39,2015-03-29,1.39,339877.09,15819.32,222182.25,1168.94,100706.58,88306.35,12400.23,0.0,conventional,2015,Philadelphia +40,2015-03-22,1.18,449261.63,27380.04,322071.0,1104.04,98706.55,85471.81,13234.74,0.0,conventional,2015,Philadelphia +41,2015-03-15,1.44,331456.96,15055.12,199103.98,1077.74,116220.12,102101.2,14118.92,0.0,conventional,2015,Philadelphia +42,2015-03-08,1.4,349609.78,19780.09,207010.01,1051.07,121768.61,106813.89,14953.22,1.5,conventional,2015,Philadelphia +43,2015-03-01,1.24,392412.07,16329.41,267027.05,1528.3,107527.31,93745.13,13782.18,0.0,conventional,2015,Philadelphia +44,2015-02-22,1.36,348215.37,14876.71,214953.17,1353.67,117031.82,105513.5,11518.32,0.0,conventional,2015,Philadelphia +45,2015-02-15,1.34,335173.17,15920.85,210874.58,1259.97,107117.77,97737.29,9380.48,0.0,conventional,2015,Philadelphia +46,2015-02-08,1.09,477875.71,26219.21,336509.39,1353.94,113793.17,100107.79,13683.87,1.51,conventional,2015,Philadelphia +47,2015-02-01,1.14,569304.8,30263.22,417993.89,1722.1,119325.59,104365.66,14959.93,0.0,conventional,2015,Philadelphia +48,2015-01-25,1.36,355645.73,16112.5,211453.65,1409.19,126670.39,110991.22,15679.17,0.0,conventional,2015,Philadelphia +49,2015-01-18,1.4,331495.41,15116.27,209523.15,1469.44,105386.55,93250.96,12135.59,0.0,conventional,2015,Philadelphia +50,2015-01-11,1.38,315984.22,14323.61,198387.14,1715.41,101558.06,88980.0,12578.06,0.0,conventional,2015,Philadelphia +51,2015-01-04,1.1,407675.56,24190.91,294715.33,2121.45,86647.87,72829.94,13817.93,0.0,conventional,2015,Philadelphia +0,2015-12-27,0.49,1137707.43,738314.8,286858.37,11642.46,100891.8,70749.02,30142.78,0.0,conventional,2015,PhoenixTucson +1,2015-12-20,0.53,1097224.25,785254.94,204147.3,10346.68,97475.33,72169.92,25305.41,0.0,conventional,2015,PhoenixTucson +2,2015-12-13,0.66,907470.09,546182.56,241774.69,9429.99,110082.85,92028.11,18054.74,0.0,conventional,2015,PhoenixTucson +3,2015-12-06,0.56,1105500.34,760680.02,271207.14,13354.8,60258.38,60255.64,2.74,0.0,conventional,2015,PhoenixTucson +4,2015-11-29,0.75,724915.6,449043.34,208439.29,9770.44,57662.53,57662.53,0.0,0.0,conventional,2015,PhoenixTucson +5,2015-11-22,0.77,737834.48,441712.62,220374.84,11102.75,64644.27,63088.81,1555.46,0.0,conventional,2015,PhoenixTucson +6,2015-11-15,0.62,1010132.49,690246.77,244820.79,11412.94,63651.99,63178.2,473.79,0.0,conventional,2015,PhoenixTucson +7,2015-11-08,0.6,1102271.52,793103.44,234926.57,11555.39,62686.12,62666.63,19.49,0.0,conventional,2015,PhoenixTucson +8,2015-11-01,0.71,907452.21,592066.03,232050.89,20971.41,62363.88,62363.88,0.0,0.0,conventional,2015,PhoenixTucson +9,2015-10-25,0.83,761261.71,435986.9,240689.98,19968.66,64616.17,64585.35,30.82,0.0,conventional,2015,PhoenixTucson +10,2015-10-18,0.65,1094731.43,728349.92,287934.77,10255.97,68190.77,68128.99,61.78,0.0,conventional,2015,PhoenixTucson +11,2015-10-11,0.89,795732.52,382706.67,321487.4,19579.82,71958.63,71955.82,2.81,0.0,conventional,2015,PhoenixTucson +12,2015-10-04,0.89,726095.5,363730.26,269015.75,10663.95,82685.54,82685.54,0.0,0.0,conventional,2015,PhoenixTucson +13,2015-09-27,0.91,664201.67,364703.64,229488.26,9974.5,60035.27,59972.02,63.25,0.0,conventional,2015,PhoenixTucson +14,2015-09-20,0.71,892151.19,410147.31,403760.93,6031.4,72211.55,64530.22,7681.33,0.0,conventional,2015,PhoenixTucson +15,2015-09-13,0.71,1100901.69,606856.71,294311.71,15399.69,184333.58,74017.75,110315.83,0.0,conventional,2015,PhoenixTucson +16,2015-09-06,0.58,1390417.77,937165.6,293505.07,6101.99,153645.11,93116.34,60528.77,0.0,conventional,2015,PhoenixTucson +17,2015-08-30,0.74,939785.74,610521.08,238518.32,5931.86,84814.48,84714.7,99.78,0.0,conventional,2015,PhoenixTucson +18,2015-08-23,0.78,873856.52,562928.77,228549.09,4923.05,77455.61,75885.27,1570.34,0.0,conventional,2015,PhoenixTucson +19,2015-08-16,0.66,1203149.94,836443.14,223690.17,8294.96,134721.67,95992.23,38729.44,0.0,conventional,2015,PhoenixTucson +20,2015-08-09,0.79,981975.08,621184.17,228961.24,7040.81,124788.86,79670.22,45118.64,0.0,conventional,2015,PhoenixTucson +21,2015-08-02,0.78,946868.0,611966.36,205131.07,5261.65,124508.92,80224.04,44284.88,0.0,conventional,2015,PhoenixTucson +22,2015-07-26,0.77,903242.22,579515.76,204147.69,8805.55,110773.22,77011.19,33762.03,0.0,conventional,2015,PhoenixTucson +23,2015-07-19,0.76,928600.19,608209.31,200732.5,4302.29,115356.09,84065.18,31290.91,0.0,conventional,2015,PhoenixTucson +24,2015-07-12,0.7,1015567.49,689407.92,201234.96,4759.57,120165.04,84710.72,35134.88,319.44,conventional,2015,PhoenixTucson +25,2015-07-05,0.56,1456835.79,1096452.67,220124.25,5251.74,135007.13,98977.04,36030.09,0.0,conventional,2015,PhoenixTucson +26,2015-06-28,0.7,955510.57,668071.26,176318.03,4419.34,106701.94,84853.81,21848.13,0.0,conventional,2015,PhoenixTucson +27,2015-06-21,0.54,1343180.92,1028045.58,188115.35,4910.71,122109.28,99129.04,22980.24,0.0,conventional,2015,PhoenixTucson +28,2015-06-14,0.53,1353850.06,1046887.77,180388.89,4263.45,122309.95,94240.24,28069.71,0.0,conventional,2015,PhoenixTucson +29,2015-06-07,0.52,1457359.83,1130917.54,199669.94,4499.84,122272.51,90030.35,32242.16,0.0,conventional,2015,PhoenixTucson +30,2015-05-31,0.56,1282095.88,981853.86,177850.55,10400.82,111990.65,81585.03,30405.62,0.0,conventional,2015,PhoenixTucson +31,2015-05-24,0.58,1261540.03,968755.93,180676.87,6013.78,106093.45,84441.02,21652.43,0.0,conventional,2015,PhoenixTucson +32,2015-05-17,0.67,1013049.67,739725.96,167185.6,4706.99,101431.12,77703.34,23727.78,0.0,conventional,2015,PhoenixTucson +33,2015-05-10,0.67,1072300.38,775683.37,182956.41,4878.68,108781.92,77196.88,31585.04,0.0,conventional,2015,PhoenixTucson +34,2015-05-03,0.6,1268607.36,901701.94,256791.72,5692.05,104421.65,80245.0,23882.21,294.44,conventional,2015,PhoenixTucson +35,2015-04-26,0.53,1272428.72,1012900.04,159158.29,5832.62,94537.77,76637.06,17900.71,0.0,conventional,2015,PhoenixTucson +36,2015-04-19,0.51,1366844.88,1097285.22,164460.99,7534.3,97564.37,44646.67,52917.7,0.0,conventional,2015,PhoenixTucson +37,2015-04-12,0.66,1019280.57,746352.69,181417.77,5732.19,85777.92,39455.85,46322.07,0.0,conventional,2015,PhoenixTucson +38,2015-04-05,0.57,1320320.85,1058164.41,172115.69,7128.12,82912.63,49271.61,33641.02,0.0,conventional,2015,PhoenixTucson +39,2015-03-29,0.57,1231267.27,998057.91,157108.31,8638.85,67462.2,43759.93,23702.27,0.0,conventional,2015,PhoenixTucson +40,2015-03-22,0.71,1089117.0,813326.5,208871.24,6035.48,60883.78,60874.89,8.89,0.0,conventional,2015,PhoenixTucson +41,2015-03-15,0.6,1326720.8,1104002.1,149254.65,6041.54,67422.51,67422.51,0.0,0.0,conventional,2015,PhoenixTucson +42,2015-03-08,0.72,1042159.49,824092.39,143842.58,5737.48,68487.04,68487.04,0.0,0.0,conventional,2015,PhoenixTucson +43,2015-03-01,0.7,1031351.33,755408.34,198955.65,12551.58,64435.76,64435.76,0.0,0.0,conventional,2015,PhoenixTucson +44,2015-02-22,0.63,1163115.49,925363.02,163229.81,6791.95,67730.71,67727.1,3.61,0.0,conventional,2015,PhoenixTucson +45,2015-02-15,0.6,1159509.68,938840.55,143378.43,5938.72,71351.98,71344.45,7.53,0.0,conventional,2015,PhoenixTucson +46,2015-02-08,0.64,1151157.44,881998.68,184023.21,5517.0,79618.55,79618.55,0.0,0.0,conventional,2015,PhoenixTucson +47,2015-02-01,0.56,1544750.92,1194635.06,261342.47,6335.66,82437.73,82437.73,0.0,0.0,conventional,2015,PhoenixTucson +48,2015-01-25,0.61,1233503.27,1002267.22,150640.9,5034.13,75561.02,75558.47,2.55,0.0,conventional,2015,PhoenixTucson +49,2015-01-18,0.67,1088608.66,811662.62,200514.36,5643.07,70788.61,70788.61,0.0,0.0,conventional,2015,PhoenixTucson +50,2015-01-11,0.61,1110753.05,849580.75,182629.59,12237.43,66305.28,66305.28,0.0,0.0,conventional,2015,PhoenixTucson +51,2015-01-04,0.65,1048062.16,770635.37,178418.32,6509.41,92499.06,92499.06,0.0,0.0,conventional,2015,PhoenixTucson +0,2015-12-27,1.25,73109.9,1241.48,45856.11,951.32,25060.99,17512.17,7392.15,156.67,conventional,2015,Pittsburgh +1,2015-12-20,1.22,68972.79,1176.24,40726.41,1003.63,26066.51,17094.03,8749.15,223.33,conventional,2015,Pittsburgh +2,2015-12-13,1.19,65332.74,1219.9,38684.45,959.83,24468.56,15525.47,8943.09,0.0,conventional,2015,Pittsburgh +3,2015-12-06,1.21,61870.23,1712.54,41481.83,1081.56,17594.3,8739.98,8854.32,0.0,conventional,2015,Pittsburgh +4,2015-11-29,1.26,54779.61,1443.95,35859.3,958.7,16517.66,7946.78,8570.88,0.0,conventional,2015,Pittsburgh +5,2015-11-22,1.3,63345.59,1584.89,42392.76,1119.61,18248.33,12552.12,5696.21,0.0,conventional,2015,Pittsburgh +6,2015-11-15,1.24,64518.82,1179.87,42966.81,979.92,19392.22,13712.24,5679.98,0.0,conventional,2015,Pittsburgh +7,2015-11-08,0.93,123489.29,1423.35,85217.83,2313.9,34534.21,13430.34,21103.87,0.0,conventional,2015,Pittsburgh +8,2015-11-01,1.16,81573.97,1523.62,60507.97,1706.56,17835.82,12000.07,5835.75,0.0,conventional,2015,Pittsburgh +9,2015-10-25,1.22,69191.72,2301.4,40984.47,1289.08,24616.77,13587.31,11029.46,0.0,conventional,2015,Pittsburgh +10,2015-10-18,1.23,70132.85,1700.52,43226.31,1465.61,23740.41,13949.01,9791.4,0.0,conventional,2015,Pittsburgh +11,2015-10-11,0.96,84053.56,981.32,59821.03,1535.63,21715.58,14948.34,6767.24,0.0,conventional,2015,Pittsburgh +12,2015-10-04,0.99,89538.02,1068.04,69555.83,2321.1,16593.05,13300.88,3292.17,0.0,conventional,2015,Pittsburgh +13,2015-09-27,1.11,91558.77,815.05,62972.23,1852.47,25919.02,14361.09,11557.93,0.0,conventional,2015,Pittsburgh +14,2015-09-20,1.19,74826.22,1137.38,44085.07,1176.81,28426.96,19393.09,9033.87,0.0,conventional,2015,Pittsburgh +15,2015-09-13,1.16,74962.45,1340.03,43000.49,998.6,29623.33,21080.82,8542.51,0.0,conventional,2015,Pittsburgh +16,2015-09-06,1.12,114216.62,1158.99,78578.82,2074.97,32403.84,23118.99,9284.85,0.0,conventional,2015,Pittsburgh +17,2015-08-30,1.37,74510.02,1493.6,40727.85,3632.29,28656.28,20079.07,8573.41,3.8,conventional,2015,Pittsburgh +18,2015-08-23,1.2,83196.11,1411.93,51014.61,1714.56,29055.01,18577.69,10477.32,0.0,conventional,2015,Pittsburgh +19,2015-08-16,1.23,87687.64,1314.23,53769.39,1381.07,31222.95,21335.31,9887.64,0.0,conventional,2015,Pittsburgh +20,2015-08-09,0.96,145930.35,1306.17,99815.2,3021.58,41787.4,26618.86,15168.54,0.0,conventional,2015,Pittsburgh +21,2015-08-02,1.43,74680.7,1309.11,42703.28,1151.93,29516.38,23664.27,5852.11,0.0,conventional,2015,Pittsburgh +22,2015-07-26,1.43,68936.46,1421.76,40238.45,1088.54,26187.71,20545.66,5642.05,0.0,conventional,2015,Pittsburgh +23,2015-07-19,1.44,73321.36,1296.93,43696.6,1675.99,26651.84,23700.61,2951.23,0.0,conventional,2015,Pittsburgh +24,2015-07-12,1.48,68846.81,1229.69,40944.72,2652.87,24019.53,21786.27,2221.89,11.37,conventional,2015,Pittsburgh +25,2015-07-05,1.23,115579.5,1635.6,67122.02,5316.06,41505.82,31488.54,10017.28,0.0,conventional,2015,Pittsburgh +26,2015-06-28,1.2,111690.04,1548.14,62790.32,3823.55,43528.03,31542.36,11981.88,3.79,conventional,2015,Pittsburgh +27,2015-06-21,1.34,88214.04,1680.72,43292.93,4210.41,39029.98,29949.74,9080.24,0.0,conventional,2015,Pittsburgh +28,2015-06-14,1.3,92713.49,1614.97,44490.6,3147.67,43460.25,34041.6,9418.65,0.0,conventional,2015,Pittsburgh +29,2015-06-07,1.33,84556.54,1734.03,43816.5,1482.9,37523.11,28434.19,9081.46,7.46,conventional,2015,Pittsburgh +30,2015-05-31,1.32,83007.91,1472.2,45514.38,1439.62,34581.71,24083.06,10498.65,0.0,conventional,2015,Pittsburgh +31,2015-05-24,1.01,181169.72,2157.12,117543.69,3203.21,58265.7,26280.32,31985.38,0.0,conventional,2015,Pittsburgh +32,2015-05-17,1.41,85405.61,1822.43,50365.05,1406.54,31811.59,24984.5,6827.09,0.0,conventional,2015,Pittsburgh +33,2015-05-10,1.46,82110.05,2099.7,48280.34,1279.05,30450.96,23419.51,7031.45,0.0,conventional,2015,Pittsburgh +34,2015-05-03,0.98,208821.04,5264.18,145405.43,5183.12,52968.31,24324.24,28644.07,0.0,conventional,2015,Pittsburgh +35,2015-04-26,1.44,79976.86,1820.06,44304.28,1309.41,32543.11,22762.11,9781.0,0.0,conventional,2015,Pittsburgh +36,2015-04-19,1.49,75775.26,1724.93,43528.57,1286.7,29235.06,29007.2,227.86,0.0,conventional,2015,Pittsburgh +37,2015-04-12,1.5,69339.77,1734.18,38757.55,1180.96,27667.08,27527.96,139.12,0.0,conventional,2015,Pittsburgh +38,2015-04-05,1.29,76146.82,2256.74,48395.44,1645.11,23849.53,23652.54,161.52,35.47,conventional,2015,Pittsburgh +39,2015-03-29,1.25,69747.2,2566.52,51530.22,1503.84,14146.62,14034.79,108.32,3.51,conventional,2015,Pittsburgh +40,2015-03-22,1.23,68499.85,2604.56,46711.0,1370.01,17814.28,10044.46,7769.82,0.0,conventional,2015,Pittsburgh +41,2015-03-15,1.23,71906.75,2450.87,44600.81,1291.66,23563.41,17661.43,5901.98,0.0,conventional,2015,Pittsburgh +42,2015-03-08,0.95,159735.96,2148.75,116151.4,3731.73,37704.08,19742.03,17962.05,0.0,conventional,2015,Pittsburgh +43,2015-03-01,1.25,65484.37,841.5,39074.28,1225.82,24342.77,19985.54,4357.23,0.0,conventional,2015,Pittsburgh +44,2015-02-22,1.26,70345.39,1496.07,42829.11,1187.76,24832.45,19166.04,5666.41,0.0,conventional,2015,Pittsburgh +45,2015-02-15,1.43,60213.79,1773.89,32544.28,1559.04,24336.58,19783.32,4553.26,0.0,conventional,2015,Pittsburgh +46,2015-02-08,1.38,66360.74,1904.73,37355.04,990.22,26110.75,20249.85,5860.9,0.0,conventional,2015,Pittsburgh +47,2015-02-01,1.25,112065.73,2685.5,75345.64,2164.35,31870.24,20561.48,11308.76,0.0,conventional,2015,Pittsburgh +48,2015-01-25,1.32,98722.79,1847.59,70060.41,2397.99,24416.8,17599.77,6817.03,0.0,conventional,2015,Pittsburgh +49,2015-01-18,1.47,59312.07,2147.08,36730.4,1075.26,19359.33,12321.55,7037.78,0.0,conventional,2015,Pittsburgh +50,2015-01-11,1.54,54644.32,1491.88,33759.12,1325.17,18068.15,12165.94,5902.21,0.0,conventional,2015,Pittsburgh +51,2015-01-04,1.52,54956.8,3013.04,35456.88,1561.7,14925.18,11264.8,3660.38,0.0,conventional,2015,Pittsburgh +0,2015-12-27,1.1,1306923.23,571602.6,404837.9,25188.57,305294.16,279127.08,24838.63,1328.45,conventional,2015,Plains +1,2015-12-20,1.13,1139861.64,497437.17,341262.17,27253.71,273908.59,255725.09,16936.24,1247.26,conventional,2015,Plains +2,2015-12-13,1.02,1472501.13,695419.91,463238.46,17927.73,295915.03,266174.79,28516.98,1223.26,conventional,2015,Plains +3,2015-12-06,1.08,1245289.61,579077.46,394656.96,13005.11,258550.08,243961.62,13539.44,1049.02,conventional,2015,Plains +4,2015-11-29,1.11,1099646.06,460759.58,364748.79,10648.01,263489.68,248449.51,14157.64,882.53,conventional,2015,Plains +5,2015-11-22,1.1,1281613.28,584490.6,403638.25,15421.83,278062.6,260079.65,16838.2,1144.75,conventional,2015,Plains +6,2015-11-15,1.09,1294866.75,549163.56,441216.08,17268.45,287218.66,270313.26,16012.74,892.66,conventional,2015,Plains +7,2015-11-08,1.12,1285586.97,513609.22,467808.56,19975.92,284193.27,266376.52,16399.34,1417.41,conventional,2015,Plains +8,2015-11-01,1.12,1350091.82,469390.49,584277.22,17013.86,279410.25,264897.41,13224.58,1288.26,conventional,2015,Plains +9,2015-10-25,1.11,1411354.54,559720.23,583990.89,15616.99,252026.43,237398.61,13346.37,1281.45,conventional,2015,Plains +10,2015-10-18,1.12,1368887.69,492966.35,588304.97,14931.07,272685.3,257340.06,13759.12,1586.12,conventional,2015,Plains +11,2015-10-11,1.05,1560845.55,708470.83,576153.62,14585.67,261635.43,248699.54,11296.81,1639.08,conventional,2015,Plains +12,2015-10-04,1.14,1309245.88,492561.57,566241.35,15401.65,235041.31,223134.82,10382.51,1523.98,conventional,2015,Plains +13,2015-09-27,0.99,1542657.96,564480.54,729792.24,14587.65,233797.53,221484.44,10779.94,1533.15,conventional,2015,Plains +14,2015-09-20,1.16,1386951.96,611683.23,506379.84,15441.14,253447.75,237139.11,15090.36,1218.28,conventional,2015,Plains +15,2015-09-13,1.13,1526985.3,727720.21,491074.45,15652.47,292538.17,271845.35,19120.68,1572.14,conventional,2015,Plains +16,2015-09-06,1.12,1714650.22,857114.48,547236.44,15397.86,294901.44,276258.81,17590.29,1052.34,conventional,2015,Plains +17,2015-08-30,1.13,1481150.17,699755.69,477305.38,14634.43,289454.67,270142.84,18056.86,1254.97,conventional,2015,Plains +18,2015-08-23,1.06,1731574.98,930286.05,498120.52,16041.72,287126.69,275002.9,10772.67,1351.12,conventional,2015,Plains +19,2015-08-16,1.08,1727851.85,911935.06,508403.31,14777.59,292735.89,277836.31,13619.13,1280.45,conventional,2015,Plains +20,2015-08-09,1.14,1605913.77,789751.38,498857.3,21090.12,296214.97,281135.85,13951.38,1127.74,conventional,2015,Plains +21,2015-08-02,1.13,1593031.18,761285.69,506914.62,33145.85,291685.02,276864.79,13477.89,1342.34,conventional,2015,Plains +22,2015-07-26,1.04,1844887.26,898275.28,576870.99,53882.08,315858.91,292786.5,21669.83,1402.58,conventional,2015,Plains +23,2015-07-19,1.09,1701986.81,824192.7,491747.17,37429.71,348617.23,332847.58,14512.26,1257.39,conventional,2015,Plains +24,2015-07-12,1.07,1808842.07,953323.15,530475.53,14462.47,310580.92,292683.09,12904.75,4993.08,conventional,2015,Plains +25,2015-07-05,1.06,1988311.9,927860.87,627548.45,19636.37,413266.21,396505.99,15522.11,1238.11,conventional,2015,Plains +26,2015-06-28,1.08,1826182.48,954738.73,480810.73,18637.71,371995.31,358087.94,12451.24,1456.13,conventional,2015,Plains +27,2015-06-21,1.08,1921720.44,1049002.63,474166.48,22901.69,375649.64,358605.35,15767.87,1276.42,conventional,2015,Plains +28,2015-06-14,1.06,1974806.07,1117926.72,443241.8,27161.21,386476.34,375290.39,9693.84,1492.11,conventional,2015,Plains +29,2015-06-07,1.04,2026464.23,1207877.63,445069.67,17034.85,356482.08,353409.98,1330.64,1741.46,conventional,2015,Plains +30,2015-05-31,1.09,1853451.18,1085643.8,418763.72,11918.96,337124.7,334423.95,902.84,1797.91,conventional,2015,Plains +31,2015-05-24,1.03,2026639.78,1221023.1,450494.18,12148.13,342974.37,338254.28,2828.9,1891.19,conventional,2015,Plains +32,2015-05-17,1.06,1966712.28,1228815.94,413931.34,11424.24,312540.76,308421.89,2567.1,1551.77,conventional,2015,Plains +33,2015-05-10,1.03,2105831.09,1319397.29,424405.51,12270.69,349757.6,344545.73,3874.51,1337.36,conventional,2015,Plains +34,2015-05-03,1.01,2333238.9,1485535.26,508885.83,17406.31,321411.5,311074.95,6744.66,3591.89,conventional,2015,Plains +35,2015-04-26,1.13,1787071.74,1022915.7,447514.72,23878.2,292763.12,278730.74,6240.25,7792.13,conventional,2015,Plains +36,2015-04-19,1.12,1801956.87,1055547.01,433296.82,33180.04,279933.0,272779.43,5725.48,1428.09,conventional,2015,Plains +37,2015-04-12,0.97,2160085.64,1423163.45,471484.38,12343.11,253094.7,246327.83,5726.34,1040.53,conventional,2015,Plains +38,2015-04-05,1.13,1668243.39,898263.98,437183.58,11645.81,321150.02,305406.51,9584.33,6159.18,conventional,2015,Plains +39,2015-03-29,1.08,1657404.68,912075.07,441015.24,10085.33,294229.04,286268.48,6846.07,1114.49,conventional,2015,Plains +40,2015-03-22,1.09,1651115.09,885071.63,450192.76,11548.82,304301.88,293708.39,9411.9,1181.59,conventional,2015,Plains +41,2015-03-15,1.1,1590080.35,839457.23,435373.81,10344.37,304904.94,300231.39,3729.66,943.89,conventional,2015,Plains +42,2015-03-08,1.11,1531085.64,838161.13,412581.04,9283.84,271059.63,269498.52,734.29,826.82,conventional,2015,Plains +43,2015-03-01,1.09,1619341.49,854129.32,460986.95,11417.67,292807.55,291293.85,540.74,972.96,conventional,2015,Plains +44,2015-02-22,1.08,1547969.24,818736.11,430679.66,20287.44,278266.03,276280.33,860.21,1125.49,conventional,2015,Plains +45,2015-02-15,1.05,1507821.92,847328.77,409541.36,17649.52,233302.27,231591.27,844.44,866.56,conventional,2015,Plains +46,2015-02-08,0.98,1794543.77,1077511.79,490403.56,12488.08,214140.34,212347.25,690.66,1102.43,conventional,2015,Plains +47,2015-02-01,0.92,2561325.42,1383259.28,926444.37,13768.85,237852.92,235274.47,1245.73,1332.72,conventional,2015,Plains +48,2015-01-25,1.08,1510836.96,841332.54,454162.3,14022.68,201319.44,198193.38,1929.49,1196.57,conventional,2015,Plains +49,2015-01-18,1.02,1674945.55,966515.75,485150.34,14504.7,208774.76,206579.02,1074.3,1121.44,conventional,2015,Plains +50,2015-01-11,1.09,1402841.83,737363.86,448207.79,10009.45,207260.73,205299.64,954.59,1006.5,conventional,2015,Plains +51,2015-01-04,1.01,1683795.3,1027842.3,466641.12,10476.89,178834.99,177360.2,440.57,1034.22,conventional,2015,Plains +0,2015-12-27,1.01,417190.47,87748.64,131201.91,16182.87,182057.05,181763.3,44.65,249.1,conventional,2015,Portland +1,2015-12-20,0.98,416298.84,82416.56,134956.77,13276.06,185649.45,185479.46,29.77,140.22,conventional,2015,Portland +2,2015-12-13,0.93,429103.52,94577.23,162734.28,12487.18,159304.83,159009.01,109.68,186.14,conventional,2015,Portland +3,2015-12-06,0.73,743770.2,90996.95,270188.87,13360.01,369224.37,363808.78,4531.76,883.83,conventional,2015,Portland +4,2015-11-29,1.04,353818.15,78566.84,113850.46,13672.29,147728.56,147268.25,89.0,371.31,conventional,2015,Portland +5,2015-11-22,1.03,380726.46,83017.79,131660.3,14806.53,151241.84,150474.71,7.4,759.73,conventional,2015,Portland +6,2015-11-15,0.9,568414.35,83998.38,199356.57,16340.66,268718.74,258913.25,2157.19,7648.3,conventional,2015,Portland +7,2015-11-08,1.04,406548.16,100419.74,152265.41,15085.38,138777.63,136935.61,236.07,1605.95,conventional,2015,Portland +8,2015-11-01,1.06,423475.77,98262.62,182672.87,11993.63,130546.65,130164.27,123.39,258.99,conventional,2015,Portland +9,2015-10-25,0.91,480396.16,95297.5,191061.91,13673.67,180363.08,178207.01,1322.84,833.23,conventional,2015,Portland +10,2015-10-18,1.05,438182.64,113111.46,188908.15,16086.11,120076.92,119843.01,92.18,141.73,conventional,2015,Portland +11,2015-10-11,0.79,657656.23,84270.47,324386.38,31627.53,217371.85,211701.25,3997.36,1673.24,conventional,2015,Portland +12,2015-10-04,1.13,421430.94,104149.05,172302.04,45229.53,99750.32,99417.33,165.46,167.53,conventional,2015,Portland +13,2015-09-27,0.9,484598.47,159779.59,187080.35,13101.24,124637.29,124612.73,1.84,22.72,conventional,2015,Portland +14,2015-09-20,0.94,566385.9,121425.14,291367.4,12831.81,140761.55,140535.44,58.92,167.19,conventional,2015,Portland +15,2015-09-13,1.0,535519.29,222536.88,181246.81,15103.06,116632.54,116569.24,22.02,41.28,conventional,2015,Portland +16,2015-09-06,1.1,465258.45,174913.44,188351.71,13357.86,88635.44,88369.14,231.21,35.09,conventional,2015,Portland +17,2015-08-30,1.14,427776.92,154462.2,186124.73,13235.52,73954.47,73781.04,138.56,34.87,conventional,2015,Portland +18,2015-08-23,1.08,545296.58,153011.47,274926.31,15312.9,102045.9,101670.76,332.04,43.1,conventional,2015,Portland +19,2015-08-16,1.17,465897.27,180693.46,190950.32,15332.72,78920.77,78821.71,94.95,4.11,conventional,2015,Portland +20,2015-08-09,1.19,448135.88,174171.38,185098.36,17536.12,71330.02,71232.22,89.57,8.23,conventional,2015,Portland +21,2015-08-02,1.14,501106.6,193728.54,217474.07,20132.68,69771.31,69761.93,7.32,2.06,conventional,2015,Portland +22,2015-07-26,1.18,433999.24,178906.95,171527.43,17189.62,66375.24,66239.5,135.74,0.0,conventional,2015,Portland +23,2015-07-19,1.18,446862.52,188492.76,180269.35,16444.94,61655.47,56419.16,5228.04,8.27,conventional,2015,Portland +24,2015-07-12,1.02,568129.75,264203.19,187613.16,17027.48,99285.92,88288.73,10900.79,96.4,conventional,2015,Portland +25,2015-07-05,1.19,574999.04,215805.97,273227.27,22969.6,62996.2,59731.74,3256.13,8.33,conventional,2015,Portland +26,2015-06-28,1.16,508174.09,196765.08,223128.51,21601.64,66678.86,66557.46,98.42,22.98,conventional,2015,Portland +27,2015-06-21,1.08,579558.0,170388.26,284787.85,32660.15,91721.74,89830.23,14.83,1876.68,conventional,2015,Portland +28,2015-06-14,1.08,622880.59,180452.62,323409.94,18608.64,100409.39,99951.29,393.39,64.71,conventional,2015,Portland +29,2015-06-07,1.16,543944.19,194122.57,239758.46,19235.07,90828.09,90346.52,473.22,8.35,conventional,2015,Portland +30,2015-05-31,1.01,600303.28,249742.24,226577.97,17218.66,106764.41,106687.47,51.91,25.03,conventional,2015,Portland +31,2015-05-24,1.01,606039.09,190231.27,295332.36,15508.11,104967.35,104757.58,136.92,72.85,conventional,2015,Portland +32,2015-05-17,1.06,487024.66,210129.55,162760.11,19253.03,94881.97,94742.82,0.0,139.15,conventional,2015,Portland +33,2015-05-10,0.91,675269.74,241819.96,295585.52,16212.44,121651.82,121155.5,338.86,157.46,conventional,2015,Portland +34,2015-05-03,0.95,644419.48,226738.24,305964.15,16791.96,94925.13,94890.92,7.35,26.86,conventional,2015,Portland +35,2015-04-26,0.95,571442.54,238672.89,224599.46,13860.48,94309.71,94185.46,85.32,38.93,conventional,2015,Portland +36,2015-04-19,0.99,610658.64,144514.6,337188.3,13456.08,115499.66,114658.35,690.46,150.85,conventional,2015,Portland +37,2015-04-12,1.16,433703.29,150701.62,199632.59,15964.76,67404.32,67361.2,43.12,0.0,conventional,2015,Portland +38,2015-04-05,1.22,432729.65,160806.41,178795.8,19335.81,73791.63,73228.59,144.25,418.79,conventional,2015,Portland +39,2015-03-29,1.2,401824.91,162580.71,163122.62,18487.16,57634.42,57229.61,402.85,1.96,conventional,2015,Portland +40,2015-03-22,1.1,426180.78,153885.51,213514.26,16449.01,42332.0,42292.09,37.97,1.94,conventional,2015,Portland +41,2015-03-15,1.21,392802.67,156506.22,160239.43,17300.74,58756.28,58756.28,0.0,0.0,conventional,2015,Portland +42,2015-03-08,1.17,419849.55,147899.8,201529.6,17444.77,52975.38,52751.04,220.46,3.88,conventional,2015,Portland +43,2015-03-01,0.94,598755.26,138994.95,359783.57,16252.3,83724.44,79396.05,4310.94,17.45,conventional,2015,Portland +44,2015-02-22,1.11,495032.46,117115.76,287695.04,15574.43,74647.23,74573.17,74.06,0.0,conventional,2015,Portland +45,2015-02-15,1.23,363889.04,140491.93,153003.62,16459.01,53934.48,51454.09,2472.63,7.76,conventional,2015,Portland +46,2015-02-08,1.08,447701.68,161940.61,232248.98,13386.63,40125.46,38999.96,1125.5,0.0,conventional,2015,Portland +47,2015-02-01,0.98,776237.93,165259.75,535324.57,15903.81,59749.8,48200.04,11547.81,1.95,conventional,2015,Portland +48,2015-01-25,1.09,432770.06,131530.29,229573.27,13384.3,58282.2,40428.06,17854.14,0.0,conventional,2015,Portland +49,2015-01-18,1.11,439617.61,155745.95,220991.54,14692.73,48187.39,34402.17,13785.22,0.0,conventional,2015,Portland +50,2015-01-11,1.05,510152.67,121596.43,292968.56,22743.24,72844.44,64831.61,8012.83,0.0,conventional,2015,Portland +51,2015-01-04,0.97,599965.86,126485.75,377138.79,19781.57,76559.75,61308.73,15251.02,0.0,conventional,2015,Portland +0,2015-12-27,0.96,208425.96,47444.55,86212.38,21669.44,53099.59,52596.72,502.87,0.0,conventional,2015,RaleighGreensboro +1,2015-12-20,0.98,189584.22,43169.56,78630.35,20913.36,46870.95,46617.48,253.47,0.0,conventional,2015,RaleighGreensboro +2,2015-12-13,0.98,207627.79,51042.68,86614.43,24041.02,45929.66,45573.83,355.83,0.0,conventional,2015,RaleighGreensboro +3,2015-12-06,0.97,210379.48,54037.25,84518.32,26500.57,45323.34,45120.91,202.43,0.0,conventional,2015,RaleighGreensboro +4,2015-11-29,0.98,185733.81,49084.79,72843.91,21863.66,41941.45,41606.59,334.86,0.0,conventional,2015,RaleighGreensboro +5,2015-11-22,1.02,179083.03,44120.52,75630.56,25366.63,33965.32,33573.06,392.26,0.0,conventional,2015,RaleighGreensboro +6,2015-11-15,1.0,238990.38,52380.29,112379.04,38424.89,35806.16,34671.43,1134.73,0.0,conventional,2015,RaleighGreensboro +7,2015-11-08,1.07,223564.41,61118.97,68546.36,52451.86,41447.22,39551.73,1895.49,0.0,conventional,2015,RaleighGreensboro +8,2015-11-01,1.12,229530.31,56638.78,60350.15,63741.6,48799.78,46809.56,1990.22,0.0,conventional,2015,RaleighGreensboro +9,2015-10-25,1.22,199222.68,52737.98,50170.35,50086.92,46227.43,44925.95,1301.48,0.0,conventional,2015,RaleighGreensboro +10,2015-10-18,1.23,217581.17,49804.3,64754.24,53069.24,49953.39,48619.54,1333.85,0.0,conventional,2015,RaleighGreensboro +11,2015-10-11,1.17,222606.79,47887.85,54545.59,69417.88,50755.47,48621.59,2133.88,0.0,conventional,2015,RaleighGreensboro +12,2015-10-04,1.29,187692.67,48417.65,56829.33,45935.19,36510.5,34300.9,2209.6,0.0,conventional,2015,RaleighGreensboro +13,2015-09-27,1.12,222849.89,47076.74,71030.22,69313.13,35429.8,33593.74,1836.06,0.0,conventional,2015,RaleighGreensboro +14,2015-09-20,1.22,216519.33,50149.22,63790.55,47238.12,55341.44,52100.42,3241.02,0.0,conventional,2015,RaleighGreensboro +15,2015-09-13,1.16,238903.72,63924.76,55553.71,37519.32,81905.93,80146.2,1759.73,0.0,conventional,2015,RaleighGreensboro +16,2015-09-06,1.04,301641.21,56439.41,83271.26,77352.73,84577.81,83519.16,1058.65,0.0,conventional,2015,RaleighGreensboro +17,2015-08-30,1.16,253577.94,52246.02,61767.29,42039.92,97524.71,97342.36,182.35,0.0,conventional,2015,RaleighGreensboro +18,2015-08-23,1.13,277977.73,50939.49,68496.4,46614.0,111927.84,111602.1,325.74,0.0,conventional,2015,RaleighGreensboro +19,2015-08-16,1.23,241120.74,50360.32,59216.72,47919.71,83623.99,83231.2,392.79,0.0,conventional,2015,RaleighGreensboro +20,2015-08-09,1.23,234070.7,42925.31,65067.83,44441.11,81636.45,81028.63,607.82,0.0,conventional,2015,RaleighGreensboro +21,2015-08-02,1.22,243248.66,49760.49,64419.93,44520.15,84548.09,84232.28,315.81,0.0,conventional,2015,RaleighGreensboro +22,2015-07-26,1.2,232204.85,50568.58,52944.26,41446.55,87245.46,87050.05,195.41,0.0,conventional,2015,RaleighGreensboro +23,2015-07-19,1.2,246513.23,46281.36,63762.88,45046.22,91422.77,90363.6,1059.17,0.0,conventional,2015,RaleighGreensboro +24,2015-07-12,1.19,247167.15,38293.85,78845.11,42204.73,87823.46,86455.56,1367.9,0.0,conventional,2015,RaleighGreensboro +25,2015-07-05,1.16,275670.52,42042.96,103086.21,40891.64,89649.71,88239.15,1410.56,0.0,conventional,2015,RaleighGreensboro +26,2015-06-28,1.17,255921.9,39793.34,84150.14,45055.08,86923.34,86724.24,199.1,0.0,conventional,2015,RaleighGreensboro +27,2015-06-21,1.17,264236.38,45414.99,87728.29,41369.1,89724.0,89158.23,565.77,0.0,conventional,2015,RaleighGreensboro +28,2015-06-14,1.11,286814.82,60157.22,95409.49,41274.25,89973.86,89685.43,288.43,0.0,conventional,2015,RaleighGreensboro +29,2015-06-07,1.14,259977.16,73208.0,61502.61,41892.02,83374.53,82782.86,591.67,0.0,conventional,2015,RaleighGreensboro +30,2015-05-31,1.16,262288.53,77231.53,60701.02,43537.37,80818.61,80542.5,276.11,0.0,conventional,2015,RaleighGreensboro +31,2015-05-24,1.21,267022.77,58855.6,80893.32,50072.71,77201.14,76580.12,621.02,0.0,conventional,2015,RaleighGreensboro +32,2015-05-17,1.16,264908.94,77565.86,64994.1,41158.83,81190.15,80610.84,579.31,0.0,conventional,2015,RaleighGreensboro +33,2015-05-10,1.11,267655.62,76699.18,60772.22,37794.41,92389.81,91891.14,498.67,0.0,conventional,2015,RaleighGreensboro +34,2015-05-03,1.01,335464.54,70984.75,108604.01,80829.91,75045.87,73838.89,1147.26,59.72,conventional,2015,RaleighGreensboro +35,2015-04-26,1.16,259623.56,75695.92,62292.95,38961.11,82673.58,81554.51,978.79,140.28,conventional,2015,RaleighGreensboro +36,2015-04-19,1.13,255436.55,67458.77,58452.52,36476.98,93048.28,92654.74,393.54,0.0,conventional,2015,RaleighGreensboro +37,2015-04-12,1.1,274985.46,71379.06,72736.73,37443.69,93425.98,92113.02,1312.96,0.0,conventional,2015,RaleighGreensboro +38,2015-04-05,1.12,245491.91,68933.47,53335.28,37207.47,86015.69,85179.62,836.07,0.0,conventional,2015,RaleighGreensboro +39,2015-03-29,1.23,238992.24,56270.21,71237.73,44155.0,67329.3,66273.35,1055.95,0.0,conventional,2015,RaleighGreensboro +40,2015-03-22,1.19,244658.35,78241.83,60049.35,37929.9,68437.27,67695.64,741.63,0.0,conventional,2015,RaleighGreensboro +41,2015-03-15,1.18,252527.34,66629.12,71027.65,46569.19,68301.38,68114.58,186.8,0.0,conventional,2015,RaleighGreensboro +42,2015-03-08,1.24,198900.07,41324.65,54059.83,37877.54,65638.05,65493.35,144.7,0.0,conventional,2015,RaleighGreensboro +43,2015-03-01,1.2,216841.43,57245.09,55213.6,36330.01,68052.73,67743.53,309.2,0.0,conventional,2015,RaleighGreensboro +44,2015-02-22,1.11,258728.48,65910.74,69081.33,69371.34,54365.07,53806.04,559.03,0.0,conventional,2015,RaleighGreensboro +45,2015-02-15,1.21,230632.14,66005.8,55126.76,48502.71,60996.87,49618.45,11378.42,0.0,conventional,2015,RaleighGreensboro +46,2015-02-08,1.14,222483.88,68078.13,47671.39,33712.03,73022.33,62051.18,10971.15,0.0,conventional,2015,RaleighGreensboro +47,2015-02-01,0.99,344288.82,79507.9,115316.24,88450.29,61014.39,41191.91,19822.48,0.0,conventional,2015,RaleighGreensboro +48,2015-01-25,1.16,233277.19,61158.75,59374.75,36067.46,76676.23,63206.25,13469.98,0.0,conventional,2015,RaleighGreensboro +49,2015-01-18,1.22,204504.99,48613.54,55881.05,39543.93,60466.47,46298.95,14167.52,0.0,conventional,2015,RaleighGreensboro +50,2015-01-11,1.24,205760.67,43986.78,54185.12,41272.69,66316.08,50818.2,15497.88,0.0,conventional,2015,RaleighGreensboro +51,2015-01-04,1.2,221086.46,53316.16,72178.46,39928.01,55663.83,44040.64,11623.19,0.0,conventional,2015,RaleighGreensboro +0,2015-12-27,0.98,161577.6,46837.66,67974.89,5986.26,40778.79,40770.1,3.44,5.25,conventional,2015,RichmondNorfolk +1,2015-12-20,0.99,158870.28,45598.33,73851.02,5425.25,33995.68,33982.55,5.25,7.88,conventional,2015,RichmondNorfolk +2,2015-12-13,0.98,174380.77,57804.67,75113.57,7096.7,34365.83,34365.83,0.0,0.0,conventional,2015,RichmondNorfolk +3,2015-12-06,0.98,176731.22,65474.44,77494.48,7028.58,26733.72,26727.63,6.09,0.0,conventional,2015,RichmondNorfolk +4,2015-11-29,0.99,140939.78,46757.26,65442.13,5499.99,23240.4,23240.4,0.0,0.0,conventional,2015,RichmondNorfolk +5,2015-11-22,1.01,148242.89,44462.58,69493.08,6545.55,27741.68,27736.4,2.64,2.64,conventional,2015,RichmondNorfolk +6,2015-11-15,0.94,198934.23,57421.46,101470.66,9940.86,30101.25,29466.63,634.62,0.0,conventional,2015,RichmondNorfolk +7,2015-11-08,0.95,202831.97,83635.77,76222.46,12315.03,30658.71,29783.15,875.56,0.0,conventional,2015,RichmondNorfolk +8,2015-11-01,1.0,212854.47,72020.73,93880.64,16391.8,30561.3,29676.86,884.44,0.0,conventional,2015,RichmondNorfolk +9,2015-10-25,1.02,180316.1,68613.89,70131.72,13184.36,28386.13,27568.35,817.78,0.0,conventional,2015,RichmondNorfolk +10,2015-10-18,1.0,217221.23,70405.4,106053.96,13205.22,27556.65,27252.31,280.0,24.34,conventional,2015,RichmondNorfolk +11,2015-10-11,1.01,192231.47,61756.93,85083.67,16004.59,29386.28,28741.43,617.78,27.07,conventional,2015,RichmondNorfolk +12,2015-10-04,1.04,200821.29,67267.71,91381.65,11357.4,30814.53,30425.15,389.38,0.0,conventional,2015,RichmondNorfolk +13,2015-09-27,0.97,203675.17,61853.71,101484.98,16430.71,23905.77,23139.55,766.22,0.0,conventional,2015,RichmondNorfolk +14,2015-09-20,1.04,195742.46,76712.59,72627.68,11692.02,34710.17,34070.17,640.0,0.0,conventional,2015,RichmondNorfolk +15,2015-09-13,1.01,229220.66,86208.18,89290.69,9499.01,44222.78,43507.62,715.16,0.0,conventional,2015,RichmondNorfolk +16,2015-09-06,0.98,252853.41,72054.13,112958.68,19484.71,48355.89,48304.3,48.89,2.7,conventional,2015,RichmondNorfolk +17,2015-08-30,1.06,213120.84,70639.52,86152.24,10562.29,45766.79,45766.79,0.0,0.0,conventional,2015,RichmondNorfolk +18,2015-08-23,1.04,232074.44,76650.45,96308.77,12155.66,46959.56,46959.56,0.0,0.0,conventional,2015,RichmondNorfolk +19,2015-08-16,1.05,222696.44,70382.17,95071.56,12570.49,44672.22,44672.22,0.0,0.0,conventional,2015,RichmondNorfolk +20,2015-08-09,1.06,216580.39,72133.51,87338.9,12731.89,44376.09,44376.09,0.0,0.0,conventional,2015,RichmondNorfolk +21,2015-08-02,1.05,235505.63,76879.31,101904.61,13008.81,43712.9,43712.9,0.0,0.0,conventional,2015,RichmondNorfolk +22,2015-07-26,1.03,222882.86,74157.71,86910.45,11762.3,50052.4,50052.4,0.0,0.0,conventional,2015,RichmondNorfolk +23,2015-07-19,1.02,225259.93,74921.22,84052.93,12403.89,53881.89,53877.92,3.97,0.0,conventional,2015,RichmondNorfolk +24,2015-07-12,1.02,234568.8,80375.78,90573.83,12718.46,50900.73,50740.73,160.0,0.0,conventional,2015,RichmondNorfolk +25,2015-07-05,1.01,287571.95,94880.31,118022.58,15212.24,59456.82,58905.71,551.11,0.0,conventional,2015,RichmondNorfolk +26,2015-06-28,1.0,236210.73,78419.44,90965.34,11394.34,55431.61,55427.17,4.44,0.0,conventional,2015,RichmondNorfolk +27,2015-06-21,1.01,264922.77,95486.41,99696.48,11120.6,58619.28,58619.28,0.0,0.0,conventional,2015,RichmondNorfolk +28,2015-06-14,0.98,289290.98,102242.31,113772.11,10989.87,62286.69,62286.69,0.0,0.0,conventional,2015,RichmondNorfolk +29,2015-06-07,1.02,248646.25,84737.37,90992.27,10333.21,62583.4,61701.18,882.22,0.0,conventional,2015,RichmondNorfolk +30,2015-05-31,1.02,270601.09,102486.76,98090.75,11466.99,58556.59,53587.7,4968.89,0.0,conventional,2015,RichmondNorfolk +31,2015-05-24,1.03,280240.7,91042.47,116589.43,13055.11,59553.69,56304.95,3246.13,2.61,conventional,2015,RichmondNorfolk +32,2015-05-17,1.04,262509.58,91276.43,103883.14,11273.72,56076.29,52612.5,3458.56,5.23,conventional,2015,RichmondNorfolk +33,2015-05-10,1.06,263027.68,72224.74,115679.54,11036.66,64086.74,57579.67,6507.07,0.0,conventional,2015,RichmondNorfolk +34,2015-05-03,0.99,292744.22,89712.71,128429.41,21169.69,53432.41,51895.62,1238.18,298.61,conventional,2015,RichmondNorfolk +35,2015-04-26,1.11,235546.11,76765.23,97538.87,11133.44,50108.57,49595.75,390.6,122.22,conventional,2015,RichmondNorfolk +36,2015-04-19,1.1,231641.21,75898.29,91143.24,10864.49,53735.19,53008.05,727.14,0.0,conventional,2015,RichmondNorfolk +37,2015-04-12,1.11,213032.44,60609.49,96301.96,9863.28,46257.71,44510.63,1747.08,0.0,conventional,2015,RichmondNorfolk +38,2015-04-05,1.14,222122.63,69929.43,95585.93,9827.34,46779.93,45789.32,990.61,0.0,conventional,2015,RichmondNorfolk +39,2015-03-29,1.15,205954.04,54695.88,96405.61,11552.86,43299.69,42423.09,876.6,0.0,conventional,2015,RichmondNorfolk +40,2015-03-22,1.12,213086.98,61853.48,91980.03,10380.07,48873.4,48817.84,55.56,0.0,conventional,2015,RichmondNorfolk +41,2015-03-15,1.16,210124.43,66591.48,87711.9,11621.92,44199.13,44199.13,0.0,0.0,conventional,2015,RichmondNorfolk +42,2015-03-08,1.19,177541.37,50712.87,64964.66,10295.75,51568.09,51568.09,0.0,0.0,conventional,2015,RichmondNorfolk +43,2015-03-01,1.13,194798.39,53902.85,83985.84,9840.75,47068.95,47039.78,29.17,0.0,conventional,2015,RichmondNorfolk +44,2015-02-22,1.1,225830.42,75550.59,89874.92,17018.36,43386.55,43046.27,340.28,0.0,conventional,2015,RichmondNorfolk +45,2015-02-15,1.13,207249.74,70877.95,77855.03,10942.01,47574.75,41738.23,5836.52,0.0,conventional,2015,RichmondNorfolk +46,2015-02-08,1.06,212887.85,74594.17,81138.97,7883.33,49271.38,42969.44,6301.94,0.0,conventional,2015,RichmondNorfolk +47,2015-02-01,0.97,308461.1,99429.98,140203.43,21686.02,47141.67,40189.17,6952.5,0.0,conventional,2015,RichmondNorfolk +48,2015-01-25,1.17,194086.08,54046.97,75205.48,8644.27,56189.36,45878.25,10311.11,0.0,conventional,2015,RichmondNorfolk +49,2015-01-18,1.18,179038.39,54459.4,66963.59,9958.28,47657.12,36798.65,10858.47,0.0,conventional,2015,RichmondNorfolk +50,2015-01-11,1.15,194460.59,71743.11,66849.97,10952.11,44915.4,36160.54,8754.86,0.0,conventional,2015,RichmondNorfolk +51,2015-01-04,1.13,182697.97,56293.75,80396.09,9762.41,36245.72,31778.36,4467.36,0.0,conventional,2015,RichmondNorfolk +0,2015-12-27,0.96,98584.92,33255.5,31680.16,152.86,33496.4,32877.16,0.0,619.24,conventional,2015,Roanoke +1,2015-12-20,1.0,88183.03,27512.58,31883.26,116.69,28670.5,27888.28,8.89,773.33,conventional,2015,Roanoke +2,2015-12-13,1.01,99886.07,38378.38,34347.46,127.18,27033.05,27030.08,2.97,0.0,conventional,2015,Roanoke +3,2015-12-06,1.01,99519.99,41191.54,35662.29,100.43,22565.73,22565.73,0.0,0.0,conventional,2015,Roanoke +4,2015-11-29,1.03,73733.96,24165.84,30145.95,114.57,19307.6,19307.6,0.0,0.0,conventional,2015,Roanoke +5,2015-11-22,1.0,83963.95,28956.02,29324.32,163.5,25520.11,25520.11,0.0,0.0,conventional,2015,Roanoke +6,2015-11-15,1.0,109928.84,41213.9,45406.39,99.0,23209.55,23209.55,0.0,0.0,conventional,2015,Roanoke +7,2015-11-08,1.01,114124.6,53190.61,35852.04,135.05,24946.9,24873.75,73.15,0.0,conventional,2015,Roanoke +8,2015-11-01,1.0,116798.97,54831.71,40083.51,177.07,21706.68,20934.8,771.88,0.0,conventional,2015,Roanoke +9,2015-10-25,0.99,110896.48,57250.89,33829.89,153.35,19662.35,19231.66,430.69,0.0,conventional,2015,Roanoke +10,2015-10-18,0.98,117516.57,48540.88,47290.21,115.01,21570.47,21570.47,0.0,0.0,conventional,2015,Roanoke +11,2015-10-11,1.01,118009.81,53713.89,37828.75,151.21,26315.96,26312.88,3.08,0.0,conventional,2015,Roanoke +12,2015-10-04,1.04,114487.07,51177.03,38394.24,126.92,24788.88,24788.88,0.0,0.0,conventional,2015,Roanoke +13,2015-09-27,1.01,109274.98,44983.72,44626.23,84.32,19580.71,19577.65,0.0,3.06,conventional,2015,Roanoke +14,2015-09-20,1.0,125682.96,64728.77,37055.97,128.08,23770.14,23770.14,0.0,0.0,conventional,2015,Roanoke +15,2015-09-13,0.99,147617.68,69411.99,49831.29,180.33,28194.07,28181.85,12.22,0.0,conventional,2015,Roanoke +16,2015-09-06,1.09,131197.71,42757.3,55250.67,139.46,33050.28,33001.48,42.7,6.1,conventional,2015,Roanoke +17,2015-08-30,1.14,114054.04,39821.27,43618.93,261.1,30352.74,29963.27,389.47,0.0,conventional,2015,Roanoke +18,2015-08-23,1.12,115608.44,38976.84,47017.25,318.39,29295.96,27837.68,1458.28,0.0,conventional,2015,Roanoke +19,2015-08-16,1.13,113815.5,40667.35,43698.58,411.16,29038.41,29038.41,0.0,0.0,conventional,2015,Roanoke +20,2015-08-09,1.09,116317.58,45164.18,40962.84,76.24,30114.32,30114.32,0.0,0.0,conventional,2015,Roanoke +21,2015-08-02,1.04,122568.69,48105.03,45920.97,92.49,28450.2,28450.2,0.0,0.0,conventional,2015,Roanoke +22,2015-07-26,1.04,118455.23,48519.87,38794.48,67.53,31073.35,31073.35,0.0,0.0,conventional,2015,Roanoke +23,2015-07-19,1.04,124246.77,48761.54,41554.57,110.24,33820.42,33820.42,0.0,0.0,conventional,2015,Roanoke +24,2015-07-12,1.06,128054.41,50647.98,42235.42,740.63,34430.38,34430.38,0.0,0.0,conventional,2015,Roanoke +25,2015-07-05,1.05,147749.25,54928.79,51261.23,2541.99,39017.24,39017.24,0.0,0.0,conventional,2015,Roanoke +26,2015-06-28,1.04,131276.21,50052.8,43905.58,68.94,37248.89,37248.89,0.0,0.0,conventional,2015,Roanoke +27,2015-06-21,1.05,135895.47,51621.94,47601.83,73.18,36598.52,36598.52,0.0,0.0,conventional,2015,Roanoke +28,2015-06-14,1.02,147633.83,58275.46,50914.84,19.99,38423.54,38416.87,6.67,0.0,conventional,2015,Roanoke +29,2015-06-07,1.05,139464.87,58789.36,41702.47,109.92,38863.12,38372.75,490.37,0.0,conventional,2015,Roanoke +30,2015-05-31,1.06,133856.19,57819.4,41122.46,33.05,34881.28,33050.17,1831.11,0.0,conventional,2015,Roanoke +31,2015-05-24,1.07,142274.01,55748.5,50452.59,99.51,35973.41,34793.39,1180.02,0.0,conventional,2015,Roanoke +32,2015-05-17,1.08,135281.35,55106.27,46302.99,68.28,33803.81,32381.59,1422.22,0.0,conventional,2015,Roanoke +33,2015-05-10,1.09,141860.18,52698.39,52242.5,146.1,36773.19,34415.41,2357.78,0.0,conventional,2015,Roanoke +34,2015-05-03,1.03,147690.42,54015.48,60973.26,120.87,32580.81,32327.48,253.33,0.0,conventional,2015,Roanoke +35,2015-04-26,1.09,137885.58,63041.96,47028.39,81.83,27733.4,27733.4,0.0,0.0,conventional,2015,Roanoke +36,2015-04-19,1.08,144665.27,68391.59,44913.65,146.75,31213.28,30623.78,589.5,0.0,conventional,2015,Roanoke +37,2015-04-12,1.13,129698.87,50246.44,49285.67,130.09,30036.67,28274.78,1761.89,0.0,conventional,2015,Roanoke +38,2015-04-05,1.19,121569.73,48155.42,44874.21,258.54,28281.56,27849.27,432.29,0.0,conventional,2015,Roanoke +39,2015-03-29,1.13,117662.32,46540.34,46915.77,110.35,24095.86,22961.86,1134.0,0.0,conventional,2015,Roanoke +40,2015-03-22,1.09,126535.83,51584.99,46659.25,102.64,28188.95,28170.39,15.56,3.0,conventional,2015,Roanoke +41,2015-03-15,1.12,119124.45,47388.04,43327.94,73.88,28334.59,27985.7,348.89,0.0,conventional,2015,Roanoke +42,2015-03-08,1.16,111702.58,43783.88,36289.08,81.58,31548.04,31447.87,100.17,0.0,conventional,2015,Roanoke +43,2015-03-01,1.11,110991.01,45568.34,38348.5,79.57,26994.6,26965.71,28.89,0.0,conventional,2015,Roanoke +44,2015-02-22,1.09,127855.51,55931.84,45806.33,43.06,26074.28,25882.69,191.59,0.0,conventional,2015,Roanoke +45,2015-02-15,1.07,136950.98,68986.21,39203.72,87.02,28674.03,26632.49,2041.54,0.0,conventional,2015,Roanoke +46,2015-02-08,1.02,145648.4,78195.76,38763.75,134.25,28554.64,25981.67,2572.97,0.0,conventional,2015,Roanoke +47,2015-02-01,1.0,168217.72,71867.81,65784.29,93.81,30471.81,27117.84,3353.97,0.0,conventional,2015,Roanoke +48,2015-01-25,1.15,123070.18,48244.28,41412.29,103.6,33310.01,29161.12,4148.89,0.0,conventional,2015,Roanoke +49,2015-01-18,1.18,112106.05,44676.56,37854.42,117.98,29457.09,25952.51,3504.58,0.0,conventional,2015,Roanoke +50,2015-01-11,1.16,113235.82,45706.36,37629.54,57.82,29842.1,26555.99,3286.11,0.0,conventional,2015,Roanoke +51,2015-01-04,1.13,109215.0,48285.15,37562.78,34.1,23332.97,21582.97,1750.0,0.0,conventional,2015,Roanoke +0,2015-12-27,0.98,403741.62,98482.89,249362.94,13805.3,42090.49,42084.71,5.78,0.0,conventional,2015,Sacramento +1,2015-12-20,1.0,385518.03,99604.61,224843.47,15917.28,45152.67,45138.23,8.66,5.78,conventional,2015,Sacramento +2,2015-12-13,1.0,376689.94,94854.9,221627.68,16953.75,43253.61,43250.73,2.88,0.0,conventional,2015,Sacramento +3,2015-12-06,1.07,318280.23,82537.98,184349.52,12748.39,38644.34,38638.58,0.0,5.76,conventional,2015,Sacramento +4,2015-11-29,0.99,347406.9,80757.92,216851.97,13205.04,36591.97,36574.73,0.0,17.24,conventional,2015,Sacramento +5,2015-11-22,1.06,354986.48,83984.24,218912.41,12684.6,39405.23,39405.23,0.0,0.0,conventional,2015,Sacramento +6,2015-11-15,0.94,414161.47,100343.08,262929.38,11181.91,39707.1,39707.1,0.0,0.0,conventional,2015,Sacramento +7,2015-11-08,1.14,357132.53,118696.55,185189.82,11093.06,42153.1,42153.1,0.0,0.0,conventional,2015,Sacramento +8,2015-11-01,1.02,532467.38,180210.99,300978.15,12762.49,38515.75,38515.75,0.0,0.0,conventional,2015,Sacramento +9,2015-10-25,1.26,343757.21,98792.01,190021.02,12903.0,42041.18,42041.18,0.0,0.0,conventional,2015,Sacramento +10,2015-10-18,1.28,326458.27,94529.6,175181.76,12783.14,43963.77,43963.77,0.0,0.0,conventional,2015,Sacramento +11,2015-10-11,1.29,355472.28,85276.49,211955.75,13141.51,45098.53,45098.53,0.0,0.0,conventional,2015,Sacramento +12,2015-10-04,1.1,377192.1,70755.56,259002.51,12312.13,35121.9,35121.9,0.0,0.0,conventional,2015,Sacramento +13,2015-09-27,1.28,350982.2,84527.09,213297.91,13481.19,39676.01,39676.01,0.0,0.0,conventional,2015,Sacramento +14,2015-09-20,1.25,353231.58,79142.8,220538.2,12364.88,41185.7,41185.7,0.0,0.0,conventional,2015,Sacramento +15,2015-09-13,1.24,384192.52,101189.96,220364.77,15102.86,47534.93,47530.56,4.37,0.0,conventional,2015,Sacramento +16,2015-09-06,1.21,466705.75,137388.73,262139.81,17201.5,49975.71,49967.0,8.71,0.0,conventional,2015,Sacramento +17,2015-08-30,1.3,377229.13,114804.62,197034.03,17331.98,48058.5,48058.5,0.0,0.0,conventional,2015,Sacramento +18,2015-08-23,1.26,405274.71,112710.34,233164.62,12415.75,46984.0,46984.0,0.0,0.0,conventional,2015,Sacramento +19,2015-08-16,1.3,401708.33,136485.36,202459.2,13395.95,49367.82,49356.2,11.62,0.0,conventional,2015,Sacramento +20,2015-08-09,1.28,414823.74,146135.78,206011.16,13618.36,49058.44,49041.0,17.44,0.0,conventional,2015,Sacramento +21,2015-08-02,1.33,404664.32,131156.47,209986.17,14770.96,48750.72,48750.72,0.0,0.0,conventional,2015,Sacramento +22,2015-07-26,1.32,395471.89,130034.73,200668.51,13184.96,51583.69,51550.15,33.54,0.0,conventional,2015,Sacramento +23,2015-07-19,1.29,404604.85,130412.82,210334.54,9285.1,54572.39,54572.39,0.0,0.0,conventional,2015,Sacramento +24,2015-07-12,1.23,411928.38,130109.66,218611.12,6078.13,57129.47,56976.69,0.0,152.78,conventional,2015,Sacramento +25,2015-07-05,1.26,550810.62,161220.26,305122.62,17131.92,67335.82,67335.82,0.0,0.0,conventional,2015,Sacramento +26,2015-06-28,1.26,423984.04,143118.33,210343.54,13590.1,56932.07,56932.07,0.0,0.0,conventional,2015,Sacramento +27,2015-06-21,1.27,422723.91,137206.11,215068.66,14700.4,55748.74,55744.3,4.44,0.0,conventional,2015,Sacramento +28,2015-06-14,1.22,431791.38,149611.03,209926.36,13867.94,58386.05,58386.05,0.0,0.0,conventional,2015,Sacramento +29,2015-06-07,1.18,435087.17,143063.59,224039.06,14288.77,53695.75,53695.75,0.0,0.0,conventional,2015,Sacramento +30,2015-05-31,1.17,435723.85,156719.55,219047.4,14172.36,45784.54,45775.86,8.68,0.0,conventional,2015,Sacramento +31,2015-05-24,1.26,403793.79,110289.47,232223.44,12830.34,48450.54,48450.54,0.0,0.0,conventional,2015,Sacramento +32,2015-05-17,1.18,397215.12,141111.13,200745.02,12034.36,43324.61,43324.61,0.0,0.0,conventional,2015,Sacramento +33,2015-05-10,1.14,437822.76,162135.0,217681.33,13246.38,44760.05,44760.05,0.0,0.0,conventional,2015,Sacramento +34,2015-05-03,1.05,662034.34,149107.81,458178.77,13261.84,41485.92,41281.75,0.0,204.17,conventional,2015,Sacramento +35,2015-04-26,1.27,366719.82,101324.62,205561.23,13085.26,46748.71,46748.71,0.0,0.0,conventional,2015,Sacramento +36,2015-04-19,1.19,415841.32,117518.41,241637.11,13267.34,43418.46,43392.71,25.75,0.0,conventional,2015,Sacramento +37,2015-04-12,1.24,382583.75,119295.38,208546.45,13073.16,41668.76,41625.86,42.9,0.0,conventional,2015,Sacramento +38,2015-04-05,1.23,404333.75,120613.18,214547.09,15099.24,54074.24,54049.06,25.18,0.0,conventional,2015,Sacramento +39,2015-03-29,1.2,391178.81,110809.75,203705.17,13740.39,62923.5,62884.77,38.73,0.0,conventional,2015,Sacramento +40,2015-03-22,1.13,424708.39,106578.88,221094.74,13423.63,83611.14,83611.14,0.0,0.0,conventional,2015,Sacramento +41,2015-03-15,1.22,380761.14,113759.19,204089.22,14830.61,48082.12,48082.12,0.0,0.0,conventional,2015,Sacramento +42,2015-03-08,1.12,415147.69,152131.35,199610.67,13402.92,50002.75,50002.75,0.0,0.0,conventional,2015,Sacramento +43,2015-03-01,1.02,452845.47,143867.37,256090.11,13870.37,39017.62,39017.62,0.0,0.0,conventional,2015,Sacramento +44,2015-02-22,1.14,405013.16,137425.32,216791.05,11561.59,39235.2,39235.2,0.0,0.0,conventional,2015,Sacramento +45,2015-02-15,1.13,381041.74,134992.29,194031.02,10273.69,41744.74,41744.74,0.0,0.0,conventional,2015,Sacramento +46,2015-02-08,0.98,432572.45,144586.53,237751.75,9798.79,40435.38,40435.38,0.0,0.0,conventional,2015,Sacramento +47,2015-02-01,1.04,771974.9,287292.15,429601.75,15342.47,39738.53,39738.53,0.0,0.0,conventional,2015,Sacramento +48,2015-01-25,1.19,360027.65,101289.29,210411.75,9507.42,38819.19,38819.19,0.0,0.0,conventional,2015,Sacramento +49,2015-01-18,1.22,367047.36,83097.77,238956.51,5672.46,39320.62,39320.62,0.0,0.0,conventional,2015,Sacramento +50,2015-01-11,1.09,429492.28,109368.41,271300.08,5094.23,43729.56,43722.89,6.67,0.0,conventional,2015,Sacramento +51,2015-01-04,1.05,430138.88,110693.69,270107.61,9737.5,39600.08,39600.08,0.0,0.0,conventional,2015,Sacramento +0,2015-12-27,0.92,439968.4,141447.28,130341.75,20174.55,148004.82,116383.07,31621.75,0.0,conventional,2015,SanDiego +1,2015-12-20,0.94,420476.44,130565.46,119298.5,25052.93,145559.55,111019.22,34540.33,0.0,conventional,2015,SanDiego +2,2015-12-13,0.84,462548.3,155111.21,118664.89,16726.87,172045.33,128053.44,43991.89,0.0,conventional,2015,SanDiego +3,2015-12-06,0.67,565516.62,196490.3,209350.93,17406.01,142269.38,114044.25,28225.13,0.0,conventional,2015,SanDiego +4,2015-11-29,0.91,385289.59,143861.4,140359.41,20206.16,80862.62,64857.94,16004.68,0.0,conventional,2015,SanDiego +5,2015-11-22,0.98,385300.75,163396.83,129579.32,18973.9,73350.7,59945.93,13404.77,0.0,conventional,2015,SanDiego +6,2015-11-15,0.85,501838.1,264103.11,150523.33,15638.32,71573.34,63091.0,8482.34,0.0,conventional,2015,SanDiego +7,2015-11-08,0.92,492385.15,255993.88,154270.39,16457.11,65663.77,58719.13,6944.64,0.0,conventional,2015,SanDiego +8,2015-11-01,1.01,468472.81,211287.89,179995.77,17716.68,59472.47,53567.27,5897.02,8.18,conventional,2015,SanDiego +9,2015-10-25,1.08,408336.19,172518.85,165522.86,18702.56,51591.92,48469.97,3117.85,4.1,conventional,2015,SanDiego +10,2015-10-18,1.03,447663.17,197862.67,179049.25,19380.83,51370.42,47913.55,3456.87,0.0,conventional,2015,SanDiego +11,2015-10-11,0.93,492276.73,202263.25,234833.71,17638.39,37541.38,35490.61,2050.77,0.0,conventional,2015,SanDiego +12,2015-10-04,1.11,404301.76,154884.04,194838.77,18666.34,35912.61,31952.3,3960.31,0.0,conventional,2015,SanDiego +13,2015-09-27,0.93,491990.83,194526.22,245815.73,14807.56,36841.32,34448.65,2392.67,0.0,conventional,2015,SanDiego +14,2015-09-20,1.07,448488.04,204096.06,173105.77,28629.58,42656.63,39560.7,3095.93,0.0,conventional,2015,SanDiego +15,2015-09-13,1.08,464305.03,191302.75,199953.93,21645.98,51402.37,46655.35,4747.02,0.0,conventional,2015,SanDiego +16,2015-09-06,1.02,502677.35,271640.29,165034.84,19961.19,46041.03,41719.29,4321.74,0.0,conventional,2015,SanDiego +17,2015-08-30,1.04,490268.77,277305.27,145974.51,19843.62,47145.37,45500.19,1645.18,0.0,conventional,2015,SanDiego +18,2015-08-23,1.15,459471.05,250163.47,153378.68,20782.84,35146.06,33582.95,1563.11,0.0,conventional,2015,SanDiego +19,2015-08-16,1.05,514202.63,281209.49,176899.01,16942.25,39151.88,38649.39,502.49,0.0,conventional,2015,SanDiego +20,2015-08-09,1.03,630941.71,285569.68,288086.68,14248.31,43037.04,41132.08,1904.96,0.0,conventional,2015,SanDiego +21,2015-08-02,1.07,500999.15,275822.73,168300.62,12740.87,44134.93,42995.09,1139.84,0.0,conventional,2015,SanDiego +22,2015-07-26,1.1,495344.27,279280.58,161574.35,16605.49,37883.85,36718.01,1165.84,0.0,conventional,2015,SanDiego +23,2015-07-19,1.15,462526.0,258240.72,142492.68,16611.22,45181.38,41231.13,3950.25,0.0,conventional,2015,SanDiego +24,2015-07-12,1.1,490312.63,251056.27,182844.55,14524.67,41887.14,38417.55,3469.59,0.0,conventional,2015,SanDiego +25,2015-07-05,1.05,587740.55,328818.07,187820.87,18794.71,52306.9,46816.59,5490.31,0.0,conventional,2015,SanDiego +26,2015-06-28,1.02,495309.23,295023.15,142348.73,15418.32,42519.03,37940.93,4578.1,0.0,conventional,2015,SanDiego +27,2015-06-21,0.94,594488.41,368402.91,163855.72,16575.72,45654.06,41075.95,4578.11,0.0,conventional,2015,SanDiego +28,2015-06-14,0.87,630746.82,403551.43,165020.73,14478.75,47695.91,43522.9,4173.01,0.0,conventional,2015,SanDiego +29,2015-06-07,0.89,607468.04,378749.86,164367.13,13914.85,50436.2,46211.78,4224.42,0.0,conventional,2015,SanDiego +30,2015-05-31,0.9,569414.76,358147.99,153680.36,14150.62,43435.79,39195.38,4240.41,0.0,conventional,2015,SanDiego +31,2015-05-24,1.08,477415.68,273672.82,155813.57,13519.38,34409.91,29727.22,4682.69,0.0,conventional,2015,SanDiego +32,2015-05-17,1.02,458191.52,283530.1,131772.59,9903.23,32985.6,29400.09,3585.51,0.0,conventional,2015,SanDiego +33,2015-05-10,0.85,594740.3,399789.96,136147.89,11997.54,46804.91,43190.6,3614.31,0.0,conventional,2015,SanDiego +34,2015-05-03,0.8,740760.3,424263.68,247709.36,14408.91,54378.35,50153.42,4224.93,0.0,conventional,2015,SanDiego +35,2015-04-26,1.11,435990.48,235664.26,141949.05,14634.32,43742.85,37689.45,6053.4,0.0,conventional,2015,SanDiego +36,2015-04-19,1.04,488094.98,270328.18,156651.22,13282.24,47833.34,25453.84,22379.5,0.0,conventional,2015,SanDiego +37,2015-04-12,1.01,515246.69,260591.11,189713.87,14665.62,50276.09,26305.87,23949.07,21.15,conventional,2015,SanDiego +38,2015-04-05,1.11,469883.87,249036.72,162601.8,15718.9,42526.45,25464.02,16966.53,95.9,conventional,2015,SanDiego +39,2015-03-29,1.08,450370.85,234361.38,155583.39,14998.04,45428.04,25798.74,19629.3,0.0,conventional,2015,SanDiego +40,2015-03-22,0.96,515764.64,235106.15,221942.26,14165.05,44551.18,38487.7,6063.48,0.0,conventional,2015,SanDiego +41,2015-03-15,1.06,463106.48,257709.12,144761.07,17440.0,43196.29,37920.39,5268.51,7.39,conventional,2015,SanDiego +42,2015-03-08,0.95,504284.16,314550.25,127157.9,14754.16,47821.85,42719.72,5102.13,0.0,conventional,2015,SanDiego +43,2015-03-01,0.83,572552.24,317625.55,202619.21,14036.07,38271.41,32922.93,5315.64,32.84,conventional,2015,SanDiego +44,2015-02-22,0.92,516149.11,301983.87,151869.53,14484.65,47811.06,42234.77,5543.66,32.63,conventional,2015,SanDiego +45,2015-02-15,0.94,486113.55,303637.72,127874.99,15333.5,39267.34,33642.66,5425.61,199.07,conventional,2015,SanDiego +46,2015-02-08,0.98,448394.83,229118.81,162856.34,14251.47,42168.21,36417.77,5526.46,223.98,conventional,2015,SanDiego +47,2015-02-01,0.85,692276.13,357235.87,277723.14,15691.23,41625.89,36622.51,4738.29,265.09,conventional,2015,SanDiego +48,2015-01-25,1.02,406591.11,217747.34,140456.68,13326.97,35060.12,30090.58,4708.25,261.29,conventional,2015,SanDiego +49,2015-01-18,1.01,461063.73,250311.74,163944.2,14125.01,32682.78,27844.81,4411.36,426.61,conventional,2015,SanDiego +50,2015-01-11,0.82,544667.18,303369.02,192913.11,12900.65,35484.4,31807.96,3271.85,404.59,conventional,2015,SanDiego +51,2015-01-04,0.94,461607.33,244152.26,165299.33,15302.75,36852.99,30884.29,5595.0,373.7,conventional,2015,SanDiego +0,2015-12-27,1.05,692206.4,181704.67,422617.8,28184.73,59699.2,59094.49,582.9,21.81,conventional,2015,SanFrancisco +1,2015-12-20,1.15,637091.48,173521.67,364622.31,33083.99,65863.51,65038.1,766.09,59.32,conventional,2015,SanFrancisco +2,2015-12-13,1.22,616016.46,127080.03,384958.63,34069.96,69907.84,69022.62,781.91,103.31,conventional,2015,SanFrancisco +3,2015-12-06,1.06,694982.49,102771.75,498975.34,37321.12,55914.28,55171.77,638.89,103.62,conventional,2015,SanFrancisco +4,2015-11-29,1.05,651638.6,102783.08,462966.47,31195.04,54694.01,53992.69,647.78,53.54,conventional,2015,SanFrancisco +5,2015-11-22,1.04,709444.22,121232.94,502068.19,29410.26,56732.83,55908.92,773.33,50.58,conventional,2015,SanFrancisco +6,2015-11-15,0.99,775848.72,165884.02,517366.37,27969.25,64629.08,63811.01,780.0,38.07,conventional,2015,SanFrancisco +7,2015-11-08,1.4,599884.32,165981.13,319176.32,36598.97,78127.9,77364.54,693.33,70.03,conventional,2015,SanFrancisco +8,2015-11-01,0.97,869927.27,214932.11,563719.33,31481.92,59793.91,58929.19,845.56,19.16,conventional,2015,SanFrancisco +9,2015-10-25,1.55,561342.23,126498.63,334051.96,31358.89,69432.75,68582.18,812.22,38.35,conventional,2015,SanFrancisco +10,2015-10-18,1.52,586073.85,146584.21,332942.22,31021.35,75526.07,74724.61,756.67,44.79,conventional,2015,SanFrancisco +11,2015-10-11,1.58,564456.6,106180.64,351965.39,33512.19,72798.38,72030.82,735.56,32.0,conventional,2015,SanFrancisco +12,2015-10-04,1.04,762866.62,119177.06,563257.19,32511.26,47921.11,47092.45,796.67,31.99,conventional,2015,SanFrancisco +13,2015-09-27,1.38,651697.34,208309.03,349648.86,28301.64,65437.81,64581.92,785.56,70.33,conventional,2015,SanFrancisco +14,2015-09-20,1.56,578500.76,94105.15,380999.77,33739.89,69655.95,68664.57,946.67,44.71,conventional,2015,SanFrancisco +15,2015-09-13,1.53,603840.95,110779.86,367833.98,48322.55,76904.56,76151.26,734.16,19.14,conventional,2015,SanFrancisco +16,2015-09-06,1.54,646810.2,154276.07,384033.22,30732.28,77768.63,76963.49,805.14,0.0,conventional,2015,SanFrancisco +17,2015-08-30,1.53,649891.92,177166.44,364371.17,28647.61,79706.7,78843.03,863.67,0.0,conventional,2015,SanFrancisco +18,2015-08-23,1.59,610212.92,129106.61,380934.57,27089.79,73081.95,72131.45,950.5,0.0,conventional,2015,SanFrancisco +19,2015-08-16,1.59,618237.58,145519.47,364968.69,27530.5,80218.92,79372.32,846.6,0.0,conventional,2015,SanFrancisco +20,2015-08-09,1.56,603876.9,158022.04,345590.21,24997.46,75267.19,74158.48,1108.71,0.0,conventional,2015,SanFrancisco +21,2015-08-02,1.57,645158.33,164972.09,374726.64,28138.78,77320.82,76597.08,723.74,0.0,conventional,2015,SanFrancisco +22,2015-07-26,1.58,628331.04,150230.79,366576.34,32096.3,79427.61,78533.8,893.81,0.0,conventional,2015,SanFrancisco +23,2015-07-19,1.56,633327.17,146180.86,385520.87,19150.08,82475.36,81674.34,801.02,0.0,conventional,2015,SanFrancisco +24,2015-07-12,1.39,680351.84,149802.29,430540.93,10213.51,89795.11,88477.64,893.86,423.61,conventional,2015,SanFrancisco +25,2015-07-05,1.53,752191.79,168468.95,451890.53,30802.97,101029.34,100146.51,882.83,0.0,conventional,2015,SanFrancisco +26,2015-06-28,1.54,646324.68,154423.58,377054.83,29603.67,85242.6,84459.27,783.33,0.0,conventional,2015,SanFrancisco +27,2015-06-21,1.52,673720.54,161726.05,396191.28,29789.01,86014.2,84970.33,1043.87,0.0,conventional,2015,SanFrancisco +28,2015-06-14,1.51,696873.03,181175.51,403173.66,32092.36,80431.5,79360.05,1071.45,0.0,conventional,2015,SanFrancisco +29,2015-06-07,1.31,758817.08,167496.15,477146.12,36846.32,77328.49,76252.85,1075.64,0.0,conventional,2015,SanFrancisco +30,2015-05-31,1.29,764114.39,192708.56,469208.86,26109.55,76087.42,75077.58,1009.84,0.0,conventional,2015,SanFrancisco +31,2015-05-24,1.37,700411.03,131638.62,467572.13,23810.65,77389.63,76306.09,1083.54,0.0,conventional,2015,SanFrancisco +32,2015-05-17,1.32,701099.41,167532.68,434957.48,26013.96,72595.29,71643.24,952.05,0.0,conventional,2015,SanFrancisco +33,2015-05-10,1.3,742672.03,172662.98,462218.87,33343.35,74446.83,73411.19,1035.64,0.0,conventional,2015,SanFrancisco +34,2015-05-03,1.0,1310364.67,237060.7,975141.69,32834.29,65327.99,64042.6,971.5,313.89,conventional,2015,SanFrancisco +35,2015-04-26,1.39,680839.21,107461.85,458055.89,35558.24,79763.23,78503.98,1052.31,206.94,conventional,2015,SanFrancisco +36,2015-04-19,1.23,818816.7,134592.31,584922.85,25208.79,74092.75,72532.18,1560.57,0.0,conventional,2015,SanFrancisco +37,2015-04-12,1.33,729890.28,159838.22,469655.44,25315.71,75080.91,73789.73,1291.18,0.0,conventional,2015,SanFrancisco +38,2015-04-05,1.33,742539.71,143671.36,473142.55,35650.7,90075.1,88603.82,1025.45,445.83,conventional,2015,SanFrancisco +39,2015-03-29,1.3,742583.03,145294.94,460144.9,26459.6,110683.59,109753.43,930.16,0.0,conventional,2015,SanFrancisco +40,2015-03-22,1.19,841723.81,136354.98,568189.47,30959.94,106219.42,105385.09,818.89,15.44,conventional,2015,SanFrancisco +41,2015-03-15,1.26,779754.03,204467.41,455307.39,25349.5,94629.73,93761.35,862.22,6.16,conventional,2015,SanFrancisco +42,2015-03-08,1.16,830775.42,260192.19,442834.07,31289.15,96460.01,95539.75,803.34,116.92,conventional,2015,SanFrancisco +43,2015-03-01,0.95,1039265.17,251296.88,697969.61,22240.62,67758.06,66973.03,726.66,58.37,conventional,2015,SanFrancisco +44,2015-02-22,1.23,776336.17,165066.61,502502.44,27811.91,80955.21,80088.91,823.33,42.97,conventional,2015,SanFrancisco +45,2015-02-15,1.23,696515.27,176265.06,414826.51,27243.31,78180.39,77306.88,824.45,49.06,conventional,2015,SanFrancisco +46,2015-02-08,0.92,928836.58,252068.6,581737.42,20265.96,74764.6,74003.77,733.33,27.5,conventional,2015,SanFrancisco +47,2015-02-01,0.91,1352027.64,369580.89,896514.3,20587.92,65344.53,64393.44,832.23,118.86,conventional,2015,SanFrancisco +48,2015-01-25,1.21,713523.24,127276.45,481792.41,21293.67,83160.71,82293.47,796.67,70.57,conventional,2015,SanFrancisco +49,2015-01-18,1.22,753746.51,107566.95,554501.21,12868.74,78809.61,78241.87,515.56,52.18,conventional,2015,SanFrancisco +50,2015-01-11,1.03,916450.76,155455.32,670522.75,4107.26,86365.43,85706.54,658.89,0.0,conventional,2015,SanFrancisco +51,2015-01-04,0.99,907795.89,179507.69,637000.1,8803.79,82484.31,82033.71,444.44,6.16,conventional,2015,SanFrancisco +0,2015-12-27,1.09,450185.94,101442.85,178459.6,7000.66,163282.83,162930.64,26.71,325.48,conventional,2015,Seattle +1,2015-12-20,1.15,404862.32,88134.2,139794.19,6308.35,170625.58,170458.45,11.87,155.26,conventional,2015,Seattle +2,2015-12-13,1.05,454428.03,114813.13,156347.74,9650.5,173616.66,173537.66,35.61,43.39,conventional,2015,Seattle +3,2015-12-06,0.81,726504.61,117507.93,219412.63,9120.48,380463.57,380298.38,0.0,165.19,conventional,2015,Seattle +4,2015-11-29,1.17,373309.53,90354.26,131571.17,9878.62,141505.48,141430.43,0.0,75.05,conventional,2015,Seattle +5,2015-11-22,1.07,426337.91,111896.12,155494.84,9372.34,149574.61,149358.02,0.0,216.59,conventional,2015,Seattle +6,2015-11-15,0.93,643402.84,146061.83,213666.13,9650.82,274024.06,273223.43,0.0,800.63,conventional,2015,Seattle +7,2015-11-08,1.06,490827.32,135637.5,172982.0,9195.56,173012.26,172749.32,0.0,262.94,conventional,2015,Seattle +8,2015-11-01,1.14,435921.23,105846.91,176922.79,10032.64,143118.89,143026.95,0.0,91.94,conventional,2015,Seattle +9,2015-10-25,1.03,520698.46,130741.16,201858.0,8273.34,179825.96,179544.36,0.0,281.6,conventional,2015,Seattle +10,2015-10-18,1.08,484106.11,147440.78,185069.58,10284.15,141311.6,141266.83,0.0,44.77,conventional,2015,Seattle +11,2015-10-11,0.9,640331.58,87081.69,301656.56,15431.19,236162.14,234219.02,0.0,1943.12,conventional,2015,Seattle +12,2015-10-04,1.06,513268.88,103495.71,281914.21,11368.07,116490.89,115646.75,0.0,844.14,conventional,2015,Seattle +13,2015-09-27,1.1,467791.95,159459.18,152002.76,10158.38,146171.63,146143.41,13.28,14.94,conventional,2015,Seattle +14,2015-09-20,1.02,590721.74,158198.44,242849.81,11283.42,178390.07,178374.58,8.85,6.64,conventional,2015,Seattle +15,2015-09-13,1.02,586503.27,230283.36,181240.95,10787.88,164191.08,164176.14,0.0,14.94,conventional,2015,Seattle +16,2015-09-06,1.17,459793.66,167782.09,155468.95,12346.64,124195.98,124129.03,61.97,4.98,conventional,2015,Seattle +17,2015-08-30,1.18,446850.83,171694.14,150815.43,12204.13,112137.13,112127.34,1.48,8.31,conventional,2015,Seattle +18,2015-08-23,1.13,551498.09,137390.97,265837.45,9738.82,138530.85,138486.18,26.47,18.2,conventional,2015,Seattle +19,2015-08-16,1.15,497526.51,173165.55,201936.28,12055.67,110369.01,110361.1,2.94,4.97,conventional,2015,Seattle +20,2015-08-09,1.15,523157.29,220284.27,169096.61,13416.02,120360.39,120360.39,0.0,0.0,conventional,2015,Seattle +21,2015-08-02,1.18,519887.27,210529.13,181274.82,12790.08,115293.24,115288.63,2.95,1.66,conventional,2015,Seattle +22,2015-07-26,1.29,436208.03,158304.49,172990.41,12492.0,92421.13,92385.74,35.39,0.0,conventional,2015,Seattle +23,2015-07-19,1.25,491653.57,197532.38,192075.86,11882.66,90162.67,90074.05,88.62,0.0,conventional,2015,Seattle +24,2015-07-12,1.14,597860.19,261870.98,204320.97,12664.42,119003.82,117906.6,980.83,116.39,conventional,2015,Seattle +25,2015-07-05,1.35,582037.07,201350.06,263046.88,16266.67,101373.46,95899.37,5462.4,11.69,conventional,2015,Seattle +26,2015-06-28,1.31,496302.98,175064.74,222871.77,13848.78,84517.69,84437.86,58.06,21.77,conventional,2015,Seattle +27,2015-06-21,1.19,577605.0,178641.03,272213.83,16161.24,110588.9,110537.43,31.33,20.14,conventional,2015,Seattle +28,2015-06-14,1.18,615500.43,207290.74,274970.73,13480.42,119758.54,119723.88,17.89,16.77,conventional,2015,Seattle +29,2015-06-07,1.27,494855.95,194535.45,207213.71,14325.27,78781.52,78760.94,8.9,11.68,conventional,2015,Seattle +30,2015-05-31,1.12,543908.18,244319.84,185303.96,14394.68,99889.7,99789.03,97.35,3.32,conventional,2015,Seattle +31,2015-05-24,1.14,577946.53,213212.05,240665.64,14400.18,109668.66,109172.41,459.78,36.47,conventional,2015,Seattle +32,2015-05-17,1.22,474081.77,176144.77,196907.32,13149.8,87879.88,86751.2,1074.06,54.62,conventional,2015,Seattle +33,2015-05-10,1.08,638696.86,263440.86,242012.13,9484.24,123759.63,111289.42,12415.67,54.54,conventional,2015,Seattle +34,2015-05-03,1.02,687972.03,226074.37,355250.18,11154.42,95493.06,94995.86,477.54,19.66,conventional,2015,Seattle +35,2015-04-26,1.19,490426.14,202726.84,188384.71,10046.11,89268.48,89235.28,21.77,11.43,conventional,2015,Seattle +36,2015-04-19,1.13,570030.63,130765.93,324680.31,10877.06,103707.33,103533.21,161.1,13.02,conventional,2015,Seattle +37,2015-04-12,1.33,396728.35,134346.5,184720.11,11710.31,65951.43,65783.96,144.77,22.7,conventional,2015,Seattle +38,2015-04-05,1.26,466120.48,148128.23,238612.85,9791.26,69588.14,69293.36,210.54,84.24,conventional,2015,Seattle +39,2015-03-29,1.22,452743.21,162078.03,205582.46,9896.09,75186.63,74523.35,658.45,4.83,conventional,2015,Seattle +40,2015-03-22,1.13,514196.67,192630.73,229939.77,8716.19,82909.98,82898.73,0.0,11.25,conventional,2015,Seattle +41,2015-03-15,1.24,453589.67,173278.26,189014.61,12217.98,79078.82,79057.76,8.42,12.64,conventional,2015,Seattle +42,2015-03-08,1.24,439846.35,170637.19,190973.9,8269.01,69966.25,69941.69,8.24,16.32,conventional,2015,Seattle +43,2015-03-01,1.07,613535.33,162940.98,327299.85,12576.63,110717.87,110637.01,62.51,18.35,conventional,2015,Seattle +44,2015-02-22,1.11,552036.54,106012.21,353201.96,10013.75,82808.62,82779.56,0.0,29.06,conventional,2015,Seattle +45,2015-02-15,1.33,352335.1,114014.9,171966.91,8106.15,58247.14,57771.22,431.17,44.75,conventional,2015,Seattle +46,2015-02-08,1.08,488980.65,153475.96,257164.75,10978.6,67361.34,65239.69,2117.07,4.58,conventional,2015,Seattle +47,2015-02-01,0.97,933148.31,201139.95,578708.75,10182.71,143116.9,142049.31,1034.01,33.58,conventional,2015,Seattle +48,2015-01-25,1.26,420124.11,118569.87,228985.5,11119.33,61449.41,61054.23,370.74,24.44,conventional,2015,Seattle +49,2015-01-18,1.2,463472.52,160898.14,223145.82,11177.67,68250.89,67519.53,720.65,10.71,conventional,2015,Seattle +50,2015-01-11,1.06,527350.82,144349.43,278069.43,18076.48,86855.48,81221.3,5632.65,1.53,conventional,2015,Seattle +51,2015-01-04,0.97,634522.34,165839.16,341836.86,15291.36,111554.96,96695.27,14859.69,0.0,conventional,2015,Seattle +0,2015-12-27,0.98,251443.08,137133.17,48908.4,8151.76,57249.75,48181.83,9060.09,7.83,conventional,2015,SouthCarolina +1,2015-12-20,1.04,211066.05,115402.34,39931.51,6244.22,49487.98,44628.73,4851.44,7.81,conventional,2015,SouthCarolina +2,2015-12-13,0.96,257166.53,148691.81,47393.23,7391.81,53689.68,43815.6,9863.71,10.37,conventional,2015,SouthCarolina +3,2015-12-06,1.03,233274.4,130410.85,47118.94,9427.71,46316.9,40092.42,6203.8,20.68,conventional,2015,SouthCarolina +4,2015-11-29,0.97,217965.37,125440.43,42269.54,7454.33,42801.07,33356.89,9433.78,10.4,conventional,2015,SouthCarolina +5,2015-11-22,0.99,216767.98,123208.85,42099.26,8114.19,43345.68,34239.23,9106.45,0.0,conventional,2015,SouthCarolina +6,2015-11-15,1.07,224373.12,116059.4,61600.25,11569.87,35143.6,29409.04,5734.56,0.0,conventional,2015,SouthCarolina +7,2015-11-08,1.08,221080.11,118352.11,47266.75,15742.56,39718.69,34385.71,5325.2,7.78,conventional,2015,SouthCarolina +8,2015-11-01,1.0,280886.82,143163.13,59937.59,19045.03,58741.07,44763.47,13977.6,0.0,conventional,2015,SouthCarolina +9,2015-10-25,1.11,223607.39,107103.78,46792.32,17192.49,52518.8,43924.89,8593.91,0.0,conventional,2015,SouthCarolina +10,2015-10-18,1.12,226246.39,105221.4,55038.8,16616.9,49369.29,40996.42,8372.87,0.0,conventional,2015,SouthCarolina +11,2015-10-11,1.03,267962.33,121966.0,64658.41,20190.4,61147.52,43009.49,18138.03,0.0,conventional,2015,SouthCarolina +12,2015-10-04,1.04,267919.95,123692.52,70671.2,14906.36,58649.87,38750.39,19899.48,0.0,conventional,2015,SouthCarolina +13,2015-09-27,1.08,253422.99,111054.81,72273.16,18765.64,51329.38,42223.65,9105.73,0.0,conventional,2015,SouthCarolina +14,2015-09-20,1.02,312177.28,148633.9,77644.18,14421.82,71477.38,49597.26,21851.29,28.83,conventional,2015,SouthCarolina +15,2015-09-13,1.14,269754.97,124781.45,61067.3,13939.72,69966.5,55240.3,14707.82,18.38,conventional,2015,SouthCarolina +16,2015-09-06,1.0,353755.0,165544.52,78503.43,23189.42,86517.63,68114.97,18328.93,73.73,conventional,2015,SouthCarolina +17,2015-08-30,1.15,280699.74,130772.55,58761.62,15284.88,75880.69,70666.71,5198.14,15.84,conventional,2015,SouthCarolina +18,2015-08-23,1.09,310381.51,139531.8,64117.55,17089.65,89642.51,84625.03,5017.48,0.0,conventional,2015,SouthCarolina +19,2015-08-16,1.12,320750.54,157907.67,60468.01,17614.64,84760.22,78819.75,5940.47,0.0,conventional,2015,SouthCarolina +20,2015-08-09,1.05,353930.82,179463.07,69024.22,18362.39,87081.14,75517.04,11497.68,66.42,conventional,2015,SouthCarolina +21,2015-08-02,1.14,309611.87,148657.53,64352.06,19051.78,77550.5,72040.69,5488.53,21.28,conventional,2015,SouthCarolina +22,2015-07-26,1.11,327629.87,160050.21,63162.91,18771.89,85644.86,80982.38,4662.48,0.0,conventional,2015,SouthCarolina +23,2015-07-19,1.05,379505.99,212349.9,70690.71,18957.89,77507.49,67097.27,10410.22,0.0,conventional,2015,SouthCarolina +24,2015-07-12,1.14,320934.33,143217.29,81353.84,17190.82,79172.38,73161.82,5916.12,94.44,conventional,2015,SouthCarolina +25,2015-07-05,1.05,406711.2,204374.47,93000.23,20072.67,89263.83,78695.41,10568.42,0.0,conventional,2015,SouthCarolina +26,2015-06-28,1.11,340424.79,152050.0,76047.9,18078.63,94248.26,89211.38,4983.53,53.35,conventional,2015,SouthCarolina +27,2015-06-21,1.03,392755.13,207438.27,71556.59,17373.26,96387.01,84821.85,11533.12,32.04,conventional,2015,SouthCarolina +28,2015-06-14,1.1,339919.17,172821.14,60267.01,18287.95,88543.07,82278.6,6256.45,8.02,conventional,2015,SouthCarolina +29,2015-06-07,1.04,378845.21,223638.72,46631.18,17294.66,91280.65,80177.95,11102.7,0.0,conventional,2015,SouthCarolina +30,2015-05-31,1.13,322891.36,185323.63,43301.71,18015.98,76250.04,70487.95,5756.74,5.35,conventional,2015,SouthCarolina +31,2015-05-24,1.05,407499.97,247039.02,58352.93,20373.51,81734.51,69674.41,12060.1,0.0,conventional,2015,SouthCarolina +32,2015-05-17,1.09,346700.41,200005.38,46163.06,18077.99,82453.98,76994.15,5459.83,0.0,conventional,2015,SouthCarolina +33,2015-05-10,1.13,329845.26,199489.94,44017.79,16482.29,69855.24,64229.19,5626.05,0.0,conventional,2015,SouthCarolina +34,2015-05-03,0.97,457411.45,271320.49,72324.54,26965.17,86801.25,70270.99,16530.26,0.0,conventional,2015,SouthCarolina +35,2015-04-26,1.1,319659.25,191953.94,43170.27,16204.46,68330.58,63208.06,5122.52,0.0,conventional,2015,SouthCarolina +36,2015-04-19,1.08,322940.72,185939.51,43227.61,15722.07,78051.53,72168.56,5882.97,0.0,conventional,2015,SouthCarolina +37,2015-04-12,1.05,356627.38,220208.81,49060.02,16838.53,70520.02,57990.96,12529.06,0.0,conventional,2015,SouthCarolina +38,2015-04-05,1.1,311646.73,187483.15,44278.23,18418.66,61466.69,53591.38,7875.31,0.0,conventional,2015,SouthCarolina +39,2015-03-29,1.11,284839.51,151124.37,45649.68,16553.04,71512.42,64967.19,6545.23,0.0,conventional,2015,SouthCarolina +40,2015-03-22,1.0,366680.0,218785.98,48984.19,15237.87,83671.96,71610.52,12061.44,0.0,conventional,2015,SouthCarolina +41,2015-03-15,1.15,297855.71,171702.03,44167.57,18024.31,63961.8,58791.05,5170.75,0.0,conventional,2015,SouthCarolina +42,2015-03-08,1.14,289679.91,173429.19,39009.78,14400.7,62840.24,58373.46,4466.78,0.0,conventional,2015,SouthCarolina +43,2015-03-01,1.05,337576.71,213315.88,42197.08,13638.46,68425.29,57884.58,10540.71,0.0,conventional,2015,SouthCarolina +44,2015-02-22,1.02,332918.7,193228.98,45809.76,23875.57,70004.39,64068.23,5936.16,0.0,conventional,2015,SouthCarolina +45,2015-02-15,1.11,278514.05,163447.93,40081.18,14735.34,60249.6,44927.07,15322.53,0.0,conventional,2015,SouthCarolina +46,2015-02-08,1.06,282822.72,169169.05,41468.74,12641.17,59543.76,44770.78,14772.98,0.0,conventional,2015,SouthCarolina +47,2015-02-01,0.91,469684.32,284674.2,78055.21,27248.16,79706.75,51793.3,27913.45,0.0,conventional,2015,SouthCarolina +48,2015-01-25,1.06,311348.31,187805.04,46947.97,12431.59,64163.71,45690.04,18473.67,0.0,conventional,2015,SouthCarolina +49,2015-01-18,1.15,276205.95,160256.58,44019.64,14954.1,56975.63,35311.93,21663.7,0.0,conventional,2015,SouthCarolina +50,2015-01-11,1.1,279706.73,162428.39,39713.75,14197.05,63367.54,44864.96,18502.58,0.0,conventional,2015,SouthCarolina +51,2015-01-04,1.01,309024.22,180977.06,46253.49,12923.45,68870.22,52556.0,16314.22,0.0,conventional,2015,SouthCarolina +0,2015-12-27,0.81,4831664.77,2295315.43,1290847.05,392846.12,852656.17,663310.0,105317.59,84028.58,conventional,2015,SouthCentral +1,2015-12-20,0.81,4565207.85,2166801.03,1226508.86,412828.75,759069.21,555356.92,95639.5,108072.79,conventional,2015,SouthCentral +2,2015-12-13,0.78,4869309.42,2366879.8,1559601.21,271514.98,671313.43,554563.94,115546.32,1203.17,conventional,2015,SouthCentral +3,2015-12-06,0.76,4938526.47,2271088.12,1989750.87,38648.11,639039.37,496732.56,141970.0,336.81,conventional,2015,SouthCentral +4,2015-11-29,0.82,3969578.89,2105670.46,1234911.39,27985.18,601011.86,505843.61,95136.58,31.67,conventional,2015,SouthCentral +5,2015-11-22,0.8,4347510.51,2187382.97,1451468.73,39736.75,668922.06,550979.27,117935.74,7.05,conventional,2015,SouthCentral +6,2015-11-15,0.76,4943687.09,2762021.24,1375460.43,39019.73,767185.69,600933.14,166200.1,52.45,conventional,2015,SouthCentral +7,2015-11-08,0.8,4864814.01,2470146.6,1630407.36,115276.98,648983.07,485540.3,163125.93,316.84,conventional,2015,SouthCentral +8,2015-11-01,0.81,5072550.94,2344879.12,1704035.46,363472.91,660163.45,478366.44,181455.77,341.24,conventional,2015,SouthCentral +9,2015-10-25,0.86,4912068.04,2542914.87,1537781.45,247539.31,583832.41,475267.2,108231.39,333.82,conventional,2015,SouthCentral +10,2015-10-18,0.87,4687705.56,2488221.2,1352548.07,274013.56,572922.73,489000.2,83782.52,140.01,conventional,2015,SouthCentral +11,2015-10-11,0.83,5236047.86,2351606.01,1833545.05,426600.81,624295.99,504922.39,119235.17,138.43,conventional,2015,SouthCentral +12,2015-10-04,0.84,5201535.32,2257194.22,2067870.47,184770.84,691699.79,517821.64,173688.06,190.09,conventional,2015,SouthCentral +13,2015-09-27,0.87,4987381.36,2252044.96,2042360.56,83993.99,608981.85,480873.02,128033.07,75.76,conventional,2015,SouthCentral +14,2015-09-20,0.83,5211738.31,2453284.69,2117631.84,39835.27,600986.51,478669.38,122302.71,14.42,conventional,2015,SouthCentral +15,2015-09-13,0.88,5761848.67,2608997.38,2390282.14,34341.44,728227.71,533040.93,195143.56,43.22,conventional,2015,SouthCentral +16,2015-09-06,0.86,5979528.24,2897999.07,2322076.97,36318.54,723133.66,571900.3,151197.44,35.92,conventional,2015,SouthCentral +17,2015-08-30,0.87,5200252.65,3171393.1,1387819.83,28997.59,612042.13,535065.38,76947.64,29.11,conventional,2015,SouthCentral +18,2015-08-23,0.89,5235579.44,3058909.34,1546628.56,30815.55,599225.99,513745.16,85422.36,58.47,conventional,2015,SouthCentral +19,2015-08-16,0.89,5409823.02,3273624.13,1474652.79,35283.63,626262.47,536381.17,89808.28,73.02,conventional,2015,SouthCentral +20,2015-08-09,0.89,5353393.56,3096265.87,1600371.62,40173.44,616582.63,529408.18,87160.21,14.24,conventional,2015,SouthCentral +21,2015-08-02,0.9,5142335.64,3276776.23,1254704.28,24749.12,586106.01,492930.71,93162.67,12.63,conventional,2015,SouthCentral +22,2015-07-26,0.81,5822521.79,3166737.18,1982138.27,32905.16,640741.18,511308.6,129425.5,7.08,conventional,2015,SouthCentral +23,2015-07-19,0.83,5703940.56,3141801.51,1766900.01,28797.39,766441.65,589126.53,177294.71,20.41,conventional,2015,SouthCentral +24,2015-07-12,0.82,5544366.95,3318843.01,1523777.99,33415.56,668330.39,547333.33,119640.03,1357.03,conventional,2015,SouthCentral +25,2015-07-05,0.83,6380287.71,3835278.13,1639735.99,47955.04,857318.55,754238.62,103046.99,32.94,conventional,2015,SouthCentral +26,2015-06-28,0.77,6024103.65,3656335.59,1416248.77,81756.0,869763.29,678138.24,191572.72,52.33,conventional,2015,SouthCentral +27,2015-06-21,0.79,6153608.75,3460014.16,1739133.4,97002.67,857458.52,683943.14,173497.82,17.56,conventional,2015,SouthCentral +28,2015-06-14,0.69,7281803.61,4668964.65,1660109.04,77844.97,874884.95,716742.3,158100.12,42.53,conventional,2015,SouthCentral +29,2015-06-07,0.75,6234006.44,3870043.62,1479527.4,106106.86,778328.56,662252.69,116061.84,14.03,conventional,2015,SouthCentral +30,2015-05-31,0.74,6349957.65,4136440.91,1501302.47,34073.41,678140.86,530629.47,147483.35,28.04,conventional,2015,SouthCentral +31,2015-05-24,0.83,5903596.18,3794422.74,1434383.77,38143.15,636646.52,545155.31,91459.59,31.62,conventional,2015,SouthCentral +32,2015-05-17,0.79,5831782.44,3979432.32,1202270.23,33292.23,616787.66,528432.48,88337.6,17.58,conventional,2015,SouthCentral +33,2015-05-10,0.79,6400340.97,3969053.76,1709201.45,36330.84,685754.92,533597.59,152122.11,35.22,conventional,2015,SouthCentral +34,2015-05-03,0.78,6558729.33,3520801.33,2265493.71,58510.13,713924.16,546260.44,166650.78,1012.94,conventional,2015,SouthCentral +35,2015-04-26,0.83,5578980.69,3637682.35,1248422.73,73076.91,619798.7,519975.08,99430.45,393.17,conventional,2015,SouthCentral +36,2015-04-19,0.82,5593885.09,3657278.94,1183497.85,114923.71,638184.59,538970.63,99203.37,10.59,conventional,2015,SouthCentral +37,2015-04-12,0.8,5930072.71,3851189.34,1385674.25,102729.01,590480.11,536034.76,54424.19,21.16,conventional,2015,SouthCentral +38,2015-04-05,0.83,6368728.85,3676642.17,1856953.2,104285.22,730848.26,670637.73,58681.56,1528.97,conventional,2015,SouthCentral +39,2015-03-29,0.82,5713017.35,3091049.63,1836365.62,89374.2,696227.9,633029.23,63160.07,38.6,conventional,2015,SouthCentral +40,2015-03-22,0.76,6008817.9,3785376.16,1476714.1,81039.5,665688.14,540561.2,125103.19,23.75,conventional,2015,SouthCentral +41,2015-03-15,0.79,5703759.21,3290881.46,1644220.11,115290.48,653367.16,522678.26,130674.88,14.02,conventional,2015,SouthCentral +42,2015-03-08,0.8,5864999.81,3215935.34,1855972.27,79560.0,713532.2,537992.32,175511.51,28.37,conventional,2015,SouthCentral +43,2015-03-01,0.87,5314431.93,2944928.22,1629785.85,90167.62,649550.24,518799.05,130726.85,24.34,conventional,2015,SouthCentral +44,2015-02-22,0.85,5208272.73,3077730.66,1408136.41,81708.29,640697.37,529675.01,111022.36,0.0,conventional,2015,SouthCentral +45,2015-02-15,0.8,5204971.91,3046997.7,1421557.06,93961.98,642455.17,540023.82,102417.63,13.72,conventional,2015,SouthCentral +46,2015-02-08,0.73,5900232.15,3323430.66,1927404.12,75885.05,573512.32,518539.89,54886.55,85.88,conventional,2015,SouthCentral +47,2015-02-01,0.71,6934356.31,3776936.71,2348980.01,161845.27,646594.32,519847.64,126683.42,63.26,conventional,2015,SouthCentral +48,2015-01-25,0.81,5142259.93,3205533.39,1298842.9,68870.69,569012.95,476249.64,92763.31,0.0,conventional,2015,SouthCentral +49,2015-01-18,0.79,5322625.57,2839359.92,1782045.18,146481.44,554739.03,497106.16,57607.18,25.69,conventional,2015,SouthCentral +50,2015-01-11,0.8,5409726.02,2973367.52,1717171.24,88373.78,630813.48,533599.2,97164.07,50.21,conventional,2015,SouthCentral +51,2015-01-04,0.77,5144267.01,2745009.1,1755142.21,73432.89,570682.81,442217.85,128451.37,13.59,conventional,2015,SouthCentral +0,2015-12-27,0.98,3024956.05,2045752.24,275823.43,13994.48,689385.9,425319.18,264039.61,27.11,conventional,2015,Southeast +1,2015-12-20,1.12,2206305.07,1449139.49,211595.53,10520.4,535049.65,399343.68,135633.67,72.3,conventional,2015,Southeast +2,2015-12-13,0.96,3042588.2,2127600.06,303892.09,12361.35,598734.7,326312.25,272310.91,111.54,conventional,2015,Southeast +3,2015-12-06,1.13,2205550.58,1520190.48,248205.38,15672.86,421481.86,275520.16,145934.58,27.12,conventional,2015,Southeast +4,2015-11-29,0.97,2615828.04,1797110.09,273706.42,12260.75,532750.78,280568.93,252139.55,42.3,conventional,2015,Southeast +5,2015-11-22,0.98,2667551.84,1799501.02,285065.9,13736.85,569248.07,319821.73,249396.08,30.26,conventional,2015,Southeast +6,2015-11-15,1.16,2242688.2,1455202.28,294620.08,20815.34,472050.5,313845.53,158186.8,18.17,conventional,2015,Southeast +7,2015-11-08,1.16,2197763.7,1420318.78,298081.99,25682.97,453679.96,309652.75,143978.69,48.52,conventional,2015,Southeast +8,2015-11-01,0.98,3227049.19,2058754.3,472310.67,31277.37,664706.85,353188.52,311503.15,15.18,conventional,2015,Southeast +9,2015-10-25,1.16,2211716.76,1278660.6,393459.25,28828.13,510768.78,329672.2,181063.12,33.46,conventional,2015,Southeast +10,2015-10-18,1.15,2274638.59,1274185.16,426237.27,28371.94,545844.22,355763.19,190038.31,42.72,conventional,2015,Southeast +11,2015-10-11,0.97,3179824.67,1810141.55,579736.64,34930.57,755015.91,356707.71,398280.71,27.49,conventional,2015,Southeast +12,2015-10-04,0.98,3259659.28,1909901.24,591640.18,25995.26,732122.6,340717.96,391377.16,27.48,conventional,2015,Southeast +13,2015-09-27,1.17,2314057.46,1266450.71,519006.76,33834.37,494765.62,307494.33,187252.98,18.31,conventional,2015,Southeast +14,2015-09-20,0.96,3496412.09,2000380.63,663554.32,27931.94,804545.2,382666.89,421701.4,176.91,conventional,2015,Southeast +15,2015-09-13,1.15,2486654.71,1317283.12,534412.71,26776.37,608182.51,397112.08,211033.9,36.53,conventional,2015,Southeast +16,2015-09-06,0.97,3750714.49,2175323.4,650270.11,43507.27,881613.71,472040.07,409430.79,142.85,conventional,2015,Southeast +17,2015-08-30,1.19,2544630.5,1422797.76,464251.81,31618.81,625962.12,489650.49,136184.25,127.38,conventional,2015,Southeast +18,2015-08-23,1.16,2580705.47,1423075.89,477975.75,35514.75,644139.08,520131.23,123968.56,39.29,conventional,2015,Southeast +19,2015-08-16,1.16,2766391.11,1615209.93,431016.1,55158.31,665006.77,529013.85,135887.51,105.41,conventional,2015,Southeast +20,2015-08-09,1.0,3804851.11,2430272.64,498991.43,79631.92,795955.12,525549.82,270162.46,242.84,conventional,2015,Southeast +21,2015-08-02,1.18,2674633.13,1539272.45,430133.96,81144.7,624082.02,502278.3,121708.26,95.46,conventional,2015,Southeast +22,2015-07-26,1.15,2742949.66,1615660.84,424560.81,78530.49,624197.52,515493.85,108703.67,0.0,conventional,2015,Southeast +23,2015-07-19,0.99,3810950.39,2507726.2,515358.68,77561.44,710304.07,471729.89,238574.18,0.0,conventional,2015,Southeast +24,2015-07-12,1.17,2748745.96,1578243.11,467848.98,72897.71,629756.16,501415.01,127742.54,598.61,conventional,2015,Southeast +25,2015-07-05,0.99,4295280.16,2713600.49,592279.23,97111.62,892288.82,621425.86,270807.26,55.7,conventional,2015,Southeast +26,2015-06-28,1.14,3026048.11,1721633.23,464034.18,59679.47,780701.23,648105.94,132335.36,259.93,conventional,2015,Southeast +27,2015-06-21,0.97,4019384.71,2602623.94,462243.35,62634.6,891882.82,619129.21,272640.03,113.58,conventional,2015,Southeast +28,2015-06-14,1.15,3021825.81,1910736.86,315079.1,46585.63,749424.22,611440.68,137878.92,104.62,conventional,2015,Southeast +29,2015-06-07,0.99,4003121.77,2862823.58,294519.59,26236.45,819542.15,551432.71,268100.73,8.71,conventional,2015,Southeast +30,2015-05-31,1.17,2884507.74,2048880.09,206982.3,25671.13,602974.22,473339.3,129597.25,37.67,conventional,2015,Southeast +31,2015-05-24,1.0,4298514.96,3209533.78,311176.56,30510.18,747294.44,457338.88,289932.34,23.22,conventional,2015,Southeast +32,2015-05-17,1.15,2936173.63,2098271.46,211868.36,26127.7,599906.11,470992.66,128913.45,0.0,conventional,2015,Southeast +33,2015-05-10,1.17,2963777.8,2167781.63,212422.04,24440.63,559133.5,437055.69,122077.81,0.0,conventional,2015,Southeast +34,2015-05-03,0.97,4986270.76,3682277.46,383803.95,40064.12,880125.23,496136.95,382606.34,1381.94,conventional,2015,Southeast +35,2015-04-26,1.16,3011225.49,2170188.85,220781.47,23844.72,596410.45,461692.75,133263.53,1454.17,conventional,2015,Southeast +36,2015-04-19,1.14,2857156.51,2014443.63,214218.14,23684.96,604809.78,455795.5,149014.28,0.0,conventional,2015,Southeast +37,2015-04-12,1.0,3781504.91,2801179.62,292733.49,23471.11,664120.69,371569.32,292551.37,0.0,conventional,2015,Southeast +38,2015-04-05,1.08,3140456.17,2257669.21,252737.98,26137.34,603911.64,387483.75,215544.56,883.33,conventional,2015,Southeast +39,2015-03-29,1.16,2558925.23,1804282.66,205041.11,23224.7,526376.76,379305.43,147071.33,0.0,conventional,2015,Southeast +40,2015-03-22,0.98,3867453.83,2823708.05,299770.04,21570.5,722405.24,447949.27,274435.21,20.76,conventional,2015,Southeast +41,2015-03-15,1.21,2602341.55,1865220.72,211822.87,25792.72,499505.24,375572.97,123875.82,56.45,conventional,2015,Southeast +42,2015-03-08,1.18,2642581.73,1894002.38,199317.95,20683.77,528577.63,413603.79,114973.84,0.0,conventional,2015,Southeast +43,2015-03-01,1.01,3633174.13,2682065.6,281502.89,19429.67,650175.97,396512.64,253660.35,2.98,conventional,2015,Southeast +44,2015-02-22,1.11,2796195.76,1960713.06,236520.37,34466.49,564495.84,437763.9,126731.94,0.0,conventional,2015,Southeast +45,2015-02-15,1.16,2558563.78,1820564.15,219336.78,21706.04,496956.81,295183.36,201773.45,0.0,conventional,2015,Southeast +46,2015-02-08,1.11,2573973.63,1871661.73,226039.73,18310.04,457962.13,272767.32,185194.81,0.0,conventional,2015,Southeast +47,2015-02-01,0.93,4924049.79,3656338.95,451194.73,40258.76,776257.35,359145.48,417111.87,0.0,conventional,2015,Southeast +48,2015-01-25,1.15,2778000.82,1990978.47,266024.34,18600.92,502397.09,281141.42,221255.67,0.0,conventional,2015,Southeast +49,2015-01-18,1.19,2595783.66,1815847.03,273695.84,22004.31,484236.48,258541.9,225694.58,0.0,conventional,2015,Southeast +50,2015-01-11,1.18,2433295.61,1667012.92,269027.02,21918.53,475337.14,260164.0,215173.14,0.0,conventional,2015,Southeast +51,2015-01-04,0.98,3204112.16,2296069.27,320373.63,18938.42,568730.84,287820.14,280910.7,0.0,conventional,2015,Southeast +0,2015-12-27,1.05,67099.38,20577.16,21592.44,2889.97,22039.81,21900.09,0.0,139.72,conventional,2015,Spokane +1,2015-12-20,1.12,61555.62,17819.26,16576.75,2660.37,24499.24,24499.24,0.0,0.0,conventional,2015,Spokane +2,2015-12-13,0.99,67431.18,22229.24,20738.68,2189.59,22273.67,22269.39,4.28,0.0,conventional,2015,Spokane +3,2015-12-06,0.85,100233.67,18780.0,39234.39,2758.78,39460.5,38946.79,513.71,0.0,conventional,2015,Spokane +4,2015-11-29,1.17,51432.09,16876.93,16826.84,2523.85,15204.47,15204.47,0.0,0.0,conventional,2015,Spokane +5,2015-11-22,1.12,56013.43,17535.51,21806.06,2671.75,14000.11,14000.11,0.0,0.0,conventional,2015,Spokane +6,2015-11-15,1.0,84398.93,17121.98,38867.94,2013.77,26395.24,26395.24,0.0,0.0,conventional,2015,Spokane +7,2015-11-08,1.08,63821.22,19315.13,26207.73,2182.03,16116.33,16116.33,0.0,0.0,conventional,2015,Spokane +8,2015-11-01,1.13,60151.68,20262.48,23801.85,2428.84,13658.51,13658.51,0.0,0.0,conventional,2015,Spokane +9,2015-10-25,1.08,66852.57,16618.08,33389.28,2073.74,14771.47,14720.74,50.73,0.0,conventional,2015,Spokane +10,2015-10-18,1.13,60732.92,16562.04,30936.55,1935.49,11298.84,11298.84,0.0,0.0,conventional,2015,Spokane +11,2015-10-11,0.94,88580.07,11289.75,56878.37,1932.9,18479.05,18479.05,0.0,0.0,conventional,2015,Spokane +12,2015-10-04,0.99,77514.75,18331.9,47471.02,1657.16,10054.67,10054.67,0.0,0.0,conventional,2015,Spokane +13,2015-09-27,1.09,63902.9,25431.53,23735.71,2196.24,12539.42,12539.42,0.0,0.0,conventional,2015,Spokane +14,2015-09-20,1.05,79503.08,20718.72,42342.6,4327.13,12114.63,12114.63,0.0,0.0,conventional,2015,Spokane +15,2015-09-13,1.03,78771.3,39572.15,24065.27,2657.99,12475.89,12475.89,0.0,0.0,conventional,2015,Spokane +16,2015-09-06,1.08,67101.52,32235.74,18153.73,3891.68,12820.37,12820.37,0.0,0.0,conventional,2015,Spokane +17,2015-08-30,1.11,61176.91,31274.84,16651.71,3820.56,9429.8,9427.72,2.08,0.0,conventional,2015,Spokane +18,2015-08-23,1.08,84333.73,34441.25,35454.67,2497.82,11939.99,11869.39,70.6,0.0,conventional,2015,Spokane +19,2015-08-16,1.15,72392.09,33363.36,25970.27,3108.08,9950.38,9950.38,0.0,0.0,conventional,2015,Spokane +20,2015-08-09,1.21,70351.29,32213.37,23114.49,3261.8,11761.63,11761.63,0.0,0.0,conventional,2015,Spokane +21,2015-08-02,1.19,74839.74,35242.08,24453.69,3189.46,11954.51,11954.51,0.0,0.0,conventional,2015,Spokane +22,2015-07-26,1.18,71150.24,33592.19,22293.64,3203.53,12060.88,12060.88,0.0,0.0,conventional,2015,Spokane +23,2015-07-19,1.16,77305.34,39750.66,23169.36,2910.03,11475.29,11475.29,0.0,0.0,conventional,2015,Spokane +24,2015-07-12,1.05,86318.9,45146.65,23703.42,3714.04,13754.79,13594.7,160.09,0.0,conventional,2015,Spokane +25,2015-07-05,1.22,91195.99,43121.13,30059.65,6422.29,11592.92,11245.14,347.78,0.0,conventional,2015,Spokane +26,2015-06-28,1.2,81276.47,38303.6,26660.48,6367.68,9944.71,9944.71,0.0,0.0,conventional,2015,Spokane +27,2015-06-21,1.12,84739.31,33513.17,33789.94,4665.82,12770.38,12770.38,0.0,0.0,conventional,2015,Spokane +28,2015-06-14,1.13,88579.12,36980.68,35548.22,3428.77,12621.45,12621.45,0.0,0.0,conventional,2015,Spokane +29,2015-06-07,1.19,79733.85,40534.99,26271.71,3744.52,9182.63,9182.63,0.0,0.0,conventional,2015,Spokane +30,2015-05-31,1.08,82469.7,42027.99,24334.27,3310.34,12797.1,12797.1,0.0,0.0,conventional,2015,Spokane +31,2015-05-24,1.07,92664.44,41058.09,33679.94,3564.33,14362.08,14362.08,0.0,0.0,conventional,2015,Spokane +32,2015-05-17,1.09,77996.78,36879.96,24110.51,4295.38,12710.93,12710.93,0.0,0.0,conventional,2015,Spokane +33,2015-05-10,1.03,95615.23,46467.69,31703.17,3071.94,14372.43,12192.59,2179.84,0.0,conventional,2015,Spokane +34,2015-05-03,0.98,108051.54,44094.43,48511.36,3133.35,12312.4,12127.23,185.17,0.0,conventional,2015,Spokane +35,2015-04-26,1.08,80443.94,41208.97,24094.05,2597.12,12543.8,12543.8,0.0,0.0,conventional,2015,Spokane +36,2015-04-19,1.03,91379.33,31965.44,42072.81,2783.29,14557.79,14557.79,0.0,0.0,conventional,2015,Spokane +37,2015-04-12,1.21,64529.74,27692.12,23281.52,3057.26,10498.84,10498.84,0.0,0.0,conventional,2015,Spokane +38,2015-04-05,1.15,73681.06,30529.69,29902.8,3073.43,10175.14,10090.7,84.44,0.0,conventional,2015,Spokane +39,2015-03-29,1.12,74999.31,36451.47,26800.47,2051.36,9696.01,9376.01,320.0,0.0,conventional,2015,Spokane +40,2015-03-22,1.1,74725.33,32960.85,28457.8,2400.38,10906.3,10906.3,0.0,0.0,conventional,2015,Spokane +41,2015-03-15,1.19,71766.04,32528.5,26391.31,3967.68,8878.55,8878.55,0.0,0.0,conventional,2015,Spokane +42,2015-03-08,1.18,69848.58,35184.21,24432.93,2713.19,7518.25,7514.21,4.04,0.0,conventional,2015,Spokane +43,2015-03-01,1.03,88304.41,26800.27,44707.74,2869.92,13926.48,13805.14,121.34,0.0,conventional,2015,Spokane +44,2015-02-22,1.03,85295.41,25370.99,45291.88,2537.35,12095.19,12095.19,0.0,0.0,conventional,2015,Spokane +45,2015-02-15,1.24,57869.58,24008.4,22723.92,2683.92,8453.34,8319.63,133.71,0.0,conventional,2015,Spokane +46,2015-02-08,1.03,74139.25,28901.01,36736.53,3175.96,5325.75,5135.22,190.53,0.0,conventional,2015,Spokane +47,2015-02-01,0.97,135656.36,35897.25,84741.31,2704.69,12313.11,12276.59,36.52,0.0,conventional,2015,Spokane +48,2015-01-25,1.21,64116.71,23843.63,29590.6,2672.12,8010.36,8010.36,0.0,0.0,conventional,2015,Spokane +49,2015-01-18,1.18,69600.14,28457.99,29719.57,2933.27,8489.31,7986.02,503.29,0.0,conventional,2015,Spokane +50,2015-01-11,1.07,70697.07,21973.57,35996.7,4131.75,8595.05,6899.1,1695.95,0.0,conventional,2015,Spokane +51,2015-01-04,1.0,84612.39,26607.29,44341.92,3660.64,10002.54,9556.06,446.48,0.0,conventional,2015,Spokane +0,2015-12-27,1.1,152121.37,50481.76,25206.85,23.89,76408.87,58430.48,17978.39,0.0,conventional,2015,StLouis +1,2015-12-20,1.13,135427.66,40333.06,23867.6,40.52,71186.48,59160.36,12026.12,0.0,conventional,2015,StLouis +2,2015-12-13,0.99,166083.52,64673.08,24481.09,71.71,76857.64,55878.32,20979.32,0.0,conventional,2015,StLouis +3,2015-12-06,1.09,147544.08,60481.9,25222.92,27.18,61812.08,53742.31,8069.77,0.0,conventional,2015,StLouis +4,2015-11-29,1.16,129475.25,38130.41,26526.03,115.21,64703.6,57854.06,6840.66,8.88,conventional,2015,StLouis +5,2015-11-22,1.15,134989.16,40115.68,27003.98,23.45,67846.05,60331.15,7514.9,0.0,conventional,2015,StLouis +6,2015-11-15,1.07,160185.59,62810.86,28499.99,14.91,68859.83,61782.77,7074.83,2.23,conventional,2015,StLouis +7,2015-11-08,1.18,148030.6,54277.81,29529.64,25.08,64198.07,59269.38,4928.69,0.0,conventional,2015,StLouis +8,2015-11-01,1.21,152077.32,49010.65,34559.26,43.44,68463.97,64373.15,4084.11,6.71,conventional,2015,StLouis +9,2015-10-25,1.21,151268.28,52371.31,37039.7,37.92,61819.35,56579.05,5240.3,0.0,conventional,2015,StLouis +10,2015-10-18,1.26,143944.11,53413.73,34898.38,25.38,55606.62,51312.19,4287.69,6.74,conventional,2015,StLouis +11,2015-10-11,1.15,159011.26,77647.86,25627.41,28.01,55707.98,52275.19,3421.53,11.26,conventional,2015,StLouis +12,2015-10-04,1.23,151219.39,64603.33,36643.05,51.42,49921.59,46870.06,3051.53,0.0,conventional,2015,StLouis +13,2015-09-27,1.12,175958.11,99021.18,34231.9,62.01,42643.02,40596.31,2046.71,0.0,conventional,2015,StLouis +14,2015-09-20,1.24,165255.03,77969.04,37269.87,58.84,49957.28,47579.68,2357.32,20.28,conventional,2015,StLouis +15,2015-09-13,1.15,200117.98,108859.16,33405.69,227.53,57625.6,55794.9,1694.5,136.2,conventional,2015,StLouis +16,2015-09-06,1.3,180705.59,85673.91,36576.66,71.5,58383.52,58293.14,88.13,2.25,conventional,2015,StLouis +17,2015-08-30,1.32,164716.78,74751.64,34386.84,16.21,55562.09,55153.25,404.34,4.5,conventional,2015,StLouis +18,2015-08-23,1.11,202861.68,111101.26,35104.11,33.19,56623.12,56606.63,11.99,4.5,conventional,2015,StLouis +19,2015-08-16,0.88,290906.05,186669.12,44789.17,101.82,59345.94,59339.2,0.0,6.74,conventional,2015,StLouis +20,2015-08-09,1.15,200794.99,92511.57,47874.46,230.92,60178.04,60173.56,0.0,4.48,conventional,2015,StLouis +21,2015-08-02,1.26,184501.15,79291.85,43745.86,4.0,61459.44,61457.2,0.0,2.24,conventional,2015,StLouis +22,2015-07-26,1.06,216993.01,120124.79,38710.22,21.88,58136.12,58136.12,0.0,0.0,conventional,2015,StLouis +23,2015-07-19,1.2,204464.92,99044.52,41712.52,56.2,63651.68,63651.68,0.0,0.0,conventional,2015,StLouis +24,2015-07-12,1.13,233579.7,132490.39,44204.19,232.99,56652.13,56425.96,3.95,222.22,conventional,2015,StLouis +25,2015-07-05,1.32,224901.96,97253.4,57668.67,23.52,69956.37,69313.52,642.85,0.0,conventional,2015,StLouis +26,2015-06-28,1.17,217234.17,107631.08,40137.34,54.82,69410.93,69371.63,39.3,0.0,conventional,2015,StLouis +27,2015-06-21,1.26,198137.18,84699.66,38461.41,51.04,74925.07,74925.07,0.0,0.0,conventional,2015,StLouis +28,2015-06-14,1.28,203247.31,87726.18,41782.62,102.06,73636.45,73588.28,0.0,48.17,conventional,2015,StLouis +29,2015-06-07,1.3,194667.64,92964.49,38450.22,41.86,63211.07,63206.71,0.0,4.36,conventional,2015,StLouis +30,2015-05-31,1.16,247195.62,147104.98,38945.34,8.73,61136.57,61113.45,23.12,0.0,conventional,2015,StLouis +31,2015-05-24,1.18,236189.46,135166.39,38773.04,9.0,62241.03,62233.36,7.67,0.0,conventional,2015,StLouis +32,2015-05-17,1.32,186936.02,96530.89,37553.09,37.3,52814.74,52814.74,0.0,0.0,conventional,2015,StLouis +33,2015-05-10,1.25,218562.94,125846.03,33050.99,42.85,59623.07,59620.93,0.0,2.14,conventional,2015,StLouis +34,2015-05-03,1.09,275080.92,190986.18,36252.66,32.39,47809.69,47809.69,0.0,0.0,conventional,2015,StLouis +35,2015-04-26,1.37,178200.42,86967.98,42320.51,15.07,48896.86,48894.75,0.0,2.11,conventional,2015,StLouis +36,2015-04-19,1.34,184979.95,101449.24,38169.29,33.73,45327.69,45322.98,4.71,0.0,conventional,2015,StLouis +37,2015-04-12,1.21,214125.11,138215.06,37441.77,144.84,38323.44,38323.44,0.0,0.0,conventional,2015,StLouis +38,2015-04-05,1.36,159461.64,77970.98,34544.71,67.97,46877.98,46762.42,115.56,0.0,conventional,2015,StLouis +39,2015-03-29,1.21,198395.76,111921.69,39575.0,56.26,46842.81,46687.25,155.56,0.0,conventional,2015,StLouis +40,2015-03-22,1.34,163325.4,77997.93,37696.27,39.92,47591.28,47513.51,77.77,0.0,conventional,2015,StLouis +41,2015-03-15,1.33,157799.23,70836.3,36549.13,69.74,50344.06,50190.73,153.33,0.0,conventional,2015,StLouis +42,2015-03-08,1.36,147525.59,73956.89,31856.71,48.39,41663.6,41663.6,0.0,0.0,conventional,2015,StLouis +43,2015-03-01,1.24,179277.41,93746.89,39403.61,100.73,46026.18,46019.51,6.67,0.0,conventional,2015,StLouis +44,2015-02-22,1.32,156112.67,75717.36,36667.64,58.03,43669.64,43660.75,8.89,0.0,conventional,2015,StLouis +45,2015-02-15,1.23,169118.65,88022.48,33530.37,41.17,47524.63,47493.52,31.11,0.0,conventional,2015,StLouis +46,2015-02-08,1.09,214718.99,140791.53,31995.56,48.87,41883.03,41880.81,2.22,0.0,conventional,2015,StLouis +47,2015-02-01,1.1,308371.9,209893.28,48651.4,59.1,49768.12,49768.12,0.0,0.0,conventional,2015,StLouis +48,2015-01-25,1.17,176820.49,99020.78,31381.54,42.62,46375.55,46375.55,0.0,0.0,conventional,2015,StLouis +49,2015-01-18,1.28,170590.85,78724.96,50701.59,145.35,41018.95,41014.51,4.44,0.0,conventional,2015,StLouis +50,2015-01-11,1.29,164917.61,79292.59,41050.38,62.72,44511.92,44509.7,2.22,0.0,conventional,2015,StLouis +51,2015-01-04,1.15,198735.26,125713.89,34555.73,53.54,38412.1,38400.99,11.11,0.0,conventional,2015,StLouis +0,2015-12-27,1.36,42344.22,828.65,23560.51,14.41,17940.65,17940.65,0.0,0.0,conventional,2015,Syracuse +1,2015-12-20,1.36,39365.15,646.68,22231.33,12.89,16474.25,16474.25,0.0,0.0,conventional,2015,Syracuse +2,2015-12-13,1.32,50384.57,773.81,33149.83,5.7,16455.23,16455.23,0.0,0.0,conventional,2015,Syracuse +3,2015-12-06,1.17,50632.73,874.9,34439.57,11.91,15306.35,15306.35,0.0,0.0,conventional,2015,Syracuse +4,2015-11-29,1.41,35852.68,719.36,21285.35,8.89,13839.08,13839.08,0.0,0.0,conventional,2015,Syracuse +5,2015-11-22,1.38,39100.45,846.69,22314.4,34.38,15904.98,15904.98,0.0,0.0,conventional,2015,Syracuse +6,2015-11-15,1.21,51725.93,912.37,34236.71,20.94,16555.91,16364.8,191.11,0.0,conventional,2015,Syracuse +7,2015-11-08,1.23,55560.09,645.86,37788.65,12.84,17112.74,16690.52,422.22,0.0,conventional,2015,Syracuse +8,2015-11-01,1.16,55095.62,1062.84,36281.55,29.66,17721.57,17374.9,346.67,0.0,conventional,2015,Syracuse +9,2015-10-25,1.26,48971.6,935.77,30448.48,18.45,17568.9,16893.34,675.56,0.0,conventional,2015,Syracuse +10,2015-10-18,1.26,48655.18,748.89,28155.56,21.65,19729.08,19364.64,364.44,0.0,conventional,2015,Syracuse +11,2015-10-11,1.32,45170.5,1054.4,27690.82,26.06,16399.22,15861.44,537.78,0.0,conventional,2015,Syracuse +12,2015-10-04,1.34,41904.06,1777.42,22698.79,10.41,17417.44,16884.11,533.33,0.0,conventional,2015,Syracuse +13,2015-09-27,1.16,54194.93,925.8,43139.43,19.65,10110.05,9981.16,128.89,0.0,conventional,2015,Syracuse +14,2015-09-20,1.44,37045.75,775.55,27299.15,29.82,8941.23,8492.34,448.89,0.0,conventional,2015,Syracuse +15,2015-09-13,1.44,43060.6,882.3,30696.69,45.47,11436.14,10960.58,475.56,0.0,conventional,2015,Syracuse +16,2015-09-06,1.36,48358.73,675.27,37504.92,97.12,10081.42,10081.42,0.0,0.0,conventional,2015,Syracuse +17,2015-08-30,1.2,53699.67,601.15,43932.05,102.42,9064.05,9064.05,0.0,0.0,conventional,2015,Syracuse +18,2015-08-23,1.44,42933.81,579.09,30616.05,77.91,11660.76,11660.76,0.0,0.0,conventional,2015,Syracuse +19,2015-08-16,1.42,44245.45,619.41,32282.72,82.0,11261.32,11261.32,0.0,0.0,conventional,2015,Syracuse +20,2015-08-09,1.35,51094.98,510.89,39597.11,127.27,10859.71,10859.71,0.0,0.0,conventional,2015,Syracuse +21,2015-08-02,1.48,41000.44,722.58,26661.77,219.89,13396.2,13396.2,0.0,0.0,conventional,2015,Syracuse +22,2015-07-26,1.23,59947.27,878.02,41541.46,334.92,17192.87,17192.87,0.0,0.0,conventional,2015,Syracuse +23,2015-07-19,1.38,59427.83,593.22,34449.87,1027.97,23356.77,23356.77,0.0,0.0,conventional,2015,Syracuse +24,2015-07-12,1.25,75144.87,577.45,43147.8,2809.38,28610.24,28512.46,97.78,0.0,conventional,2015,Syracuse +25,2015-07-05,1.45,68922.42,797.75,35080.61,3980.63,29063.43,28845.65,217.78,0.0,conventional,2015,Syracuse +26,2015-06-28,1.39,63938.81,755.7,30246.27,2965.17,29971.67,29940.56,31.11,0.0,conventional,2015,Syracuse +27,2015-06-21,1.4,60370.27,624.44,32511.25,3173.19,24061.39,24061.39,0.0,0.0,conventional,2015,Syracuse +28,2015-06-14,1.35,65184.56,547.63,27340.54,2737.16,34559.23,34559.23,0.0,0.0,conventional,2015,Syracuse +29,2015-06-07,1.22,69776.51,632.01,41825.39,31.87,27287.24,27287.24,0.0,0.0,conventional,2015,Syracuse +30,2015-05-31,1.36,64839.58,744.02,34985.62,44.53,29065.41,29065.41,0.0,0.0,conventional,2015,Syracuse +31,2015-05-24,1.35,61584.26,559.81,34572.48,36.29,26415.68,26415.68,0.0,0.0,conventional,2015,Syracuse +32,2015-05-17,1.44,69649.85,743.44,42174.14,39.09,26693.18,26524.29,168.89,0.0,conventional,2015,Syracuse +33,2015-05-10,1.34,78708.38,899.13,44891.19,24.6,32893.46,32561.81,331.65,0.0,conventional,2015,Syracuse +34,2015-05-03,1.4,50591.38,634.61,24201.46,18.81,25736.5,25405.7,330.8,0.0,conventional,2015,Syracuse +35,2015-04-26,1.4,48811.05,768.09,23424.19,19.39,24599.38,24363.82,235.56,0.0,conventional,2015,Syracuse +36,2015-04-19,1.4,52800.83,721.11,24884.63,49.37,27145.72,27009.47,136.25,0.0,conventional,2015,Syracuse +37,2015-04-12,1.36,46828.88,670.17,21961.57,26.37,24170.77,23944.66,226.11,0.0,conventional,2015,Syracuse +38,2015-04-05,1.38,50015.81,716.97,24675.99,20.46,24602.39,24340.17,262.22,0.0,conventional,2015,Syracuse +39,2015-03-29,1.29,52419.71,1020.84,28858.3,42.67,22497.9,22377.48,120.42,0.0,conventional,2015,Syracuse +40,2015-03-22,1.33,48180.98,2030.41,21884.43,43.48,24222.66,24222.66,0.0,0.0,conventional,2015,Syracuse +41,2015-03-15,1.36,42078.58,2534.42,20482.33,18.86,19042.97,19020.75,22.22,0.0,conventional,2015,Syracuse +42,2015-03-08,1.28,46199.2,796.52,23821.37,25.35,21555.96,21318.18,237.78,0.0,conventional,2015,Syracuse +43,2015-03-01,1.32,47890.09,728.61,22776.67,53.84,24330.97,24277.64,53.33,0.0,conventional,2015,Syracuse +44,2015-02-22,1.33,42662.65,1098.61,21441.05,41.7,20081.29,19816.85,264.44,0.0,conventional,2015,Syracuse +45,2015-02-15,1.35,38750.74,880.54,19621.76,7.48,18240.96,18118.74,122.22,0.0,conventional,2015,Syracuse +46,2015-02-08,1.25,51557.01,1093.76,26366.48,14.2,24082.57,23658.13,424.44,0.0,conventional,2015,Syracuse +47,2015-02-01,1.26,57424.15,1321.47,30243.88,14.24,25844.56,25793.45,51.11,0.0,conventional,2015,Syracuse +48,2015-01-25,1.37,44517.84,810.15,22526.2,36.39,21145.1,20725.1,420.0,0.0,conventional,2015,Syracuse +49,2015-01-18,1.4,40391.55,789.84,24755.46,27.89,14818.36,14818.36,0.0,0.0,conventional,2015,Syracuse +50,2015-01-11,1.45,42017.49,984.29,21576.29,14.93,19441.98,19441.98,0.0,0.0,conventional,2015,Syracuse +51,2015-01-04,1.33,41143.51,2506.61,20905.01,16.68,17715.21,17715.21,0.0,0.0,conventional,2015,Syracuse +0,2015-12-27,0.97,376187.98,246326.83,35652.12,56.54,94152.49,55850.56,38301.93,0.0,conventional,2015,Tampa +1,2015-12-20,1.15,238950.84,146376.83,23810.77,33.84,68729.4,50715.84,18013.56,0.0,conventional,2015,Tampa +2,2015-12-13,0.96,365643.92,242293.88,40944.16,52.15,82353.73,42015.01,40338.72,0.0,conventional,2015,Tampa +3,2015-12-06,1.17,227131.21,145404.19,29926.02,43.83,51757.17,33251.65,18505.52,0.0,conventional,2015,Tampa +4,2015-11-29,0.96,330060.95,213390.26,41026.86,18.37,75625.46,36785.63,38839.83,0.0,conventional,2015,Tampa +5,2015-11-22,0.97,311784.91,194667.16,39338.15,57.68,77721.92,46934.42,30787.5,0.0,conventional,2015,Tampa +6,2015-11-15,1.22,236178.67,138482.7,32425.9,51.52,65218.55,43524.24,21691.49,2.82,conventional,2015,Tampa +7,2015-11-08,1.21,228585.31,135741.88,33351.68,40.46,59451.29,40754.56,18696.73,0.0,conventional,2015,Tampa +8,2015-11-01,0.97,391514.43,228324.13,72749.38,100.62,90340.3,44449.47,45890.83,0.0,conventional,2015,Tampa +9,2015-10-25,1.12,234023.9,109048.96,51940.14,43.18,72991.62,35990.35,36998.43,2.84,conventional,2015,Tampa +10,2015-10-18,1.11,256610.0,112096.12,54378.07,42.22,90093.59,49373.24,40703.27,17.08,conventional,2015,Tampa +11,2015-10-11,0.88,402228.35,175545.51,90767.27,80.58,135834.99,47783.02,88049.12,2.85,conventional,2015,Tampa +12,2015-10-04,0.89,413839.96,184069.95,92366.74,106.53,137296.74,52595.05,84698.84,2.85,conventional,2015,Tampa +13,2015-09-27,1.13,252128.43,99077.59,70565.14,99.97,82385.73,42717.37,39668.36,0.0,conventional,2015,Tampa +14,2015-09-20,0.88,432962.29,186843.91,104344.66,88.0,141685.72,50247.33,91438.39,0.0,conventional,2015,Tampa +15,2015-09-13,1.1,257374.81,97653.71,69978.38,102.06,89640.66,50111.01,39529.65,0.0,conventional,2015,Tampa +16,2015-09-06,0.91,436528.94,205188.66,94841.92,63.26,136435.1,60131.29,76303.81,0.0,conventional,2015,Tampa +17,2015-08-30,1.2,262575.33,126060.57,53665.74,149.12,82699.9,64691.49,17980.34,28.07,conventional,2015,Tampa +18,2015-08-23,1.17,264170.2,126817.4,54873.96,66.95,82411.89,66986.23,15425.66,0.0,conventional,2015,Tampa +19,2015-08-16,1.17,283647.52,139923.45,50157.8,66.42,93499.85,75599.35,17900.5,0.0,conventional,2015,Tampa +20,2015-08-09,0.97,427229.44,257930.36,58043.78,161.33,111093.97,75694.1,35397.12,2.75,conventional,2015,Tampa +21,2015-08-02,1.18,274423.66,139950.79,50642.05,170.4,83660.42,68312.39,15348.03,0.0,conventional,2015,Tampa +22,2015-07-26,1.16,265367.52,133615.12,48153.33,115.96,83483.11,67480.1,16003.01,0.0,conventional,2015,Tampa +23,2015-07-19,0.97,421574.42,258972.92,61716.04,138.6,100746.86,64830.87,35915.99,0.0,conventional,2015,Tampa +24,2015-07-12,1.17,289138.36,149510.03,54927.82,100.6,84599.91,68163.21,16139.48,297.22,conventional,2015,Tampa +25,2015-07-05,0.95,482088.56,282433.1,71003.58,163.96,128487.92,91543.31,36939.3,5.31,conventional,2015,Tampa +26,2015-06-28,1.11,325434.49,157030.05,56095.25,108.06,112201.13,94295.35,17905.78,0.0,conventional,2015,Tampa +27,2015-06-21,0.95,438581.5,262821.95,58036.49,773.09,116949.97,80513.03,36436.94,0.0,conventional,2015,Tampa +28,2015-06-14,1.17,294964.3,152836.19,39330.6,2087.35,100710.16,82324.41,18385.75,0.0,conventional,2015,Tampa +29,2015-06-07,0.97,433152.31,295793.0,35164.49,467.96,101726.86,65864.81,35862.05,0.0,conventional,2015,Tampa +30,2015-05-31,1.22,273609.96,181641.14,18121.91,203.98,73642.93,57879.61,15763.32,0.0,conventional,2015,Tampa +31,2015-05-24,0.99,460041.38,331416.4,30794.75,279.94,97550.29,58346.93,39203.36,0.0,conventional,2015,Tampa +32,2015-05-17,1.18,275260.08,182281.62,18249.86,79.99,74648.61,58505.85,16142.76,0.0,conventional,2015,Tampa +33,2015-05-10,1.21,287068.69,197831.01,20278.37,88.47,68870.84,53035.85,15834.99,0.0,conventional,2015,Tampa +34,2015-05-03,0.97,558113.22,401968.96,37800.63,164.47,118179.16,62416.87,55151.18,611.11,conventional,2015,Tampa +35,2015-04-26,1.19,304135.67,203078.44,19757.32,118.14,81181.77,60977.02,19915.86,288.89,conventional,2015,Tampa +36,2015-04-19,1.16,280464.73,182582.22,19553.08,138.42,78191.01,56279.47,21911.54,0.0,conventional,2015,Tampa +37,2015-04-12,0.99,425033.14,304622.85,30735.77,170.44,89504.08,46251.46,43252.62,0.0,conventional,2015,Tampa +38,2015-04-05,1.09,354134.22,242307.65,26336.27,193.86,85296.44,51105.07,34191.37,0.0,conventional,2015,Tampa +39,2015-03-29,1.2,254520.54,169276.36,18562.0,94.15,66588.03,45155.64,21432.39,0.0,conventional,2015,Tampa +40,2015-03-22,0.97,440106.92,310473.4,32912.35,105.17,96616.0,55623.32,40992.68,0.0,conventional,2015,Tampa +41,2015-03-15,1.25,257172.84,173099.66,19983.36,62.96,64026.86,46495.52,17531.34,0.0,conventional,2015,Tampa +42,2015-03-08,1.22,259317.73,166383.8,19097.27,68.37,73768.29,55747.85,18020.44,0.0,conventional,2015,Tampa +43,2015-03-01,1.0,373461.94,258084.33,27867.24,38.19,87472.18,50762.76,36709.42,0.0,conventional,2015,Tampa +44,2015-02-22,1.12,268415.49,167595.76,22043.38,39.19,78737.16,62198.85,16538.31,0.0,conventional,2015,Tampa +45,2015-02-15,1.21,242478.65,154111.87,20647.04,56.4,67663.34,34123.19,33540.15,0.0,conventional,2015,Tampa +46,2015-02-08,1.19,236434.37,155193.87,21932.31,59.0,59249.19,25516.89,33732.3,0.0,conventional,2015,Tampa +47,2015-02-01,0.92,562242.53,392037.18,53180.28,79.96,116945.11,50530.52,66414.59,0.0,conventional,2015,Tampa +48,2015-01-25,1.21,260471.23,161291.0,30244.52,40.52,68895.19,30325.33,38569.86,0.0,conventional,2015,Tampa +49,2015-01-18,1.27,228920.62,132142.6,33674.07,37.38,63066.57,25006.34,38060.23,0.0,conventional,2015,Tampa +50,2015-01-11,1.24,235231.08,142237.71,36017.93,56.25,56919.19,19605.39,37313.8,0.0,conventional,2015,Tampa +51,2015-01-04,0.97,339909.13,226346.7,37517.53,53.15,75991.75,33447.51,42544.24,0.0,conventional,2015,Tampa +0,2015-12-27,0.95,27297983.67,9626901.09,10197890.05,1184340.09,6288852.44,4850404.09,1252626.31,185822.04,conventional,2015,TotalUS +1,2015-12-20,0.98,25083647.17,8710021.76,9329861.85,1201020.01,5842743.55,4618389.66,1025048.77,199305.12,conventional,2015,TotalUS +2,2015-12-13,0.93,28041335.38,9855053.66,10805838.91,1016163.17,6364279.64,4964462.13,1371440.28,28377.23,conventional,2015,TotalUS +3,2015-12-06,0.89,28800396.57,9405464.36,12160838.62,931830.63,6302262.96,5005077.36,1233956.21,63229.39,conventional,2015,TotalUS +4,2015-11-29,0.99,22617999.38,8094803.56,9003178.41,731008.41,4789009.0,3901953.04,856560.34,30495.62,conventional,2015,TotalUS +5,2015-11-22,0.96,25114228.11,8571849.8,10389879.59,804662.83,5347835.89,4178583.45,1137229.84,32022.6,conventional,2015,TotalUS +6,2015-11-15,0.92,28597756.27,9907981.27,11699787.51,815641.54,6174345.95,4854619.04,1283546.73,36180.18,conventional,2015,TotalUS +7,2015-11-08,0.97,28485715.97,9991330.31,12199657.4,1143214.59,5151513.67,4058500.97,1027701.97,65310.73,conventional,2015,TotalUS +8,2015-11-01,0.97,31047484.27,10138703.85,14229286.82,1410928.18,5268565.42,3966597.25,1246220.37,55747.8,conventional,2015,TotalUS +9,2015-10-25,1.04,26240072.11,8683958.8,11410478.34,1188118.95,4957516.02,3918658.43,999727.7,39129.89,conventional,2015,TotalUS +10,2015-10-18,0.99,29375123.6,9162094.14,14082539.61,1220251.19,4910238.66,3930198.18,952191.42,27849.06,conventional,2015,TotalUS +11,2015-10-11,1.0,29216198.15,8828340.53,13326573.45,1614282.73,5447001.44,4153477.6,1221305.29,72218.55,conventional,2015,TotalUS +12,2015-10-04,1.02,28243505.52,8353619.97,13775651.69,1209045.07,4905188.79,3664890.84,1189350.26,50947.69,conventional,2015,TotalUS +13,2015-09-27,1.03,27753508.14,8454208.8,13819912.63,1061979.37,4417407.34,3476492.68,886423.93,54490.73,conventional,2015,TotalUS +14,2015-09-20,1.02,29569086.56,9422275.27,13846044.56,1112405.42,5188361.31,3938274.51,1183732.08,66354.72,conventional,2015,TotalUS +15,2015-09-13,1.03,31245835.65,9875018.48,14888077.69,1118988.92,5363750.56,4072661.53,1226810.47,64278.56,conventional,2015,TotalUS +16,2015-09-06,1.02,33526480.08,12569277.14,14245598.38,1129771.19,5581833.37,4363707.93,1184888.95,33236.49,conventional,2015,TotalUS +17,2015-08-30,1.07,29761638.48,11650976.87,11995960.83,1060352.53,5054348.25,4316352.47,685816.37,52179.41,conventional,2015,TotalUS +18,2015-08-23,1.08,29699845.61,11283021.31,12551529.7,909284.22,4956010.38,4318010.6,612362.43,25637.35,conventional,2015,TotalUS +19,2015-08-16,1.05,31936856.18,12680252.48,12998327.25,1143364.58,5114911.87,4342839.06,703542.1,68530.71,conventional,2015,TotalUS +20,2015-08-09,1.05,33254911.87,13003371.07,13926692.62,1014520.88,5310327.3,4391461.66,888237.91,30627.73,conventional,2015,TotalUS +21,2015-08-02,1.09,30358467.88,12115233.76,12219014.12,984702.75,5039517.25,4322985.19,689175.8,27356.26,conventional,2015,TotalUS +22,2015-07-26,1.07,30652211.08,12196225.93,12009228.05,1017157.74,5429599.36,4627251.87,779807.55,22539.94,conventional,2015,TotalUS +23,2015-07-19,1.07,32324647.66,12742760.17,12605457.17,1154897.34,5821532.98,4757798.96,1013834.06,49899.96,conventional,2015,TotalUS +24,2015-07-12,1.07,31660031.68,12384449.4,12403360.2,980361.75,5891860.33,5067198.34,796786.14,27875.85,conventional,2015,TotalUS +25,2015-07-05,1.04,37943670.34,15643939.37,14213650.06,1342465.95,6743614.96,5803954.33,905204.55,34456.08,conventional,2015,TotalUS +26,2015-06-28,1.06,32408705.7,13299568.71,11505999.24,1045832.54,6557305.21,5690216.31,846752.4,20336.5,conventional,2015,TotalUS +27,2015-06-21,1.02,35734613.9,14699604.93,13244466.6,1326422.56,6464119.81,5517909.51,898027.46,48182.84,conventional,2015,TotalUS +28,2015-06-14,0.98,37026085.75,16383685.07,12821015.03,1085081.61,6736304.04,5893641.72,822399.78,20262.54,conventional,2015,TotalUS +29,2015-06-07,1.0,36549995.66,16529797.6,12582265.21,1144715.95,6293216.9,5304562.91,943995.95,44658.04,conventional,2015,TotalUS +30,2015-05-31,1.03,33720159.09,15503613.33,11599634.02,903908.35,5713003.39,4967231.63,726046.25,19725.51,conventional,2015,TotalUS +31,2015-05-24,1.04,35344183.15,16000107.8,12513821.19,899779.92,5930474.24,5094263.38,815628.55,20582.31,conventional,2015,TotalUS +32,2015-05-17,1.06,32027686.15,14615941.59,11003341.22,963549.53,5444853.81,4747544.74,660983.55,36325.52,conventional,2015,TotalUS +33,2015-05-10,1.02,36400886.58,16215328.75,13509064.65,858145.45,5818347.73,4991625.82,816629.4,10092.51,conventional,2015,TotalUS +34,2015-05-03,0.96,41291704.39,17787611.93,16602589.04,1118329.5,5783173.92,4647155.48,1110987.23,25031.21,conventional,2015,TotalUS +35,2015-04-26,1.07,30894157.8,13833715.28,10867403.08,889732.2,5303307.24,4584203.44,687179.4,31924.4,conventional,2015,TotalUS +36,2015-04-19,1.03,33091256.26,14251319.31,12277858.78,1016631.26,5545446.91,4696224.79,819935.17,29286.95,conventional,2015,TotalUS +37,2015-04-12,1.02,32046401.64,14793354.18,11210544.11,807942.41,5234560.94,4400469.38,826567.05,7524.51,conventional,2015,TotalUS +38,2015-04-05,1.06,31500669.44,13939014.43,11526980.36,871981.29,5162693.36,4477299.71,666514.74,18878.91,conventional,2015,TotalUS +39,2015-03-29,1.04,29982648.43,12524637.04,11541041.35,811272.88,5105697.16,4487886.76,610349.2,7461.2,conventional,2015,TotalUS +40,2015-03-22,1.01,32513550.51,13697405.61,12659784.83,1066385.92,5089974.15,4275071.46,762527.54,52375.15,conventional,2015,TotalUS +41,2015-03-15,1.04,29572225.71,13149988.71,10634070.76,871575.04,4916591.2,4287621.56,614904.92,14064.72,conventional,2015,TotalUS +42,2015-03-08,1.02,30094698.85,13013750.35,10973972.6,834009.15,5272966.75,4583726.82,673149.42,16090.51,conventional,2015,TotalUS +43,2015-03-01,0.97,32994014.16,13282222.98,13733124.48,1070576.07,4908090.63,4129138.63,725218.35,53733.65,conventional,2015,TotalUS +44,2015-02-22,1.02,29936729.76,12628562.36,11354281.64,937138.85,5016746.91,4336247.12,667149.29,13350.5,conventional,2015,TotalUS +45,2015-02-15,1.03,28012520.93,12626615.3,9783489.59,845653.52,4756762.52,4096226.46,648632.0,11904.06,conventional,2015,TotalUS +46,2015-02-08,0.95,32137333.01,13308193.4,13381347.54,737939.45,4709852.62,4022474.85,673453.54,13924.23,conventional,2015,TotalUS +47,2015-02-01,0.89,44655461.51,18933038.04,18956479.74,1381516.11,5384427.62,4216452.03,1121076.47,46899.12,conventional,2015,TotalUS +48,2015-01-25,1.04,28470310.84,12167445.03,10734652.82,768020.05,4800192.94,3978636.9,812924.73,8631.31,conventional,2015,TotalUS +49,2015-01-18,1.03,29043458.85,11858139.34,11701947.8,831301.9,4652069.81,3873041.26,771093.2,7935.35,conventional,2015,TotalUS +50,2015-01-11,1.01,29063542.75,11544810.53,12134773.38,866574.66,4517384.18,3783261.16,718333.87,15789.15,conventional,2015,TotalUS +51,2015-01-04,0.95,31324277.73,12357161.34,13624083.05,844093.32,4498940.02,3585321.58,894945.63,18672.81,conventional,2015,TotalUS +0,2015-12-27,0.83,5291979.63,2038443.68,1717599.45,125254.82,1410681.68,838267.79,567269.76,5144.13,conventional,2015,West +1,2015-12-20,0.88,4737649.03,2017331.24,1314711.0,130849.6,1274757.19,843691.13,417746.45,13319.61,conventional,2015,West +2,2015-12-13,0.85,4899439.92,1798995.46,1596329.01,134101.62,1370013.83,851506.76,517936.19,570.88,conventional,2015,West +3,2015-12-06,0.75,6202513.84,2097720.52,2051392.83,107568.34,1945832.15,1360760.83,582846.33,2224.99,conventional,2015,West +4,2015-11-29,0.99,3719603.21,1461861.54,1216811.0,104219.76,936710.91,688674.0,247318.15,718.76,conventional,2015,West +5,2015-11-22,0.92,4481990.34,1549012.12,1588339.47,118170.98,1226467.77,730580.48,494585.14,1302.15,conventional,2015,West +6,2015-11-15,0.83,5972493.77,1996852.58,2060439.93,122763.34,1792437.92,1080985.7,699956.7,11495.52,conventional,2015,West +7,2015-11-08,0.88,5094837.54,2204338.57,1668416.99,107753.58,1114328.4,770544.02,341544.79,2239.59,conventional,2015,West +8,2015-11-01,0.9,5024858.14,1815066.15,1937479.91,132883.59,1139428.49,717110.41,421675.08,643.0,conventional,2015,West +9,2015-10-25,0.95,4945835.54,1574344.01,1990844.8,134572.92,1246073.81,823727.52,420764.79,1581.5,conventional,2015,West +10,2015-10-18,0.89,5413532.64,2012887.19,2170792.82,110348.57,1119504.06,689893.69,429405.37,205.0,conventional,2015,West +11,2015-10-11,0.91,5534450.99,1287965.79,2714363.53,178042.28,1354079.39,947888.97,402360.11,3830.31,conventional,2015,West +12,2015-10-04,1.0,4895485.63,1369449.86,2378441.26,179192.02,968402.49,630337.33,336994.14,1071.02,conventional,2015,West +13,2015-09-27,0.97,4792868.29,1601971.34,2116029.65,98925.79,975941.51,669128.89,306758.91,53.71,conventional,2015,West +14,2015-09-20,0.92,5596091.03,1552161.89,2825876.79,124207.93,1093844.42,751408.06,342166.04,270.32,conventional,2015,West +15,2015-09-13,0.92,5811260.29,2194373.38,2317428.16,136996.39,1162462.36,733843.93,428556.23,62.2,conventional,2015,West +16,2015-09-06,0.93,5900751.95,2682938.17,2086229.79,124722.73,1006861.26,696240.23,310568.88,52.15,conventional,2015,West +17,2015-08-30,1.03,5138256.91,2163511.05,1986059.01,124657.84,864029.01,624782.63,239195.91,50.47,conventional,2015,West +18,2015-08-23,1.04,5197578.46,2160130.08,2054710.68,107786.51,874951.19,709163.29,165723.93,63.97,conventional,2015,West +19,2015-08-16,0.98,5718139.41,2640927.73,2027603.38,123334.73,926273.57,685992.88,240262.17,18.52,conventional,2015,West +20,2015-08-09,1.01,5531488.2,2368531.2,2068854.19,135407.7,958695.11,667604.38,291065.47,25.26,conventional,2015,West +21,2015-08-02,1.02,5451040.76,2470116.49,1962853.58,120434.79,897635.9,643461.37,254166.11,8.42,conventional,2015,West +22,2015-07-26,1.07,5126588.84,2293111.63,1776143.49,146112.77,911220.95,645013.13,266207.82,0.0,conventional,2015,West +23,2015-07-19,1.04,5525298.95,2337242.49,2065939.21,113523.76,1008593.49,665157.51,343389.61,46.37,conventional,2015,West +24,2015-07-12,1.01,5791508.96,2688406.31,1950436.22,133097.0,1019569.43,731843.74,286270.91,1454.78,conventional,2015,West +25,2015-07-05,0.98,6749081.2,3328637.8,2304907.45,155862.52,959673.43,767183.44,192422.82,67.17,conventional,2015,West +26,2015-06-28,1.03,5617752.22,2686203.38,1907834.16,123261.81,900452.87,719727.54,180618.1,107.23,conventional,2015,West +27,2015-06-21,0.93,6478952.08,3062753.54,2299962.02,138621.26,977615.26,807805.78,167640.78,2168.7,conventional,2015,West +28,2015-06-14,0.92,6760001.68,3239258.39,2416002.43,112965.22,991775.64,776961.13,214729.56,84.95,conventional,2015,West +29,2015-06-07,0.92,6669221.29,3451592.61,2145071.52,119829.5,952727.66,683695.78,269005.35,26.53,conventional,2015,West +30,2015-05-31,0.93,5874982.36,3094129.71,1835735.0,129139.05,815978.6,665541.84,150400.52,36.24,conventional,2015,West +31,2015-05-24,0.93,6139159.81,3206247.81,2036656.12,120398.95,775856.93,678849.33,96785.62,221.98,conventional,2015,West +32,2015-05-17,0.98,5338992.15,2786200.82,1654563.98,108561.0,789666.35,608751.49,180702.04,212.82,conventional,2015,West +33,2015-05-10,0.94,6323724.8,3050014.63,2260890.88,115290.95,897528.34,678316.72,218968.93,242.69,conventional,2015,West +34,2015-05-03,0.89,6937095.53,3115937.71,2917083.83,104932.26,799141.73,611906.54,186891.82,343.37,conventional,2015,West +35,2015-04-26,0.9,6013312.36,3163353.08,2021745.62,79259.0,748954.66,614556.77,133326.4,1071.49,conventional,2015,West +36,2015-04-19,0.88,6612422.28,3118686.39,2557271.66,87250.83,849213.4,608287.23,240723.48,202.69,conventional,2015,West +37,2015-04-12,0.98,5609471.36,2561865.42,2267855.21,103110.58,676640.15,469624.9,206981.28,33.97,conventional,2015,West +38,2015-04-05,0.95,5929718.67,3132031.4,2022524.08,93055.21,682107.98,544939.22,135414.81,1753.95,conventional,2015,West +39,2015-03-29,0.93,5719898.26,2978534.92,2012384.12,89701.26,639277.96,508576.86,130691.45,9.65,conventional,2015,West +40,2015-03-22,0.99,5368331.44,2511453.54,2163704.41,101626.05,591547.44,515038.9,76495.68,12.86,conventional,2015,West +41,2015-03-15,0.94,5572582.45,3034104.48,1829868.35,85831.16,622778.46,535269.21,87496.38,12.87,conventional,2015,West +42,2015-03-08,0.99,5382693.51,2541409.9,2120111.56,98092.96,623079.09,524272.88,98774.76,31.45,conventional,2015,West +43,2015-03-01,0.95,5840742.83,2221447.89,2822864.41,110088.02,686342.51,590705.71,95603.25,33.55,conventional,2015,West +44,2015-02-22,0.95,5939402.98,2444851.21,2650986.14,79181.93,764383.7,587462.99,176871.66,49.05,conventional,2015,West +45,2015-02-15,0.98,5026688.71,2483265.25,1840716.14,91125.41,611581.91,542973.12,68521.88,86.91,conventional,2015,West +46,2015-02-08,0.89,5949846.14,2749122.29,2418817.0,76305.42,705601.43,579412.5,126120.73,68.2,conventional,2015,West +47,2015-02-01,0.84,8362504.08,3531350.44,3872672.0,80893.53,877588.11,705333.64,172154.91,99.56,conventional,2015,West +48,2015-01-25,0.94,5461313.9,2695157.56,2031937.97,71550.57,662667.8,521877.7,140735.66,54.44,conventional,2015,West +49,2015-01-18,0.96,5475363.01,2431736.63,2258069.63,76348.13,709208.62,527358.78,181809.88,39.96,conventional,2015,West +50,2015-01-11,0.95,5333097.71,2203111.92,2292761.26,127412.09,709812.44,598705.08,111073.82,33.54,conventional,2015,West +51,2015-01-04,0.89,5794410.58,2275446.87,2582300.65,97024.09,839638.97,688813.01,150819.57,6.39,conventional,2015,West +0,2015-12-27,0.71,776404.39,451904.51,141599.36,15486.97,167413.55,123158.22,33065.33,11190.0,conventional,2015,WestTexNewMexico +1,2015-12-20,0.83,649885.76,389110.55,108176.29,12953.59,139645.33,90392.86,23535.8,25716.67,conventional,2015,WestTexNewMexico +2,2015-12-13,0.78,646041.56,437780.91,100110.13,13576.25,94574.27,83053.1,10947.84,573.33,conventional,2015,WestTexNewMexico +3,2015-12-06,0.74,623231.77,398871.12,133434.18,21088.12,69838.35,68233.56,1604.79,0.0,conventional,2015,WestTexNewMexico +4,2015-11-29,0.81,519028.45,335446.83,103635.94,11463.06,68482.62,67264.73,1217.89,0.0,conventional,2015,WestTexNewMexico +5,2015-11-22,0.78,615077.36,403133.14,122078.09,12008.93,77857.2,74953.33,2903.87,0.0,conventional,2015,WestTexNewMexico +6,2015-11-15,0.71,732695.38,483180.55,155778.7,12780.68,80955.45,77112.29,3843.16,0.0,conventional,2015,WestTexNewMexico +7,2015-11-08,0.76,661405.9,445281.03,123745.68,11968.0,80411.19,79009.15,1402.04,0.0,conventional,2015,WestTexNewMexico +8,2015-11-01,0.8,592115.57,350881.82,131576.51,32802.6,76854.64,75700.11,1154.53,0.0,conventional,2015,WestTexNewMexico +9,2015-10-25,0.82,635873.6,363487.08,166607.85,31960.04,73818.63,72717.86,1100.77,0.0,conventional,2015,WestTexNewMexico +10,2015-10-18,0.81,681501.3,409639.87,177573.02,15805.79,78482.62,77611.2,871.42,0.0,conventional,2015,WestTexNewMexico +11,2015-10-11,0.89,638486.47,268061.13,258518.68,31027.33,80879.33,79841.99,1037.34,0.0,conventional,2015,WestTexNewMexico +12,2015-10-04,0.85,649050.15,240183.49,317701.12,16661.98,74503.56,72761.14,1742.42,0.0,conventional,2015,WestTexNewMexico +13,2015-09-27,0.79,714977.26,255897.91,376232.89,12988.42,69858.04,68312.62,1545.42,0.0,conventional,2015,WestTexNewMexico +14,2015-09-20,0.78,746249.98,289135.19,352998.81,14247.44,89868.54,78779.54,11089.0,0.0,conventional,2015,WestTexNewMexico +15,2015-09-13,0.75,829727.75,341728.32,330566.17,26174.67,131258.59,82932.85,48325.74,0.0,conventional,2015,WestTexNewMexico +16,2015-09-06,0.8,790420.66,487551.38,183612.44,16170.57,103086.27,91173.4,11912.87,0.0,conventional,2015,WestTexNewMexico +17,2015-08-30,0.82,750669.14,518203.31,136374.37,16298.54,79792.92,78731.42,1061.5,0.0,conventional,2015,WestTexNewMexico +18,2015-08-23,0.8,740213.87,535570.33,100108.86,13332.23,91202.45,87927.36,3275.09,0.0,conventional,2015,WestTexNewMexico +19,2015-08-16,0.77,815638.81,489076.9,154805.84,20866.49,150889.58,125836.94,25052.64,0.0,conventional,2015,WestTexNewMexico +20,2015-08-09,0.74,885883.92,576883.27,154758.26,20222.28,134020.11,100912.13,33107.98,0.0,conventional,2015,WestTexNewMexico +21,2015-08-02,0.79,795371.51,573107.42,94633.45,13662.27,113968.37,95673.46,18294.91,0.0,conventional,2015,WestTexNewMexico +22,2015-07-26,0.81,777883.03,542663.64,96112.02,25086.72,114020.65,97555.49,16465.16,0.0,conventional,2015,WestTexNewMexico +23,2015-07-19,0.76,803340.22,552839.76,101243.9,16066.56,133190.0,115237.5,17952.5,0.0,conventional,2015,WestTexNewMexico +24,2015-07-12,0.77,754672.44,515150.21,100148.7,16185.82,123187.71,107273.37,15914.34,0.0,conventional,2015,WestTexNewMexico +25,2015-07-05,0.78,913360.72,606650.91,123465.83,18233.51,165010.47,146199.35,18811.12,0.0,conventional,2015,WestTexNewMexico +26,2015-06-28,0.71,941135.5,670425.34,108019.8,13077.85,149612.51,130392.24,19220.27,0.0,conventional,2015,WestTexNewMexico +27,2015-06-21,0.74,948942.53,601318.24,158997.23,13455.47,175171.59,148132.78,27038.81,0.0,conventional,2015,WestTexNewMexico +28,2015-06-14,0.7,1035973.14,651120.92,202731.92,13413.05,168707.25,126508.62,42198.63,0.0,conventional,2015,WestTexNewMexico +29,2015-06-07,0.68,1053997.99,750594.5,152736.51,12543.43,138123.55,103719.2,34404.35,0.0,conventional,2015,WestTexNewMexico +30,2015-05-31,0.74,887045.15,626724.73,124037.26,25328.56,110954.6,78423.65,32530.95,0.0,conventional,2015,WestTexNewMexico +31,2015-05-24,0.75,914966.82,692900.55,107964.22,14654.28,99447.77,82335.29,17112.48,0.0,conventional,2015,WestTexNewMexico +32,2015-05-17,0.7,942310.32,721087.66,112070.95,12170.59,96981.12,74460.15,22520.97,0.0,conventional,2015,WestTexNewMexico +33,2015-05-10,0.71,1019160.83,774232.7,128168.65,13889.83,102869.65,79189.32,23680.33,0.0,conventional,2015,WestTexNewMexico +34,2015-05-03,0.74,967144.19,677575.96,166456.05,15065.01,108047.17,80711.69,27335.48,0.0,conventional,2015,WestTexNewMexico +35,2015-04-26,0.74,899632.66,596342.41,174560.73,14468.89,114260.63,80697.34,33563.29,0.0,conventional,2015,WestTexNewMexico +36,2015-04-19,0.7,961001.34,687794.59,154971.84,16243.48,101991.43,76595.17,25396.26,0.0,conventional,2015,WestTexNewMexico +37,2015-04-12,0.76,840314.58,564694.43,167105.74,11290.94,97223.47,71587.33,25636.14,0.0,conventional,2015,WestTexNewMexico +38,2015-04-05,0.76,938880.6,660961.68,163481.6,15530.04,98907.28,91530.77,7376.51,0.0,conventional,2015,WestTexNewMexico +39,2015-03-29,0.74,908323.3,595240.91,199938.3,18570.6,94573.49,88599.82,5973.67,0.0,conventional,2015,WestTexNewMexico +40,2015-03-22,0.85,752576.08,489678.55,157679.62,14084.25,91133.66,89232.98,1900.68,0.0,conventional,2015,WestTexNewMexico +41,2015-03-15,0.75,827795.25,610496.24,115089.7,13114.91,89094.4,86399.27,2695.13,0.0,conventional,2015,WestTexNewMexico +42,2015-03-08,0.73,805731.03,568182.3,137012.17,12344.54,88192.02,85848.21,2343.81,0.0,conventional,2015,WestTexNewMexico +43,2015-03-01,0.84,723488.95,439115.27,167245.85,28226.16,88901.67,86800.97,2100.7,0.0,conventional,2015,WestTexNewMexico +44,2015-02-22,0.85,681409.59,455087.17,121269.48,16470.86,88582.08,86050.77,2531.31,0.0,conventional,2015,WestTexNewMexico +45,2015-02-15,0.78,743066.25,520464.29,133695.54,12099.88,76806.54,73763.41,3043.13,0.0,conventional,2015,WestTexNewMexico +46,2015-02-08,0.72,811664.36,539280.41,175207.31,13717.57,83459.07,81116.25,2342.82,0.0,conventional,2015,WestTexNewMexico +47,2015-02-01,0.71,916367.42,611270.39,205181.23,14107.36,85808.44,82065.7,3742.74,0.0,conventional,2015,WestTexNewMexico +48,2015-01-25,0.8,720800.61,519142.82,124248.86,10573.29,66835.64,65072.69,1762.95,0.0,conventional,2015,WestTexNewMexico +49,2015-01-18,0.8,729795.72,516446.41,128438.87,12473.14,72437.3,71564.22,873.08,0.0,conventional,2015,WestTexNewMexico +50,2015-01-11,0.92,584896.99,347125.63,129717.42,27944.07,80109.87,78503.46,1606.41,0.0,conventional,2015,WestTexNewMexico +51,2015-01-04,0.75,758118.95,426878.87,147958.43,15267.89,168013.76,165202.22,2811.54,0.0,conventional,2015,WestTexNewMexico +0,2016-12-25,1.52,73341.73,3202.39,58280.33,426.92,11432.09,11017.32,411.83,2.94,conventional,2016,Albany +1,2016-12-18,1.53,68938.53,3345.36,55949.79,138.72,9504.66,8876.65,587.73,40.28,conventional,2016,Albany +2,2016-12-11,1.49,71777.85,2323.39,56545.79,86.65,12822.02,12176.75,645.27,0.0,conventional,2016,Albany +3,2016-12-04,1.48,113031.96,6530.78,99746.05,50.84,6704.29,6476.12,228.17,0.0,conventional,2016,Albany +4,2016-11-27,1.52,58171.89,2793.99,47106.18,18.14,8253.58,7973.98,279.6,0.0,conventional,2016,Albany +5,2016-11-20,1.56,70089.51,3675.63,56898.54,11.0,9504.34,9238.4,209.0,56.94,conventional,2016,Albany +6,2016-11-13,1.62,63608.01,3523.63,49837.68,34.0,10212.7,9790.67,422.03,0.0,conventional,2016,Albany +7,2016-11-06,1.63,57178.2,3212.04,43024.32,36.4,10905.44,10474.09,431.35,0.0,conventional,2016,Albany +8,2016-10-30,1.46,58375.1,3187.14,45898.52,54.31,9235.13,9153.12,82.01,0.0,conventional,2016,Albany +9,2016-10-23,1.19,92080.35,4222.93,77537.36,46.0,10274.06,10160.26,113.8,0.0,conventional,2016,Albany +10,2016-10-16,1.4,69060.9,4027.42,54186.55,53.77,10793.16,10434.39,358.77,0.0,conventional,2016,Albany +11,2016-10-09,1.13,101087.84,3641.46,87174.41,102.15,10169.82,9744.41,425.41,0.0,conventional,2016,Albany +12,2016-10-02,1.51,75480.26,4109.22,57515.76,84.08,13771.2,13345.52,425.68,0.0,conventional,2016,Albany +13,2016-09-25,1.62,96853.15,7658.55,79425.81,43.25,9725.54,9586.8,138.74,0.0,conventional,2016,Albany +14,2016-09-18,1.39,79513.63,6624.37,63384.56,37.48,9467.22,8958.14,509.08,0.0,conventional,2016,Albany +15,2016-09-11,1.37,81473.15,6258.88,63511.85,42.26,11660.16,10839.17,815.99,5.0,conventional,2016,Albany +16,2016-09-04,1.44,95456.26,14741.13,64966.75,88.11,15660.27,15340.19,220.08,100.0,conventional,2016,Albany +17,2016-08-28,1.18,145323.22,34912.97,94928.79,53.85,15427.61,14367.64,269.97,790.0,conventional,2016,Albany +18,2016-08-21,1.43,94882.79,14520.36,63416.88,28.03,16917.52,15811.0,286.52,820.0,conventional,2016,Albany +19,2016-08-14,1.2,110528.09,24000.62,72970.23,26.76,13530.48,12434.82,350.1,745.56,conventional,2016,Albany +20,2016-08-07,1.48,99683.11,14670.87,69054.28,10.9,15947.06,14597.2,178.19,1171.67,conventional,2016,Albany +21,2016-07-31,1.61,125586.57,9293.65,96915.41,25.46,19352.05,18803.23,78.82,470.0,conventional,2016,Albany +22,2016-07-24,1.46,98321.14,11580.64,65195.63,13.73,21531.14,18639.29,241.85,2650.0,conventional,2016,Albany +23,2016-07-17,1.31,89228.02,9273.69,64260.69,80.07,15613.57,13439.76,688.81,1485.0,conventional,2016,Albany +24,2016-07-10,1.11,131630.13,20970.24,96581.82,46.49,14031.58,10876.0,470.58,2685.0,conventional,2016,Albany +25,2016-07-03,1.42,115907.61,8373.77,82122.04,146.83,25264.97,21872.64,492.33,2900.0,conventional,2016,Albany +26,2016-06-26,1.5,133086.66,7923.01,106656.84,37.42,18469.39,16479.75,419.64,1570.0,conventional,2016,Albany +27,2016-06-19,1.42,112817.51,6766.63,85374.27,30.07,20646.54,18526.59,389.95,1730.0,conventional,2016,Albany +28,2016-06-12,1.38,111394.5,7531.24,83771.34,81.25,20010.67,18368.49,282.18,1360.0,conventional,2016,Albany +29,2016-06-05,1.47,115857.12,4288.46,92055.75,53.98,19458.93,17385.6,398.33,1675.0,conventional,2016,Albany +30,2016-05-29,1.49,127812.25,2580.77,104876.94,103.64,20250.9,19519.92,180.98,550.0,conventional,2016,Albany +31,2016-05-22,1.34,98863.64,929.07,74678.36,59.07,23197.14,22571.49,20.65,605.0,conventional,2016,Albany +32,2016-05-15,1.36,96924.19,901.65,75847.91,82.97,20091.66,19802.87,288.79,0.0,conventional,2016,Albany +33,2016-05-08,1.27,120194.49,1041.95,96137.78,84.8,22929.96,22697.54,232.42,0.0,conventional,2016,Albany +34,2016-05-01,1.03,173781.78,884.01,163570.47,37.84,9289.46,8918.99,321.86,48.61,conventional,2016,Albany +35,2016-04-24,1.18,102490.2,954.6,87571.23,43.15,13921.22,13463.97,337.81,119.44,conventional,2016,Albany +36,2016-04-17,1.22,86433.63,898.63,70042.6,25.0,15467.4,14642.65,712.25,112.5,conventional,2016,Albany +37,2016-04-10,1.46,70253.3,972.15,56128.98,38.0,13114.17,12671.09,443.08,0.0,conventional,2016,Albany +38,2016-04-03,0.85,81694.23,676.27,70459.66,31.2,10527.1,10058.25,468.85,0.0,conventional,2016,Albany +39,2016-03-27,1.49,92529.27,808.5,78146.18,36.73,13537.86,13037.43,500.43,0.0,conventional,2016,Albany +40,2016-03-20,1.32,110401.88,764.97,97082.4,70.15,12484.36,12286.01,198.35,0.0,conventional,2016,Albany +41,2016-03-13,1.18,108264.9,847.64,96117.13,60.99,11239.14,10817.56,421.58,0.0,conventional,2016,Albany +42,2016-03-06,1.27,90633.66,972.34,74693.31,56.26,14911.75,14476.23,435.52,0.0,conventional,2016,Albany +43,2016-02-28,1.26,87822.43,805.41,72159.95,63.13,14793.94,13739.89,1054.05,0.0,conventional,2016,Albany +44,2016-02-21,1.28,99817.47,869.16,84484.99,24.98,14438.34,12280.58,2157.76,0.0,conventional,2016,Albany +45,2016-02-14,1.13,98008.16,1640.86,77133.01,12.0,19222.29,17663.46,1558.83,0.0,conventional,2016,Albany +46,2016-02-07,1.07,169614.01,2031.67,157271.87,109.88,10200.59,9349.67,850.92,0.0,conventional,2016,Albany +47,2016-01-31,1.16,102038.32,1386.24,79881.67,69.46,20700.95,19788.78,912.17,0.0,conventional,2016,Albany +48,2016-01-24,1.22,96089.13,545.37,70802.56,68.41,24672.79,23926.35,746.44,0.0,conventional,2016,Albany +49,2016-01-17,1.26,119972.41,1202.52,100613.46,51.22,18105.21,17980.53,124.68,0.0,conventional,2016,Albany +50,2016-01-10,1.28,79121.77,848.19,66696.97,109.08,11467.53,11293.65,173.88,0.0,conventional,2016,Albany +51,2016-01-03,1.03,149038.15,939.71,139735.9,132.35,8230.19,8056.43,173.76,0.0,conventional,2016,Albany +0,2016-12-25,0.91,502787.29,205855.78,86015.43,184.62,210731.46,118884.36,91847.1,0.0,conventional,2016,Atlanta +1,2016-12-18,0.94,463483.07,191753.03,80565.05,283.15,190881.84,114872.09,76009.75,0.0,conventional,2016,Atlanta +2,2016-12-11,1.06,422026.71,186343.72,56200.04,171.64,179311.31,112574.78,66736.53,0.0,conventional,2016,Atlanta +3,2016-12-04,1.03,475815.02,210602.15,93414.72,207.15,171591.0,67806.59,103784.41,0.0,conventional,2016,Atlanta +4,2016-11-27,1.22,372144.31,161631.62,55595.26,167.47,154749.96,89194.82,65518.75,36.39,conventional,2016,Atlanta +5,2016-11-20,1.14,448936.04,189206.59,58005.57,167.63,201556.25,128442.19,72236.28,877.78,conventional,2016,Atlanta +6,2016-11-13,1.25,408260.87,185966.29,63348.63,180.57,158765.38,92308.66,66233.39,223.33,conventional,2016,Atlanta +7,2016-11-06,1.29,393826.35,167083.47,65207.61,168.26,161367.01,82410.76,78956.25,0.0,conventional,2016,Atlanta +8,2016-10-30,1.26,408314.87,162367.8,69366.17,160.28,176420.62,94305.34,82115.28,0.0,conventional,2016,Atlanta +9,2016-10-23,1.23,422281.05,171215.14,67824.33,166.14,183075.44,110435.47,72639.97,0.0,conventional,2016,Atlanta +10,2016-10-16,1.16,459564.78,188793.29,82089.21,103.96,188578.32,87593.44,100984.88,0.0,conventional,2016,Atlanta +11,2016-10-09,1.23,452109.18,187260.61,69425.23,156.52,195266.82,95659.91,99113.85,493.06,conventional,2016,Atlanta +12,2016-10-02,1.26,440044.4,182418.33,69411.24,140.88,188073.95,104367.67,83706.28,0.0,conventional,2016,Atlanta +13,2016-09-25,1.26,435756.8,174532.18,77098.81,131.95,183993.86,109841.32,73830.32,322.22,conventional,2016,Atlanta +14,2016-09-18,1.01,527700.95,233800.98,70931.17,132.15,222836.65,139748.72,82907.37,180.56,conventional,2016,Atlanta +15,2016-09-11,0.9,597759.18,286405.76,54347.66,206.41,256799.35,194086.09,62713.26,0.0,conventional,2016,Atlanta +16,2016-09-04,0.89,614657.03,356593.2,55475.65,130.69,202457.49,126235.35,75979.08,243.06,conventional,2016,Atlanta +17,2016-08-28,0.95,539642.66,294240.79,42109.47,123.63,203168.77,132127.4,70394.15,647.22,conventional,2016,Atlanta +18,2016-08-21,0.94,549139.07,293240.47,48349.86,82.91,207465.83,160464.82,47001.01,0.0,conventional,2016,Atlanta +19,2016-08-14,0.87,666493.32,362923.69,60912.98,86.59,242570.06,182840.11,59729.95,0.0,conventional,2016,Atlanta +20,2016-08-07,1.04,508354.34,252171.77,63197.28,58.44,192926.85,131851.39,61075.46,0.0,conventional,2016,Atlanta +21,2016-07-31,0.98,537633.39,232640.52,76301.71,64.96,228626.2,161931.73,66694.47,0.0,conventional,2016,Atlanta +22,2016-07-24,1.0,495686.56,215522.82,92726.36,110.76,187326.62,120773.07,66553.55,0.0,conventional,2016,Atlanta +23,2016-07-17,1.01,474063.61,202638.65,82942.03,164.21,188318.72,108732.19,78958.75,627.78,conventional,2016,Atlanta +24,2016-07-10,0.92,560865.26,240109.35,95457.09,256.2,225042.62,146617.68,78213.83,211.11,conventional,2016,Atlanta +25,2016-07-03,0.77,789398.22,310551.19,150339.87,165.28,328341.88,216115.15,110544.79,1681.94,conventional,2016,Atlanta +26,2016-06-26,0.85,606856.8,272203.41,82764.12,173.96,251715.31,199572.08,52123.23,20.0,conventional,2016,Atlanta +27,2016-06-19,0.78,692767.07,361697.69,96388.12,264.12,234417.14,148946.46,84045.68,1425.0,conventional,2016,Atlanta +28,2016-06-12,0.78,608386.28,313216.34,61563.67,1174.78,232431.49,169986.13,55753.42,6691.94,conventional,2016,Atlanta +29,2016-06-05,0.75,691201.38,341027.59,123405.98,561.72,226206.09,112958.38,105974.65,7273.06,conventional,2016,Atlanta +30,2016-05-29,0.78,691344.07,267460.99,154238.9,246.79,269397.39,77155.12,186791.99,5450.28,conventional,2016,Atlanta +31,2016-05-22,0.79,585351.77,206761.15,110884.32,174.9,267531.4,91575.69,171020.72,4934.99,conventional,2016,Atlanta +32,2016-05-15,0.68,755306.53,292232.77,166131.16,80.12,296862.48,126898.8,169317.09,646.59,conventional,2016,Atlanta +33,2016-05-08,0.81,643699.77,199995.47,159036.97,253.52,284413.81,77087.9,206444.51,881.4,conventional,2016,Atlanta +34,2016-05-01,0.77,735635.49,241665.17,211776.98,54.42,282138.92,64801.33,217337.59,0.0,conventional,2016,Atlanta +35,2016-04-24,0.79,654018.81,233878.1,189043.44,67.42,231029.85,71926.92,158919.6,183.33,conventional,2016,Atlanta +36,2016-04-17,0.89,512348.02,190569.75,124409.16,106.39,197262.72,66461.65,130217.81,583.26,conventional,2016,Atlanta +37,2016-04-10,0.83,590001.82,258662.26,141605.69,432.5,189301.37,69497.05,119037.82,766.5,conventional,2016,Atlanta +38,2016-04-03,1.03,423485.95,253540.83,69327.44,1349.18,99268.5,62657.11,36611.39,0.0,conventional,2016,Atlanta +39,2016-03-27,0.98,458635.34,286918.4,59289.93,1320.02,111106.99,78824.96,32268.42,13.61,conventional,2016,Atlanta +40,2016-03-20,0.98,496190.99,323216.82,61127.51,1727.11,110119.55,75568.52,34551.03,0.0,conventional,2016,Atlanta +41,2016-03-13,0.9,588656.86,336350.73,110105.53,1906.9,140293.7,73593.38,66700.32,0.0,conventional,2016,Atlanta +42,2016-03-06,1.03,458837.18,299983.46,61770.01,1499.4,95584.31,62105.43,33478.88,0.0,conventional,2016,Atlanta +43,2016-02-28,0.9,555470.58,325884.06,106311.73,1136.7,122138.09,60231.13,61906.96,0.0,conventional,2016,Atlanta +44,2016-02-21,1.04,417205.77,270173.33,61591.16,1996.32,83444.96,55736.39,27708.57,0.0,conventional,2016,Atlanta +45,2016-02-14,0.97,481484.29,313342.08,57925.31,1008.13,109208.77,74366.38,34842.39,0.0,conventional,2016,Atlanta +46,2016-02-07,0.76,722211.0,415641.47,134517.41,418.98,171633.14,77183.81,94449.33,0.0,conventional,2016,Atlanta +47,2016-01-31,1.04,437490.64,290451.27,58974.21,412.16,87653.0,54822.3,32830.7,0.0,conventional,2016,Atlanta +48,2016-01-24,0.92,528776.51,318372.94,86816.97,401.33,123185.27,64716.98,58468.29,0.0,conventional,2016,Atlanta +49,2016-01-17,1.04,445089.93,308722.88,45915.91,654.09,89797.05,56526.21,33270.84,0.0,conventional,2016,Atlanta +50,2016-01-10,0.93,558348.8,377244.81,67316.04,464.46,113323.49,54693.05,58630.44,0.0,conventional,2016,Atlanta +51,2016-01-03,1.05,449263.47,350316.16,32958.06,396.68,65592.57,43674.84,21906.93,10.8,conventional,2016,Atlanta +0,2016-12-25,1.47,550947.61,50818.61,344699.92,8529.79,146899.29,142957.45,2629.52,1312.32,conventional,2016,BaltimoreWashington +1,2016-12-18,1.21,691008.74,57866.09,487109.62,8751.94,137281.09,133753.32,2845.65,682.12,conventional,2016,BaltimoreWashington +2,2016-12-11,1.35,599161.08,49240.17,375437.86,9977.23,164505.82,153476.96,11028.86,0.0,conventional,2016,BaltimoreWashington +3,2016-12-04,1.41,566956.23,52095.95,345132.36,10049.72,159678.2,157703.86,1738.23,236.11,conventional,2016,BaltimoreWashington +4,2016-11-27,1.49,539924.84,46243.14,336731.88,8237.15,148712.67,146287.45,1715.5,709.72,conventional,2016,BaltimoreWashington +5,2016-11-20,1.6,566160.06,51078.68,309529.29,13095.11,192456.98,189672.97,1882.62,901.39,conventional,2016,BaltimoreWashington +6,2016-11-13,1.73,559978.64,64630.53,311687.85,28558.19,155102.07,153317.9,1348.06,436.11,conventional,2016,BaltimoreWashington +7,2016-11-06,1.8,537945.82,61458.87,284547.34,41286.91,150652.7,149603.88,1048.82,0.0,conventional,2016,BaltimoreWashington +8,2016-10-30,1.86,522546.62,58412.45,304616.52,27903.69,131613.96,130682.92,565.76,365.28,conventional,2016,BaltimoreWashington +9,2016-10-23,1.85,584275.61,56864.06,336433.69,27036.54,163941.32,163070.93,382.89,487.5,conventional,2016,BaltimoreWashington +10,2016-10-16,1.69,638848.04,63424.01,363924.96,19878.73,191620.34,190381.9,1238.44,0.0,conventional,2016,BaltimoreWashington +11,2016-10-09,1.59,676188.97,72775.7,395481.19,20639.81,187292.27,185599.01,1332.15,361.11,conventional,2016,BaltimoreWashington +12,2016-10-02,1.66,672759.7,78716.77,381624.67,19492.51,192925.75,190861.05,1423.03,641.67,conventional,2016,BaltimoreWashington +13,2016-09-25,1.58,678671.71,129774.3,347949.15,19205.77,181742.49,180490.59,1251.9,0.0,conventional,2016,BaltimoreWashington +14,2016-09-18,1.5,732424.67,151204.91,367425.65,18808.75,194985.36,191238.8,3746.56,0.0,conventional,2016,BaltimoreWashington +15,2016-09-11,1.34,885728.19,202958.24,494756.39,19881.72,168131.84,162753.29,4043.27,1335.28,conventional,2016,BaltimoreWashington +16,2016-09-04,1.51,762218.08,97714.06,442803.33,20154.92,201545.77,198131.8,2898.23,515.74,conventional,2016,BaltimoreWashington +17,2016-08-28,1.57,732545.7,72406.64,443668.36,15648.56,200822.14,194472.57,3978.68,2370.89,conventional,2016,BaltimoreWashington +18,2016-08-21,1.48,727279.79,68443.67,413651.59,21950.39,223234.14,203758.36,15197.45,4278.33,conventional,2016,BaltimoreWashington +19,2016-08-14,1.52,742291.98,68335.7,421188.86,24863.67,227903.75,219529.71,6984.04,1390.0,conventional,2016,BaltimoreWashington +20,2016-08-07,1.52,746493.74,71154.97,432956.75,28505.15,213876.87,210316.02,2285.85,1275.0,conventional,2016,BaltimoreWashington +21,2016-07-31,1.65,698627.62,64022.99,402053.22,31448.04,201103.37,197041.21,706.6,3355.56,conventional,2016,BaltimoreWashington +22,2016-07-24,1.64,719104.08,62896.92,422902.9,30142.23,203162.03,194809.7,1005.66,7346.67,conventional,2016,BaltimoreWashington +23,2016-07-17,1.47,730875.32,50831.98,400287.93,32758.16,246997.25,233727.43,2257.55,11012.27,conventional,2016,BaltimoreWashington +24,2016-07-10,1.37,831187.91,64925.62,489314.56,44218.72,232729.01,217648.42,2447.94,12632.65,conventional,2016,BaltimoreWashington +25,2016-07-03,1.38,844337.61,63050.59,501970.38,50114.65,229201.99,214851.77,2969.08,11381.14,conventional,2016,BaltimoreWashington +26,2016-06-26,1.36,830072.5,62585.19,509113.95,48949.85,209423.51,202616.05,3059.39,3748.07,conventional,2016,BaltimoreWashington +27,2016-06-19,1.37,850692.3,61789.19,523095.26,54129.89,211677.96,203569.59,3085.45,5022.92,conventional,2016,BaltimoreWashington +28,2016-06-12,1.34,850862.92,73620.83,507383.48,55744.03,214114.58,207727.87,3451.71,2935.0,conventional,2016,BaltimoreWashington +29,2016-06-05,1.33,860858.18,61074.05,537895.97,46714.72,215173.44,203788.41,8328.92,3056.11,conventional,2016,BaltimoreWashington +30,2016-05-29,1.19,890196.73,61989.17,577334.28,44265.84,206607.44,200150.21,3716.12,2741.11,conventional,2016,BaltimoreWashington +31,2016-05-22,1.19,837573.29,60638.26,540988.18,19544.87,216401.98,211306.25,2950.73,2145.0,conventional,2016,BaltimoreWashington +32,2016-05-15,1.12,901689.79,58943.81,629734.43,16372.03,196639.52,189850.35,6194.73,594.44,conventional,2016,BaltimoreWashington +33,2016-05-08,0.95,1103888.28,75492.89,804251.93,16818.7,207324.76,204118.09,2691.39,515.28,conventional,2016,BaltimoreWashington +34,2016-05-01,1.07,929492.14,67682.14,648816.85,15073.22,197919.93,194073.11,3244.04,602.78,conventional,2016,BaltimoreWashington +35,2016-04-24,1.13,915500.04,61118.12,638833.81,15861.03,199687.08,196063.01,3132.4,491.67,conventional,2016,BaltimoreWashington +36,2016-04-17,1.13,841839.93,59232.87,576827.09,15881.19,189898.78,185709.01,3034.21,1155.56,conventional,2016,BaltimoreWashington +37,2016-04-10,1.12,789348.02,64549.66,522216.25,13247.91,189334.2,186797.56,2536.64,0.0,conventional,2016,BaltimoreWashington +38,2016-04-03,1.14,770876.88,61532.85,523512.27,12784.45,173047.31,170235.01,2812.3,0.0,conventional,2016,BaltimoreWashington +39,2016-03-27,1.19,781627.98,59850.43,523531.51,15295.4,182950.64,179809.74,3140.9,0.0,conventional,2016,BaltimoreWashington +40,2016-03-20,1.1,880238.91,65397.0,614918.47,16342.85,183580.59,180891.69,2688.9,0.0,conventional,2016,BaltimoreWashington +41,2016-03-13,1.18,845574.79,59401.39,580134.23,18702.51,187336.66,184423.26,2913.4,0.0,conventional,2016,BaltimoreWashington +42,2016-03-06,1.21,819706.7,62539.58,541218.77,21461.02,194487.33,191744.58,2742.75,0.0,conventional,2016,BaltimoreWashington +43,2016-02-28,1.12,888570.06,61483.8,641585.11,20335.44,165165.71,162543.26,2622.45,0.0,conventional,2016,BaltimoreWashington +44,2016-02-21,1.2,739486.27,51913.21,446499.2,54665.59,186408.27,180041.53,6366.74,0.0,conventional,2016,BaltimoreWashington +45,2016-02-14,1.11,905144.72,72824.97,596869.49,60290.41,175159.85,168368.44,6791.41,0.0,conventional,2016,BaltimoreWashington +46,2016-02-07,1.1,966321.0,73754.24,621956.14,48009.43,222601.19,217666.76,4934.43,0.0,conventional,2016,BaltimoreWashington +47,2016-01-31,1.11,748107.09,52641.93,506187.66,24482.29,164795.21,161204.17,3591.04,0.0,conventional,2016,BaltimoreWashington +48,2016-01-24,1.09,1022653.39,69829.09,689359.24,24029.92,239435.14,233609.99,5825.15,0.0,conventional,2016,BaltimoreWashington +49,2016-01-17,1.17,836225.86,58788.02,535244.92,25662.38,216530.54,213938.82,2591.72,0.0,conventional,2016,BaltimoreWashington +50,2016-01-10,1.17,780979.13,60261.38,511067.0,26791.33,182859.42,180460.98,2398.44,0.0,conventional,2016,BaltimoreWashington +51,2016-01-03,1.11,816760.46,54491.78,583418.06,27147.33,151703.29,149408.43,2294.86,0.0,conventional,2016,BaltimoreWashington +0,2016-12-25,1.03,71168.92,27464.22,2892.64,6681.19,34130.87,33449.4,662.22,19.25,conventional,2016,Boise +1,2016-12-18,1.02,64421.58,28725.38,2337.22,5562.76,27796.22,27464.12,327.28,4.82,conventional,2016,Boise +2,2016-12-11,0.8,98346.8,30311.25,10382.62,4088.1,53564.83,53190.59,319.56,54.68,conventional,2016,Boise +3,2016-12-04,1.01,72471.63,34194.72,2996.3,3771.85,31508.76,31278.13,217.75,12.88,conventional,2016,Boise +4,2016-11-27,1.22,51941.45,23774.54,2187.17,5526.29,20453.45,20442.18,0.0,11.27,conventional,2016,Boise +5,2016-11-20,1.27,62526.51,28834.32,2463.45,7123.14,24105.6,24091.47,2.86,11.27,conventional,2016,Boise +6,2016-11-13,1.28,67212.14,32035.36,3042.08,6078.72,26055.98,25875.27,140.41,40.3,conventional,2016,Boise +7,2016-11-06,1.37,59587.14,24935.25,2893.68,7688.17,24070.04,23558.62,408.16,103.26,conventional,2016,Boise +8,2016-10-30,1.34,59788.57,25832.98,3018.08,7311.55,23625.96,22909.91,622.44,93.61,conventional,2016,Boise +9,2016-10-23,1.17,70652.14,27935.7,3769.48,6919.11,32027.85,30914.91,1098.42,14.52,conventional,2016,Boise +10,2016-10-16,1.09,77804.54,35485.6,2006.71,6689.31,33622.92,32413.74,1197.89,11.29,conventional,2016,Boise +11,2016-10-09,1.03,84234.53,38087.17,2089.42,6562.37,37495.57,28895.19,8576.21,24.17,conventional,2016,Boise +12,2016-10-02,0.9,106259.51,27542.88,8194.14,7082.7,63439.79,55975.11,7430.88,33.8,conventional,2016,Boise +13,2016-09-25,0.91,87557.13,39342.09,2342.03,5737.02,40135.99,34566.37,5564.81,4.81,conventional,2016,Boise +14,2016-09-18,0.97,82377.77,39719.19,2199.34,6951.12,33508.12,28303.11,5198.62,6.39,conventional,2016,Boise +15,2016-09-11,0.89,89822.98,41793.11,1783.77,6411.87,39834.23,38898.96,927.29,7.98,conventional,2016,Boise +16,2016-09-04,1.01,79683.06,37233.67,2055.59,7067.38,33326.42,31599.81,1718.65,7.96,conventional,2016,Boise +17,2016-08-28,0.99,78599.85,36837.75,1982.25,5918.5,33861.35,32151.54,1693.93,15.88,conventional,2016,Boise +18,2016-08-21,0.9,84013.04,40944.28,2078.24,4694.68,36295.84,34718.06,1577.78,0.0,conventional,2016,Boise +19,2016-08-14,0.93,88787.27,43525.98,1959.35,6569.03,36732.91,36020.5,671.26,41.15,conventional,2016,Boise +20,2016-08-07,0.76,70711.46,32775.33,2002.12,2.53,35931.48,35664.27,246.66,20.55,conventional,2016,Boise +21,2016-07-31,0.78,69620.36,30747.49,1920.5,2.53,36949.84,36949.84,0.0,0.0,conventional,2016,Boise +22,2016-07-24,0.74,65580.47,26990.4,1685.17,3.26,36901.64,36364.82,16.82,520.0,conventional,2016,Boise +23,2016-07-17,0.7,69052.66,27671.07,1614.16,6.29,39761.14,37729.96,799.61,1231.57,conventional,2016,Boise +24,2016-07-10,0.75,132511.44,39211.45,4977.23,3.06,88319.7,87357.84,20.39,941.47,conventional,2016,Boise +25,2016-07-03,0.77,136377.55,36208.26,6421.9,12.16,93735.23,93645.45,20.52,69.26,conventional,2016,Boise +26,2016-06-26,0.69,127961.84,34024.13,5853.32,9.3,88075.09,88025.14,34.45,15.5,conventional,2016,Boise +27,2016-06-19,0.7,129020.17,36119.41,6692.38,2.0,86206.38,86107.76,83.05,15.57,conventional,2016,Boise +28,2016-06-12,0.67,68721.61,34791.42,2578.94,2.63,31348.62,31094.59,245.8,8.23,conventional,2016,Boise +29,2016-06-05,0.63,95948.06,31280.0,5422.61,11.56,59233.89,59206.93,8.8,18.16,conventional,2016,Boise +30,2016-05-29,0.63,82549.14,29694.73,4570.07,6.61,48277.73,47343.36,926.1,8.27,conventional,2016,Boise +31,2016-05-22,0.65,75996.51,32112.63,3221.12,2.65,40660.11,40606.62,35.29,18.2,conventional,2016,Boise +32,2016-05-15,0.58,95143.57,34103.08,6201.35,15.58,54823.56,52268.89,2490.17,64.5,conventional,2016,Boise +33,2016-05-08,0.61,106409.67,43200.28,5397.41,7.29,57804.69,57439.5,330.49,34.7,conventional,2016,Boise +34,2016-05-01,0.63,82585.83,32240.97,3928.02,0.0,46416.84,46257.9,140.79,18.15,conventional,2016,Boise +35,2016-04-24,0.65,79562.45,36437.8,2849.95,590.88,39683.82,39671.39,5.85,6.58,conventional,2016,Boise +36,2016-04-17,0.67,109590.28,41244.44,9075.77,4729.87,54540.2,53939.82,14.55,585.83,conventional,2016,Boise +37,2016-04-10,0.82,86897.72,44344.9,3303.93,5340.61,33908.28,33662.76,156.09,89.43,conventional,2016,Boise +38,2016-04-03,0.82,97650.29,45952.69,5362.4,6316.0,40019.2,39916.37,94.75,8.08,conventional,2016,Boise +39,2016-03-27,0.81,101267.73,40228.96,6891.08,9114.47,45033.22,44763.68,242.28,27.26,conventional,2016,Boise +40,2016-03-20,0.94,83080.73,41756.47,2697.57,9201.19,29425.5,29351.66,62.69,11.15,conventional,2016,Boise +41,2016-03-13,0.83,100144.93,45571.1,4920.83,6448.33,43204.67,42383.79,784.39,36.49,conventional,2016,Boise +42,2016-03-06,0.86,97421.21,41714.26,5373.09,7307.07,43026.79,42481.59,527.8,17.4,conventional,2016,Boise +43,2016-02-28,0.89,89981.54,38143.38,5361.13,8767.1,37709.93,37217.14,472.26,20.53,conventional,2016,Boise +44,2016-02-21,0.74,93951.14,37807.51,9084.55,4890.81,42168.27,42111.91,50.05,6.31,conventional,2016,Boise +45,2016-02-14,0.94,78070.34,38043.2,5302.57,6617.29,28107.28,28012.67,85.14,9.47,conventional,2016,Boise +46,2016-02-07,0.82,123715.17,42825.57,14822.29,17989.29,48078.02,47555.74,452.82,69.46,conventional,2016,Boise +47,2016-01-31,0.94,83755.38,36196.35,4791.21,8440.95,34326.87,33947.26,46.78,332.83,conventional,2016,Boise +48,2016-01-24,0.9,58434.39,18003.36,4208.29,4714.06,31508.68,29874.81,1614.91,18.96,conventional,2016,Boise +49,2016-01-17,0.92,92385.23,34302.93,7884.23,8901.1,41296.97,40337.59,951.46,7.92,conventional,2016,Boise +50,2016-01-10,0.93,89880.9,31802.36,8347.01,9065.03,40666.5,40584.43,16.94,65.13,conventional,2016,Boise +51,2016-01-03,0.77,106106.95,43868.7,10276.84,5431.66,46529.75,46476.08,17.0,36.67,conventional,2016,Boise +0,2016-12-25,1.28,447600.75,4349.63,346516.32,4183.69,92551.11,91481.59,1069.52,0.0,conventional,2016,Boston +1,2016-12-18,1.09,579577.33,6123.84,488107.01,7765.43,77581.05,76135.49,1445.56,0.0,conventional,2016,Boston +2,2016-12-11,1.22,510800.58,3711.2,409645.98,5052.84,92390.56,90449.44,1634.18,306.94,conventional,2016,Boston +3,2016-12-04,1.26,473428.36,4371.95,393748.18,3449.16,71859.07,71377.77,307.69,173.61,conventional,2016,Boston +4,2016-11-27,1.45,391257.01,4243.2,317090.39,3069.37,66854.05,66399.33,31.11,423.61,conventional,2016,Boston +5,2016-11-20,1.39,475677.35,7917.9,356867.57,4915.71,105976.17,105940.61,35.56,0.0,conventional,2016,Boston +6,2016-11-13,1.56,397601.1,5233.97,314434.8,3726.92,74205.41,74205.41,0.0,0.0,conventional,2016,Boston +7,2016-11-06,1.62,366175.49,4016.72,284809.54,3370.17,73979.06,73804.06,0.0,175.0,conventional,2016,Boston +8,2016-10-30,1.67,376500.91,5542.76,304461.49,3787.66,62709.0,62705.31,3.69,0.0,conventional,2016,Boston +9,2016-10-23,1.58,439551.69,10444.8,335243.75,6144.55,87718.59,86922.76,0.0,795.83,conventional,2016,Boston +10,2016-10-16,1.6,453605.17,6472.04,345051.11,4742.43,97339.59,97339.59,0.0,0.0,conventional,2016,Boston +11,2016-10-09,1.49,468135.46,7435.21,366648.78,3837.72,90213.75,90213.75,0.0,0.0,conventional,2016,Boston +12,2016-10-02,1.59,459163.77,20871.74,340342.71,5003.77,92945.55,92945.55,0.0,0.0,conventional,2016,Boston +13,2016-09-25,1.53,483057.37,40864.15,338301.37,6515.89,97375.96,97375.96,0.0,0.0,conventional,2016,Boston +14,2016-09-18,1.45,489600.6,39970.65,346155.69,7080.02,96394.24,96061.7,332.54,0.0,conventional,2016,Boston +15,2016-09-11,1.27,672672.86,85204.27,470860.24,9617.73,106990.62,106090.54,900.08,0.0,conventional,2016,Boston +16,2016-09-04,1.41,541671.24,23481.94,381830.77,10225.22,126133.31,125074.64,665.06,393.61,conventional,2016,Boston +17,2016-08-28,1.37,582023.28,37757.36,388173.87,7653.7,148438.35,146015.83,1187.52,1235.0,conventional,2016,Boston +18,2016-08-21,1.31,586072.78,15419.55,353351.42,7923.98,209377.83,201033.61,7400.05,944.17,conventional,2016,Boston +19,2016-08-14,1.29,602605.29,20310.78,353845.28,8194.83,220254.4,215552.06,3642.34,1060.0,conventional,2016,Boston +20,2016-08-07,1.48,525387.25,15830.01,335033.53,8735.44,165788.27,165457.19,176.08,155.0,conventional,2016,Boston +21,2016-07-31,1.61,508949.6,12550.4,338691.73,8772.17,148935.3,147430.08,5.5,1499.72,conventional,2016,Boston +22,2016-07-24,1.52,509094.85,13099.78,343835.83,10965.64,141193.6,137804.71,11.11,3377.78,conventional,2016,Boston +23,2016-07-17,1.56,488508.05,11289.68,320250.99,10381.25,146586.13,142601.99,9.14,3975.0,conventional,2016,Boston +24,2016-07-10,1.32,549815.44,17289.06,359933.8,14982.9,157609.68,153175.43,49.25,4385.0,conventional,2016,Boston +25,2016-07-03,1.38,585484.69,11397.63,408601.95,17326.08,148159.03,143276.3,137.73,4745.0,conventional,2016,Boston +26,2016-06-26,1.33,626972.88,10379.75,433431.64,28898.79,154262.7,151759.78,142.92,2360.0,conventional,2016,Boston +27,2016-06-19,1.32,649660.14,10851.29,456521.61,38655.07,143632.17,141650.87,141.3,1840.0,conventional,2016,Boston +28,2016-06-12,1.29,632855.52,12891.22,421978.89,43090.81,154894.6,152477.5,87.1,2330.0,conventional,2016,Boston +29,2016-06-05,1.26,634989.55,8833.67,417995.15,51385.74,156774.99,155072.41,120.91,1581.67,conventional,2016,Boston +30,2016-05-29,1.08,673496.13,7708.04,461424.99,72848.75,131514.35,129466.02,142.22,1906.11,conventional,2016,Boston +31,2016-05-22,1.05,665086.17,4319.45,430580.52,81859.54,148326.66,146904.74,136.92,1285.0,conventional,2016,Boston +32,2016-05-15,1.06,709563.16,5790.13,517840.35,63055.48,122877.2,122533.87,198.89,144.44,conventional,2016,Boston +33,2016-05-08,0.85,924194.42,6383.12,698437.7,80414.29,138959.31,138862.64,96.67,0.0,conventional,2016,Boston +34,2016-05-01,1.05,716003.18,4764.79,520369.75,54779.3,136089.34,136034.89,54.45,0.0,conventional,2016,Boston +35,2016-04-24,1.07,626895.08,4157.76,446540.8,51958.73,124237.79,123011.98,152.2,1073.61,conventional,2016,Boston +36,2016-04-17,1.08,617179.71,3871.79,438210.92,43926.9,131170.1,131035.57,109.53,25.0,conventional,2016,Boston +37,2016-04-10,0.99,652546.84,4326.56,456029.59,74452.3,117738.39,117521.44,87.78,129.17,conventional,2016,Boston +38,2016-04-03,1.11,559718.46,4683.35,406529.44,42112.53,106393.14,106262.03,131.11,0.0,conventional,2016,Boston +39,2016-03-27,1.08,639420.34,4253.9,463187.03,51477.79,120501.62,120388.84,112.78,0.0,conventional,2016,Boston +40,2016-03-20,1.1,645235.38,5364.32,490720.39,34714.64,114436.03,114286.03,150.0,0.0,conventional,2016,Boston +41,2016-03-13,1.05,651211.44,5420.01,487268.37,46932.61,111590.45,111440.08,150.37,0.0,conventional,2016,Boston +42,2016-03-06,1.1,600639.74,6153.04,434300.22,36352.99,123833.49,123551.47,282.02,0.0,conventional,2016,Boston +43,2016-02-28,1.08,652943.0,6632.53,506048.61,36934.25,103327.61,102683.47,644.14,0.0,conventional,2016,Boston +44,2016-02-21,1.14,553709.44,5600.54,388956.7,36873.84,122278.36,120040.08,2238.28,0.0,conventional,2016,Boston +45,2016-02-14,0.98,751656.56,7591.61,560259.15,58165.42,125640.38,123660.33,1980.05,0.0,conventional,2016,Boston +46,2016-02-07,1.05,678810.37,5986.94,511548.6,25200.19,136074.64,134178.5,1896.14,0.0,conventional,2016,Boston +47,2016-01-31,1.03,651616.91,6037.25,501280.47,25252.35,119046.84,118219.26,827.58,0.0,conventional,2016,Boston +48,2016-01-24,1.05,670376.77,3107.96,482030.79,26052.91,159185.11,158806.43,378.68,0.0,conventional,2016,Boston +49,2016-01-17,1.02,665217.66,4392.86,486767.87,32505.74,141551.19,141307.39,243.8,0.0,conventional,2016,Boston +50,2016-01-10,1.15,536674.53,4120.09,391873.45,13321.08,127359.91,127177.65,182.26,0.0,conventional,2016,Boston +51,2016-01-03,1.01,610622.03,5112.51,492477.86,21182.52,91849.14,91579.91,269.23,0.0,conventional,2016,Boston +0,2016-12-25,1.41,103035.45,1197.33,64434.59,42.09,37361.44,35701.24,1660.2,0.0,conventional,2016,BuffaloRochester +1,2016-12-18,1.36,85340.08,1276.16,52115.34,60.37,31888.21,29696.94,2191.27,0.0,conventional,2016,BuffaloRochester +2,2016-12-11,1.47,89037.86,967.77,62963.23,54.34,25052.52,23315.81,1736.71,0.0,conventional,2016,BuffaloRochester +3,2016-12-04,1.66,72203.16,960.31,54243.42,22.85,16976.58,15683.05,1256.03,37.5,conventional,2016,BuffaloRochester +4,2016-11-27,1.57,73261.05,1006.16,50581.93,12.21,21660.75,21641.31,0.0,19.44,conventional,2016,BuffaloRochester +5,2016-11-20,1.63,78675.66,1426.31,52281.34,27.83,24940.18,24940.18,0.0,0.0,conventional,2016,BuffaloRochester +6,2016-11-13,1.6,87366.58,1891.82,56517.54,84.41,28872.81,28872.81,0.0,0.0,conventional,2016,BuffaloRochester +7,2016-11-06,1.64,81691.65,1321.66,56677.66,79.68,23612.65,23400.15,0.0,212.5,conventional,2016,BuffaloRochester +8,2016-10-30,1.65,71163.53,1130.02,56077.13,81.81,13874.57,13874.57,0.0,0.0,conventional,2016,BuffaloRochester +9,2016-10-23,1.6,110744.71,1171.55,50973.9,78.19,58521.07,58521.07,0.0,0.0,conventional,2016,BuffaloRochester +10,2016-10-16,1.36,131180.81,1282.7,61796.23,50.56,68051.32,68051.32,0.0,0.0,conventional,2016,BuffaloRochester +11,2016-10-09,1.37,135059.42,1117.12,68716.59,112.39,65113.32,65113.32,0.0,0.0,conventional,2016,BuffaloRochester +12,2016-10-02,1.35,132143.53,1119.57,62757.12,90.39,68176.45,68176.45,0.0,0.0,conventional,2016,BuffaloRochester +13,2016-09-25,1.4,134327.1,4198.36,62355.89,35.97,67736.88,67732.44,4.44,0.0,conventional,2016,BuffaloRochester +14,2016-09-18,1.54,122908.68,2692.89,70019.45,52.12,50144.22,49337.59,806.63,0.0,conventional,2016,BuffaloRochester +15,2016-09-11,1.38,124095.82,1657.87,81283.86,65.32,41088.77,39986.67,1102.1,0.0,conventional,2016,BuffaloRochester +16,2016-09-04,1.48,95473.7,3089.84,67790.92,68.67,24524.27,24296.23,53.04,175.0,conventional,2016,BuffaloRochester +17,2016-08-28,1.4,114645.7,2682.18,64245.65,67.48,47650.39,46025.39,0.0,1625.0,conventional,2016,BuffaloRochester +18,2016-08-21,1.33,119865.41,1543.34,70785.26,43.73,47493.08,46013.08,0.0,1480.0,conventional,2016,BuffaloRochester +19,2016-08-14,1.41,114328.4,2645.81,72836.99,71.45,38774.15,37629.15,0.0,1145.0,conventional,2016,BuffaloRochester +20,2016-08-07,1.5,104314.72,1781.61,74560.52,42.97,27929.62,26109.62,0.0,1820.0,conventional,2016,BuffaloRochester +21,2016-07-31,1.45,108088.47,1792.17,64652.42,54.78,41589.1,40894.1,0.0,695.0,conventional,2016,BuffaloRochester +22,2016-07-24,1.44,104126.3,1156.82,63920.78,61.8,38986.9,34596.9,0.0,4390.0,conventional,2016,BuffaloRochester +23,2016-07-17,1.3,141880.95,1389.23,71781.92,102.25,68607.55,66177.55,0.0,2430.0,conventional,2016,BuffaloRochester +24,2016-07-10,1.25,183741.31,1425.12,88105.93,46.25,94164.01,89911.51,0.0,4252.5,conventional,2016,BuffaloRochester +25,2016-07-03,1.3,180609.07,1424.51,85758.67,53.07,93372.82,88472.82,0.0,4900.0,conventional,2016,BuffaloRochester +26,2016-06-26,1.26,160806.44,1326.74,74746.95,83.37,84649.38,81949.38,0.0,2700.0,conventional,2016,BuffaloRochester +27,2016-06-19,1.23,169756.02,1776.91,80406.95,57.85,87514.31,84829.31,0.0,2685.0,conventional,2016,BuffaloRochester +28,2016-06-12,1.15,182471.54,4629.34,79865.0,107.12,97870.08,95730.08,0.0,2140.0,conventional,2016,BuffaloRochester +29,2016-06-05,1.15,173445.42,1451.17,78923.0,258.4,92812.85,90282.85,0.0,2530.0,conventional,2016,BuffaloRochester +30,2016-05-29,1.19,147423.25,1442.3,81631.15,353.83,63995.97,63440.97,0.0,555.0,conventional,2016,BuffaloRochester +31,2016-05-22,1.12,168251.29,1532.9,72247.42,856.81,93614.16,92304.16,0.0,1310.0,conventional,2016,BuffaloRochester +32,2016-05-15,1.09,164790.54,1410.85,72074.47,1160.99,90144.23,90144.23,0.0,0.0,conventional,2016,BuffaloRochester +33,2016-05-08,1.09,201142.55,1613.21,97493.47,764.71,101271.16,101271.16,0.0,0.0,conventional,2016,BuffaloRochester +34,2016-05-01,1.11,171441.29,1248.25,69913.84,1640.55,98638.65,98638.65,0.0,0.0,conventional,2016,BuffaloRochester +35,2016-04-24,1.15,171142.36,1391.01,69260.58,1784.73,98706.04,98706.04,0.0,0.0,conventional,2016,BuffaloRochester +36,2016-04-17,1.14,169355.39,1167.23,67584.91,57.68,100545.57,100545.57,0.0,0.0,conventional,2016,BuffaloRochester +37,2016-04-10,1.1,152123.92,1278.33,55802.4,53.93,94989.26,94766.21,113.33,109.72,conventional,2016,BuffaloRochester +38,2016-04-03,1.04,154802.0,1164.29,72025.38,18.55,81593.78,81542.67,51.11,0.0,conventional,2016,BuffaloRochester +39,2016-03-27,1.13,149462.64,1511.79,64644.2,44.46,83262.19,83262.19,0.0,0.0,conventional,2016,BuffaloRochester +40,2016-03-20,1.14,140364.11,1110.75,62343.76,54.56,76855.04,76855.04,0.0,0.0,conventional,2016,BuffaloRochester +41,2016-03-13,1.11,163501.31,1393.58,77324.69,25.28,84757.76,84757.76,0.0,0.0,conventional,2016,BuffaloRochester +42,2016-03-06,1.36,141228.53,1473.3,60516.83,32.49,79205.91,79197.02,8.89,0.0,conventional,2016,BuffaloRochester +43,2016-02-28,1.22,154057.74,1658.99,78720.64,36.18,73641.93,72861.93,780.0,0.0,conventional,2016,BuffaloRochester +44,2016-02-21,1.31,126537.43,1500.02,52665.54,31.37,72340.5,69018.28,3322.22,0.0,conventional,2016,BuffaloRochester +45,2016-02-14,1.29,137984.28,1921.88,60453.06,40.49,75568.85,73328.85,2240.0,0.0,conventional,2016,BuffaloRochester +46,2016-02-07,1.3,177910.41,2262.36,76308.98,123.88,99215.19,97444.08,1771.11,0.0,conventional,2016,BuffaloRochester +47,2016-01-31,1.21,164453.65,2015.15,81676.45,88.82,80673.23,79715.45,957.78,0.0,conventional,2016,BuffaloRochester +48,2016-01-24,1.31,147469.99,467.72,54309.11,131.18,92561.98,92435.31,126.67,0.0,conventional,2016,BuffaloRochester +49,2016-01-17,1.38,132286.31,1778.63,49448.64,120.55,80938.49,80938.49,0.0,0.0,conventional,2016,BuffaloRochester +50,2016-01-10,1.35,134522.52,1619.0,52034.4,110.07,80759.05,80759.05,0.0,0.0,conventional,2016,BuffaloRochester +51,2016-01-03,1.39,130620.57,1486.6,57210.68,98.93,71824.36,71824.36,0.0,0.0,conventional,2016,BuffaloRochester +0,2016-12-25,0.94,5414937.46,1579234.89,2192460.84,99997.75,1543243.98,1405419.8,99069.58,38754.6,conventional,2016,California +1,2016-12-18,0.95,4922621.54,1575318.71,1774200.38,90983.73,1482118.72,1313839.11,135367.97,32911.64,conventional,2016,California +2,2016-12-11,0.9,5526646.12,1638639.18,2137290.51,96836.26,1653880.17,1451475.99,177399.8,25004.38,conventional,2016,California +3,2016-12-04,0.98,5062952.53,1916640.11,1449671.84,86152.75,1610487.83,1553052.29,27829.79,29605.75,conventional,2016,California +4,2016-11-27,1.21,4185900.67,1508446.52,1313000.92,81897.44,1282555.79,1202939.23,49696.87,29919.69,conventional,2016,California +5,2016-11-20,1.32,4253815.59,1513797.4,1394929.07,93901.07,1251188.05,1161049.94,61429.08,28709.03,conventional,2016,California +6,2016-11-13,1.48,3848128.2,1326907.02,1367684.96,112541.9,1040994.32,952497.35,60542.13,27954.84,conventional,2016,California +7,2016-11-06,1.68,3395058.42,1111431.87,1333386.69,120964.4,829275.46,763934.88,35997.83,29342.75,conventional,2016,California +8,2016-10-30,1.68,3139833.5,1126017.42,1186843.99,92064.47,734907.62,686375.28,25241.6,23290.74,conventional,2016,California +9,2016-10-23,1.39,3899040.66,1397559.4,1129206.16,82276.22,1289998.88,1201528.54,55799.76,32670.58,conventional,2016,California +10,2016-10-16,1.4,4878037.64,1635631.14,1600568.32,108458.09,1533380.09,1423671.38,73117.52,36591.19,conventional,2016,California +11,2016-10-09,1.34,5375978.5,2021375.04,1750074.56,123430.31,1481098.59,1379624.2,74894.96,26579.43,conventional,2016,California +12,2016-10-02,1.19,5652496.31,2359102.44,1664176.22,121961.08,1507256.57,1420423.91,58294.32,28538.34,conventional,2016,California +13,2016-09-25,1.15,6075588.68,2357903.8,1924933.51,117423.95,1675327.42,1583961.67,53653.13,37712.62,conventional,2016,California +14,2016-09-18,1.22,5471565.28,1888694.03,1934688.42,112714.97,1535467.86,1434869.76,59481.09,41117.01,conventional,2016,California +15,2016-09-11,1.12,6059764.51,2297601.9,1976499.46,114241.36,1671421.79,1576949.54,66072.42,28399.83,conventional,2016,California +16,2016-09-04,1.08,6681646.14,2501655.4,2179345.27,107653.45,1892992.02,1819641.81,47476.91,25873.3,conventional,2016,California +17,2016-08-28,0.99,6696300.05,2683109.8,1878139.55,133979.15,2001071.55,1924479.53,46601.83,29990.19,conventional,2016,California +18,2016-08-21,1.05,6308000.34,2646367.78,1712067.2,171379.36,1778186.0,1679257.49,61139.96,37788.55,conventional,2016,California +19,2016-08-14,1.07,6538335.89,2200099.61,2538994.07,218247.48,1580994.73,1476927.5,73032.78,31034.45,conventional,2016,California +20,2016-08-07,1.17,6144827.51,2152079.32,2039791.18,211671.11,1741285.9,1616257.39,89290.29,35738.22,conventional,2016,California +21,2016-07-31,1.22,5947160.29,1922055.35,2069409.78,244730.21,1710964.95,1581210.71,95425.63,34328.61,conventional,2016,California +22,2016-07-24,1.2,6104047.38,2019596.6,2147541.33,302735.37,1634174.08,1526433.58,82025.57,25714.93,conventional,2016,California +23,2016-07-17,1.14,6200613.68,2196723.33,2037093.61,278664.44,1688132.3,1563978.55,97434.91,26718.84,conventional,2016,California +24,2016-07-10,1.08,6721690.88,2399360.67,2117397.07,292540.95,1912392.19,1771309.82,107540.46,33541.91,conventional,2016,California +25,2016-07-03,1.1,7087455.16,2409025.69,2439611.73,356022.1,1882795.64,1722082.22,119871.18,40842.24,conventional,2016,California +26,2016-06-26,1.03,6407277.49,2333532.13,1967324.63,328206.37,1778214.36,1641400.92,107903.9,28909.54,conventional,2016,California +27,2016-06-19,1.06,6528056.18,2409003.0,2045112.18,319711.53,1754229.47,1622056.72,101882.82,30289.93,conventional,2016,California +28,2016-06-12,1.01,6506234.86,2597934.17,1869930.06,328653.8,1709716.83,1571460.04,110755.4,27501.39,conventional,2016,California +29,2016-06-05,0.94,7365675.31,2921963.17,2131717.34,373358.37,1938636.43,1739147.58,171241.77,28247.08,conventional,2016,California +30,2016-05-29,0.98,6700986.44,2522305.33,2097509.45,341992.36,1739179.3,1546212.08,160781.09,32186.13,conventional,2016,California +31,2016-05-22,0.9,6501981.08,2238875.14,2178820.82,329737.94,1754547.18,1594507.01,129666.02,30374.15,conventional,2016,California +32,2016-05-15,0.97,6068872.71,2247484.21,1968268.95,353196.44,1499923.11,1325206.1,155366.22,19350.79,conventional,2016,California +33,2016-05-08,0.79,7808461.74,2716222.01,2615648.28,336387.9,2140203.55,1606311.87,508755.56,25136.12,conventional,2016,California +34,2016-05-01,0.75,7661483.37,2817406.2,2628579.48,291448.73,1924048.96,1421239.87,485685.06,17124.03,conventional,2016,California +35,2016-04-24,0.84,6933382.4,2507347.38,2355998.94,325242.94,1744793.14,1467255.26,257014.51,20523.37,conventional,2016,California +36,2016-04-17,0.93,6397813.48,2370403.05,1875909.98,382295.13,1769205.32,1659337.91,88790.8,21076.61,conventional,2016,California +37,2016-04-10,0.94,6509000.56,2248561.59,1958358.83,358015.82,1944064.32,1740557.05,183825.53,19681.74,conventional,2016,California +38,2016-04-03,0.93,6060843.76,1805555.95,2247248.19,334735.17,1673304.45,1454479.46,201547.46,17277.53,conventional,2016,California +39,2016-03-27,0.93,6603707.93,1935666.12,2149391.86,311356.91,2207293.04,1926353.76,259874.87,21064.41,conventional,2016,California +40,2016-03-20,0.91,6476206.54,1893617.8,2191468.26,299002.93,2092117.55,1883192.26,189928.31,18996.98,conventional,2016,California +41,2016-03-13,0.96,6017563.88,1750943.52,1855262.7,317337.27,2094020.39,1888085.99,186807.69,19126.71,conventional,2016,California +42,2016-03-06,0.92,6429870.23,1893787.2,1975668.02,325582.2,2234832.81,1981931.04,230048.66,22853.11,conventional,2016,California +43,2016-02-28,0.89,6588277.7,1873878.11,2020327.87,302210.56,2391861.16,2091747.51,282242.79,17870.86,conventional,2016,California +44,2016-02-21,0.89,6374019.03,1776499.0,2073957.12,267508.94,2256053.97,2073467.05,167309.24,15277.68,conventional,2016,California +45,2016-02-14,0.82,6807283.15,1998149.71,1974912.11,278558.48,2555662.85,2207054.69,333029.79,15578.37,conventional,2016,California +46,2016-02-07,0.7,10361698.17,2930343.28,3950852.38,424389.6,3056112.91,2693843.02,344774.59,17495.3,conventional,2016,California +47,2016-01-31,0.88,6506673.96,2126066.85,2069192.92,287234.03,2024180.16,1874982.24,134692.75,14505.17,conventional,2016,California +48,2016-01-24,0.88,6246380.73,1230068.19,2457751.77,272665.17,2285895.6,2122673.09,147881.99,15340.52,conventional,2016,California +49,2016-01-17,0.9,6000013.23,1653347.69,2336705.19,250106.17,1759854.18,1579233.6,162289.68,18330.9,conventional,2016,California +50,2016-01-10,0.87,6303406.82,1736168.01,2173554.18,261931.07,2131753.56,1793640.16,321613.97,16499.43,conventional,2016,California +51,2016-01-03,0.73,7730431.28,2315175.35,2856102.41,257268.16,2301885.36,1950428.5,340852.13,10604.73,conventional,2016,California +0,2016-12-25,1.25,155793.03,36125.58,50792.48,7324.64,61550.33,51247.91,10232.98,69.44,conventional,2016,Charlotte +1,2016-12-18,1.24,144634.01,35761.88,46276.63,7942.68,54652.82,44604.56,10048.26,0.0,conventional,2016,Charlotte +2,2016-12-11,1.33,145815.04,43744.87,40971.14,8696.54,52402.49,46293.11,6109.38,0.0,conventional,2016,Charlotte +3,2016-12-04,1.34,154742.81,39221.82,46285.9,9451.98,59783.11,48016.74,11766.37,0.0,conventional,2016,Charlotte +4,2016-11-27,1.54,131453.85,38976.01,34346.09,8265.03,49866.72,44005.31,5861.41,0.0,conventional,2016,Charlotte +5,2016-11-20,1.57,135608.11,44044.69,28907.47,13913.04,48742.91,42721.62,6021.29,0.0,conventional,2016,Charlotte +6,2016-11-13,1.64,144089.12,49399.39,26597.39,22714.68,45377.66,38436.79,6940.87,0.0,conventional,2016,Charlotte +7,2016-11-06,1.57,142095.92,36840.74,27501.34,25305.86,52447.98,45861.67,6586.31,0.0,conventional,2016,Charlotte +8,2016-10-30,1.58,142955.49,39376.44,29382.3,26881.22,47315.53,40258.68,6816.57,240.28,conventional,2016,Charlotte +9,2016-10-23,1.52,167741.27,54981.9,39749.81,20290.31,52719.25,47060.46,5658.79,0.0,conventional,2016,Charlotte +10,2016-10-16,1.39,190846.01,57529.11,56366.66,17531.78,59418.46,48823.53,10354.65,240.28,conventional,2016,Charlotte +11,2016-10-09,1.51,178235.75,43325.87,52189.61,19419.57,63300.7,54704.14,8596.56,0.0,conventional,2016,Charlotte +12,2016-10-02,1.48,178410.82,46364.75,52893.38,16736.92,62415.77,53332.61,8258.16,825.0,conventional,2016,Charlotte +13,2016-09-25,1.47,189131.52,54110.79,53593.58,17495.42,63931.73,55653.47,8278.26,0.0,conventional,2016,Charlotte +14,2016-09-18,1.43,182978.3,43116.41,54193.42,16563.91,69104.56,57456.21,11648.35,0.0,conventional,2016,Charlotte +15,2016-09-11,1.42,180989.26,34440.65,59554.19,17914.48,69079.94,61214.7,7860.24,5.0,conventional,2016,Charlotte +16,2016-09-04,1.33,204963.95,58888.34,56699.56,18659.47,70716.58,62373.15,7805.93,537.5,conventional,2016,Charlotte +17,2016-08-28,1.4,187984.8,54874.64,57122.52,15013.36,60974.28,58688.03,1906.25,380.0,conventional,2016,Charlotte +18,2016-08-21,1.38,193592.65,44006.63,62975.71,20731.35,65878.96,64095.85,1628.11,155.0,conventional,2016,Charlotte +19,2016-08-14,1.4,195250.96,39823.56,66724.29,23025.36,65677.75,60859.82,4817.93,0.0,conventional,2016,Charlotte +20,2016-08-07,1.43,196381.45,48639.95,64124.89,24178.25,59438.36,55636.32,3787.04,15.0,conventional,2016,Charlotte +21,2016-07-31,1.48,187969.31,39819.93,68964.23,24742.11,54443.04,50677.92,3330.12,435.0,conventional,2016,Charlotte +22,2016-07-24,1.46,193909.36,34250.27,68516.18,26839.41,64303.5,57524.85,3346.43,3432.22,conventional,2016,Charlotte +23,2016-07-17,1.43,196466.9,38199.33,69125.35,25756.96,63385.26,58481.31,3223.95,1680.0,conventional,2016,Charlotte +24,2016-07-10,1.26,233262.16,43387.69,79103.57,40460.56,70310.34,62603.71,4548.85,3157.78,conventional,2016,Charlotte +25,2016-07-03,1.2,233543.59,45220.67,72710.08,40378.07,75234.77,64809.58,8290.19,2135.0,conventional,2016,Charlotte +26,2016-06-26,1.28,200520.74,36686.02,68054.14,39268.75,56511.83,52290.98,3210.85,1010.0,conventional,2016,Charlotte +27,2016-06-19,1.21,238720.78,55097.56,77704.63,46282.1,59636.49,52830.72,4841.6,1964.17,conventional,2016,Charlotte +28,2016-06-12,1.25,209095.62,42196.82,74895.5,46176.97,45826.33,40822.06,3825.94,1178.33,conventional,2016,Charlotte +29,2016-06-05,1.25,209797.27,37431.02,77700.5,41412.18,53253.57,45859.12,6333.06,1061.39,conventional,2016,Charlotte +30,2016-05-29,1.21,235009.02,49747.65,92110.53,41274.31,51876.53,45120.69,6510.84,245.0,conventional,2016,Charlotte +31,2016-05-22,1.26,203492.89,37008.26,95769.19,20859.76,49855.68,45579.73,3940.95,335.0,conventional,2016,Charlotte +32,2016-05-15,1.12,215807.01,31853.93,103793.02,17607.68,62552.38,51589.2,10963.18,0.0,conventional,2016,Charlotte +33,2016-05-08,1.05,253622.75,55853.79,113811.25,18608.39,65349.32,57141.94,7275.44,931.94,conventional,2016,Charlotte +34,2016-05-01,1.04,249786.11,53589.93,112926.95,18934.08,64335.15,52070.2,12264.95,0.0,conventional,2016,Charlotte +35,2016-04-24,1.12,217385.39,31821.2,106492.0,18456.31,60615.88,48775.07,10957.48,883.33,conventional,2016,Charlotte +36,2016-04-17,1.14,212440.76,37150.7,100814.92,17305.85,57169.29,50673.98,5886.98,608.33,conventional,2016,Charlotte +37,2016-04-10,1.1,210587.77,39141.6,93571.42,16896.71,60978.04,48991.14,11986.9,0.0,conventional,2016,Charlotte +38,2016-04-03,1.12,192341.67,35648.2,87528.81,14614.66,54550.0,47755.59,6794.41,0.0,conventional,2016,Charlotte +39,2016-03-27,1.14,189944.6,32857.85,90916.21,15518.85,50651.69,45385.09,5266.6,0.0,conventional,2016,Charlotte +40,2016-03-20,1.15,205367.45,33581.86,101739.82,18631.48,51414.29,45426.62,5987.67,0.0,conventional,2016,Charlotte +41,2016-03-13,1.05,236131.07,39325.69,111943.87,22961.75,61899.76,50889.7,11010.06,0.0,conventional,2016,Charlotte +42,2016-03-06,1.09,208506.12,38805.91,98212.71,21768.74,49718.76,44120.4,5598.36,0.0,conventional,2016,Charlotte +43,2016-02-28,1.05,215161.41,35461.06,106914.98,19046.18,53739.19,43150.21,10588.98,0.0,conventional,2016,Charlotte +44,2016-02-21,1.07,193132.2,36397.39,86393.95,19834.26,50506.6,45927.0,4579.6,0.0,conventional,2016,Charlotte +45,2016-02-14,1.0,204110.86,45730.46,87862.03,18323.51,52194.86,44807.51,7387.35,0.0,conventional,2016,Charlotte +46,2016-02-07,0.8,325941.39,63128.71,160544.54,42056.68,60211.46,42529.78,17681.68,0.0,conventional,2016,Charlotte +47,2016-01-31,0.95,214135.89,36408.49,108723.9,25918.83,43084.67,35669.83,7414.84,0.0,conventional,2016,Charlotte +48,2016-01-24,0.92,207961.33,13436.84,110261.96,30644.07,53618.46,42136.65,11481.81,0.0,conventional,2016,Charlotte +49,2016-01-17,0.98,206778.29,29997.79,104174.89,29112.58,43493.03,37725.6,5767.43,0.0,conventional,2016,Charlotte +50,2016-01-10,0.95,196216.36,21275.55,94804.67,29602.84,50533.3,42015.27,8518.03,0.0,conventional,2016,Charlotte +51,2016-01-03,0.96,203961.88,42856.88,87749.01,31682.42,41673.57,38144.36,3529.21,0.0,conventional,2016,Charlotte +0,2016-12-25,1.22,616653.72,67145.99,352087.3,110167.01,87253.42,81570.81,955.34,4727.27,conventional,2016,Chicago +1,2016-12-18,1.18,631117.18,92760.23,363657.94,101491.49,73207.52,65277.81,1065.6,6864.11,conventional,2016,Chicago +2,2016-12-11,1.09,734954.21,84616.3,449932.23,103932.55,96473.13,87751.52,1102.23,7619.38,conventional,2016,Chicago +3,2016-12-04,1.27,624751.15,90157.63,372929.38,94496.12,67168.02,64475.13,621.47,2071.42,conventional,2016,Chicago +4,2016-11-27,1.1,581638.75,151462.15,291205.61,81651.23,57319.76,56501.53,797.78,20.45,conventional,2016,Chicago +5,2016-11-20,1.13,694873.06,134284.88,422382.41,80126.03,58079.74,55015.46,997.51,2066.77,conventional,2016,Chicago +6,2016-11-13,1.82,436710.91,34384.62,265006.85,73021.81,64297.63,63465.65,593.89,238.09,conventional,2016,Chicago +7,2016-11-06,2.07,376476.71,31206.79,224561.79,61665.74,59042.39,57803.54,1095.69,143.16,conventional,2016,Chicago +8,2016-10-30,2.07,375213.57,33564.91,226980.93,60260.53,54407.2,48140.45,1587.11,4679.64,conventional,2016,Chicago +9,2016-10-23,1.84,431274.2,46708.92,251074.82,68234.94,65255.52,55554.23,790.0,8911.29,conventional,2016,Chicago +10,2016-10-16,1.8,523682.5,52200.02,324240.53,75841.97,71399.98,61522.13,1047.85,8830.0,conventional,2016,Chicago +11,2016-10-09,1.82,515146.04,40105.31,314006.07,90031.8,71002.86,60216.05,968.89,9817.92,conventional,2016,Chicago +12,2016-10-02,1.83,509215.79,37926.13,311085.71,90495.41,69708.54,58004.41,530.52,11173.61,conventional,2016,Chicago +13,2016-09-25,1.8,553863.82,40600.81,337874.13,98808.73,76580.15,65665.7,744.44,10170.01,conventional,2016,Chicago +14,2016-09-18,1.7,600389.56,74368.62,340540.46,97900.81,87579.67,80619.11,802.22,6158.34,conventional,2016,Chicago +15,2016-09-11,1.67,635036.01,80472.32,355228.95,99520.95,99813.79,97150.37,2084.68,578.74,conventional,2016,Chicago +16,2016-09-04,1.6,670453.42,77981.63,415924.58,91323.75,85223.46,82376.72,2320.05,526.69,conventional,2016,Chicago +17,2016-08-28,1.6,621715.78,54971.17,373442.31,93288.97,100013.33,92533.97,4244.28,3235.08,conventional,2016,Chicago +18,2016-08-21,1.63,628099.41,62002.43,372918.48,87449.64,105728.86,102613.78,1582.1,1532.98,conventional,2016,Chicago +19,2016-08-14,1.67,626086.69,49617.0,371087.23,102966.19,102416.27,99833.21,2139.33,443.73,conventional,2016,Chicago +20,2016-08-07,1.68,644670.46,40121.11,385923.6,103402.88,115222.87,113969.56,262.16,991.15,conventional,2016,Chicago +21,2016-07-31,1.68,614939.39,38275.52,373205.75,97843.18,105614.94,104111.58,317.97,1185.39,conventional,2016,Chicago +22,2016-07-24,1.66,658913.69,42452.5,386821.79,109032.48,120606.92,113683.42,1819.86,5103.64,conventional,2016,Chicago +23,2016-07-17,1.51,717279.19,43789.6,425776.15,108230.65,139482.79,122026.18,12735.54,4721.07,conventional,2016,Chicago +24,2016-07-10,1.53,712080.66,52540.83,381030.54,150963.07,127546.22,118624.54,1894.09,7027.59,conventional,2016,Chicago +25,2016-07-03,1.23,974278.32,55651.48,584813.49,184518.62,149294.73,143295.47,378.93,5620.33,conventional,2016,Chicago +26,2016-06-26,1.18,860170.92,80280.37,499474.39,159812.33,120603.83,115880.76,457.23,4265.84,conventional,2016,Chicago +27,2016-06-19,1.2,882074.39,64899.84,550499.79,163027.81,103646.95,99766.0,1867.44,2013.51,conventional,2016,Chicago +28,2016-06-12,1.3,770843.17,50498.4,478335.91,140924.68,101084.18,98096.94,2213.29,773.95,conventional,2016,Chicago +29,2016-06-05,1.2,885602.82,31728.98,606701.67,145606.57,101565.6,96845.23,3216.39,1503.98,conventional,2016,Chicago +30,2016-05-29,1.15,958566.68,36554.49,642857.54,145363.84,133790.81,129034.96,3359.7,1396.15,conventional,2016,Chicago +31,2016-05-22,1.11,903864.9,36568.67,592064.53,145104.44,130127.26,121785.52,6544.59,1797.15,conventional,2016,Chicago +32,2016-05-15,1.04,930403.37,49039.58,609294.15,157984.71,114084.93,108571.35,4797.75,715.83,conventional,2016,Chicago +33,2016-05-08,0.97,974740.13,43166.45,612339.89,173293.69,145940.1,137880.91,4997.64,3061.55,conventional,2016,Chicago +34,2016-05-01,1.0,890281.5,39249.49,587919.1,155289.67,107823.24,101940.66,4166.66,1715.92,conventional,2016,Chicago +35,2016-04-24,1.08,879308.05,34134.42,592370.7,151281.44,101521.49,96823.55,4684.93,13.01,conventional,2016,Chicago +36,2016-04-17,1.08,913421.8,47878.48,619840.15,137009.63,108693.54,101842.17,4806.9,2044.47,conventional,2016,Chicago +37,2016-04-10,1.11,770661.72,49679.26,464981.98,153441.58,102558.9,91081.44,9926.52,1550.94,conventional,2016,Chicago +38,2016-04-03,1.15,712210.03,36211.71,457314.18,139240.25,79443.89,75467.12,3947.19,29.58,conventional,2016,Chicago +39,2016-03-27,0.9,865585.06,33748.25,600796.46,131467.33,99573.02,95288.6,4221.71,62.71,conventional,2016,Chicago +40,2016-03-20,1.11,770557.34,36017.62,514604.02,122807.96,97127.74,93973.32,3147.06,7.36,conventional,2016,Chicago +41,2016-03-13,1.0,823796.56,39540.49,569733.57,125901.94,88620.56,86428.9,2191.66,0.0,conventional,2016,Chicago +42,2016-03-06,1.13,809325.93,35309.42,557026.92,129160.06,87829.53,85606.7,2222.83,0.0,conventional,2016,Chicago +43,2016-02-28,1.15,780951.86,32414.21,522790.14,133067.18,92680.33,90777.56,1902.77,0.0,conventional,2016,Chicago +44,2016-02-21,1.09,752336.04,39220.29,483562.05,125838.6,103715.1,93141.66,10558.8,14.64,conventional,2016,Chicago +45,2016-02-14,1.0,803120.71,45558.04,501188.76,131202.78,125171.13,106296.76,18322.72,551.65,conventional,2016,Chicago +46,2016-02-07,0.82,1134049.22,68454.39,758581.79,155377.3,151635.74,129791.42,21748.61,95.71,conventional,2016,Chicago +47,2016-01-31,1.12,774091.49,35213.93,512608.82,132958.04,93310.7,92124.35,1186.35,0.0,conventional,2016,Chicago +48,2016-01-24,1.01,794029.7,23862.94,543471.49,136033.93,90661.34,88261.04,2400.3,0.0,conventional,2016,Chicago +49,2016-01-17,1.11,778412.5,35099.73,500623.85,139309.53,103379.39,87560.47,15802.25,16.67,conventional,2016,Chicago +50,2016-01-10,1.08,844277.25,44289.03,534404.57,143202.95,122380.7,82670.76,39333.27,376.67,conventional,2016,Chicago +51,2016-01-03,0.93,1009667.15,77301.31,656386.69,162054.24,113924.91,80769.55,21615.36,11540.0,conventional,2016,Chicago +0,2016-12-25,0.82,276387.95,2168.67,102227.29,970.48,171021.51,26984.7,144036.81,0.0,conventional,2016,CincinnatiDayton +1,2016-12-18,0.99,216881.3,2279.61,100542.31,1472.39,112586.99,23082.87,89485.68,18.44,conventional,2016,CincinnatiDayton +2,2016-12-11,0.77,268166.21,2474.73,101664.01,753.56,163273.91,21944.83,141290.54,38.54,conventional,2016,CincinnatiDayton +3,2016-12-04,0.7,356617.38,2443.73,132792.54,2845.22,218535.89,24193.8,194318.91,23.18,conventional,2016,CincinnatiDayton +4,2016-11-27,1.09,183176.26,1811.14,75977.47,690.05,104697.6,19930.04,84702.28,65.28,conventional,2016,CincinnatiDayton +5,2016-11-20,0.98,242174.1,2013.39,85407.77,853.46,153899.48,23679.23,130220.25,0.0,conventional,2016,CincinnatiDayton +6,2016-11-13,1.07,249072.9,2998.06,92084.04,899.73,153091.07,23980.47,129104.39,6.21,conventional,2016,CincinnatiDayton +7,2016-11-06,1.08,239233.63,2895.96,91902.63,1003.69,143431.35,16151.12,127193.62,86.61,conventional,2016,CincinnatiDayton +8,2016-10-30,1.02,241671.24,2125.55,89381.04,841.37,149323.28,11631.4,137691.88,0.0,conventional,2016,CincinnatiDayton +9,2016-10-23,0.96,273804.0,2790.12,94637.5,1181.38,175195.0,18785.57,156407.87,1.56,conventional,2016,CincinnatiDayton +10,2016-10-16,1.07,246801.93,6797.94,89324.91,1275.42,149403.66,32352.58,117051.08,0.0,conventional,2016,CincinnatiDayton +11,2016-10-09,1.01,276819.57,3166.45,100995.03,1223.02,171435.07,21810.18,149624.89,0.0,conventional,2016,CincinnatiDayton +12,2016-10-02,1.03,280396.12,3206.27,105492.75,1380.85,170316.25,22840.83,147472.29,3.13,conventional,2016,CincinnatiDayton +13,2016-09-25,1.09,268805.44,3821.72,112149.61,1396.32,151437.79,23812.95,127624.84,0.0,conventional,2016,CincinnatiDayton +14,2016-09-18,0.96,288857.14,6195.29,112907.19,1335.29,168419.37,30495.85,137923.52,0.0,conventional,2016,CincinnatiDayton +15,2016-09-11,1.04,266719.89,5370.62,122058.81,1567.4,137723.06,29123.32,108519.74,80.0,conventional,2016,CincinnatiDayton +16,2016-09-04,1.12,252059.32,3789.59,117600.22,2099.28,128570.23,25361.2,102794.03,415.0,conventional,2016,CincinnatiDayton +17,2016-08-28,1.13,259143.06,3862.97,126642.16,1683.71,126954.22,27933.66,97229.69,1790.87,conventional,2016,CincinnatiDayton +18,2016-08-21,1.07,256195.06,3838.13,118303.09,1922.26,132131.58,28706.18,102390.4,1035.0,conventional,2016,CincinnatiDayton +19,2016-08-14,1.03,274249.98,4691.0,125988.41,2661.69,140908.88,35321.59,105549.16,38.13,conventional,2016,CincinnatiDayton +20,2016-08-07,1.03,266196.06,5244.48,130022.01,3143.09,127786.48,27221.7,100553.51,11.27,conventional,2016,CincinnatiDayton +21,2016-07-31,1.07,254689.93,4322.1,129945.29,3804.63,116617.91,27836.86,88090.7,690.35,conventional,2016,CincinnatiDayton +22,2016-07-24,1.1,264194.71,4346.75,133484.48,7052.87,119310.61,25436.76,89695.64,4178.21,conventional,2016,CincinnatiDayton +23,2016-07-17,1.05,280542.19,5441.72,136098.54,6998.74,132003.19,25789.15,101973.21,4240.83,conventional,2016,CincinnatiDayton +24,2016-07-10,1.06,266811.55,4664.36,149184.73,6514.15,106448.31,23189.21,78560.24,4698.86,conventional,2016,CincinnatiDayton +25,2016-07-03,0.84,330182.4,4595.22,168217.2,6496.41,150873.57,28096.15,118272.52,4504.9,conventional,2016,CincinnatiDayton +26,2016-06-26,0.92,280229.89,4553.86,161667.16,9805.14,104203.73,24577.2,75549.11,4077.42,conventional,2016,CincinnatiDayton +27,2016-06-19,0.91,311127.56,7033.21,154162.39,14007.18,135924.78,25143.66,105248.43,5532.69,conventional,2016,CincinnatiDayton +28,2016-06-12,1.05,237773.53,7943.24,149994.79,7051.08,72784.42,23417.1,46347.93,3019.39,conventional,2016,CincinnatiDayton +29,2016-06-05,0.85,310345.06,4642.74,174172.12,23750.21,107779.99,19176.89,81916.42,6686.68,conventional,2016,CincinnatiDayton +30,2016-05-29,0.84,268328.36,4644.3,164356.12,7148.83,92179.11,20884.04,69163.08,2131.99,conventional,2016,CincinnatiDayton +31,2016-05-22,0.82,250387.73,4092.03,144150.98,6810.54,95334.18,18281.32,74251.91,2800.95,conventional,2016,CincinnatiDayton +32,2016-05-15,0.88,250333.08,3505.82,151116.33,21963.46,73747.47,14077.5,53944.28,5725.69,conventional,2016,CincinnatiDayton +33,2016-05-08,0.86,314243.15,4411.26,183121.83,17789.78,108920.28,17361.66,87869.71,3688.91,conventional,2016,CincinnatiDayton +34,2016-05-01,0.94,233581.0,4132.98,156007.26,9601.89,63838.87,17965.35,44324.0,1549.52,conventional,2016,CincinnatiDayton +35,2016-04-24,0.94,218247.37,4307.62,141433.59,9484.48,63021.68,19112.22,41934.57,1974.89,conventional,2016,CincinnatiDayton +36,2016-04-17,0.93,228211.44,3369.9,141000.09,25464.3,58377.15,16055.57,36551.04,5770.54,conventional,2016,CincinnatiDayton +37,2016-04-10,0.89,210309.77,4234.86,125252.7,8960.13,71862.08,21423.87,49093.66,1344.55,conventional,2016,CincinnatiDayton +38,2016-04-03,0.89,191169.34,3481.07,109917.36,10846.9,66924.01,13780.66,50468.58,2674.77,conventional,2016,CincinnatiDayton +39,2016-03-27,0.9,225485.9,3097.47,131467.29,16191.17,74729.97,18832.18,52163.65,3734.14,conventional,2016,CincinnatiDayton +40,2016-03-20,0.9,224942.74,3139.27,132074.69,16430.07,73298.71,18928.9,50472.61,3897.2,conventional,2016,CincinnatiDayton +41,2016-03-13,0.88,210904.76,3172.25,126850.83,7482.64,73399.04,19111.28,52395.6,1892.16,conventional,2016,CincinnatiDayton +42,2016-03-06,0.85,234512.25,3704.39,129150.5,24314.72,77342.64,17632.22,54219.12,5491.3,conventional,2016,CincinnatiDayton +43,2016-02-28,0.87,227593.54,4252.39,129161.49,16207.08,77972.58,18382.22,56152.18,3438.18,conventional,2016,CincinnatiDayton +44,2016-02-21,0.86,190349.58,3480.46,117328.79,5551.81,63988.52,17167.72,45673.76,1147.04,conventional,2016,CincinnatiDayton +45,2016-02-14,0.86,229211.34,3898.22,144374.76,8008.86,72929.5,18358.96,53192.11,1378.43,conventional,2016,CincinnatiDayton +46,2016-02-07,0.81,302337.87,4898.28,177380.94,30149.6,89909.05,22076.72,61180.85,6651.48,conventional,2016,CincinnatiDayton +47,2016-01-31,0.94,203005.7,3261.74,133276.52,12917.42,53550.02,16807.25,33496.41,3246.36,conventional,2016,CincinnatiDayton +48,2016-01-24,0.89,252317.23,1985.08,155256.89,23681.24,71394.02,19633.53,47199.01,4561.48,conventional,2016,CincinnatiDayton +49,2016-01-17,0.86,228860.79,3683.42,142145.57,7457.43,75574.37,20728.35,53232.61,1613.41,conventional,2016,CincinnatiDayton +50,2016-01-10,0.92,218906.82,3115.25,151374.26,7200.14,57217.17,17942.34,37684.81,1590.02,conventional,2016,CincinnatiDayton +51,2016-01-03,0.9,222534.76,2730.97,149327.89,18924.91,51550.99,12613.38,29550.02,9387.59,conventional,2016,CincinnatiDayton +0,2016-12-25,1.07,136733.12,54284.13,24334.73,1538.2,56576.06,55083.7,1459.35,33.01,conventional,2016,Columbus +1,2016-12-18,1.06,131322.27,55604.5,31791.33,2522.96,41403.48,38839.35,2461.41,102.72,conventional,2016,Columbus +2,2016-12-11,0.98,144354.95,79158.83,19836.1,1302.46,44057.56,41890.61,2155.38,11.57,conventional,2016,Columbus +3,2016-12-04,0.84,237639.3,108397.57,42477.66,5532.03,81232.04,76008.08,5158.75,65.21,conventional,2016,Columbus +4,2016-11-27,1.1,134305.97,58518.04,19133.76,1296.49,55357.68,53684.96,1671.27,1.45,conventional,2016,Columbus +5,2016-11-20,1.33,117299.16,50017.12,21270.55,1335.91,44675.58,43073.72,1601.86,0.0,conventional,2016,Columbus +6,2016-11-13,1.38,116814.65,52996.11,26129.41,1460.24,36228.89,34146.46,2082.43,0.0,conventional,2016,Columbus +7,2016-11-06,1.41,114207.94,55230.85,23397.14,1603.54,33976.41,32556.59,1419.82,0.0,conventional,2016,Columbus +8,2016-10-30,1.1,138565.73,75422.45,16016.58,1373.56,45753.14,43902.77,1850.37,0.0,conventional,2016,Columbus +9,2016-10-23,1.11,156831.11,84696.78,21559.06,1763.25,48812.02,46730.56,2081.46,0.0,conventional,2016,Columbus +10,2016-10-16,1.31,123388.77,53963.92,22128.29,1875.36,45421.2,43150.55,2270.65,0.0,conventional,2016,Columbus +11,2016-10-09,1.33,120833.05,55586.23,23318.96,1900.96,40026.9,36596.53,3430.37,0.0,conventional,2016,Columbus +12,2016-10-02,1.3,123300.36,54053.13,25747.7,2077.48,41422.05,36952.51,4469.54,0.0,conventional,2016,Columbus +13,2016-09-25,1.14,151978.88,70129.37,37333.99,2426.04,42089.48,41377.97,711.51,0.0,conventional,2016,Columbus +14,2016-09-18,1.07,167438.32,85331.98,26634.72,2505.47,52966.15,51334.31,1631.84,0.0,conventional,2016,Columbus +15,2016-09-11,1.06,177299.48,89423.71,25412.5,2345.13,60118.14,58343.14,1755.0,20.0,conventional,2016,Columbus +16,2016-09-04,1.06,161362.24,73011.64,29161.53,2616.16,56572.91,55935.18,466.29,171.44,conventional,2016,Columbus +17,2016-08-28,1.07,168757.98,71113.29,34419.8,2593.07,60631.82,57069.78,1842.04,1720.0,conventional,2016,Columbus +18,2016-08-21,1.2,154116.71,69616.32,33284.86,2841.74,48373.79,42940.86,4122.93,1310.0,conventional,2016,Columbus +19,2016-08-14,1.17,166462.83,71827.16,34064.69,3156.71,57414.27,53549.37,3864.9,0.0,conventional,2016,Columbus +20,2016-08-07,1.18,164281.56,70942.5,37215.94,3955.17,52167.95,38682.96,13474.99,10.0,conventional,2016,Columbus +21,2016-07-31,1.21,153804.34,71526.03,31744.13,4294.96,46239.22,38377.9,7260.37,600.95,conventional,2016,Columbus +22,2016-07-24,1.15,173335.16,73713.02,34227.26,6083.87,59311.01,46627.28,8564.06,4119.67,conventional,2016,Columbus +23,2016-07-17,1.18,160413.49,69177.04,38319.06,6345.7,46571.69,38846.97,2931.27,4793.45,conventional,2016,Columbus +24,2016-07-10,1.06,170762.71,80019.89,36096.76,5812.55,48833.51,32848.9,11536.73,4447.88,conventional,2016,Columbus +25,2016-07-03,0.94,234975.32,118888.22,38361.79,6699.07,71026.24,62163.78,4656.27,4206.19,conventional,2016,Columbus +26,2016-06-26,1.04,201923.72,99552.74,37201.77,10852.83,54316.38,45985.7,4847.72,3482.96,conventional,2016,Columbus +27,2016-06-19,1.13,172220.11,64425.61,36827.16,15000.42,55966.92,45124.02,6081.41,4761.49,conventional,2016,Columbus +28,2016-06-12,1.13,163638.65,65443.12,32052.99,8090.3,58052.24,49307.2,6081.58,2663.46,conventional,2016,Columbus +29,2016-06-05,1.07,175046.12,62727.64,38734.74,25833.35,47750.39,35846.32,6408.19,5495.88,conventional,2016,Columbus +30,2016-05-29,0.93,201747.62,95063.05,36787.21,7985.33,61912.03,53230.25,6885.94,1795.84,conventional,2016,Columbus +31,2016-05-22,0.83,210263.7,105959.95,37763.5,6777.98,59762.27,48049.79,9991.52,1720.96,conventional,2016,Columbus +32,2016-05-15,0.84,202002.0,76164.88,47725.96,21036.66,57074.5,33941.16,18532.83,4600.51,conventional,2016,Columbus +33,2016-05-08,0.9,201205.97,90444.73,46435.26,19164.46,45161.52,26507.5,15137.8,3516.22,conventional,2016,Columbus +34,2016-05-01,0.71,224515.48,111020.2,47074.43,9592.54,56828.31,48051.43,7485.91,1290.97,conventional,2016,Columbus +35,2016-04-24,0.72,242277.45,132004.8,35758.91,10151.42,64362.32,54682.15,8238.93,1441.24,conventional,2016,Columbus +36,2016-04-17,0.97,172183.83,56381.07,48784.24,27374.63,39643.89,27199.14,7590.56,4854.19,conventional,2016,Columbus +37,2016-04-10,0.96,135905.09,57345.34,27302.54,9075.23,42181.98,31689.31,9453.96,1038.71,conventional,2016,Columbus +38,2016-04-03,0.95,147520.15,50791.46,28964.32,21041.99,46722.38,22994.03,21163.82,2564.53,conventional,2016,Columbus +39,2016-03-27,1.01,153523.03,46922.11,32127.84,29363.76,45109.32,21567.71,20098.73,3442.88,conventional,2016,Columbus +40,2016-03-20,1.04,152572.16,46047.38,35537.84,28532.36,42454.58,22445.88,16153.49,3855.21,conventional,2016,Columbus +41,2016-03-13,1.05,140244.15,47503.75,31781.65,18665.91,42292.84,26468.1,14097.62,1727.12,conventional,2016,Columbus +42,2016-03-06,0.95,173825.82,49586.89,42501.52,35277.07,46460.34,23754.04,17567.37,5138.93,conventional,2016,Columbus +43,2016-02-28,1.03,154967.56,48902.44,41405.76,28499.61,36159.75,22422.88,10262.4,3474.47,conventional,2016,Columbus +44,2016-02-21,1.05,126067.56,46771.81,36674.01,15757.97,26863.77,19800.56,6111.41,951.8,conventional,2016,Columbus +45,2016-02-14,0.91,173980.1,82198.65,38935.77,17174.63,35671.05,27386.88,7182.14,1102.03,conventional,2016,Columbus +46,2016-02-07,0.81,233905.62,99884.81,55303.67,36191.68,42525.46,30226.47,6961.25,5337.74,conventional,2016,Columbus +47,2016-01-31,0.92,173311.53,78646.7,38158.3,23466.68,33039.85,21259.66,9258.85,2521.34,conventional,2016,Columbus +48,2016-01-24,0.89,213215.4,95511.64,43916.93,35349.8,38437.03,28562.22,4435.73,5439.08,conventional,2016,Columbus +49,2016-01-17,1.03,134604.75,52491.11,30084.71,20930.75,31098.18,23123.14,6492.6,1482.44,conventional,2016,Columbus +50,2016-01-10,0.97,163977.03,82729.5,33601.78,17903.44,29742.31,21493.26,6988.68,1260.37,conventional,2016,Columbus +51,2016-01-03,0.91,192774.07,86025.77,40616.88,32940.14,33191.28,18463.39,6208.46,8519.43,conventional,2016,Columbus +0,2016-12-25,0.76,1199636.75,503168.52,313572.54,3069.14,379826.55,374905.48,2661.1,2259.97,conventional,2016,DallasFtWorth +1,2016-12-18,0.69,1148251.0,571587.33,250532.87,2578.35,323552.45,315924.68,2246.16,5381.61,conventional,2016,DallasFtWorth +2,2016-12-11,0.69,1121306.38,643580.23,188669.07,3182.11,285874.97,279258.26,2393.13,4223.58,conventional,2016,DallasFtWorth +3,2016-12-04,0.69,1245471.58,714899.71,187180.3,3035.64,340355.93,333769.95,2664.83,3921.15,conventional,2016,DallasFtWorth +4,2016-11-27,0.9,851579.21,445308.37,158734.01,2459.77,245077.06,242623.82,2390.64,62.6,conventional,2016,DallasFtWorth +5,2016-11-20,1.0,910226.05,503088.59,183916.45,2767.57,220453.44,219494.36,746.62,212.46,conventional,2016,DallasFtWorth +6,2016-11-13,1.08,894000.36,480163.12,199890.31,3946.67,210000.26,209726.5,160.63,113.13,conventional,2016,DallasFtWorth +7,2016-11-06,1.14,894904.55,513465.9,163205.79,1932.2,216300.66,215425.13,273.66,601.87,conventional,2016,DallasFtWorth +8,2016-10-30,1.14,801081.72,432538.75,156225.53,2502.45,209814.99,208940.16,806.01,68.82,conventional,2016,DallasFtWorth +9,2016-10-23,1.08,993986.41,420151.75,240421.45,3183.27,330229.94,323804.52,4850.5,1574.92,conventional,2016,DallasFtWorth +10,2016-10-16,0.99,1021028.79,526672.37,188632.73,2336.58,303387.11,296850.76,3145.82,3390.53,conventional,2016,DallasFtWorth +11,2016-10-09,0.93,1162334.53,546920.62,283336.68,5584.96,326492.27,322925.72,2677.15,889.4,conventional,2016,DallasFtWorth +12,2016-10-02,0.95,1033290.02,534106.75,186983.98,1901.89,310297.4,301904.74,4185.65,4207.01,conventional,2016,DallasFtWorth +13,2016-09-25,0.92,1150789.41,574457.35,228335.93,1797.85,346198.28,319927.23,25698.26,572.79,conventional,2016,DallasFtWorth +14,2016-09-18,0.8,1382358.0,649265.56,269041.4,2164.71,461886.33,454623.95,5993.16,1269.22,conventional,2016,DallasFtWorth +15,2016-09-11,0.79,1308970.15,714506.15,230292.68,2193.26,361978.06,350013.34,9088.35,2876.37,conventional,2016,DallasFtWorth +16,2016-09-04,0.74,1390891.44,719597.17,256376.46,2742.25,412175.56,401417.41,5723.11,5035.04,conventional,2016,DallasFtWorth +17,2016-08-28,0.74,1260685.59,624795.23,255433.56,2998.26,377458.54,366510.31,2461.88,8486.35,conventional,2016,DallasFtWorth +18,2016-08-21,0.77,1215161.52,625055.33,231496.65,4763.04,353846.5,351623.88,902.68,1319.94,conventional,2016,DallasFtWorth +19,2016-08-14,0.88,1132112.24,612988.24,240643.34,3600.78,274879.88,270626.46,3256.28,997.14,conventional,2016,DallasFtWorth +20,2016-08-07,0.83,1244080.92,711725.98,241321.5,3385.24,287648.2,269821.55,14711.9,3114.75,conventional,2016,DallasFtWorth +21,2016-07-31,0.88,1163785.11,670208.32,213925.85,4548.4,275102.54,253660.73,19284.9,2156.91,conventional,2016,DallasFtWorth +22,2016-07-24,0.94,1188812.12,651630.85,228112.66,4388.77,304679.84,281847.87,14107.32,8724.65,conventional,2016,DallasFtWorth +23,2016-07-17,0.96,1070350.11,542103.44,210287.21,7622.87,310336.59,303925.61,2984.62,3426.36,conventional,2016,DallasFtWorth +24,2016-07-10,0.91,1080238.02,546253.47,205087.04,40097.24,288800.27,267623.31,8348.85,12828.11,conventional,2016,DallasFtWorth +25,2016-07-03,0.89,1350870.14,609482.85,273911.29,95675.27,371800.73,324924.98,16194.53,30681.22,conventional,2016,DallasFtWorth +26,2016-06-26,0.85,1277488.6,657914.92,213129.74,86435.89,320008.05,298365.1,7080.82,14562.13,conventional,2016,DallasFtWorth +27,2016-06-19,0.87,1236820.38,633636.0,250585.11,61508.01,291091.26,272250.37,12776.78,6064.11,conventional,2016,DallasFtWorth +28,2016-06-12,0.84,1272166.49,695737.15,219368.82,87625.31,269435.21,251773.31,12923.71,4738.19,conventional,2016,DallasFtWorth +29,2016-06-05,0.82,1343656.34,655971.77,313963.93,74560.86,299159.78,283260.03,8707.09,7192.66,conventional,2016,DallasFtWorth +30,2016-05-29,0.77,1354696.91,682737.6,292600.25,58729.32,320629.74,301233.11,10985.08,8411.55,conventional,2016,DallasFtWorth +31,2016-05-22,0.7,1378888.74,596612.09,352914.52,102484.78,326877.35,300179.82,21095.15,5602.38,conventional,2016,DallasFtWorth +32,2016-05-15,0.71,1366439.71,620139.86,308643.7,77616.6,360039.55,341082.58,16387.52,2569.45,conventional,2016,DallasFtWorth +33,2016-05-08,0.72,1475782.06,683286.61,307560.7,130305.44,354629.31,331925.77,19971.99,2731.55,conventional,2016,DallasFtWorth +34,2016-05-01,0.71,1433697.02,671692.86,319831.23,63779.21,378393.72,356218.87,21755.75,419.1,conventional,2016,DallasFtWorth +35,2016-04-24,0.65,1482923.45,672950.33,327965.04,102387.45,379620.63,352619.17,26934.79,66.67,conventional,2016,DallasFtWorth +36,2016-04-17,0.69,1339725.73,646060.26,232035.65,113528.02,348101.8,318316.06,28701.42,1084.32,conventional,2016,DallasFtWorth +37,2016-04-10,0.69,1424317.64,753607.6,211182.18,112050.0,347477.86,316405.11,27732.87,3339.88,conventional,2016,DallasFtWorth +38,2016-04-03,0.7,1339210.2,690160.92,245283.6,112749.94,291015.74,269775.24,20797.36,443.14,conventional,2016,DallasFtWorth +39,2016-03-27,0.76,1341740.28,631283.52,291595.08,129805.2,289056.48,270162.99,18871.92,21.57,conventional,2016,DallasFtWorth +40,2016-03-20,0.74,1347884.14,620848.72,317080.41,134806.08,275148.93,254808.07,20317.54,23.32,conventional,2016,DallasFtWorth +41,2016-03-13,0.78,1177309.05,647713.47,217853.54,118454.22,193287.82,178757.16,14527.08,3.58,conventional,2016,DallasFtWorth +42,2016-03-06,0.76,1201768.74,705096.06,198717.99,67156.78,230797.91,213428.11,17359.08,10.72,conventional,2016,DallasFtWorth +43,2016-02-28,0.74,1199630.68,717451.54,207475.39,53555.69,221148.06,202051.47,19078.77,17.82,conventional,2016,DallasFtWorth +44,2016-02-21,0.83,1006181.04,543538.14,221807.33,70976.84,169858.73,151328.72,18486.45,43.56,conventional,2016,DallasFtWorth +45,2016-02-14,0.65,1358553.29,749745.24,306905.42,135347.78,166554.85,150047.23,14228.97,2278.65,conventional,2016,DallasFtWorth +46,2016-02-07,0.71,1515264.27,766439.13,410258.37,143875.64,194691.13,155052.63,20895.02,18743.48,conventional,2016,DallasFtWorth +47,2016-01-31,0.8,1128639.48,603099.94,287514.29,78916.52,159108.73,121050.99,19753.34,18304.4,conventional,2016,DallasFtWorth +48,2016-01-24,1.02,676032.04,187313.19,289208.53,47421.48,152088.84,128164.01,12679.63,11245.2,conventional,2016,DallasFtWorth +49,2016-01-17,0.79,1164936.06,600983.92,369825.14,79252.03,114874.97,99602.79,15226.79,45.39,conventional,2016,DallasFtWorth +50,2016-01-10,0.85,1145736.97,558567.39,394770.34,54920.09,137479.15,127168.82,10290.52,19.81,conventional,2016,DallasFtWorth +51,2016-01-03,0.78,1191927.54,551921.61,411340.37,80184.39,148481.17,144358.85,3764.81,357.51,conventional,2016,DallasFtWorth +0,2016-12-25,1.04,765511.4,123942.37,206365.38,15600.07,419603.58,267985.33,151602.51,15.74,conventional,2016,Denver +1,2016-12-18,1.04,705750.83,116069.9,232182.6,10972.28,346526.05,246935.09,99582.36,8.6,conventional,2016,Denver +2,2016-12-11,0.95,764135.24,110202.78,219903.74,11427.65,422601.07,303762.84,118838.23,0.0,conventional,2016,Denver +3,2016-12-04,0.91,855989.02,129940.92,277374.59,11512.69,437160.82,141279.5,295881.32,0.0,conventional,2016,Denver +4,2016-11-27,1.3,455469.67,86311.53,131940.87,14113.35,223103.92,81706.03,141397.89,0.0,conventional,2016,Denver +5,2016-11-20,1.28,543816.6,94899.68,146401.28,15291.46,287224.18,164217.29,123006.89,0.0,conventional,2016,Denver +6,2016-11-13,1.18,661296.8,133528.94,197035.03,16010.33,314722.5,84341.19,230381.31,0.0,conventional,2016,Denver +7,2016-11-06,1.31,533947.5,110497.67,148423.26,18858.61,256167.96,81361.39,174689.45,117.12,conventional,2016,Denver +8,2016-10-30,1.13,576353.94,99369.74,239345.04,16411.08,221228.08,76674.6,144255.79,297.69,conventional,2016,Denver +9,2016-10-23,1.24,594392.87,100519.86,166315.87,19086.52,308470.62,67816.03,240555.98,98.61,conventional,2016,Denver +10,2016-10-16,1.15,673392.59,129257.01,156075.34,16490.35,371569.89,91676.55,279893.34,0.0,conventional,2016,Denver +11,2016-10-09,1.08,758236.76,149621.92,240858.41,13026.15,354730.28,85264.87,269465.41,0.0,conventional,2016,Denver +12,2016-10-02,1.18,677071.87,124504.59,172835.74,16447.85,363283.69,76212.51,287071.18,0.0,conventional,2016,Denver +13,2016-09-25,1.15,680946.51,135131.95,168060.0,16829.34,360925.22,91074.56,269661.77,188.89,conventional,2016,Denver +14,2016-09-18,1.02,757358.11,134607.83,198214.42,16328.76,408207.1,87026.05,320842.16,338.89,conventional,2016,Denver +15,2016-09-11,0.98,791566.05,112292.42,227729.26,14432.98,437111.39,93898.07,342085.54,1127.78,conventional,2016,Denver +16,2016-09-04,0.91,924278.16,146921.58,254464.01,17239.6,505652.97,83143.66,422509.31,0.0,conventional,2016,Denver +17,2016-08-28,0.91,957464.14,138029.18,282568.24,13197.13,523669.59,131367.44,390977.15,1325.0,conventional,2016,Denver +18,2016-08-21,1.22,603007.72,150776.14,190694.58,13732.79,247804.21,119819.7,127269.23,715.28,conventional,2016,Denver +19,2016-08-14,1.18,657981.41,120449.87,189114.15,19582.82,328834.57,100509.79,228324.78,0.0,conventional,2016,Denver +20,2016-08-07,1.14,695116.3,168010.47,183568.83,18624.73,324912.27,151220.54,172079.23,1612.5,conventional,2016,Denver +21,2016-07-31,1.15,673588.45,144730.95,178801.08,19083.49,330972.93,200378.09,129901.78,693.06,conventional,2016,Denver +22,2016-07-24,1.17,690893.4,128025.08,187555.04,19241.11,356072.17,135290.89,217563.22,3218.06,conventional,2016,Denver +23,2016-07-17,1.07,771606.04,145158.79,204309.28,19016.94,403121.03,148177.84,254837.63,105.56,conventional,2016,Denver +24,2016-07-10,1.04,835116.1,190377.09,230361.94,20484.14,393892.93,137890.73,252846.64,3155.56,conventional,2016,Denver +25,2016-07-03,1.03,815698.87,170576.29,256861.03,21306.98,366954.57,200147.24,162792.05,4015.28,conventional,2016,Denver +26,2016-06-26,0.98,773677.84,165858.8,229712.84,17278.44,360827.76,146703.58,213090.85,1033.33,conventional,2016,Denver +27,2016-06-19,1.0,791013.5,188105.59,224899.28,20738.26,357270.37,96129.71,260598.95,541.71,conventional,2016,Denver +28,2016-06-12,0.96,819664.78,179533.58,242834.17,19838.57,377458.46,91438.85,284376.91,1642.7,conventional,2016,Denver +29,2016-06-05,0.85,939081.28,184534.9,326966.95,16485.85,411093.58,83337.89,327755.69,0.0,conventional,2016,Denver +30,2016-05-29,0.85,977871.04,181470.96,282618.43,33023.48,480758.17,79916.14,400601.75,240.28,conventional,2016,Denver +31,2016-05-22,0.9,932146.56,160299.04,266856.24,17526.17,487465.11,79603.12,407238.98,623.01,conventional,2016,Denver +32,2016-05-15,0.9,952354.86,159348.75,252574.36,39117.61,501314.14,71486.17,427648.8,2179.17,conventional,2016,Denver +33,2016-05-08,0.8,1113912.58,181354.77,427697.05,13291.11,491569.65,73293.05,416966.26,1310.34,conventional,2016,Denver +34,2016-05-01,0.87,819111.24,153151.67,261525.49,15299.33,389134.75,155354.69,231175.89,2604.17,conventional,2016,Denver +35,2016-04-24,0.93,661913.55,132550.99,225788.65,11418.75,292155.16,89444.44,200703.78,2006.94,conventional,2016,Denver +36,2016-04-17,0.78,1011265.53,171831.9,285967.94,27995.98,525469.71,59672.84,461184.45,4612.42,conventional,2016,Denver +37,2016-04-10,0.77,982817.77,127374.53,353040.81,11020.71,491381.72,178429.72,311446.44,1505.56,conventional,2016,Denver +38,2016-04-03,0.83,829424.24,153221.66,209188.36,25632.09,441382.13,39142.16,402239.97,0.0,conventional,2016,Denver +39,2016-03-27,0.95,716900.4,150919.31,208644.01,20423.5,336913.58,47124.43,289789.15,0.0,conventional,2016,Denver +40,2016-03-20,0.73,1005859.79,138938.88,360370.27,10950.53,495600.11,46784.27,448815.84,0.0,conventional,2016,Denver +41,2016-03-13,0.83,824792.73,158016.76,261685.82,33866.06,371224.09,50279.53,320943.18,1.38,conventional,2016,Denver +42,2016-03-06,0.98,671667.78,145893.9,242906.02,18706.34,264161.52,47418.17,216743.35,0.0,conventional,2016,Denver +43,2016-02-28,0.74,1058089.41,118099.68,300335.55,62908.07,576746.11,43136.98,533591.97,17.16,conventional,2016,Denver +44,2016-02-21,0.73,955582.65,155250.0,331998.14,14973.1,453361.41,43379.59,409969.42,12.4,conventional,2016,Denver +45,2016-02-14,0.7,966134.31,178547.07,277085.15,17992.56,492509.53,43323.93,449185.6,0.0,conventional,2016,Denver +46,2016-02-07,0.63,1365558.26,230721.51,557897.36,18935.14,558004.25,50217.97,507786.28,0.0,conventional,2016,Denver +47,2016-01-31,0.8,892702.46,167669.42,270481.63,27489.66,427061.75,45613.25,381448.5,0.0,conventional,2016,Denver +48,2016-01-24,0.6,1195521.28,25727.06,404617.2,15454.69,749722.33,43669.49,706052.84,0.0,conventional,2016,Denver +49,2016-01-17,0.66,1245174.24,118599.67,403009.94,31009.77,692554.86,43026.58,649528.28,0.0,conventional,2016,Denver +50,2016-01-10,0.72,1094945.73,146631.13,366330.53,37684.11,544299.96,44731.85,499568.11,0.0,conventional,2016,Denver +51,2016-01-03,0.6,1295246.27,114121.88,526048.62,10374.52,644701.25,33033.97,611655.03,12.25,conventional,2016,Denver +0,2016-12-25,1.06,319957.45,89825.0,59758.69,7121.96,163251.8,161040.94,2191.64,19.22,conventional,2016,Detroit +1,2016-12-18,1.05,298755.3,82536.6,85859.26,10805.16,119554.28,117398.2,2071.85,84.23,conventional,2016,Detroit +2,2016-12-11,0.95,333109.65,135589.71,44003.6,5245.09,148271.25,145974.91,2039.21,257.13,conventional,2016,Detroit +3,2016-12-04,0.81,545216.52,156549.99,173437.9,22752.47,192476.16,188722.8,3634.98,118.38,conventional,2016,Detroit +4,2016-11-27,1.18,262530.31,86557.85,47554.19,4974.63,123443.64,121146.63,2289.93,7.08,conventional,2016,Detroit +5,2016-11-20,1.35,243576.96,76104.87,46523.68,5327.53,115620.88,114230.31,1381.66,8.91,conventional,2016,Detroit +6,2016-11-13,1.39,236523.09,78974.4,43868.31,5687.17,107993.21,107105.62,873.33,14.26,conventional,2016,Detroit +7,2016-11-06,1.4,231422.37,80604.72,46242.75,5688.67,98886.23,97805.5,1073.59,7.14,conventional,2016,Detroit +8,2016-10-30,1.4,193940.78,75576.83,41553.71,4805.57,72004.67,70936.81,1058.93,8.93,conventional,2016,Detroit +9,2016-10-23,1.35,227233.92,84500.57,51517.1,8023.49,83192.76,80684.45,2492.26,16.05,conventional,2016,Detroit +10,2016-10-16,1.26,256744.34,83560.9,51486.24,6767.11,114930.09,112344.57,2581.96,3.56,conventional,2016,Detroit +11,2016-10-09,1.27,253886.8,85266.6,50763.68,6966.14,110890.38,104611.95,6147.48,130.95,conventional,2016,Detroit +12,2016-10-02,1.25,266892.47,83699.68,49320.17,7837.66,126034.96,118414.21,7604.7,16.05,conventional,2016,Detroit +13,2016-09-25,1.24,274937.38,89632.07,50863.12,8202.35,126239.84,124695.62,1542.45,1.77,conventional,2016,Detroit +14,2016-09-18,1.1,320748.32,105595.83,53981.52,8602.38,152568.59,147793.11,4601.38,174.1,conventional,2016,Detroit +15,2016-09-11,1.09,339890.13,123013.74,57728.78,10905.57,148242.04,143846.64,4395.4,0.0,conventional,2016,Detroit +16,2016-09-04,1.08,326335.52,119899.31,56047.32,11880.35,138508.54,138186.39,287.05,35.1,conventional,2016,Detroit +17,2016-08-28,1.01,353420.52,123353.98,54190.11,10761.35,165115.08,164229.27,533.04,352.77,conventional,2016,Detroit +18,2016-08-21,1.15,316859.74,121469.45,53707.3,13151.78,128531.21,127061.88,108.89,1360.44,conventional,2016,Detroit +19,2016-08-14,1.08,367007.17,127204.13,53136.76,15900.17,170766.11,168988.87,1081.03,696.21,conventional,2016,Detroit +20,2016-08-07,1.13,352764.25,127164.35,60621.61,20552.56,144425.73,124979.56,18669.46,776.71,conventional,2016,Detroit +21,2016-07-31,1.16,340176.41,133525.93,51178.25,23139.38,132332.85,122542.75,5808.23,3981.87,conventional,2016,Detroit +22,2016-07-24,1.15,354577.28,133984.58,39970.66,40559.67,140062.37,111538.67,10056.37,18467.33,conventional,2016,Detroit +23,2016-07-17,1.17,328237.93,126817.85,41460.73,41888.34,118071.01,100212.75,906.85,16951.41,conventional,2016,Detroit +24,2016-07-10,1.18,311241.09,117420.11,41580.84,38634.53,113605.61,82669.6,14996.21,15939.8,conventional,2016,Detroit +25,2016-07-03,1.17,336701.66,127175.1,42029.92,37960.27,129536.37,113573.12,2084.25,13879.0,conventional,2016,Detroit +26,2016-06-26,1.13,344391.38,116197.85,50835.79,57169.98,120187.76,101180.43,242.82,18764.51,conventional,2016,Detroit +27,2016-06-19,1.0,442961.17,149055.97,60807.9,75225.17,157872.13,130698.09,1731.45,25442.59,conventional,2016,Detroit +28,2016-06-12,0.98,414532.49,162656.29,38374.42,38384.9,175116.88,160647.51,1915.84,12553.53,conventional,2016,Detroit +29,2016-06-05,0.92,473131.2,121769.89,90921.04,123670.88,136769.39,94467.61,3849.16,38452.62,conventional,2016,Detroit +30,2016-05-29,1.04,348557.33,127403.87,45533.0,38082.17,137538.29,122656.94,4439.52,10441.83,conventional,2016,Detroit +31,2016-05-22,1.07,303330.62,118921.39,40268.68,35077.81,109062.74,94755.66,4350.37,9956.71,conventional,2016,Detroit +32,2016-05-15,0.86,485653.27,139497.99,86027.72,120894.82,139232.74,86915.56,16445.31,35871.87,conventional,2016,Detroit +33,2016-05-08,0.96,500424.55,168696.93,84169.69,107930.15,139627.78,91310.2,21053.46,27264.12,conventional,2016,Detroit +34,2016-05-01,1.0,319391.58,109542.32,48135.67,46048.82,115664.77,97920.55,6527.68,11216.54,conventional,2016,Detroit +35,2016-04-24,1.0,331109.85,116267.83,50906.17,45925.85,118010.0,102880.88,6973.0,8156.12,conventional,2016,Detroit +36,2016-04-17,0.97,447346.61,96173.74,116000.57,132061.08,103111.22,66168.66,6262.89,30679.67,conventional,2016,Detroit +37,2016-04-10,1.03,312995.88,126215.49,30729.07,44982.2,111069.12,92085.27,10172.56,8811.29,conventional,2016,Detroit +38,2016-04-03,1.02,335108.11,121653.22,33903.57,72329.16,107222.16,65916.23,27480.29,13825.64,conventional,2016,Detroit +39,2016-03-27,1.05,378431.9,80333.46,65448.49,119488.87,113161.08,55446.34,37647.04,20067.7,conventional,2016,Detroit +40,2016-03-20,1.09,371639.1,78492.11,67761.91,111819.43,113565.65,58374.48,35829.04,19362.13,conventional,2016,Detroit +41,2016-03-13,1.12,299527.55,82406.98,42593.59,65646.79,108880.19,66513.73,32804.22,9562.24,conventional,2016,Detroit +42,2016-03-06,0.97,441920.14,79240.24,86747.64,154833.0,121099.26,47041.48,43570.47,30487.31,conventional,2016,Detroit +43,2016-02-28,1.13,342465.19,82100.44,66020.0,108296.25,86048.5,49708.39,19350.34,16989.77,conventional,2016,Detroit +44,2016-02-21,1.2,247820.38,76211.84,42300.46,62843.26,66464.82,47259.62,10247.76,8957.44,conventional,2016,Detroit +45,2016-02-14,1.0,334544.52,129795.42,51191.64,71030.49,82526.97,60254.29,12167.81,10104.87,conventional,2016,Detroit +46,2016-02-07,0.77,594784.92,169611.09,118251.74,192417.1,114504.99,58664.35,17270.46,38570.18,conventional,2016,Detroit +47,2016-01-31,1.04,364612.83,131406.58,59678.32,96298.92,77229.01,49335.73,12767.39,15125.89,conventional,2016,Detroit +48,2016-01-24,0.94,489584.58,154051.35,95837.97,151279.99,88415.27,58403.04,4513.96,25498.27,conventional,2016,Detroit +49,2016-01-17,1.11,293246.54,82804.19,46382.59,78514.15,85545.61,70769.35,4505.37,10270.89,conventional,2016,Detroit +50,2016-01-10,1.1,325997.55,133286.56,49832.73,73427.07,69451.19,57082.27,2453.77,9915.15,conventional,2016,Detroit +51,2016-01-03,0.86,492699.87,165617.47,93942.49,143911.67,89228.24,51669.47,2096.24,35462.53,conventional,2016,Detroit +0,2016-12-25,1.33,149348.88,1345.56,91323.33,3768.64,52911.35,47453.6,5227.71,230.04,conventional,2016,GrandRapids +1,2016-12-18,1.14,161136.65,908.23,109288.75,4631.16,46308.51,42335.09,3947.09,26.33,conventional,2016,GrandRapids +2,2016-12-11,1.2,128166.44,1044.89,60598.79,2268.01,64254.75,58703.61,5538.87,12.27,conventional,2016,GrandRapids +3,2016-12-04,0.92,263904.24,1092.97,189101.7,9125.63,64583.94,61980.87,2547.12,55.95,conventional,2016,GrandRapids +4,2016-11-27,1.44,103697.69,1329.56,62173.5,2035.91,38158.72,34494.75,3626.4,37.57,conventional,2016,GrandRapids +5,2016-11-20,1.46,127392.78,1165.74,82541.69,2576.45,41108.9,39610.98,1472.27,25.65,conventional,2016,GrandRapids +6,2016-11-13,1.59,118566.57,1340.96,62841.77,2934.42,51449.42,50551.78,892.44,5.2,conventional,2016,GrandRapids +7,2016-11-06,1.67,100001.45,1858.84,58869.42,2785.71,36487.48,34753.44,1713.3,20.74,conventional,2016,GrandRapids +8,2016-10-30,1.42,107013.58,1991.45,80587.89,2821.22,21613.02,17160.23,4411.44,41.35,conventional,2016,GrandRapids +9,2016-10-23,1.72,100904.77,1234.72,64735.86,3120.36,31813.83,26017.7,5758.25,37.88,conventional,2016,GrandRapids +10,2016-10-16,1.63,117842.82,1510.9,69625.5,3811.2,42895.22,38573.86,4300.71,20.65,conventional,2016,GrandRapids +11,2016-10-09,1.62,116477.56,1531.38,67528.39,3408.67,44009.12,39395.64,4580.81,32.67,conventional,2016,GrandRapids +12,2016-10-02,1.6,122091.54,1617.76,67660.2,4166.81,48646.77,43757.18,4868.96,20.63,conventional,2016,GrandRapids +13,2016-09-25,1.55,137599.07,2757.72,75047.32,4714.89,55079.14,47569.38,7490.85,18.91,conventional,2016,GrandRapids +14,2016-09-18,1.49,139511.61,1406.64,82346.79,4837.74,50920.44,44436.27,6479.01,5.16,conventional,2016,GrandRapids +15,2016-09-11,1.58,136492.43,1710.59,76987.54,6085.4,51708.9,46524.9,5159.92,24.08,conventional,2016,GrandRapids +16,2016-09-04,1.52,142913.72,2698.76,79726.85,8313.96,52174.15,47210.76,4235.26,728.13,conventional,2016,GrandRapids +17,2016-08-28,1.45,143049.62,2477.85,68530.49,10744.95,61296.33,54347.32,4939.34,2009.67,conventional,2016,GrandRapids +18,2016-08-21,1.63,132894.77,2041.86,66472.24,18506.96,45873.71,39617.39,1742.09,4514.23,conventional,2016,GrandRapids +19,2016-08-14,1.53,147711.44,1835.81,61893.13,23661.83,60320.67,49618.78,3263.09,7438.8,conventional,2016,GrandRapids +20,2016-08-07,1.59,145207.86,2219.98,72545.05,19401.04,51041.79,42209.88,3446.15,5385.76,conventional,2016,GrandRapids +21,2016-07-31,1.6,142302.47,2218.73,78075.95,12112.22,49895.57,44479.98,3058.86,2356.73,conventional,2016,GrandRapids +22,2016-07-24,1.6,149002.57,2349.93,66146.5,26206.73,54299.41,40486.7,3842.5,9970.21,conventional,2016,GrandRapids +23,2016-07-17,1.58,146730.62,2136.76,69205.5,24890.18,50498.18,38583.22,3582.14,8332.82,conventional,2016,GrandRapids +24,2016-07-10,1.6,133747.66,1971.43,70502.43,21317.82,39955.98,25889.86,4005.05,10061.07,conventional,2016,GrandRapids +25,2016-07-03,1.49,159566.9,2334.7,79978.16,20020.38,57233.66,42381.97,4598.05,10253.64,conventional,2016,GrandRapids +26,2016-06-26,1.26,183547.1,2370.43,104539.76,14725.39,61911.52,49679.16,4816.94,7415.42,conventional,2016,GrandRapids +27,2016-06-19,1.26,216299.96,3034.67,130169.29,18998.81,64097.19,49222.23,4610.79,10264.17,conventional,2016,GrandRapids +28,2016-06-12,1.36,167703.13,3254.28,93760.09,2234.0,68454.76,62658.2,4765.73,1030.83,conventional,2016,GrandRapids +29,2016-06-05,0.93,310903.8,1814.45,218134.77,6825.69,84128.89,76847.62,6582.54,698.73,conventional,2016,GrandRapids +30,2016-05-29,1.32,193459.52,2079.99,117665.38,2496.3,71217.85,65724.71,5039.38,453.76,conventional,2016,GrandRapids +31,2016-05-22,1.31,151840.62,1949.63,84537.07,4986.35,60367.57,50741.23,7308.23,2318.11,conventional,2016,GrandRapids +32,2016-05-15,0.88,295706.69,1673.41,211337.24,6471.52,76224.52,67998.45,7823.6,402.47,conventional,2016,GrandRapids +33,2016-05-08,1.04,272057.12,1949.46,201017.01,5353.11,63737.54,56652.84,6645.68,439.02,conventional,2016,GrandRapids +34,2016-05-01,1.12,191903.31,1858.07,131194.43,3002.96,55847.85,49040.43,6737.08,70.34,conventional,2016,GrandRapids +35,2016-04-24,1.07,181857.18,2001.47,113325.77,3088.37,63441.57,55324.04,8087.07,30.46,conventional,2016,GrandRapids +36,2016-04-17,0.89,332191.52,1877.71,256399.93,8605.75,65308.13,58861.1,6229.98,217.05,conventional,2016,GrandRapids +37,2016-04-10,1.17,155143.97,2129.18,95776.95,3412.42,53825.42,47307.77,5850.39,667.26,conventional,2016,GrandRapids +38,2016-04-03,1.1,156883.18,2410.14,97646.19,3234.16,53592.69,47054.51,6427.73,110.45,conventional,2016,GrandRapids +39,2016-03-27,0.99,216788.92,2298.8,146037.81,5101.46,63350.85,53892.93,9316.77,141.15,conventional,2016,GrandRapids +40,2016-03-20,1.07,208712.19,2126.48,140410.18,4357.31,61818.22,55984.2,5768.11,65.91,conventional,2016,GrandRapids +41,2016-03-13,1.15,149119.51,2180.17,91194.54,2607.73,53137.07,43482.47,9621.76,32.84,conventional,2016,GrandRapids +42,2016-03-06,0.91,259568.21,1974.52,191952.31,7752.62,57888.76,54011.93,3633.73,243.1,conventional,2016,GrandRapids +43,2016-02-28,1.07,202356.13,2248.94,141141.8,5163.51,53801.88,49889.74,3808.83,103.31,conventional,2016,GrandRapids +44,2016-02-21,1.16,142681.62,3581.34,93603.59,4067.71,41428.98,36166.24,5150.74,112.0,conventional,2016,GrandRapids +45,2016-02-14,1.13,154975.46,3573.23,98244.04,14048.13,39110.06,28771.2,6755.11,3583.75,conventional,2016,GrandRapids +46,2016-02-07,0.94,290555.59,3935.71,205006.57,43866.57,37746.74,23628.97,2405.92,11711.85,conventional,2016,GrandRapids +47,2016-01-31,1.13,182986.71,3588.83,126342.36,14941.42,38114.1,29860.4,3444.96,4808.74,conventional,2016,GrandRapids +48,2016-01-24,0.94,260598.64,2407.36,195585.66,16377.2,46228.42,38643.51,2467.54,5117.37,conventional,2016,GrandRapids +49,2016-01-17,1.05,172166.36,3810.41,106814.67,5407.0,56134.28,52363.98,2469.87,1300.43,conventional,2016,GrandRapids +50,2016-01-10,1.17,160432.54,3614.64,110381.2,3921.19,42515.51,38446.6,3621.68,447.23,conventional,2016,GrandRapids +51,2016-01-03,0.92,258889.23,3985.19,191590.43,12294.17,51019.44,42961.74,2684.87,5372.83,conventional,2016,GrandRapids +0,2016-12-25,1.11,2954314.99,446144.28,1256639.93,146507.02,1105023.76,789983.43,306951.98,8088.35,conventional,2016,GreatLakes +1,2016-12-18,1.11,2791515.27,466186.32,1327455.76,146478.91,851394.28,629888.17,211183.0,10323.11,conventional,2016,GreatLakes +2,2016-12-11,1.03,3048518.15,593674.17,1251696.43,134247.97,1068899.58,767092.05,290596.83,11210.7,conventional,2016,GreatLakes +3,2016-12-04,0.97,3854099.9,674158.39,1769353.76,179768.34,1230819.41,854171.9,371804.35,4843.16,conventional,2016,GreatLakes +4,2016-11-27,1.18,2385048.43,528089.35,937488.16,109137.29,810333.63,590905.27,219152.65,275.71,conventional,2016,GreatLakes +5,2016-11-20,1.23,2637621.79,482408.81,1176230.69,109089.43,869892.86,583552.66,283781.81,2558.39,conventional,2016,GreatLakes +6,2016-11-13,1.41,2348814.17,378864.27,1003256.02,103230.89,863462.99,598773.66,264201.22,488.11,conventional,2016,GreatLakes +7,2016-11-06,1.48,2222383.47,398012.36,946981.93,91683.48,785705.7,520297.39,264747.16,661.15,conventional,2016,GreatLakes +8,2016-10-30,1.36,2275351.91,456451.3,955805.27,88514.18,774581.16,433158.18,335025.88,6397.1,conventional,2016,GreatLakes +9,2016-10-23,1.35,2528597.22,480949.33,1062333.36,105335.31,879979.22,508417.95,358809.13,12752.14,conventional,2016,GreatLakes +10,2016-10-16,1.4,2517672.23,399216.44,1126801.36,111904.83,879749.6,593425.23,274655.06,11669.31,conventional,2016,GreatLakes +11,2016-10-09,1.35,2624202.9,419930.06,1162528.89,129381.16,912362.79,571072.59,325870.37,15419.83,conventional,2016,GreatLakes +12,2016-10-02,1.38,2618805.67,389791.16,1183844.04,129395.86,915774.61,591584.72,307678.2,16511.69,conventional,2016,GreatLakes +13,2016-09-25,1.37,2834326.48,484580.09,1282328.66,144883.2,922534.53,642865.75,263775.26,15893.52,conventional,2016,GreatLakes +14,2016-09-18,1.28,2996317.15,536657.14,1278413.08,150023.52,1031223.41,741802.17,280261.57,9159.67,conventional,2016,GreatLakes +15,2016-09-11,1.3,3078051.63,552133.48,1351448.1,156892.83,1017577.22,787725.17,228409.21,1442.84,conventional,2016,GreatLakes +16,2016-09-04,1.3,3084199.23,512921.31,1430594.08,158776.84,981907.0,779092.84,197492.55,5321.61,conventional,2016,GreatLakes +17,2016-08-28,1.27,3025330.44,456513.05,1330166.96,166364.88,1072285.55,841776.91,207892.75,22615.89,conventional,2016,GreatLakes +18,2016-08-21,1.34,2933973.86,450526.72,1308748.45,180362.15,994336.54,756135.72,215616.75,22584.07,conventional,2016,GreatLakes +19,2016-08-14,1.3,3134414.15,459026.42,1316694.09,217555.14,1141138.5,875058.46,239773.16,26306.88,conventional,2016,GreatLakes +20,2016-08-07,1.33,3106108.92,449400.31,1387946.82,219477.32,1049284.47,767194.17,255073.17,27017.13,conventional,2016,GreatLakes +21,2016-07-31,1.34,3013426.04,448128.25,1374844.51,207792.14,982661.14,742994.62,212638.07,27028.45,conventional,2016,GreatLakes +22,2016-07-24,1.32,3212818.19,457452.9,1381175.94,293304.81,1080884.54,743699.41,242488.33,94696.8,conventional,2016,GreatLakes +23,2016-07-17,1.25,3267857.63,429390.43,1441657.56,291136.56,1105673.08,754051.14,256758.81,94863.13,conventional,2016,GreatLakes +24,2016-07-10,1.24,3327062.2,478536.66,1500516.86,328564.87,1019443.81,686496.96,228290.63,104656.22,conventional,2016,GreatLakes +25,2016-07-03,1.13,4020724.58,574425.88,1781703.48,367119.34,1297475.88,930189.98,261535.63,105750.27,conventional,2016,GreatLakes +26,2016-06-26,1.13,3643417.33,609218.12,1609911.48,376048.28,1048239.45,778315.95,180042.48,89881.02,conventional,2016,GreatLakes +27,2016-06-19,1.1,3955098.89,608467.47,1766243.34,431784.45,1148603.63,804836.17,242409.56,101357.9,conventional,2016,GreatLakes +28,2016-06-12,1.15,3443333.94,593779.04,1519607.27,285261.84,1044685.79,858070.55,135926.11,50689.13,conventional,2016,GreatLakes +29,2016-06-05,1.01,4188245.99,467971.13,2147776.06,487106.11,1085392.69,776263.67,220019.19,89109.83,conventional,2016,GreatLakes +30,2016-05-29,1.05,3925300.14,583307.07,1952011.72,280608.56,1109372.79,868963.09,210973.46,29436.24,conventional,2016,GreatLakes +31,2016-05-22,1.0,3705262.31,565308.46,1785951.31,285242.59,1068759.95,777740.27,252029.83,38989.85,conventional,2016,GreatLakes +32,2016-05-15,0.91,4324700.33,541979.64,2165410.51,491344.53,1125965.65,774859.17,273929.8,77176.68,conventional,2016,GreatLakes +33,2016-05-08,0.94,4460481.53,610996.39,2239470.6,471428.29,1138586.25,768004.44,312684.34,57897.47,conventional,2016,GreatLakes +34,2016-05-01,0.94,3801508.26,573869.79,1927106.29,320732.21,979799.97,746942.08,208595.67,24262.22,conventional,2016,GreatLakes +35,2016-04-24,0.96,3735389.44,624804.28,1787143.44,323412.26,1000029.46,759838.81,217342.89,22847.76,conventional,2016,GreatLakes +36,2016-04-17,0.98,4154218.26,441314.08,2322236.11,508030.41,882637.66,603191.07,210717.86,68728.73,conventional,2016,GreatLakes +37,2016-04-10,1.05,3126127.34,497880.34,1454195.66,299669.72,874381.62,628085.89,225792.03,20503.7,conventional,2016,GreatLakes +38,2016-04-03,1.04,2968139.47,441199.94,1373509.11,360264.17,793166.25,494820.07,265657.44,32688.74,conventional,2016,GreatLakes +39,2016-03-27,0.97,3557777.32,370933.32,1846740.22,464302.08,875801.7,541168.93,286623.54,48009.23,conventional,2016,GreatLakes +40,2016-03-20,1.06,3368333.6,372244.77,1730562.82,425736.86,839789.15,549844.69,245562.93,44381.53,conventional,2016,GreatLakes +41,2016-03-13,1.03,3145897.89,370032.77,1668502.58,319148.88,788213.66,531244.13,232255.44,24714.09,conventional,2016,GreatLakes +42,2016-03-06,0.98,3818114.32,372605.84,2069786.74,534051.03,841670.71,522649.1,250138.15,68883.46,conventional,2016,GreatLakes +43,2016-02-28,1.05,3419909.75,369566.69,1862761.88,427177.0,760404.18,512998.19,207221.18,40184.81,conventional,2016,GreatLakes +44,2016-02-21,1.07,2837626.92,339775.05,1566426.52,295941.81,635483.54,453590.22,163400.48,18492.84,conventional,2016,GreatLakes +45,2016-02-14,0.96,3386951.48,502690.77,1784879.1,352376.13,747005.48,499432.73,216563.12,31009.63,conventional,2016,GreatLakes +46,2016-02-07,0.85,4865296.26,652666.36,2644419.02,704466.56,863744.32,516542.03,238503.11,108699.18,conventional,2016,GreatLakes +47,2016-01-31,1.04,3330752.29,496596.01,1762047.32,422063.61,650045.35,443401.36,158608.4,48035.59,conventional,2016,GreatLakes +48,2016-01-24,0.95,3806974.62,473647.35,2043221.89,553447.22,736658.16,513809.98,150810.3,72037.88,conventional,2016,GreatLakes +49,2016-01-17,1.05,3166941.66,364949.96,1695887.65,357831.91,748272.14,554459.07,167786.33,26026.74,conventional,2016,GreatLakes +50,2016-01-10,1.06,3310201.06,503914.83,1753942.06,352247.15,700097.02,488806.3,185907.38,25383.34,conventional,2016,GreatLakes +51,2016-01-03,0.92,4065583.41,604697.28,2200074.78,543717.88,717093.47,438279.98,147920.69,130892.8,conventional,2016,GreatLakes +0,2016-12-25,1.45,186180.0,28999.77,97383.52,1529.57,58267.14,55674.38,2560.92,31.84,conventional,2016,HarrisburgScranton +1,2016-12-18,1.21,210917.45,25826.37,133480.1,208.63,51402.35,50217.77,1184.58,0.0,conventional,2016,HarrisburgScranton +2,2016-12-11,1.26,202600.72,27491.67,115422.37,112.85,59573.83,57170.42,2403.41,0.0,conventional,2016,HarrisburgScranton +3,2016-12-04,1.4,172416.11,27161.44,93528.53,71.39,51654.75,50780.22,800.92,73.61,conventional,2016,HarrisburgScranton +4,2016-11-27,1.4,155286.15,26022.48,81008.09,83.97,48171.61,47430.94,740.67,0.0,conventional,2016,HarrisburgScranton +5,2016-11-20,1.37,191755.51,29191.47,91102.95,117.32,71343.77,70656.64,687.13,0.0,conventional,2016,HarrisburgScranton +6,2016-11-13,1.42,197920.72,39007.12,92584.51,127.17,66201.92,65222.61,972.64,6.67,conventional,2016,HarrisburgScranton +7,2016-11-06,1.55,174837.42,40523.19,82049.79,151.56,52112.88,51326.63,756.25,30.0,conventional,2016,HarrisburgScranton +8,2016-10-30,1.59,171652.4,35332.98,78894.91,87.59,57336.92,56958.76,378.16,0.0,conventional,2016,HarrisburgScranton +9,2016-10-23,1.6,195809.34,35724.11,99575.79,113.66,60395.78,60146.33,186.95,62.5,conventional,2016,HarrisburgScranton +10,2016-10-16,1.49,205728.4,43579.25,95964.8,176.04,66008.31,65296.73,711.58,0.0,conventional,2016,HarrisburgScranton +11,2016-10-09,1.42,219089.52,43010.81,111487.02,218.09,64373.6,63388.04,985.56,0.0,conventional,2016,HarrisburgScranton +12,2016-10-02,1.4,214726.86,42262.02,106682.04,191.99,65590.81,64688.8,902.01,0.0,conventional,2016,HarrisburgScranton +13,2016-09-25,1.37,222019.37,68045.46,89410.32,183.69,64379.9,63530.59,771.53,77.78,conventional,2016,HarrisburgScranton +14,2016-09-18,1.26,220697.92,75557.67,73638.24,176.87,71325.14,69128.89,2196.25,0.0,conventional,2016,HarrisburgScranton +15,2016-09-11,1.19,272611.45,108308.69,103071.11,124.41,61107.24,59029.37,2061.76,16.11,conventional,2016,HarrisburgScranton +16,2016-09-04,1.15,311176.62,77540.78,112618.27,230.96,120786.61,119477.01,1159.6,150.0,conventional,2016,HarrisburgScranton +17,2016-08-28,1.32,269377.79,45946.25,114244.06,1086.91,108100.57,102788.68,2348.73,2963.16,conventional,2016,HarrisburgScranton +18,2016-08-21,1.28,258309.18,41521.93,119685.36,101.31,97000.58,85855.55,7905.03,3240.0,conventional,2016,HarrisburgScranton +19,2016-08-14,1.22,272099.07,49712.54,114887.12,193.77,107305.64,98315.72,6769.92,2220.0,conventional,2016,HarrisburgScranton +20,2016-08-07,1.24,267082.86,56263.05,109039.94,538.07,101241.8,96274.55,1282.25,3685.0,conventional,2016,HarrisburgScranton +21,2016-07-31,1.37,253671.67,48175.7,110154.96,346.77,94994.24,90147.67,591.57,4255.0,conventional,2016,HarrisburgScranton +22,2016-07-24,1.36,247275.14,42713.11,103033.69,272.62,101255.72,92482.57,553.15,8220.0,conventional,2016,HarrisburgScranton +23,2016-07-17,1.25,249117.51,37155.26,99016.77,207.3,112738.18,100384.09,1258.61,11095.48,conventional,2016,HarrisburgScranton +24,2016-07-10,1.21,274783.17,43879.44,118215.77,436.85,112251.11,102165.03,1667.75,8418.33,conventional,2016,HarrisburgScranton +25,2016-07-03,1.23,287688.42,41551.5,129783.55,762.14,115591.23,103961.69,867.73,10761.81,conventional,2016,HarrisburgScranton +26,2016-06-26,1.24,277479.27,38571.49,141142.92,592.96,97171.9,91756.81,984.7,4430.39,conventional,2016,HarrisburgScranton +27,2016-06-19,1.26,267235.79,41124.61,132642.19,298.49,93170.5,86477.48,1092.3,5600.72,conventional,2016,HarrisburgScranton +28,2016-06-12,1.24,250231.06,43253.79,114426.76,124.76,92425.75,85233.81,1541.94,5650.0,conventional,2016,HarrisburgScranton +29,2016-06-05,1.23,267225.88,40843.23,134735.41,191.75,91455.49,84588.68,5236.81,1630.0,conventional,2016,HarrisburgScranton +30,2016-05-29,1.13,280015.07,44168.8,143022.78,136.56,92686.93,79281.93,12975.0,430.0,conventional,2016,HarrisburgScranton +31,2016-05-22,1.12,257598.79,40865.69,124677.68,182.79,91872.63,90017.38,775.25,1080.0,conventional,2016,HarrisburgScranton +32,2016-05-15,1.08,270638.76,34543.04,159858.65,227.18,76009.89,73289.96,2719.93,0.0,conventional,2016,HarrisburgScranton +33,2016-05-08,0.91,373544.69,47270.41,247409.27,357.62,78507.39,77855.49,651.9,0.0,conventional,2016,HarrisburgScranton +34,2016-05-01,0.99,316410.59,52276.59,185445.08,362.87,78326.05,76346.78,1979.27,0.0,conventional,2016,HarrisburgScranton +35,2016-04-24,1.09,283535.19,50495.46,157366.58,235.32,75437.83,74325.2,1112.63,0.0,conventional,2016,HarrisburgScranton +36,2016-04-17,1.05,257743.57,42204.53,135971.63,137.93,79429.48,76854.18,2575.3,0.0,conventional,2016,HarrisburgScranton +37,2016-04-10,1.05,237139.23,42096.16,116591.89,168.03,78283.15,75903.63,2379.52,0.0,conventional,2016,HarrisburgScranton +38,2016-04-03,1.13,186673.69,36366.56,88833.96,90.37,61382.8,59419.89,1962.91,0.0,conventional,2016,HarrisburgScranton +39,2016-03-27,1.15,247389.76,35550.74,135847.91,156.57,75834.54,74484.74,1349.8,0.0,conventional,2016,HarrisburgScranton +40,2016-03-20,1.08,269456.81,35428.08,159452.29,270.23,74306.21,72833.96,1472.25,0.0,conventional,2016,HarrisburgScranton +41,2016-03-13,1.13,256785.76,35473.08,148078.39,202.18,73032.11,71738.99,1293.12,0.0,conventional,2016,HarrisburgScranton +42,2016-03-06,1.17,240849.91,40527.53,130174.89,211.56,69935.93,68304.7,1631.23,0.0,conventional,2016,HarrisburgScranton +43,2016-02-28,1.11,254954.35,36910.75,157390.1,213.14,60440.36,58909.86,1530.5,0.0,conventional,2016,HarrisburgScranton +44,2016-02-21,1.15,235440.15,33667.84,136616.59,158.14,64997.58,62779.7,2217.88,0.0,conventional,2016,HarrisburgScranton +45,2016-02-14,1.09,264904.19,39983.9,155336.11,224.2,69359.98,67077.95,2282.03,0.0,conventional,2016,HarrisburgScranton +46,2016-02-07,1.1,310166.32,42668.36,186545.28,334.31,80618.37,78497.61,2120.76,0.0,conventional,2016,HarrisburgScranton +47,2016-01-31,1.07,240911.84,30150.26,141567.72,148.18,69045.68,67727.22,1318.46,0.0,conventional,2016,HarrisburgScranton +48,2016-01-24,1.13,269859.91,30857.91,145118.66,187.2,93696.14,92434.99,1261.15,0.0,conventional,2016,HarrisburgScranton +49,2016-01-17,1.15,251772.19,37242.5,127825.35,215.42,86488.92,85284.0,1204.92,0.0,conventional,2016,HarrisburgScranton +50,2016-01-10,1.14,231258.4,38270.32,113995.58,142.14,78850.36,77645.09,1205.27,0.0,conventional,2016,HarrisburgScranton +51,2016-01-03,1.09,252693.38,36241.25,157969.24,315.45,58167.44,57475.61,691.83,0.0,conventional,2016,HarrisburgScranton +0,2016-12-25,1.49,238100.22,2977.57,178949.08,7914.45,48259.12,47076.21,865.63,317.28,conventional,2016,HartfordSpringfield +1,2016-12-18,1.22,304051.46,4769.87,256345.63,995.37,41940.59,41573.47,224.83,142.29,conventional,2016,HartfordSpringfield +2,2016-12-11,1.42,245721.9,3321.92,186954.78,2350.45,53094.75,51964.82,839.65,290.28,conventional,2016,HartfordSpringfield +3,2016-12-04,1.54,207482.67,3426.07,160247.2,591.16,43218.24,42957.73,124.81,135.7,conventional,2016,HartfordSpringfield +4,2016-11-27,1.57,195221.04,4269.91,149413.39,119.71,41418.03,41408.89,9.14,0.0,conventional,2016,HartfordSpringfield +5,2016-11-20,1.62,240655.78,4755.3,168091.33,122.4,67686.75,66362.72,1324.03,0.0,conventional,2016,HartfordSpringfield +6,2016-11-13,1.82,184928.64,3119.08,129123.05,107.47,52579.04,52391.67,187.37,0.0,conventional,2016,HartfordSpringfield +7,2016-11-06,1.83,173620.97,3070.78,119662.41,161.73,50726.05,50160.37,565.68,0.0,conventional,2016,HartfordSpringfield +8,2016-10-30,1.81,180113.35,2704.79,130995.75,191.97,46220.84,46140.97,79.87,0.0,conventional,2016,HartfordSpringfield +9,2016-10-23,1.78,213547.17,4201.36,152903.95,194.14,56247.72,56074.0,104.28,69.44,conventional,2016,HartfordSpringfield +10,2016-10-16,1.82,208966.36,4396.67,148210.67,239.04,56119.98,56021.42,98.56,0.0,conventional,2016,HartfordSpringfield +11,2016-10-09,1.62,231063.21,7855.45,171100.57,274.57,51832.62,51617.66,39.96,175.0,conventional,2016,HartfordSpringfield +12,2016-10-02,1.69,216818.99,17695.92,145719.43,620.47,52783.17,52592.82,190.35,0.0,conventional,2016,HartfordSpringfield +13,2016-09-25,1.63,224391.93,42274.18,125999.46,127.05,55991.24,55353.12,628.12,10.0,conventional,2016,HartfordSpringfield +14,2016-09-18,1.51,233869.17,37691.02,130354.21,132.81,65691.13,64310.17,1375.96,5.0,conventional,2016,HartfordSpringfield +15,2016-09-11,1.22,364052.46,84826.25,225724.26,197.17,53304.78,52152.39,1137.39,15.0,conventional,2016,HartfordSpringfield +16,2016-09-04,1.54,279628.17,10730.88,199814.2,842.34,68240.75,67173.12,733.63,334.0,conventional,2016,HartfordSpringfield +17,2016-08-28,1.59,287629.57,3266.96,209240.07,277.62,74844.92,72124.66,1646.84,1073.42,conventional,2016,HartfordSpringfield +18,2016-08-21,1.46,299545.98,2617.98,191018.33,223.9,105685.77,100062.77,4268.0,1355.0,conventional,2016,HartfordSpringfield +19,2016-08-14,1.46,298015.34,6429.23,186844.14,655.42,104086.55,100492.24,2318.75,1275.56,conventional,2016,HartfordSpringfield +20,2016-08-07,1.5,288155.59,4285.19,183604.52,565.14,99700.74,99391.55,119.19,190.0,conventional,2016,HartfordSpringfield +21,2016-07-31,1.72,255025.51,3820.18,170920.7,200.04,80084.59,78539.51,340.08,1205.0,conventional,2016,HartfordSpringfield +22,2016-07-24,1.7,254686.05,3244.19,165702.62,149.3,85589.94,82571.93,738.01,2280.0,conventional,2016,HartfordSpringfield +23,2016-07-17,1.63,259416.65,3078.92,173492.18,287.31,82558.24,78534.0,347.25,3676.99,conventional,2016,HartfordSpringfield +24,2016-07-10,1.46,292611.92,3434.74,192338.6,700.24,96138.34,90776.29,1638.23,3723.82,conventional,2016,HartfordSpringfield +25,2016-07-03,1.47,309896.68,3261.81,212724.95,1330.76,92579.16,88150.04,547.51,3881.61,conventional,2016,HartfordSpringfield +26,2016-06-26,1.41,329620.35,3520.61,245341.16,263.38,80495.2,77811.88,318.32,2365.0,conventional,2016,HartfordSpringfield +27,2016-06-19,1.5,335704.35,4764.39,253641.06,308.34,76990.56,73922.77,882.79,2185.0,conventional,2016,HartfordSpringfield +28,2016-06-12,1.47,324963.11,7760.32,242441.41,318.57,74442.81,71188.11,584.7,2670.0,conventional,2016,HartfordSpringfield +29,2016-06-05,1.46,303118.06,4757.39,219463.03,245.51,78652.13,75889.33,577.8,2185.0,conventional,2016,HartfordSpringfield +30,2016-05-29,1.15,382443.83,5717.38,310084.06,433.03,66209.36,63033.05,1485.98,1690.33,conventional,2016,HartfordSpringfield +31,2016-05-22,1.26,296893.56,3701.05,224262.53,521.9,68408.08,66397.8,940.28,1070.0,conventional,2016,HartfordSpringfield +32,2016-05-15,1.24,416264.79,5224.33,353742.7,778.99,56518.77,55425.49,1053.23,40.05,conventional,2016,HartfordSpringfield +33,2016-05-08,0.86,522565.33,6157.76,449501.24,436.34,66469.99,64704.02,1765.97,0.0,conventional,2016,HartfordSpringfield +34,2016-05-01,1.18,353240.26,4163.82,286951.48,246.85,61878.11,59813.16,2064.95,0.0,conventional,2016,HartfordSpringfield +35,2016-04-24,1.25,342796.24,4251.65,277215.89,684.59,60644.11,59633.06,982.75,28.3,conventional,2016,HartfordSpringfield +36,2016-04-17,1.18,284479.69,3817.6,212803.93,95.3,67762.86,66917.18,802.38,43.3,conventional,2016,HartfordSpringfield +37,2016-04-10,1.17,280729.03,4510.47,213983.22,172.03,62063.31,61560.21,283.03,220.07,conventional,2016,HartfordSpringfield +38,2016-04-03,1.36,254201.52,4183.85,204807.91,449.34,44760.42,44065.2,566.68,128.54,conventional,2016,HartfordSpringfield +39,2016-03-27,1.31,294602.42,3703.75,234448.8,196.63,56253.24,55053.66,1199.58,0.0,conventional,2016,HartfordSpringfield +40,2016-03-20,1.17,373372.96,5155.65,315607.91,278.31,52331.09,51367.1,963.99,0.0,conventional,2016,HartfordSpringfield +41,2016-03-13,1.3,315394.32,4317.14,253676.96,179.09,57221.13,56230.93,990.2,0.0,conventional,2016,HartfordSpringfield +42,2016-03-06,1.27,311503.06,4867.45,241128.23,295.4,65211.98,64019.55,1189.08,3.35,conventional,2016,HartfordSpringfield +43,2016-02-28,1.17,357504.15,5558.93,305866.9,232.83,45845.49,43903.95,1941.54,0.0,conventional,2016,HartfordSpringfield +44,2016-02-21,1.28,288176.27,4492.49,214537.05,279.57,68867.16,66444.92,2422.24,0.0,conventional,2016,HartfordSpringfield +45,2016-02-14,1.1,398441.13,6064.88,326486.66,316.89,65572.7,61273.21,4299.49,0.0,conventional,2016,HartfordSpringfield +46,2016-02-07,1.16,393866.28,4834.86,306373.73,530.92,82126.77,78438.83,3684.57,3.37,conventional,2016,HartfordSpringfield +47,2016-01-31,1.12,390134.81,5276.3,322397.86,255.75,62204.9,59996.16,2208.74,0.0,conventional,2016,HartfordSpringfield +48,2016-01-24,1.27,317932.59,2330.83,234916.68,304.1,80380.98,75964.48,4411.43,5.07,conventional,2016,HartfordSpringfield +49,2016-01-17,1.18,352472.83,4186.8,265631.34,222.86,82431.83,81352.4,1079.43,0.0,conventional,2016,HartfordSpringfield +50,2016-01-10,1.26,284119.04,3361.85,213814.5,238.17,66704.52,64792.83,1911.69,0.0,conventional,2016,HartfordSpringfield +51,2016-01-03,1.07,322752.02,4199.14,275680.97,297.23,42574.68,41477.93,1096.75,0.0,conventional,2016,HartfordSpringfield +0,2016-12-25,0.72,1126850.62,571303.56,238201.66,3257.69,314087.71,144114.79,169972.92,0.0,conventional,2016,Houston +1,2016-12-18,0.63,1212933.22,576578.21,258779.48,2885.86,374689.67,155393.61,219296.06,0.0,conventional,2016,Houston +2,2016-12-11,0.73,1015973.91,413907.52,275659.29,3480.07,322927.03,70239.25,252687.78,0.0,conventional,2016,Houston +3,2016-12-04,0.71,1130895.62,592360.27,274633.9,4508.75,259392.7,64285.15,195107.55,0.0,conventional,2016,Houston +4,2016-11-27,0.82,854629.64,525324.65,173401.51,3567.44,152336.04,81852.59,70483.45,0.0,conventional,2016,Houston +5,2016-11-20,0.99,827345.76,466960.66,202860.35,4070.15,153454.6,58525.46,94915.81,13.33,conventional,2016,Houston +6,2016-11-13,1.05,828866.8,431731.62,231630.38,4850.4,160654.4,61276.87,99274.75,102.78,conventional,2016,Houston +7,2016-11-06,1.12,782911.25,430098.78,168814.95,2921.98,181075.54,78827.53,102248.01,0.0,conventional,2016,Houston +8,2016-10-30,1.15,709890.11,346283.28,181578.62,3192.69,178835.52,47722.65,131112.87,0.0,conventional,2016,Houston +9,2016-10-23,1.0,777847.84,371566.37,145059.25,2488.59,258733.63,197398.04,61335.59,0.0,conventional,2016,Houston +10,2016-10-16,0.98,992992.79,492462.88,223737.35,3348.82,273443.74,132407.09,141036.65,0.0,conventional,2016,Houston +11,2016-10-09,0.98,1075303.77,483285.47,344448.92,9670.82,237898.56,121027.64,116836.2,34.72,conventional,2016,Houston +12,2016-10-02,0.98,1023030.28,446276.97,260176.71,3196.13,313380.47,129091.49,184288.98,0.0,conventional,2016,Houston +13,2016-09-25,0.96,1027782.31,463607.55,266059.25,2894.23,295221.28,101363.89,193857.39,0.0,conventional,2016,Houston +14,2016-09-18,0.83,1127109.48,702367.94,203949.08,3023.74,217768.72,126297.0,91451.72,20.0,conventional,2016,Houston +15,2016-09-11,0.76,1217346.73,729949.45,188318.97,2466.22,296612.09,216413.98,79968.11,230.0,conventional,2016,Houston +16,2016-09-04,0.72,1351649.96,782982.9,265697.02,3439.75,299530.29,208800.92,88824.37,1905.0,conventional,2016,Houston +17,2016-08-28,0.88,1021607.04,610762.01,216733.12,3065.44,191046.47,124173.71,58652.76,8220.0,conventional,2016,Houston +18,2016-08-21,0.9,1046506.77,583161.0,248160.18,5697.25,209488.34,132615.92,76539.09,333.33,conventional,2016,Houston +19,2016-08-14,0.9,1015264.05,590138.4,218435.64,3815.84,202874.17,123193.69,79430.48,250.0,conventional,2016,Houston +20,2016-08-07,0.92,1040953.31,614770.18,239657.73,5032.97,181492.43,121223.82,60268.61,0.0,conventional,2016,Houston +21,2016-07-31,0.98,941066.42,547468.5,203888.47,4165.35,185544.1,117560.96,64239.81,3743.33,conventional,2016,Houston +22,2016-07-24,0.96,985027.91,555709.68,218179.57,5208.69,205929.97,163969.66,39623.09,2337.22,conventional,2016,Houston +23,2016-07-17,0.92,1006984.22,551921.4,219856.17,8567.51,226639.14,189089.17,37549.97,0.0,conventional,2016,Houston +24,2016-07-10,0.89,1101543.61,607069.9,208421.56,41628.96,244423.19,201545.27,39452.64,3425.28,conventional,2016,Houston +25,2016-07-03,0.92,1189787.36,545799.65,245931.82,139911.14,258144.75,201099.28,39117.41,17928.06,conventional,2016,Houston +26,2016-06-26,0.88,1186692.39,586635.99,216133.71,113474.29,270448.4,165598.46,86483.27,18366.67,conventional,2016,Houston +27,2016-06-19,0.89,1153583.3,627217.28,228843.15,74763.08,222759.79,139198.33,70961.46,12600.0,conventional,2016,Houston +28,2016-06-12,0.83,1209996.42,589477.04,236621.03,110054.59,273843.76,114672.48,149147.95,10023.33,conventional,2016,Houston +29,2016-06-05,0.85,1182841.54,555561.07,242491.36,110457.58,274331.53,92784.25,170943.95,10603.33,conventional,2016,Houston +30,2016-05-29,0.82,1128598.95,554092.01,247279.64,116263.41,210963.89,91661.86,110662.03,8640.0,conventional,2016,Houston +31,2016-05-22,0.68,1378761.67,569011.09,339100.41,169713.69,300936.48,125723.56,165911.25,9301.67,conventional,2016,Houston +32,2016-05-15,0.69,1343566.69,614769.67,335853.13,95672.31,297271.58,102106.82,192425.32,2739.44,conventional,2016,Houston +33,2016-05-08,0.65,1406283.85,670565.88,293098.85,185667.35,256951.77,107635.65,146298.07,3018.05,conventional,2016,Houston +34,2016-05-01,0.68,1308614.45,601670.1,368703.63,89821.94,248418.78,84090.2,159461.92,4866.66,conventional,2016,Houston +35,2016-04-24,0.67,1393042.56,656322.91,324423.04,163347.75,248948.86,100132.98,144364.21,4451.67,conventional,2016,Houston +36,2016-04-17,0.69,1310677.68,782313.51,191432.45,153134.81,183796.91,119863.49,57278.42,6655.0,conventional,2016,Houston +37,2016-04-10,0.7,1271741.46,757578.32,188936.32,151966.39,173260.43,117792.84,50449.53,5018.06,conventional,2016,Houston +38,2016-04-03,0.72,1256919.1,684633.13,264272.37,181951.34,126062.26,56499.5,66016.09,3546.67,conventional,2016,Houston +39,2016-03-27,0.75,1345865.16,553962.21,406713.3,177919.58,207270.07,75819.34,124377.4,7073.33,conventional,2016,Houston +40,2016-03-20,0.76,1162026.04,538380.61,327365.45,121838.72,174441.26,62893.05,103044.88,8503.33,conventional,2016,Houston +41,2016-03-13,0.76,1136963.49,585649.37,247461.63,185545.01,118307.48,63280.13,48440.68,6586.67,conventional,2016,Houston +42,2016-03-06,0.76,1091432.18,698789.73,182050.77,86477.82,124113.86,77568.68,39418.51,7126.67,conventional,2016,Houston +43,2016-02-28,0.76,1048304.1,674833.15,180298.41,85511.83,107660.71,77330.09,24043.95,6286.67,conventional,2016,Houston +44,2016-02-21,0.8,966990.9,566062.35,200934.84,90645.64,109348.07,64626.95,38634.45,6086.67,conventional,2016,Houston +45,2016-02-14,0.67,1191352.2,518192.1,334137.36,210029.3,128993.44,67726.6,55041.28,6225.56,conventional,2016,Houston +46,2016-02-07,0.69,1323490.25,528669.72,424427.32,203797.87,166595.34,71538.94,75749.73,19306.67,conventional,2016,Houston +47,2016-01-31,0.74,1131583.12,484446.28,348542.55,161506.54,137087.75,68193.77,46086.21,22807.77,conventional,2016,Houston +48,2016-01-24,0.91,867294.64,259465.21,363892.04,79193.39,164744.0,83636.33,63963.23,17144.44,conventional,2016,Houston +49,2016-01-17,0.83,1071138.98,447913.43,369479.18,116440.7,137305.67,82818.41,50110.59,4376.67,conventional,2016,Houston +50,2016-01-10,0.84,1095287.56,434471.89,437751.47,85368.8,137695.4,78471.38,58067.35,1156.67,conventional,2016,Houston +51,2016-01-03,0.78,1061566.78,356962.48,454200.44,113069.09,137334.77,87330.27,49677.83,326.67,conventional,2016,Houston +0,2016-12-25,1.13,135848.61,9560.82,59100.87,1962.89,65224.03,39632.2,25547.03,44.8,conventional,2016,Indianapolis +1,2016-12-18,1.19,122035.89,9114.0,56820.04,1973.93,54127.92,33414.95,20669.06,43.91,conventional,2016,Indianapolis +2,2016-12-11,1.17,133480.18,10029.3,61398.63,2771.39,59280.86,38874.39,20249.59,156.88,conventional,2016,Indianapolis +3,2016-12-04,1.18,144732.39,9441.16,70441.52,5143.87,59705.84,34658.44,24180.2,867.2,conventional,2016,Indianapolis +4,2016-11-27,1.34,103728.7,8422.19,43655.05,1231.47,50419.99,26198.63,24221.36,0.0,conventional,2016,Indianapolis +5,2016-11-20,1.29,124674.05,9062.48,52842.3,1517.4,61251.87,28999.98,32251.89,0.0,conventional,2016,Indianapolis +6,2016-11-13,1.29,127579.36,8852.56,56481.59,1724.7,60520.51,31532.27,28946.57,41.67,conventional,2016,Indianapolis +7,2016-11-06,1.37,126205.09,9100.1,55557.73,1578.23,59969.03,30459.11,29180.53,329.39,conventional,2016,Indianapolis +8,2016-10-30,1.2,139574.84,9278.4,61450.22,1682.81,67163.41,26068.96,41094.45,0.0,conventional,2016,Indianapolis +9,2016-10-23,1.31,142946.23,7986.6,65584.52,2219.92,67155.19,28373.94,38779.76,1.49,conventional,2016,Indianapolis +10,2016-10-16,1.27,138921.48,10968.01,60049.75,1952.54,65951.18,35703.64,30247.54,0.0,conventional,2016,Indianapolis +11,2016-10-09,1.2,143911.76,11357.01,61269.72,2173.86,69111.17,36546.8,32111.39,452.98,conventional,2016,Indianapolis +12,2016-10-02,1.31,146709.18,14488.94,66598.01,2091.96,63530.27,36081.38,27445.88,3.01,conventional,2016,Indianapolis +13,2016-09-25,1.39,150804.6,16855.29,68404.44,2557.07,62987.8,37497.61,25490.19,0.0,conventional,2016,Indianapolis +14,2016-09-18,1.26,153211.68,16666.21,67688.59,2707.32,66149.56,40788.78,25360.78,0.0,conventional,2016,Indianapolis +15,2016-09-11,1.29,157333.39,17414.42,70736.72,3134.92,66047.33,44187.61,21859.72,0.0,conventional,2016,Indianapolis +16,2016-09-04,1.31,160672.02,17530.05,75640.39,3252.69,64248.89,47772.68,16371.21,105.0,conventional,2016,Indianapolis +17,2016-08-28,1.27,167401.86,13732.36,78138.81,2802.01,72728.68,49838.22,21877.06,1013.4,conventional,2016,Indianapolis +18,2016-08-21,1.3,160968.73,15022.11,73966.5,3405.65,68574.47,44089.82,24244.65,240.0,conventional,2016,Indianapolis +19,2016-08-14,1.27,169421.1,15863.47,79507.42,4255.36,69794.85,39950.23,28559.62,1285.0,conventional,2016,Indianapolis +20,2016-08-07,1.33,163338.94,20926.28,77899.46,5741.75,58771.45,36453.98,21522.19,795.28,conventional,2016,Indianapolis +21,2016-07-31,1.27,159573.77,16079.16,80211.44,6277.21,57005.96,34005.49,22328.62,671.85,conventional,2016,Indianapolis +22,2016-07-24,1.2,178389.87,14627.32,82110.02,9886.51,71766.02,37248.18,29877.64,4640.2,conventional,2016,Indianapolis +23,2016-07-17,1.08,195710.39,15914.63,93315.97,9427.32,77052.47,39495.08,32642.41,4914.98,conventional,2016,Indianapolis +24,2016-07-10,1.12,191786.29,15126.45,96588.25,9530.83,70540.76,39858.04,25082.88,5599.84,conventional,2016,Indianapolis +25,2016-07-03,1.1,205562.64,15757.59,97347.96,9152.69,83304.4,47612.13,29634.22,6058.05,conventional,2016,Indianapolis +26,2016-06-26,1.15,183555.06,14452.83,90386.24,15029.71,63686.28,41778.41,16248.62,5659.25,conventional,2016,Indianapolis +27,2016-06-19,1.13,193533.04,17469.3,91178.24,19044.12,65841.38,34458.27,25319.68,6063.43,conventional,2016,Indianapolis +28,2016-06-12,1.12,186723.32,19442.51,89225.97,19115.07,58939.77,39160.04,13630.94,6148.79,conventional,2016,Indianapolis +29,2016-06-05,1.05,208086.58,16444.14,100386.68,21893.15,69362.61,39935.76,23087.08,6339.77,conventional,2016,Indianapolis +30,2016-05-29,1.01,210386.61,13152.88,109784.28,12495.73,74953.72,47279.19,24844.19,2830.34,conventional,2016,Indianapolis +31,2016-05-22,0.87,214847.19,10857.82,105336.69,17819.68,80833.0,46352.36,29562.74,4917.9,conventional,2016,Indianapolis +32,2016-05-15,0.88,212806.58,11249.01,98565.23,23505.68,79486.66,46726.38,27196.04,5564.24,conventional,2016,Indianapolis +33,2016-05-08,0.93,228601.39,17356.36,106300.33,18838.87,86105.83,54973.21,27766.71,3365.91,conventional,2016,Indianapolis +34,2016-05-01,0.92,207488.02,16727.66,106590.22,12071.46,72098.68,43567.48,26781.76,1749.44,conventional,2016,Indianapolis +35,2016-04-24,0.95,217736.25,12802.85,116190.57,22243.74,66499.09,32258.42,30147.93,4092.74,conventional,2016,Indianapolis +36,2016-04-17,0.97,218237.53,15361.33,113832.99,24253.28,64789.93,27683.11,33415.09,3691.73,conventional,2016,Indianapolis +37,2016-04-10,1.07,168009.21,15421.4,84833.75,11125.19,56628.87,29065.55,26374.68,1188.64,conventional,2016,Indianapolis +38,2016-04-03,0.99,154098.59,13073.15,73683.93,14509.1,52832.41,23047.8,26829.29,2955.32,conventional,2016,Indianapolis +39,2016-03-27,0.99,195373.94,10457.51,103261.69,23242.76,58411.98,26546.73,27197.4,4667.85,conventional,2016,Indianapolis +40,2016-03-20,1.12,168886.56,12095.89,91015.53,16824.67,48950.47,27044.14,18685.21,3221.12,conventional,2016,Indianapolis +41,2016-03-13,1.03,179067.02,11923.34,97729.32,17713.83,51700.53,28612.6,19278.08,3809.85,conventional,2016,Indianapolis +42,2016-03-06,0.96,208283.71,11773.3,116609.91,24630.69,55269.81,26420.61,23929.03,4920.17,conventional,2016,Indianapolis +43,2016-02-28,0.99,188077.25,11031.35,107091.35,16742.17,53212.38,26221.88,23948.23,3042.27,conventional,2016,Indianapolis +44,2016-02-21,1.03,153498.43,10806.76,91309.12,8892.49,42490.06,23611.07,17284.88,1594.11,conventional,2016,Indianapolis +45,2016-02-14,0.83,219871.64,13525.56,133956.97,15621.58,56767.53,27240.38,27220.07,2307.08,conventional,2016,Indianapolis +46,2016-02-07,0.88,240237.26,13926.79,145591.86,27708.02,53010.59,24152.64,25269.26,3588.69,conventional,2016,Indianapolis +47,2016-01-31,0.98,175610.18,8329.28,102864.26,22380.58,42036.06,20098.49,17062.82,4874.75,conventional,2016,Indianapolis +48,2016-01-24,0.93,168035.39,1803.73,93613.73,23023.47,49594.46,23374.52,21450.63,4769.31,conventional,2016,Indianapolis +49,2016-01-17,0.97,171404.92,5231.37,105606.63,12443.2,48123.72,26459.05,19618.46,2046.21,conventional,2016,Indianapolis +50,2016-01-10,1.0,173238.2,4590.25,101117.07,18454.86,49076.02,25431.42,20246.87,3397.73,conventional,2016,Indianapolis +51,2016-01-03,0.95,184669.77,5974.1,109973.31,25839.4,42882.96,15993.65,19313.43,7575.88,conventional,2016,Indianapolis +0,2016-12-25,0.81,187804.02,70779.81,31213.64,208.24,85602.33,30893.35,54708.98,0.0,conventional,2016,Jacksonville +1,2016-12-18,0.84,162502.3,49886.69,27329.12,104.17,85182.32,26270.21,58844.05,68.06,conventional,2016,Jacksonville +2,2016-12-11,1.17,116052.47,33585.82,18098.36,126.93,64241.36,27971.11,36270.25,0.0,conventional,2016,Jacksonville +3,2016-12-04,0.89,206009.55,63726.26,35344.04,132.58,106806.67,33108.76,73697.91,0.0,conventional,2016,Jacksonville +4,2016-11-27,1.36,111672.0,32944.9,18661.82,94.55,59970.73,19808.01,40162.72,0.0,conventional,2016,Jacksonville +5,2016-11-20,1.36,117495.72,35506.8,19385.22,192.2,62411.5,22359.45,40052.05,0.0,conventional,2016,Jacksonville +6,2016-11-13,1.31,140702.87,51958.36,22430.56,212.95,66101.0,26430.57,39670.43,0.0,conventional,2016,Jacksonville +7,2016-11-06,1.41,127895.28,43990.0,21710.64,289.79,61904.85,16137.03,45767.82,0.0,conventional,2016,Jacksonville +8,2016-10-30,1.41,115122.47,38168.39,20158.77,206.84,56588.47,13461.45,43127.02,0.0,conventional,2016,Jacksonville +9,2016-10-23,1.35,119840.12,42784.97,22755.49,212.19,54087.47,11698.99,42388.48,0.0,conventional,2016,Jacksonville +10,2016-10-16,1.12,157329.41,48624.65,36096.39,228.23,72380.14,11681.16,60621.2,77.78,conventional,2016,Jacksonville +11,2016-10-09,1.31,135520.48,43060.49,35355.69,143.93,56960.37,16656.5,40303.87,0.0,conventional,2016,Jacksonville +12,2016-10-02,1.31,159576.97,54429.42,29513.01,93.83,75540.71,23304.77,52235.94,0.0,conventional,2016,Jacksonville +13,2016-09-25,1.26,158194.1,58289.9,21092.67,145.41,78666.12,29683.13,48982.99,0.0,conventional,2016,Jacksonville +14,2016-09-18,1.05,175928.62,72171.22,27540.24,84.22,76132.94,23455.33,52677.61,0.0,conventional,2016,Jacksonville +15,2016-09-11,1.1,150295.99,70095.71,23109.94,148.82,56941.52,22375.81,34565.71,0.0,conventional,2016,Jacksonville +16,2016-09-04,0.94,239246.03,128269.25,34369.64,158.3,76448.84,29049.1,47399.74,0.0,conventional,2016,Jacksonville +17,2016-08-28,1.14,177300.14,90634.98,32154.69,113.13,54397.34,29304.03,24543.31,550.0,conventional,2016,Jacksonville +18,2016-08-21,1.11,189700.13,90679.27,36441.11,188.93,62390.82,34193.62,26027.2,2170.0,conventional,2016,Jacksonville +19,2016-08-14,1.11,206617.11,98779.51,43133.24,217.88,64486.48,22538.59,39347.89,2600.0,conventional,2016,Jacksonville +20,2016-08-07,1.23,151751.97,70054.07,30914.44,331.08,50452.38,21944.34,24593.04,3915.0,conventional,2016,Jacksonville +21,2016-07-31,1.23,152777.16,67403.11,31854.3,440.28,53079.47,25243.34,23054.74,4781.39,conventional,2016,Jacksonville +22,2016-07-24,1.21,156316.92,69899.17,39377.77,493.57,46546.41,21263.41,21141.06,4141.94,conventional,2016,Jacksonville +23,2016-07-17,1.22,165453.6,77112.26,34464.53,413.3,53463.51,25220.88,23917.91,4324.72,conventional,2016,Jacksonville +24,2016-07-10,1.19,164680.49,78117.56,34028.17,680.44,51854.32,26529.02,19443.36,5881.94,conventional,2016,Jacksonville +25,2016-07-03,0.93,272150.68,137102.4,48698.98,1134.71,85214.59,37396.58,41823.01,5995.0,conventional,2016,Jacksonville +26,2016-06-26,1.19,159128.77,75055.08,31811.71,748.85,51513.13,24644.39,23012.91,3855.83,conventional,2016,Jacksonville +27,2016-06-19,0.94,226775.36,115507.75,41557.3,1508.69,68201.62,23712.12,39989.5,4500.0,conventional,2016,Jacksonville +28,2016-06-12,1.2,151428.59,75763.72,28484.78,982.71,46197.38,20061.78,22605.6,3530.0,conventional,2016,Jacksonville +29,2016-06-05,0.95,221144.08,124676.22,32124.3,784.2,63559.36,19483.21,40946.71,3129.44,conventional,2016,Jacksonville +30,2016-05-29,0.92,242168.85,141300.92,36410.66,981.98,63475.29,22104.57,40394.05,976.67,conventional,2016,Jacksonville +31,2016-05-22,1.17,160652.39,83011.39,27437.92,356.55,49846.53,20619.97,27239.89,1986.67,conventional,2016,Jacksonville +32,2016-05-15,0.79,257370.46,98256.73,59901.5,275.59,98936.64,19409.71,77620.26,1906.67,conventional,2016,Jacksonville +33,2016-05-08,0.8,224519.56,113354.85,34526.39,280.48,76357.84,30053.56,46304.28,0.0,conventional,2016,Jacksonville +34,2016-05-01,0.68,370646.01,169412.4,70592.24,248.56,130392.81,37625.8,92767.01,0.0,conventional,2016,Jacksonville +35,2016-04-24,0.8,267225.58,104786.41,61113.12,134.35,101191.7,21102.41,79512.9,576.39,conventional,2016,Jacksonville +36,2016-04-17,1.0,184827.45,88552.52,31279.51,185.37,64810.05,23218.07,41247.54,344.44,conventional,2016,Jacksonville +37,2016-04-10,0.8,261081.39,106314.87,54201.27,196.31,100368.94,19744.98,79967.02,656.94,conventional,2016,Jacksonville +38,2016-04-03,1.01,181662.16,84765.99,27201.22,149.61,69545.34,27121.05,42424.29,0.0,conventional,2016,Jacksonville +39,2016-03-27,1.06,158322.64,70255.18,27911.77,402.32,59753.37,19304.31,40449.06,0.0,conventional,2016,Jacksonville +40,2016-03-20,1.07,140301.04,59970.41,26015.08,269.21,54046.34,19113.11,34933.23,0.0,conventional,2016,Jacksonville +41,2016-03-13,0.81,241653.71,103139.77,47856.7,316.39,90340.85,18010.95,72329.9,0.0,conventional,2016,Jacksonville +42,2016-03-06,1.06,155654.59,71185.02,26487.57,503.38,57478.62,17429.08,40049.54,0.0,conventional,2016,Jacksonville +43,2016-02-28,0.77,253489.72,108080.92,43494.21,217.74,101696.85,23364.69,78332.16,0.0,conventional,2016,Jacksonville +44,2016-02-21,1.01,141335.89,63676.54,22329.28,211.65,55118.42,18439.32,36679.1,0.0,conventional,2016,Jacksonville +45,2016-02-14,0.95,151724.07,74835.5,23877.54,377.48,52633.55,20566.26,32067.29,0.0,conventional,2016,Jacksonville +46,2016-02-07,0.54,369757.62,191441.47,57532.08,594.02,120190.05,53302.46,66879.47,8.12,conventional,2016,Jacksonville +47,2016-01-31,1.04,151247.03,76816.44,21968.91,256.1,52205.58,21691.82,30513.76,0.0,conventional,2016,Jacksonville +48,2016-01-24,0.93,192194.31,116713.78,18557.48,473.07,56449.98,27533.11,28916.87,0.0,conventional,2016,Jacksonville +49,2016-01-17,1.21,118230.86,73496.53,9811.14,302.25,34620.94,21732.66,12888.28,0.0,conventional,2016,Jacksonville +50,2016-01-10,0.95,181584.67,122360.29,10625.3,273.06,48326.02,20677.59,27648.43,0.0,conventional,2016,Jacksonville +51,2016-01-03,1.09,148599.47,103296.4,8714.57,487.53,36100.97,20713.33,15387.64,0.0,conventional,2016,Jacksonville +0,2016-12-25,0.82,292038.68,107317.8,43301.69,7606.75,133812.44,54017.79,79794.65,0.0,conventional,2016,LasVegas +1,2016-12-18,0.81,297506.24,88443.43,49295.62,7072.79,152694.4,58263.7,94430.7,0.0,conventional,2016,LasVegas +2,2016-12-11,0.83,339328.92,83682.89,55352.63,6832.2,193461.2,68316.82,125144.38,0.0,conventional,2016,LasVegas +3,2016-12-04,0.91,315048.8,93963.93,56502.76,5327.06,159255.05,49383.72,109472.72,398.61,conventional,2016,LasVegas +4,2016-11-27,0.86,255656.46,104641.27,41992.71,4857.37,104165.11,44172.65,59992.46,0.0,conventional,2016,LasVegas +5,2016-11-20,1.12,237141.08,94282.84,29776.1,5608.22,107473.92,54759.06,52714.86,0.0,conventional,2016,LasVegas +6,2016-11-13,1.1,259546.55,114475.73,32698.74,6683.0,105689.08,51797.1,53891.98,0.0,conventional,2016,LasVegas +7,2016-11-06,1.2,225301.45,84137.66,29997.69,8196.41,102969.69,52182.56,50534.35,252.78,conventional,2016,LasVegas +8,2016-10-30,1.16,223089.05,79018.69,31778.97,7157.69,105133.7,42630.66,62503.04,0.0,conventional,2016,LasVegas +9,2016-10-23,1.13,254999.4,67268.17,48015.11,8491.64,131224.48,47831.39,83393.09,0.0,conventional,2016,LasVegas +10,2016-10-16,1.08,315743.92,88625.1,51473.72,5356.91,170288.19,74347.08,95941.11,0.0,conventional,2016,LasVegas +11,2016-10-09,1.16,276030.7,121482.16,40083.06,5060.68,109404.8,66103.95,43300.85,0.0,conventional,2016,LasVegas +12,2016-10-02,1.22,246512.99,93430.04,45096.89,5876.68,102109.38,58716.07,43393.31,0.0,conventional,2016,LasVegas +13,2016-09-25,1.2,242299.74,98373.06,44921.8,5906.75,93098.13,51564.99,41533.14,0.0,conventional,2016,LasVegas +14,2016-09-18,1.12,278479.43,117939.47,57221.4,5318.75,97999.81,38957.13,59042.68,0.0,conventional,2016,LasVegas +15,2016-09-11,0.89,378865.38,200297.27,70912.09,5572.58,102083.44,46478.59,55604.85,0.0,conventional,2016,LasVegas +16,2016-09-04,1.03,335179.78,158224.33,69349.24,5841.12,101765.09,44439.65,57325.44,0.0,conventional,2016,LasVegas +17,2016-08-28,1.03,288423.36,123739.64,56927.33,6192.15,101564.24,55035.02,46529.22,0.0,conventional,2016,LasVegas +18,2016-08-21,1.0,302708.43,141809.13,50486.5,5836.08,104576.72,60675.79,43900.93,0.0,conventional,2016,LasVegas +19,2016-08-14,1.08,295535.64,129727.7,53954.55,6997.8,104855.59,63416.1,41439.49,0.0,conventional,2016,LasVegas +20,2016-08-07,1.11,311533.3,144862.85,57549.16,7063.01,102058.28,64258.99,37604.85,194.44,conventional,2016,LasVegas +21,2016-07-31,1.17,284566.03,125462.8,54745.0,7320.39,97037.84,59985.62,37052.22,0.0,conventional,2016,LasVegas +22,2016-07-24,1.15,283863.44,110868.68,58714.33,7525.31,106755.12,66233.39,40005.06,516.67,conventional,2016,LasVegas +23,2016-07-17,1.08,283074.0,118910.27,52023.77,7495.98,104643.98,71629.96,31540.69,1473.33,conventional,2016,LasVegas +24,2016-07-10,1.0,357786.69,153905.64,69545.22,7716.52,126619.31,78101.14,47342.89,1175.28,conventional,2016,LasVegas +25,2016-07-03,1.0,362136.8,135214.32,82726.73,9480.92,134714.83,88177.14,46537.69,0.0,conventional,2016,LasVegas +26,2016-06-26,0.94,352406.76,130217.49,74316.76,12079.13,135793.38,88463.16,47330.22,0.0,conventional,2016,LasVegas +27,2016-06-19,0.91,364254.89,164910.19,76172.67,11019.03,112153.0,64076.41,47966.87,109.72,conventional,2016,LasVegas +28,2016-06-12,0.94,348022.24,146589.28,75379.07,18141.91,107911.98,62277.55,45519.15,115.28,conventional,2016,LasVegas +29,2016-06-05,0.89,410770.75,156235.27,109763.53,13189.34,131582.61,55548.86,76033.75,0.0,conventional,2016,LasVegas +30,2016-05-29,0.89,391993.97,131708.14,115790.28,11869.51,132626.04,46240.64,86165.96,219.44,conventional,2016,LasVegas +31,2016-05-22,0.93,318913.34,122331.83,89286.71,15173.34,92121.46,37169.82,54951.64,0.0,conventional,2016,LasVegas +32,2016-05-15,0.86,317621.52,131370.13,107124.85,1468.26,77658.28,41031.25,36627.03,0.0,conventional,2016,LasVegas +33,2016-05-08,0.83,427575.05,170359.46,144990.1,8687.46,103538.03,46595.95,56942.08,0.0,conventional,2016,LasVegas +34,2016-05-01,0.85,363104.7,122124.69,115747.2,8420.15,116812.66,65345.85,51258.48,208.33,conventional,2016,LasVegas +35,2016-04-24,0.83,359872.46,125412.66,120811.35,8101.14,105547.31,45051.61,60495.7,0.0,conventional,2016,LasVegas +36,2016-04-17,0.81,379464.47,143900.7,110596.26,6531.44,118436.07,44934.52,73501.55,0.0,conventional,2016,LasVegas +37,2016-04-10,0.87,354098.37,151862.79,91833.73,6305.12,104096.73,48046.6,56050.13,0.0,conventional,2016,LasVegas +38,2016-04-03,0.84,298710.72,158984.19,62625.8,6877.48,70223.25,47115.04,23108.21,0.0,conventional,2016,LasVegas +39,2016-03-27,0.85,314268.27,155872.97,72324.4,7121.62,78949.28,41425.39,37523.89,0.0,conventional,2016,LasVegas +40,2016-03-20,0.82,332283.27,127949.65,116701.74,13632.17,73999.71,36410.06,37589.65,0.0,conventional,2016,LasVegas +41,2016-03-13,0.79,344613.01,130879.58,109512.41,6824.1,97396.92,41534.49,55862.43,0.0,conventional,2016,LasVegas +42,2016-03-06,0.91,311402.83,139919.03,86200.19,6809.69,78473.92,51367.6,27106.32,0.0,conventional,2016,LasVegas +43,2016-02-28,0.86,316563.55,122523.18,98920.9,14452.27,80667.2,43897.31,36769.89,0.0,conventional,2016,LasVegas +44,2016-02-21,0.83,337403.05,121214.86,124295.71,6447.94,85444.54,40526.02,44918.52,0.0,conventional,2016,LasVegas +45,2016-02-14,0.79,371467.52,144507.48,110749.56,7330.96,108879.52,47967.47,60912.05,0.0,conventional,2016,LasVegas +46,2016-02-07,0.74,437746.54,191144.38,142489.45,10624.82,93487.89,51889.28,41598.61,0.0,conventional,2016,LasVegas +47,2016-01-31,0.92,285052.11,117236.18,87109.87,14509.71,66196.35,48986.42,17209.93,0.0,conventional,2016,LasVegas +48,2016-01-24,1.08,158978.46,9727.38,81835.15,6141.39,61274.54,44326.23,16948.31,0.0,conventional,2016,LasVegas +49,2016-01-17,0.88,289298.37,108072.15,98543.78,12497.2,70185.24,42600.76,27584.48,0.0,conventional,2016,LasVegas +50,2016-01-10,0.83,309217.44,118958.86,110549.87,6133.63,73575.08,40601.67,32973.41,0.0,conventional,2016,LasVegas +51,2016-01-03,0.8,332971.8,103710.64,138142.95,15505.49,75612.72,36619.05,38993.67,0.0,conventional,2016,LasVegas +0,2016-12-25,0.84,2641775.31,794840.17,669585.49,65359.34,1111990.31,1032762.48,49937.35,29290.48,conventional,2016,LosAngeles +1,2016-12-18,0.84,2377799.62,767981.95,513487.28,56245.11,1040085.28,961115.47,55112.27,23857.54,conventional,2016,LosAngeles +2,2016-12-11,0.75,2793917.73,917098.69,631013.13,59599.98,1186205.93,1086150.77,80411.66,19643.5,conventional,2016,LosAngeles +3,2016-12-04,0.78,2780629.1,1076282.76,476162.95,53729.91,1174453.48,1135570.69,17964.53,20918.26,conventional,2016,LosAngeles +4,2016-11-27,1.01,2257271.18,865743.41,416437.85,50949.95,924139.97,868269.44,34138.07,21732.46,conventional,2016,LosAngeles +5,2016-11-20,1.1,2272023.15,880344.33,456709.37,60511.55,874457.9,808238.28,43041.56,23178.06,conventional,2016,LosAngeles +6,2016-11-13,1.29,1913492.61,696410.88,436388.61,71033.43,709659.69,639521.18,44270.7,25867.81,conventional,2016,LosAngeles +7,2016-11-06,1.52,1595013.07,543331.54,423351.91,77064.64,551264.98,497726.49,26542.63,26995.86,conventional,2016,LosAngeles +8,2016-10-30,1.48,1499286.88,533137.32,383974.46,59596.59,522578.51,487013.41,16418.82,19146.28,conventional,2016,LosAngeles +9,2016-10-23,1.23,2133563.24,768315.72,427296.47,44807.45,893143.6,840269.44,32386.79,20487.37,conventional,2016,LosAngeles +10,2016-10-16,1.17,2548687.86,922290.28,501532.5,56116.4,1068748.68,996105.73,43825.17,28817.78,conventional,2016,LosAngeles +11,2016-10-09,1.16,2766529.12,1153907.22,559077.15,61747.02,991797.73,915276.04,51156.17,25365.52,conventional,2016,LosAngeles +12,2016-10-02,1.06,2865744.94,1337602.73,471344.12,62565.39,994232.7,931963.97,40145.34,22123.39,conventional,2016,LosAngeles +13,2016-09-25,1.0,3007073.27,1328968.75,468792.85,62737.86,1146573.81,1087085.53,34496.65,24991.63,conventional,2016,LosAngeles +14,2016-09-18,1.06,2589309.14,999948.52,457932.5,55346.12,1076082.0,1008961.12,36400.02,30720.86,conventional,2016,LosAngeles +15,2016-09-11,0.95,2939704.87,1217417.81,534763.39,49050.27,1138473.4,1065540.18,46332.57,26600.65,conventional,2016,LosAngeles +16,2016-09-04,0.88,3431676.04,1409249.49,626922.72,43844.13,1351659.7,1295162.06,32720.37,23777.27,conventional,2016,LosAngeles +17,2016-08-28,0.81,3563268.97,1471105.41,537892.88,57212.08,1497058.6,1436818.52,32450.42,27789.66,conventional,2016,LosAngeles +18,2016-08-21,0.93,3086167.04,1264167.99,480926.04,57962.68,1283110.33,1204789.47,43207.72,35113.14,conventional,2016,LosAngeles +19,2016-08-14,1.03,2879218.13,1050808.07,605409.39,73825.64,1149175.03,1066852.22,53237.75,29085.06,conventional,2016,LosAngeles +20,2016-08-07,1.0,3094362.21,1137248.03,632756.21,67934.57,1256423.4,1158711.73,63574.75,34136.92,conventional,2016,LosAngeles +21,2016-07-31,1.06,2826836.07,961494.69,562612.83,70783.66,1231944.89,1135205.94,64811.85,31927.1,conventional,2016,LosAngeles +22,2016-07-24,1.01,3033328.67,1163035.43,629930.18,83979.91,1156383.15,1073915.16,60000.52,22467.47,conventional,2016,LosAngeles +23,2016-07-17,0.97,3092234.0,1201992.39,630743.25,84008.42,1175489.94,1079717.14,73173.55,22599.25,conventional,2016,LosAngeles +24,2016-07-10,0.93,3293224.51,1217453.35,678995.34,81637.45,1315138.37,1201242.48,85231.86,28664.03,conventional,2016,LosAngeles +25,2016-07-03,0.95,3449361.49,1317678.72,746045.11,107625.85,1278011.81,1147086.62,96717.6,34207.59,conventional,2016,LosAngeles +26,2016-06-26,0.85,3258184.45,1295216.97,655947.51,105879.74,1201140.23,1091515.32,84463.35,25161.56,conventional,2016,LosAngeles +27,2016-06-19,0.9,3237847.21,1322109.94,593238.74,114307.31,1208191.22,1102265.57,80776.26,25149.39,conventional,2016,LosAngeles +28,2016-06-12,0.83,3248769.26,1439519.4,529969.99,105646.55,1173633.32,1064384.25,84760.03,24489.04,conventional,2016,LosAngeles +29,2016-06-05,0.76,3715458.49,1596545.36,650812.6,121002.86,1347097.67,1196472.82,124721.49,25903.36,conventional,2016,LosAngeles +30,2016-05-29,0.83,3203935.53,1214455.87,691108.91,113180.16,1185190.59,1038686.31,119446.72,27057.56,conventional,2016,LosAngeles +31,2016-05-22,0.76,3134305.39,1084784.88,782144.64,89228.29,1178147.58,1068850.13,87973.45,21324.0,conventional,2016,LosAngeles +32,2016-05-15,0.82,2866855.58,1134719.15,643464.88,95527.46,993144.09,871562.92,104146.0,17435.17,conventional,2016,LosAngeles +33,2016-05-08,0.64,3942054.31,1416928.16,929683.64,107683.95,1487758.56,1104179.23,362931.85,20647.48,conventional,2016,LosAngeles +34,2016-05-01,0.62,3863314.25,1355793.57,1047924.35,98634.23,1360962.1,1011875.96,334016.05,15070.09,conventional,2016,LosAngeles +35,2016-04-24,0.75,3136882.52,1115902.49,704492.28,102738.69,1213749.06,1010395.4,185289.33,18064.33,conventional,2016,LosAngeles +36,2016-04-17,0.76,3185230.67,1245344.79,643220.72,100883.74,1195781.42,1114858.82,61746.44,19176.16,conventional,2016,LosAngeles +37,2016-04-10,0.77,3288356.88,1130642.44,715739.8,95958.07,1346016.57,1196713.63,132341.6,16961.34,conventional,2016,LosAngeles +38,2016-04-03,0.82,2793982.31,865503.72,683860.21,101584.86,1143033.52,980989.7,145602.15,16441.67,conventional,2016,LosAngeles +39,2016-03-27,0.73,3467762.25,982736.16,836002.09,94366.38,1554657.62,1349458.59,185190.21,20008.82,conventional,2016,LosAngeles +40,2016-03-20,0.74,3374876.94,928106.16,901464.72,91298.87,1454007.19,1301235.1,134711.21,18060.88,conventional,2016,LosAngeles +41,2016-03-13,0.79,2987393.94,767298.16,657175.2,96884.94,1466035.64,1318493.96,129444.42,18097.26,conventional,2016,LosAngeles +42,2016-03-06,0.76,3138836.66,821036.0,680884.1,90068.36,1546848.2,1369895.1,155333.82,21619.28,conventional,2016,LosAngeles +43,2016-02-28,0.72,3332578.34,812808.39,750266.34,95505.05,1673998.56,1459896.71,196813.37,17288.48,conventional,2016,LosAngeles +44,2016-02-21,0.76,3232888.65,842358.1,671213.11,83794.46,1635522.98,1501295.38,119573.06,14654.54,conventional,2016,LosAngeles +45,2016-02-14,0.65,3664088.6,931605.09,837742.21,90043.21,1804698.09,1567442.4,222150.04,15105.65,conventional,2016,LosAngeles +46,2016-02-07,0.58,4982700.11,1262681.15,1447533.8,98684.4,2173800.76,1911608.83,245385.02,16806.91,conventional,2016,LosAngeles +47,2016-01-31,0.74,3197788.06,1004134.51,721988.78,75111.71,1396553.06,1288253.52,94240.24,14059.3,conventional,2016,LosAngeles +48,2016-01-24,0.76,3173509.36,666019.46,779056.76,92941.13,1635492.01,1520603.55,99946.94,14941.52,conventional,2016,LosAngeles +49,2016-01-17,0.76,2952576.85,804573.11,854485.91,84389.3,1209128.53,1079975.41,111405.86,17747.26,conventional,2016,LosAngeles +50,2016-01-10,0.74,3172437.94,841326.26,803197.41,88909.89,1439004.38,1228427.24,194492.68,16084.46,conventional,2016,LosAngeles +51,2016-01-03,0.64,3967109.33,1232109.79,992212.57,90511.09,1652275.88,1415836.57,226121.9,10317.41,conventional,2016,LosAngeles +0,2016-12-25,1.01,81833.86,1337.84,35234.67,179.74,45081.61,16333.36,28748.25,0.0,conventional,2016,Louisville +1,2016-12-18,1.1,67720.14,1247.68,33646.11,433.53,32392.82,13133.96,19258.86,0.0,conventional,2016,Louisville +2,2016-12-11,0.79,105228.6,1367.94,44377.9,142.37,59340.39,11915.91,47411.82,12.66,conventional,2016,Louisville +3,2016-12-04,0.83,127200.91,1234.09,60677.07,664.79,64624.96,11670.33,52954.63,0.0,conventional,2016,Louisville +4,2016-11-27,1.26,57765.51,1047.06,26662.61,141.29,29914.55,10325.65,19588.9,0.0,conventional,2016,Louisville +5,2016-11-20,1.43,59210.76,1429.11,29056.73,159.32,28565.6,11694.68,16870.92,0.0,conventional,2016,Louisville +6,2016-11-13,1.34,64958.65,1469.38,30443.81,215.13,32830.33,11501.96,21328.37,0.0,conventional,2016,Louisville +7,2016-11-06,1.27,70881.52,1606.9,34663.27,236.33,34375.02,9517.5,24857.52,0.0,conventional,2016,Louisville +8,2016-10-30,1.28,70137.79,1769.84,35446.19,162.17,32759.59,7816.19,24943.4,0.0,conventional,2016,Louisville +9,2016-10-23,1.23,75593.36,1616.09,37427.37,314.87,36235.03,10839.29,25395.74,0.0,conventional,2016,Louisville +10,2016-10-16,1.1,81707.99,1538.97,37516.02,282.44,42370.56,11941.35,30429.21,0.0,conventional,2016,Louisville +11,2016-10-09,1.15,78262.36,1705.62,36812.98,328.99,39414.77,11916.09,27498.68,0.0,conventional,2016,Louisville +12,2016-10-02,1.24,75004.32,1351.94,37151.83,487.06,36013.49,12611.79,23401.7,0.0,conventional,2016,Louisville +13,2016-09-25,1.37,75513.07,1967.21,41728.53,413.43,31403.9,13833.11,17570.79,0.0,conventional,2016,Louisville +14,2016-09-18,1.26,87633.41,2114.94,48962.95,565.29,35990.23,13498.21,22492.02,0.0,conventional,2016,Louisville +15,2016-09-11,1.21,90086.4,3359.11,51733.48,634.74,34359.07,13618.85,20735.22,5.0,conventional,2016,Louisville +16,2016-09-04,1.11,82940.98,2682.05,45780.53,769.26,33709.14,14894.92,18599.22,215.0,conventional,2016,Louisville +17,2016-08-28,1.13,82663.2,1887.97,48991.99,614.55,31168.69,15323.61,14585.08,1260.0,conventional,2016,Louisville +18,2016-08-21,1.16,89370.33,1980.35,50039.9,735.71,36614.37,16968.15,19306.22,340.0,conventional,2016,Louisville +19,2016-08-14,1.25,85551.19,2056.05,54112.88,772.12,28610.14,17081.33,11518.81,10.0,conventional,2016,Louisville +20,2016-08-07,1.3,80997.55,3573.85,53453.99,1058.22,22911.49,13895.19,8739.63,276.67,conventional,2016,Louisville +21,2016-07-31,1.24,86030.88,2355.37,53669.84,1144.87,28860.8,13632.0,13603.6,1625.2,conventional,2016,Louisville +22,2016-07-24,1.19,95001.32,2352.49,57404.0,1995.85,33248.98,15345.04,15463.98,2439.96,conventional,2016,Louisville +23,2016-07-17,1.13,101963.67,2414.28,60191.48,2110.74,37247.17,14971.4,19863.67,2412.1,conventional,2016,Louisville +24,2016-07-10,1.15,94591.67,2784.81,62213.99,2084.03,27508.84,15928.78,8353.96,3226.1,conventional,2016,Louisville +25,2016-07-03,1.0,106600.14,2398.42,64636.42,1810.55,37754.75,18047.85,15818.57,3888.33,conventional,2016,Louisville +26,2016-06-26,1.06,98077.6,2762.38,56614.79,3534.27,35166.16,16663.76,15457.04,3045.36,conventional,2016,Louisville +27,2016-06-19,1.09,98289.94,2648.74,54424.22,5024.82,36192.16,13083.05,19034.42,4074.69,conventional,2016,Louisville +28,2016-06-12,1.16,84926.73,5365.6,50561.08,2495.61,26504.44,14528.1,9635.97,2340.37,conventional,2016,Louisville +29,2016-06-05,1.09,99179.74,2153.72,56150.97,9893.38,30981.67,15423.24,12558.7,2999.73,conventional,2016,Louisville +30,2016-05-29,0.99,109060.73,2052.33,71648.43,2467.51,32892.46,14675.3,17510.34,706.82,conventional,2016,Louisville +31,2016-05-22,0.91,113794.41,2002.85,77719.29,2243.57,31828.7,13628.45,17376.34,823.91,conventional,2016,Louisville +32,2016-05-15,0.86,106278.64,2286.09,62308.98,6837.7,34845.87,12021.77,20894.39,1929.71,conventional,2016,Louisville +33,2016-05-08,0.86,139475.75,2523.81,87801.48,6925.3,42225.16,12978.51,27788.83,1457.82,conventional,2016,Louisville +34,2016-05-01,0.88,128108.76,2499.44,81916.36,3924.47,39768.49,12605.87,26367.49,795.13,conventional,2016,Louisville +35,2016-04-24,0.93,92553.22,2116.01,55939.9,3819.11,30678.2,14568.44,15363.33,746.43,conventional,2016,Louisville +36,2016-04-17,0.92,95475.44,2120.86,55695.58,9698.99,27960.01,12091.67,13959.35,1908.99,conventional,2016,Louisville +37,2016-04-10,0.9,83504.74,1824.57,49692.01,2962.32,29025.84,12371.06,16274.95,379.83,conventional,2016,Louisville +38,2016-04-03,0.85,91459.57,2091.16,52626.19,3898.91,32843.31,9614.81,22101.11,1127.39,conventional,2016,Louisville +39,2016-03-27,0.89,120080.36,1969.51,74446.68,6188.82,37475.35,12424.3,23482.95,1568.1,conventional,2016,Louisville +40,2016-03-20,0.95,123442.1,1893.15,76888.63,6365.83,38294.49,12950.94,23671.52,1672.03,conventional,2016,Louisville +41,2016-03-13,1.07,79810.59,1951.19,47340.88,3216.26,27302.26,12899.12,13596.2,806.94,conventional,2016,Louisville +42,2016-03-06,1.02,88102.95,2028.6,49580.73,8998.16,27495.46,12369.98,12597.32,2528.16,conventional,2016,Louisville +43,2016-02-28,0.94,102196.72,2152.34,63256.87,5795.78,30991.73,11801.35,17869.01,1321.37,conventional,2016,Louisville +44,2016-02-21,0.86,114817.03,2368.19,75573.8,2285.79,34589.25,10663.72,23456.23,469.3,conventional,2016,Louisville +45,2016-02-14,0.86,124650.69,2921.35,81575.81,3867.4,36286.13,12729.87,22781.44,774.82,conventional,2016,Louisville +46,2016-02-07,0.85,148704.27,2805.31,98136.23,10193.62,37569.11,12782.1,22422.61,2364.4,conventional,2016,Louisville +47,2016-01-31,0.92,101620.12,2539.14,70021.38,4774.82,24284.78,10918.75,12100.16,1265.87,conventional,2016,Louisville +48,2016-01-24,0.89,120304.63,1672.67,72603.22,9688.49,36340.25,14236.98,20197.82,1905.45,conventional,2016,Louisville +49,2016-01-17,0.9,83687.48,2202.61,48151.24,2801.8,30531.83,14859.65,14857.11,815.07,conventional,2016,Louisville +50,2016-01-10,0.89,99956.44,2088.41,63265.58,2594.82,32007.63,14248.08,17270.79,488.76,conventional,2016,Louisville +51,2016-01-03,0.88,116363.51,2673.33,73869.01,6301.38,33519.79,11090.3,20808.69,1620.8,conventional,2016,Louisville +0,2016-12-25,0.97,648358.72,257456.07,148591.65,827.53,241483.47,87168.19,154236.11,79.17,conventional,2016,MiamiFtLauderdale +1,2016-12-18,0.97,662655.37,237194.3,158602.19,3459.99,263398.89,81459.0,181796.83,143.06,conventional,2016,MiamiFtLauderdale +2,2016-12-11,1.39,446139.65,177620.99,97259.69,159.53,171099.44,67684.21,103274.95,140.28,conventional,2016,MiamiFtLauderdale +3,2016-12-04,0.98,728191.35,267955.8,173005.48,50.7,287179.37,89646.48,197097.05,435.84,conventional,2016,MiamiFtLauderdale +4,2016-11-27,1.49,405085.56,159915.34,89345.14,120.29,155704.79,61614.63,93846.55,243.61,conventional,2016,MiamiFtLauderdale +5,2016-11-20,1.52,461236.74,179988.4,102113.0,44.24,179091.1,70029.31,109061.79,0.0,conventional,2016,MiamiFtLauderdale +6,2016-11-13,1.43,478305.06,195573.25,101415.32,255.96,181060.53,74065.08,106744.06,251.39,conventional,2016,MiamiFtLauderdale +7,2016-11-06,1.51,426159.64,176243.94,96964.16,232.81,152718.73,53017.4,99149.94,551.39,conventional,2016,MiamiFtLauderdale +8,2016-10-30,1.57,403657.05,169008.34,98080.05,247.52,136321.14,41406.6,94572.87,341.67,conventional,2016,MiamiFtLauderdale +9,2016-10-23,1.59,437488.84,164118.89,125399.44,247.99,147722.52,39215.23,108323.96,183.33,conventional,2016,MiamiFtLauderdale +10,2016-10-16,1.28,537970.39,191040.91,158620.0,235.86,188073.62,42989.0,144763.79,320.83,conventional,2016,MiamiFtLauderdale +11,2016-10-09,1.49,410181.24,153136.21,112103.55,169.71,144771.77,50604.58,94167.19,0.0,conventional,2016,MiamiFtLauderdale +12,2016-10-02,1.51,539574.59,221783.43,125421.99,360.91,192008.26,71779.19,120229.07,0.0,conventional,2016,MiamiFtLauderdale +13,2016-09-25,1.43,558552.18,251034.89,108280.87,180.9,199055.52,80169.65,118396.98,488.89,conventional,2016,MiamiFtLauderdale +14,2016-09-18,1.19,541030.4,237187.12,103912.38,281.12,199649.78,83963.06,114378.39,1308.33,conventional,2016,MiamiFtLauderdale +15,2016-09-11,1.2,480734.81,226500.24,89642.47,194.0,164398.1,77110.61,85586.1,1701.39,conventional,2016,MiamiFtLauderdale +16,2016-09-04,0.97,862396.26,525593.59,140626.89,218.05,195957.73,88544.91,106501.71,911.11,conventional,2016,MiamiFtLauderdale +17,2016-08-28,1.22,558828.81,290432.64,131832.78,259.19,136304.2,86796.76,48344.38,1163.06,conventional,2016,MiamiFtLauderdale +18,2016-08-21,1.23,565825.46,296954.65,128877.47,95.35,139897.99,82057.39,51085.6,6755.0,conventional,2016,MiamiFtLauderdale +19,2016-08-14,1.17,695230.59,400660.58,142475.6,138.85,151955.56,62925.48,83815.91,5214.17,conventional,2016,MiamiFtLauderdale +20,2016-08-07,1.25,515183.39,253093.31,125026.64,114.92,136948.52,80129.25,46177.6,10641.67,conventional,2016,MiamiFtLauderdale +21,2016-07-31,1.3,496508.86,247196.33,112882.5,177.42,136252.61,75629.17,46683.16,13940.28,conventional,2016,MiamiFtLauderdale +22,2016-07-24,1.28,520496.36,250298.08,132336.77,164.45,137697.06,78153.46,46751.66,12791.94,conventional,2016,MiamiFtLauderdale +23,2016-07-17,1.24,516716.17,241386.54,136077.96,190.34,139061.33,79192.74,43113.59,16755.0,conventional,2016,MiamiFtLauderdale +24,2016-07-10,1.24,566889.77,277354.34,142734.5,151.43,146649.5,87649.94,46987.06,12012.5,conventional,2016,MiamiFtLauderdale +25,2016-07-03,0.96,868986.46,479975.64,184172.52,129.62,204708.68,95020.96,92318.0,17369.72,conventional,2016,MiamiFtLauderdale +26,2016-06-26,1.25,540206.17,283281.44,130937.32,165.68,125821.73,78005.81,32132.03,15683.89,conventional,2016,MiamiFtLauderdale +27,2016-06-19,0.99,812334.69,474374.03,182509.48,115.34,155335.84,67085.44,74179.84,14070.56,conventional,2016,MiamiFtLauderdale +28,2016-06-12,1.28,503076.75,271970.59,107339.21,77.92,123689.03,59675.53,49302.67,14710.83,conventional,2016,MiamiFtLauderdale +29,2016-06-05,0.99,786071.68,474319.6,149114.65,252.33,162385.1,56515.95,98746.65,7122.5,conventional,2016,MiamiFtLauderdale +30,2016-05-29,0.97,849097.69,513204.86,167161.0,248.87,168482.96,64610.91,93591.22,10280.83,conventional,2016,MiamiFtLauderdale +31,2016-05-22,1.26,497819.63,273987.6,103459.89,257.43,120114.71,56006.36,54738.35,9370.0,conventional,2016,MiamiFtLauderdale +32,2016-05-15,0.88,889357.25,408466.47,227686.36,223.52,252980.9,64835.66,185705.24,2440.0,conventional,2016,MiamiFtLauderdale +33,2016-05-08,1.01,653844.27,349383.33,137741.01,173.19,166546.74,70856.95,94280.07,1409.72,conventional,2016,MiamiFtLauderdale +34,2016-05-01,0.79,1078794.69,526288.51,260626.27,584.32,291295.59,71215.05,220080.54,0.0,conventional,2016,MiamiFtLauderdale +35,2016-04-24,0.88,896845.48,419775.53,227523.41,547.08,248999.46,61116.97,186258.88,1623.61,conventional,2016,MiamiFtLauderdale +36,2016-04-17,1.12,558953.75,281531.64,117780.33,101.31,159540.47,62016.44,97104.59,419.44,conventional,2016,MiamiFtLauderdale +37,2016-04-10,0.87,841731.76,399737.57,193376.73,155.87,248461.59,54479.13,193376.9,605.56,conventional,2016,MiamiFtLauderdale +38,2016-04-03,1.15,543234.89,287271.39,103462.51,72.01,152428.98,54721.55,97707.43,0.0,conventional,2016,MiamiFtLauderdale +39,2016-03-27,1.17,468636.39,240096.64,99290.24,128.06,129121.45,52473.74,76647.71,0.0,conventional,2016,MiamiFtLauderdale +40,2016-03-20,1.13,507580.07,267187.96,105076.55,142.45,135173.11,47086.23,88086.88,0.0,conventional,2016,MiamiFtLauderdale +41,2016-03-13,0.88,799992.86,399729.47,176357.78,181.05,223724.56,49544.91,174179.65,0.0,conventional,2016,MiamiFtLauderdale +42,2016-03-06,1.16,448052.1,223851.91,93574.47,93.03,130532.69,48944.94,81587.75,0.0,conventional,2016,MiamiFtLauderdale +43,2016-02-28,0.83,822403.21,428974.24,169811.82,702.82,222914.33,56123.39,166790.94,0.0,conventional,2016,MiamiFtLauderdale +44,2016-02-21,1.1,481704.97,244778.76,102684.81,78.3,134163.1,48792.84,85370.26,0.0,conventional,2016,MiamiFtLauderdale +45,2016-02-14,1.12,446631.37,219037.75,101866.88,75.47,125651.27,54765.16,70886.11,0.0,conventional,2016,MiamiFtLauderdale +46,2016-02-07,0.59,1180631.07,649646.72,241271.36,231.23,289481.76,71559.97,217921.79,0.0,conventional,2016,MiamiFtLauderdale +47,2016-01-31,1.11,492691.03,287032.09,79763.12,168.96,125726.86,59045.69,66681.17,0.0,conventional,2016,MiamiFtLauderdale +48,2016-01-24,0.96,611557.77,416813.56,61067.87,259.56,133416.78,68930.73,64486.05,0.0,conventional,2016,MiamiFtLauderdale +49,2016-01-17,1.2,430079.07,276253.48,62106.53,292.47,91426.59,61025.39,30401.2,0.0,conventional,2016,MiamiFtLauderdale +50,2016-01-10,0.97,702726.81,493952.15,82027.84,249.76,126497.06,58416.81,68080.25,0.0,conventional,2016,MiamiFtLauderdale +51,2016-01-03,1.13,502583.68,349992.75,44399.13,40.78,108151.02,64404.45,43746.57,0.0,conventional,2016,MiamiFtLauderdale +0,2016-12-25,1.23,2180512.1,461611.36,873785.28,33980.02,811135.44,680183.89,126818.99,4132.56,conventional,2016,Midsouth +1,2016-12-18,1.16,2242221.26,491941.19,999958.67,36485.49,713835.91,611023.76,98743.78,4068.37,conventional,2016,Midsouth +2,2016-12-11,1.15,2339977.39,574106.6,862587.29,39178.61,864104.89,700661.19,158716.0,4727.7,conventional,2016,Midsouth +3,2016-12-04,1.2,2359837.16,605907.37,873734.56,41579.46,838615.77,629436.34,206025.98,3153.45,conventional,2016,Midsouth +4,2016-11-27,1.4,1858065.15,421295.51,729252.94,33160.82,674355.88,589240.41,82533.8,2581.67,conventional,2016,Midsouth +5,2016-11-20,1.48,1999044.43,478380.64,712348.38,53734.01,754581.4,664868.53,87750.1,1962.77,conventional,2016,Midsouth +6,2016-11-13,1.52,2075282.76,589046.77,723968.74,99449.47,662817.78,562621.68,97915.02,2281.08,conventional,2016,Midsouth +7,2016-11-06,1.54,2077507.41,569735.76,697011.92,122472.4,688287.33,588028.35,99508.98,750.0,conventional,2016,Midsouth +8,2016-10-30,1.48,2083054.88,606275.55,713427.63,107745.17,655606.53,547423.0,104591.3,3592.23,conventional,2016,Midsouth +9,2016-10-23,1.47,2287507.52,611972.37,851527.3,94122.62,729885.23,621196.02,104911.15,3778.06,conventional,2016,Midsouth +10,2016-10-16,1.4,2442981.97,642844.77,921533.78,76681.49,801921.93,673260.91,128075.74,585.28,conventional,2016,Midsouth +11,2016-10-09,1.39,2469381.94,651705.04,951060.09,81958.03,784658.78,651749.08,131811.09,1098.61,conventional,2016,Midsouth +12,2016-10-02,1.38,2540672.44,662661.76,965796.82,77380.74,834833.12,709302.35,123116.88,2413.89,conventional,2016,Midsouth +13,2016-09-25,1.37,2568161.45,748452.52,947415.59,73332.83,798960.51,698140.82,100819.69,0.0,conventional,2016,Midsouth +14,2016-09-18,1.28,2785256.41,850690.32,1019588.17,70265.42,844712.5,707259.08,137295.64,157.78,conventional,2016,Midsouth +15,2016-09-11,1.18,3068639.36,938277.4,1164893.69,82491.6,882976.67,747297.58,133300.76,2378.33,conventional,2016,Midsouth +16,2016-09-04,1.2,3127950.4,954420.93,1150320.87,86826.84,936381.76,832619.08,100199.03,3563.65,conventional,2016,Midsouth +17,2016-08-28,1.3,2799097.68,745329.31,1165119.09,67370.64,821278.64,738431.65,65178.37,17668.62,conventional,2016,Midsouth +18,2016-08-21,1.27,2840526.38,684458.46,1180365.78,96330.92,879371.22,774039.71,94491.42,10840.09,conventional,2016,Midsouth +19,2016-08-14,1.29,2901786.65,666957.64,1211099.91,107539.52,916189.58,825797.1,87262.48,3130.0,conventional,2016,Midsouth +20,2016-08-07,1.3,2900751.48,680835.87,1274555.63,119737.55,825622.43,718727.95,96534.22,10360.26,conventional,2016,Midsouth +21,2016-07-31,1.35,2787002.19,612846.55,1247700.03,127238.92,799216.69,705609.86,74747.99,18858.84,conventional,2016,Midsouth +22,2016-07-24,1.32,2914817.51,611049.2,1286835.89,133520.1,883412.32,738517.02,97932.68,46962.62,conventional,2016,Midsouth +23,2016-07-17,1.26,2940448.51,582052.07,1272165.13,137997.09,948234.22,794533.1,82513.33,71187.79,conventional,2016,Midsouth +24,2016-07-10,1.19,3221650.74,607742.57,1498358.41,198307.05,917242.71,753805.95,84303.2,79133.56,conventional,2016,Midsouth +25,2016-07-03,1.15,3393696.45,653109.17,1523684.65,213314.73,1003587.9,827533.73,98647.47,77406.7,conventional,2016,Midsouth +26,2016-06-26,1.17,3095673.83,590854.99,1468309.1,204710.19,831799.55,740396.18,58981.95,32421.42,conventional,2016,Midsouth +27,2016-06-19,1.16,3304967.62,674982.83,1530425.54,230513.77,869045.48,750464.94,81187.92,37392.62,conventional,2016,Midsouth +28,2016-06-12,1.15,3122351.17,677443.53,1422914.0,229464.95,792528.69,711257.87,50027.88,31242.94,conventional,2016,Midsouth +29,2016-06-05,1.14,3223814.39,673473.95,1510540.87,214241.6,825557.97,724592.03,78843.66,22122.28,conventional,2016,Midsouth +30,2016-05-29,1.09,3349139.43,708286.6,1603134.92,199248.47,838469.44,736868.61,87305.62,14295.21,conventional,2016,Midsouth +31,2016-05-22,1.08,3154318.39,658991.13,1530509.31,95835.45,868982.5,772949.59,78541.95,17490.96,conventional,2016,Midsouth +32,2016-05-15,1.04,3205037.79,592139.41,1687342.39,89570.91,835985.08,708347.56,121070.09,6567.43,conventional,2016,Midsouth +33,2016-05-08,0.95,3850645.65,711397.32,2144351.44,94749.11,900147.78,768301.04,126429.41,5417.33,conventional,2016,Midsouth +34,2016-05-01,0.99,3536333.98,708526.79,1861915.25,89464.87,876427.07,742694.07,131751.36,1981.64,conventional,2016,Midsouth +35,2016-04-24,1.04,3332609.87,665027.77,1711268.77,90675.6,865637.73,760964.53,101987.63,2685.57,conventional,2016,Midsouth +36,2016-04-17,1.06,3029003.02,544932.88,1613809.61,97349.53,772911.0,692332.57,75800.03,4778.4,conventional,2016,Midsouth +37,2016-04-10,1.05,2836884.82,589785.48,1349757.59,79794.87,817546.88,703737.29,112614.44,1195.15,conventional,2016,Midsouth +38,2016-04-03,1.07,2690267.94,564866.92,1351629.65,78798.43,694972.94,593439.47,99452.54,2080.93,conventional,2016,Midsouth +39,2016-03-27,1.08,2911903.46,558314.44,1535010.34,90880.43,727698.25,630763.15,94069.91,2865.19,conventional,2016,Midsouth +40,2016-03-20,1.05,3198477.41,617677.39,1715343.39,98398.87,767057.76,672333.85,91600.75,3123.16,conventional,2016,Midsouth +41,2016-03-13,1.07,3093898.37,573263.79,1674136.15,107243.08,739255.35,637043.83,100801.35,1410.17,conventional,2016,Midsouth +42,2016-03-06,1.1,2942515.87,592136.76,1532054.71,122484.91,695839.49,618397.55,73641.87,3800.07,conventional,2016,Midsouth +43,2016-02-28,1.05,3032920.39,593530.85,1680329.57,106123.73,652936.24,544827.75,105806.49,2302.0,conventional,2016,Midsouth +44,2016-02-21,1.06,2747176.06,539072.29,1378970.85,141965.35,687167.57,586732.16,99759.98,675.43,conventional,2016,Midsouth +45,2016-02-14,0.99,3173460.24,654357.46,1639480.98,144264.21,735357.59,620880.86,113431.73,1045.0,conventional,2016,Midsouth +46,2016-02-07,0.91,4131614.84,867821.71,2164456.6,220032.02,879304.51,712463.41,162491.57,4349.53,conventional,2016,Midsouth +47,2016-01-31,1.0,2881461.41,555939.0,1608441.06,133521.63,583559.72,496721.51,84565.77,2272.44,conventional,2016,Midsouth +48,2016-01-24,1.01,3147902.67,472744.05,1787662.94,146094.55,741401.13,630109.47,107122.67,4168.99,conventional,2016,Midsouth +49,2016-01-17,1.05,3001683.91,631861.3,1547484.48,136752.83,685585.3,613646.83,70548.01,1390.46,conventional,2016,Midsouth +50,2016-01-10,1.04,2871898.66,603274.41,1439156.96,141334.22,688133.07,601246.48,85472.6,1413.99,conventional,2016,Midsouth +51,2016-01-03,1.01,2967929.65,675102.33,1566127.03,150716.62,575983.67,504610.53,64629.99,6743.15,conventional,2016,Midsouth +0,2016-12-25,0.93,166486.05,63236.61,18070.01,66.44,85112.99,67429.01,16683.98,1000.0,conventional,2016,Nashville +1,2016-12-18,0.92,158024.16,66411.85,16272.07,104.08,75236.16,57450.73,16375.43,1410.0,conventional,2016,Nashville +2,2016-12-11,0.9,193711.04,84856.17,12359.04,158.44,96337.39,83236.32,10921.07,2180.0,conventional,2016,Nashville +3,2016-12-04,0.96,189526.37,82751.98,20042.35,853.8,85878.24,60604.33,23948.91,1325.0,conventional,2016,Nashville +4,2016-11-27,1.24,129937.75,50379.42,12290.64,177.21,67090.48,55387.15,11098.89,604.44,conventional,2016,Nashville +5,2016-11-20,1.33,131605.7,53849.43,12277.03,98.85,65380.39,54104.45,10860.94,415.0,conventional,2016,Nashville +6,2016-11-13,1.39,141387.19,59293.41,13161.11,181.78,68750.89,56865.21,10715.68,1170.0,conventional,2016,Nashville +7,2016-11-06,1.31,146936.93,66594.58,13756.62,126.52,66459.21,54846.72,11172.49,440.0,conventional,2016,Nashville +8,2016-10-30,1.18,151715.9,65786.54,17343.11,165.83,68420.42,54539.04,12436.38,1445.0,conventional,2016,Nashville +9,2016-10-23,1.19,163017.85,66511.98,28375.72,125.57,68004.58,57360.66,9383.92,1260.0,conventional,2016,Nashville +10,2016-10-16,1.06,177609.17,78566.29,21640.42,233.46,77169.0,56615.71,20373.29,180.0,conventional,2016,Nashville +11,2016-10-09,1.2,156477.24,77153.68,15555.1,127.9,63640.56,41727.3,21913.26,0.0,conventional,2016,Nashville +12,2016-10-02,1.15,172755.25,76163.23,15615.55,85.74,80890.73,63579.82,17310.91,0.0,conventional,2016,Nashville +13,2016-09-25,1.16,174768.99,79738.2,20581.3,188.24,74261.25,59330.89,14930.36,0.0,conventional,2016,Nashville +14,2016-09-18,1.01,191359.67,98830.01,16914.64,80.79,75534.23,55278.01,20256.22,0.0,conventional,2016,Nashville +15,2016-09-11,0.75,250165.13,144886.48,12777.22,342.05,92159.38,70618.95,21540.43,0.0,conventional,2016,Nashville +16,2016-09-04,0.73,292902.13,172938.84,14374.03,371.7,105217.56,89643.04,15574.52,0.0,conventional,2016,Nashville +17,2016-08-28,1.09,172757.72,104278.59,12600.77,347.34,55531.02,52255.66,3275.36,0.0,conventional,2016,Nashville +18,2016-08-21,1.09,184733.93,102330.82,15916.71,193.95,66292.45,62586.96,3705.49,0.0,conventional,2016,Nashville +19,2016-08-14,1.06,202833.66,102665.18,19071.46,173.94,80923.08,67507.82,13415.26,0.0,conventional,2016,Nashville +20,2016-08-07,1.12,188016.6,95351.73,25466.1,161.34,67037.43,46061.04,20976.39,0.0,conventional,2016,Nashville +21,2016-07-31,1.1,186520.46,88436.32,29435.66,250.6,68397.88,58584.96,9715.7,97.22,conventional,2016,Nashville +22,2016-07-24,1.07,191727.48,87692.81,31317.01,255.64,72462.02,59470.62,12991.4,0.0,conventional,2016,Nashville +23,2016-07-17,1.07,196773.62,90032.0,33912.54,220.24,72608.84,63132.79,9476.05,0.0,conventional,2016,Nashville +24,2016-07-10,1.0,198240.02,88754.1,37966.33,320.41,71199.18,51675.19,19523.99,0.0,conventional,2016,Nashville +25,2016-07-03,0.87,250902.49,106013.67,46053.0,354.02,98481.8,74730.82,23750.98,0.0,conventional,2016,Nashville +26,2016-06-26,0.98,195471.62,100031.56,25602.81,243.82,69593.43,60658.88,8683.16,251.39,conventional,2016,Nashville +27,2016-06-19,0.89,232084.2,135024.7,19715.89,436.95,76906.66,62256.8,13376.53,1273.33,conventional,2016,Nashville +28,2016-06-12,0.97,190921.36,119783.13,12815.76,905.03,57417.44,46174.86,9199.25,2043.33,conventional,2016,Nashville +29,2016-06-05,0.88,223368.78,136409.36,17532.4,727.53,68699.49,52919.87,14359.62,1420.0,conventional,2016,Nashville +30,2016-05-29,0.87,238624.36,144140.44,21273.82,993.26,72216.84,56072.86,15057.31,1086.67,conventional,2016,Nashville +31,2016-05-22,0.92,204128.5,115616.52,18839.88,712.61,68959.49,56097.72,11396.65,1465.12,conventional,2016,Nashville +32,2016-05-15,0.81,219615.86,103729.74,31344.62,975.69,83565.81,55828.84,27611.27,125.7,conventional,2016,Nashville +33,2016-05-08,0.88,212720.44,114895.39,26341.65,745.9,70737.5,51755.7,18956.39,25.41,conventional,2016,Nashville +34,2016-05-01,0.81,237679.37,117137.23,37442.51,1425.99,81673.64,49536.04,32137.6,0.0,conventional,2016,Nashville +35,2016-04-24,0.81,233759.31,111614.9,33820.97,1474.28,86849.16,60106.84,26635.38,106.94,conventional,2016,Nashville +36,2016-04-17,0.9,178369.19,96001.31,23421.52,1199.07,57747.29,40772.11,16972.66,2.52,conventional,2016,Nashville +37,2016-04-10,0.82,206829.38,98423.23,31061.97,3073.03,74271.15,43662.04,30601.57,7.54,conventional,2016,Nashville +38,2016-04-03,0.95,165587.67,94345.14,19391.21,6467.38,45383.94,26413.15,18970.79,0.0,conventional,2016,Nashville +39,2016-03-27,0.93,171568.47,98386.62,20112.88,6373.68,46695.29,33537.98,13157.31,0.0,conventional,2016,Nashville +40,2016-03-20,0.93,179305.81,100108.05,21586.77,6535.06,51075.93,35369.01,15704.4,2.52,conventional,2016,Nashville +41,2016-03-13,0.87,188478.21,91631.74,32085.32,5965.84,58795.31,27726.02,31069.29,0.0,conventional,2016,Nashville +42,2016-03-06,0.97,159755.26,87362.97,20762.36,5969.9,45660.03,29901.71,15758.32,0.0,conventional,2016,Nashville +43,2016-02-28,0.88,190263.02,99189.75,31558.82,7034.53,52479.92,27927.65,24552.27,0.0,conventional,2016,Nashville +44,2016-02-21,0.94,182025.3,101831.21,25448.04,9518.87,45227.18,33528.15,11699.03,0.0,conventional,2016,Nashville +45,2016-02-14,0.88,203205.09,103368.34,42830.57,8627.2,48378.98,32189.53,16189.45,0.0,conventional,2016,Nashville +46,2016-02-07,0.77,268608.69,124530.37,59611.16,7759.08,76708.08,39458.27,37249.81,0.0,conventional,2016,Nashville +47,2016-01-31,0.95,173689.71,90482.99,33297.46,8012.73,41896.53,27523.08,14373.45,0.0,conventional,2016,Nashville +48,2016-01-24,0.87,167159.24,78105.34,33125.0,6297.48,49631.42,25723.5,23907.92,0.0,conventional,2016,Nashville +49,2016-01-17,0.95,181360.74,98888.27,30227.7,6427.63,45817.14,32109.79,13707.35,0.0,conventional,2016,Nashville +50,2016-01-10,0.9,212752.83,123086.83,29886.44,7579.87,52199.69,31952.8,20246.89,0.0,conventional,2016,Nashville +51,2016-01-03,0.98,185316.35,131286.47,11153.76,7695.24,35180.88,26143.71,9037.17,0.0,conventional,2016,Nashville +0,2016-12-25,0.94,225497.02,117054.55,23166.27,258.6,85017.6,59964.43,19594.84,5458.33,conventional,2016,NewOrleansMobile +1,2016-12-18,1.08,183103.22,83700.37,21081.99,430.0,77890.86,51001.13,17159.73,9730.0,conventional,2016,NewOrleansMobile +2,2016-12-11,1.21,177582.49,89506.41,18892.4,205.0,68978.68,53845.72,11187.68,3945.28,conventional,2016,NewOrleansMobile +3,2016-12-04,1.05,253241.58,143482.91,24486.13,120.0,85152.54,62849.94,19437.6,2865.0,conventional,2016,NewOrleansMobile +4,2016-11-27,1.38,148538.06,76603.69,17900.83,50.0,53983.54,40901.98,12685.45,396.11,conventional,2016,NewOrleansMobile +5,2016-11-20,1.35,167233.36,86431.23,23609.67,51.0,57141.46,44174.88,12726.58,240.0,conventional,2016,NewOrleansMobile +6,2016-11-13,1.26,225721.51,133593.96,30401.95,102.91,61622.69,45125.04,15814.59,683.06,conventional,2016,NewOrleansMobile +7,2016-11-06,1.49,183542.31,98949.98,22891.61,95.0,61605.72,43571.99,17499.01,534.72,conventional,2016,NewOrleansMobile +8,2016-10-30,1.48,163510.83,71230.82,22081.11,373.58,69825.32,43587.37,16789.62,9448.33,conventional,2016,NewOrleansMobile +9,2016-10-23,1.44,203438.23,102352.79,30817.32,245.0,70023.12,50403.63,15594.49,4025.0,conventional,2016,NewOrleansMobile +10,2016-10-16,1.36,222712.89,112346.71,27293.53,501.91,82570.74,54473.06,16752.68,11345.0,conventional,2016,NewOrleansMobile +11,2016-10-09,1.25,233898.8,114410.24,41719.96,401.91,77366.69,49871.41,16720.28,10775.0,conventional,2016,NewOrleansMobile +12,2016-10-02,1.29,214690.77,108880.32,32258.23,338.69,73213.53,51156.36,14452.17,7605.0,conventional,2016,NewOrleansMobile +13,2016-09-25,1.19,264726.41,141795.96,34973.15,892.33,87064.97,58016.11,14213.86,14835.0,conventional,2016,NewOrleansMobile +14,2016-09-18,1.18,244913.97,126047.18,32908.26,447.79,85510.74,58161.71,16384.03,10965.0,conventional,2016,NewOrleansMobile +15,2016-09-11,1.13,250492.62,141311.03,37594.59,252.9,71334.1,58389.81,9139.29,3805.0,conventional,2016,NewOrleansMobile +16,2016-09-04,0.94,324151.3,172989.33,65043.94,274.9,85843.13,63878.78,12704.35,9260.0,conventional,2016,NewOrleansMobile +17,2016-08-28,1.02,309238.91,171213.5,49486.31,363.52,88175.58,64573.67,16041.91,7560.0,conventional,2016,NewOrleansMobile +18,2016-08-21,1.04,314573.49,187528.23,43283.16,305.0,83457.1,61315.63,12616.47,9525.0,conventional,2016,NewOrleansMobile +19,2016-08-14,1.11,265537.57,148300.05,48204.73,189.86,68842.93,52182.75,14285.18,2375.0,conventional,2016,NewOrleansMobile +20,2016-08-07,1.13,287114.43,153070.5,52769.71,333.85,80940.37,62537.13,9693.8,8709.44,conventional,2016,NewOrleansMobile +21,2016-07-31,1.2,254878.35,141489.27,39957.26,239.09,73192.73,58784.17,13783.56,625.0,conventional,2016,NewOrleansMobile +22,2016-07-24,1.16,261491.83,127608.67,41610.13,397.0,91876.03,68532.55,10508.48,12835.0,conventional,2016,NewOrleansMobile +23,2016-07-17,1.09,284925.7,141466.9,40877.52,271.3,102309.98,86821.17,13213.81,2275.0,conventional,2016,NewOrleansMobile +24,2016-07-10,1.06,291978.06,149481.91,41307.31,335.0,100853.84,79378.63,10060.49,11414.72,conventional,2016,NewOrleansMobile +25,2016-07-03,0.93,360419.86,194809.44,44367.9,320.72,120921.8,98981.79,15078.34,6861.67,conventional,2016,NewOrleansMobile +26,2016-06-26,1.05,267116.01,137323.53,37595.55,396.04,91800.89,73510.29,9280.6,9010.0,conventional,2016,NewOrleansMobile +27,2016-06-19,0.97,293340.02,162451.07,39328.87,267.67,91292.41,70450.55,16416.86,4425.0,conventional,2016,NewOrleansMobile +28,2016-06-12,0.95,283922.91,163474.77,35055.89,495.77,84896.48,63204.33,9379.93,12312.22,conventional,2016,NewOrleansMobile +29,2016-06-05,0.89,291490.49,176829.29,26539.09,557.45,87564.66,59274.56,15485.38,12804.72,conventional,2016,NewOrleansMobile +30,2016-05-29,0.85,300077.74,167413.0,47486.01,355.33,84823.4,65115.76,14412.64,5295.0,conventional,2016,NewOrleansMobile +31,2016-05-22,0.96,271554.45,152790.74,32548.05,495.61,85720.05,67298.09,13429.74,4992.22,conventional,2016,NewOrleansMobile +32,2016-05-15,0.86,288244.89,156109.25,35603.07,455.63,96076.94,62286.55,33790.39,0.0,conventional,2016,NewOrleansMobile +33,2016-05-08,0.63,495732.92,304801.74,41988.69,455.82,148486.67,128875.87,19610.8,0.0,conventional,2016,NewOrleansMobile +34,2016-05-01,0.58,564738.86,341116.17,60230.81,1500.12,161891.76,118421.93,43469.83,0.0,conventional,2016,NewOrleansMobile +35,2016-04-24,0.87,295498.57,150931.36,33965.14,3088.13,107513.94,77956.93,29557.01,0.0,conventional,2016,NewOrleansMobile +36,2016-04-17,0.87,323909.4,181796.23,32868.32,380.73,108864.12,89653.6,19210.52,0.0,conventional,2016,NewOrleansMobile +37,2016-04-10,0.87,312471.42,166398.15,34799.32,612.27,110661.68,81778.22,28883.46,0.0,conventional,2016,NewOrleansMobile +38,2016-04-03,0.89,316709.44,183584.86,29117.49,4574.45,99432.64,80521.66,18910.98,0.0,conventional,2016,NewOrleansMobile +39,2016-03-27,0.94,263581.97,138523.24,31627.14,1281.63,92149.96,79866.18,12283.78,0.0,conventional,2016,NewOrleansMobile +40,2016-03-20,0.94,273647.06,148492.54,30606.51,1534.28,93013.73,77772.96,15240.77,0.0,conventional,2016,NewOrleansMobile +41,2016-03-13,0.91,304057.64,160965.45,38522.85,455.16,104114.18,80240.98,23873.2,0.0,conventional,2016,NewOrleansMobile +42,2016-03-06,0.97,267953.78,150786.3,27025.48,565.65,89576.35,74664.71,14911.64,0.0,conventional,2016,NewOrleansMobile +43,2016-02-28,0.8,320342.69,173568.42,35255.98,991.5,110526.79,84691.42,25835.37,0.0,conventional,2016,NewOrleansMobile +44,2016-02-21,0.89,263057.19,142078.71,31665.87,322.0,88990.61,71315.06,17675.55,0.0,conventional,2016,NewOrleansMobile +45,2016-02-14,0.81,269319.37,175416.56,29031.38,379.12,64492.31,51330.77,13161.54,0.0,conventional,2016,NewOrleansMobile +46,2016-02-07,0.58,542750.89,348348.45,55886.98,566.5,137948.96,114075.87,23873.09,0.0,conventional,2016,NewOrleansMobile +47,2016-01-31,0.88,282933.79,164436.06,33071.52,347.05,85079.16,74926.48,10152.68,0.0,conventional,2016,NewOrleansMobile +48,2016-01-24,0.9,228086.1,101029.21,36030.5,403.01,90623.38,77619.11,13004.27,0.0,conventional,2016,NewOrleansMobile +49,2016-01-17,0.88,286862.77,158616.27,41109.9,499.98,86636.62,77817.46,8819.16,0.0,conventional,2016,NewOrleansMobile +50,2016-01-10,0.9,264477.45,160167.42,24063.03,440.92,79806.08,67742.84,12063.24,0.0,conventional,2016,NewOrleansMobile +51,2016-01-03,0.86,274498.01,159513.2,40902.35,352.6,73729.86,65954.52,7775.34,0.0,conventional,2016,NewOrleansMobile +0,2016-12-25,1.36,1087984.9,11329.85,713042.43,84414.47,279198.15,241335.64,36654.59,1207.92,conventional,2016,NewYork +1,2016-12-18,1.26,1241381.71,14178.17,954802.6,15428.57,256972.37,215851.19,39174.98,1946.2,conventional,2016,NewYork +2,2016-12-11,1.32,1163696.14,10994.77,793989.54,5247.11,353464.72,247566.16,104392.33,1506.23,conventional,2016,NewYork +3,2016-12-04,1.52,960475.67,13893.11,696042.02,2350.43,248190.11,214068.14,33668.33,453.64,conventional,2016,NewYork +4,2016-11-27,1.56,970753.07,15264.26,696848.85,2022.9,256617.06,223707.17,32610.95,298.94,conventional,2016,NewYork +5,2016-11-20,1.59,1093097.04,16970.61,732069.33,2999.16,341057.94,303438.25,35803.02,1816.67,conventional,2016,NewYork +6,2016-11-13,1.9,830018.48,12169.08,523321.98,2970.03,291557.39,248573.27,42984.12,0.0,conventional,2016,NewYork +7,2016-11-06,1.93,767190.62,10277.48,460230.47,3519.45,293163.22,250705.71,42457.51,0.0,conventional,2016,NewYork +8,2016-10-30,1.99,618279.77,9264.98,435952.49,1595.64,171466.66,148756.72,21484.94,1225.0,conventional,2016,NewYork +9,2016-10-23,1.95,807564.93,11212.72,512038.46,2086.69,282227.06,275967.53,5009.53,1250.0,conventional,2016,NewYork +10,2016-10-16,1.89,969846.54,15611.16,636341.88,1794.03,316099.47,279470.03,35805.83,823.61,conventional,2016,NewYork +11,2016-10-09,1.76,1031060.45,20086.94,688905.67,1806.94,320260.9,272661.39,47381.07,218.44,conventional,2016,NewYork +12,2016-10-02,1.72,1057930.65,33926.41,658467.15,3847.42,361689.67,310800.35,50151.82,737.5,conventional,2016,NewYork +13,2016-09-25,1.62,1061132.87,121477.42,566149.9,2002.25,371503.3,333527.7,37136.71,838.89,conventional,2016,NewYork +14,2016-09-18,1.5,1108446.44,112702.36,551448.57,1664.22,442631.29,390220.5,52277.46,133.33,conventional,2016,NewYork +15,2016-09-11,1.26,1558413.54,239517.85,883865.63,2148.56,432881.5,384183.89,48239.8,457.81,conventional,2016,NewYork +16,2016-09-04,1.47,1278749.25,23916.16,832269.64,12219.16,410344.29,355517.25,53778.4,1048.64,conventional,2016,NewYork +17,2016-08-28,1.58,1212399.97,19257.01,715527.43,37849.93,439765.6,378940.19,57956.65,2868.76,conventional,2016,NewYork +18,2016-08-21,1.47,1334937.86,15005.3,771413.01,4586.26,543933.29,487247.69,52652.56,4033.04,conventional,2016,NewYork +19,2016-08-14,1.49,1275952.93,18600.18,714407.25,13049.64,529895.86,496919.98,31781.23,1194.65,conventional,2016,NewYork +20,2016-08-07,1.54,1256917.91,22522.19,668121.42,26114.18,540160.12,496292.38,40991.68,2876.06,conventional,2016,NewYork +21,2016-07-31,1.7,1122162.86,16312.56,609412.65,21053.58,475384.07,453444.02,19392.83,2547.22,conventional,2016,NewYork +22,2016-07-24,1.68,1180373.67,14628.74,650141.77,22932.6,492670.56,466170.19,21057.43,5442.94,conventional,2016,NewYork +23,2016-07-17,1.64,1076259.08,12881.29,611445.16,28823.32,423109.31,365760.49,50850.98,6497.84,conventional,2016,NewYork +24,2016-07-10,1.51,1266199.75,15424.35,700324.85,38821.41,511629.14,423617.35,84322.87,3688.92,conventional,2016,NewYork +25,2016-07-03,1.53,1280725.34,14732.72,746733.25,49981.26,469278.11,401172.73,62447.69,5657.69,conventional,2016,NewYork +26,2016-06-26,1.2,1622151.78,16027.59,1130566.68,30501.74,445055.77,385977.77,56319.65,2758.35,conventional,2016,NewYork +27,2016-06-19,1.5,1372612.33,16094.41,901972.6,28828.95,425716.37,366851.46,55746.88,3118.03,conventional,2016,NewYork +28,2016-06-12,1.44,1485642.35,19083.82,976390.73,21103.91,469063.89,404818.7,60441.51,3803.68,conventional,2016,NewYork +29,2016-06-05,1.47,1447580.25,15757.13,955311.63,23821.5,452689.99,387456.57,63464.32,1769.1,conventional,2016,NewYork +30,2016-05-29,1.08,1827100.26,19729.58,1354634.86,24551.86,428183.96,357118.51,70667.12,398.33,conventional,2016,NewYork +31,2016-05-22,1.14,1586647.62,16781.6,1157504.36,16382.54,395979.12,362726.03,32847.65,405.44,conventional,2016,NewYork +32,2016-05-15,1.14,1706730.17,17964.49,1274098.3,16601.36,398066.02,343885.47,52450.52,1730.03,conventional,2016,NewYork +33,2016-05-08,0.77,2740587.86,26384.21,2283465.22,21633.51,409104.92,349589.72,59095.76,419.44,conventional,2016,NewYork +34,2016-05-01,1.22,1536109.56,16424.04,1106990.04,11518.08,401177.4,321936.31,79106.38,134.71,conventional,2016,NewYork +35,2016-04-24,1.12,1718055.86,19783.48,1290475.48,12409.29,395387.61,331784.37,62792.13,811.11,conventional,2016,NewYork +36,2016-04-17,1.08,1030786.84,16212.12,582843.38,4694.24,427037.1,350600.31,74702.17,1734.62,conventional,2016,NewYork +37,2016-04-10,1.09,987897.9,19209.79,588026.18,2136.66,378525.27,337797.27,38411.25,2316.75,conventional,2016,NewYork +38,2016-04-03,1.31,1240608.2,15436.69,912292.57,1685.41,311193.53,269122.16,42071.37,0.0,conventional,2016,NewYork +39,2016-03-27,1.32,1395562.08,17761.56,1008215.2,1438.13,368147.19,316529.29,51617.9,0.0,conventional,2016,NewYork +40,2016-03-20,1.09,1743194.56,23278.85,1269404.72,1917.48,448593.51,407712.49,40881.02,0.0,conventional,2016,NewYork +41,2016-03-13,1.17,1600417.32,28599.84,1237674.92,2800.71,331341.85,287983.06,43358.79,0.0,conventional,2016,NewYork +42,2016-03-06,1.24,1455656.4,18107.83,1074827.27,2066.31,360654.99,317977.04,42677.95,0.0,conventional,2016,NewYork +43,2016-02-28,1.15,1594427.98,18295.61,1282457.13,2027.64,291647.6,249147.27,42500.33,0.0,conventional,2016,NewYork +44,2016-02-21,1.21,1315177.5,15028.05,930110.1,3071.33,366968.02,323061.15,43906.87,0.0,conventional,2016,NewYork +45,2016-02-14,1.09,1806980.64,23786.18,1388157.42,1219.98,393817.06,326948.56,66868.5,0.0,conventional,2016,NewYork +46,2016-02-07,0.95,2202127.86,23983.2,1630429.86,2999.72,544715.08,502578.01,42137.07,0.0,conventional,2016,NewYork +47,2016-01-31,1.02,1615465.33,18769.06,1284268.92,1383.65,311043.7,269851.19,41190.34,2.17,conventional,2016,NewYork +48,2016-01-24,1.3,1429242.83,16058.14,993964.41,1854.2,417366.08,345620.2,71745.88,0.0,conventional,2016,NewYork +49,2016-01-17,1.01,1840344.27,18562.23,1422978.1,4948.8,393855.14,349479.81,44375.33,0.0,conventional,2016,NewYork +50,2016-01-10,1.15,1364272.64,16165.18,1012218.12,1669.99,334219.35,278109.41,56109.94,0.0,conventional,2016,NewYork +51,2016-01-03,1.07,1454164.32,16972.91,1192875.91,1462.15,242853.35,205535.79,37308.73,8.83,conventional,2016,NewYork +0,2016-12-25,1.36,3216470.61,109608.75,2191723.95,117488.47,797649.44,742542.5,53297.99,1808.95,conventional,2016,Northeast +1,2016-12-18,1.22,3686005.68,140720.26,2795230.71,36711.66,713343.05,651338.34,59782.7,2222.01,conventional,2016,Northeast +2,2016-12-11,1.32,3381321.05,102683.58,2390081.54,19968.52,868587.41,733966.4,132518.0,2103.01,conventional,2016,Northeast +3,2016-12-04,1.4,3222663.98,130456.71,2427295.83,12275.54,652635.9,606208.58,45127.69,1299.63,conventional,2016,Northeast +4,2016-11-27,1.51,2701518.48,102215.56,1938616.78,10853.05,649833.09,608290.41,40586.85,955.83,conventional,2016,Northeast +5,2016-11-20,1.51,3206946.52,126526.23,2178698.04,16299.41,885422.84,839621.36,43848.7,1952.78,conventional,2016,Northeast +6,2016-11-13,1.67,2706838.44,126870.22,1797497.36,14009.38,768461.48,716107.95,52343.53,10.0,conventional,2016,Northeast +7,2016-11-06,1.71,2507401.04,124032.58,1616563.04,13244.25,753561.17,699083.75,53807.98,669.44,conventional,2016,Northeast +8,2016-10-30,1.72,2364424.49,118904.18,1616421.48,12120.21,616978.62,587560.44,28141.79,1276.39,conventional,2016,Northeast +9,2016-10-23,1.67,2916578.9,137388.92,1930226.81,16940.59,832022.58,817362.4,12135.18,2525.0,conventional,2016,Northeast +10,2016-10-16,1.65,3107049.25,144612.79,2009401.22,13908.08,939127.16,892219.03,46084.52,823.61,conventional,2016,Northeast +11,2016-10-09,1.54,3350949.74,154892.72,2258828.33,12844.95,924383.74,866463.4,57527.85,392.49,conventional,2016,Northeast +12,2016-10-02,1.59,3257752.57,208054.74,2048824.18,17032.95,983840.7,922618.7,60122.74,1099.26,conventional,2016,Northeast +13,2016-09-25,1.53,3458790.86,446786.96,1993513.53,18241.6,1000248.77,950223.22,49098.88,926.67,conventional,2016,Northeast +14,2016-09-18,1.45,3442454.03,409569.22,1938470.57,17881.0,1076533.24,1009926.82,66387.53,218.89,conventional,2016,Northeast +15,2016-09-11,1.28,4456957.62,703699.41,2632018.36,25571.12,1095668.73,1028147.48,67007.79,513.46,conventional,2016,Northeast +16,2016-09-04,1.4,4019648.55,358039.67,2446669.38,38848.69,1176090.81,1109685.27,62681.63,3723.91,conventional,2016,Northeast +17,2016-08-28,1.4,4309301.79,490786.03,2495011.21,68592.79,1254911.76,1164225.11,71526.98,19159.67,conventional,2016,Northeast +18,2016-08-21,1.4,4127080.33,247658.58,2351280.09,25740.08,1502401.58,1384984.59,97632.72,19784.27,conventional,2016,Northeast +19,2016-08-14,1.37,4195423.29,316873.28,2323362.26,40749.92,1514437.83,1435534.01,63918.41,14985.41,conventional,2016,Northeast +20,2016-08-07,1.47,4024822.13,304604.68,2245559.82,59915.16,1414742.47,1335096.5,58406.29,21239.68,conventional,2016,Northeast +21,2016-07-31,1.6,3813808.25,224803.7,2213892.51,57230.15,1317881.89,1265795.04,33486.76,18600.09,conventional,2016,Northeast +22,2016-07-24,1.54,3834290.51,220814.35,2172523.13,63713.79,1377239.24,1287855.02,36043.62,53340.6,conventional,2016,Northeast +23,2016-07-17,1.49,3736814.35,196491.18,2123945.28,74756.02,1341621.87,1208291.71,68637.43,64692.73,conventional,2016,Northeast +24,2016-07-10,1.33,4487625.78,316659.6,2589205.84,99899.13,1481861.21,1316229.18,107324.46,58307.57,conventional,2016,Northeast +25,2016-07-03,1.41,4486744.99,210728.65,2669362.44,123210.02,1483443.88,1330833.02,82816.01,69794.85,conventional,2016,Northeast +26,2016-06-26,1.28,4840949.87,190136.57,3188127.73,118844.6,1343840.97,1233605.4,78613.54,31622.03,conventional,2016,Northeast +27,2016-06-19,1.4,4506892.62,184730.86,2920243.12,132512.61,1269406.03,1164066.13,74863.78,30476.12,conventional,2016,Northeast +28,2016-06-12,1.34,4599028.54,201927.9,2903948.28,135414.25,1357738.11,1246079.71,80946.35,30712.05,conventional,2016,Northeast +29,2016-06-05,1.35,4570515.87,154509.15,2911585.02,156593.71,1347827.99,1235470.33,92633.24,19724.42,conventional,2016,Northeast +30,2016-05-29,1.14,5141314.86,141464.88,3554079.38,213854.78,1231915.82,1104419.55,117666.65,9829.62,conventional,2016,Northeast +31,2016-05-22,1.14,4609250.24,104014.01,3018204.18,219221.82,1267810.23,1193559.27,60109.83,14141.13,conventional,2016,Northeast +32,2016-05-15,1.13,4999100.74,100735.1,3556589.53,172917.61,1168858.5,1062590.88,103624.27,2643.35,conventional,2016,Northeast +33,2016-05-08,0.87,6899727.12,135137.08,5246830.25,211975.68,1305784.11,1213743.41,91515.7,525.0,conventional,2016,Northeast +34,2016-05-01,1.12,5247266.74,123023.38,3800242.35,144510.42,1179490.59,1064779.68,114354.17,356.74,conventional,2016,Northeast +35,2016-04-24,1.13,4815249.22,125736.57,3366389.1,142677.6,1180445.95,1087631.09,90193.01,2621.85,conventional,2016,Northeast +36,2016-04-17,1.12,3849051.4,105339.58,2415296.29,102786.85,1225628.68,1115346.23,108151.38,2131.07,conventional,2016,Northeast +37,2016-04-10,1.09,3756625.12,113797.04,2340135.2,164663.65,1138029.23,1070178.97,64699.95,3150.31,conventional,2016,Northeast +38,2016-04-03,1.18,3872680.79,99894.98,2745624.73,90728.12,936432.96,869386.54,66910.57,135.85,conventional,2016,Northeast +39,2016-03-27,1.23,4239016.69,99223.9,2932815.39,104253.64,1102723.76,1021991.63,80732.13,0.0,conventional,2016,Northeast +40,2016-03-20,1.11,4834759.09,108456.51,3414702.44,79981.32,1231618.82,1171614.36,60004.46,0.0,conventional,2016,Northeast +41,2016-03-13,1.13,4713935.35,122581.78,3460335.94,111254.96,1019762.67,958452.62,61310.05,0.0,conventional,2016,Northeast +42,2016-03-06,1.21,4226925.7,111263.99,2950419.2,83451.82,1081790.69,1022900.73,58882.95,7.01,conventional,2016,Northeast +43,2016-02-28,1.15,4481119.44,105867.52,3361015.9,84168.72,930067.3,867106.18,62961.12,0.0,conventional,2016,Northeast +44,2016-02-21,1.21,3948234.94,94936.43,2707199.74,84110.32,1061988.45,984377.9,77610.55,0.0,conventional,2016,Northeast +45,2016-02-14,1.08,4959257.88,121413.01,3553331.27,129490.05,1155023.55,1047179.93,107841.88,1.74,conventional,2016,Northeast +46,2016-02-07,1.03,5919226.12,125570.46,4290645.89,59775.41,1443234.36,1369646.25,73584.63,3.48,conventional,2016,Northeast +47,2016-01-31,1.06,4650798.49,102906.84,3443651.01,59279.93,1044960.71,981185.6,63773.37,1.74,conventional,2016,Northeast +48,2016-01-24,1.21,4412280.93,75379.6,2940359.34,66877.99,1329664.0,1234678.31,94980.47,5.22,conventional,2016,Northeast +49,2016-01-17,1.09,4891516.5,102211.78,3491028.64,77510.23,1220765.85,1153104.63,67661.22,0.0,conventional,2016,Northeast +50,2016-01-10,1.2,3890225.41,96952.31,2696731.85,34789.19,1061752.06,976499.36,85149.37,103.33,conventional,2016,Northeast +51,2016-01-03,1.07,4524219.73,96146.84,3588931.66,53765.74,785375.49,731458.46,52073.39,1843.64,conventional,2016,Northeast +0,2016-12-25,1.24,325634.21,12140.61,257987.85,2878.28,52627.47,52623.03,4.44,0.0,conventional,2016,NorthernNewEngland +1,2016-12-18,1.19,357508.29,14139.27,293062.77,5316.67,44989.58,44559.31,396.94,33.33,conventional,2016,NorthernNewEngland +2,2016-12-11,1.29,310425.3,9683.11,246740.16,3080.85,50921.18,50026.48,894.7,0.0,conventional,2016,NorthernNewEngland +3,2016-12-04,1.12,440990.34,24617.32,378804.18,2349.92,35218.92,35218.92,0.0,0.0,conventional,2016,NorthernNewEngland +4,2016-11-27,1.41,262748.42,11304.04,210220.02,2392.56,38831.8,38831.8,0.0,0.0,conventional,2016,NorthernNewEngland +5,2016-11-20,1.39,315783.24,15322.42,247461.31,3473.03,49526.48,49526.48,0.0,0.0,conventional,2016,NorthernNewEngland +6,2016-11-13,1.48,268388.51,11996.05,211327.03,2651.04,42414.39,42414.39,0.0,0.0,conventional,2016,NorthernNewEngland +7,2016-11-06,1.47,242666.87,10727.78,179547.81,2261.03,50130.25,50130.25,0.0,0.0,conventional,2016,NorthernNewEngland +8,2016-10-30,1.52,255455.34,12252.61,185280.5,2879.09,55043.14,55043.14,0.0,0.0,conventional,2016,NorthernNewEngland +9,2016-10-23,1.48,291385.56,17405.6,223021.98,4022.89,46935.09,46935.09,0.0,0.0,conventional,2016,NorthernNewEngland +10,2016-10-16,1.47,290884.89,14794.34,224368.92,3353.02,48368.61,48368.61,0.0,0.0,conventional,2016,NorthernNewEngland +11,2016-10-09,1.4,305506.51,14886.34,239615.02,2844.21,48160.94,48160.94,0.0,0.0,conventional,2016,NorthernNewEngland +12,2016-10-02,1.52,291185.37,18423.35,222357.93,3193.18,47210.91,47207.35,3.56,0.0,conventional,2016,NorthernNewEngland +13,2016-09-25,1.58,315399.04,23189.93,236472.99,3706.18,52029.94,52018.36,11.58,0.0,conventional,2016,NorthernNewEngland +14,2016-09-18,1.48,316980.64,24643.99,235008.38,4265.21,53063.06,52433.61,548.89,80.56,conventional,2016,NorthernNewEngland +15,2016-09-11,1.44,343314.74,35007.16,237320.7,7204.93,63781.95,63234.18,537.77,10.0,conventional,2016,NorthernNewEngland +16,2016-09-04,1.38,374902.91,83711.04,209147.77,6202.12,75841.98,75401.98,0.0,440.0,conventional,2016,NorthernNewEngland +17,2016-08-28,1.08,573338.65,211564.36,287750.3,4901.82,69122.17,67069.76,22.41,2030.0,conventional,2016,NorthernNewEngland +18,2016-08-21,1.34,413497.16,95074.76,197872.17,4669.14,115881.09,114415.93,30.16,1435.0,conventional,2016,NorthernNewEngland +19,2016-08-14,1.21,463651.71,114823.86,226795.01,5813.05,116219.79,114464.79,0.0,1755.0,conventional,2016,NorthernNewEngland +20,2016-08-07,1.41,457429.1,113313.11,241098.25,5883.79,97133.95,96888.95,0.0,245.0,conventional,2016,NorthernNewEngland +21,2016-07-31,1.49,435129.36,79930.71,239638.1,6617.7,108942.85,107009.09,3.76,1930.0,conventional,2016,NorthernNewEngland +22,2016-07-24,1.36,463062.51,83734.79,244441.34,7567.92,127318.46,122744.69,3.77,4570.0,conventional,2016,NorthernNewEngland +23,2016-07-17,1.37,412386.17,75192.37,228099.87,7593.24,101500.69,94129.58,0.0,7371.11,conventional,2016,NorthernNewEngland +24,2016-07-10,1.06,569327.81,134476.2,339263.01,10102.89,85485.71,77486.39,4.32,7995.0,conventional,2016,NorthernNewEngland +25,2016-07-03,1.29,525917.26,78903.78,321186.45,14095.91,111731.12,102068.55,7.57,9655.0,conventional,2016,NorthernNewEngland +26,2016-06-26,1.28,497816.81,63778.16,323719.54,20456.9,89862.21,85807.21,0.0,4055.0,conventional,2016,NorthernNewEngland +27,2016-06-19,1.26,485945.76,53199.36,322695.72,27247.57,82803.11,80128.11,0.0,2675.0,conventional,2016,NorthernNewEngland +28,2016-06-12,1.19,472020.49,48479.14,307758.96,30137.67,85644.72,82839.72,0.0,2805.0,conventional,2016,NorthernNewEngland +29,2016-06-05,1.18,471356.84,32955.43,314403.14,35125.4,88872.87,86447.87,0.0,2425.0,conventional,2016,NorthernNewEngland +30,2016-05-29,1.1,499944.01,19245.04,337329.57,58060.21,85309.19,83274.96,4.23,2030.0,conventional,2016,NorthernNewEngland +31,2016-05-22,1.02,433251.71,2888.48,280360.37,64720.71,85282.15,82259.75,7.4,3015.0,conventional,2016,NorthernNewEngland +32,2016-05-15,1.07,443517.22,3333.83,314998.46,47340.47,77844.46,77840.76,3.7,0.0,conventional,2016,NorthernNewEngland +33,2016-05-08,0.97,546838.34,3368.77,370026.96,55130.63,118311.98,118297.2,14.78,0.0,conventional,2016,NorthernNewEngland +34,2016-05-01,1.02,628512.14,2527.39,538037.63,37533.31,50413.81,50354.09,0.0,59.72,conventional,2016,NorthernNewEngland +35,2016-04-24,1.07,431615.62,2993.41,326907.16,39188.2,62526.85,62471.31,55.54,0.0,conventional,2016,NorthernNewEngland +36,2016-04-17,1.12,399074.14,2033.75,303891.64,29548.55,63600.2,63501.61,33.31,65.28,conventional,2016,NorthernNewEngland +37,2016-04-10,1.04,409227.87,2856.55,291174.46,50624.92,64571.94,64557.15,14.79,0.0,conventional,2016,NorthernNewEngland +38,2016-04-03,0.99,486716.71,3194.71,411414.16,26852.26,45255.58,45255.58,0.0,0.0,conventional,2016,NorthernNewEngland +39,2016-03-27,1.13,423257.57,2320.06,327259.78,29091.94,64585.79,64585.79,0.0,0.0,conventional,2016,NorthernNewEngland +40,2016-03-20,1.14,414604.35,3204.62,325110.15,25614.84,60674.74,60671.05,3.69,0.0,conventional,2016,NorthernNewEngland +41,2016-03-13,1.01,476634.67,3165.58,382630.54,36964.09,53874.46,53859.72,14.74,0.0,conventional,2016,NorthernNewEngland +42,2016-03-06,1.08,405931.49,4140.63,303581.5,26686.24,71523.12,71471.61,51.51,0.0,conventional,2016,NorthernNewEngland +43,2016-02-28,1.1,387149.69,4257.34,288178.36,26834.63,67879.36,67323.1,556.26,0.0,conventional,2016,NorthernNewEngland +44,2016-02-21,1.16,380427.08,3997.91,278339.49,26089.16,72000.52,70056.97,1943.55,0.0,conventional,2016,NorthernNewEngland +45,2016-02-14,0.99,456439.67,4686.98,316152.87,41374.9,94224.92,91688.51,2536.41,0.0,conventional,2016,NorthernNewEngland +46,2016-02-07,0.97,605846.78,3738.02,531499.59,16922.98,53686.19,51858.11,1828.08,0.0,conventional,2016,NorthernNewEngland +47,2016-01-31,1.07,419786.19,3328.89,292519.75,18558.03,105379.52,104227.82,1151.7,0.0,conventional,2016,NorthernNewEngland +48,2016-01-24,1.07,453559.54,852.07,319014.01,22047.61,111645.85,111162.6,483.25,0.0,conventional,2016,NorthernNewEngland +49,2016-01-17,1.08,447078.92,3556.39,328749.75,22335.05,92437.73,92437.73,0.0,0.0,conventional,2016,NorthernNewEngland +50,2016-01-10,1.24,343406.89,2398.06,270035.12,11133.28,59840.43,59836.86,3.57,0.0,conventional,2016,NorthernNewEngland +51,2016-01-03,0.96,553828.14,3485.03,492915.32,17575.69,39852.1,39852.1,0.0,0.0,conventional,2016,NorthernNewEngland +0,2016-12-25,0.94,359005.75,131616.46,81351.13,133.41,145904.75,65955.63,79804.68,144.44,conventional,2016,Orlando +1,2016-12-18,0.92,333093.29,113248.41,76982.86,118.25,142743.77,63529.34,79119.99,94.44,conventional,2016,Orlando +2,2016-12-11,1.22,247659.65,84080.08,48772.35,67.56,114739.66,61197.81,53441.85,100.0,conventional,2016,Orlando +3,2016-12-04,0.97,398859.76,129743.58,95284.48,114.33,173717.37,65178.82,108538.55,0.0,conventional,2016,Orlando +4,2016-11-27,1.46,221373.99,76751.6,48667.43,121.11,95833.85,44616.34,51217.51,0.0,conventional,2016,Orlando +5,2016-11-20,1.46,239374.44,83653.63,50316.02,91.45,105313.34,49247.51,56065.83,0.0,conventional,2016,Orlando +6,2016-11-13,1.4,250639.48,97337.14,50337.98,167.15,102797.21,48419.58,54377.63,0.0,conventional,2016,Orlando +7,2016-11-06,1.47,236696.6,93321.05,53545.04,149.05,89681.46,34250.33,55431.13,0.0,conventional,2016,Orlando +8,2016-10-30,1.54,223224.74,82399.26,52975.5,143.88,87706.1,30132.88,57103.78,469.44,conventional,2016,Orlando +9,2016-10-23,1.52,236500.42,83780.57,68746.38,134.75,83838.72,28494.95,54609.05,734.72,conventional,2016,Orlando +10,2016-10-16,1.23,311363.97,104391.1,87927.74,151.73,118893.4,24825.29,94068.11,0.0,conventional,2016,Orlando +11,2016-10-09,1.44,267399.38,91531.9,81061.05,129.43,94677.0,39055.39,55621.61,0.0,conventional,2016,Orlando +12,2016-10-02,1.45,301939.19,117406.55,66860.79,189.44,117482.41,50462.75,66632.16,387.5,conventional,2016,Orlando +13,2016-09-25,1.4,302808.91,122725.59,54807.36,134.09,125141.87,61486.67,62514.92,1140.28,conventional,2016,Orlando +14,2016-09-18,1.16,319543.98,133279.34,59374.23,90.08,126800.33,57821.05,68979.28,0.0,conventional,2016,Orlando +15,2016-09-11,1.18,312266.53,150964.58,55134.51,63.06,106104.38,50283.33,55821.05,0.0,conventional,2016,Orlando +16,2016-09-04,0.97,477301.28,275859.84,75406.02,171.78,125863.64,59356.55,66507.09,0.0,conventional,2016,Orlando +17,2016-08-28,1.18,326913.34,163536.64,80917.57,91.83,82367.3,58695.16,21860.75,1811.39,conventional,2016,Orlando +18,2016-08-21,1.19,347563.11,170496.96,87311.02,83.44,89671.69,60961.16,23780.53,4930.0,conventional,2016,Orlando +19,2016-08-14,1.14,416694.11,210918.59,92045.15,131.9,113598.47,53991.45,54647.02,4960.0,conventional,2016,Orlando +20,2016-08-07,1.23,327167.52,143759.32,84662.03,114.73,98631.44,52784.9,35583.76,10262.78,conventional,2016,Orlando +21,2016-07-31,1.24,320002.63,137791.44,80412.78,90.9,101707.51,59130.82,33276.69,9300.0,conventional,2016,Orlando +22,2016-07-24,1.22,336366.84,145903.25,92078.03,142.03,98243.53,53516.79,34306.74,10420.0,conventional,2016,Orlando +23,2016-07-17,1.17,348318.4,141751.9,90770.24,104.87,115691.39,72463.28,31198.11,12030.0,conventional,2016,Orlando +24,2016-07-10,1.17,341532.31,143563.56,84546.81,129.52,113292.42,71803.27,29184.15,12305.0,conventional,2016,Orlando +25,2016-07-03,0.93,553640.36,277838.49,118092.73,278.53,157430.61,87341.32,50692.9,19396.39,conventional,2016,Orlando +26,2016-06-26,1.18,333568.95,143186.79,76177.69,94.86,114109.61,68453.99,35165.62,10490.0,conventional,2016,Orlando +27,2016-06-19,0.97,454278.32,238794.08,98795.35,250.15,116438.74,52416.59,52961.59,11060.56,conventional,2016,Orlando +28,2016-06-12,1.24,293811.97,143222.68,64910.71,142.01,85536.57,44014.87,32645.03,8876.67,conventional,2016,Orlando +29,2016-06-05,0.97,448117.51,262311.0,71419.85,231.9,114154.76,45382.8,58692.8,10079.16,conventional,2016,Orlando +30,2016-05-29,0.95,481068.52,283442.26,82501.22,344.58,114780.46,48638.37,62353.75,3788.34,conventional,2016,Orlando +31,2016-05-22,1.17,312532.64,163428.19,55452.91,307.92,93343.62,44788.78,40285.11,8269.73,conventional,2016,Orlando +32,2016-05-15,0.83,512839.94,218691.6,121577.54,378.29,172192.51,46050.87,121150.53,4991.11,conventional,2016,Orlando +33,2016-05-08,0.95,432737.31,213997.13,80588.36,259.09,137892.73,60411.28,77481.45,0.0,conventional,2016,Orlando +34,2016-05-01,0.76,667818.16,301117.14,142408.4,403.01,223889.61,70814.95,152706.6,368.06,conventional,2016,Orlando +35,2016-04-24,0.83,533830.62,230753.4,124208.12,745.37,178123.73,46440.63,130991.43,691.67,conventional,2016,Orlando +36,2016-04-17,1.06,347880.73,172247.41,69222.0,225.84,106185.48,44830.15,61355.33,0.0,conventional,2016,Orlando +37,2016-04-10,0.83,517277.53,229924.68,113252.28,213.89,173886.68,43958.19,129928.49,0.0,conventional,2016,Orlando +38,2016-04-03,1.05,349121.77,178043.1,55773.85,251.72,115053.1,49626.46,65426.64,0.0,conventional,2016,Orlando +39,2016-03-27,1.06,311571.85,152991.07,56406.32,62.9,102111.56,45393.81,56717.75,0.0,conventional,2016,Orlando +40,2016-03-20,1.09,291755.18,136450.8,56331.07,89.23,98884.08,39885.63,58998.45,0.0,conventional,2016,Orlando +41,2016-03-13,0.84,479956.1,216899.51,97078.36,450.14,165528.09,42925.83,122602.26,0.0,conventional,2016,Orlando +42,2016-03-06,1.08,291732.26,142948.4,51358.16,39.29,97386.41,46058.69,51327.72,0.0,conventional,2016,Orlando +43,2016-02-28,0.82,496972.61,233309.57,93393.19,222.23,170047.62,51303.36,118744.26,0.0,conventional,2016,Orlando +44,2016-02-21,1.05,296932.11,145443.75,50580.83,89.81,100817.72,42824.92,57992.8,0.0,conventional,2016,Orlando +45,2016-02-14,0.96,312270.64,168683.78,50342.11,103.25,93141.5,42330.44,50811.06,0.0,conventional,2016,Orlando +46,2016-02-07,0.58,696369.34,370221.57,119918.66,221.91,206007.2,50078.9,155928.3,0.0,conventional,2016,Orlando +47,2016-01-31,1.03,329626.92,163156.69,61348.18,159.17,104962.88,45442.34,59520.54,0.0,conventional,2016,Orlando +48,2016-01-24,0.93,399751.64,234746.69,54289.25,325.53,110390.17,54036.83,56341.94,11.4,conventional,2016,Orlando +49,2016-01-17,1.19,248039.16,155452.86,21801.29,83.47,70701.54,50177.98,20509.36,14.2,conventional,2016,Orlando +50,2016-01-10,0.96,413413.58,279393.48,31582.03,198.79,102239.28,49854.64,52384.64,0.0,conventional,2016,Orlando +51,2016-01-03,1.11,308711.73,201918.77,31729.56,234.28,74829.12,46089.44,28739.68,0.0,conventional,2016,Orlando +0,2016-12-25,1.43,329493.55,11217.72,202764.73,18780.24,96730.86,91017.48,5380.08,333.3,conventional,2016,Philadelphia +1,2016-12-18,1.38,336267.19,11534.6,231497.95,2123.6,91111.04,84390.74,6638.08,82.22,conventional,2016,Philadelphia +2,2016-12-11,1.37,356716.07,12147.43,231524.76,735.39,112308.49,92567.31,19741.18,0.0,conventional,2016,Philadelphia +3,2016-12-04,1.54,301329.5,12336.39,195612.1,845.53,92535.48,86813.13,5539.85,182.5,conventional,2016,Philadelphia +4,2016-11-27,1.57,279131.45,10693.47,180338.49,859.82,87239.67,82183.54,5056.13,0.0,conventional,2016,Philadelphia +5,2016-11-20,1.57,328557.17,13380.98,207065.15,1486.67,106624.37,101912.73,4632.47,79.17,conventional,2016,Philadelphia +6,2016-11-13,1.72,293852.55,14610.73,177197.57,1839.5,100204.75,94328.02,5876.73,0.0,conventional,2016,Philadelphia +7,2016-11-06,1.86,269770.44,14395.76,162910.57,1465.76,90998.35,83528.25,7238.16,231.94,conventional,2016,Philadelphia +8,2016-10-30,1.83,254423.1,13468.37,150271.02,701.32,89982.39,86874.6,3107.79,0.0,conventional,2016,Philadelphia +9,2016-10-23,1.89,293380.24,13407.99,179712.92,664.5,99594.83,97636.47,1958.36,0.0,conventional,2016,Philadelphia +10,2016-10-16,1.74,335408.43,15915.88,192515.42,718.39,126258.74,119365.97,6892.77,0.0,conventional,2016,Philadelphia +11,2016-10-09,1.71,355667.75,16118.58,203203.51,964.8,135380.86,127432.28,7948.58,0.0,conventional,2016,Philadelphia +12,2016-10-02,1.61,366233.17,18332.24,195428.72,898.05,151574.16,143701.7,7790.37,82.09,conventional,2016,Philadelphia +13,2016-09-25,1.54,366205.45,42044.86,166762.64,776.02,156621.93,151162.15,5459.78,0.0,conventional,2016,Philadelphia +14,2016-09-18,1.41,403065.41,47548.6,167573.19,747.71,187195.91,177935.1,9260.81,0.0,conventional,2016,Philadelphia +15,2016-09-11,1.24,499659.75,73604.41,218301.79,955.35,206798.2,197316.1,9482.1,0.0,conventional,2016,Philadelphia +16,2016-09-04,1.3,488463.75,47716.6,240344.92,4082.84,196319.39,186793.04,9073.82,452.53,conventional,2016,Philadelphia +17,2016-08-28,1.49,418742.8,21609.9,200120.82,13529.45,183482.63,171925.6,10097.85,1459.18,conventional,2016,Philadelphia +18,2016-08-21,1.45,408490.7,14771.84,215056.47,2558.5,176103.89,156783.72,17277.92,2042.25,conventional,2016,Philadelphia +19,2016-08-14,1.43,415099.81,21070.06,201588.04,5607.24,186834.47,176028.76,9698.25,1107.46,conventional,2016,Philadelphia +20,2016-08-07,1.45,411252.23,23405.99,189679.42,12191.16,185975.66,174613.62,8525.89,2836.15,conventional,2016,Philadelphia +21,2016-07-31,1.57,376353.23,15974.97,180678.21,12676.62,167023.43,161291.97,3766.46,1965.0,conventional,2016,Philadelphia +22,2016-07-24,1.56,389534.59,13780.15,184981.97,13602.94,177169.53,167882.27,4319.2,4968.06,conventional,2016,Philadelphia +23,2016-07-17,1.52,392041.56,14420.42,190535.1,17208.53,169877.51,152288.86,9333.25,8255.4,conventional,2016,Philadelphia +24,2016-07-10,1.47,420054.95,15583.43,211189.05,20445.49,172836.98,154560.09,14058.39,4218.5,conventional,2016,Philadelphia +25,2016-07-03,1.47,427325.17,14355.22,219161.41,25016.94,168791.6,151090.57,10879.62,6821.41,conventional,2016,Philadelphia +26,2016-06-26,1.24,478874.92,15053.53,279488.3,21092.23,163240.86,150878.19,9866.32,2496.35,conventional,2016,Philadelphia +27,2016-06-19,1.46,421529.12,14408.27,245061.91,18156.09,143902.85,132625.62,8901.2,2376.03,conventional,2016,Philadelphia +28,2016-06-12,1.44,426671.94,14257.58,236401.63,16971.2,159041.53,143582.1,12724.43,2735.0,conventional,2016,Philadelphia +29,2016-06-05,1.44,450346.65,15486.18,264044.5,17989.98,152825.99,137882.92,14692.24,250.83,conventional,2016,Philadelphia +30,2016-05-29,1.18,484287.12,15832.42,300578.34,17074.29,150802.07,129416.16,21385.91,0.0,conventional,2016,Philadelphia +31,2016-05-22,1.2,459980.05,15264.75,282262.41,10911.53,151541.36,143071.97,8469.39,0.0,conventional,2016,Philadelphia +32,2016-05-15,1.22,474934.47,14393.49,313358.88,10279.83,136902.27,121275.31,15195.02,431.94,conventional,2016,Philadelphia +33,2016-05-08,0.91,698601.84,20316.89,511600.73,16821.43,149862.79,137318.24,12438.99,105.56,conventional,2016,Philadelphia +34,2016-05-01,1.21,478384.72,16264.6,304614.61,11522.45,145983.06,130517.96,15349.82,115.28,conventional,2016,Philadelphia +35,2016-04-24,1.17,504960.76,18439.3,329515.87,11453.06,145552.53,132114.06,13166.25,272.22,conventional,2016,Philadelphia +36,2016-04-17,1.17,366448.78,17062.27,199176.83,5216.56,144993.12,129029.56,15823.28,140.28,conventional,2016,Philadelphia +37,2016-04-10,1.17,346080.71,18475.34,188452.18,2461.36,136691.83,128214.06,8406.94,70.83,conventional,2016,Philadelphia +38,2016-04-03,1.28,370753.84,17215.14,231664.58,409.68,121464.44,112323.24,9141.2,0.0,conventional,2016,Philadelphia +39,2016-03-27,1.29,417870.83,17180.94,254821.3,500.98,145367.61,135645.71,9721.9,0.0,conventional,2016,Philadelphia +40,2016-03-20,1.05,543578.3,17109.23,287549.42,615.09,238304.56,230449.61,7854.95,0.0,conventional,2016,Philadelphia +41,2016-03-13,1.1,533501.85,27514.15,380794.66,775.58,124417.46,115167.32,9250.14,0.0,conventional,2016,Philadelphia +42,2016-03-06,1.33,417688.74,16299.39,278369.87,636.84,122382.64,112636.83,9742.72,3.09,conventional,2016,Philadelphia +43,2016-02-28,1.27,419881.8,14691.73,293977.44,820.82,110391.81,100246.61,10145.2,0.0,conventional,2016,Philadelphia +44,2016-02-21,1.26,409152.46,14147.11,268801.73,1816.34,124387.28,114098.2,10289.08,0.0,conventional,2016,Philadelphia +45,2016-02-14,1.19,445228.64,15846.19,283607.57,1006.08,144768.8,132177.05,12591.75,0.0,conventional,2016,Philadelphia +46,2016-02-07,0.96,675832.78,16403.87,385630.69,1418.38,272379.84,261473.35,10906.49,0.0,conventional,2016,Philadelphia +47,2016-01-31,1.04,469689.07,18326.33,344188.07,504.95,106669.72,97222.56,9447.16,0.0,conventional,2016,Philadelphia +48,2016-01-24,1.34,448784.3,12982.99,287750.87,692.47,147357.97,134138.57,13219.4,0.0,conventional,2016,Philadelphia +49,2016-01-17,1.14,492565.69,15195.3,340075.76,2771.59,134523.04,124208.71,10314.33,0.0,conventional,2016,Philadelphia +50,2016-01-10,1.23,413224.5,14091.36,271291.13,700.17,127141.84,115949.34,11192.5,0.0,conventional,2016,Philadelphia +51,2016-01-03,1.19,421093.02,13858.25,309377.59,918.32,96938.86,89684.36,7254.5,0.0,conventional,2016,Philadelphia +0,2016-12-25,0.64,1108953.48,595085.56,215902.65,17008.1,280957.17,115069.75,165813.81,73.61,conventional,2016,PhoenixTucson +1,2016-12-18,0.56,1236204.18,733772.13,203894.48,14396.29,284141.28,135028.94,148667.9,444.44,conventional,2016,PhoenixTucson +2,2016-12-11,0.67,1056806.44,508911.67,226307.94,14222.88,307363.95,154962.56,152350.0,51.39,conventional,2016,PhoenixTucson +3,2016-12-04,0.63,1164027.22,731182.01,187418.51,11915.51,233511.19,117120.79,115108.46,1281.94,conventional,2016,PhoenixTucson +4,2016-11-27,0.72,907516.28,464034.44,212695.94,11542.14,219243.76,95631.21,123302.83,309.72,conventional,2016,PhoenixTucson +5,2016-11-20,0.7,1226126.36,753470.68,183315.34,14661.31,274679.03,110584.81,164013.66,80.56,conventional,2016,PhoenixTucson +6,2016-11-13,0.94,911367.38,437810.54,189026.34,15106.03,269424.47,106369.01,163055.46,0.0,conventional,2016,PhoenixTucson +7,2016-11-06,1.0,734433.2,334096.22,154480.91,16680.28,229175.79,103302.07,125873.72,0.0,conventional,2016,PhoenixTucson +8,2016-10-30,1.11,644652.47,261889.52,135479.22,15843.09,231440.64,108153.46,123199.68,87.5,conventional,2016,PhoenixTucson +9,2016-10-23,1.02,699711.07,250712.73,188686.25,16864.42,243447.67,127647.02,115800.65,0.0,conventional,2016,PhoenixTucson +10,2016-10-16,1.03,831120.57,273642.18,223809.9,13628.24,320040.25,147692.04,171739.88,608.33,conventional,2016,PhoenixTucson +11,2016-10-09,0.99,885661.32,382978.65,208869.08,10640.59,283173.0,153973.16,128733.17,466.67,conventional,2016,PhoenixTucson +12,2016-10-02,1.03,815711.64,345171.12,206765.02,11411.45,252364.05,130376.06,121767.16,220.83,conventional,2016,PhoenixTucson +13,2016-09-25,1.04,811939.65,354470.18,208122.38,12131.33,237215.76,120712.22,115507.71,995.83,conventional,2016,PhoenixTucson +14,2016-09-18,1.0,826738.9,377761.66,206297.66,11915.14,230764.44,93337.58,137426.86,0.0,conventional,2016,PhoenixTucson +15,2016-09-11,0.88,961997.61,504499.4,216559.98,11582.2,229356.03,123900.27,105452.43,3.33,conventional,2016,PhoenixTucson +16,2016-09-04,0.64,1455770.91,947924.8,261415.15,13070.26,233360.7,91284.33,142076.37,0.0,conventional,2016,PhoenixTucson +17,2016-08-28,0.79,1024799.73,590085.71,207913.34,10716.73,216083.95,103197.4,112886.55,0.0,conventional,2016,PhoenixTucson +18,2016-08-21,0.58,1459911.33,991649.01,202899.77,9204.82,256157.73,122310.85,133221.88,625.0,conventional,2016,PhoenixTucson +19,2016-08-14,0.69,1325974.87,795943.96,228315.48,11523.66,290191.77,136243.88,153947.89,0.0,conventional,2016,PhoenixTucson +20,2016-08-07,0.64,1522368.93,1031124.37,214144.29,11938.14,265162.13,132055.1,132129.25,977.78,conventional,2016,PhoenixTucson +21,2016-07-31,1.0,851296.1,392455.55,202783.6,11881.45,244175.5,118231.43,125777.4,166.67,conventional,2016,PhoenixTucson +22,2016-07-24,0.94,922526.29,423672.75,201696.43,12392.31,284764.8,144445.97,139836.89,481.94,conventional,2016,PhoenixTucson +23,2016-07-17,0.92,864516.85,410870.87,188086.51,11537.0,254022.47,145310.82,108636.65,75.0,conventional,2016,PhoenixTucson +24,2016-07-10,0.89,995347.5,485473.19,213070.45,11651.42,285152.44,149012.51,135677.43,462.5,conventional,2016,PhoenixTucson +25,2016-07-03,0.77,1069905.64,539428.95,249521.81,14795.19,266159.69,148736.1,117119.42,304.17,conventional,2016,PhoenixTucson +26,2016-06-26,0.6,1360168.72,848508.88,230322.97,16235.59,265101.28,151847.82,113195.13,58.33,conventional,2016,PhoenixTucson +27,2016-06-19,0.62,1348891.94,852657.34,231636.98,17320.64,247276.98,128068.93,119121.94,86.11,conventional,2016,PhoenixTucson +28,2016-06-12,0.81,991221.27,471620.29,222420.61,22944.15,274236.22,151226.12,123010.1,0.0,conventional,2016,PhoenixTucson +29,2016-06-05,0.67,1197277.61,644911.82,271580.08,17419.32,263366.39,131405.15,131926.52,34.72,conventional,2016,PhoenixTucson +30,2016-05-29,0.58,1342825.39,823222.51,251166.51,18217.7,250218.67,105242.1,143894.63,1081.94,conventional,2016,PhoenixTucson +31,2016-05-22,0.68,1063411.38,616427.64,233772.43,22533.69,190677.62,59067.63,131561.38,48.61,conventional,2016,PhoenixTucson +32,2016-05-15,0.55,1318932.22,877701.71,266908.38,13478.11,160844.02,60965.94,99187.8,690.28,conventional,2016,PhoenixTucson +33,2016-05-08,0.57,1489269.33,941813.03,325967.66,29263.46,192225.18,80064.68,109498.0,2662.5,conventional,2016,PhoenixTucson +34,2016-05-01,0.62,1178000.01,657384.04,324709.73,14202.89,181703.35,109463.91,72200.55,38.89,conventional,2016,PhoenixTucson +35,2016-04-24,0.54,1352494.83,884293.16,264603.74,14665.34,188932.59,104062.12,83420.47,1450.0,conventional,2016,PhoenixTucson +36,2016-04-17,0.61,1166007.02,662946.89,286552.3,14462.24,202045.59,93837.25,108208.34,0.0,conventional,2016,PhoenixTucson +37,2016-04-10,0.56,1387970.0,924031.6,246403.27,37714.15,179820.98,102611.01,75964.14,1245.83,conventional,2016,PhoenixTucson +38,2016-04-03,0.61,1091234.04,690115.62,244434.1,17172.83,139511.49,83416.28,56080.04,15.17,conventional,2016,PhoenixTucson +39,2016-03-27,0.54,1423939.62,952967.11,252486.02,35478.87,183007.62,102042.24,80965.38,0.0,conventional,2016,PhoenixTucson +40,2016-03-20,0.56,1339528.26,877807.23,283972.53,21555.74,156192.76,91822.41,64370.35,0.0,conventional,2016,PhoenixTucson +41,2016-03-13,0.64,1103110.33,670917.46,256531.59,16153.46,159507.82,90790.53,68717.29,0.0,conventional,2016,PhoenixTucson +42,2016-03-06,0.51,1442973.47,1037699.01,259846.68,14567.4,130860.38,76814.4,54045.98,0.0,conventional,2016,PhoenixTucson +43,2016-02-28,0.57,1290021.19,816554.74,311746.69,22261.01,139458.75,69825.0,69633.75,0.0,conventional,2016,PhoenixTucson +44,2016-02-21,0.67,1098967.88,560568.72,347498.78,15354.56,175545.82,79744.59,95801.23,0.0,conventional,2016,PhoenixTucson +45,2016-02-14,0.61,1209857.67,788381.39,243842.36,22140.43,155493.49,77572.93,77920.56,0.0,conventional,2016,PhoenixTucson +46,2016-02-07,0.55,1609195.36,1093424.86,286748.57,57213.24,171808.69,88259.09,83549.6,0.0,conventional,2016,PhoenixTucson +47,2016-01-31,0.64,1113755.21,663697.2,293461.52,21553.25,135043.24,83060.04,51983.2,0.0,conventional,2016,PhoenixTucson +48,2016-01-24,0.61,1016720.53,537695.71,293418.02,15408.83,170197.97,88066.62,82131.35,0.0,conventional,2016,PhoenixTucson +49,2016-01-17,0.71,1069974.38,632962.22,272231.24,19499.03,145281.89,96088.29,49193.6,0.0,conventional,2016,PhoenixTucson +50,2016-01-10,0.59,1276128.92,868817.82,252752.29,12047.67,142511.14,91807.54,50703.6,0.0,conventional,2016,PhoenixTucson +51,2016-01-03,0.62,1092066.65,692403.58,250115.85,20950.56,128596.66,79896.67,48699.99,0.0,conventional,2016,PhoenixTucson +0,2016-12-25,1.26,80688.76,21519.08,23868.08,961.58,34340.02,30455.29,3884.73,0.0,conventional,2016,Pittsburgh +1,2016-12-18,1.02,123555.7,47067.52,38353.81,1974.86,36159.51,27858.11,8301.4,0.0,conventional,2016,Pittsburgh +2,2016-12-11,1.21,84144.99,22587.44,22461.37,1185.39,37910.79,33381.5,4529.29,0.0,conventional,2016,Pittsburgh +3,2016-12-04,1.27,80731.39,22112.25,22668.13,1314.12,34636.89,30145.94,4345.12,145.83,conventional,2016,Pittsburgh +4,2016-11-27,1.27,67448.86,17971.93,18776.67,1117.3,29582.96,25667.72,3915.24,0.0,conventional,2016,Pittsburgh +5,2016-11-20,1.27,85227.73,21811.65,24291.5,1050.73,38073.85,33341.58,4732.27,0.0,conventional,2016,Pittsburgh +6,2016-11-13,1.26,86306.22,22929.76,26629.2,1041.38,35705.88,31047.93,4657.95,0.0,conventional,2016,Pittsburgh +7,2016-11-06,1.25,92657.44,24892.26,27433.78,1137.26,39194.14,34250.04,4944.1,0.0,conventional,2016,Pittsburgh +8,2016-10-30,1.25,86820.55,25336.21,21347.76,1150.23,38986.35,33736.01,5198.95,51.39,conventional,2016,Pittsburgh +9,2016-10-23,1.3,90368.85,25223.29,26247.81,1185.68,37712.07,32229.69,5482.38,0.0,conventional,2016,Pittsburgh +10,2016-10-16,1.27,87503.46,23294.4,24183.85,994.89,39030.32,34191.83,4838.49,0.0,conventional,2016,Pittsburgh +11,2016-10-09,1.29,89506.29,24596.38,27239.36,953.05,36717.5,32322.38,4395.12,0.0,conventional,2016,Pittsburgh +12,2016-10-02,1.3,92483.87,27733.81,31201.92,1368.98,32179.16,27626.97,4552.19,0.0,conventional,2016,Pittsburgh +13,2016-09-25,1.01,165178.31,62848.81,67362.99,3010.02,31956.49,23313.81,8642.68,0.0,conventional,2016,Pittsburgh +14,2016-09-18,1.27,91298.63,28022.65,40377.82,1331.35,21566.81,20132.05,1434.76,0.0,conventional,2016,Pittsburgh +15,2016-09-11,1.33,80206.95,22513.05,30643.05,925.3,26125.55,24205.55,1920.0,0.0,conventional,2016,Pittsburgh +16,2016-09-04,1.23,93887.78,18723.14,37833.25,1349.45,35981.94,34860.32,902.45,219.17,conventional,2016,Pittsburgh +17,2016-08-28,1.4,89247.85,10388.44,43896.41,1021.81,33941.19,30513.25,2362.94,1065.0,conventional,2016,Pittsburgh +18,2016-08-21,1.42,89949.42,1802.19,51710.69,1003.84,35432.7,26056.23,8896.47,480.0,conventional,2016,Pittsburgh +19,2016-08-14,1.42,93415.78,1543.89,52111.73,1001.96,38758.2,29043.13,8460.07,1255.0,conventional,2016,Pittsburgh +20,2016-08-07,1.37,97959.55,1678.67,53440.42,1000.97,41839.49,27914.15,10405.34,3520.0,conventional,2016,Pittsburgh +21,2016-07-31,1.42,94553.4,1433.04,52790.96,943.41,39385.99,27719.86,10802.41,863.72,conventional,2016,Pittsburgh +22,2016-07-24,1.35,104420.57,1548.98,55308.86,1232.52,46330.21,31287.68,10654.75,4387.78,conventional,2016,Pittsburgh +23,2016-07-17,1.25,113655.96,1416.4,54927.04,1132.71,56179.81,39074.78,10590.03,6515.0,conventional,2016,Pittsburgh +24,2016-07-10,1.29,111914.65,1536.94,57549.45,1294.98,51533.28,37858.19,10065.09,3610.0,conventional,2016,Pittsburgh +25,2016-07-03,1.36,128114.61,1481.6,68197.33,1266.4,57169.28,40468.87,11865.41,4835.0,conventional,2016,Pittsburgh +26,2016-06-26,1.39,110772.26,1415.16,59568.48,1294.29,48494.33,32965.11,13454.22,2075.0,conventional,2016,Pittsburgh +27,2016-06-19,1.42,104127.89,2063.55,59252.92,1172.76,41638.66,27767.25,12371.41,1500.0,conventional,2016,Pittsburgh +28,2016-06-12,1.41,102412.83,3377.4,56238.3,1171.89,41625.24,28750.83,11099.41,1775.0,conventional,2016,Pittsburgh +29,2016-06-05,1.38,111137.97,2020.28,61595.07,1293.72,46228.9,30730.27,15178.63,320.0,conventional,2016,Pittsburgh +30,2016-05-29,1.4,117486.96,1336.42,68421.33,1567.32,46161.89,29242.9,16522.32,396.67,conventional,2016,Pittsburgh +31,2016-05-22,1.17,113857.64,1083.05,68958.85,1536.78,42278.96,21961.82,19066.58,1250.56,conventional,2016,Pittsburgh +32,2016-05-15,0.87,165733.74,1504.36,113018.31,2930.76,48280.31,16500.86,31690.56,88.89,conventional,2016,Pittsburgh +33,2016-05-08,0.89,144813.19,1847.76,97359.37,2818.47,42787.59,24483.43,18304.16,0.0,conventional,2016,Pittsburgh +34,2016-05-01,0.92,169483.29,1981.15,114448.24,2935.24,50118.66,35865.31,14253.35,0.0,conventional,2016,Pittsburgh +35,2016-04-24,1.02,109421.34,1300.85,52354.4,1239.89,54526.2,42500.07,12026.13,0.0,conventional,2016,Pittsburgh +36,2016-04-17,1.17,107271.68,1300.27,64912.62,1800.73,39258.06,27639.25,11618.81,0.0,conventional,2016,Pittsburgh +37,2016-04-10,1.18,102684.74,1736.95,57325.73,1600.52,42021.54,28213.82,13807.72,0.0,conventional,2016,Pittsburgh +38,2016-04-03,1.26,87991.76,1591.51,57684.4,1735.56,26980.29,15060.75,11919.54,0.0,conventional,2016,Pittsburgh +39,2016-03-27,1.15,93607.68,1246.72,53507.55,1504.71,37348.7,20111.13,17237.57,0.0,conventional,2016,Pittsburgh +40,2016-03-20,1.17,87881.33,1457.19,50816.15,1224.55,34383.44,23273.12,11110.32,0.0,conventional,2016,Pittsburgh +41,2016-03-13,1.17,91112.78,1630.95,52730.06,1333.25,35418.52,26767.2,8651.32,0.0,conventional,2016,Pittsburgh +42,2016-03-06,1.18,99548.51,1555.29,58262.08,1403.75,38327.39,33427.23,4900.16,0.0,conventional,2016,Pittsburgh +43,2016-02-28,1.21,96483.82,1210.44,58767.67,1383.25,35122.46,29726.65,5395.81,0.0,conventional,2016,Pittsburgh +44,2016-02-21,1.23,84755.36,1353.29,57902.7,1371.78,24127.59,18779.08,5348.51,0.0,conventional,2016,Pittsburgh +45,2016-02-14,1.14,87228.1,2425.21,52891.65,1332.2,30579.04,19080.09,11498.95,0.0,conventional,2016,Pittsburgh +46,2016-02-07,1.18,105805.21,3398.51,72083.75,1740.09,28582.86,21916.83,6666.03,0.0,conventional,2016,Pittsburgh +47,2016-01-31,1.22,88551.72,2259.16,61619.09,1456.3,23217.17,17454.05,5763.12,0.0,conventional,2016,Pittsburgh +48,2016-01-24,1.2,96487.8,106.84,63654.05,1741.79,30985.12,24102.68,6882.44,0.0,conventional,2016,Pittsburgh +49,2016-01-17,1.22,94971.15,1565.32,56551.43,1254.56,35599.84,23178.32,12421.52,0.0,conventional,2016,Pittsburgh +50,2016-01-10,1.23,110155.55,1767.42,67788.68,1611.68,38987.77,23259.21,15711.89,16.67,conventional,2016,Pittsburgh +51,2016-01-03,1.27,90521.74,1511.68,61042.3,1389.95,26577.81,16737.31,9620.5,220.0,conventional,2016,Pittsburgh +0,2016-12-25,1.09,1449394.65,581226.62,446633.64,4267.77,417266.62,384954.53,30652.88,1659.21,conventional,2016,Plains +1,2016-12-18,1.06,1426470.94,581861.96,428227.02,3271.57,413110.39,377226.69,30112.48,5771.22,conventional,2016,Plains +2,2016-12-11,1.08,1468901.87,724148.87,330240.87,3599.85,410912.28,382366.52,24588.8,3956.96,conventional,2016,Plains +3,2016-12-04,1.09,1676509.02,946350.29,349760.6,3190.05,377208.08,325851.34,43201.73,8155.01,conventional,2016,Plains +4,2016-11-27,1.35,1131932.27,520565.84,272840.98,3226.22,335299.23,305277.39,28166.52,1855.32,conventional,2016,Plains +5,2016-11-20,1.49,1126964.32,518903.13,306191.07,4456.35,297413.77,273036.06,20624.66,3753.05,conventional,2016,Plains +6,2016-11-13,1.57,1187396.84,514295.92,357173.85,5306.27,310620.8,279361.86,23575.34,7683.6,conventional,2016,Plains +7,2016-11-06,1.55,1281023.69,576884.27,366464.25,6472.83,331202.34,300860.55,26241.79,4100.0,conventional,2016,Plains +8,2016-10-30,1.54,1058938.09,469957.6,297119.25,5263.65,286597.59,221347.82,56090.36,9159.41,conventional,2016,Plains +9,2016-10-23,1.53,1179301.18,520220.72,350912.77,5549.22,302618.47,254209.16,42103.9,6305.41,conventional,2016,Plains +10,2016-10-16,1.49,1252399.56,567497.88,367702.35,5139.0,312060.33,276634.27,28257.4,7168.66,conventional,2016,Plains +11,2016-10-09,1.41,1360541.39,589475.12,416484.14,4681.14,349900.99,312195.29,30408.41,7297.29,conventional,2016,Plains +12,2016-10-02,1.37,1352081.51,598896.04,378848.86,5181.48,369155.13,314559.24,49039.38,5556.51,conventional,2016,Plains +13,2016-09-25,1.35,1419113.4,673110.96,360990.42,5573.18,379438.84,333274.27,39397.54,6767.03,conventional,2016,Plains +14,2016-09-18,1.24,1641724.15,826479.75,439168.23,5721.42,370354.75,326207.49,38375.04,5772.22,conventional,2016,Plains +15,2016-09-11,1.18,1697761.29,780495.39,488705.89,5273.03,423286.98,392942.12,25530.48,4814.38,conventional,2016,Plains +16,2016-09-04,1.1,1933628.13,931227.39,541981.42,6177.12,454242.2,409642.51,30741.42,13858.27,conventional,2016,Plains +17,2016-08-28,1.22,1693969.47,823545.19,462409.58,5248.8,402765.9,358451.47,31890.92,12423.51,conventional,2016,Plains +18,2016-08-21,1.21,1693418.62,748383.14,445643.2,5418.75,493973.53,461318.07,12246.86,20408.6,conventional,2016,Plains +19,2016-08-14,1.12,1873446.99,882147.93,435932.3,6193.74,549173.02,525124.87,16834.48,7213.67,conventional,2016,Plains +20,2016-08-07,1.17,1979362.94,859776.14,534861.87,6165.29,578559.64,535419.49,19900.67,23239.48,conventional,2016,Plains +21,2016-07-31,1.25,1716384.76,658829.43,526275.28,7471.62,523808.43,471473.75,17633.77,34700.91,conventional,2016,Plains +22,2016-07-24,1.22,1807152.43,650651.58,565159.06,7416.64,583925.15,527519.74,18858.31,37547.1,conventional,2016,Plains +23,2016-07-17,1.15,1865426.77,615734.77,583708.66,11130.38,654852.96,590322.87,30454.97,34075.12,conventional,2016,Plains +24,2016-07-10,1.09,2028847.18,691422.45,634634.29,16160.39,686630.05,614584.95,22163.03,49882.07,conventional,2016,Plains +25,2016-07-03,1.05,2259572.01,684349.38,761167.83,10691.9,803362.9,717323.25,34035.78,52003.87,conventional,2016,Plains +26,2016-06-26,1.03,2101835.6,1040820.26,490842.47,9370.21,560802.66,510422.91,25086.66,25293.09,conventional,2016,Plains +27,2016-06-19,0.87,2559002.86,1093072.84,925765.95,11009.71,529154.36,475718.48,41103.42,12332.46,conventional,2016,Plains +28,2016-06-12,1.04,2104834.28,892690.24,628986.82,11290.7,571866.52,518050.97,28877.41,24938.14,conventional,2016,Plains +29,2016-06-05,0.93,2330438.23,1242318.2,518978.73,10390.99,558750.31,505801.45,28530.38,24418.48,conventional,2016,Plains +30,2016-05-29,0.9,2265037.77,1223080.58,495021.66,12125.66,534809.87,502399.51,22583.69,9826.67,conventional,2016,Plains +31,2016-05-22,0.94,2248726.67,1062580.2,619172.75,10708.07,556265.65,502964.37,43241.43,10059.85,conventional,2016,Plains +32,2016-05-15,0.95,2100440.16,873323.33,621229.14,22169.92,583717.77,532964.89,44849.54,5903.34,conventional,2016,Plains +33,2016-05-08,0.86,2664926.82,1198630.18,861839.11,18180.72,586276.81,500461.05,74091.16,11724.6,conventional,2016,Plains +34,2016-05-01,0.97,2093998.59,925373.29,636658.22,27641.97,504325.11,471542.33,32052.7,730.08,conventional,2016,Plains +35,2016-04-24,0.95,2088524.46,887508.56,650864.38,11773.39,538378.13,474085.79,56591.26,7701.08,conventional,2016,Plains +36,2016-04-17,0.95,2114990.64,852518.35,756238.99,10596.68,495636.62,433889.83,52871.73,8875.06,conventional,2016,Plains +37,2016-04-10,1.0,1872378.56,886184.0,507777.03,19359.4,459058.13,402410.37,45353.77,11293.99,conventional,2016,Plains +38,2016-04-03,1.04,1769050.34,898127.03,451253.04,45776.71,373893.56,325591.8,46536.69,1765.07,conventional,2016,Plains +39,2016-03-27,1.07,1740836.89,773936.48,518333.94,44611.53,403954.94,371049.93,31032.53,1872.48,conventional,2016,Plains +40,2016-03-20,0.95,1938247.08,793583.9,691374.76,33666.72,419621.7,367140.06,50899.37,1582.27,conventional,2016,Plains +41,2016-03-13,0.91,2095165.01,1102893.11,548239.52,49503.76,394528.62,348345.6,43787.46,2395.56,conventional,2016,Plains +42,2016-03-06,1.06,1734414.9,798294.79,481425.08,44771.53,409923.5,375200.3,31752.25,2970.95,conventional,2016,Plains +43,2016-02-28,1.07,1647189.23,716192.38,496105.73,38146.51,396744.61,357647.85,37148.43,1948.33,conventional,2016,Plains +44,2016-02-21,1.03,1672884.28,784111.14,499720.63,24200.11,364852.4,325916.64,37205.76,1730.0,conventional,2016,Plains +45,2016-02-14,0.97,1790822.72,869882.86,525736.46,20578.05,374625.35,340809.47,32439.63,1376.25,conventional,2016,Plains +46,2016-02-07,0.83,2838853.24,1206795.22,1165322.88,29501.59,437233.55,373119.34,62700.76,1413.45,conventional,2016,Plains +47,2016-01-31,1.05,1851372.18,870097.66,571495.47,18332.66,391446.39,340740.98,49335.69,1369.72,conventional,2016,Plains +48,2016-01-24,1.16,1261352.88,360743.21,518203.05,16918.87,365487.75,315428.95,47910.39,2148.41,conventional,2016,Plains +49,2016-01-17,1.12,1495176.98,634914.42,499796.45,25612.84,334853.27,301751.78,28186.72,4914.77,conventional,2016,Plains +50,2016-01-10,1.08,1670524.63,750885.43,510181.5,36259.27,373198.43,310260.35,59405.46,3532.62,conventional,2016,Plains +51,2016-01-03,0.94,2171818.57,999388.89,840637.85,19331.34,312460.49,291734.88,19418.04,1307.57,conventional,2016,Plains +0,2016-12-25,0.94,525930.72,104032.21,135602.68,13342.22,272953.61,272606.5,44.46,302.65,conventional,2016,Portland +1,2016-12-18,0.93,522499.15,103822.87,135172.07,11774.35,271729.86,270658.02,907.04,164.8,conventional,2016,Portland +2,2016-12-11,0.7,923022.14,97136.34,256730.42,11762.18,557393.2,554442.99,1653.04,1297.17,conventional,2016,Portland +3,2016-12-04,1.0,594246.5,109778.14,143749.16,11803.23,328915.97,325918.13,2557.73,440.11,conventional,2016,Portland +4,2016-11-27,1.22,404389.56,72973.18,104741.59,11472.92,215201.87,214541.32,501.88,158.67,conventional,2016,Portland +5,2016-11-20,1.23,455618.12,80040.96,114101.18,13948.69,247527.29,246808.48,500.84,217.97,conventional,2016,Portland +6,2016-11-13,1.22,487762.79,90571.72,119196.88,15746.23,262247.96,261272.14,376.61,599.21,conventional,2016,Portland +7,2016-11-06,1.35,467433.56,83618.4,116112.59,14247.63,253454.94,252412.68,665.04,377.22,conventional,2016,Portland +8,2016-10-30,1.4,407047.88,70232.8,109965.98,15009.27,211839.83,207419.82,4075.8,344.21,conventional,2016,Portland +9,2016-10-23,1.12,568596.03,77057.58,127808.18,12872.16,350858.11,349205.42,1375.66,277.03,conventional,2016,Portland +10,2016-10-16,1.16,563725.3,106966.73,107928.08,13597.96,335232.53,329875.17,5211.82,145.54,conventional,2016,Portland +11,2016-10-09,1.08,598035.57,107796.99,124430.54,15502.77,350305.27,284345.95,65755.98,203.34,conventional,2016,Portland +12,2016-10-02,0.83,954737.07,93260.65,187759.49,15822.01,657894.92,481756.13,175641.94,496.85,conventional,2016,Portland +13,2016-09-25,0.87,694289.8,122350.41,123793.69,16380.23,431765.47,324254.95,107460.99,49.53,conventional,2016,Portland +14,2016-09-18,0.94,603235.38,125312.43,146731.4,13568.76,317622.79,302546.28,14940.66,135.85,conventional,2016,Portland +15,2016-09-11,0.88,671817.53,155407.07,156920.67,15697.22,343792.57,343446.3,104.02,242.25,conventional,2016,Portland +16,2016-09-04,1.01,613058.51,131619.33,166648.41,13319.89,301470.88,300935.32,312.46,223.1,conventional,2016,Portland +17,2016-08-28,0.99,621458.42,119829.63,173787.92,12315.05,315525.82,315111.31,336.36,78.15,conventional,2016,Portland +18,2016-08-21,0.92,668003.85,135899.22,156327.74,11483.54,364293.35,362521.54,1691.66,80.15,conventional,2016,Portland +19,2016-08-14,0.98,623628.8,134421.78,139971.18,15590.99,333644.85,331448.0,1897.7,299.15,conventional,2016,Portland +20,2016-08-07,0.96,659207.94,140180.44,166749.64,15567.8,336710.06,335811.13,831.25,67.68,conventional,2016,Portland +21,2016-07-31,1.02,608614.15,135646.65,130929.72,15066.52,326971.26,324790.83,1778.13,402.3,conventional,2016,Portland +22,2016-07-24,0.97,602085.03,135877.37,142590.49,16246.36,307370.81,305237.5,2006.1,127.21,conventional,2016,Portland +23,2016-07-17,0.93,612572.73,138377.47,140619.34,16322.19,317253.73,316116.69,946.32,190.72,conventional,2016,Portland +24,2016-07-10,0.98,669673.68,158448.06,152086.54,15965.08,343174.0,342068.5,1006.66,98.84,conventional,2016,Portland +25,2016-07-03,0.98,728681.01,162120.67,189257.93,20839.47,356462.94,355095.8,1172.96,194.18,conventional,2016,Portland +26,2016-06-26,0.92,662145.29,139894.23,158417.0,19975.97,343858.09,340794.03,1498.14,1565.92,conventional,2016,Portland +27,2016-06-19,0.86,682680.66,154975.49,168948.72,19367.47,339388.98,337166.84,1625.57,596.57,conventional,2016,Portland +28,2016-06-12,0.85,626226.63,159711.34,167508.33,19531.71,279475.25,277038.36,2380.23,56.66,conventional,2016,Portland +29,2016-06-05,0.78,942774.69,153775.4,234869.93,23659.16,530470.2,524889.49,5116.99,463.72,conventional,2016,Portland +30,2016-05-29,0.77,832869.55,145240.16,204586.42,19960.09,463082.88,459278.33,3483.65,320.9,conventional,2016,Portland +31,2016-05-22,0.78,689730.64,140269.29,157857.75,18037.36,373566.24,367615.3,5623.69,327.25,conventional,2016,Portland +32,2016-05-15,0.75,884782.05,139703.26,220231.82,18398.06,506448.91,491056.93,14194.76,1197.22,conventional,2016,Portland +33,2016-05-08,0.75,969780.21,155346.32,244456.0,20852.69,549125.2,544998.05,3539.1,588.05,conventional,2016,Portland +34,2016-05-01,0.76,852118.86,148329.79,219777.04,18792.26,465219.77,461966.02,2894.07,359.68,conventional,2016,Portland +35,2016-04-24,0.79,714374.65,147879.2,194071.12,18734.63,353689.7,349814.73,3823.03,51.94,conventional,2016,Portland +36,2016-04-17,0.69,917689.13,80084.69,285327.86,20489.31,531787.27,518252.26,12155.5,1379.51,conventional,2016,Portland +37,2016-04-10,0.88,681434.09,115155.67,233413.33,21804.8,311060.29,309162.69,150.85,1746.75,conventional,2016,Portland +38,2016-04-03,0.79,806264.89,89147.26,249613.5,23098.9,444405.23,442760.35,1405.44,239.44,conventional,2016,Portland +39,2016-03-27,0.71,806586.49,82569.97,247868.59,17851.44,458296.49,455581.54,2381.58,333.37,conventional,2016,Portland +40,2016-03-20,0.94,556500.49,89989.82,177624.19,17767.12,271119.36,269468.42,1435.24,215.7,conventional,2016,Portland +41,2016-03-13,0.79,750735.4,89366.15,223410.75,19425.0,418533.5,415276.73,2895.31,361.46,conventional,2016,Portland +42,2016-03-06,0.83,769499.11,93795.79,207462.92,32885.82,435354.58,434179.72,841.99,332.87,conventional,2016,Portland +43,2016-02-28,0.83,725928.01,83579.8,209750.15,18299.84,414298.22,411116.66,2953.08,228.48,conventional,2016,Portland +44,2016-02-21,0.71,823186.03,65380.96,277280.25,14447.61,466077.21,439612.36,26245.95,218.9,conventional,2016,Portland +45,2016-02-14,0.87,567176.93,98599.11,169228.62,15639.48,283709.72,283183.03,392.08,134.61,conventional,2016,Portland +46,2016-02-07,0.72,948838.16,90313.08,340413.42,17669.38,500442.28,498461.43,1358.08,622.77,conventional,2016,Portland +47,2016-01-31,0.88,674373.81,83566.59,223504.78,18005.27,349297.17,346063.4,1781.28,1452.49,conventional,2016,Portland +48,2016-01-24,0.9,596989.37,60000.87,208201.05,17305.06,311482.39,307475.27,3800.73,206.39,conventional,2016,Portland +49,2016-01-17,0.87,731385.02,91788.6,249094.94,16915.12,373586.36,366756.26,6677.6,152.5,conventional,2016,Portland +50,2016-01-10,0.88,731602.32,100449.51,241994.09,20422.92,368735.8,363944.46,4247.82,543.52,conventional,2016,Portland +51,2016-01-03,0.75,830063.2,101180.6,291667.86,22086.36,415128.38,402710.31,11447.53,970.54,conventional,2016,Portland +0,2016-12-25,1.24,208041.0,57636.61,63983.54,6997.22,79423.63,76469.05,2793.47,161.11,conventional,2016,RaleighGreensboro +1,2016-12-18,1.26,197054.39,60411.01,60081.51,8199.68,68362.19,66189.15,2173.04,0.0,conventional,2016,RaleighGreensboro +2,2016-12-11,1.24,215138.05,77872.1,51720.67,8646.12,76899.16,75275.83,1623.33,0.0,conventional,2016,RaleighGreensboro +3,2016-12-04,1.31,216077.75,80765.25,51555.26,8087.24,75670.0,71739.23,3930.77,0.0,conventional,2016,RaleighGreensboro +4,2016-11-27,1.49,175761.18,64281.66,41537.34,6927.36,63014.82,61452.62,1562.2,0.0,conventional,2016,RaleighGreensboro +5,2016-11-20,1.56,183327.73,66026.81,40837.67,11043.15,65420.1,63280.1,1846.94,293.06,conventional,2016,RaleighGreensboro +6,2016-11-13,1.47,211408.68,87802.48,39962.93,22904.8,60738.47,58852.47,1886.0,0.0,conventional,2016,RaleighGreensboro +7,2016-11-06,1.53,215345.69,79225.25,42184.25,25755.21,68180.98,66193.2,1987.78,0.0,conventional,2016,RaleighGreensboro +8,2016-10-30,1.42,211956.24,84333.26,42819.12,23850.94,60952.92,59019.43,1933.49,0.0,conventional,2016,RaleighGreensboro +9,2016-10-23,1.4,239744.28,88588.35,53189.14,21782.42,76184.37,74210.78,1668.03,305.56,conventional,2016,RaleighGreensboro +10,2016-10-16,1.37,247656.68,91951.02,64317.25,17584.71,73803.7,70168.55,3635.15,0.0,conventional,2016,RaleighGreensboro +11,2016-10-09,1.39,254093.87,85813.34,67026.7,20238.33,81015.5,77169.19,3278.25,568.06,conventional,2016,RaleighGreensboro +12,2016-10-02,1.36,261886.32,81422.14,79271.53,17415.97,83776.68,79781.02,3059.55,936.11,conventional,2016,RaleighGreensboro +13,2016-09-25,1.35,255043.21,88405.04,70494.6,15699.74,80443.83,77829.34,2614.49,0.0,conventional,2016,RaleighGreensboro +14,2016-09-18,1.27,278129.66,92754.42,82984.73,15056.66,87333.85,82483.06,4723.01,127.78,conventional,2016,RaleighGreensboro +15,2016-09-11,1.31,248257.02,55464.08,81087.7,19102.71,92602.53,88122.17,4475.36,5.0,conventional,2016,RaleighGreensboro +16,2016-09-04,1.27,287328.36,90299.49,90747.57,19654.54,86626.76,84861.81,1764.95,0.0,conventional,2016,RaleighGreensboro +17,2016-08-28,1.29,281758.14,88767.63,100303.08,13156.44,79530.99,77895.51,434.09,1201.39,conventional,2016,RaleighGreensboro +18,2016-08-21,1.29,279090.94,67590.68,102580.71,21071.46,87848.09,87548.68,299.41,0.0,conventional,2016,RaleighGreensboro +19,2016-08-14,1.27,295307.02,69869.89,113633.79,23428.58,88374.76,86927.7,1447.06,0.0,conventional,2016,RaleighGreensboro +20,2016-08-07,1.31,280543.19,64077.54,115112.98,25307.84,76044.83,71564.1,3510.45,970.28,conventional,2016,RaleighGreensboro +21,2016-07-31,1.33,273951.5,59207.74,116645.19,25331.72,72766.85,68455.47,1258.6,3052.78,conventional,2016,RaleighGreensboro +22,2016-07-24,1.31,279159.58,52638.44,114295.77,26360.8,85864.57,77643.01,3640.73,4580.83,conventional,2016,RaleighGreensboro +23,2016-07-17,1.28,279442.6,47084.06,109983.48,29372.59,93002.47,82748.32,685.82,9568.33,conventional,2016,RaleighGreensboro +24,2016-07-10,1.2,303559.52,43145.57,124463.71,42699.88,93250.36,80207.55,2107.81,10935.0,conventional,2016,RaleighGreensboro +25,2016-07-03,1.14,307215.96,64011.81,107878.42,44752.61,90573.12,79393.97,1461.37,9717.78,conventional,2016,RaleighGreensboro +26,2016-06-26,1.12,297550.9,63248.04,110539.24,43580.31,80183.31,77775.85,657.46,1750.0,conventional,2016,RaleighGreensboro +27,2016-06-19,1.12,313757.2,69174.55,116061.69,48615.58,79905.38,78077.13,958.25,870.0,conventional,2016,RaleighGreensboro +28,2016-06-12,1.09,298517.24,61649.07,111257.49,47593.7,78016.98,75397.66,408.21,2211.11,conventional,2016,RaleighGreensboro +29,2016-06-05,1.11,308049.48,69779.42,115207.29,42240.01,80822.76,78796.85,800.08,1225.83,conventional,2016,RaleighGreensboro +30,2016-05-29,1.18,295356.64,56828.31,118782.19,41393.05,78353.09,77273.37,834.72,245.0,conventional,2016,RaleighGreensboro +31,2016-05-22,1.16,288374.18,58844.01,123522.39,19570.01,86437.77,85455.55,307.22,675.0,conventional,2016,RaleighGreensboro +32,2016-05-15,1.1,293520.49,57225.93,131575.08,15602.76,89116.72,86768.77,1193.78,1154.17,conventional,2016,RaleighGreensboro +33,2016-05-08,1.07,318524.19,56914.24,154919.75,16994.03,89696.17,86964.65,1553.74,1177.78,conventional,2016,RaleighGreensboro +34,2016-05-01,1.06,326468.57,77783.94,143133.66,17389.45,88161.52,86752.27,1406.78,2.47,conventional,2016,RaleighGreensboro +35,2016-04-24,1.07,311438.51,69533.11,135696.85,18008.74,88199.81,87008.55,1191.26,0.0,conventional,2016,RaleighGreensboro +36,2016-04-17,1.11,284896.14,47754.46,137649.89,17999.41,81492.38,80748.86,733.64,9.88,conventional,2016,RaleighGreensboro +37,2016-04-10,1.09,274246.43,62706.78,112390.31,16301.47,82847.87,81149.04,1688.94,9.89,conventional,2016,RaleighGreensboro +38,2016-04-03,1.13,262808.03,60612.1,113708.37,14035.04,74452.52,73697.13,755.39,0.0,conventional,2016,RaleighGreensboro +39,2016-03-27,1.14,260487.14,44251.14,129664.47,15425.72,71145.81,70533.29,612.52,0.0,conventional,2016,RaleighGreensboro +40,2016-03-20,1.13,288866.22,57433.83,140113.93,17215.48,74102.98,73376.76,726.22,0.0,conventional,2016,RaleighGreensboro +41,2016-03-13,1.08,303779.53,65417.48,142777.21,20693.96,74890.88,73420.12,1470.76,0.0,conventional,2016,RaleighGreensboro +42,2016-03-06,1.08,298087.71,66431.92,140242.5,22198.37,69214.92,68588.92,626.0,0.0,conventional,2016,RaleighGreensboro +43,2016-02-28,1.08,281060.42,59637.15,136706.15,19136.17,65580.95,63934.42,1646.53,0.0,conventional,2016,RaleighGreensboro +44,2016-02-21,1.05,263148.45,55054.39,118359.43,19436.13,70298.5,69867.25,431.25,0.0,conventional,2016,RaleighGreensboro +45,2016-02-14,0.99,283960.43,71137.02,118416.48,18499.75,75907.18,73208.05,2699.13,0.0,conventional,2016,RaleighGreensboro +46,2016-02-07,0.86,403849.99,82796.77,207314.39,41708.37,72030.46,66876.3,5151.7,2.46,conventional,2016,RaleighGreensboro +47,2016-01-31,0.96,290633.33,61313.27,145758.08,26481.58,57080.4,52157.37,4923.03,0.0,conventional,2016,RaleighGreensboro +48,2016-01-24,0.96,242512.95,20211.55,135264.31,26788.14,60248.95,59121.7,1127.25,0.0,conventional,2016,RaleighGreensboro +49,2016-01-17,1.0,272248.84,47604.07,140274.99,27591.48,56778.3,56176.96,601.34,0.0,conventional,2016,RaleighGreensboro +50,2016-01-10,0.99,257990.11,42069.78,120386.44,29658.58,65875.31,64396.12,1479.19,0.0,conventional,2016,RaleighGreensboro +51,2016-01-03,0.92,280335.82,65934.23,127743.83,29344.8,57312.96,56645.93,667.03,0.0,conventional,2016,RaleighGreensboro +0,2016-12-25,1.2,176103.25,57197.5,58578.91,2184.2,58142.64,57397.06,745.58,0.0,conventional,2016,RichmondNorfolk +1,2016-12-18,1.15,174209.1,64259.62,54299.21,2892.26,52758.01,51586.6,1171.41,0.0,conventional,2016,RichmondNorfolk +2,2016-12-11,1.1,186495.71,67313.99,51724.9,2894.98,64561.84,63970.47,591.37,0.0,conventional,2016,RichmondNorfolk +3,2016-12-04,1.18,183871.72,82393.63,49249.33,2714.51,49514.25,49474.25,40.0,0.0,conventional,2016,RichmondNorfolk +4,2016-11-27,1.21,154199.13,47392.15,48587.49,2115.8,56103.69,56074.45,29.24,0.0,conventional,2016,RichmondNorfolk +5,2016-11-20,1.29,177112.27,61550.58,49335.17,3168.92,63057.6,63057.6,0.0,0.0,conventional,2016,RichmondNorfolk +6,2016-11-13,1.33,177641.28,81429.32,47266.81,4975.01,43970.14,43970.14,0.0,0.0,conventional,2016,RichmondNorfolk +7,2016-11-06,1.39,169723.23,73480.37,43301.88,6292.12,46648.86,46648.86,0.0,0.0,conventional,2016,RichmondNorfolk +8,2016-10-30,1.28,174400.73,80899.6,43431.58,5927.06,44142.49,44106.08,33.08,3.33,conventional,2016,RichmondNorfolk +9,2016-10-23,1.34,178512.86,70435.52,54871.16,5858.15,47348.03,46850.78,497.25,0.0,conventional,2016,RichmondNorfolk +10,2016-10-16,1.28,203089.29,75896.57,67555.19,4957.43,54680.1,53622.78,1057.32,0.0,conventional,2016,RichmondNorfolk +11,2016-10-09,1.25,213460.34,90443.54,66361.81,4535.47,52119.52,51541.32,578.2,0.0,conventional,2016,RichmondNorfolk +12,2016-10-02,1.19,229339.1,95732.95,68003.98,5204.62,60397.55,59496.47,901.08,0.0,conventional,2016,RichmondNorfolk +13,2016-09-25,1.27,210791.27,88120.08,66843.58,4599.0,51228.61,51224.17,4.44,0.0,conventional,2016,RichmondNorfolk +14,2016-09-18,1.18,238848.85,99451.59,78464.91,4204.51,56727.84,54657.32,2070.52,0.0,conventional,2016,RichmondNorfolk +15,2016-09-11,1.13,240632.37,96272.81,71790.5,5966.97,66602.09,63212.61,3389.48,0.0,conventional,2016,RichmondNorfolk +16,2016-09-04,1.11,263823.88,100753.98,86557.82,6483.63,70028.45,69754.69,113.76,160.0,conventional,2016,RichmondNorfolk +17,2016-08-28,1.06,250434.52,87612.12,85621.03,5087.71,72113.66,70265.15,178.51,1670.0,conventional,2016,RichmondNorfolk +18,2016-08-21,1.11,236349.68,86900.27,84501.94,6791.56,58155.91,57801.11,79.8,275.0,conventional,2016,RichmondNorfolk +19,2016-08-14,1.12,247600.94,89131.88,80717.4,8138.85,69612.81,69444.71,108.1,60.0,conventional,2016,RichmondNorfolk +20,2016-08-07,1.1,266174.1,98312.66,93057.33,8281.61,66522.5,60015.34,4302.16,2205.0,conventional,2016,RichmondNorfolk +21,2016-07-31,1.17,245374.63,85721.72,86666.66,9342.86,63643.39,60284.96,2603.43,755.0,conventional,2016,RichmondNorfolk +22,2016-07-24,1.07,272728.01,96397.86,91585.66,9256.75,75487.74,64454.83,6622.91,4410.0,conventional,2016,RichmondNorfolk +23,2016-07-17,1.06,264253.28,82855.27,92471.42,9386.11,79540.48,69396.45,683.2,9460.83,conventional,2016,RichmondNorfolk +24,2016-07-10,1.02,296610.12,87547.8,117236.14,12340.78,79485.4,69248.69,2121.71,8115.0,conventional,2016,RichmondNorfolk +25,2016-07-03,0.99,305399.4,89753.36,116413.77,14142.27,85090.0,77055.0,0.0,8035.0,conventional,2016,RichmondNorfolk +26,2016-06-26,1.0,259281.86,74356.16,104881.0,13640.28,66404.42,61487.49,26.93,4890.0,conventional,2016,RichmondNorfolk +27,2016-06-19,0.99,278178.65,67619.73,122627.22,15409.3,72522.4,67694.0,83.4,4745.0,conventional,2016,RichmondNorfolk +28,2016-06-12,0.96,280191.2,83555.77,108482.44,15693.42,72459.57,69331.2,158.37,2970.0,conventional,2016,RichmondNorfolk +29,2016-06-05,0.98,268775.52,67444.03,117809.78,13829.45,69692.26,66487.06,784.37,2420.83,conventional,2016,RichmondNorfolk +30,2016-05-29,1.0,274103.16,81287.84,106696.81,14413.68,71704.83,68403.23,746.6,2555.0,conventional,2016,RichmondNorfolk +31,2016-05-22,0.96,271979.26,79353.25,105907.42,5994.65,80723.94,78267.45,6.49,2450.0,conventional,2016,RichmondNorfolk +32,2016-05-15,1.0,250352.36,63701.44,121474.74,5701.56,59474.62,59227.96,152.32,94.34,conventional,2016,RichmondNorfolk +33,2016-05-08,0.9,334121.64,89111.96,158033.71,6247.53,80728.44,78934.29,1724.92,69.23,conventional,2016,RichmondNorfolk +34,2016-05-01,0.95,283660.1,67526.83,132271.16,6670.54,77191.57,77132.4,2.67,56.5,conventional,2016,RichmondNorfolk +35,2016-04-24,0.98,273208.48,73890.53,118253.05,6402.36,74662.54,74660.0,2.54,0.0,conventional,2016,RichmondNorfolk +36,2016-04-17,0.99,251803.25,58573.91,119481.28,6469.48,67278.58,67277.25,1.33,0.0,conventional,2016,RichmondNorfolk +37,2016-04-10,1.01,220100.13,60884.25,82433.14,6103.75,70678.99,70654.98,0.0,24.01,conventional,2016,RichmondNorfolk +38,2016-04-03,1.03,189989.18,58169.25,74249.46,5176.88,52393.59,52393.59,0.0,0.0,conventional,2016,RichmondNorfolk +39,2016-03-27,1.02,233604.1,61031.43,109864.33,4986.56,57721.78,57703.09,5.34,13.35,conventional,2016,RichmondNorfolk +40,2016-03-20,0.99,264247.19,65822.05,127367.89,5712.57,65344.68,65341.18,3.5,0.0,conventional,2016,RichmondNorfolk +41,2016-03-13,1.02,246110.88,53660.8,125742.51,6975.98,59731.59,59722.27,9.32,0.0,conventional,2016,RichmondNorfolk +42,2016-03-06,0.99,255419.61,69078.97,117735.27,7265.87,61339.5,61329.85,9.65,0.0,conventional,2016,RichmondNorfolk +43,2016-02-28,1.04,230260.29,68025.31,107712.33,6324.86,48197.79,47964.52,233.27,0.0,conventional,2016,RichmondNorfolk +44,2016-02-21,0.98,214625.59,57431.41,101387.49,5839.55,49967.14,46939.94,3027.2,0.0,conventional,2016,RichmondNorfolk +45,2016-02-14,0.92,254611.93,69755.44,118256.29,4864.42,61735.78,58227.8,3507.98,0.0,conventional,2016,RichmondNorfolk +46,2016-02-07,0.78,394461.41,145746.61,168148.89,11393.01,69172.9,65402.67,3770.23,0.0,conventional,2016,RichmondNorfolk +47,2016-01-31,0.98,222414.16,52910.51,115933.08,7356.2,46214.37,43577.03,2637.34,0.0,conventional,2016,RichmondNorfolk +48,2016-01-24,0.97,272314.29,81685.72,131405.09,7716.74,51506.74,50993.41,513.33,0.0,conventional,2016,RichmondNorfolk +49,2016-01-17,0.97,272594.61,102087.13,115257.04,8461.9,46788.54,46788.54,0.0,0.0,conventional,2016,RichmondNorfolk +50,2016-01-10,0.97,243704.71,81955.23,97007.78,8835.13,55906.57,55900.0,6.57,0.0,conventional,2016,RichmondNorfolk +51,2016-01-03,0.96,235618.91,79192.25,102411.75,8338.6,45676.31,45411.45,264.86,0.0,conventional,2016,RichmondNorfolk +0,2016-12-25,1.16,103804.48,27393.26,28263.18,95.33,48052.71,47522.99,529.72,0.0,conventional,2016,Roanoke +1,2016-12-18,1.15,93106.8,29593.9,26460.78,125.18,36926.94,35874.46,1052.48,0.0,conventional,2016,Roanoke +2,2016-12-11,1.04,113394.91,36799.58,27761.04,129.8,48704.49,47917.82,786.67,0.0,conventional,2016,Roanoke +3,2016-12-04,1.17,105733.4,43234.65,26047.67,160.98,36290.1,35680.66,486.67,122.77,conventional,2016,Roanoke +4,2016-11-27,1.31,82819.13,23710.29,23786.95,86.27,35235.62,34948.95,286.67,0.0,conventional,2016,Roanoke +5,2016-11-20,1.33,99233.86,31583.94,25266.97,88.6,42294.35,41990.29,304.06,0.0,conventional,2016,Roanoke +6,2016-11-13,1.41,98075.02,36639.68,25755.75,133.09,35546.5,35306.5,240.0,0.0,conventional,2016,Roanoke +7,2016-11-06,1.39,104169.98,39065.25,23895.38,156.15,41053.2,40762.52,290.68,0.0,conventional,2016,Roanoke +8,2016-10-30,1.26,105608.34,43905.8,21234.24,183.65,40284.65,39530.35,754.3,0.0,conventional,2016,Roanoke +9,2016-10-23,1.26,107231.19,40459.99,29276.45,171.82,37322.93,35715.71,1607.22,0.0,conventional,2016,Roanoke +10,2016-10-16,1.22,121791.92,42680.86,32596.5,130.07,46384.49,43935.83,2448.66,0.0,conventional,2016,Roanoke +11,2016-10-09,1.23,118935.46,46103.44,34296.85,198.7,38336.47,35482.55,2853.92,0.0,conventional,2016,Roanoke +12,2016-10-02,1.13,133182.18,48667.09,35464.62,183.93,48866.54,45781.78,3084.76,0.0,conventional,2016,Roanoke +13,2016-09-25,1.07,142130.59,50868.03,39269.6,116.89,51876.07,51504.04,372.03,0.0,conventional,2016,Roanoke +14,2016-09-18,1.06,144272.73,57840.6,38597.58,92.7,47741.85,43287.12,4444.73,10.0,conventional,2016,Roanoke +15,2016-09-11,1.02,156833.09,59141.58,38349.72,164.15,59177.64,52831.12,6321.52,25.0,conventional,2016,Roanoke +16,2016-09-04,1.01,162357.83,51973.15,42949.04,107.02,67328.62,64633.66,2359.96,335.0,conventional,2016,Roanoke +17,2016-08-28,1.03,155029.38,48406.18,43349.65,108.8,63164.75,59304.96,1999.79,1860.0,conventional,2016,Roanoke +18,2016-08-21,1.04,147961.26,45315.56,46239.65,64.69,56341.36,52711.37,2759.99,870.0,conventional,2016,Roanoke +19,2016-08-14,1.04,145313.85,42321.57,41576.7,89.14,61326.44,57870.22,3331.22,125.0,conventional,2016,Roanoke +20,2016-08-07,1.04,142168.01,43871.58,45988.71,170.74,52136.98,42151.76,9020.22,965.0,conventional,2016,Roanoke +21,2016-07-31,1.07,143067.18,44288.47,43886.04,92.05,54800.62,49803.99,4396.63,600.0,conventional,2016,Roanoke +22,2016-07-24,1.04,150126.91,45204.04,41843.9,61.47,63017.5,49239.71,9662.79,4115.0,conventional,2016,Roanoke +23,2016-07-17,1.04,144948.27,42725.53,45126.99,138.97,56956.78,49605.1,1761.68,5590.0,conventional,2016,Roanoke +24,2016-07-10,1.01,158961.77,46152.7,54601.35,140.66,58067.06,47150.09,5153.64,5763.33,conventional,2016,Roanoke +25,2016-07-03,0.99,164583.69,42474.31,55215.66,153.08,66740.64,59666.75,1708.89,5365.0,conventional,2016,Roanoke +26,2016-06-26,1.02,141407.11,37010.79,52754.51,110.61,51531.2,48166.61,4.59,3360.0,conventional,2016,Roanoke +27,2016-06-19,1.0,158224.62,38806.24,58287.79,134.48,60996.11,57154.04,32.07,3810.0,conventional,2016,Roanoke +28,2016-06-12,0.99,152148.72,41650.39,52625.39,144.98,57727.96,54131.29,277.23,3319.44,conventional,2016,Roanoke +29,2016-06-05,0.96,151372.89,39705.87,56076.83,113.3,55476.89,53294.21,747.68,1435.0,conventional,2016,Roanoke +30,2016-05-29,0.93,162618.02,51556.28,52308.5,199.58,58553.66,56109.34,1204.88,1239.44,conventional,2016,Roanoke +31,2016-05-22,0.9,171189.02,55226.51,50049.44,230.36,65682.71,62687.37,1307.56,1687.78,conventional,2016,Roanoke +32,2016-05-15,0.94,141716.2,41009.19,55894.53,199.99,44612.49,42432.85,2073.58,106.06,conventional,2016,Roanoke +33,2016-05-08,0.87,184595.6,46723.27,76766.69,277.57,60828.07,56454.27,4373.8,0.0,conventional,2016,Roanoke +34,2016-05-01,0.87,178487.59,42590.28,71617.99,715.42,63563.9,61577.35,1986.55,0.0,conventional,2016,Roanoke +35,2016-04-24,0.91,164410.77,42884.03,57628.85,97.8,63800.09,60645.38,3145.62,9.09,conventional,2016,Roanoke +36,2016-04-17,0.93,150910.0,38226.66,59221.75,100.98,53360.61,51084.2,2273.38,3.03,conventional,2016,Roanoke +37,2016-04-10,0.93,133381.56,41262.76,31989.81,135.52,59993.47,58125.32,1834.92,33.23,conventional,2016,Roanoke +38,2016-04-03,0.97,113028.45,37271.13,32720.2,169.65,42867.47,41615.1,1252.37,0.0,conventional,2016,Roanoke +39,2016-03-27,0.96,139668.9,45215.02,50007.46,72.4,44374.02,43175.63,1198.39,0.0,conventional,2016,Roanoke +40,2016-03-20,0.96,156283.99,52022.38,55818.44,140.42,48302.75,48248.66,54.09,0.0,conventional,2016,Roanoke +41,2016-03-13,0.99,139661.75,37199.87,57106.77,147.59,45207.52,44871.77,335.75,0.0,conventional,2016,Roanoke +42,2016-03-06,0.98,142026.9,49400.9,51284.91,111.04,41230.05,39867.65,1362.4,0.0,conventional,2016,Roanoke +43,2016-02-28,0.99,135623.05,52420.43,48195.34,149.25,34858.03,33709.28,1148.75,0.0,conventional,2016,Roanoke +44,2016-02-21,0.98,115875.65,32921.58,45911.67,102.37,36940.03,33666.7,3273.33,0.0,conventional,2016,Roanoke +45,2016-02-14,0.9,159758.46,47759.39,55674.85,185.96,56138.26,52052.28,4085.98,0.0,conventional,2016,Roanoke +46,2016-02-07,0.91,198011.31,60920.14,79535.27,179.28,57376.62,53859.35,3517.27,0.0,conventional,2016,Roanoke +47,2016-01-31,0.99,121477.84,32756.64,52095.37,135.09,36490.74,34167.03,2323.71,0.0,conventional,2016,Roanoke +48,2016-01-24,0.99,143015.44,47641.16,55634.09,180.99,39559.2,39026.98,162.22,370.0,conventional,2016,Roanoke +49,2016-01-17,0.98,157618.05,64687.72,51993.7,98.71,40837.92,40764.59,0.0,73.33,conventional,2016,Roanoke +50,2016-01-10,0.97,143703.88,55844.25,42998.53,178.13,44682.97,44595.26,17.71,70.0,conventional,2016,Roanoke +51,2016-01-03,0.91,156699.18,59481.98,58348.71,182.56,38685.93,37521.6,31.0,1133.33,conventional,2016,Roanoke +0,2016-12-25,1.07,428247.63,119611.9,263467.16,811.18,44357.39,39136.56,2868.61,2352.22,conventional,2016,Sacramento +1,2016-12-18,1.04,384448.27,125324.05,218206.45,887.61,40030.16,32583.06,5207.1,2240.0,conventional,2016,Sacramento +2,2016-12-11,1.03,434567.21,106959.89,275886.64,1253.31,50467.37,43426.13,5504.02,1537.22,conventional,2016,Sacramento +3,2016-12-04,1.29,315955.99,110569.37,156812.81,1306.3,47267.51,45560.08,382.43,1325.0,conventional,2016,Sacramento +4,2016-11-27,1.43,279333.62,89558.88,150298.86,1111.91,38363.97,35372.69,716.28,2275.0,conventional,2016,Sacramento +5,2016-11-20,1.53,289773.71,94610.3,151992.19,1201.7,41969.52,41822.75,141.77,5.0,conventional,2016,Sacramento +6,2016-11-13,1.62,277735.11,93242.35,144958.18,1255.02,38279.56,38273.66,5.9,0.0,conventional,2016,Sacramento +7,2016-11-06,1.78,266345.33,93518.61,137695.34,1450.27,33681.11,33675.22,5.89,0.0,conventional,2016,Sacramento +8,2016-10-30,1.79,238699.3,97713.53,118831.23,1177.31,20977.23,20196.46,435.77,345.0,conventional,2016,Sacramento +9,2016-10-23,1.59,253163.64,82312.9,127356.96,1930.47,41563.31,36824.0,2029.31,2710.0,conventional,2016,Sacramento +10,2016-10-16,1.61,330213.06,102990.47,180666.02,2661.47,43895.1,41539.17,1035.65,1320.28,conventional,2016,Sacramento +11,2016-10-09,1.49,370422.62,133617.58,190297.13,4510.14,41997.77,41780.4,206.47,10.9,conventional,2016,Sacramento +12,2016-10-02,1.35,381992.7,136133.45,191756.47,4079.46,50023.32,48791.65,0.0,1231.67,conventional,2016,Sacramento +13,2016-09-25,1.34,420076.53,135264.64,230423.89,3263.5,51124.5,46655.82,704.79,3763.89,conventional,2016,Sacramento +14,2016-09-18,1.39,407813.86,124962.88,234689.88,3771.58,44389.52,40849.27,1176.91,2363.34,conventional,2016,Sacramento +15,2016-09-11,1.34,432472.11,140888.49,229037.12,4350.92,58195.58,57595.58,0.0,600.0,conventional,2016,Sacramento +16,2016-09-04,1.32,472090.23,153239.51,247684.74,4575.47,66590.51,66372.28,2.95,215.28,conventional,2016,Sacramento +17,2016-08-28,1.33,421583.74,150624.23,225695.86,5537.68,39725.97,39589.51,5.9,130.56,conventional,2016,Sacramento +18,2016-08-21,1.27,456755.06,181120.39,217955.81,10652.53,47026.33,46759.13,8.87,258.33,conventional,2016,Sacramento +19,2016-08-14,1.19,512843.34,154532.23,299818.16,14039.56,44453.39,44453.39,0.0,0.0,conventional,2016,Sacramento +20,2016-08-07,1.37,453622.9,149607.29,239914.38,13055.76,51045.47,51032.16,13.31,0.0,conventional,2016,Sacramento +21,2016-07-31,1.4,466095.04,140605.4,255278.9,16262.28,53948.46,53547.82,10.36,390.28,conventional,2016,Sacramento +22,2016-07-24,1.42,450895.76,123359.06,253984.19,18157.79,55394.72,55394.72,0.0,0.0,conventional,2016,Sacramento +23,2016-07-17,1.31,471698.22,150251.55,237468.05,16900.69,67077.93,67069.07,8.86,0.0,conventional,2016,Sacramento +24,2016-07-10,1.26,489099.02,164624.96,231260.34,20004.7,73209.02,72950.16,8.86,250.0,conventional,2016,Sacramento +25,2016-07-03,1.24,565017.74,163405.3,303029.74,24533.11,74049.59,74049.59,0.0,0.0,conventional,2016,Sacramento +26,2016-06-26,1.25,464446.2,147821.55,228939.76,20249.04,67435.85,66812.24,0.0,623.61,conventional,2016,Sacramento +27,2016-06-19,1.2,508036.18,157354.92,276855.96,18508.95,55316.35,54341.35,0.0,975.0,conventional,2016,Sacramento +28,2016-06-12,1.15,501159.1,158599.19,263137.09,22373.0,57049.82,56671.26,13.14,365.42,conventional,2016,Sacramento +29,2016-06-05,1.17,521408.99,169293.85,269555.77,25618.94,56940.43,56921.44,18.99,0.0,conventional,2016,Sacramento +30,2016-05-29,1.18,489338.25,166777.3,252374.66,18823.94,51362.35,51287.11,4.39,70.85,conventional,2016,Sacramento +31,2016-05-22,1.1,488201.43,156352.97,253576.99,20549.75,57721.72,55547.83,0.0,2173.89,conventional,2016,Sacramento +32,2016-05-15,1.17,438309.86,137852.11,224842.97,27155.74,48459.04,48442.97,7.3,8.77,conventional,2016,Sacramento +33,2016-05-08,1.0,569710.14,171748.12,307614.01,19761.74,70586.27,69357.77,5.84,1222.66,conventional,2016,Sacramento +34,2016-05-01,1.06,481861.11,158376.45,251468.09,16678.02,55338.55,54906.9,106.65,325.0,conventional,2016,Sacramento +35,2016-04-24,1.01,529817.53,173546.78,281110.03,18901.93,56258.79,55978.23,0.0,280.56,conventional,2016,Sacramento +36,2016-04-17,1.15,448082.46,158323.88,210773.79,21378.51,57606.28,57218.47,61.42,326.39,conventional,2016,Sacramento +37,2016-04-10,1.15,459342.82,152169.98,227080.5,22372.96,57719.38,57376.68,20.48,322.22,conventional,2016,Sacramento +38,2016-04-03,1.05,488547.76,128563.45,284764.63,21875.92,53343.76,53306.03,37.73,0.0,conventional,2016,Sacramento +39,2016-03-27,1.18,458899.34,129399.89,248862.02,20119.22,60518.21,60509.5,8.71,0.0,conventional,2016,Sacramento +40,2016-03-20,1.18,404736.39,128297.4,203155.49,19762.52,53520.98,53491.92,26.15,2.91,conventional,2016,Sacramento +41,2016-03-13,1.14,441333.91,139305.36,227493.9,18205.15,56329.5,56309.19,0.0,20.31,conventional,2016,Sacramento +42,2016-03-06,1.13,443386.65,136469.26,216299.79,19505.98,71111.62,71097.1,5.81,8.71,conventional,2016,Sacramento +43,2016-02-28,1.13,439280.11,133683.82,213422.76,21516.31,70657.22,70657.22,0.0,0.0,conventional,2016,Sacramento +44,2016-02-21,1.09,419479.7,124241.28,219980.44,17229.28,58028.7,58022.88,5.82,0.0,conventional,2016,Sacramento +45,2016-02-14,1.04,447945.8,143312.43,207645.46,17758.15,79229.76,79168.62,17.47,43.67,conventional,2016,Sacramento +46,2016-02-07,0.91,796524.48,259382.37,419044.57,34235.86,83861.68,83768.44,55.36,37.88,conventional,2016,Sacramento +47,2016-01-31,1.13,434121.25,145374.67,209170.61,19002.36,60573.61,60564.87,5.83,2.91,conventional,2016,Sacramento +48,2016-01-24,1.11,409324.93,55327.2,278223.8,18007.03,57766.9,57734.83,32.07,0.0,conventional,2016,Sacramento +49,2016-01-17,1.11,437356.64,105468.97,256283.84,15555.85,60047.98,60045.08,0.0,2.9,conventional,2016,Sacramento +50,2016-01-10,1.08,434238.52,122362.72,229930.15,15444.14,66501.51,66489.91,11.6,0.0,conventional,2016,Sacramento +51,2016-01-03,0.96,512117.98,141161.62,301172.94,16053.59,53729.83,53729.83,0.0,0.0,conventional,2016,Sacramento +0,2016-12-25,0.89,473730.19,118030.19,191754.65,14438.25,149507.1,125660.66,22080.88,1765.56,conventional,2016,SanDiego +1,2016-12-18,0.9,437170.79,106000.4,161104.63,14145.04,155920.72,115858.84,38951.6,1110.28,conventional,2016,SanDiego +2,2016-12-11,0.81,505122.6,139066.79,205742.62,14736.56,145576.63,91917.03,53237.93,421.67,conventional,2016,SanDiego +3,2016-12-04,0.85,499144.04,214063.09,133318.88,15081.42,136680.65,128681.56,6275.12,1723.97,conventional,2016,SanDiego +4,2016-11-27,1.08,392291.47,160595.93,108871.8,12510.47,110313.27,98751.41,10626.32,935.54,conventional,2016,SanDiego +5,2016-11-20,1.25,369682.4,135337.58,120005.93,14499.34,99839.55,85261.69,14192.86,385.0,conventional,2016,SanDiego +6,2016-11-13,1.37,353828.79,120524.26,126173.1,18445.16,88686.27,74992.87,13258.4,435.0,conventional,2016,SanDiego +7,2016-11-06,1.68,292299.52,89364.77,128356.68,18569.63,56008.44,46336.06,8804.32,868.06,conventional,2016,SanDiego +8,2016-10-30,1.65,270941.97,88975.06,119080.04,14742.36,48144.51,41712.24,6337.0,95.27,conventional,2016,SanDiego +9,2016-10-23,1.32,366026.91,127391.58,119290.35,13215.77,106129.21,91095.15,13109.95,1924.11,conventional,2016,SanDiego +10,2016-10-16,1.27,443367.98,133020.51,139616.39,14087.91,156643.17,137002.06,16987.77,2653.34,conventional,2016,SanDiego +11,2016-10-09,1.25,473046.6,143507.8,142805.42,15433.41,171299.97,150537.8,20262.17,500.0,conventional,2016,SanDiego +12,2016-10-02,1.09,534801.53,209855.65,131355.15,17065.91,176524.82,159927.44,15812.38,785.0,conventional,2016,SanDiego +13,2016-09-25,1.05,566089.72,217679.82,136015.14,15808.76,196586.0,182692.61,12821.45,1071.94,conventional,2016,SanDiego +14,2016-09-18,1.18,457197.25,147766.51,139189.02,12716.14,157525.58,144313.97,11857.44,1354.17,conventional,2016,SanDiego +15,2016-09-11,1.08,498555.72,164685.23,144231.63,12611.44,177027.42,161784.53,15187.89,55.0,conventional,2016,SanDiego +16,2016-09-04,1.06,550756.68,186260.68,164050.31,12126.32,188319.37,177175.95,10942.03,201.39,conventional,2016,SanDiego +17,2016-08-28,0.9,620041.46,244514.34,145515.54,14632.5,215379.08,204056.33,10854.69,468.06,conventional,2016,SanDiego +18,2016-08-21,0.94,578630.39,227977.89,127819.4,13817.35,209015.75,194536.98,14380.16,98.61,conventional,2016,SanDiego +19,2016-08-14,1.19,499056.18,151194.91,164960.87,17324.53,165575.87,149733.92,15841.95,0.0,conventional,2016,SanDiego +20,2016-08-07,1.14,534955.59,164926.18,168655.71,17490.36,183883.34,163646.68,20236.66,0.0,conventional,2016,SanDiego +21,2016-07-31,1.16,522678.71,156893.23,167605.98,18152.4,180027.1,156662.69,23324.41,40.0,conventional,2016,SanDiego +22,2016-07-24,1.18,526657.41,168729.48,168789.85,22671.76,166466.32,147604.25,18132.07,730.0,conventional,2016,SanDiego +23,2016-07-17,1.12,519567.72,169871.43,161029.99,23096.26,165570.04,144223.93,20474.7,871.41,conventional,2016,SanDiego +24,2016-07-10,0.98,604082.24,186258.97,204704.57,20782.97,192335.73,171944.56,19129.5,1261.67,conventional,2016,SanDiego +25,2016-07-03,1.04,613005.97,182471.65,186674.1,29141.44,214718.78,192454.33,20162.58,2101.87,conventional,2016,SanDiego +26,2016-06-26,0.89,595917.64,196595.53,163147.87,28460.28,207713.96,189495.73,17484.47,733.76,conventional,2016,SanDiego +27,2016-06-19,0.98,573831.3,182110.33,160231.9,28933.99,202555.08,183995.42,17443.27,1116.39,conventional,2016,SanDiego +28,2016-06-12,0.88,596634.56,216162.48,144195.74,26931.15,209345.19,189261.8,19728.39,355.0,conventional,2016,SanDiego +29,2016-06-05,0.83,661159.79,242212.63,171998.98,31852.41,215095.77,175831.59,39014.18,250.0,conventional,2016,SanDiego +30,2016-05-29,0.92,576543.05,183028.56,168419.71,32042.58,193052.2,160356.37,31715.55,980.28,conventional,2016,SanDiego +31,2016-05-22,0.78,569349.05,157623.84,205497.08,20406.29,185821.84,154279.25,30337.59,1205.0,conventional,2016,SanDiego +32,2016-05-15,0.86,553706.74,196229.51,169362.37,19467.77,168647.09,133555.36,35091.73,0.0,conventional,2016,SanDiego +33,2016-05-08,0.78,649503.23,210276.04,194613.6,24705.68,219907.91,82058.24,137623.28,226.39,conventional,2016,SanDiego +34,2016-05-01,0.68,679213.01,221162.07,221265.53,23602.94,213182.47,57334.52,155614.62,233.33,conventional,2016,SanDiego +35,2016-04-24,0.73,623486.79,209423.33,193980.26,22783.03,197300.17,128655.92,68644.25,0.0,conventional,2016,SanDiego +36,2016-04-17,0.8,621350.28,219230.99,155882.34,22416.32,223820.63,199325.34,24495.29,0.0,conventional,2016,SanDiego +37,2016-04-10,0.84,589694.67,190244.17,158653.72,21394.47,219402.31,175064.61,44337.7,0.0,conventional,2016,SanDiego +38,2016-04-03,0.9,527115.47,165482.1,148671.87,25760.64,187200.86,136889.73,50311.13,0.0,conventional,2016,SanDiego +39,2016-03-27,0.8,615580.7,183067.39,162858.06,23076.81,246578.44,180500.59,66077.85,0.0,conventional,2016,SanDiego +40,2016-03-20,0.76,649914.07,159593.34,189449.0,21444.94,279426.79,228122.01,51304.78,0.0,conventional,2016,SanDiego +41,2016-03-13,0.84,567953.21,151219.73,139500.87,23806.29,253426.32,203378.55,50047.77,0.0,conventional,2016,SanDiego +42,2016-03-06,0.81,627397.71,160581.05,156090.46,22297.72,288428.48,218488.21,69940.27,0.0,conventional,2016,SanDiego +43,2016-02-28,0.8,585693.61,143189.43,144667.93,25138.48,272697.77,201892.8,70804.97,0.0,conventional,2016,SanDiego +44,2016-02-21,0.86,592197.58,165757.19,159025.48,19779.65,247635.26,206855.6,40779.66,0.0,conventional,2016,SanDiego +45,2016-02-14,0.79,595414.77,173874.57,140454.28,22029.85,259056.07,161727.63,97328.44,0.0,conventional,2016,SanDiego +46,2016-02-07,0.61,917660.79,212980.89,302238.82,23694.84,378746.24,292228.73,86517.51,0.0,conventional,2016,SanDiego +47,2016-01-31,0.72,643326.66,174249.75,192217.79,18036.77,258822.35,219631.97,39190.38,0.0,conventional,2016,SanDiego +48,2016-01-24,0.85,564637.66,104831.87,157896.39,21607.39,280302.01,238110.78,42191.23,0.0,conventional,2016,SanDiego +49,2016-01-17,0.79,561712.98,164565.34,190461.21,19123.62,187562.81,141951.66,45611.15,0.0,conventional,2016,SanDiego +50,2016-01-10,0.81,578610.94,155537.61,153030.46,21523.37,248519.5,144796.06,103723.44,0.0,conventional,2016,SanDiego +51,2016-01-03,0.65,719749.77,204145.28,256691.54,22617.47,236295.48,138815.05,97480.43,0.0,conventional,2016,SanDiego +0,2016-12-25,1.18,690027.33,164595.96,462872.97,2525.58,60032.82,52277.99,7459.83,295.0,conventional,2016,SanFrancisco +1,2016-12-18,1.22,643518.28,173909.85,401462.31,3063.29,65082.83,52370.05,11823.61,889.17,conventional,2016,SanFrancisco +2,2016-12-11,1.29,655428.34,134467.78,447891.73,2861.59,70207.24,58673.9,10578.62,954.72,conventional,2016,SanFrancisco +3,2016-12-04,1.52,542857.36,159831.4,310592.77,2249.75,70183.44,67734.87,1143.85,1304.72,conventional,2016,SanFrancisco +4,2016-11-27,1.75,488378.1,118187.03,297882.68,2393.35,69915.04,67676.02,1584.02,655.0,conventional,2016,SanFrancisco +5,2016-11-20,1.89,510752.32,120582.11,308963.91,2239.28,78967.02,74502.41,1192.67,3271.94,conventional,2016,SanFrancisco +6,2016-11-13,1.94,506543.8,118820.99,308678.33,3208.3,75836.18,74569.34,976.56,290.28,conventional,2016,SanFrancisco +7,2016-11-06,2.07,492504.81,109080.72,304926.27,3840.19,74657.63,74025.26,103.2,529.17,conventional,2016,SanFrancisco +8,2016-10-30,2.2,477937.8,130025.36,285048.2,3399.09,59465.15,57223.44,269.21,1972.5,conventional,2016,SanFrancisco +9,2016-10-23,1.87,411873.66,133676.77,178795.94,4817.03,94583.92,89533.1,2966.65,2084.17,conventional,2016,SanFrancisco +10,2016-10-16,1.99,590535.06,141221.01,362859.22,7787.57,78667.26,74349.15,3259.5,1058.61,conventional,2016,SanFrancisco +11,2016-10-09,1.82,673082.26,163264.54,409307.88,9771.72,90738.12,89663.48,1055.05,19.59,conventional,2016,SanFrancisco +12,2016-10-02,1.52,731993.57,196085.62,421421.2,10626.67,103860.08,101544.87,1167.15,1148.06,conventional,2016,SanFrancisco +13,2016-09-25,1.43,860546.65,210602.19,549378.28,7878.79,92687.39,89785.42,1571.69,1330.28,conventional,2016,SanFrancisco +14,2016-09-18,1.5,813575.88,173635.07,549722.44,9254.46,80963.91,75829.93,3098.42,2035.56,conventional,2016,SanFrancisco +15,2016-09-11,1.43,862732.45,222298.01,533967.64,11292.83,95173.97,94338.95,691.96,143.06,conventional,2016,SanFrancisco +16,2016-09-04,1.47,850104.12,203090.38,552428.86,10836.96,83747.92,82334.2,962.33,451.39,conventional,2016,SanFrancisco +17,2016-08-28,1.38,812410.86,258578.88,469333.14,13522.19,70976.65,68675.23,990.31,1311.11,conventional,2016,SanFrancisco +18,2016-08-21,1.28,825338.15,311234.33,415962.15,24855.18,73286.49,70853.19,856.91,1576.39,conventional,2016,SanFrancisco +19,2016-08-14,1.03,1114834.28,266260.92,757100.85,31009.27,60463.24,58400.39,900.35,1162.5,conventional,2016,SanFrancisco +20,2016-08-07,1.49,753570.45,189861.8,463372.96,28987.5,71348.19,70181.66,869.31,297.22,conventional,2016,SanFrancisco +21,2016-07-31,1.52,814505.22,185496.96,513372.1,42846.42,72789.74,71153.86,948.38,687.5,conventional,2016,SanFrancisco +22,2016-07-24,1.54,817357.28,158290.86,527450.53,56349.57,75266.32,72853.77,1013.94,1398.61,conventional,2016,SanFrancisco +23,2016-07-17,1.46,804071.94,200748.22,481290.68,43042.94,78990.1,77461.44,106.44,1422.22,conventional,2016,SanFrancisco +24,2016-07-10,1.4,842731.76,249271.4,458731.12,43916.46,90812.78,88916.37,689.47,1206.94,conventional,2016,SanFrancisco +25,2016-07-03,1.41,891917.15,202576.49,546096.5,54358.08,88886.08,86921.08,945.56,1019.44,conventional,2016,SanFrancisco +26,2016-06-26,1.5,749554.87,194824.52,411086.22,55056.0,88588.13,86438.13,1044.44,1105.56,conventional,2016,SanFrancisco +27,2016-06-19,1.44,800921.02,210315.55,459979.37,43427.34,87198.76,85053.17,1080.31,1065.28,conventional,2016,SanFrancisco +28,2016-06-12,1.45,770382.05,228294.75,418903.64,48922.15,74261.51,72937.16,1021.83,302.52,conventional,2016,SanFrancisco +29,2016-06-05,1.35,899154.46,278152.57,481323.79,53447.03,86231.07,85119.34,697.78,413.95,conventional,2016,SanFrancisco +30,2016-05-29,1.34,891069.03,304281.47,462079.65,52673.73,72034.18,70154.87,676.56,1202.75,conventional,2016,SanFrancisco +31,2016-05-22,1.31,817923.28,247488.87,416811.55,70753.98,82868.88,80974.56,945.43,948.89,conventional,2016,SanFrancisco +32,2016-05-15,1.37,772064.79,201205.64,438490.13,61090.32,71278.7,69780.99,1042.15,455.56,conventional,2016,SanFrancisco +33,2016-05-08,1.06,961334.65,259594.33,569011.84,49424.67,83303.81,80879.28,885.92,1538.61,conventional,2016,SanFrancisco +34,2016-05-01,0.99,1001227.21,355140.93,534187.25,39101.1,72797.93,71485.43,898.61,413.89,conventional,2016,SanFrancisco +35,2016-04-24,1.0,1017425.89,313239.31,570669.6,55668.13,77848.85,76195.48,883.93,769.44,conventional,2016,SanFrancisco +36,2016-04-17,1.39,786422.89,209130.77,415099.08,76966.69,85226.35,83707.21,901.08,618.06,conventional,2016,SanFrancisco +37,2016-04-10,1.38,765652.36,216993.87,399403.75,61241.91,88012.83,85683.08,894.49,1435.26,conventional,2016,SanFrancisco +38,2016-04-03,1.12,849739.84,166177.24,546227.92,54166.57,83168.11,82300.09,842.81,25.21,conventional,2016,SanFrancisco +39,2016-03-27,1.47,716020.43,167887.53,409135.78,46243.39,92753.73,91907.38,830.59,15.76,conventional,2016,SanFrancisco +40,2016-03-20,1.4,739577.85,193704.13,416863.96,46189.84,82819.92,81984.18,820.0,15.74,conventional,2016,SanFrancisco +41,2016-03-13,1.41,714002.3,192002.8,383557.6,52459.24,85982.66,85202.82,726.43,53.41,conventional,2016,SanFrancisco +42,2016-03-06,1.29,817240.38,217965.57,441193.39,62391.95,95689.47,94788.57,797.45,103.45,conventional,2016,SanFrancisco +43,2016-02-28,1.29,824092.61,238542.45,445285.06,39537.9,100727.2,99966.0,745.56,15.64,conventional,2016,SanFrancisco +44,2016-02-21,1.15,799826.02,178438.97,509199.72,41240.25,70947.08,70255.21,663.8,28.07,conventional,2016,SanFrancisco +45,2016-02-14,1.34,696959.32,200199.01,357790.26,39859.46,99110.59,98394.37,688.22,28.0,conventional,2016,SanFrancisco +46,2016-02-07,0.89,1355047.15,333064.46,858526.37,72545.79,90910.53,90251.06,619.09,40.38,conventional,2016,SanFrancisco +47,2016-01-31,1.27,805039.06,236160.56,431120.43,57834.69,79923.38,79401.44,382.4,139.54,conventional,2016,SanFrancisco +48,2016-01-24,1.05,844417.47,115036.6,621996.45,41235.01,66149.41,65970.6,166.4,12.41,conventional,2016,SanFrancisco +49,2016-01-17,1.24,732860.83,141712.96,474840.29,36599.56,79708.02,79192.95,508.86,6.21,conventional,2016,SanFrancisco +50,2016-01-10,1.21,765839.95,144506.94,487614.57,41093.96,92624.48,92023.17,601.31,0.0,conventional,2016,SanFrancisco +51,2016-01-03,0.93,918798.74,204501.46,593429.62,32339.95,88527.71,88155.48,372.23,0.0,conventional,2016,SanFrancisco +0,2016-12-25,1.17,475143.56,64749.6,143841.64,205.26,266347.06,265938.42,156.02,252.62,conventional,2016,Seattle +1,2016-12-18,1.09,459322.74,67730.61,132123.37,254.31,259214.45,258720.25,215.6,278.6,conventional,2016,Seattle +2,2016-12-11,0.88,809403.75,69913.65,207213.83,401.33,531874.94,529839.56,416.21,1619.17,conventional,2016,Seattle +3,2016-12-04,1.23,531803.4,75095.01,131322.74,196.84,325188.81,324725.56,191.83,271.42,conventional,2016,Seattle +4,2016-11-27,1.45,383268.86,44831.05,120317.61,388.68,217731.52,217343.07,182.8,205.65,conventional,2016,Seattle +5,2016-11-20,1.41,447760.4,56982.28,128919.02,270.62,261588.48,260780.1,648.16,160.22,conventional,2016,Seattle +6,2016-11-13,1.43,472868.46,61375.16,152069.42,317.93,259105.95,257996.24,284.07,825.64,conventional,2016,Seattle +7,2016-11-06,1.43,446970.37,58648.4,130208.79,528.77,257584.41,256977.65,241.61,365.15,conventional,2016,Seattle +8,2016-10-30,1.42,368056.21,52130.99,108922.37,1018.01,205984.84,205195.57,334.46,454.81,conventional,2016,Seattle +9,2016-10-23,1.12,619599.06,69252.3,212504.79,483.3,337358.67,335967.69,319.79,1071.19,conventional,2016,Seattle +10,2016-10-16,1.2,618367.26,94032.78,146878.16,452.03,377004.29,369370.77,7512.55,120.97,conventional,2016,Seattle +11,2016-10-09,1.23,556874.5,74612.15,138352.51,2177.05,341732.79,309380.23,31923.27,429.29,conventional,2016,Seattle +12,2016-10-02,0.89,917139.67,73071.87,190566.13,3182.66,650319.01,361894.56,287932.44,492.01,conventional,2016,Seattle +13,2016-09-25,1.03,655426.45,101292.91,130310.43,3243.02,420580.09,304494.27,115510.78,575.04,conventional,2016,Seattle +14,2016-09-18,1.03,586212.19,121884.72,150306.52,2273.45,311747.5,264786.31,46367.39,593.8,conventional,2016,Seattle +15,2016-09-11,1.0,644049.31,154068.23,167761.1,2713.1,319506.88,319298.96,135.14,72.78,conventional,2016,Seattle +16,2016-09-04,1.13,563852.38,132309.0,141811.18,2493.01,287239.19,286871.24,129.11,238.84,conventional,2016,Seattle +17,2016-08-28,1.08,592604.21,114777.38,174074.05,2493.89,301258.89,300809.11,141.03,308.75,conventional,2016,Seattle +18,2016-08-21,1.11,605652.82,111362.57,140739.28,2503.09,351047.88,350689.25,135.1,223.53,conventional,2016,Seattle +19,2016-08-14,1.14,591638.12,103908.49,158811.63,2368.4,326549.6,326095.86,88.97,364.77,conventional,2016,Seattle +20,2016-08-07,1.11,619209.25,101060.89,192576.48,2583.85,322988.03,322390.13,143.28,454.62,conventional,2016,Seattle +21,2016-07-31,1.12,595856.48,93422.28,157723.11,2598.83,342112.26,341834.97,241.87,35.42,conventional,2016,Seattle +22,2016-07-24,1.1,581023.47,85459.65,163758.14,1555.09,330250.59,329976.05,114.66,159.88,conventional,2016,Seattle +23,2016-07-17,1.03,639853.23,94220.24,165714.0,1624.49,378294.5,378187.17,78.06,29.27,conventional,2016,Seattle +24,2016-07-10,1.11,628610.41,103864.49,163811.75,6528.3,354405.87,354205.83,146.27,53.77,conventional,2016,Seattle +25,2016-07-03,1.1,663580.48,101636.27,179739.71,10770.71,371433.79,371093.38,225.23,115.18,conventional,2016,Seattle +26,2016-06-26,1.03,638550.37,91565.19,174576.32,12225.64,360183.22,359260.77,313.9,608.55,conventional,2016,Seattle +27,2016-06-19,0.97,677710.31,101860.03,193696.31,11487.83,370666.14,369495.52,305.75,864.87,conventional,2016,Seattle +28,2016-06-12,1.01,666340.59,108550.27,178700.42,12433.23,366656.67,365830.13,512.07,314.47,conventional,2016,Seattle +29,2016-06-05,0.86,866343.38,97146.75,262684.03,13268.56,493244.04,478959.58,13577.66,706.8,conventional,2016,Seattle +30,2016-05-29,0.87,771235.53,92529.88,210394.57,10676.49,457634.59,443121.96,14344.74,167.89,conventional,2016,Seattle +31,2016-05-22,0.87,726064.91,92633.9,212729.2,10453.62,410248.19,324711.11,85148.99,388.09,conventional,2016,Seattle +32,2016-05-15,0.83,844349.33,87749.32,218295.82,12759.69,525544.5,523711.87,1383.28,449.35,conventional,2016,Seattle +33,2016-05-08,0.82,1007800.54,88762.21,334254.33,11093.78,573690.22,552847.39,19202.66,1640.17,conventional,2016,Seattle +34,2016-05-01,0.82,858037.45,91136.13,271005.05,11463.75,484432.52,458041.08,25900.73,490.71,conventional,2016,Seattle +35,2016-04-24,0.88,752138.28,86998.66,222808.84,12051.07,430279.71,429116.57,197.83,965.31,conventional,2016,Seattle +36,2016-04-17,0.84,862450.87,76011.2,252920.78,10371.62,523147.27,511071.78,11419.5,655.99,conventional,2016,Seattle +37,2016-04-10,0.93,728447.49,125383.51,228654.14,9317.8,365092.04,363375.18,150.02,1566.84,conventional,2016,Seattle +38,2016-04-03,0.86,793187.83,111241.96,191068.36,9773.45,481104.06,480649.01,107.33,347.72,conventional,2016,Seattle +39,2016-03-27,0.85,781581.62,91025.18,192539.97,10623.82,487392.65,486972.2,87.14,333.31,conventional,2016,Seattle +40,2016-03-20,1.02,596110.62,76059.35,193206.73,9181.87,317662.67,317318.4,61.11,283.16,conventional,2016,Seattle +41,2016-03-13,0.94,712808.08,71766.68,189254.12,10517.64,441269.64,440777.16,139.46,353.02,conventional,2016,Seattle +42,2016-03-06,0.88,782395.12,101164.1,203599.2,8332.9,469298.92,468419.0,515.93,363.99,conventional,2016,Seattle +43,2016-02-28,0.91,737516.16,96852.95,180912.17,7587.39,452163.65,451747.01,116.59,300.05,conventional,2016,Seattle +44,2016-02-21,0.86,755726.36,56523.09,215390.45,8476.06,475336.76,474543.29,391.17,402.3,conventional,2016,Seattle +45,2016-02-14,0.98,593651.59,105339.16,152777.85,8215.67,327318.91,326841.0,284.73,193.18,conventional,2016,Seattle +46,2016-02-07,0.75,1040955.47,110675.58,347695.79,6322.02,576262.08,573866.81,1573.35,821.92,conventional,2016,Seattle +47,2016-01-31,0.98,666670.45,75852.78,190462.67,8910.2,391444.8,390708.62,174.35,561.83,conventional,2016,Seattle +48,2016-01-24,0.92,726078.64,100315.41,253246.5,7343.76,365172.97,363400.35,1682.71,89.91,conventional,2016,Seattle +49,2016-01-17,0.94,788935.31,155213.14,203618.21,8794.85,421309.11,418854.59,2393.53,60.99,conventional,2016,Seattle +50,2016-01-10,0.86,831911.78,177583.68,272041.11,7552.84,374734.15,374204.91,173.51,355.73,conventional,2016,Seattle +51,2016-01-03,0.89,814295.85,179151.58,290450.07,16134.86,328559.34,327227.91,419.77,911.66,conventional,2016,Seattle +0,2016-12-25,1.02,308342.51,121219.4,62511.84,2501.78,122109.49,72546.57,49562.92,0.0,conventional,2016,SouthCarolina +1,2016-12-18,1.07,269690.96,103487.49,56975.33,2551.31,106676.83,62581.88,44094.95,0.0,conventional,2016,SouthCarolina +2,2016-12-11,1.2,243555.26,106629.29,42052.22,2563.93,92309.82,60969.76,31340.06,0.0,conventional,2016,SouthCarolina +3,2016-12-04,1.09,304040.1,122448.61,64899.79,3039.45,113652.25,56900.14,56728.78,23.33,conventional,2016,SouthCarolina +4,2016-11-27,1.33,229072.3,90090.62,40561.32,2813.23,95607.13,65375.36,30153.44,78.33,conventional,2016,SouthCarolina +5,2016-11-20,1.34,246915.39,105060.77,37789.02,4949.78,99115.82,65248.27,33444.22,423.33,conventional,2016,SouthCarolina +6,2016-11-13,1.41,255288.43,127839.06,40770.91,8259.59,78418.87,42376.82,35957.05,85.0,conventional,2016,SouthCarolina +7,2016-11-06,1.5,222378.08,97077.73,42624.62,9363.75,73311.98,39593.75,33718.23,0.0,conventional,2016,SouthCarolina +8,2016-10-30,1.43,227993.9,99127.2,45338.87,9096.43,74431.4,40257.91,34173.49,0.0,conventional,2016,SouthCarolina +9,2016-10-23,1.4,260446.46,128648.8,52740.63,6749.46,72307.57,42484.87,29822.7,0.0,conventional,2016,SouthCarolina +10,2016-10-16,1.3,281240.11,117958.34,64027.95,6111.89,93141.93,49717.85,43424.08,0.0,conventional,2016,SouthCarolina +11,2016-10-09,1.32,262764.71,109192.13,56453.75,4235.9,92882.93,57335.43,35547.5,0.0,conventional,2016,SouthCarolina +12,2016-10-02,1.3,301001.94,128824.7,66171.5,7203.61,98802.13,63691.6,34973.03,137.5,conventional,2016,SouthCarolina +13,2016-09-25,1.25,327724.02,148997.66,68555.28,6099.85,104071.23,73929.02,30142.21,0.0,conventional,2016,SouthCarolina +14,2016-09-18,1.12,331549.04,153616.97,62717.83,5940.65,109273.59,75354.15,33919.44,0.0,conventional,2016,SouthCarolina +15,2016-09-11,1.08,341887.56,156750.7,59265.51,6695.14,119176.21,94007.45,25095.15,73.61,conventional,2016,SouthCarolina +16,2016-09-04,1.03,419927.05,228635.99,60398.43,8324.56,122568.07,89224.3,33338.77,5.0,conventional,2016,SouthCarolina +17,2016-08-28,1.11,352297.98,197155.13,48370.23,6799.65,99972.97,82906.46,17066.51,0.0,conventional,2016,SouthCarolina +18,2016-08-21,1.08,381549.32,193878.0,58093.31,8868.16,120709.85,104376.41,16333.44,0.0,conventional,2016,SouthCarolina +19,2016-08-14,1.11,389639.12,198569.92,67082.24,10231.05,113755.91,86861.67,26894.24,0.0,conventional,2016,SouthCarolina +20,2016-08-07,1.17,362625.87,183405.85,59165.06,12579.44,107475.52,83535.74,23894.78,45.0,conventional,2016,SouthCarolina +21,2016-07-31,1.18,344490.91,156886.45,67074.62,12940.85,107588.99,83699.62,23134.37,755.0,conventional,2016,SouthCarolina +22,2016-07-24,1.18,336673.77,143275.08,81763.6,15147.97,96487.12,71699.09,22356.92,2431.11,conventional,2016,SouthCarolina +23,2016-07-17,1.17,336050.16,144883.03,77242.5,14172.92,99751.71,75310.1,24436.61,5.0,conventional,2016,SouthCarolina +24,2016-07-10,1.08,389300.41,168421.0,87043.24,21153.33,112682.84,89946.17,22731.67,5.0,conventional,2016,SouthCarolina +25,2016-07-03,0.95,515792.87,214287.07,125503.35,20517.76,155484.69,116583.25,38901.44,0.0,conventional,2016,SouthCarolina +26,2016-06-26,1.07,367778.6,150191.51,90300.07,18403.06,108883.96,90996.76,17790.53,96.67,conventional,2016,SouthCarolina +27,2016-06-19,0.97,451741.89,211554.56,100652.86,20140.13,119394.34,85874.87,31652.8,1866.67,conventional,2016,SouthCarolina +28,2016-06-12,1.04,357902.32,161172.25,80778.03,19782.06,96169.98,73085.52,17292.79,5791.67,conventional,2016,SouthCarolina +29,2016-06-05,0.94,416168.39,186493.48,103324.3,16909.95,109440.66,66829.1,37354.89,5256.67,conventional,2016,SouthCarolina +30,2016-05-29,0.97,441398.16,188092.93,120644.64,15039.71,117620.88,63637.85,50673.03,3310.0,conventional,2016,SouthCarolina +31,2016-05-22,1.04,343576.29,135034.4,98568.31,6909.7,103063.88,59371.64,40067.82,3624.42,conventional,2016,SouthCarolina +32,2016-05-15,0.89,422276.07,153126.16,137072.54,6161.52,125915.85,69081.36,56332.31,502.18,conventional,2016,SouthCarolina +33,2016-05-08,0.82,504149.45,216508.21,132765.13,6506.62,148369.49,95500.81,52832.8,35.88,conventional,2016,SouthCarolina +34,2016-05-01,0.76,591962.95,251273.9,163222.99,6281.64,171184.42,100785.67,70398.75,0.0,conventional,2016,SouthCarolina +35,2016-04-24,0.93,420066.9,151185.27,146951.42,6258.02,115672.19,61890.01,53782.18,0.0,conventional,2016,SouthCarolina +36,2016-04-17,1.01,370690.55,153725.68,109475.73,5464.93,102024.21,67727.91,34296.3,0.0,conventional,2016,SouthCarolina +37,2016-04-10,0.96,397990.96,158605.28,126384.55,6056.81,106944.32,57960.91,48983.41,0.0,conventional,2016,SouthCarolina +38,2016-04-03,1.05,340564.79,150247.08,97713.54,6435.41,86168.76,63628.3,22540.46,0.0,conventional,2016,SouthCarolina +39,2016-03-27,1.07,315023.95,136387.5,91995.56,7331.32,79309.57,61407.01,17902.56,0.0,conventional,2016,SouthCarolina +40,2016-03-20,1.07,331531.06,149730.39,94541.56,8317.29,78941.82,60250.9,18690.92,0.0,conventional,2016,SouthCarolina +41,2016-03-13,0.96,414943.26,175358.73,127186.75,8978.94,103418.84,65808.71,37604.61,5.52,conventional,2016,SouthCarolina +42,2016-03-06,1.06,325786.78,156334.57,90668.09,8137.83,70646.29,52684.66,17961.63,0.0,conventional,2016,SouthCarolina +43,2016-02-28,0.93,387740.23,178406.7,112748.39,7038.97,89546.17,53432.55,36113.62,0.0,conventional,2016,SouthCarolina +44,2016-02-21,1.04,302654.13,145774.22,82586.6,7361.72,66931.59,49804.83,17126.76,0.0,conventional,2016,SouthCarolina +45,2016-02-14,0.91,342704.71,180057.56,81396.58,6594.27,74656.3,50158.17,24498.13,0.0,conventional,2016,SouthCarolina +46,2016-02-07,0.69,593759.78,307135.68,151185.73,13083.51,122354.86,61003.56,61340.53,10.77,conventional,2016,SouthCarolina +47,2016-01-31,1.01,312455.27,159088.93,88740.6,9166.73,55459.01,38452.05,17006.96,0.0,conventional,2016,SouthCarolina +48,2016-01-24,0.95,317032.31,145616.86,92970.97,9676.68,68767.8,43452.47,25315.33,0.0,conventional,2016,SouthCarolina +49,2016-01-17,1.05,287599.16,149490.32,74436.77,9610.22,54061.85,42971.35,11090.5,0.0,conventional,2016,SouthCarolina +50,2016-01-10,0.98,322434.61,171275.87,76296.7,9959.86,64902.18,42725.71,22176.47,0.0,conventional,2016,SouthCarolina +51,2016-01-03,1.03,319228.46,195469.55,64802.02,10726.18,48230.71,39155.81,9074.9,0.0,conventional,2016,SouthCarolina +0,2016-12-25,0.79,5630041.84,2676152.87,1320133.68,20052.89,1613702.4,1288631.84,301809.49,23261.07,conventional,2016,SouthCentral +1,2016-12-18,0.72,5483207.89,2789696.38,1116482.22,15771.64,1561257.65,1144739.27,383503.55,33014.83,conventional,2016,SouthCentral +2,2016-12-11,0.76,5031206.93,2633723.49,987150.16,18326.63,1392006.65,939911.81,435548.82,16546.02,conventional,2016,SouthCentral +3,2016-12-04,0.76,5584114.56,3146435.87,1023317.43,18795.24,1395566.02,1039669.75,344663.64,11232.63,conventional,2016,SouthCentral +4,2016-11-27,0.93,4064847.35,2342116.27,747938.85,14619.93,960172.3,817184.54,133945.12,9042.64,conventional,2016,SouthCentral +5,2016-11-20,1.06,4150510.67,2351202.94,871661.63,16553.22,911092.88,735263.86,173417.7,2411.32,conventional,2016,SouthCentral +6,2016-11-13,1.11,4224677.32,2338883.91,971219.17,22128.14,892446.1,710489.09,180468.83,1488.18,conventional,2016,SouthCentral +7,2016-11-06,1.16,4214624.13,2443877.24,789647.7,16494.71,964604.48,771794.04,191200.76,1609.68,conventional,2016,SouthCentral +8,2016-10-30,1.19,3733135.22,1917984.65,802089.74,19653.3,993407.53,733102.01,242672.72,17632.8,conventional,2016,SouthCentral +9,2016-10-23,1.09,4477594.56,2043310.73,1016610.9,20588.09,1397084.84,1228547.91,140925.06,27611.87,conventional,2016,SouthCentral +10,2016-10-16,1.03,4967651.41,2588086.77,984551.0,18419.04,1376594.6,1088286.99,263848.4,24459.21,conventional,2016,SouthCentral +11,2016-10-09,1.0,5416591.81,2650640.81,1376612.19,32866.62,1356472.19,1118452.81,222546.73,15472.65,conventional,2016,SouthCentral +12,2016-10-02,1.01,5006659.75,2488198.8,1053485.59,17352.41,1447622.95,1091904.2,338402.33,17316.42,conventional,2016,SouthCentral +13,2016-09-25,0.98,5344837.49,2674487.17,1129009.2,15830.87,1525510.25,1094936.72,409425.49,21148.04,conventional,2016,SouthCentral +14,2016-09-18,0.86,6130653.55,3357771.2,1103971.44,16478.55,1652432.36,1446564.1,189481.99,16386.27,conventional,2016,SouthCentral +15,2016-09-11,0.82,6236078.55,3652516.49,1003811.64,15092.69,1564657.73,1379670.23,173092.74,11894.76,conventional,2016,SouthCentral +16,2016-09-04,0.78,6802635.25,3749548.89,1321331.51,18544.3,1713210.55,1488491.11,188922.83,35796.61,conventional,2016,SouthCentral +17,2016-08-28,0.84,5775721.7,3166009.65,1144644.7,17935.73,1447131.62,1259357.5,142470.58,45303.54,conventional,2016,SouthCentral +18,2016-08-21,0.87,5682046.61,3137489.03,1105902.29,25630.41,1413024.88,1245189.33,153644.22,14191.33,conventional,2016,SouthCentral +19,2016-08-14,0.94,5385035.37,3062124.27,1103047.73,21617.07,1198246.3,1034294.77,157809.8,6141.73,conventional,2016,SouthCentral +20,2016-08-07,0.93,5647940.41,3263106.78,1162455.32,24523.4,1197854.91,1035007.77,149412.38,13434.76,conventional,2016,SouthCentral +21,2016-07-31,0.98,5130900.02,2925166.29,1026989.3,25254.69,1153489.74,969970.7,169617.21,13901.83,conventional,2016,SouthCentral +22,2016-07-24,0.97,5528475.32,3073632.24,1095930.61,29835.26,1329077.21,1169824.57,105002.77,54249.87,conventional,2016,SouthCentral +23,2016-07-17,0.94,5449441.63,2950117.14,1052370.81,44558.77,1402394.91,1297883.28,87850.35,16661.28,conventional,2016,SouthCentral +24,2016-07-10,0.91,5646460.01,3069816.49,1012709.72,189691.87,1374241.93,1233354.94,92635.95,48251.04,conventional,2016,SouthCentral +25,2016-07-03,0.91,6494533.3,3114586.75,1226469.49,522836.75,1630640.31,1398829.45,124715.63,107095.23,conventional,2016,SouthCentral +26,2016-06-26,0.89,6046264.46,3148031.62,995499.7,425639.83,1477093.31,1226901.91,190503.41,59687.99,conventional,2016,SouthCentral +27,2016-06-19,0.89,6005535.29,3271758.23,1118582.85,346244.07,1268950.14,1062854.49,167590.92,38504.73,conventional,2016,SouthCentral +28,2016-06-12,0.85,6195284.67,3356663.69,1079764.01,423778.7,1335078.27,964900.17,307836.87,62341.23,conventional,2016,SouthCentral +29,2016-06-05,0.83,6351400.69,3351332.61,1281791.5,355042.24,1363234.34,976198.08,325421.53,61614.73,conventional,2016,SouthCentral +30,2016-05-29,0.8,6239677.27,3270603.2,1322066.02,347794.01,1299214.04,1034533.11,229576.24,35104.69,conventional,2016,SouthCentral +31,2016-05-22,0.72,6680323.25,3128527.61,1539488.77,537748.12,1474558.75,1071647.44,348148.3,54763.01,conventional,2016,SouthCentral +32,2016-05-15,0.73,6728120.77,3283251.25,1441163.07,459077.76,1544628.69,1146035.44,389114.15,9479.1,conventional,2016,SouthCentral +33,2016-05-08,0.72,7281887.35,3666928.36,1367080.84,697833.12,1550045.03,1225103.02,315129.42,9812.59,conventional,2016,SouthCentral +34,2016-05-01,0.71,6953488.71,3400699.04,1559296.24,398632.2,1594861.23,1215673.04,368204.58,10983.61,conventional,2016,SouthCentral +35,2016-04-24,0.7,6893900.54,3348754.08,1465437.6,564146.38,1515562.48,1161263.73,346494.76,7803.99,conventional,2016,SouthCentral +36,2016-04-17,0.71,6657073.54,3651444.14,1058769.74,617895.6,1328964.06,1124257.15,195845.36,8861.55,conventional,2016,SouthCentral +37,2016-04-10,0.73,6414263.17,3665847.47,870524.0,556972.27,1320919.43,1124849.63,183288.76,12781.04,conventional,2016,SouthCentral +38,2016-04-03,0.74,6154503.04,3321835.5,1083779.43,649669.1,1099219.01,896073.07,198721.79,4424.15,conventional,2016,SouthCentral +39,2016-03-27,0.77,6553308.82,3137633.27,1507245.05,660825.04,1247605.46,951743.56,288346.1,7515.8,conventional,2016,SouthCentral +40,2016-03-20,0.77,6276764.8,3064743.62,1411796.91,653141.71,1147082.56,882135.1,256004.47,8942.99,conventional,2016,SouthCentral +41,2016-03-13,0.79,5894070.33,3228470.66,1083003.8,698856.6,883739.27,731907.2,144961.72,6870.35,conventional,2016,SouthCentral +42,2016-03-06,0.78,5848140.87,3596735.53,903361.32,390174.57,957869.45,822317.08,128134.68,7417.69,conventional,2016,SouthCentral +43,2016-02-28,0.77,5698454.09,3528191.7,930352.56,337159.88,902749.95,791893.15,104430.43,6426.37,conventional,2016,SouthCentral +44,2016-02-21,0.82,5108381.41,2872173.1,1020821.92,423920.15,791466.24,658990.14,124051.73,8424.37,conventional,2016,SouthCentral +45,2016-02-14,0.7,6349601.68,3382976.58,1416070.96,718463.59,832090.55,662650.24,147944.33,21495.98,conventional,2016,SouthCentral +46,2016-02-07,0.7,7606351.8,3823016.0,1930304.29,804558.25,1048473.26,756322.54,197394.7,94756.02,conventional,2016,SouthCentral +47,2016-01-31,0.79,5850128.4,3003442.75,1462783.11,521213.33,862689.21,623663.62,133279.26,105746.33,conventional,2016,SouthCentral +48,2016-01-24,0.94,3898235.29,1193349.63,1530143.69,245808.96,928933.01,705848.56,159609.68,63474.77,conventional,2016,SouthCentral +49,2016-01-17,0.81,5735627.03,2836077.92,1756468.7,373209.85,769870.56,621920.46,136801.89,11148.21,conventional,2016,SouthCentral +50,2016-01-10,0.84,5647635.02,2683172.73,1900834.74,263562.26,800065.29,656702.11,140938.24,2424.94,conventional,2016,SouthCentral +51,2016-01-03,0.79,5693942.07,2512692.22,2024262.18,361423.55,795564.12,682311.74,109448.15,3804.23,conventional,2016,SouthCentral +0,2016-12-25,0.94,3722102.33,1449893.5,760830.39,5643.49,1505734.95,736767.31,767155.7,1811.94,conventional,2016,Southeast +1,2016-12-18,0.96,3413410.59,1236270.98,729400.6,8172.53,1439566.48,670843.43,766286.38,2436.67,conventional,2016,Southeast +2,2016-12-11,1.21,2648135.47,1055827.38,463050.84,4655.77,1124601.48,630163.97,492521.95,1915.56,conventional,2016,Southeast +3,2016-12-04,0.99,3941512.2,1481392.35,851643.42,5133.86,1603342.57,644607.27,957516.13,1219.17,conventional,2016,Southeast +4,2016-11-27,1.39,2408199.34,943433.21,459434.44,4791.45,1000540.24,509394.25,490242.94,903.05,conventional,2016,Southeast +5,2016-11-20,1.38,2670425.59,1054588.13,480430.32,8082.2,1127324.94,592607.45,532645.82,2071.67,conventional,2016,Southeast +6,2016-11-13,1.37,2819888.75,1219549.43,506554.74,13358.39,1080426.19,543743.7,535602.77,1079.72,conventional,2016,Southeast +7,2016-11-06,1.44,2590997.85,1086704.1,508906.52,14547.51,980839.72,432321.09,547443.91,1074.72,conventional,2016,Southeast +8,2016-10-30,1.44,2502552.63,1006135.26,517368.07,14441.46,964607.84,416179.29,545707.16,2721.39,conventional,2016,Southeast +9,2016-10-23,1.43,2704875.68,1086334.04,625236.22,11469.22,981836.2,435847.7,543596.56,2391.94,conventional,2016,Southeast +10,2016-10-16,1.24,3233029.42,1219511.41,791521.66,10217.86,1211778.49,420581.32,790113.56,1083.61,conventional,2016,Southeast +11,2016-10-09,1.37,2885138.33,1122505.43,657057.65,7239.64,1098335.61,516483.34,580235.88,1616.39,conventional,2016,Southeast +12,2016-10-02,1.38,3106952.74,1267964.11,621971.41,10940.09,1206077.13,602427.54,602149.59,1500.0,conventional,2016,Southeast +13,2016-09-25,1.32,3266161.45,1398879.9,588359.56,9605.99,1269316.0,691449.32,573138.62,4728.06,conventional,2016,Southeast +14,2016-09-18,1.11,3403999.22,1501212.7,566389.42,9444.29,1326952.81,706832.05,617002.43,3118.33,conventional,2016,Southeast +15,2016-09-11,1.08,3431698.41,1673305.36,497550.12,10177.7,1250665.23,791919.62,455458.67,3286.94,conventional,2016,Southeast +16,2016-09-04,0.96,4804279.06,2776884.75,664439.79,12528.81,1350425.71,771445.27,574732.66,4247.78,conventional,2016,Southeast +17,2016-08-28,1.11,3580022.43,1919441.39,610781.64,10303.2,1039496.2,738943.52,290855.73,9696.95,conventional,2016,Southeast +18,2016-08-21,1.11,3716886.69,1923227.36,648951.54,13450.33,1131257.46,827154.53,276587.65,27515.28,conventional,2016,Southeast +19,2016-08-14,1.09,4230674.67,2241425.0,738177.11,15287.26,1235785.3,745879.1,467642.03,22264.17,conventional,2016,Southeast +20,2016-08-07,1.18,3419326.48,1628428.39,687208.05,18597.99,1085092.05,710559.72,328992.05,45540.28,conventional,2016,Southeast +21,2016-07-31,1.18,3329108.94,1502915.49,710445.49,18938.44,1096809.52,724983.8,322569.05,49256.67,conventional,2016,Southeast +22,2016-07-24,1.17,3381732.73,1485492.18,845297.22,21369.68,1029573.65,657021.42,314632.79,57919.44,conventional,2016,Southeast +23,2016-07-17,1.15,3408142.71,1466379.21,813315.42,20301.82,1108146.26,705840.64,335918.68,66386.94,conventional,2016,Southeast +24,2016-07-10,1.1,3646868.94,1599856.44,848789.03,29960.26,1168263.21,785436.82,322739.72,60086.67,conventional,2016,Southeast +25,2016-07-03,0.91,5432816.58,2549452.95,1175338.87,30343.48,1677681.28,1031656.46,559976.48,86048.34,conventional,2016,Southeast +26,2016-06-26,1.09,3619364.21,1630877.04,777463.11,26639.39,1184384.67,850211.6,280635.29,53537.78,conventional,2016,Southeast +27,2016-06-19,0.94,4665536.74,2441553.39,936051.48,30691.31,1257240.56,699685.23,498428.66,59126.67,conventional,2016,Southeast +28,2016-06-12,1.07,3393712.37,1757284.4,592433.27,30505.16,1013489.54,641109.21,295047.83,77332.5,conventional,2016,Southeast +29,2016-06-05,0.91,4563745.14,2504517.37,823705.23,26309.45,1209213.09,563930.87,574578.06,70704.16,conventional,2016,Southeast +30,2016-05-29,0.92,4829487.03,2562669.53,971082.67,23769.9,1271964.93,531132.05,696042.61,44790.27,conventional,2016,Southeast +31,2016-05-22,1.05,3416062.07,1634620.91,666118.47,11952.59,1103370.1,536816.84,512209.9,54343.36,conventional,2016,Southeast +32,2016-05-15,0.82,5002102.24,2115292.19,1218469.25,10065.75,1658275.05,610050.97,1029088.05,19136.03,conventional,2016,Southeast +33,2016-05-08,0.86,4651540.06,2196754.82,933112.56,10776.46,1510896.22,712577.48,795541.26,2777.48,conventional,2016,Southeast +34,2016-05-01,0.75,6415228.14,2875232.76,1472240.0,10664.75,2057090.63,738082.97,1318520.16,487.5,conventional,2016,Southeast +35,2016-04-24,0.84,5062464.54,2132612.43,1298672.9,10941.97,1620237.24,542495.57,1072748.0,4993.67,conventional,2016,Southeast +36,2016-04-17,1.01,3673260.93,1705009.13,779184.92,8860.76,1180206.12,556254.94,622049.37,1901.81,conventional,2016,Southeast +37,2016-04-10,0.86,4792907.32,2127098.72,1116066.82,10186.67,1539555.11,519721.11,1017680.35,2153.65,conventional,2016,Southeast +38,2016-04-03,1.04,3507226.18,1812848.17,636304.92,12154.28,1045918.81,551758.29,494160.52,0.0,conventional,2016,Southeast +39,2016-03-27,1.05,3242245.67,1671682.99,604702.79,13925.65,951934.24,530183.19,421736.0,15.05,conventional,2016,Southeast +40,2016-03-20,1.05,3304400.62,1726223.26,616754.35,15753.25,945669.76,506482.12,439187.64,0.0,conventional,2016,Southeast +41,2016-03-13,0.88,4688502.05,2211225.88,1041733.79,17714.52,1417827.86,527240.77,890581.06,6.03,conventional,2016,Southeast +42,2016-03-06,1.07,3161231.11,1642177.9,592206.11,14794.78,912052.32,493727.49,418324.83,0.0,conventional,2016,Southeast +43,2016-02-28,0.84,4740050.22,2325376.99,994256.14,13243.4,1407173.69,528218.04,878955.65,0.0,conventional,2016,Southeast +44,2016-02-21,1.04,3068786.09,1586507.45,590119.92,13665.41,878493.31,459449.71,419043.6,0.0,conventional,2016,Southeast +45,2016-02-14,0.98,3234338.23,1737634.8,613313.92,12099.24,871290.27,499341.01,371949.26,0.0,conventional,2016,Southeast +46,2016-02-07,0.62,6847218.72,3614202.25,1364491.37,22097.49,1846427.61,740216.91,1106150.27,60.43,conventional,2016,Southeast +47,2016-01-31,1.02,3318109.53,1774273.7,625042.37,15260.7,903532.76,485345.67,418187.09,0.0,conventional,2016,Southeast +48,2016-01-24,0.9,3895844.89,2092736.34,663827.91,16838.16,1122442.48,570260.95,552166.44,15.09,conventional,2016,Southeast +49,2016-01-17,1.09,2913810.18,1721272.85,425617.01,16861.86,750058.46,507151.29,242855.86,51.31,conventional,2016,Southeast +50,2016-01-10,0.93,4132191.54,2536173.86,558424.29,17017.65,1020575.74,489927.14,530648.6,0.0,conventional,2016,Southeast +51,2016-01-03,1.06,3280451.38,2208431.81,339054.7,17650.77,715314.1,482358.65,232943.41,12.04,conventional,2016,Southeast +0,2016-12-25,1.15,69054.97,13134.96,22888.68,43.42,32987.91,32946.57,13.33,28.01,conventional,2016,Spokane +1,2016-12-18,0.97,78377.53,11468.76,24325.82,27.35,42555.6,42186.43,361.54,7.63,conventional,2016,Spokane +2,2016-12-11,0.96,91423.14,12117.55,27759.21,34.43,51511.95,50878.5,424.91,208.54,conventional,2016,Spokane +3,2016-12-04,1.4,59510.92,10871.7,19424.17,312.82,28902.23,28878.1,8.89,15.24,conventional,2016,Spokane +4,2016-11-27,1.49,49762.2,8071.55,17786.23,33.27,23871.15,23852.61,13.46,5.08,conventional,2016,Spokane +5,2016-11-20,1.14,81018.31,9351.32,25545.36,24.2,46097.43,45968.78,4.5,124.15,conventional,2016,Spokane +6,2016-11-13,1.07,99460.72,12237.95,31222.61,35.41,55964.75,55562.16,81.03,321.56,conventional,2016,Spokane +7,2016-11-06,1.48,61365.68,11311.99,21354.23,20.15,28679.31,28639.4,4.5,35.41,conventional,2016,Spokane +8,2016-10-30,1.39,51300.44,8156.83,15739.62,118.13,27285.86,27169.67,0.0,116.19,conventional,2016,Spokane +9,2016-10-23,1.23,79477.96,8981.32,34481.19,19.05,35996.4,35886.49,44.63,65.28,conventional,2016,Spokane +10,2016-10-16,1.33,68850.22,13123.07,19622.36,46.93,36057.86,34881.48,1171.39,4.99,conventional,2016,Spokane +11,2016-10-09,1.19,76241.91,13780.11,19165.66,70.54,43225.6,33043.2,10182.4,0.0,conventional,2016,Spokane +12,2016-10-02,0.87,131585.32,12840.53,28797.61,151.99,89795.19,45596.93,43887.36,310.9,conventional,2016,Spokane +13,2016-09-25,1.09,86853.6,17514.92,19838.82,124.82,49375.04,39036.9,10338.14,0.0,conventional,2016,Spokane +14,2016-09-18,1.05,74748.35,17028.27,21111.25,378.65,36230.18,32496.53,3721.45,12.2,conventional,2016,Spokane +15,2016-09-11,0.98,83096.19,25160.86,14719.48,1572.45,41643.4,41633.69,0.0,9.71,conventional,2016,Spokane +16,2016-09-04,1.12,83575.85,27414.8,15403.74,1519.26,39238.05,39194.32,17.17,26.56,conventional,2016,Spokane +17,2016-08-28,1.12,83627.94,24062.61,18386.73,1858.09,39320.51,39315.7,0.0,4.81,conventional,2016,Spokane +18,2016-08-21,1.09,87249.43,27169.12,14030.13,2000.73,44049.45,44033.76,8.51,7.18,conventional,2016,Spokane +19,2016-08-14,1.14,83933.43,24615.83,16234.66,2321.26,40761.68,40759.3,0.0,2.38,conventional,2016,Spokane +20,2016-08-07,1.16,89531.14,28151.76,21160.1,1816.11,38403.17,38393.69,0.0,9.48,conventional,2016,Spokane +21,2016-07-31,1.14,83902.91,25236.38,15512.48,1167.58,41986.47,41986.47,0.0,0.0,conventional,2016,Spokane +22,2016-07-24,1.08,82617.47,24997.25,15528.98,210.5,41880.74,41880.74,0.0,0.0,conventional,2016,Spokane +23,2016-07-17,0.98,92386.91,25707.69,15296.71,159.32,51223.19,51218.42,0.0,4.77,conventional,2016,Spokane +24,2016-07-10,1.06,90750.72,28563.77,16330.66,1198.87,44657.42,44566.32,33.56,57.54,conventional,2016,Spokane +25,2016-07-03,1.09,97365.48,29447.29,19298.27,3407.45,45212.47,44836.14,349.79,26.54,conventional,2016,Spokane +26,2016-06-26,1.02,90301.82,24210.14,18081.59,3974.43,44035.66,44033.23,0.0,2.43,conventional,2016,Spokane +27,2016-06-19,0.96,91554.79,27584.63,19850.1,2998.29,41121.77,41041.12,56.29,24.36,conventional,2016,Spokane +28,2016-06-12,0.99,93820.2,31353.21,17047.78,3152.34,42266.87,37812.07,4447.33,7.47,conventional,2016,Spokane +29,2016-06-05,0.87,125934.24,29094.1,30005.5,5361.13,61473.51,60082.4,1383.65,7.46,conventional,2016,Spokane +30,2016-05-29,0.87,109604.3,29399.27,21853.06,3012.5,55339.47,55214.3,110.28,14.89,conventional,2016,Spokane +31,2016-05-22,0.89,100552.55,28756.53,23438.52,3206.91,45150.59,36360.99,8782.18,7.42,conventional,2016,Spokane +32,2016-05-15,0.85,111993.65,24776.24,22868.96,3401.0,60947.45,60819.71,32.08,95.66,conventional,2016,Spokane +33,2016-05-08,0.84,127403.24,32460.64,34939.02,3173.84,56829.74,55178.16,1553.14,98.44,conventional,2016,Spokane +34,2016-05-01,0.86,116347.79,30544.24,28945.54,3451.47,53406.54,53362.37,0.0,44.17,conventional,2016,Spokane +35,2016-04-24,0.95,95660.52,26548.62,21236.06,2947.93,44927.91,44270.25,630.74,26.92,conventional,2016,Spokane +36,2016-04-17,0.82,131734.46,23285.87,29662.45,3466.99,75319.15,75098.77,69.31,151.07,conventional,2016,Spokane +37,2016-04-10,0.96,103998.99,31092.52,26584.63,3378.21,42943.63,42824.85,0.0,118.78,conventional,2016,Spokane +38,2016-04-03,0.92,98398.44,23189.51,22271.96,3270.23,49666.74,48727.02,930.08,9.64,conventional,2016,Spokane +39,2016-03-27,0.81,110616.23,21798.74,22445.52,3115.62,63256.35,63172.36,0.0,83.99,conventional,2016,Spokane +40,2016-03-20,1.02,83457.56,24106.74,19605.24,3092.49,36653.09,36639.27,4.25,9.57,conventional,2016,Spokane +41,2016-03-13,0.93,94531.04,22599.69,17655.73,3141.33,51134.29,51069.86,0.0,64.43,conventional,2016,Spokane +42,2016-03-06,0.91,101869.42,23603.78,22577.01,3132.45,52556.18,52480.19,59.31,16.68,conventional,2016,Spokane +43,2016-02-28,0.95,92596.44,21928.09,19963.84,2886.03,47818.48,47750.71,29.65,38.12,conventional,2016,Spokane +44,2016-02-21,0.82,112075.27,16913.21,27398.67,2940.94,64822.45,64778.72,12.72,31.01,conventional,2016,Spokane +45,2016-02-14,0.95,81626.44,22683.59,21398.24,2422.28,35122.33,35052.5,53.1,16.73,conventional,2016,Spokane +46,2016-02-07,0.74,154732.54,25009.68,56113.16,1283.73,72325.97,72052.59,91.48,181.9,conventional,2016,Spokane +47,2016-01-31,1.0,88040.94,19600.06,19030.78,3497.5,45912.6,45821.45,76.77,14.38,conventional,2016,Spokane +48,2016-01-24,0.97,89537.48,14122.5,29929.21,2793.05,42692.72,42637.23,17.07,38.42,conventional,2016,Spokane +49,2016-01-17,0.98,100754.26,20833.16,23919.53,3527.08,52474.49,52341.94,132.55,0.0,conventional,2016,Spokane +50,2016-01-10,0.88,111604.85,25931.41,32688.86,3214.92,49769.66,49569.33,51.35,148.98,conventional,2016,Spokane +51,2016-01-03,0.9,113049.35,25325.06,37805.37,4624.15,45294.77,43671.02,1485.68,138.07,conventional,2016,Spokane +0,2016-12-25,1.02,132034.47,58510.89,9135.28,60.38,64327.92,47503.95,16823.97,0.0,conventional,2016,StLouis +1,2016-12-18,0.97,137885.02,58408.64,7756.92,50.4,71669.06,52786.07,18882.99,0.0,conventional,2016,StLouis +2,2016-12-11,1.11,117572.64,38790.31,6951.6,146.25,71684.48,57071.3,14613.18,0.0,conventional,2016,StLouis +3,2016-12-04,1.1,118176.43,40780.54,6623.28,37.24,70735.37,40391.54,30343.83,0.0,conventional,2016,StLouis +4,2016-11-27,1.16,100424.14,34165.03,6473.64,16.27,59769.2,40665.36,19103.84,0.0,conventional,2016,StLouis +5,2016-11-20,1.29,99930.79,40938.28,8785.62,86.33,50120.56,35284.71,14835.85,0.0,conventional,2016,StLouis +6,2016-11-13,1.34,128094.25,59889.54,11028.55,97.91,57078.25,40601.59,16476.66,0.0,conventional,2016,StLouis +7,2016-11-06,1.25,139697.75,64239.09,10904.36,98.22,64456.08,45157.29,19079.35,219.44,conventional,2016,StLouis +8,2016-10-30,1.01,128966.42,51881.76,6010.11,59.48,71015.07,45591.77,25423.3,0.0,conventional,2016,StLouis +9,2016-10-23,0.95,184407.0,90463.63,8443.95,49.0,85450.42,61303.92,24146.5,0.0,conventional,2016,StLouis +10,2016-10-16,1.29,124201.08,53894.09,12563.71,46.82,57696.46,42853.49,14842.97,0.0,conventional,2016,StLouis +11,2016-10-09,1.3,125599.65,49980.28,19770.43,125.39,55723.55,39013.44,16710.11,0.0,conventional,2016,StLouis +12,2016-10-02,1.16,140030.37,51859.03,14340.74,35.83,73794.77,41062.22,32732.55,0.0,conventional,2016,StLouis +13,2016-09-25,1.06,165887.64,89034.64,12643.89,25.48,64183.63,38326.05,25857.58,0.0,conventional,2016,StLouis +14,2016-09-18,1.17,147517.96,46991.05,23066.01,58.64,77402.26,50958.87,26367.0,76.39,conventional,2016,StLouis +15,2016-09-11,1.05,182676.07,97942.83,20573.17,32.1,64127.97,50774.93,13353.04,0.0,conventional,2016,StLouis +16,2016-09-04,1.16,151456.08,41709.95,27154.21,131.77,82460.15,59982.2,17076.4,5401.55,conventional,2016,StLouis +17,2016-08-28,1.15,133188.79,43863.96,22002.03,99.09,67223.71,43548.46,19095.4,4579.85,conventional,2016,StLouis +18,2016-08-21,1.03,184060.51,45178.55,23409.71,167.07,115305.18,98022.8,6778.23,10504.15,conventional,2016,StLouis +19,2016-08-14,0.91,230729.63,53920.63,22787.65,254.57,153766.78,137801.2,10454.24,5511.34,conventional,2016,StLouis +20,2016-08-07,0.85,268010.32,62085.78,28664.77,213.23,177046.54,154944.24,9249.53,12852.77,conventional,2016,StLouis +21,2016-07-31,1.03,214273.18,54119.45,28847.85,229.71,131076.17,109459.43,6537.25,15079.49,conventional,2016,StLouis +22,2016-07-24,0.94,255732.97,75714.25,23532.47,439.63,156046.62,132587.08,11498.2,11961.34,conventional,2016,StLouis +23,2016-07-17,0.88,261737.36,53603.39,25828.34,304.22,182001.41,152990.15,20179.44,8831.82,conventional,2016,StLouis +24,2016-07-10,0.74,314847.96,61310.0,22958.74,663.38,229915.84,204560.07,13138.25,12217.52,conventional,2016,StLouis +25,2016-07-03,0.76,348135.49,65689.33,21478.32,467.21,260500.63,225966.72,21420.64,13113.27,conventional,2016,StLouis +26,2016-06-26,0.97,236899.58,70089.95,10838.62,750.02,155220.99,126591.94,14354.3,14274.75,conventional,2016,StLouis +27,2016-06-19,0.95,254402.94,68071.47,14769.82,81.39,171480.26,139118.22,27583.68,4778.36,conventional,2016,StLouis +28,2016-06-12,0.92,251349.57,63117.83,10829.42,88.75,177313.57,139479.8,19315.86,18517.91,conventional,2016,StLouis +29,2016-06-05,0.83,284148.54,69394.57,10226.94,90.92,204436.11,170177.69,19377.27,14881.15,conventional,2016,StLouis +30,2016-05-29,0.8,245482.03,71157.19,9858.5,210.8,164255.54,150822.59,13401.63,31.32,conventional,2016,StLouis +31,2016-05-22,0.81,279392.4,85909.4,8500.2,15.76,184967.04,156414.69,28505.49,46.86,conventional,2016,StLouis +32,2016-05-15,0.75,290603.88,69857.38,10440.9,46.32,210259.28,179609.78,30236.34,413.16,conventional,2016,StLouis +33,2016-05-08,0.85,263363.51,68597.31,12628.1,73.71,182064.39,127495.69,54426.61,142.09,conventional,2016,StLouis +34,2016-05-01,0.79,256180.45,99574.26,10728.95,42.66,145834.58,126405.83,19398.2,30.55,conventional,2016,StLouis +35,2016-04-24,0.8,233320.58,65855.0,10636.81,10.97,156817.8,123839.46,32941.31,37.03,conventional,2016,StLouis +36,2016-04-17,0.91,197200.66,55007.65,11057.11,47.76,131088.14,96909.71,34108.83,69.6,conventional,2016,StLouis +37,2016-04-10,0.87,218755.02,83221.79,8054.25,82.27,127396.71,98906.41,28468.59,21.71,conventional,2016,StLouis +38,2016-04-03,0.94,179484.73,57658.37,7307.41,15.21,114503.74,82978.09,31523.48,2.17,conventional,2016,StLouis +39,2016-03-27,0.97,156454.78,49442.37,10038.61,21.47,96952.33,76482.71,20432.74,36.88,conventional,2016,StLouis +40,2016-03-20,0.88,195882.17,74088.91,11333.19,27.1,110432.97,73562.41,36866.22,4.34,conventional,2016,StLouis +41,2016-03-13,0.89,172598.72,67142.81,9121.86,68.81,96265.24,65087.11,31078.15,99.98,conventional,2016,StLouis +42,2016-03-06,0.96,185570.14,68570.93,9371.82,23.4,107603.99,84301.57,23258.91,43.51,conventional,2016,StLouis +43,2016-02-28,0.98,173282.78,52180.79,12434.36,64.26,108603.37,81857.33,26526.01,220.03,conventional,2016,StLouis +44,2016-02-21,1.0,207338.72,78891.03,27326.04,55.42,101066.23,74251.97,26792.44,21.82,conventional,2016,StLouis +45,2016-02-14,0.98,165070.79,55935.83,21668.85,16.24,87449.87,69046.57,18403.3,0.0,conventional,2016,StLouis +46,2016-02-07,0.87,271355.48,76562.84,80994.41,32.76,113765.47,71787.46,41934.23,43.78,conventional,2016,StLouis +47,2016-01-31,1.01,219443.76,79030.8,33529.73,14.01,106869.22,68748.3,38112.15,8.77,conventional,2016,StLouis +48,2016-01-24,1.1,167619.96,38174.66,28333.37,4.76,101107.17,67007.75,34086.25,13.17,conventional,2016,StLouis +49,2016-01-17,1.15,167689.21,55839.79,32775.72,25.07,79048.63,63934.26,15068.21,46.16,conventional,2016,StLouis +50,2016-01-10,1.01,218460.75,77169.1,28510.27,34.37,112747.01,89122.24,23596.15,28.62,conventional,2016,StLouis +51,2016-01-03,1.0,213437.44,105267.98,29054.71,34.87,79079.88,67243.27,11814.57,22.04,conventional,2016,StLouis +0,2016-12-25,1.46,46036.04,748.11,29452.82,2.26,15832.85,14866.23,966.62,0.0,conventional,2016,Syracuse +1,2016-12-18,1.42,42029.51,770.8,28068.62,5.0,13185.09,12270.19,908.23,6.67,conventional,2016,Syracuse +2,2016-12-11,1.5,41911.21,762.45,31386.84,15.25,9746.67,8823.89,922.78,0.0,conventional,2016,Syracuse +3,2016-12-04,1.64,50831.37,796.48,42942.66,4.0,7088.23,6841.52,149.49,97.22,conventional,2016,Syracuse +4,2016-11-27,1.55,33757.95,690.91,24789.85,6.97,8270.22,8270.22,0.0,0.0,conventional,2016,Syracuse +5,2016-11-20,1.61,38598.98,814.68,27876.91,1.0,9906.39,9906.39,0.0,0.0,conventional,2016,Syracuse +6,2016-11-13,1.62,39271.46,1266.16,27380.67,33.79,10590.84,10590.84,0.0,0.0,conventional,2016,Syracuse +7,2016-11-06,1.59,38868.74,922.36,26701.99,31.15,11213.24,11213.24,0.0,0.0,conventional,2016,Syracuse +8,2016-10-30,1.56,33699.68,967.38,25926.02,12.23,6794.05,6791.83,2.22,0.0,conventional,2016,Syracuse +9,2016-10-23,1.38,56428.14,1110.87,37054.07,41.02,18222.18,18222.18,0.0,0.0,conventional,2016,Syracuse +10,2016-10-16,1.36,55053.59,1344.18,31561.93,21.67,22125.81,22125.81,0.0,0.0,conventional,2016,Syracuse +11,2016-10-09,1.23,69593.63,980.44,46378.32,56.22,22178.65,22178.65,0.0,0.0,conventional,2016,Syracuse +12,2016-10-02,1.43,53796.49,987.21,32211.73,37.44,20560.11,20560.11,0.0,0.0,conventional,2016,Syracuse +13,2016-09-25,1.54,61352.25,3272.01,38679.78,24.0,19376.46,19358.68,17.78,0.0,conventional,2016,Syracuse +14,2016-09-18,1.46,55922.25,2411.13,36168.63,15.99,17326.5,17070.94,255.56,0.0,conventional,2016,Syracuse +15,2016-09-11,1.35,60993.34,1874.91,39693.78,10.0,19414.65,18636.87,777.78,0.0,conventional,2016,Syracuse +16,2016-09-04,1.53,51792.9,3545.98,35938.12,23.1,12285.7,12128.93,6.77,150.0,conventional,2016,Syracuse +17,2016-08-28,1.38,71711.83,5939.38,45349.71,16.1,20406.64,19306.64,0.0,1100.0,conventional,2016,Syracuse +18,2016-08-21,1.44,58497.96,2904.27,37191.51,19.23,18382.95,17427.95,0.0,955.0,conventional,2016,Syracuse +19,2016-08-14,1.35,60212.3,4941.56,39269.44,28.81,15972.49,15337.49,0.0,635.0,conventional,2016,Syracuse +20,2016-08-07,1.53,60523.63,2724.18,41584.42,2.0,16213.03,15518.03,0.0,695.0,conventional,2016,Syracuse +21,2016-07-31,1.6,68311.05,1970.63,47609.54,10.23,18720.65,18175.65,0.0,545.0,conventional,2016,Syracuse +22,2016-07-24,1.5,56952.09,1940.69,35492.01,19.95,19499.44,16609.44,0.0,2890.0,conventional,2016,Syracuse +23,2016-07-17,1.31,66907.33,2211.14,39136.28,1.0,25558.91,24463.91,0.0,1095.0,conventional,2016,Syracuse +24,2016-07-10,1.29,84386.24,3503.31,49140.9,13.99,31728.04,28754.71,3.33,2970.0,conventional,2016,Syracuse +25,2016-07-03,1.37,85205.46,1970.63,47537.91,1.25,35695.67,32830.67,0.0,2865.0,conventional,2016,Syracuse +26,2016-06-26,1.43,84340.47,1952.47,52517.17,13.0,29857.83,28352.83,0.0,1505.0,conventional,2016,Syracuse +27,2016-06-19,1.35,78211.73,2080.76,45936.69,15.5,30178.78,28498.78,0.0,1680.0,conventional,2016,Syracuse +28,2016-06-12,1.29,79669.3,3484.81,43664.14,90.98,32429.37,31259.37,0.0,1170.0,conventional,2016,Syracuse +29,2016-06-05,1.31,80015.17,1635.92,46955.13,178.83,31245.29,29640.29,0.0,1605.0,conventional,2016,Syracuse +30,2016-05-29,1.36,82173.8,1259.66,52293.06,435.86,28185.22,27875.22,0.0,310.0,conventional,2016,Syracuse +31,2016-05-22,1.27,72636.09,951.3,40672.39,600.23,30412.17,29287.17,0.0,1125.0,conventional,2016,Syracuse +32,2016-05-15,1.23,71440.0,1015.43,41631.44,695.37,28097.76,28097.76,0.0,0.0,conventional,2016,Syracuse +33,2016-05-08,1.23,85623.78,1143.94,51234.94,411.23,32833.67,32833.67,0.0,0.0,conventional,2016,Syracuse +34,2016-05-01,1.31,83407.69,992.24,54950.48,769.07,26695.9,26695.9,0.0,0.0,conventional,2016,Syracuse +35,2016-04-24,1.22,68819.0,1000.49,39959.75,586.42,27272.34,27268.73,3.61,0.0,conventional,2016,Syracuse +36,2016-04-17,1.21,70543.09,880.43,39173.25,3.0,30486.41,30486.41,0.0,0.0,conventional,2016,Syracuse +37,2016-04-10,1.28,62892.35,987.33,32612.34,2.0,29290.68,29290.68,0.0,0.0,conventional,2016,Syracuse +38,2016-04-03,1.03,58862.37,651.94,31826.85,4.0,26379.58,26379.58,0.0,0.0,conventional,2016,Syracuse +39,2016-03-27,1.29,72427.45,872.18,43180.7,15.45,28359.12,28359.12,0.0,0.0,conventional,2016,Syracuse +40,2016-03-20,1.24,72560.52,784.13,46256.94,10.73,25508.72,25508.72,0.0,0.0,conventional,2016,Syracuse +41,2016-03-13,1.18,71223.95,874.89,42612.44,21.45,27715.17,27710.73,4.44,0.0,conventional,2016,Syracuse +42,2016-03-06,1.36,64866.67,1023.58,38547.17,38.46,25257.46,25157.67,99.79,0.0,conventional,2016,Syracuse +43,2016-02-28,1.27,64336.75,861.71,39219.33,8.0,24247.71,23555.99,691.72,0.0,conventional,2016,Syracuse +44,2016-02-21,1.34,65393.08,918.45,40416.33,20.5,24037.8,22191.93,1845.87,0.0,conventional,2016,Syracuse +45,2016-02-14,1.28,65765.73,1088.74,37685.2,41.0,26950.79,25835.23,1115.56,0.0,conventional,2016,Syracuse +46,2016-02-07,1.28,90935.19,1462.82,60707.3,23.26,28741.81,28032.92,708.89,0.0,conventional,2016,Syracuse +47,2016-01-31,1.2,70174.79,1181.04,41173.79,33.29,27786.67,27245.24,541.43,0.0,conventional,2016,Syracuse +48,2016-01-24,1.32,64280.43,72.06,34868.95,31.76,29307.66,29215.12,92.54,0.0,conventional,2016,Syracuse +49,2016-01-17,1.37,70134.99,1078.47,41232.35,9.75,27814.42,27814.42,0.0,0.0,conventional,2016,Syracuse +50,2016-01-10,1.36,57676.73,757.85,31787.68,2.0,25129.2,25129.2,0.0,0.0,conventional,2016,Syracuse +51,2016-01-03,1.34,69200.73,839.36,47417.06,24.66,20919.65,20919.65,0.0,0.0,conventional,2016,Syracuse +0,2016-12-25,0.93,445441.47,157380.83,104316.6,63.53,183680.51,87877.06,95803.45,0.0,conventional,2016,Tampa +1,2016-12-18,0.93,412891.05,132947.11,102323.35,48.96,177571.63,77777.03,99658.49,136.11,conventional,2016,Tampa +2,2016-12-11,1.22,289765.21,99668.86,60413.89,27.84,129654.62,72901.02,56753.6,0.0,conventional,2016,Tampa +3,2016-12-04,0.96,500795.57,163609.96,123041.61,39.36,214104.64,91215.95,122888.69,0.0,conventional,2016,Tampa +4,2016-11-27,1.45,265590.66,92933.81,61345.38,41.71,111269.76,52267.61,59002.15,0.0,conventional,2016,Tampa +5,2016-11-20,1.47,279595.13,95447.33,63840.96,87.54,120219.3,58516.69,61702.61,0.0,conventional,2016,Tampa +6,2016-11-13,1.38,323761.18,124544.12,69065.25,148.09,130003.72,63858.93,66144.79,0.0,conventional,2016,Tampa +7,2016-11-06,1.46,284328.38,110779.29,67753.78,145.64,105649.67,43844.85,61804.82,0.0,conventional,2016,Tampa +8,2016-10-30,1.52,265332.11,93166.48,68007.5,150.2,104007.93,42732.14,61275.79,0.0,conventional,2016,Tampa +9,2016-10-23,1.53,281815.95,91272.27,92612.09,130.21,97801.38,35310.45,62490.93,0.0,conventional,2016,Tampa +10,2016-10-16,1.26,371149.3,116452.65,117544.17,214.87,136937.61,36245.73,100691.88,0.0,conventional,2016,Tampa +11,2016-10-09,1.45,337370.09,110106.06,105328.06,119.9,121816.07,53843.03,67973.04,0.0,conventional,2016,Tampa +12,2016-10-02,1.45,323324.31,123390.79,72977.08,250.23,126706.21,63736.85,62969.36,0.0,conventional,2016,Tampa +13,2016-09-25,1.37,349975.92,140782.83,66909.61,109.75,142173.73,78485.78,63687.95,0.0,conventional,2016,Tampa +14,2016-09-18,1.14,344938.28,132430.63,66929.62,102.58,145475.45,73697.98,71774.14,3.33,conventional,2016,Tampa +15,2016-09-11,1.16,338518.81,154295.04,62808.74,61.0,121354.03,65128.71,55457.26,768.06,conventional,2016,Tampa +16,2016-09-04,0.95,560691.13,298317.39,105769.78,79.6,156524.36,85777.72,68958.03,1788.61,conventional,2016,Tampa +17,2016-08-28,1.14,378817.72,177292.69,99784.11,62.59,101678.33,78855.06,20239.66,2583.61,conventional,2016,Tampa +18,2016-08-21,1.14,390053.1,175344.71,100775.54,48.58,113884.27,80157.7,27826.57,5900.0,conventional,2016,Tampa +19,2016-08-14,1.14,452075.68,213370.83,110703.08,63.23,127938.54,65540.89,57507.65,4890.0,conventional,2016,Tampa +20,2016-08-07,1.21,362836.43,147057.02,95386.32,107.35,120285.74,75445.92,35139.82,9700.0,conventional,2016,Tampa +21,2016-07-31,1.25,330277.63,134859.19,87238.79,23.31,108156.34,68165.92,30100.42,9890.0,conventional,2016,Tampa +22,2016-07-24,1.22,353863.19,143082.31,97554.75,24.75,113201.38,71808.87,29197.51,12195.0,conventional,2016,Tampa +23,2016-07-17,1.17,376274.95,143891.95,101298.66,46.19,131038.15,87458.66,31340.05,12239.44,conventional,2016,Tampa +24,2016-07-10,1.15,359346.63,141565.52,92115.84,93.56,125571.71,87917.71,26862.89,10791.11,conventional,2016,Tampa +25,2016-07-03,0.93,613097.67,288161.65,142383.7,71.82,182480.5,116195.87,50307.96,15976.67,conventional,2016,Tampa +26,2016-06-26,1.16,361181.98,143485.88,88209.18,37.04,129449.88,88532.88,31127.0,9790.0,conventional,2016,Tampa +27,2016-06-19,0.98,497270.56,234054.37,127730.8,111.83,135373.56,68955.92,55517.64,10900.0,conventional,2016,Tampa +28,2016-06-12,1.23,311068.54,136835.25,76895.26,50.3,97287.73,57317.02,29525.43,10445.28,conventional,2016,Tampa +29,2016-06-05,0.97,485002.55,261221.3,100100.49,105.5,123575.26,61524.24,53634.35,8416.67,conventional,2016,Tampa +30,2016-05-29,0.96,532427.02,287990.69,117845.05,172.19,126419.09,63311.97,57550.46,5556.66,conventional,2016,Tampa +31,2016-05-22,1.18,327249.29,164833.67,65400.76,187.53,96827.33,54513.18,33377.48,8936.67,conventional,2016,Tampa +32,2016-05-15,0.86,522134.64,214251.75,138866.8,113.49,168902.6,58113.67,106150.87,4638.06,conventional,2016,Tampa +33,2016-05-08,0.92,493628.61,238892.93,96504.07,163.0,158068.61,81108.34,76960.27,0.0,conventional,2016,Tampa +34,2016-05-01,0.75,741724.85,336112.35,170270.88,50.01,235291.61,85158.24,150133.37,0.0,conventional,2016,Tampa +35,2016-04-24,0.86,566117.77,233226.21,148355.96,155.42,184380.18,60995.42,122379.2,1005.56,conventional,2016,Tampa +36,2016-04-17,1.06,387923.77,183628.75,79809.39,97.76,124387.87,63443.38,60944.49,0.0,conventional,2016,Tampa +37,2016-04-10,0.85,549365.61,226151.46,140518.27,28.42,182667.46,58747.56,123796.29,123.61,conventional,2016,Tampa +38,2016-04-03,1.04,402546.34,196164.23,73787.3,29.08,132565.73,68922.65,63643.08,0.0,conventional,2016,Tampa +39,2016-03-27,1.08,342762.43,159310.12,70270.88,67.71,113113.72,58016.76,55096.96,0.0,conventional,2016,Tampa +40,2016-03-20,1.1,326332.48,148381.21,69085.96,56.69,108808.62,52243.64,56564.98,0.0,conventional,2016,Tampa +41,2016-03-13,0.86,527217.55,219895.48,131684.94,263.76,175373.37,56866.76,118506.61,0.0,conventional,2016,Tampa +42,2016-03-06,1.08,331997.49,149559.05,67539.98,20.59,114877.87,62840.15,52037.72,0.0,conventional,2016,Tampa +43,2016-02-28,0.82,569349.05,248401.81,134264.79,46.83,186635.62,67866.87,118768.75,0.0,conventional,2016,Tampa +44,2016-02-21,1.05,321995.93,146660.22,67636.88,75.71,107623.12,55694.57,51928.55,0.0,conventional,2016,Tampa +45,2016-02-14,1.0,329879.07,160675.05,76135.86,78.63,92989.53,56730.92,36258.61,0.0,conventional,2016,Tampa +46,2016-02-07,0.56,822548.66,385584.08,189389.79,105.28,247469.51,98976.22,148493.29,0.0,conventional,2016,Tampa +47,2016-01-31,0.98,391266.84,155283.41,95492.75,91.61,140399.07,66287.34,74111.73,0.0,conventional,2016,Tampa +48,2016-01-24,0.81,503528.16,184104.57,122562.12,213.63,196647.84,80146.89,116498.21,2.74,conventional,2016,Tampa +49,2016-01-17,1.05,304269.38,138371.21,49996.61,101.81,115799.75,70537.04,45235.19,27.52,conventional,2016,Tampa +50,2016-01-10,0.85,519360.29,250745.95,88162.17,131.61,180320.56,70164.37,110156.19,0.0,conventional,2016,Tampa +51,2016-01-03,1.07,375548.86,226406.25,46447.87,133.9,102560.84,69223.85,33336.99,0.0,conventional,2016,Tampa +0,2016-12-25,1.0,30287853.7,9255125.2,10282925.61,541972.42,10207830.47,7709584.33,2417144.92,81101.22,conventional,2016,TotalUS +1,2016-12-18,0.96,29583882.61,9394065.91,10339168.2,427872.42,9422776.08,6970320.34,2358443.96,94011.78,conventional,2016,TotalUS +2,2016-12-11,0.98,30093540.7,9009996.11,9967220.02,403047.93,10713276.64,8149438.75,2490495.07,73342.82,conventional,2016,TotalUS +3,2016-12-04,1.0,31621221.9,11043350.9,9908982.97,428009.84,10240878.19,7187022.58,2988504.98,65350.63,conventional,2016,TotalUS +4,2016-11-27,1.21,22923062.65,7891487.94,7337341.77,344475.9,7349757.04,5691266.56,1609867.2,48623.28,conventional,2016,TotalUS +5,2016-11-20,1.27,24989702.75,8531160.52,8033510.82,407567.78,8017463.63,6207080.46,1765673.77,44709.4,conventional,2016,TotalUS +6,2016-11-13,1.36,24075126.49,8235135.43,7759608.21,477520.95,7602861.9,5602593.66,1957163.93,43104.31,conventional,2016,TotalUS +7,2016-11-06,1.44,22534698.38,7804252.91,7126936.31,505349.44,7098159.72,5245066.66,1812174.32,40918.74,conventional,2016,TotalUS +8,2016-10-30,1.43,21009730.21,7100458.82,6852046.35,453145.26,6604079.78,4655045.62,1882750.65,66283.51,conventional,2016,TotalUS +9,2016-10-23,1.34,24753513.95,7579629.06,8104522.26,452383.96,8616978.67,6508666.81,2016513.03,91798.83,conventional,2016,TotalUS +10,2016-10-16,1.3,27707046.82,8810664.45,8855072.75,447291.48,9594018.14,6934368.93,2575095.84,84553.37,conventional,2016,TotalUS +11,2016-10-09,1.27,28857581.98,9552502.48,9579338.98,490956.88,9234783.64,6849126.9,2316377.99,69278.75,conventional,2016,TotalUS +12,2016-10-02,1.23,29615008.49,9534915.56,9123897.74,490123.01,10466072.18,7408765.9,2981275.76,76030.52,conventional,2016,TotalUS +13,2016-09-25,1.22,30305112.89,10548061.13,9255913.78,492604.3,10008533.68,7440444.59,2476400.79,91688.3,conventional,2016,TotalUS +14,2016-09-18,1.15,31346091.46,11337829.1,9481313.14,486187.39,10040761.83,7649502.34,2311262.99,79996.5,conventional,2016,TotalUS +15,2016-09-11,1.08,34126730.95,12962762.94,10380438.09,512160.27,10271369.65,8199580.75,2016484.84,55304.06,conventional,2016,TotalUS +16,2016-09-04,1.04,37130688.91,14643465.52,11083513.46,540680.89,10863029.04,8555283.68,2214419.29,93326.07,conventional,2016,TotalUS +17,2016-08-28,1.09,33993931.31,12561055.5,10420973.0,563738.54,10448164.27,8503870.88,1785021.92,159271.47,conventional,2016,TotalUS +18,2016-08-21,1.1,33592097.72,12725249.3,9906498.51,609720.87,10350629.04,8749239.27,1446381.11,155008.66,conventional,2016,TotalUS +19,2016-08-14,1.12,34386177.3,12352932.68,10879341.61,749247.02,10404655.99,8479506.83,1813210.6,111938.56,conventional,2016,TotalUS +20,2016-08-07,1.15,33819909.09,12197105.36,10731379.56,754548.53,10136875.64,8386276.39,1569550.49,181048.76,conventional,2016,TotalUS +21,2016-07-31,1.23,31201590.22,10168972.37,10423957.83,783937.09,9824722.93,8193011.02,1431744.52,199967.39,conventional,2016,TotalUS +22,2016-07-24,1.2,32339377.09,10331314.28,10795751.15,947964.05,10264347.61,8315738.7,1561208.69,387400.22,conventional,2016,TotalUS +23,2016-07-17,1.15,32656123.63,10320463.27,10628872.6,953631.47,10753156.29,8737861.29,1624816.27,390478.73,conventional,2016,TotalUS +24,2016-07-10,1.1,35567568.43,11457080.38,11677528.0,1266433.97,11166526.08,8984513.63,1727668.8,454343.65,conventional,2016,TotalUS +25,2016-07-03,1.06,39993186.04,12508937.27,13315901.42,1761343.08,12407004.27,9967538.34,1887772.28,551693.65,conventional,2016,TotalUS +26,2016-06-26,1.04,36617023.79,12189035.17,12029918.6,1624942.43,10773127.59,8834969.52,1609568.98,328589.09,conventional,2016,TotalUS +27,2016-06-19,1.02,38489936.14,13488851.61,12842698.33,1642735.63,10515650.57,8223280.88,1975350.75,317018.94,conventional,2016,TotalUS +28,2016-06-12,1.04,35580820.0,12291686.69,11533969.83,1607344.08,10147819.4,8039865.67,1796513.74,311439.99,conventional,2016,TotalUS +29,2016-06-05,0.97,40231259.65,13808859.16,13396651.73,1770948.09,11254800.67,8492744.45,2441022.99,321033.23,conventional,2016,TotalUS +30,2016-05-29,0.94,40019075.24,13682611.21,13829591.06,1583495.93,10923377.04,8085657.41,2657598.78,180120.85,conventional,2016,TotalUS +31,2016-05-22,0.93,36958035.51,11711999.81,12981224.42,1640829.4,10623981.88,7835766.14,2563223.75,224991.99,conventional,2016,TotalUS +32,2016-05-15,0.89,39914996.74,12447598.49,14437190.03,1753852.61,11276355.61,7987028.55,3143280.05,146047.01,conventional,2016,TotalUS +33,2016-05-08,0.82,46324529.7,14223304.98,17896391.6,1993645.36,12211187.76,8747756.84,3342780.83,120650.09,conventional,2016,TotalUS +34,2016-05-01,0.84,42867608.54,13748944.38,15899858.37,1414364.49,11804441.3,8376124.32,3365582.11,62734.87,conventional,2016,TotalUS +35,2016-04-24,0.87,39607695.3,12913697.19,14382184.8,1599863.98,10711949.33,7835835.83,2801102.86,75010.64,conventional,2016,TotalUS +36,2016-04-17,0.9,37467885.19,11954487.56,12896366.58,1896149.5,10720881.55,8128710.21,2467001.94,125169.4,conventional,2016,TotalUS +37,2016-04-10,0.9,36584029.39,12879820.47,11538132.36,1666275.13,10499801.43,7808770.98,2613293.43,77737.02,conventional,2016,TotalUS +38,2016-04-03,0.94,33668450.55,11320969.79,11512621.85,1731910.48,9102948.43,6830380.18,2213379.44,59188.81,conventional,2016,TotalUS +39,2016-03-27,0.94,35930195.92,11249198.4,12745266.73,1880231.38,10055499.41,7745105.36,2228007.91,82386.14,conventional,2016,TotalUS +40,2016-03-20,0.93,36335483.78,11134390.98,13727453.57,1773088.87,9700550.36,7248857.68,2374053.89,77638.79,conventional,2016,TotalUS +41,2016-03-13,0.93,36374516.14,11661687.44,13104887.66,1800065.57,9807875.47,7231162.6,2521123.87,55589.0,conventional,2016,TotalUS +42,2016-03-06,0.95,35064506.04,11824154.63,12196587.24,1686475.33,9357288.84,7502570.03,1747903.69,106815.12,conventional,2016,TotalUS +43,2016-02-28,0.91,36801817.68,11907394.72,13210854.56,1560167.75,10123400.65,7251666.99,2802238.74,69494.92,conventional,2016,TotalUS +44,2016-02-21,0.94,32804733.22,10015825.13,12003751.56,1375260.47,9409896.06,7213492.61,2150749.43,45654.02,conventional,2016,TotalUS +45,2016-02-14,0.88,36476441.86,11913078.3,13187973.29,1811090.71,9564299.56,7102422.27,2387455.67,74421.62,conventional,2016,TotalUS +46,2016-02-07,0.76,52288697.89,16573573.78,20470572.61,2546439.11,12698112.39,9083373.04,3373077.87,241661.48,conventional,2016,TotalUS +47,2016-01-31,0.93,34721249.92,11098088.49,13278053.61,1643703.17,8701404.65,6684515.27,1823889.58,192999.8,conventional,2016,TotalUS +48,2016-01-24,0.95,32787079.21,7020459.0,14054367.5,1440380.36,10271872.35,7438489.6,2668368.01,165014.74,conventional,2016,TotalUS +49,2016-01-17,0.94,34426341.87,10036597.84,13832256.04,1419405.62,9138082.37,6846324.06,2228420.91,63337.4,conventional,2016,TotalUS +50,2016-01-10,0.93,35264336.01,11441286.89,13226088.66,1282612.91,9314347.55,6735384.32,2528089.14,50874.09,conventional,2016,TotalUS +51,2016-01-03,0.86,38142088.04,11616506.17,16054083.86,1560068.62,8911429.39,6464895.83,2287449.76,159083.8,conventional,2016,TotalUS +0,2016-12-25,0.92,5720079.58,1951252.95,1240717.89,114035.0,2414073.74,1681100.98,731388.25,1584.51,conventional,2016,West +1,2016-12-18,0.88,5618429.48,2112070.11,1168212.84,89996.89,2248149.64,1571421.56,673464.14,3263.94,conventional,2016,West +2,2016-12-11,0.84,6648833.68,1687192.84,1545122.38,86234.32,3330284.14,2543800.78,778604.87,7878.49,conventional,2016,West +3,2016-12-04,0.93,5919532.49,2142009.81,1164205.54,81114.6,2532202.54,1534025.06,992335.68,5841.8,conventional,2016,West +4,2016-11-27,1.09,4187550.98,1525325.69,938768.71,86789.7,1636666.88,1068035.07,565542.44,3089.37,conventional,2016,West +5,2016-11-20,1.1,4944373.81,2005353.24,913021.63,105452.1,1920546.84,1357080.6,562175.85,1290.39,conventional,2016,West +6,2016-11-13,1.18,4864099.95,1740717.89,1032253.37,107496.5,1983632.19,1238998.31,742515.09,2118.79,conventional,2016,West +7,2016-11-06,1.26,4245702.35,1493574.72,867974.26,119469.87,1764683.5,1168746.58,593225.94,2710.98,conventional,2016,West +8,2016-10-30,1.26,3852439.62,1398732.86,762970.93,113342.82,1577393.01,1029899.7,545279.86,2213.45,conventional,2016,West +9,2016-10-23,1.17,4760018.22,1301893.54,1138468.74,116102.67,2203553.27,1441557.14,758232.29,3763.84,conventional,2016,West +10,2016-10-16,1.15,5308225.44,1613263.25,1052993.06,102563.1,2539406.03,1566289.88,970943.65,2172.5,conventional,2016,West +11,2016-10-09,1.13,5374797.25,1941978.26,1006693.14,98555.04,2327570.81,1433086.08,893082.67,1402.06,conventional,2016,West +12,2016-10-02,1.03,6079587.47,1560246.5,1206950.63,110878.4,3201511.94,1755945.22,1442472.3,3094.42,conventional,2016,West +13,2016-09-25,1.08,5338132.99,1763859.71,1029363.3,107712.68,2437197.3,1445592.77,987092.17,4512.36,conventional,2016,West +14,2016-09-18,1.04,5474121.64,1966754.72,1200623.82,103658.21,2203084.89,1276040.86,922977.71,4066.32,conventional,2016,West +15,2016-09-11,0.96,6097779.55,2364733.51,1265510.82,102419.92,2365115.3,1494929.03,867612.77,2573.5,conventional,2016,West +16,2016-09-04,0.92,6676702.06,2858767.17,1348831.14,111324.84,2357778.91,1344665.71,1012172.25,940.95,conventional,2016,West +17,2016-08-28,0.96,6114187.88,2276321.08,1334700.26,93943.34,2409223.2,1478205.23,928604.86,2413.11,conventional,2016,West +18,2016-08-21,0.93,6290164.89,2887138.23,1153539.96,91408.86,2158077.84,1621159.84,535021.55,1896.45,conventional,2016,West +19,2016-08-14,1.0,6127060.42,2524278.53,1212034.14,122056.89,2268690.86,1560891.12,706937.47,862.27,conventional,2016,West +20,2016-08-07,0.95,6596769.24,2858873.86,1399000.87,94460.71,2244433.8,1668013.4,571941.45,4478.95,conventional,2016,West +21,2016-07-31,1.1,5463799.79,1874227.32,1254400.92,95280.92,2239890.63,1730972.57,505626.06,3292.0,conventional,2016,West +22,2016-07-24,1.08,5556043.02,1812625.23,1301287.98,96068.39,2346061.42,1664867.92,664224.62,16968.88,conventional,2016,West +23,2016-07-17,1.02,5787378.41,1883575.14,1304616.13,95086.4,2504100.74,1822960.0,665247.85,15892.89,conventional,2016,West +24,2016-07-10,1.01,6487362.71,2293685.5,1475916.77,111309.46,2606450.98,1823295.07,762671.3,20484.61,conventional,2016,West +25,2016-07-03,0.97,6817643.13,2313258.79,1738562.93,137804.75,2628016.66,2009090.39,606174.1,12752.17,conventional,2016,West +26,2016-06-26,0.87,6862241.03,2645564.44,1532440.38,135483.56,2548752.65,1853714.65,687801.75,7236.25,conventional,2016,West +27,2016-06-19,0.86,6964845.92,2805282.99,1600273.86,140268.18,2419020.89,1643598.7,767883.69,7538.5,conventional,2016,West +28,2016-06-12,0.92,6216040.13,2213963.72,1516386.11,162974.69,2322715.61,1528937.12,787095.9,6682.59,conventional,2016,West +29,2016-06-05,0.82,7637424.02,2492773.58,2070556.97,147905.62,2926187.85,1971340.38,949755.22,5092.25,conventional,2016,West +30,2016-05-29,0.79,7568132.39,2670894.03,1834685.24,164102.2,2898450.92,1761129.51,1132669.37,4652.04,conventional,2016,West +31,2016-05-22,0.83,6642111.52,2319082.35,1642958.82,150382.82,2529687.53,1385581.32,1139276.54,4829.67,conventional,2016,West +32,2016-05-15,0.77,7486622.03,2693393.35,1778717.19,155509.69,2859001.8,1826973.6,1026237.94,5790.26,conventional,2016,West +33,2016-05-08,0.75,8706859.44,2987238.83,2488058.52,152314.08,3079248.01,1953254.58,1118633.94,7359.49,conventional,2016,West +34,2016-05-01,0.79,7158300.84,2324813.13,2013820.54,131269.35,2688397.82,1975170.33,706418.43,6809.06,conventional,2016,West +35,2016-04-24,0.78,6746174.8,2621906.13,1746409.68,130993.85,2246865.14,1582301.04,658730.78,5833.32,conventional,2016,West +36,2016-04-17,0.77,7592473.98,2283526.35,2074920.94,168334.55,3065692.14,1944100.53,1112775.44,8816.17,conventional,2016,West +37,2016-04-10,0.79,7275842.54,2750665.83,1941317.22,177612.73,2406246.76,1619230.76,780038.56,6977.44,conventional,2016,West +38,2016-04-03,0.79,6645738.99,2376641.3,1623272.79,159784.5,2486040.4,1644831.5,840392.37,816.53,conventional,2016,West +39,2016-03-27,0.78,7081399.02,2701807.88,1651027.14,190076.1,2538487.9,1771851.21,765592.73,1043.96,conventional,2016,West +40,2016-03-20,0.78,6938294.62,2557843.72,1955450.63,167407.21,2257593.06,1216115.26,1040865.95,611.85,conventional,2016,West +41,2016-03-13,0.81,6725483.24,2302275.93,1773673.19,179006.49,2470527.63,1608842.43,860619.11,1066.09,conventional,2016,West +42,2016-03-06,0.8,6903293.0,2817152.63,1691666.04,171164.48,2223309.85,1665446.71,556980.31,882.83,conventional,2016,West +43,2016-02-28,0.78,7193896.75,2394790.48,1865704.89,251937.95,2681463.43,1557228.28,1123472.59,762.56,conventional,2016,West +44,2016-02-21,0.77,7047624.39,2022750.67,2166534.86,123948.37,2734390.49,1670968.69,1062368.09,1053.71,conventional,2016,West +45,2016-02-14,0.78,6774726.47,2645973.11,1680248.49,155260.97,2293243.9,1225073.29,1064255.94,3914.67,conventional,2016,West +46,2016-02-07,0.69,9718438.84,3353158.49,2960080.17,281618.2,3123581.98,1921219.6,1187478.3,14884.08,conventional,2016,West +47,2016-01-31,0.85,6331953.73,2168765.69,1735400.35,186797.28,2240990.41,1438474.3,781447.29,21068.82,conventional,2016,West +48,2016-01-24,0.78,6118107.22,1121790.63,2113196.92,121729.44,2761390.23,1345680.31,1407886.07,7823.85,conventional,2016,West +49,2016-01-17,0.81,7221572.36,2091961.92,2079267.92,181519.92,2868822.6,1515056.35,1352291.24,1475.01,conventional,2016,West +50,2016-01-10,0.77,7438252.93,2530745.31,2193263.08,175472.09,2538772.45,1418302.47,1118953.54,1516.44,conventional,2016,West +51,2016-01-03,0.73,7707711.9,2204871.45,2638893.24,156194.56,2707752.65,1383713.06,1320163.95,3875.64,conventional,2016,West +0,2016-12-25,0.73,867992.74,484143.84,69977.4,15998.99,297872.51,130112.09,167620.42,140.0,conventional,2016,WestTexNewMexico +1,2016-12-18,0.76,790789.79,388322.1,66773.28,12379.19,323315.22,142224.29,180677.6,413.33,conventional,2016,WestTexNewMexico +2,2016-12-11,0.79,776453.82,308697.33,68324.89,12632.73,386798.87,167338.47,219187.07,273.33,conventional,2016,WestTexNewMexico +3,2016-12-04,0.85,699171.51,353339.84,66386.39,10869.1,268576.18,105842.68,162657.94,75.56,conventional,2016,WestTexNewMexico +4,2016-11-27,0.8,674184.53,415839.52,45217.58,9805.34,203322.09,104487.22,98716.81,118.06,conventional,2016,WestTexNewMexico +5,2016-11-20,0.99,670051.41,407045.54,40680.13,11622.63,210703.11,109832.07,100871.04,0.0,conventional,2016,WestTexNewMexico +6,2016-11-13,0.96,690820.58,429758.58,39757.86,14195.71,207108.43,114355.56,92752.87,0.0,conventional,2016,WestTexNewMexico +7,2016-11-06,0.99,643630.66,389129.36,47289.95,17719.27,189492.08,106571.99,82920.09,0.0,conventional,2016,WestTexNewMexico +8,2016-10-30,1.11,474480.97,230696.56,55531.58,17669.83,170583.0,77112.5,93470.5,0.0,conventional,2016,WestTexNewMexico +9,2016-10-23,1.0,620389.4,326067.93,68189.98,17487.68,208643.81,92147.36,115578.39,918.06,conventional,2016,WestTexNewMexico +10,2016-10-16,0.87,902725.42,490768.42,72347.94,13559.5,326049.56,204702.97,121346.59,0.0,conventional,2016,WestTexNewMexico +11,2016-10-09,1.05,732830.17,432642.49,61267.94,11748.36,227171.38,153534.17,73637.21,0.0,conventional,2016,WestTexNewMexico +12,2016-10-02,1.14,605034.4,326742.01,61488.36,15371.56,201432.47,131471.63,69960.84,0.0,conventional,2016,WestTexNewMexico +13,2016-09-25,1.07,598623.24,334016.4,61710.24,14663.85,188232.75,117476.89,70580.86,175.0,conventional,2016,WestTexNewMexico +14,2016-09-18,0.95,749931.49,471618.33,85785.47,12899.95,179627.74,104714.47,74913.27,0.0,conventional,2016,WestTexNewMexico +15,2016-09-11,0.73,1012039.31,689424.36,117338.63,12243.91,193032.41,111106.93,81825.48,100.0,conventional,2016,WestTexNewMexico +16,2016-09-04,0.88,863039.15,570194.15,87176.97,13318.67,192349.36,112529.49,79499.87,320.0,conventional,2016,WestTexNewMexico +17,2016-08-28,0.93,789223.6,472159.48,93803.41,12234.07,211026.64,134565.14,76391.5,70.0,conventional,2016,WestTexNewMexico +18,2016-08-21,0.92,808012.61,484477.52,87640.89,12142.01,223752.19,142739.33,81012.86,0.0,conventional,2016,WestTexNewMexico +19,2016-08-14,0.93,798986.84,449883.2,89651.56,15309.45,244142.63,159059.48,85083.15,0.0,conventional,2016,WestTexNewMexico +20,2016-08-07,0.95,816529.48,500097.71,81237.11,15436.45,219758.21,152300.82,67457.39,0.0,conventional,2016,WestTexNewMexico +21,2016-07-31,1.06,708243.4,404007.95,76077.49,15442.57,212715.39,144484.06,65764.66,2466.67,conventional,2016,WestTexNewMexico +22,2016-07-24,1.03,797993.91,432573.44,85761.86,17101.34,262557.27,169487.86,81989.41,11080.0,conventional,2016,WestTexNewMexico +23,2016-07-17,0.95,802834.4,449793.85,85497.73,16431.19,251111.63,178906.87,68996.71,3208.05,conventional,2016,WestTexNewMexico +24,2016-07-10,0.87,979053.68,571522.5,102689.06,16968.44,287873.68,187139.46,87776.17,12958.05,conventional,2016,WestTexNewMexico +25,2016-07-03,0.86,1026317.8,581532.54,106150.45,20212.32,318422.49,212681.56,91214.82,14526.11,conventional,2016,WestTexNewMexico +26,2016-06-26,0.8,1028845.61,558419.63,101284.45,23127.35,346014.18,243993.8,95170.94,6849.44,conventional,2016,WestTexNewMexico +27,2016-06-19,0.79,1048148.17,633115.26,111120.94,25373.47,278538.5,167775.05,94639.29,16124.16,conventional,2016,WestTexNewMexico +28,2016-06-12,0.82,916958.75,552199.46,94429.85,56434.44,213895.0,110853.14,87748.53,15293.33,conventional,2016,WestTexNewMexico +29,2016-06-05,0.75,1030392.53,625919.72,125188.2,41083.35,238201.26,106610.36,121450.9,10140.0,conventional,2016,WestTexNewMexico +30,2016-05-29,0.77,985833.89,556578.41,134448.46,37522.4,257284.62,107015.69,144257.82,6011.11,conventional,2016,WestTexNewMexico +31,2016-05-22,0.8,857842.32,497605.2,111206.4,50440.46,198590.26,97204.01,93102.92,8283.33,conventional,2016,WestTexNewMexico +32,2016-05-15,0.7,901217.17,581142.58,136712.42,20624.94,162737.23,97314.33,61552.9,3870.0,conventional,2016,WestTexNewMexico +33,2016-05-08,0.74,1052940.48,623286.74,183588.62,33224.01,212841.11,124984.25,83560.19,4296.67,conventional,2016,WestTexNewMexico +34,2016-05-01,0.73,926205.77,489363.62,148534.17,32607.62,255700.36,173262.3,75381.39,7056.67,conventional,2016,WestTexNewMexico +35,2016-04-24,0.77,859293.22,475418.6,155177.72,32786.12,195910.78,97308.05,96326.06,2276.67,conventional,2016,WestTexNewMexico +36,2016-04-17,0.73,944337.62,538758.64,154216.58,51745.47,199616.93,92473.19,107003.74,140.0,conventional,2016,WestTexNewMexico +37,2016-04-10,0.77,897755.55,567763.55,128899.01,32940.56,168152.43,97395.82,70756.61,0.0,conventional,2016,WestTexNewMexico +38,2016-04-03,0.73,776232.98,552528.04,80391.33,29032.63,114280.98,82969.77,31311.21,0.0,conventional,2016,WestTexNewMexico +39,2016-03-27,0.71,936600.58,638259.36,112685.01,30073.26,155582.95,99134.34,56448.61,0.0,conventional,2016,WestTexNewMexico +40,2016-03-20,0.7,932377.12,572667.0,148116.03,71017.02,140577.07,86992.57,53584.5,0.0,conventional,2016,WestTexNewMexico +41,2016-03-13,0.72,886197.95,563341.91,136619.69,36476.41,149759.94,88060.04,61699.9,0.0,conventional,2016,WestTexNewMexico +42,2016-03-06,0.77,814614.77,548260.5,108856.08,38919.31,118578.88,89574.12,29004.76,0.0,conventional,2016,WestTexNewMexico +43,2016-02-28,0.73,824072.51,532849.51,112139.39,53843.0,125240.61,84429.01,40794.93,16.67,conventional,2016,WestTexNewMexico +44,2016-02-21,0.7,840912.75,531994.93,140944.9,27799.93,140172.99,88186.62,50489.7,1496.67,conventional,2016,WestTexNewMexico +45,2016-02-14,0.7,963046.73,621734.73,151510.22,30289.17,159512.61,89653.91,56745.36,13113.34,conventional,2016,WestTexNewMexico +46,2016-02-07,0.68,1198679.87,755962.49,197733.56,74916.26,170067.56,100403.73,41471.6,28192.23,conventional,2016,WestTexNewMexico +47,2016-01-31,0.79,788831.92,512429.69,88819.79,38529.09,149053.35,94019.44,16913.91,38120.0,conventional,2016,WestTexNewMexico +48,2016-01-24,1.12,296402.96,45720.39,99167.08,16034.41,135481.08,94434.3,24812.34,16234.44,conventional,2016,WestTexNewMexico +49,2016-01-17,0.83,712937.27,440675.35,120098.37,26636.1,125527.45,89810.71,28507.85,7208.89,conventional,2016,WestTexNewMexico +50,2016-01-10,0.74,781036.73,486986.64,152838.09,16273.9,124938.1,82660.45,40944.32,1333.33,conventional,2016,WestTexNewMexico +51,2016-01-03,0.76,761760.52,419119.49,178471.03,35241.26,128928.74,94218.83,32476.58,2233.33,conventional,2016,WestTexNewMexico +0,2017-12-31,1.47,113514.42,2622.7,101135.53,20.25,9735.94,5556.98,4178.96,0.0,conventional,2017,Albany +1,2017-12-24,1.45,77039.09,2811.71,58592.23,19.06,15616.09,6863.18,8752.91,0.0,conventional,2017,Albany +2,2017-12-17,1.43,70677.56,2578.95,50811.52,79.18,17207.91,8914.13,8293.78,0.0,conventional,2017,Albany +3,2017-12-10,1.29,92325.53,3220.05,75147.56,104.36,13853.56,7268.21,6585.35,0.0,conventional,2017,Albany +4,2017-12-03,1.39,139970.0,3772.0,126551.0,136.0,9511.0,7061.0,2450.0,0.0,conventional,2017,Albany +5,2017-11-26,1.5,62977.0,2413.0,49076.0,62.0,11426.0,5059.0,6368.0,0.0,conventional,2017,Albany +6,2017-11-19,1.65,97273.0,2695.0,80596.0,43.0,13940.0,7536.0,6404.0,0.0,conventional,2017,Albany +7,2017-11-12,1.26,113586.0,4509.0,96748.0,213.0,12115.0,8006.0,4109.0,0.0,conventional,2017,Albany +8,2017-11-05,1.62,71076.94,2483.36,55509.31,33.88,13050.39,9877.42,3172.97,0.0,conventional,2017,Albany +9,2017-10-29,1.67,69432.23,2959.76,57585.49,57.94,8829.04,5050.91,3778.13,0.0,conventional,2017,Albany +10,2017-10-22,1.56,69704.09,3758.8,57340.3,35.48,8569.51,5101.64,3467.87,0.0,conventional,2017,Albany +11,2017-10-15,1.65,73574.89,3383.35,63355.37,62.45,6773.72,3882.02,2891.7,0.0,conventional,2017,Albany +12,2017-10-08,1.78,55368.61,3679.82,45843.75,42.63,5802.41,2148.2,3654.21,0.0,conventional,2017,Albany +13,2017-10-01,1.69,71205.11,4411.02,57416.25,77.85,9299.99,5069.66,4230.33,0.0,conventional,2017,Albany +14,2017-09-24,1.64,68539.64,2508.62,56023.16,74.82,9933.04,5391.35,4541.69,0.0,conventional,2017,Albany +15,2017-09-17,1.41,80109.29,3986.2,66934.64,33.59,9154.86,5289.78,3851.75,13.33,conventional,2017,Albany +16,2017-09-10,1.78,99645.88,3368.35,87155.11,136.96,8985.46,4559.36,3672.77,753.33,conventional,2017,Albany +17,2017-09-03,1.76,74297.64,4738.38,59299.03,121.57,10138.66,4615.19,3646.8,1876.67,conventional,2017,Albany +18,2017-08-27,1.61,75471.56,2156.2,59831.83,71.46,13412.07,9395.94,3709.46,306.67,conventional,2017,Albany +19,2017-08-20,1.61,74620.33,1553.71,59028.13,130.14,13908.35,8599.25,4155.77,1153.33,conventional,2017,Albany +20,2017-08-13,1.52,133070.41,1947.26,118605.14,186.67,12331.34,8301.97,3132.71,896.66,conventional,2017,Albany +21,2017-08-06,1.53,92938.17,2456.91,76509.07,336.06,13636.13,5918.21,6844.59,873.33,conventional,2017,Albany +22,2017-07-30,1.61,83599.96,1915.81,73287.66,321.62,8074.87,5552.63,1932.24,590.0,conventional,2017,Albany +23,2017-07-23,1.49,84416.61,1905.52,72533.28,940.58,9037.23,3250.3,4896.93,890.0,conventional,2017,Albany +24,2017-07-16,1.39,102461.61,2468.78,86707.66,2546.08,10739.09,4950.13,4788.96,1000.0,conventional,2017,Albany +25,2017-07-09,1.52,101331.41,2899.46,81929.02,494.51,16008.42,8213.25,5210.17,2585.0,conventional,2017,Albany +26,2017-07-02,1.56,98282.07,2808.47,79968.24,741.19,14764.17,6549.32,6584.85,1630.0,conventional,2017,Albany +27,2017-06-25,1.53,89303.04,2224.67,74282.58,129.85,12665.94,4686.34,6874.6,1105.0,conventional,2017,Albany +28,2017-06-18,1.58,97079.34,2454.01,82154.43,723.07,11747.83,3875.12,6697.71,1175.0,conventional,2017,Albany +29,2017-06-11,1.65,91949.26,1989.84,76736.87,364.68,12857.87,2704.43,8235.11,1918.33,conventional,2017,Albany +30,2017-06-04,1.7,84842.97,1923.04,72573.09,100.07,10246.77,2834.14,6342.63,1070.0,conventional,2017,Albany +31,2017-05-28,1.8,121869.11,2345.65,106690.16,105.74,12727.56,6141.75,6029.14,556.67,conventional,2017,Albany +32,2017-05-21,1.38,100256.85,2307.02,86817.51,334.01,10798.31,5338.56,5203.08,256.67,conventional,2017,Albany +33,2017-05-14,1.77,96750.67,2804.86,80469.48,196.39,13279.94,5727.85,7552.09,0.0,conventional,2017,Albany +34,2017-05-07,1.47,127193.26,2473.53,87791.87,121.07,36806.79,9600.81,27205.98,0.0,conventional,2017,Albany +35,2017-04-30,1.13,124926.39,2573.11,99451.52,81.89,22819.87,10547.36,12272.51,0.0,conventional,2017,Albany +36,2017-04-23,1.34,89327.1,4437.5,61512.84,84.45,23292.31,8236.01,15056.3,0.0,conventional,2017,Albany +37,2017-04-16,1.62,90487.05,4362.98,71957.73,161.28,14005.06,7179.98,6825.08,0.0,conventional,2017,Albany +38,2017-04-09,1.54,105436.11,3708.13,87775.86,44.28,13907.84,7121.61,6786.23,0.0,conventional,2017,Albany +39,2017-04-02,1.62,92621.11,4530.8,68015.37,97.26,19977.68,6332.44,13645.24,0.0,conventional,2017,Albany +40,2017-03-26,1.16,122951.65,3184.29,100854.22,70.17,18842.97,7252.7,11590.27,0.0,conventional,2017,Albany +41,2017-03-19,1.6,92774.61,2332.96,72033.15,140.57,18267.93,8302.27,9965.66,0.0,conventional,2017,Albany +42,2017-03-12,1.54,95713.29,2046.8,67162.63,89.32,26414.54,10990.08,15424.46,0.0,conventional,2017,Albany +43,2017-03-05,1.18,107354.25,3123.26,90784.49,57.86,13388.64,13277.29,111.35,0.0,conventional,2017,Albany +44,2017-02-26,1.4,88371.09,3190.28,73959.76,71.2,11149.85,10910.4,239.45,0.0,conventional,2017,Albany +45,2017-02-19,1.67,95475.07,2702.57,81691.54,125.48,10955.48,10784.07,171.41,0.0,conventional,2017,Albany +46,2017-02-12,1.42,97215.94,3808.43,81070.44,175.6,12161.47,11650.91,510.56,0.0,conventional,2017,Albany +47,2017-02-05,1.49,183549.08,5666.6,165530.03,2119.02,10233.43,10047.32,186.11,0.0,conventional,2017,Albany +48,2017-01-29,1.31,95424.59,3844.62,78315.15,484.56,12780.26,12393.84,382.06,4.36,conventional,2017,Albany +49,2017-01-22,1.59,128679.24,4119.94,111173.08,2191.71,11194.51,11060.19,125.5,8.82,conventional,2017,Albany +50,2017-01-15,1.55,88526.26,3327.65,71956.77,607.03,12634.81,12574.72,60.09,0.0,conventional,2017,Albany +51,2017-01-08,1.55,91728.18,3355.47,75641.23,56.91,12674.57,12606.67,67.9,0.0,conventional,2017,Albany +52,2017-01-01,1.47,129948.23,4845.77,117027.41,200.36,7874.69,7866.86,7.83,0.0,conventional,2017,Albany +0,2017-12-31,0.95,649352.59,341061.46,41818.27,961.18,265511.68,173990.02,88882.27,2639.39,conventional,2017,Atlanta +1,2017-12-24,1.11,444781.87,212413.82,30834.68,1112.56,200420.81,130079.34,66147.03,4194.44,conventional,2017,Atlanta +2,2017-12-17,1.0,484326.63,231133.4,33481.83,915.94,218795.46,153468.13,62336.11,2991.22,conventional,2017,Atlanta +3,2017-12-10,0.99,543619.28,274345.62,38433.88,1302.16,229537.62,158483.4,67567.68,3486.54,conventional,2017,Atlanta +4,2017-12-03,1.07,504933.0,263807.0,32457.0,1390.0,207280.0,137581.0,66640.0,3058.0,conventional,2017,Atlanta +5,2017-11-26,1.12,412213.0,211077.0,27773.0,903.0,172460.0,113141.0,55576.0,3743.0,conventional,2017,Atlanta +6,2017-11-19,1.13,453755.0,239860.0,31169.0,1109.0,181617.0,118386.0,61447.0,1784.0,conventional,2017,Atlanta +7,2017-11-12,1.11,518209.0,251896.0,31719.0,1398.0,233196.0,154898.0,75134.0,3164.0,conventional,2017,Atlanta +8,2017-11-05,1.08,567572.7,275749.63,32494.72,1124.72,258203.63,189677.82,66802.08,1723.73,conventional,2017,Atlanta +9,2017-10-29,1.28,493921.1,256988.66,36334.71,1083.81,199513.92,131656.43,66215.82,1641.67,conventional,2017,Atlanta +10,2017-10-22,1.49,406008.95,219172.21,35958.88,894.35,149983.51,95710.09,54265.29,8.13,conventional,2017,Atlanta +11,2017-10-15,1.64,406111.3,197442.9,34760.61,148.61,173759.18,110652.91,63067.0,39.27,conventional,2017,Atlanta +12,2017-10-08,1.6,411520.44,213442.97,32020.48,51.1,166005.89,100702.03,65197.74,106.12,conventional,2017,Atlanta +13,2017-10-01,1.55,421235.13,222683.91,45065.96,366.89,153118.37,101913.35,51196.55,8.47,conventional,2017,Atlanta +14,2017-09-24,1.5,403780.43,222498.3,45024.88,34.48,136222.77,88241.47,47954.41,26.89,conventional,2017,Atlanta +15,2017-09-17,1.59,392935.2,204374.88,47135.66,92.68,141331.98,90750.39,50425.52,156.07,conventional,2017,Atlanta +16,2017-09-10,1.54,466988.83,241057.35,47619.22,111.21,178201.05,116857.39,58868.48,2475.18,conventional,2017,Atlanta +17,2017-09-03,1.53,433455.08,235645.56,47493.42,121.59,150194.51,92866.15,54225.03,3103.33,conventional,2017,Atlanta +18,2017-08-27,1.49,458036.12,230031.71,48132.94,99.72,179771.75,116586.74,56679.85,6505.16,conventional,2017,Atlanta +19,2017-08-20,1.43,475921.53,230252.9,49199.54,27.54,196441.55,132374.71,62509.83,1557.01,conventional,2017,Atlanta +20,2017-08-13,1.37,534058.7,251178.4,62180.62,64.99,220634.69,148972.21,66092.48,5570.0,conventional,2017,Atlanta +21,2017-08-06,1.36,518140.33,252436.49,60584.7,69.99,205049.15,137139.1,60271.16,7638.89,conventional,2017,Atlanta +22,2017-07-30,1.34,472013.29,247038.63,60149.97,87.14,164737.55,105247.83,53475.11,6014.61,conventional,2017,Atlanta +23,2017-07-23,1.24,518682.51,285745.92,65016.24,150.97,167769.38,115065.44,45903.96,6799.98,conventional,2017,Atlanta +24,2017-07-16,1.2,582068.66,301471.59,63898.41,100.9,216597.76,154627.41,55794.73,6175.62,conventional,2017,Atlanta +25,2017-07-09,1.19,507337.7,233475.62,57935.64,442.12,215484.32,138657.24,69372.08,7455.0,conventional,2017,Atlanta +26,2017-07-02,1.16,528297.88,248095.78,56275.22,109.99,223816.89,136027.87,77103.34,10685.68,conventional,2017,Atlanta +27,2017-06-25,1.12,501274.14,249204.48,46343.42,149.89,205576.35,102982.83,95431.48,7162.04,conventional,2017,Atlanta +28,2017-06-18,1.2,492836.43,269328.71,49177.93,145.33,174184.46,94081.93,69712.53,10390.0,conventional,2017,Atlanta +29,2017-06-11,1.13,572838.59,318335.08,51385.66,101.41,203016.44,117300.66,78150.78,7565.0,conventional,2017,Atlanta +30,2017-06-04,1.08,710038.58,361265.98,55627.72,130.81,293014.07,174068.36,113270.71,5675.0,conventional,2017,Atlanta +31,2017-05-28,1.23,523993.71,273538.26,50236.52,354.25,199864.68,131064.06,57827.85,10972.77,conventional,2017,Atlanta +32,2017-05-21,1.2,526840.14,253792.75,49347.3,1650.7,222049.39,142077.31,70753.58,9218.5,conventional,2017,Atlanta +33,2017-05-14,1.18,568923.79,265556.05,49122.87,3491.08,250753.79,171471.84,69708.44,9573.51,conventional,2017,Atlanta +34,2017-05-07,1.1,726726.65,377225.07,72058.11,248.63,277194.84,148163.73,121006.86,8024.25,conventional,2017,Atlanta +35,2017-04-30,1.17,595539.82,304668.94,74961.15,240.51,215669.22,131644.64,75877.47,8147.11,conventional,2017,Atlanta +36,2017-04-23,1.21,530030.64,249318.38,55045.8,96.03,225570.43,138920.99,84101.48,2547.96,conventional,2017,Atlanta +37,2017-04-16,1.15,543227.58,237537.66,48907.53,143.78,256638.61,170945.65,80087.96,5605.0,conventional,2017,Atlanta +38,2017-04-09,1.23,465350.2,223170.21,48912.66,124.1,193143.23,107369.32,78978.91,6795.0,conventional,2017,Atlanta +39,2017-04-02,1.26,481933.74,226289.9,48770.22,139.77,206733.85,150546.84,52857.01,3330.0,conventional,2017,Atlanta +40,2017-03-26,1.32,443514.95,222457.31,50731.36,132.95,170193.33,108832.13,56386.2,4975.0,conventional,2017,Atlanta +41,2017-03-19,1.25,460990.81,215046.31,50085.35,147.93,195711.22,120153.69,72091.97,3465.56,conventional,2017,Atlanta +42,2017-03-12,1.21,469277.94,217624.69,48169.84,97.76,203385.65,126155.12,75894.14,1336.39,conventional,2017,Atlanta +43,2017-03-05,1.08,511362.62,237307.08,52012.07,62.73,221980.74,143650.82,77624.92,705.0,conventional,2017,Atlanta +44,2017-02-26,0.85,631507.77,302620.37,53782.78,96.57,275008.05,222151.21,50371.84,2485.0,conventional,2017,Atlanta +45,2017-02-19,0.86,563018.6,279494.45,52644.02,133.35,230746.78,171819.03,55459.69,3468.06,conventional,2017,Atlanta +46,2017-02-12,0.79,666871.06,355571.08,77241.13,325.51,233733.34,176286.09,56911.14,536.11,conventional,2017,Atlanta +47,2017-02-05,0.83,888094.87,442152.5,167181.75,412.85,278347.77,180392.3,97837.41,118.06,conventional,2017,Atlanta +48,2017-01-29,0.95,627695.79,285147.95,86150.35,219.79,256177.7,177033.34,79144.36,0.0,conventional,2017,Atlanta +49,2017-01-22,0.84,755472.09,320378.0,135920.57,179.13,298994.39,177899.15,121095.24,0.0,conventional,2017,Atlanta +50,2017-01-15,0.99,557377.82,249159.52,86964.23,169.63,221084.44,145333.47,75750.97,0.0,conventional,2017,Atlanta +51,2017-01-08,0.98,601546.19,279265.77,77758.24,319.36,244202.82,172510.89,71691.93,0.0,conventional,2017,Atlanta +52,2017-01-01,0.93,547565.88,224073.54,118926.37,337.48,204228.49,111599.58,92628.91,0.0,conventional,2017,Atlanta +0,2017-12-31,1.15,849487.62,66628.66,519460.2,4920.46,258478.3,245665.84,12812.46,0.0,conventional,2017,BaltimoreWashington +1,2017-12-24,1.41,624268.68,66338.96,363593.22,2679.6,191656.9,184571.16,7085.74,0.0,conventional,2017,BaltimoreWashington +2,2017-12-17,1.44,628735.17,67126.05,369810.83,2933.76,188864.53,177981.17,10883.36,0.0,conventional,2017,BaltimoreWashington +3,2017-12-10,1.13,940850.93,103332.38,546809.87,3979.72,286728.96,263946.3,22782.66,0.0,conventional,2017,BaltimoreWashington +4,2017-12-03,1.43,658939.0,69819.0,407522.0,3789.0,177809.0,173143.0,4666.0,0.0,conventional,2017,BaltimoreWashington +5,2017-11-26,1.43,629719.0,59916.0,377227.0,3440.0,189136.0,157579.0,31556.0,0.0,conventional,2017,BaltimoreWashington +6,2017-11-19,1.45,644740.0,64122.0,365922.0,3724.0,210972.0,167489.0,43483.0,0.0,conventional,2017,BaltimoreWashington +7,2017-11-12,1.49,658693.0,78052.0,387453.0,3925.0,189263.0,178913.0,10350.0,0.0,conventional,2017,BaltimoreWashington +8,2017-11-05,1.41,736468.07,93808.96,458177.74,4062.15,180419.22,173551.97,6867.25,0.0,conventional,2017,BaltimoreWashington +9,2017-10-29,1.55,682236.82,62566.85,434269.43,4193.34,181207.2,179693.45,1510.42,3.33,conventional,2017,BaltimoreWashington +10,2017-10-22,1.6,672066.53,60120.62,418176.99,4523.13,189245.79,184656.12,4545.23,44.44,conventional,2017,BaltimoreWashington +11,2017-10-15,1.66,667770.44,57542.76,426158.13,4901.97,179167.58,166892.17,12272.08,3.33,conventional,2017,BaltimoreWashington +12,2017-10-08,1.71,598836.97,58351.0,380897.88,4554.55,155033.54,147300.36,7733.18,0.0,conventional,2017,BaltimoreWashington +13,2017-10-01,1.59,705451.5,57840.63,461605.2,4777.48,181228.19,167895.87,13332.32,0.0,conventional,2017,BaltimoreWashington +14,2017-09-24,1.59,676498.82,58682.06,451995.87,4487.7,161333.19,158072.68,3260.51,0.0,conventional,2017,BaltimoreWashington +15,2017-09-17,1.58,664501.74,55766.21,443692.78,4745.57,160297.18,158757.44,1466.41,73.33,conventional,2017,BaltimoreWashington +16,2017-09-10,1.57,660103.83,52853.34,424593.63,5141.78,177515.08,169534.25,3197.5,4783.33,conventional,2017,BaltimoreWashington +17,2017-09-03,1.62,671504.54,58996.88,435940.98,5348.28,171218.4,168300.59,547.81,2370.0,conventional,2017,BaltimoreWashington +18,2017-08-27,1.66,653598.86,51628.46,402657.24,5171.88,194141.28,192627.66,800.29,713.33,conventional,2017,BaltimoreWashington +19,2017-08-20,1.57,691636.14,58935.48,417107.93,5204.71,210388.02,198850.69,1721.77,9815.56,conventional,2017,BaltimoreWashington +20,2017-08-13,1.48,697320.96,61461.48,431018.65,5629.49,199211.34,186157.57,8884.88,4168.89,conventional,2017,BaltimoreWashington +21,2017-08-06,1.47,695848.77,60785.37,440986.27,5324.79,188752.34,182988.33,1830.67,3933.34,conventional,2017,BaltimoreWashington +22,2017-07-30,1.47,655426.21,57622.28,399898.3,5352.26,192553.37,187554.78,1284.15,3714.44,conventional,2017,BaltimoreWashington +23,2017-07-23,1.48,692872.87,65421.16,435763.72,5663.76,186024.23,181105.06,1046.95,3872.22,conventional,2017,BaltimoreWashington +24,2017-07-16,1.48,670476.49,64407.19,415327.9,5640.71,185100.69,177112.27,886.2,7102.22,conventional,2017,BaltimoreWashington +25,2017-07-09,1.64,701869.5,64096.37,448758.2,6202.11,182812.82,170309.91,3724.85,8778.06,conventional,2017,BaltimoreWashington +26,2017-07-02,1.6,672614.37,57584.22,397714.06,6602.84,210713.25,182308.65,14659.6,13745.0,conventional,2017,BaltimoreWashington +27,2017-06-25,1.65,693972.27,57367.81,446948.93,6496.32,183159.21,167326.54,7351.56,8481.11,conventional,2017,BaltimoreWashington +28,2017-06-18,1.67,713471.14,62875.95,462835.5,6444.29,181315.4,169245.63,2474.77,9595.0,conventional,2017,BaltimoreWashington +29,2017-06-11,1.65,744158.66,65666.0,475095.67,7177.12,196219.87,184500.54,4298.5,7420.83,conventional,2017,BaltimoreWashington +30,2017-06-04,1.8,757909.72,62567.13,482039.31,7375.87,205927.41,201471.9,2167.18,2288.33,conventional,2017,BaltimoreWashington +31,2017-05-28,1.75,779183.52,66151.19,477777.76,7002.93,228251.64,221418.94,2459.09,4373.61,conventional,2017,BaltimoreWashington +32,2017-05-21,1.67,750139.67,70765.6,467149.29,7223.03,205001.75,202535.27,2203.43,263.05,conventional,2017,BaltimoreWashington +33,2017-05-14,1.59,731952.61,67663.32,394707.17,6178.07,263404.05,259582.13,2476.09,1345.83,conventional,2017,BaltimoreWashington +34,2017-05-07,1.37,1097981.24,75658.43,722001.76,10048.95,290272.1,282860.48,6800.51,611.11,conventional,2017,BaltimoreWashington +35,2017-04-30,1.69,761924.71,74466.51,471825.66,7668.11,207964.43,202998.95,4607.0,358.48,conventional,2017,BaltimoreWashington +36,2017-04-23,1.67,749186.76,69674.09,458300.03,7322.93,213889.71,197171.14,16072.74,645.83,conventional,2017,BaltimoreWashington +37,2017-04-16,1.7,717940.19,67839.51,439898.36,6834.65,203367.67,182834.46,20215.15,318.06,conventional,2017,BaltimoreWashington +38,2017-04-09,1.64,738255.19,71187.86,438985.9,6568.37,221513.06,218334.47,2510.53,668.06,conventional,2017,BaltimoreWashington +39,2017-04-02,1.5,800801.84,82571.71,493953.33,7301.92,216974.88,213697.33,1724.22,1553.33,conventional,2017,BaltimoreWashington +40,2017-03-26,1.6,739376.32,70467.54,462479.21,7285.09,199144.48,196644.22,1950.26,550.0,conventional,2017,BaltimoreWashington +41,2017-03-19,1.58,738956.53,70368.43,463108.0,6761.79,198718.31,179560.94,18501.81,655.56,conventional,2017,BaltimoreWashington +42,2017-03-12,1.6,763783.58,72820.1,476272.3,9389.51,205301.67,202870.46,2051.49,379.72,conventional,2017,BaltimoreWashington +43,2017-03-05,1.33,880326.29,84608.63,591422.21,12152.67,192142.78,190684.63,1458.15,0.0,conventional,2017,BaltimoreWashington +44,2017-02-26,1.48,814376.97,82179.16,531502.16,9921.32,190774.33,185955.28,4349.61,469.44,conventional,2017,BaltimoreWashington +45,2017-02-19,1.38,721257.38,96158.54,434568.32,9538.66,180991.86,169659.38,10733.87,598.61,conventional,2017,BaltimoreWashington +46,2017-02-12,1.24,925574.66,190311.92,538660.08,8822.74,187779.92,166227.16,19425.37,2127.39,conventional,2017,BaltimoreWashington +47,2017-02-05,1.09,1170444.52,174325.38,770463.22,29352.66,196303.26,187362.83,6286.24,2654.19,conventional,2017,BaltimoreWashington +48,2017-01-29,1.46,781538.81,81883.91,489023.96,10828.08,199802.86,193910.98,2724.14,3167.74,conventional,2017,BaltimoreWashington +49,2017-01-22,1.42,826941.93,81908.85,528125.52,22836.9,194070.66,187903.12,5693.97,473.57,conventional,2017,BaltimoreWashington +50,2017-01-15,1.48,749510.72,76382.33,472453.49,10119.64,190555.26,188395.17,2152.31,7.78,conventional,2017,BaltimoreWashington +51,2017-01-08,1.14,1029279.83,83249.92,750033.84,9793.59,186202.48,183395.1,2281.83,525.55,conventional,2017,BaltimoreWashington +52,2017-01-01,1.47,631760.81,54530.42,408952.26,14387.01,153891.12,151345.59,2542.41,3.12,conventional,2017,BaltimoreWashington +0,2017-12-31,1.13,79646.97,38196.44,1706.22,6263.0,33481.31,28764.84,4676.67,39.8,conventional,2017,Boise +1,2017-12-24,1.18,71004.42,39116.52,2348.06,4750.61,24789.23,18067.46,6638.51,83.26,conventional,2017,Boise +2,2017-12-17,1.29,65090.38,31969.34,1752.04,6655.62,24713.38,18837.14,5849.25,26.99,conventional,2017,Boise +3,2017-12-10,1.08,85496.29,53165.53,1936.25,4746.44,25648.07,19630.21,5945.47,72.39,conventional,2017,Boise +4,2017-12-03,1.14,86646.0,38662.0,1518.0,7094.0,39372.0,35079.0,4261.0,32.0,conventional,2017,Boise +5,2017-11-26,1.44,54681.0,28307.0,1707.0,5116.0,19551.0,14540.0,4914.0,96.0,conventional,2017,Boise +6,2017-11-19,1.42,60602.0,31177.0,2085.0,5660.0,21681.0,14002.0,7421.0,258.0,conventional,2017,Boise +7,2017-11-12,1.23,81827.0,37876.0,2047.0,4630.0,37274.0,32441.0,4811.0,21.0,conventional,2017,Boise +8,2017-11-05,1.21,81104.74,40651.49,1848.89,4629.02,33975.34,29560.96,4359.84,54.54,conventional,2017,Boise +9,2017-10-29,1.44,68520.83,33724.32,2180.13,4757.31,27859.07,22077.2,5728.7,53.17,conventional,2017,Boise +10,2017-10-22,1.43,83842.86,49926.45,2947.99,4055.92,26912.5,23454.01,3437.2,21.29,conventional,2017,Boise +11,2017-10-15,1.83,58062.2,30892.83,2910.65,5019.97,19238.75,13508.39,5695.44,34.92,conventional,2017,Boise +12,2017-10-08,1.89,56087.36,28952.89,2680.35,6108.0,18346.12,13229.38,4986.8,129.94,conventional,2017,Boise +13,2017-10-01,1.8,58602.78,33499.14,2015.33,5127.6,17960.71,12675.91,5242.7,42.1,conventional,2017,Boise +14,2017-09-24,1.78,56671.53,29755.87,1936.46,5658.57,19320.63,13553.63,5756.46,10.54,conventional,2017,Boise +15,2017-09-17,1.73,65336.49,35146.94,2637.92,5498.75,22052.88,15258.22,6770.69,23.97,conventional,2017,Boise +16,2017-09-10,1.76,66479.27,36441.41,2816.58,6160.18,21061.1,13679.37,7241.83,139.9,conventional,2017,Boise +17,2017-09-03,1.68,64354.65,30130.01,3171.02,6522.54,24531.08,18158.21,6319.14,53.73,conventional,2017,Boise +18,2017-08-27,1.3,93803.53,45399.28,2514.25,6033.78,39856.22,35502.76,4335.74,17.72,conventional,2017,Boise +19,2017-08-20,1.37,88030.54,42285.45,2840.46,7323.21,35581.42,29076.01,6495.06,10.35,conventional,2017,Boise +20,2017-08-13,1.51,70716.83,36652.25,3646.53,5544.33,24873.72,16648.41,8222.39,2.92,conventional,2017,Boise +21,2017-08-06,1.54,73710.09,37252.55,3802.7,7644.86,25009.98,16530.36,8380.66,98.96,conventional,2017,Boise +22,2017-07-30,1.54,72020.82,36727.08,3472.94,7264.42,24556.38,15602.2,8946.81,7.37,conventional,2017,Boise +23,2017-07-23,1.51,70783.8,36289.63,3129.5,7061.55,24303.12,15903.64,8360.3,39.18,conventional,2017,Boise +24,2017-07-16,1.49,72245.09,35748.28,3543.6,8951.08,24002.13,15218.69,8708.17,75.27,conventional,2017,Boise +25,2017-07-09,0.98,125786.14,47772.28,3135.19,7817.34,67061.33,66747.7,308.71,4.92,conventional,2017,Boise +26,2017-07-02,1.17,97408.49,41134.31,3402.67,8606.69,44264.82,44184.81,24.45,55.56,conventional,2017,Boise +27,2017-06-25,1.2,95071.28,41340.98,3573.62,7667.69,42488.99,42360.01,52.46,76.52,conventional,2017,Boise +28,2017-06-18,1.21,92906.33,40471.78,3263.11,8414.51,40756.93,40688.09,26.66,42.18,conventional,2017,Boise +29,2017-06-11,1.21,92547.42,40250.67,2998.49,8103.35,41194.91,41167.77,19.07,8.07,conventional,2017,Boise +30,2017-06-04,1.19,98460.27,42302.58,3757.52,7950.05,44450.12,44427.36,11.47,11.29,conventional,2017,Boise +31,2017-05-28,1.21,100415.9,40637.11,3548.36,10210.41,46020.02,45988.11,20.42,11.49,conventional,2017,Boise +32,2017-05-21,1.29,86532.91,35312.23,3430.4,10330.63,37459.65,37442.6,8.8,8.25,conventional,2017,Boise +33,2017-05-14,1.2,94466.25,38987.28,2778.88,9358.25,43341.84,41044.26,2292.62,4.96,conventional,2017,Boise +34,2017-05-07,1.09,121483.27,60550.46,3285.18,9701.89,47945.74,45880.43,2055.34,9.97,conventional,2017,Boise +35,2017-04-30,1.03,109119.0,41327.06,2195.12,9316.9,56279.92,56263.68,2.95,13.29,conventional,2017,Boise +36,2017-04-23,1.14,93656.08,41816.24,2688.06,9753.54,39398.24,39291.24,85.45,21.55,conventional,2017,Boise +37,2017-04-16,1.15,99410.94,43003.22,3555.37,9548.66,43303.69,43271.03,29.36,3.3,conventional,2017,Boise +38,2017-04-09,1.21,95508.38,39291.67,4115.55,10280.71,41820.45,41795.02,15.56,9.87,conventional,2017,Boise +39,2017-04-02,1.2,94905.4,41043.29,3616.58,9919.67,40325.86,40187.35,115.56,22.95,conventional,2017,Boise +40,2017-03-26,1.16,95292.56,43566.18,4140.76,8899.3,38686.32,38139.14,517.97,29.21,conventional,2017,Boise +41,2017-03-19,1.15,86727.42,33891.7,3887.21,9034.34,39914.17,39041.29,834.37,38.51,conventional,2017,Boise +42,2017-03-12,0.98,112776.1,33062.31,9415.52,9975.45,60322.82,58419.56,1777.12,126.14,conventional,2017,Boise +43,2017-03-05,1.11,93814.08,29234.27,5256.5,12115.21,47208.1,32638.67,14550.61,18.82,conventional,2017,Boise +44,2017-02-26,0.91,105023.56,31701.22,5199.76,11562.8,56559.78,38256.67,18258.12,44.99,conventional,2017,Boise +45,2017-02-19,0.94,107721.63,33444.06,7191.92,9936.27,57149.38,45026.93,11989.28,133.17,conventional,2017,Boise +46,2017-02-12,0.98,97785.46,41600.65,4101.11,9261.32,42822.38,41656.91,1141.72,23.75,conventional,2017,Boise +47,2017-02-05,0.9,136090.67,36808.59,11333.87,23346.13,64602.08,61439.09,3116.04,46.95,conventional,2017,Boise +48,2017-01-29,0.93,105132.82,35677.85,6532.78,9559.2,53362.99,36294.3,17043.36,25.33,conventional,2017,Boise +49,2017-01-22,1.01,88317.73,34251.49,5626.82,8313.98,40125.44,34932.06,5155.3,38.08,conventional,2017,Boise +50,2017-01-15,1.0,94156.43,36085.47,4773.66,10056.51,43240.79,38975.02,4039.78,225.99,conventional,2017,Boise +51,2017-01-08,1.02,103788.25,35596.88,7162.53,12143.68,48885.16,40257.37,8607.03,20.76,conventional,2017,Boise +52,2017-01-01,0.92,104510.11,27845.16,9408.92,11341.75,55914.28,53093.47,2793.61,27.2,conventional,2017,Boise +0,2017-12-31,1.4,419696.59,9622.52,325398.02,2061.91,82614.14,65868.23,16745.91,0.0,conventional,2017,Boston +1,2017-12-24,1.45,414147.94,10726.67,312860.91,1638.5,88921.86,75107.0,13814.86,0.0,conventional,2017,Boston +2,2017-12-17,1.28,516770.62,10139.25,413484.37,3836.18,89310.82,74552.8,14758.02,0.0,conventional,2017,Boston +3,2017-12-10,1.14,687251.82,13210.49,557434.99,2169.35,114436.99,93125.7,21311.29,0.0,conventional,2017,Boston +4,2017-12-03,1.4,488588.0,12171.0,386056.0,1901.0,88460.0,66539.0,21921.0,0.0,conventional,2017,Boston +5,2017-11-26,1.39,423778.0,10677.0,304833.0,2073.0,106195.0,65656.0,40538.0,0.0,conventional,2017,Boston +6,2017-11-19,1.36,476236.0,11494.0,341486.0,2365.0,120892.0,77117.0,43775.0,0.0,conventional,2017,Boston +7,2017-11-12,1.23,639092.0,15689.0,533027.0,5720.0,84655.0,74568.0,10086.0,0.0,conventional,2017,Boston +8,2017-11-05,1.49,440972.34,13002.8,334875.51,2014.44,91079.59,74159.79,16919.8,0.0,conventional,2017,Boston +9,2017-10-29,1.49,465106.32,14781.17,360615.41,2145.15,87564.59,74278.47,13286.12,0.0,conventional,2017,Boston +10,2017-10-22,1.48,435243.72,19871.3,328476.35,2432.68,84463.39,81134.22,3329.17,0.0,conventional,2017,Boston +11,2017-10-15,1.59,418233.95,20138.49,331423.32,2218.03,64454.11,57500.31,6953.8,0.0,conventional,2017,Boston +12,2017-10-08,1.61,451608.73,16621.16,322931.92,1266.34,110789.31,76160.93,34628.38,0.0,conventional,2017,Boston +13,2017-10-01,1.62,482271.83,14889.71,366122.85,1797.71,99461.56,71620.46,27841.1,0.0,conventional,2017,Boston +14,2017-09-24,1.62,498019.71,10697.54,384522.4,1718.59,101081.18,67635.26,33422.59,23.33,conventional,2017,Boston +15,2017-09-17,1.58,462796.84,11826.63,323528.38,1322.39,126119.44,89622.85,36416.59,80.0,conventional,2017,Boston +16,2017-09-10,1.63,524513.26,10795.32,394645.36,1483.54,117589.04,97862.02,18127.02,1600.0,conventional,2017,Boston +17,2017-09-03,1.81,457862.0,10210.08,333916.08,1478.63,112257.21,83323.67,27043.54,1890.0,conventional,2017,Boston +18,2017-08-27,1.79,455915.26,7262.03,319717.74,1534.57,127400.92,89674.49,36986.43,740.0,conventional,2017,Boston +19,2017-08-20,1.77,474982.44,6723.39,328845.89,1675.13,137738.03,90348.04,44267.77,3122.22,conventional,2017,Boston +20,2017-08-13,1.52,624419.06,7302.93,492068.56,2985.05,122062.52,78320.7,40848.48,2893.34,conventional,2017,Boston +21,2017-08-06,1.55,604758.68,8619.19,470232.85,3211.56,122695.08,85619.14,35182.6,1893.34,conventional,2017,Boston +22,2017-07-30,1.48,568255.53,8414.57,429987.0,3326.4,126527.56,96106.82,29390.74,1030.0,conventional,2017,Boston +23,2017-07-23,1.37,686734.63,7993.86,556263.37,6107.14,116370.26,77917.97,35935.62,2516.67,conventional,2017,Boston +24,2017-07-16,1.56,594015.93,9162.09,463806.98,3825.67,117221.19,76876.7,38373.38,1971.11,conventional,2017,Boston +25,2017-07-09,1.69,560021.69,8735.91,464670.36,3962.9,82652.52,75760.19,4052.33,2840.0,conventional,2017,Boston +26,2017-07-02,1.67,545128.14,6572.32,437068.51,4890.2,96597.11,88408.03,5364.08,2825.0,conventional,2017,Boston +27,2017-06-25,1.68,545889.03,5987.76,434222.79,3399.3,102279.18,94362.33,5241.02,2675.83,conventional,2017,Boston +28,2017-06-18,1.66,581303.33,5379.22,452146.49,3286.69,120490.93,112280.36,5416.4,2794.17,conventional,2017,Boston +29,2017-06-11,1.72,583709.06,5556.48,457512.97,3039.46,117600.15,109052.09,5650.84,2897.22,conventional,2017,Boston +30,2017-06-04,1.73,590580.03,5139.73,460653.96,3075.67,121710.67,115907.4,5366.6,436.67,conventional,2017,Boston +31,2017-05-28,1.73,602637.88,5970.3,460430.96,2755.68,133480.94,127580.75,4926.86,973.33,conventional,2017,Boston +32,2017-05-21,1.69,572421.46,5555.84,441357.29,3222.88,122285.45,117070.57,5154.88,60.0,conventional,2017,Boston +33,2017-05-14,1.62,610348.46,5152.68,448442.71,3462.02,153291.05,146852.13,6280.59,158.33,conventional,2017,Boston +34,2017-05-07,1.49,676849.88,6703.2,493447.52,6088.75,170610.41,148966.58,20450.77,1193.06,conventional,2017,Boston +35,2017-04-30,1.61,603284.31,5758.71,467084.4,3505.87,126935.33,114534.76,11768.63,631.94,conventional,2017,Boston +36,2017-04-23,1.63,520793.48,9577.17,382449.77,3293.6,125472.94,104839.16,20633.78,0.0,conventional,2017,Boston +37,2017-04-16,1.61,592049.78,7319.25,437483.37,3589.29,143657.87,124789.29,17115.8,1752.78,conventional,2017,Boston +38,2017-04-09,1.53,629799.49,5715.72,450287.22,3497.44,170299.11,149094.59,21204.52,0.0,conventional,2017,Boston +39,2017-04-02,1.56,571902.2,7962.51,427483.9,3484.11,132971.68,115541.17,17430.51,0.0,conventional,2017,Boston +40,2017-03-26,1.51,550948.58,6860.31,412840.77,3403.92,127843.58,115695.54,11461.93,686.11,conventional,2017,Boston +41,2017-03-19,1.54,540540.5,5709.44,425273.84,3736.16,105821.06,87773.26,18047.8,0.0,conventional,2017,Boston +42,2017-03-12,1.55,495117.57,5729.95,389749.89,3675.15,95962.58,75284.64,20014.05,663.89,conventional,2017,Boston +43,2017-03-05,1.3,620307.93,9208.87,529716.12,5832.2,75550.74,75014.84,535.9,0.0,conventional,2017,Boston +44,2017-02-26,1.24,599178.18,11751.2,489161.87,5887.27,92377.84,88862.29,3515.55,0.0,conventional,2017,Boston +45,2017-02-19,1.31,521125.33,27790.5,391316.37,5419.01,96599.45,88030.23,8569.22,0.0,conventional,2017,Boston +46,2017-02-12,1.12,791126.41,83640.38,593329.02,11050.66,103106.35,97915.93,5190.42,0.0,conventional,2017,Boston +47,2017-02-05,1.19,772110.18,50889.62,594522.97,7080.99,119616.6,119075.0,541.6,0.0,conventional,2017,Boston +48,2017-01-29,1.32,604106.12,5792.32,464828.97,6111.1,127373.73,126000.39,1373.34,0.0,conventional,2017,Boston +49,2017-01-22,1.26,663735.14,4741.15,526892.92,11138.94,120962.13,118685.31,2276.82,0.0,conventional,2017,Boston +50,2017-01-15,1.3,577976.65,5430.5,457448.44,8522.37,106575.34,106091.75,483.59,0.0,conventional,2017,Boston +51,2017-01-08,1.09,730358.49,7543.51,605624.94,9300.68,107889.36,107796.03,93.33,0.0,conventional,2017,Boston +52,2017-01-01,1.29,458830.49,4119.9,371223.34,3933.72,79553.53,79339.78,213.75,0.0,conventional,2017,Boston +0,2017-12-31,1.27,115508.29,5924.57,62632.07,25.0,46926.65,37397.52,9529.13,0.0,conventional,2017,BuffaloRochester +1,2017-12-24,1.28,127375.45,7430.89,72517.2,27.0,47400.36,43236.49,4163.87,0.0,conventional,2017,BuffaloRochester +2,2017-12-17,1.26,108352.42,7563.23,57326.4,39.68,43423.11,38800.9,4622.21,0.0,conventional,2017,BuffaloRochester +3,2017-12-10,1.25,127279.28,7934.47,63389.74,61.68,55893.39,51672.86,4220.53,0.0,conventional,2017,BuffaloRochester +4,2017-12-03,1.13,153282.0,7805.0,87461.0,42.0,57974.0,54677.0,3297.0,0.0,conventional,2017,BuffaloRochester +5,2017-11-26,1.23,102658.0,6353.0,50509.0,26.0,45769.0,40451.0,5319.0,0.0,conventional,2017,BuffaloRochester +6,2017-11-19,1.3,112445.0,8870.0,55800.0,75.0,47700.0,36898.0,10802.0,0.0,conventional,2017,BuffaloRochester +7,2017-11-12,1.37,118434.0,10402.0,55305.0,48.0,52678.0,45324.0,7354.0,0.0,conventional,2017,BuffaloRochester +8,2017-11-05,1.37,115630.87,9707.4,54119.19,58.11,51746.17,19894.72,31804.78,46.67,conventional,2017,BuffaloRochester +9,2017-10-29,1.36,121815.11,11383.36,53894.54,38.11,56499.1,15584.79,40914.31,0.0,conventional,2017,BuffaloRochester +10,2017-10-22,1.5,90910.72,24441.32,39988.75,61.44,26419.21,21739.67,4679.54,0.0,conventional,2017,BuffaloRochester +11,2017-10-15,1.5,86880.78,26274.97,40394.56,32.89,20178.36,14836.88,5341.48,0.0,conventional,2017,BuffaloRochester +12,2017-10-08,1.49,102625.05,25376.77,31576.96,38.61,45632.71,25278.83,20353.88,0.0,conventional,2017,BuffaloRochester +13,2017-10-01,1.53,96291.55,22791.7,42861.77,36.62,30601.46,16985.8,13615.66,0.0,conventional,2017,BuffaloRochester +14,2017-09-24,1.42,121501.78,11991.22,52356.55,31.2,57122.81,50015.1,7107.71,0.0,conventional,2017,BuffaloRochester +15,2017-09-17,1.37,140652.67,7007.92,59413.46,47.77,74183.52,60985.17,12841.68,356.67,conventional,2017,BuffaloRochester +16,2017-09-10,1.46,142196.93,2860.33,66980.46,31.37,72324.77,63253.04,6368.4,2703.33,conventional,2017,BuffaloRochester +17,2017-09-03,1.56,135280.49,2894.04,67610.93,39.76,64735.76,56628.27,6698.6,1408.89,conventional,2017,BuffaloRochester +18,2017-08-27,1.33,147839.98,1871.7,74398.45,19.56,71550.27,71041.38,18.89,490.0,conventional,2017,BuffaloRochester +19,2017-08-20,1.34,142109.31,2619.19,71900.58,11.18,67578.36,64906.14,102.22,2570.0,conventional,2017,BuffaloRochester +20,2017-08-13,1.32,144618.71,2321.06,60729.79,18.73,81549.13,79458.02,107.78,1983.33,conventional,2017,BuffaloRochester +21,2017-08-06,1.32,155635.24,2068.33,78780.02,42.94,74743.95,73066.17,84.45,1593.33,conventional,2017,BuffaloRochester +22,2017-07-30,1.32,146069.4,1769.04,65452.36,40.32,78807.68,76952.12,592.23,1263.33,conventional,2017,BuffaloRochester +23,2017-07-23,1.34,148098.37,1917.57,67607.83,37.44,78535.53,76394.42,331.11,1810.0,conventional,2017,BuffaloRochester +24,2017-07-16,1.35,144761.54,1791.21,72328.87,35.75,70605.71,68146.82,47.78,2411.11,conventional,2017,BuffaloRochester +25,2017-07-09,1.31,166851.73,2075.7,80022.52,55.72,84697.79,78261.38,641.41,5795.0,conventional,2017,BuffaloRochester +26,2017-07-02,1.34,144309.09,1954.36,80410.59,105.58,61838.56,55195.58,3167.98,3475.0,conventional,2017,BuffaloRochester +27,2017-06-25,1.46,115902.44,1954.58,77254.88,59.58,36633.4,32337.84,945.56,3350.0,conventional,2017,BuffaloRochester +28,2017-06-18,1.5,129734.97,2124.28,82873.3,101.12,44636.27,40583.35,700.42,3352.5,conventional,2017,BuffaloRochester +29,2017-06-11,1.62,114081.68,1737.4,75551.59,78.57,36714.12,30261.23,1937.89,4515.0,conventional,2017,BuffaloRochester +30,2017-06-04,1.6,145203.51,1453.91,80512.88,57.58,63179.14,59568.9,1656.91,1953.33,conventional,2017,BuffaloRochester +31,2017-05-28,1.64,160484.02,1588.75,75152.52,109.42,83633.33,81516.96,1153.04,963.33,conventional,2017,BuffaloRochester +32,2017-05-21,1.71,139635.02,1486.31,72163.62,56.41,65928.68,63239.7,2270.93,418.05,conventional,2017,BuffaloRochester +33,2017-05-14,1.55,152142.57,1761.8,66532.44,134.29,83714.04,82649.46,1064.58,0.0,conventional,2017,BuffaloRochester +34,2017-05-07,1.71,174746.25,1772.26,87260.23,209.65,85504.11,84212.76,1291.35,0.0,conventional,2017,BuffaloRochester +35,2017-04-30,1.54,178864.17,1803.39,83395.01,45.64,93620.13,91172.9,2447.23,0.0,conventional,2017,BuffaloRochester +36,2017-04-23,1.55,147244.2,2554.61,70195.44,39.89,74454.26,72228.55,2225.71,0.0,conventional,2017,BuffaloRochester +37,2017-04-16,1.54,166089.23,3103.77,70001.59,36.44,92947.43,87097.48,5849.95,0.0,conventional,2017,BuffaloRochester +38,2017-04-09,1.56,172946.22,1954.15,80632.6,48.8,90310.67,38343.57,51967.1,0.0,conventional,2017,BuffaloRochester +39,2017-04-02,1.54,167364.95,3854.74,73053.91,42.0,90414.3,64653.94,25760.36,0.0,conventional,2017,BuffaloRochester +40,2017-03-26,1.53,156787.69,2184.26,67000.84,53.28,87549.31,86727.99,821.32,0.0,conventional,2017,BuffaloRochester +41,2017-03-19,1.54,151459.46,1917.68,72621.77,74.38,76845.63,73724.45,3121.18,0.0,conventional,2017,BuffaloRochester +42,2017-03-12,1.48,165974.96,1457.31,85677.37,28.0,78812.28,56757.21,22055.07,0.0,conventional,2017,BuffaloRochester +43,2017-03-05,1.68,140468.86,1420.89,75283.75,46.33,63717.89,63652.74,65.15,0.0,conventional,2017,BuffaloRochester +44,2017-02-26,1.69,122294.43,1195.92,71329.25,44.92,49724.34,49518.0,206.34,0.0,conventional,2017,BuffaloRochester +45,2017-02-19,1.68,109808.8,1360.81,62449.93,33.22,45964.84,44232.0,1732.84,0.0,conventional,2017,BuffaloRochester +46,2017-02-12,1.56,135286.7,1773.3,71050.71,110.87,62351.82,58032.13,4319.69,0.0,conventional,2017,BuffaloRochester +47,2017-02-05,1.4,188582.23,1561.11,97167.09,116.1,89737.93,89664.64,73.29,0.0,conventional,2017,BuffaloRochester +48,2017-01-29,1.37,163136.7,1541.69,72000.86,111.33,89482.82,87723.55,1253.71,505.56,conventional,2017,BuffaloRochester +49,2017-01-22,1.34,160924.52,1691.65,70336.67,56.29,88839.91,86197.69,2642.22,0.0,conventional,2017,BuffaloRochester +50,2017-01-15,1.29,168230.55,2011.96,68322.14,53.84,97842.61,96319.5,1523.11,0.0,conventional,2017,BuffaloRochester +51,2017-01-08,1.37,158267.23,1506.69,83906.44,65.83,72788.27,72703.02,85.25,0.0,conventional,2017,BuffaloRochester +52,2017-01-01,1.43,105349.04,1285.48,58531.95,102.52,45429.09,45155.38,255.65,18.06,conventional,2017,BuffaloRochester +0,2017-12-31,0.93,7132711.23,2280934.17,3201737.11,111845.09,1538194.86,1461095.1,20553.6,56546.16,conventional,2017,California +1,2017-12-24,1.13,5346535.57,1934361.67,1934710.69,116855.41,1360607.8,1277612.22,21328.12,61667.46,conventional,2017,California +2,2017-12-17,0.98,6205211.05,1901831.08,2877209.2,115250.14,1310920.63,1229946.93,21220.86,59752.84,conventional,2017,California +3,2017-12-10,1.06,5715712.21,2234102.17,2013200.4,90168.26,1378241.38,1291298.72,27353.79,59588.87,conventional,2017,California +4,2017-12-03,1.09,5544556.0,2333912.0,1660573.0,100234.0,1449838.0,1365781.0,30856.0,53201.0,conventional,2017,California +5,2017-11-26,1.3,4392810.0,1734281.0,1354966.0,121946.0,1181616.0,1093008.0,27254.0,61354.0,conventional,2017,California +6,2017-11-19,1.26,4782021.0,1879513.0,1360694.0,107055.0,1434759.0,1328429.0,47615.0,58715.0,conventional,2017,California +7,2017-11-12,1.15,5637795.0,2309785.0,1882561.0,108415.0,1337035.0,1248089.0,30662.0,58284.0,conventional,2017,California +8,2017-11-05,1.15,5663438.53,2148627.4,2224529.18,108333.63,1181948.32,1105519.8,20488.19,55940.33,conventional,2017,California +9,2017-10-29,1.2,5714676.89,1981731.12,2384845.53,125816.68,1222283.56,1165130.71,22762.03,34390.82,conventional,2017,California +10,2017-10-22,1.53,4420877.4,1604916.52,1779177.98,123891.36,912891.54,856748.54,21482.38,34660.62,conventional,2017,California +11,2017-10-15,1.68,4066640.98,1348029.41,1699672.65,137027.4,881911.52,822315.27,22733.62,36862.63,conventional,2017,California +12,2017-10-08,1.74,4151444.41,1377101.0,1829530.74,138380.27,806432.4,747128.46,25531.54,33772.4,conventional,2017,California +13,2017-10-01,1.77,3870633.16,1288266.68,1608863.15,120405.29,853098.04,794746.4,25612.08,32739.56,conventional,2017,California +14,2017-09-24,1.74,3937000.67,1383479.62,1575761.37,119703.21,858056.47,801572.79,24211.83,32271.85,conventional,2017,California +15,2017-09-17,1.72,4167531.38,1571529.56,1556655.98,128019.39,911326.45,860705.01,18473.03,32148.41,conventional,2017,California +16,2017-09-10,1.71,4380657.13,1677368.14,1599511.35,141899.49,961878.15,904618.47,19579.65,37680.03,conventional,2017,California +17,2017-09-03,1.65,4648718.22,1856634.4,1720930.65,168178.12,902975.05,839519.87,21358.39,42096.79,conventional,2017,California +18,2017-08-27,1.78,4360013.67,1889886.87,1420373.34,157338.07,892415.39,830646.31,19482.22,42286.86,conventional,2017,California +19,2017-08-20,1.64,4524974.68,1995269.12,1293180.21,165218.13,1071307.22,986592.65,33841.83,50872.74,conventional,2017,California +20,2017-08-13,1.26,5862368.39,2346710.99,2079376.28,190313.03,1245968.09,1160556.19,32819.18,52592.72,conventional,2017,California +21,2017-08-06,1.36,5655955.05,2313742.61,1892140.35,159763.39,1290308.7,1201486.97,30452.62,58369.11,conventional,2017,California +22,2017-07-30,1.38,5571000.96,2179199.68,2206571.02,152942.18,1032288.08,948516.41,28336.99,55434.68,conventional,2017,California +23,2017-07-23,1.46,5188483.1,2201004.96,1738865.16,151424.79,1097188.19,1018813.29,20424.08,57950.82,conventional,2017,California +24,2017-07-16,1.49,5405190.35,2319570.09,1821613.01,178446.19,1085561.06,1007608.04,22434.17,55518.85,conventional,2017,California +25,2017-07-09,1.28,6499668.48,2634902.26,1818682.87,207945.39,1838137.96,1767976.83,5214.88,64946.25,conventional,2017,California +26,2017-07-02,1.28,6607292.61,2527123.67,1942683.02,224121.48,1913364.44,1844798.2,4337.49,64228.75,conventional,2017,California +27,2017-06-25,1.15,6999255.87,2706875.38,1977949.64,191069.11,2123361.74,2061235.1,5202.82,56923.82,conventional,2017,California +28,2017-06-18,1.2,6599048.85,2691571.96,1650089.15,191313.38,2066074.36,1989158.83,5912.72,71002.81,conventional,2017,California +29,2017-06-11,1.22,6177216.24,2302944.62,1517908.04,188258.15,2168105.43,2095827.24,5598.97,66679.22,conventional,2017,California +30,2017-06-04,1.2,6507093.57,2378539.46,1580024.38,141320.44,2407209.29,2348867.54,4428.25,53913.5,conventional,2017,California +31,2017-05-28,1.32,6160751.92,2307940.04,1793496.44,153502.24,1905813.2,1829396.11,3223.85,73193.24,conventional,2017,California +32,2017-05-21,1.35,5599003.03,2077113.57,1627754.26,137755.31,1756379.89,1685046.63,3942.61,67390.65,conventional,2017,California +33,2017-05-14,1.17,6370622.3,2375685.35,1570244.89,134825.51,2289866.55,2216400.16,4798.87,68667.52,conventional,2017,California +34,2017-05-07,1.08,7872203.23,2851510.24,2470795.47,150595.46,2399302.06,2314634.27,3601.53,81066.26,conventional,2017,California +35,2017-04-30,1.25,5889669.2,2197824.46,1689225.61,157508.63,1845110.5,1770413.98,2532.7,72163.82,conventional,2017,California +36,2017-04-23,1.26,5637299.78,2027854.71,1521895.03,162006.91,1925543.13,1849562.53,6322.77,69657.83,conventional,2017,California +37,2017-04-16,1.34,5442086.44,2047142.24,1572972.43,163002.25,1658969.52,1585488.4,1756.03,71725.09,conventional,2017,California +38,2017-04-09,1.13,6249182.98,1926187.79,2128867.47,161909.09,2032218.63,1957058.55,13132.9,62027.18,conventional,2017,California +39,2017-04-02,1.22,5719811.06,1856672.56,1580307.3,150682.37,2132148.83,2059479.45,16199.12,56470.26,conventional,2017,California +40,2017-03-26,1.33,5073070.91,1693588.76,1542979.33,138133.01,1698369.81,1629800.46,1991.84,66577.51,conventional,2017,California +41,2017-03-19,1.31,5328958.01,1857645.04,1555271.43,143586.99,1772454.55,1709046.29,5147.16,58261.1,conventional,2017,California +42,2017-03-12,1.31,5208101.86,1871004.41,1577127.23,156629.51,1603340.71,1528139.92,7223.59,67977.2,conventional,2017,California +43,2017-03-05,1.15,5634150.07,1961188.27,1720072.57,161251.98,1791637.25,1727384.52,9179.36,55073.37,conventional,2017,California +44,2017-02-26,0.95,6342089.92,2193499.5,2038284.77,155642.35,1954663.3,1870562.62,42309.14,41791.54,conventional,2017,California +45,2017-02-19,0.95,6194368.66,1999799.14,2098407.09,177817.01,1918345.42,1728825.22,145454.71,44065.49,conventional,2017,California +46,2017-02-12,0.79,6862176.64,2429385.13,1870884.97,158534.53,2403372.01,2247565.14,101368.24,54438.63,conventional,2017,California +47,2017-02-05,0.67,11213596.29,3986429.59,3550403.07,214137.93,3462625.7,3403581.49,7838.83,51205.38,conventional,2017,California +48,2017-01-29,0.76,8055482.07,3009291.31,2295856.21,148335.97,2601998.58,2504421.68,48343.02,49233.88,conventional,2017,California +49,2017-01-22,0.76,8153340.48,3089603.62,2659661.41,106559.24,2297516.21,2207074.93,61563.24,28878.04,conventional,2017,California +50,2017-01-15,0.93,6656554.36,2075029.62,2450277.12,95137.62,2036110.0,1910596.03,99912.91,25601.06,conventional,2017,California +51,2017-01-08,1.0,6653048.21,1988635.39,2569566.25,109029.01,1985817.56,1807926.97,144375.5,33515.09,conventional,2017,California +52,2017-01-01,0.89,7175276.66,2266313.37,2877688.31,90899.53,1940375.45,1762033.74,151333.95,27007.76,conventional,2017,California +0,2017-12-31,0.93,346356.5,60766.53,108930.41,6349.26,170310.3,162934.08,7369.55,6.67,conventional,2017,Charlotte +1,2017-12-24,1.33,182537.83,53317.48,58732.18,3839.91,66648.26,63206.54,3441.72,0.0,conventional,2017,Charlotte +2,2017-12-17,1.26,189529.04,58017.31,56564.52,3658.03,71289.18,66708.48,4580.7,0.0,conventional,2017,Charlotte +3,2017-12-10,1.02,277528.93,58726.14,60515.61,4428.39,153858.79,146050.48,7808.31,0.0,conventional,2017,Charlotte +4,2017-12-03,1.26,220837.0,58826.0,94262.0,4556.0,63193.0,59298.0,3895.0,0.0,conventional,2017,Charlotte +5,2017-11-26,1.4,170412.0,45363.0,56764.0,3742.0,64544.0,61925.0,2619.0,0.0,conventional,2017,Charlotte +6,2017-11-19,1.4,179011.0,47542.0,59312.0,3820.0,68336.0,65221.0,3115.0,0.0,conventional,2017,Charlotte +7,2017-11-12,1.44,190445.0,53681.0,65657.0,4551.0,66556.0,62017.0,4539.0,0.0,conventional,2017,Charlotte +8,2017-11-05,1.47,187381.18,46741.48,65173.5,4855.57,70610.63,66781.57,3829.06,0.0,conventional,2017,Charlotte +9,2017-10-29,1.49,183224.98,52951.42,62872.0,4716.56,62685.0,56997.63,5687.37,0.0,conventional,2017,Charlotte +10,2017-10-22,1.64,168237.31,44543.75,65040.05,4652.86,54000.65,50704.73,3295.92,0.0,conventional,2017,Charlotte +11,2017-10-15,1.7,175323.3,45266.57,68119.98,5567.33,56369.42,49194.6,7172.6,2.22,conventional,2017,Charlotte +12,2017-10-08,1.77,178991.71,50017.71,66076.12,4781.98,58115.9,52744.08,5371.82,0.0,conventional,2017,Charlotte +13,2017-10-01,1.76,180280.25,43576.07,74145.54,4797.8,57760.84,52513.87,5246.97,0.0,conventional,2017,Charlotte +14,2017-09-24,1.72,186923.93,47607.14,71519.48,5336.34,62460.97,57929.86,4531.11,0.0,conventional,2017,Charlotte +15,2017-09-17,1.61,192447.11,56017.67,64593.12,5176.8,66659.52,62156.95,4502.57,0.0,conventional,2017,Charlotte +16,2017-09-10,1.69,187822.6,45960.24,68912.39,5424.48,67525.49,63280.77,3374.72,870.0,conventional,2017,Charlotte +17,2017-09-03,1.65,200900.91,49285.16,69478.02,6029.05,76108.68,67996.4,4698.95,3413.33,conventional,2017,Charlotte +18,2017-08-27,1.58,208438.23,60886.4,65605.0,5772.92,76173.91,69562.98,5067.6,1543.33,conventional,2017,Charlotte +19,2017-08-20,1.52,212479.12,57230.8,69135.38,5602.86,80510.08,71101.96,5397.01,4011.11,conventional,2017,Charlotte +20,2017-08-13,1.47,209771.02,47263.33,78914.53,6255.4,77337.76,67363.49,6829.83,3144.44,conventional,2017,Charlotte +21,2017-08-06,1.43,206493.73,43174.26,78385.61,6519.58,78414.28,71208.4,5682.54,1523.34,conventional,2017,Charlotte +22,2017-07-30,1.4,212607.67,54840.38,81789.28,6237.96,69740.05,63813.12,4829.15,1097.78,conventional,2017,Charlotte +23,2017-07-23,1.39,215463.51,50924.04,75358.77,5993.87,83186.83,75923.52,4233.31,3030.0,conventional,2017,Charlotte +24,2017-07-16,1.38,209534.16,44530.25,73163.04,6036.41,85804.46,77573.02,4561.45,3669.99,conventional,2017,Charlotte +25,2017-07-09,1.32,222027.09,62331.48,70720.4,6490.52,82484.69,73227.42,4767.27,4490.0,conventional,2017,Charlotte +26,2017-07-02,1.36,224816.41,60811.83,76448.74,6627.47,80928.37,71119.63,5358.74,4450.0,conventional,2017,Charlotte +27,2017-06-25,1.33,211639.6,53140.24,72807.06,5877.63,79814.67,72142.41,4877.26,2795.0,conventional,2017,Charlotte +28,2017-06-18,1.43,201837.88,45497.3,78803.31,6332.43,71204.84,62169.32,3515.52,5520.0,conventional,2017,Charlotte +29,2017-06-11,1.38,224288.57,50865.51,86113.51,6816.9,80492.65,69740.45,5812.2,4940.0,conventional,2017,Charlotte +30,2017-06-04,1.49,226422.86,59349.56,86778.91,7005.98,73288.41,65629.28,6092.46,1566.67,conventional,2017,Charlotte +31,2017-05-28,1.5,237363.56,55170.16,89547.81,8529.56,84116.03,80490.49,3625.54,0.0,conventional,2017,Charlotte +32,2017-05-21,1.5,227842.05,56077.9,87872.71,7712.06,76179.38,71310.74,4868.64,0.0,conventional,2017,Charlotte +33,2017-05-14,1.41,224626.96,52616.28,77142.23,6721.88,88146.57,83151.81,4994.76,0.0,conventional,2017,Charlotte +34,2017-05-07,1.36,303551.54,76880.62,106192.08,11654.08,108824.76,98860.28,9964.48,0.0,conventional,2017,Charlotte +35,2017-04-30,1.53,235698.79,57129.17,87500.56,7990.1,83078.96,73582.1,9496.86,0.0,conventional,2017,Charlotte +36,2017-04-23,1.5,220970.07,48220.74,78264.66,7619.22,86865.45,81393.87,5471.58,0.0,conventional,2017,Charlotte +37,2017-04-16,1.56,203220.34,48494.75,77380.84,7459.86,69884.89,66436.6,3448.29,0.0,conventional,2017,Charlotte +38,2017-04-09,1.54,201298.91,50325.29,75492.06,6657.48,68824.08,64339.22,4484.86,0.0,conventional,2017,Charlotte +39,2017-04-02,1.48,231427.69,47420.03,85811.1,7802.11,90394.45,85957.69,4258.98,177.78,conventional,2017,Charlotte +40,2017-03-26,1.48,225271.53,48843.91,94477.7,7655.97,74293.95,69700.62,4593.33,0.0,conventional,2017,Charlotte +41,2017-03-19,1.47,206732.76,42389.4,89209.74,7312.02,67821.6,63179.59,4642.01,0.0,conventional,2017,Charlotte +42,2017-03-12,1.55,207026.03,48009.39,87659.78,8252.21,63104.65,58990.64,4114.01,0.0,conventional,2017,Charlotte +43,2017-03-05,1.41,202553.07,43409.71,87666.41,11157.19,60319.76,56436.67,3883.09,0.0,conventional,2017,Charlotte +44,2017-02-26,1.26,241552.96,50330.36,118606.57,13181.85,59434.18,54950.63,4483.55,0.0,conventional,2017,Charlotte +45,2017-02-19,1.33,198557.9,46010.49,78996.07,9650.83,63900.51,59663.05,4224.13,13.33,conventional,2017,Charlotte +46,2017-02-12,1.25,206762.31,58973.85,74076.16,8886.98,64825.32,59465.37,5142.17,217.78,conventional,2017,Charlotte +47,2017-02-05,0.95,359702.04,95176.35,172311.19,21721.89,70492.61,56412.26,13627.57,452.78,conventional,2017,Charlotte +48,2017-01-29,1.33,213609.12,48872.88,86135.67,9146.99,69453.58,58828.73,9630.41,994.44,conventional,2017,Charlotte +49,2017-01-22,1.18,247754.7,42582.24,116159.86,20382.32,68630.28,54562.88,14067.4,0.0,conventional,2017,Charlotte +50,2017-01-15,1.37,196897.85,39546.13,84479.17,9918.56,62953.99,52626.61,10327.38,0.0,conventional,2017,Charlotte +51,2017-01-08,1.28,219338.92,56739.54,80201.7,10231.86,72165.82,63539.28,8626.54,0.0,conventional,2017,Charlotte +52,2017-01-01,1.21,217051.5,47765.32,94571.69,15036.44,59678.05,45920.26,13711.12,46.67,conventional,2017,Charlotte +0,2017-12-31,0.93,1182647.5,144034.24,845964.7,120869.17,71779.39,63314.15,8409.9,55.34,conventional,2017,Chicago +1,2017-12-24,1.36,707646.11,83138.48,417905.67,116405.91,90196.05,78806.93,11311.18,77.94,conventional,2017,Chicago +2,2017-12-17,1.49,620053.78,113959.92,275986.91,99248.93,130858.02,77380.8,53445.77,31.45,conventional,2017,Chicago +3,2017-12-10,1.13,1021445.27,142085.83,277789.3,90891.04,510679.1,87489.87,423185.75,3.48,conventional,2017,Chicago +4,2017-12-03,1.56,654739.0,99971.0,378155.0,92092.0,84522.0,48070.0,36440.0,12.0,conventional,2017,Chicago +5,2017-11-26,1.7,506394.0,71736.0,278263.0,82294.0,74100.0,68552.0,5532.0,15.0,conventional,2017,Chicago +6,2017-11-19,1.71,555872.0,86790.0,285841.0,98666.0,84575.0,81798.0,2775.0,2.0,conventional,2017,Chicago +7,2017-11-12,1.78,541010.0,90581.0,276787.0,91330.0,82312.0,79021.0,3280.0,12.0,conventional,2017,Chicago +8,2017-11-05,1.77,538967.37,96105.5,284220.43,81793.52,76847.92,73426.03,3406.65,15.24,conventional,2017,Chicago +9,2017-10-29,1.94,551605.92,117423.1,268773.52,88632.79,76776.51,74126.58,2647.71,2.22,conventional,2017,Chicago +10,2017-10-22,2.06,519814.03,84590.83,275588.35,95627.48,64007.37,59543.29,4441.86,22.22,conventional,2017,Chicago +11,2017-10-15,2.11,546055.57,89191.92,288024.23,93956.96,74882.46,69716.43,5164.92,1.11,conventional,2017,Chicago +12,2017-10-08,2.22,516320.59,62315.4,296817.34,87406.94,69780.91,66070.17,3699.01,11.73,conventional,2017,Chicago +13,2017-10-01,2.14,537708.81,73349.22,293404.88,85663.08,85291.63,77980.21,7213.35,98.07,conventional,2017,Chicago +14,2017-09-24,2.07,551895.8,79162.45,322016.51,61656.4,89060.44,79455.71,9519.58,85.15,conventional,2017,Chicago +15,2017-09-17,2.15,553215.27,59561.15,315414.15,100807.96,77432.01,69984.74,7392.83,54.44,conventional,2017,Chicago +16,2017-09-10,2.02,590590.1,65245.47,318095.5,114858.97,92390.16,82436.76,7822.29,2131.11,conventional,2017,Chicago +17,2017-09-03,2.0,614460.2,65246.8,343566.36,114879.68,90767.36,79318.59,7988.55,3460.22,conventional,2017,Chicago +18,2017-08-27,1.93,624618.47,87298.17,336708.41,115570.89,85041.0,74670.87,8186.79,2183.34,conventional,2017,Chicago +19,2017-08-20,1.88,674811.14,91477.74,349704.0,140354.25,93275.15,79635.38,9073.11,4566.66,conventional,2017,Chicago +20,2017-08-13,1.89,640354.46,64033.75,355733.16,135484.85,85102.7,72282.38,8346.94,4473.38,conventional,2017,Chicago +21,2017-08-06,1.72,692140.55,68696.24,401419.79,136884.94,85139.58,71189.43,8973.49,4976.66,conventional,2017,Chicago +22,2017-07-30,1.62,735265.55,76110.93,447892.34,134637.19,76625.09,66465.51,7716.18,2443.4,conventional,2017,Chicago +23,2017-07-23,1.59,752799.06,79551.49,459858.58,127440.73,85948.26,73112.31,7949.29,4886.66,conventional,2017,Chicago +24,2017-07-16,1.54,801887.84,91095.18,486178.44,129762.05,94852.17,84928.16,5909.57,4014.44,conventional,2017,Chicago +25,2017-07-09,1.54,880107.48,82890.07,504037.61,168507.26,124672.54,122061.96,658.36,1952.22,conventional,2017,Chicago +26,2017-07-02,1.45,943746.5,128743.48,534893.06,149582.02,130527.94,128738.67,327.15,1462.12,conventional,2017,Chicago +27,2017-06-25,1.44,868770.67,132426.14,473567.46,139914.23,122862.84,119020.04,764.05,3078.75,conventional,2017,Chicago +28,2017-06-18,1.53,862382.95,68578.06,549159.54,138493.75,106151.6,103151.37,528.32,2471.91,conventional,2017,Chicago +29,2017-06-11,1.6,807370.03,87526.68,514710.25,122729.21,82403.89,76117.78,1456.0,4830.11,conventional,2017,Chicago +30,2017-06-04,1.64,776194.77,79878.4,493631.53,132270.53,70414.31,61829.43,2440.78,6144.1,conventional,2017,Chicago +31,2017-05-28,1.63,781085.77,62151.32,538899.85,103858.53,76176.07,69117.6,1927.78,5130.69,conventional,2017,Chicago +32,2017-05-21,1.64,764241.14,67698.15,496380.19,123099.28,77063.52,67000.24,2740.06,7323.22,conventional,2017,Chicago +33,2017-05-14,1.6,792532.64,99653.4,470279.57,147524.4,75075.27,68906.93,2127.03,4041.31,conventional,2017,Chicago +34,2017-05-07,1.51,976084.98,133904.86,591928.07,162708.29,87543.76,75728.85,2304.19,9510.72,conventional,2017,Chicago +35,2017-04-30,1.62,787324.19,81817.28,498579.75,125905.46,81021.7,72854.76,2421.11,5745.83,conventional,2017,Chicago +36,2017-04-23,1.63,719367.5,81460.1,470214.98,94819.76,72872.66,66653.73,1911.72,4307.21,conventional,2017,Chicago +37,2017-04-16,1.65,742675.28,65083.44,490301.8,104457.58,82832.46,75155.6,2307.78,5369.08,conventional,2017,Chicago +38,2017-04-09,1.65,699592.47,70040.01,454691.92,102227.68,72632.86,63362.77,2625.56,6644.53,conventional,2017,Chicago +39,2017-04-02,1.65,676300.83,64888.08,452598.7,97671.17,61142.88,56000.95,934.56,4207.37,conventional,2017,Chicago +40,2017-03-26,1.64,656875.03,60039.23,432870.45,101928.61,62036.74,56904.92,1563.34,3568.48,conventional,2017,Chicago +41,2017-03-19,1.64,678898.01,61927.68,448962.74,103000.56,65007.03,61719.23,814.44,2473.36,conventional,2017,Chicago +42,2017-03-12,1.66,665364.72,59930.13,446178.36,105820.92,53435.31,47528.05,1346.79,4560.47,conventional,2017,Chicago +43,2017-03-05,1.62,680803.2,59136.57,454626.1,98165.17,68875.36,62917.85,1104.45,4853.06,conventional,2017,Chicago +44,2017-02-26,1.61,674827.05,52553.89,442525.98,110938.64,68808.54,62915.36,1403.34,4489.84,conventional,2017,Chicago +45,2017-02-19,1.27,728402.35,61491.2,461727.3,133540.34,71643.51,64795.3,1514.44,5333.77,conventional,2017,Chicago +46,2017-02-12,1.05,874349.55,144293.33,454380.75,187793.92,87881.55,81975.72,2104.44,3801.39,conventional,2017,Chicago +47,2017-02-05,0.7,1621253.97,378806.26,912672.33,224554.5,105220.88,94444.33,1936.79,8839.76,conventional,2017,Chicago +48,2017-01-29,1.1,830499.38,86213.34,511365.64,135946.07,96974.33,85615.7,1691.15,9667.48,conventional,2017,Chicago +49,2017-01-22,1.21,845065.66,120093.41,497235.79,136328.96,91407.5,83227.7,1680.17,6499.63,conventional,2017,Chicago +50,2017-01-15,1.23,776820.81,78836.36,480071.92,142550.33,75362.2,67302.01,1595.12,6465.07,conventional,2017,Chicago +51,2017-01-08,1.16,822522.24,79629.99,499835.88,151447.25,91609.12,81467.82,1420.05,8721.25,conventional,2017,Chicago +52,2017-01-01,1.15,803348.87,87695.7,531287.44,114647.36,69718.37,63550.62,1078.38,5089.37,conventional,2017,Chicago +0,2017-12-31,0.86,278128.16,86072.67,43570.02,18071.02,130414.45,120022.99,10142.47,248.99,conventional,2017,CincinnatiDayton +1,2017-12-24,1.36,159238.4,34443.54,41602.51,20559.93,62632.42,48089.04,14510.77,32.61,conventional,2017,CincinnatiDayton +2,2017-12-17,1.3,169219.79,21459.6,53838.76,9956.49,83964.94,57656.39,26216.68,91.87,conventional,2017,CincinnatiDayton +3,2017-12-10,1.16,234296.59,5977.05,88000.51,505.01,139814.02,38355.47,101403.35,55.2,conventional,2017,CincinnatiDayton +4,2017-12-03,1.05,302992.0,5197.0,133150.0,1399.0,163245.0,20306.0,142867.0,73.0,conventional,2017,CincinnatiDayton +5,2017-11-26,1.23,165103.0,3566.0,62154.0,475.0,98908.0,15934.0,82960.0,14.0,conventional,2017,CincinnatiDayton +6,2017-11-19,1.01,247158.0,4314.0,89762.0,793.0,152289.0,19201.0,132886.0,203.0,conventional,2017,CincinnatiDayton +7,2017-11-12,0.9,324830.0,5473.0,119880.0,868.0,198609.0,16033.0,182385.0,190.0,conventional,2017,CincinnatiDayton +8,2017-11-05,1.01,320427.23,4581.41,121602.23,862.16,193381.43,19496.38,173702.6,182.45,conventional,2017,CincinnatiDayton +9,2017-10-29,1.42,233003.46,4682.7,80070.26,505.32,147745.18,28319.17,119249.87,176.14,conventional,2017,CincinnatiDayton +10,2017-10-22,1.75,181203.19,4778.41,59196.88,377.61,116850.29,31734.98,85072.27,43.04,conventional,2017,CincinnatiDayton +11,2017-10-15,1.81,182274.57,6137.38,59691.71,574.34,115871.14,21562.09,94257.73,51.32,conventional,2017,CincinnatiDayton +12,2017-10-08,1.9,170365.8,6658.45,50674.92,588.2,112444.23,19544.28,92860.76,39.19,conventional,2017,CincinnatiDayton +13,2017-10-01,1.86,183683.68,7514.77,58917.31,626.22,116625.38,22881.73,93645.32,98.33,conventional,2017,CincinnatiDayton +14,2017-09-24,1.79,182714.75,4560.35,68227.85,614.28,109312.27,22411.54,86693.86,206.87,conventional,2017,CincinnatiDayton +15,2017-09-17,1.79,184434.69,4223.33,69168.18,711.18,110332.0,25990.15,84078.27,263.58,conventional,2017,CincinnatiDayton +16,2017-09-10,1.75,210180.81,4525.65,74602.5,668.52,130384.14,28410.44,101680.76,292.94,conventional,2017,CincinnatiDayton +17,2017-09-03,1.72,212627.84,4651.19,73801.87,817.07,133357.71,28780.49,104144.22,433.0,conventional,2017,CincinnatiDayton +18,2017-08-27,1.31,253876.89,4199.84,88697.4,645.63,160334.02,21251.16,138455.0,627.86,conventional,2017,CincinnatiDayton +19,2017-08-20,1.15,307618.14,4339.15,107640.2,884.18,194754.61,21955.22,172119.45,679.94,conventional,2017,CincinnatiDayton +20,2017-08-13,1.34,261153.8,4609.64,92313.29,1103.12,163127.75,21883.1,140667.78,576.87,conventional,2017,CincinnatiDayton +21,2017-08-06,1.46,236484.9,4310.92,88272.35,1301.36,142600.27,23000.0,119014.47,585.8,conventional,2017,CincinnatiDayton +22,2017-07-30,1.48,213593.1,3801.61,82403.53,856.06,126531.9,16005.11,109831.76,695.03,conventional,2017,CincinnatiDayton +23,2017-07-23,1.47,215667.84,4245.43,85748.65,1095.65,124578.11,14922.7,109212.65,442.76,conventional,2017,CincinnatiDayton +24,2017-07-16,1.5,218147.06,3860.38,91780.98,1529.18,120976.52,16210.98,104180.62,584.92,conventional,2017,CincinnatiDayton +25,2017-07-09,1.09,255253.55,3260.92,95015.46,1259.09,155718.08,38542.84,116563.71,611.53,conventional,2017,CincinnatiDayton +26,2017-07-02,0.79,336087.28,3711.44,101205.94,1278.0,229891.9,35260.34,193552.3,1079.26,conventional,2017,CincinnatiDayton +27,2017-06-25,0.8,337211.8,4289.76,100910.25,1020.95,230990.84,28717.58,201500.92,772.34,conventional,2017,CincinnatiDayton +28,2017-06-18,1.09,281486.15,4452.82,110401.61,2143.52,164488.2,33465.46,130291.88,730.86,conventional,2017,CincinnatiDayton +29,2017-06-11,0.87,365008.71,7487.38,85499.13,1348.66,270673.54,24201.61,245215.92,1256.01,conventional,2017,CincinnatiDayton +30,2017-06-04,1.0,337444.34,11153.71,83649.82,1325.95,241314.86,32810.06,208325.92,178.88,conventional,2017,CincinnatiDayton +31,2017-05-28,0.96,303442.79,10451.69,76776.7,1279.88,214934.52,34309.89,180475.96,148.67,conventional,2017,CincinnatiDayton +32,2017-05-21,1.0,260725.3,7946.27,73693.15,1026.77,178059.11,27839.65,150104.61,114.85,conventional,2017,CincinnatiDayton +33,2017-05-14,0.76,313988.97,8786.74,87347.28,931.97,216922.98,25076.08,191736.09,110.81,conventional,2017,CincinnatiDayton +34,2017-05-07,0.6,538518.77,8438.14,131508.13,1302.45,397270.05,33659.21,363468.52,142.32,conventional,2017,CincinnatiDayton +35,2017-04-30,1.1,242716.93,11133.59,89607.64,1158.27,140817.43,30877.63,109897.14,42.66,conventional,2017,CincinnatiDayton +36,2017-04-23,1.13,205401.48,7434.43,68248.73,1022.47,128695.85,29243.61,99417.18,35.06,conventional,2017,CincinnatiDayton +37,2017-04-16,1.06,261398.15,7865.99,77040.01,1300.87,175191.28,36250.42,138925.16,15.7,conventional,2017,CincinnatiDayton +38,2017-04-09,1.17,215849.78,8795.66,76148.94,1214.24,129690.94,30133.89,99467.56,89.49,conventional,2017,CincinnatiDayton +39,2017-04-02,1.01,290569.6,7282.55,72866.01,1092.42,209328.62,33461.38,175820.25,46.99,conventional,2017,CincinnatiDayton +40,2017-03-26,1.16,221214.93,2737.56,75138.64,1185.8,142152.93,30291.14,111860.25,1.54,conventional,2017,CincinnatiDayton +41,2017-03-19,0.95,263837.93,2059.16,71214.46,1250.96,189313.35,33907.54,155347.45,58.36,conventional,2017,CincinnatiDayton +42,2017-03-12,0.9,284997.7,3110.3,77406.82,1153.18,203327.4,28992.04,174289.27,46.09,conventional,2017,CincinnatiDayton +43,2017-03-05,0.78,272988.49,2739.88,82627.36,1107.95,186513.3,20142.93,166331.26,39.11,conventional,2017,CincinnatiDayton +44,2017-02-26,0.78,282344.52,3306.7,108390.14,2024.42,168623.26,28279.15,140287.47,56.64,conventional,2017,CincinnatiDayton +45,2017-02-19,0.7,303146.46,2623.77,93502.67,1010.9,206009.12,23085.72,182918.9,4.5,conventional,2017,CincinnatiDayton +46,2017-02-12,0.65,320492.68,3907.11,131463.63,1679.79,183442.15,30174.49,153260.18,7.48,conventional,2017,CincinnatiDayton +47,2017-02-05,0.65,411450.85,3229.39,181550.84,3016.89,223653.73,35158.21,188488.1,7.42,conventional,2017,CincinnatiDayton +48,2017-01-29,0.71,325944.73,3040.61,118753.45,980.55,203170.12,30234.77,172935.35,0.0,conventional,2017,CincinnatiDayton +49,2017-01-22,0.69,380429.31,3186.11,142025.18,2545.11,232672.91,34561.66,198094.72,16.53,conventional,2017,CincinnatiDayton +50,2017-01-15,0.76,346523.78,2939.57,125731.86,994.43,216857.92,29095.07,187759.83,3.02,conventional,2017,CincinnatiDayton +51,2017-01-08,0.82,285027.21,4147.01,126967.13,991.09,152921.98,33746.17,118612.86,562.95,conventional,2017,CincinnatiDayton +52,2017-01-01,0.64,329279.29,2646.83,130250.6,2530.91,193850.95,30669.35,163180.08,1.52,conventional,2017,CincinnatiDayton +0,2017-12-31,0.8,221203.78,103506.03,30763.37,5224.82,81709.56,68828.14,12796.92,84.5,conventional,2017,Columbus +1,2017-12-24,1.06,140322.03,47451.51,20793.8,5024.24,67052.48,61296.18,5712.32,43.98,conventional,2017,Columbus +2,2017-12-17,1.03,162900.37,55232.97,32627.0,5344.74,69695.66,58821.57,10798.66,75.43,conventional,2017,Columbus +3,2017-12-10,1.1,149626.6,62869.74,18377.18,1247.67,67132.01,59594.53,7390.92,146.56,conventional,2017,Columbus +4,2017-12-03,0.99,194796.0,74697.0,45552.0,2801.0,71746.0,56452.0,15193.0,101.0,conventional,2017,Columbus +5,2017-11-26,1.04,126378.0,60008.0,16437.0,984.0,48949.0,38018.0,10872.0,59.0,conventional,2017,Columbus +6,2017-11-19,0.97,169553.0,78940.0,14167.0,856.0,75591.0,69169.0,6354.0,69.0,conventional,2017,Columbus +7,2017-11-12,0.97,196433.0,98437.0,14574.0,866.0,82556.0,69587.0,12778.0,191.0,conventional,2017,Columbus +8,2017-11-05,0.96,222749.35,108463.21,15618.1,911.56,97756.48,91641.47,5898.96,216.05,conventional,2017,Columbus +9,2017-10-29,1.22,165260.84,72722.59,18568.73,808.97,73160.55,68103.78,4974.53,82.24,conventional,2017,Columbus +10,2017-10-22,1.55,111491.11,46747.3,15690.62,750.6,48302.59,42964.29,5308.37,29.93,conventional,2017,Columbus +11,2017-10-15,1.71,109664.86,47436.39,16441.16,663.58,45123.73,38814.65,6307.78,1.3,conventional,2017,Columbus +12,2017-10-08,1.83,103123.48,46870.14,8224.8,765.87,47262.67,40288.38,6950.95,23.34,conventional,2017,Columbus +13,2017-10-01,1.72,118344.44,53367.76,13597.94,1131.1,50247.64,42737.87,7359.04,150.73,conventional,2017,Columbus +14,2017-09-24,1.69,120872.81,53450.48,16472.11,904.63,50045.59,44515.0,5349.24,181.35,conventional,2017,Columbus +15,2017-09-17,1.7,120600.86,51846.36,16291.52,935.87,51527.11,44154.52,7205.75,166.84,conventional,2017,Columbus +16,2017-09-10,1.68,135633.34,54122.63,19954.7,989.94,60566.07,52387.6,7866.62,311.85,conventional,2017,Columbus +17,2017-09-03,1.62,127613.24,53867.78,21626.87,1053.14,51065.45,44365.2,6306.66,393.59,conventional,2017,Columbus +18,2017-08-27,1.26,176231.47,86236.44,19787.99,1022.34,69184.7,62542.31,6049.02,593.37,conventional,2017,Columbus +19,2017-08-20,1.23,211279.9,93230.93,20982.37,988.74,96077.86,88136.74,7448.32,492.8,conventional,2017,Columbus +20,2017-08-13,1.52,151390.04,59728.76,19181.67,1136.45,71343.16,62533.55,8290.1,519.51,conventional,2017,Columbus +21,2017-08-06,1.21,194759.03,82089.07,24630.41,1148.89,86890.66,78410.41,7851.78,628.47,conventional,2017,Columbus +22,2017-07-30,1.22,170792.43,87045.12,20908.3,1144.77,61694.24,52483.91,8793.66,416.67,conventional,2017,Columbus +23,2017-07-23,1.39,137783.13,62106.54,20698.51,1069.5,53908.58,48159.5,5227.97,521.11,conventional,2017,Columbus +24,2017-07-16,1.36,150749.34,61744.88,28471.78,2046.27,58486.41,49408.65,7883.21,1194.55,conventional,2017,Columbus +25,2017-07-09,0.95,240071.43,94170.47,28458.64,1949.27,115493.05,92651.49,22633.91,207.65,conventional,2017,Columbus +26,2017-07-02,0.85,276442.3,109297.17,29874.64,1474.73,135795.76,119449.41,15486.41,859.94,conventional,2017,Columbus +27,2017-06-25,0.86,243935.99,100495.93,26548.19,1160.37,115731.5,98172.1,17016.19,543.21,conventional,2017,Columbus +28,2017-06-18,0.81,304247.54,115493.41,35647.1,2235.93,150871.1,135610.65,14771.88,488.57,conventional,2017,Columbus +29,2017-06-11,0.98,181254.11,82013.93,22618.84,1338.07,75283.27,71041.43,3179.14,1062.7,conventional,2017,Columbus +30,2017-06-04,1.1,196391.15,82888.11,20624.08,1780.61,91098.35,85697.33,5341.79,59.23,conventional,2017,Columbus +31,2017-05-28,1.24,182566.46,81187.49,20819.14,1809.22,78750.61,56749.77,21930.47,70.37,conventional,2017,Columbus +32,2017-05-21,1.16,180283.53,84951.87,22123.26,1875.51,71332.89,62962.93,8171.47,198.49,conventional,2017,Columbus +33,2017-05-14,0.99,210349.0,91332.73,15547.02,1391.69,102077.56,94035.1,7984.55,57.91,conventional,2017,Columbus +34,2017-05-07,0.93,276421.87,126893.08,33865.9,2805.82,112857.07,104277.21,8431.9,147.96,conventional,2017,Columbus +35,2017-04-30,1.18,199643.4,87269.79,27191.09,1849.58,83332.94,75469.99,7759.07,103.88,conventional,2017,Columbus +36,2017-04-23,1.26,166919.21,70224.87,19859.62,1525.47,75309.25,72832.23,2452.44,24.58,conventional,2017,Columbus +37,2017-04-16,0.99,242720.67,97052.67,23006.95,1563.23,121097.82,118412.01,2679.63,6.18,conventional,2017,Columbus +38,2017-04-09,1.07,225843.95,107031.4,23208.36,1696.6,93907.59,91576.93,2306.18,24.48,conventional,2017,Columbus +39,2017-04-02,1.23,174975.95,75024.52,25021.32,1682.51,73247.6,70290.37,2942.03,15.2,conventional,2017,Columbus +40,2017-03-26,1.26,153513.23,68172.26,23491.33,1510.88,60338.76,57572.53,2766.23,0.0,conventional,2017,Columbus +41,2017-03-19,1.3,136371.39,64865.99,24224.72,1373.43,45907.25,43921.15,1946.47,39.63,conventional,2017,Columbus +42,2017-03-12,1.29,140126.45,62328.69,32440.45,1275.08,44082.23,40701.91,3271.61,108.71,conventional,2017,Columbus +43,2017-03-05,1.14,166169.72,74969.93,29779.78,1538.48,59881.53,54733.84,5134.79,12.9,conventional,2017,Columbus +44,2017-02-26,1.04,186429.24,63979.21,49174.69,3873.59,69401.75,66797.89,2588.27,15.59,conventional,2017,Columbus +45,2017-02-19,1.07,159054.67,60793.07,31711.26,2015.14,64535.2,62128.28,2406.92,0.0,conventional,2017,Columbus +46,2017-02-12,0.78,226525.29,100274.0,43260.87,1988.53,81001.89,76106.35,4894.13,1.41,conventional,2017,Columbus +47,2017-02-05,0.69,323030.81,140453.99,60090.44,4269.9,118216.48,114404.34,3809.36,2.78,conventional,2017,Columbus +48,2017-01-29,1.06,163084.68,66807.47,32338.23,1335.12,62603.86,54598.58,8001.06,4.22,conventional,2017,Columbus +49,2017-01-22,0.91,197072.56,75919.97,47945.33,3811.68,69395.58,65666.8,3727.37,1.41,conventional,2017,Columbus +50,2017-01-15,0.97,200226.42,90931.56,32602.28,1593.72,75098.86,65836.14,9154.39,108.33,conventional,2017,Columbus +51,2017-01-08,0.86,226219.71,105022.53,34667.4,1761.29,84768.49,81562.73,3205.76,0.0,conventional,2017,Columbus +52,2017-01-01,0.83,218881.63,87684.11,50243.59,4324.39,76629.54,73432.68,3196.86,0.0,conventional,2017,Columbus +0,2017-12-31,0.9,1116393.2,481105.48,307423.18,4818.24,323046.3,161254.88,161616.45,174.97,conventional,2017,DallasFtWorth +1,2017-12-24,0.99,1060456.59,565235.94,203334.65,4651.33,287234.67,204606.58,82552.28,75.81,conventional,2017,DallasFtWorth +2,2017-12-17,0.83,1084068.05,540252.14,217661.59,3860.93,322293.39,262364.04,59824.28,105.07,conventional,2017,DallasFtWorth +3,2017-12-10,0.75,1288280.85,637875.57,219736.68,4749.97,425918.63,358594.71,67257.47,66.45,conventional,2017,DallasFtWorth +4,2017-12-03,0.85,1199422.0,575766.0,258400.0,5217.0,360040.0,278475.0,81498.0,67.0,conventional,2017,DallasFtWorth +5,2017-11-26,0.95,898548.0,523362.0,160636.0,2920.0,211630.0,130864.0,80717.0,49.0,conventional,2017,DallasFtWorth +6,2017-11-19,0.94,958421.0,561075.0,167540.0,3568.0,226238.0,137522.0,88658.0,57.0,conventional,2017,DallasFtWorth +7,2017-11-12,0.96,1054327.0,509106.0,271438.0,4615.0,269169.0,120695.0,148352.0,121.0,conventional,2017,DallasFtWorth +8,2017-11-05,0.96,1142499.74,600272.43,245464.06,3677.48,293085.77,104979.92,187840.93,264.92,conventional,2017,DallasFtWorth +9,2017-10-29,1.05,1071345.81,548902.52,213645.56,2639.97,306157.76,180681.23,125267.43,209.1,conventional,2017,DallasFtWorth +10,2017-10-22,1.1,1037930.19,525021.72,186939.29,2275.11,323694.07,252684.38,70932.42,77.27,conventional,2017,DallasFtWorth +11,2017-10-15,1.28,884631.4,480909.5,174844.63,1813.42,227063.85,147724.58,79245.31,93.96,conventional,2017,DallasFtWorth +12,2017-10-08,1.29,919708.71,488695.54,194837.09,1217.6,234958.48,149960.64,84717.46,280.38,conventional,2017,DallasFtWorth +13,2017-10-01,1.3,893387.5,492841.54,170718.08,876.26,228951.62,147483.78,81358.86,108.98,conventional,2017,DallasFtWorth +14,2017-09-24,1.29,946384.19,523101.14,168546.34,891.04,253845.67,175955.59,77807.16,82.92,conventional,2017,DallasFtWorth +15,2017-09-17,1.24,982833.04,562493.44,181711.95,1213.92,237413.73,161740.2,75613.75,59.78,conventional,2017,DallasFtWorth +16,2017-09-10,1.2,997274.92,569828.24,167025.65,1360.98,259060.05,179460.8,79463.0,136.25,conventional,2017,DallasFtWorth +17,2017-09-03,1.23,1043009.46,589764.93,185508.07,1205.42,266531.04,188278.36,76730.16,1522.52,conventional,2017,DallasFtWorth +18,2017-08-27,1.13,1090966.44,631381.37,186107.13,1463.79,272014.15,192595.16,78351.76,1067.23,conventional,2017,DallasFtWorth +19,2017-08-20,0.99,1163466.68,624826.63,228512.25,818.97,309308.83,154837.44,153344.42,1126.97,conventional,2017,DallasFtWorth +20,2017-08-13,1.0,1263766.23,677058.95,260341.69,2582.06,323783.53,157631.88,164728.16,1423.49,conventional,2017,DallasFtWorth +21,2017-08-06,0.98,1253537.5,663949.1,307186.94,2723.49,279677.97,187977.48,90232.72,1467.77,conventional,2017,DallasFtWorth +22,2017-07-30,1.03,1154233.85,636100.17,259717.64,1707.76,256708.28,169789.71,86836.03,82.54,conventional,2017,DallasFtWorth +23,2017-07-23,0.99,1197803.17,640831.59,275273.34,2162.81,279535.43,181151.87,92258.0,6125.56,conventional,2017,DallasFtWorth +24,2017-07-16,0.98,1219892.61,572059.17,327858.8,2757.68,317216.96,174975.56,140535.13,1706.27,conventional,2017,DallasFtWorth +25,2017-07-09,0.84,1514500.0,675094.64,287850.86,3155.06,548399.44,542368.85,3088.55,2942.04,conventional,2017,DallasFtWorth +26,2017-07-02,0.9,1378563.61,637767.81,287481.13,4000.61,449314.06,445093.33,2978.22,1242.51,conventional,2017,DallasFtWorth +27,2017-06-25,0.89,1327166.18,688781.77,221432.21,2113.52,414838.68,410536.2,4154.43,148.05,conventional,2017,DallasFtWorth +28,2017-06-18,0.9,1441940.59,734956.89,307811.08,4290.6,394882.02,391342.54,3444.02,95.46,conventional,2017,DallasFtWorth +29,2017-06-11,0.9,1361774.87,734135.94,231555.96,2332.57,393750.4,390320.25,3337.58,92.57,conventional,2017,DallasFtWorth +30,2017-06-04,0.93,1325912.38,712765.48,227992.9,2256.17,382897.83,379395.1,3347.36,155.37,conventional,2017,DallasFtWorth +31,2017-05-28,0.93,1386906.1,747618.37,269246.45,3945.62,366095.66,363230.91,2841.14,23.61,conventional,2017,DallasFtWorth +32,2017-05-21,0.91,1291606.06,728358.74,222773.66,2961.89,337511.77,334652.93,2828.41,30.43,conventional,2017,DallasFtWorth +33,2017-05-14,0.95,1292071.56,674072.36,238304.7,3363.89,376330.61,372603.74,3655.59,71.28,conventional,2017,DallasFtWorth +34,2017-05-07,0.89,1473846.78,824175.3,269156.57,2529.17,377985.74,373862.42,4073.67,49.65,conventional,2017,DallasFtWorth +35,2017-04-30,0.9,1407490.7,653423.58,337551.65,7032.57,409482.9,405190.18,4155.39,137.33,conventional,2017,DallasFtWorth +36,2017-04-23,0.85,1496361.87,673961.13,338732.54,5109.09,478559.11,474435.77,3842.99,280.35,conventional,2017,DallasFtWorth +37,2017-04-16,0.87,1517178.55,756530.97,289149.09,4244.38,467254.11,463181.54,3860.39,212.18,conventional,2017,DallasFtWorth +38,2017-04-09,0.9,1337046.52,710379.21,275048.24,8443.24,343175.83,338910.14,4079.0,186.69,conventional,2017,DallasFtWorth +39,2017-04-02,0.83,1372247.8,798833.39,216633.21,4975.58,351805.62,347585.31,3931.26,289.05,conventional,2017,DallasFtWorth +40,2017-03-26,0.91,1282796.85,700655.11,223658.42,4320.01,354163.31,350221.82,3864.16,77.33,conventional,2017,DallasFtWorth +41,2017-03-19,0.94,1153699.28,591093.13,237495.22,10579.85,314531.08,311549.13,2865.9,116.05,conventional,2017,DallasFtWorth +42,2017-03-12,0.9,1170640.71,617249.46,200229.13,40164.79,312997.33,310580.34,2337.59,79.4,conventional,2017,DallasFtWorth +43,2017-03-05,0.93,1105083.35,558906.77,208324.3,39374.94,298477.34,296356.28,2050.51,70.55,conventional,2017,DallasFtWorth +44,2017-02-26,0.73,1372811.19,821922.48,198567.11,32790.32,319531.28,292306.27,27130.14,94.87,conventional,2017,DallasFtWorth +45,2017-02-19,0.76,1177312.94,501922.03,272758.35,48080.5,354552.06,317473.84,37019.15,59.07,conventional,2017,DallasFtWorth +46,2017-02-12,0.7,1422345.94,624160.13,276020.88,46940.69,475224.24,464056.64,10489.11,678.49,conventional,2017,DallasFtWorth +47,2017-02-05,0.65,1772501.55,882268.72,362714.58,97315.69,430202.56,352919.96,76779.55,503.05,conventional,2017,DallasFtWorth +48,2017-01-29,0.73,1306293.11,789341.03,172742.07,36048.34,308161.67,264359.46,43743.14,59.07,conventional,2017,DallasFtWorth +49,2017-01-22,0.7,1382964.89,850531.3,222669.42,4457.46,305306.71,302263.34,2962.34,81.03,conventional,2017,DallasFtWorth +50,2017-01-15,0.7,1389716.89,750093.63,313392.54,2775.58,323455.14,319826.47,3521.23,107.44,conventional,2017,DallasFtWorth +51,2017-01-08,0.78,1247488.6,556814.8,343124.23,2551.41,344998.16,341681.22,3247.62,69.32,conventional,2017,DallasFtWorth +52,2017-01-01,0.68,1336539.2,526727.72,438041.57,4254.9,367515.01,364446.02,2152.59,916.4,conventional,2017,DallasFtWorth +0,2017-12-31,0.94,938481.85,127052.75,355322.2,8950.91,447155.99,62602.48,384553.51,0.0,conventional,2017,Denver +1,2017-12-24,1.19,675592.64,142027.32,171218.36,11713.7,350633.26,104300.12,246332.03,1.11,conventional,2017,Denver +2,2017-12-17,1.13,646736.55,157024.25,154962.46,12155.0,322594.84,98284.78,224310.06,0.0,conventional,2017,Denver +3,2017-12-10,0.97,886841.87,150700.53,330683.28,7679.52,397778.54,131381.52,266397.02,0.0,conventional,2017,Denver +4,2017-12-03,1.1,849840.0,149815.0,325073.0,9270.0,365682.0,98904.0,266779.0,0.0,conventional,2017,Denver +5,2017-11-26,1.36,543243.0,125916.0,171383.0,12038.0,233907.0,93132.0,140775.0,0.0,conventional,2017,Denver +6,2017-11-19,1.13,701022.0,132242.0,196662.0,15425.0,356693.0,97734.0,258959.0,0.0,conventional,2017,Denver +7,2017-11-12,1.03,847836.0,137872.0,269918.0,8942.0,431105.0,102535.0,328570.0,0.0,conventional,2017,Denver +8,2017-11-05,1.07,934570.7,122060.91,320967.57,8617.99,482924.23,89816.96,393106.16,1.11,conventional,2017,Denver +9,2017-10-29,1.2,783939.18,130556.48,226576.7,10872.4,415933.6,92309.2,323624.4,0.0,conventional,2017,Denver +10,2017-10-22,1.43,638993.72,126273.71,238205.63,6359.85,268154.53,96160.41,171993.01,1.11,conventional,2017,Denver +11,2017-10-15,1.57,537139.26,126304.77,158787.1,711.14,251336.25,98271.86,153064.39,0.0,conventional,2017,Denver +12,2017-10-08,1.6,537932.73,133463.1,140121.62,177.88,264170.13,102204.57,161965.56,0.0,conventional,2017,Denver +13,2017-10-01,1.47,605234.66,114291.47,249372.98,198.48,241371.73,68911.62,172460.11,0.0,conventional,2017,Denver +14,2017-09-24,1.6,499761.73,125319.71,161435.81,191.97,212814.24,75919.39,136894.85,0.0,conventional,2017,Denver +15,2017-09-17,1.47,557213.38,150991.79,156645.07,2422.09,247154.43,113823.49,133330.94,0.0,conventional,2017,Denver +16,2017-09-10,1.56,585138.06,114529.62,167203.28,12806.42,290598.74,130758.05,159840.69,0.0,conventional,2017,Denver +17,2017-09-03,1.5,588489.26,122402.66,165312.08,13836.18,286938.34,108570.93,176544.08,1823.33,conventional,2017,Denver +18,2017-08-27,1.1,896083.2,122874.44,379022.88,10439.85,383746.03,99069.57,281790.9,2885.56,conventional,2017,Denver +19,2017-08-20,1.2,877603.13,113449.77,324067.53,13424.53,426661.3,88857.19,337802.85,1.26,conventional,2017,Denver +20,2017-08-13,1.46,635905.08,148506.19,198503.52,11830.22,277065.15,109341.45,165514.81,2208.89,conventional,2017,Denver +21,2017-08-06,1.43,638888.58,145450.77,211822.19,13541.62,268074.0,101540.73,163807.71,2725.56,conventional,2017,Denver +22,2017-07-30,1.19,787191.53,145887.05,313773.34,12960.79,314570.35,80821.91,233748.44,0.0,conventional,2017,Denver +23,2017-07-23,1.15,971350.62,149313.58,353625.53,13389.27,455022.24,86886.46,368135.78,0.0,conventional,2017,Denver +24,2017-07-16,1.46,642837.36,108383.89,207831.49,14610.86,312011.12,114962.78,196568.34,480.0,conventional,2017,Denver +25,2017-07-09,1.11,951407.12,164106.61,267690.26,16221.33,503388.92,192191.48,309207.68,1989.76,conventional,2017,Denver +26,2017-07-02,1.19,813544.33,124815.87,182812.48,25202.91,480713.07,167076.97,313376.38,259.72,conventional,2017,Denver +27,2017-06-25,1.17,841763.42,165523.87,173432.5,20677.83,482129.22,130071.21,352058.01,0.0,conventional,2017,Denver +28,2017-06-18,1.14,890723.2,185315.8,198308.54,19386.07,487712.79,129619.04,358058.41,35.34,conventional,2017,Denver +29,2017-06-11,1.18,872407.69,192091.93,212252.78,21884.68,446178.3,115180.8,330977.33,20.17,conventional,2017,Denver +30,2017-06-04,1.16,895594.9,198732.29,179793.41,30183.22,486885.98,200815.16,286070.82,0.0,conventional,2017,Denver +31,2017-05-28,1.19,835834.41,172557.01,175140.35,24390.21,463746.84,125061.72,338685.12,0.0,conventional,2017,Denver +32,2017-05-21,1.23,750701.05,145486.51,205774.79,16548.73,382891.02,90426.22,292464.8,0.0,conventional,2017,Denver +33,2017-05-14,1.23,781305.34,166017.34,223913.99,18080.9,373293.11,215216.26,158076.85,0.0,conventional,2017,Denver +34,2017-05-07,1.13,904098.6,147250.97,357127.75,17250.83,382469.05,272024.11,110311.61,133.33,conventional,2017,Denver +35,2017-04-30,1.33,703503.26,145242.61,162526.92,23984.08,371749.65,176258.22,195491.43,0.0,conventional,2017,Denver +36,2017-04-23,1.15,766941.79,162809.94,163230.47,22772.48,418128.9,88929.4,329199.5,0.0,conventional,2017,Denver +37,2017-04-16,1.23,813466.54,164060.81,178842.29,23776.1,446787.34,103004.69,343777.65,5.0,conventional,2017,Denver +38,2017-04-09,1.31,704360.11,136193.81,164298.89,23358.01,380509.4,117825.21,262684.19,0.0,conventional,2017,Denver +39,2017-04-02,1.33,681540.61,150610.93,159643.84,22581.97,348703.87,156262.31,192441.56,0.0,conventional,2017,Denver +40,2017-03-26,1.42,630931.96,158588.8,150934.84,20052.83,301355.49,144528.42,156827.07,0.0,conventional,2017,Denver +41,2017-03-19,1.32,678002.96,152538.65,156751.57,19725.12,348987.62,142550.4,206301.11,136.11,conventional,2017,Denver +42,2017-03-12,1.32,673601.39,138467.07,157143.73,18699.79,359290.8,134714.53,224576.27,0.0,conventional,2017,Denver +43,2017-03-05,1.32,639567.49,142858.33,161939.15,18347.67,316422.34,148831.25,167574.42,16.67,conventional,2017,Denver +44,2017-02-26,1.15,782244.57,139037.76,237453.81,15021.65,390731.35,214059.39,176671.96,0.0,conventional,2017,Denver +45,2017-02-19,1.07,799071.01,153258.18,254318.67,17088.87,374405.29,150957.59,223447.7,0.0,conventional,2017,Denver +46,2017-02-12,0.96,821592.06,204917.87,291657.99,14706.94,310309.26,109877.59,200109.45,322.22,conventional,2017,Denver +47,2017-02-05,0.77,1258952.81,239163.63,502457.31,14680.91,502650.96,249329.75,253122.6,198.61,conventional,2017,Denver +48,2017-01-29,1.05,887964.38,172614.57,214811.63,14725.98,485812.2,315628.11,169960.03,224.06,conventional,2017,Denver +49,2017-01-22,1.03,906838.4,149313.21,268029.66,13355.19,476140.34,326361.97,149643.69,134.68,conventional,2017,Denver +50,2017-01-15,1.04,808771.72,147752.34,212522.91,18135.24,430361.23,255414.77,174946.46,0.0,conventional,2017,Denver +51,2017-01-08,0.92,844689.96,169103.67,249167.67,16470.81,409947.81,247424.23,162523.58,0.0,conventional,2017,Denver +52,2017-01-01,0.8,959368.84,138364.14,336467.73,12664.38,471872.59,310280.15,161495.22,97.22,conventional,2017,Denver +0,2017-12-31,0.84,467584.3,146333.69,91027.9,25276.56,204946.15,161600.45,41058.72,2286.98,conventional,2017,Detroit +1,2017-12-24,1.25,298146.18,50834.19,57335.28,15610.47,174366.24,156973.49,16351.25,1041.5,conventional,2017,Detroit +2,2017-12-17,1.08,369196.72,60128.92,98625.18,32609.74,177832.88,149638.4,20548.33,7646.15,conventional,2017,Detroit +3,2017-12-10,1.13,311949.95,89161.52,44929.63,10001.86,167856.94,148544.42,16977.81,2334.71,conventional,2017,Detroit +4,2017-12-03,0.97,515907.0,101693.0,183341.0,36621.0,194253.0,120011.0,73013.0,1228.0,conventional,2017,Detroit +5,2017-11-26,1.21,229292.0,71317.0,40629.0,7259.0,110088.0,82401.0,27604.0,83.0,conventional,2017,Detroit +6,2017-11-19,0.99,353938.0,112881.0,39979.0,7326.0,193752.0,175882.0,17533.0,338.0,conventional,2017,Detroit +7,2017-11-12,0.93,432903.0,163957.0,42219.0,8156.0,218572.0,185753.0,32216.0,602.0,conventional,2017,Detroit +8,2017-11-05,1.0,426643.42,154127.34,42917.02,7701.33,221897.73,204821.66,16602.19,473.88,conventional,2017,Detroit +9,2017-10-29,1.28,316276.92,91775.45,40457.01,8828.78,175215.68,163758.86,10728.61,728.21,conventional,2017,Detroit +10,2017-10-22,1.59,230384.71,57747.31,39113.6,10512.03,123011.77,106301.97,15915.31,794.49,conventional,2017,Detroit +11,2017-10-15,1.79,205378.62,57304.56,33515.01,10114.48,104444.57,89625.81,13124.18,1694.58,conventional,2017,Detroit +12,2017-10-08,1.94,208300.17,55417.49,17297.6,18345.32,117239.76,98662.02,10865.94,7711.8,conventional,2017,Detroit +13,2017-10-01,1.88,215840.47,56101.34,24145.02,19204.17,116389.94,99539.53,8543.94,8306.47,conventional,2017,Detroit +14,2017-09-24,1.82,234792.97,61575.52,32561.28,24622.65,116033.52,100643.36,4399.41,10990.75,conventional,2017,Detroit +15,2017-09-17,1.84,231672.3,56672.38,29720.64,23010.55,122268.73,101940.75,8905.77,11422.21,conventional,2017,Detroit +16,2017-09-10,1.8,251097.79,60774.27,32685.75,23392.18,134245.59,113843.97,9150.17,11251.45,conventional,2017,Detroit +17,2017-09-03,1.68,234930.31,58131.6,35365.15,25800.11,115633.45,98010.75,5328.57,12294.13,conventional,2017,Detroit +18,2017-08-27,1.32,304000.24,99924.49,29648.99,23558.08,150868.68,133119.35,5877.48,11871.85,conventional,2017,Detroit +19,2017-08-20,1.25,388250.81,113908.85,34529.25,26555.78,213256.93,191985.02,8146.65,13125.26,conventional,2017,Detroit +20,2017-08-13,1.55,286679.02,64304.67,33590.3,27839.54,160944.51,137133.56,10425.92,13385.03,conventional,2017,Detroit +21,2017-08-06,1.25,400745.99,101371.87,45320.08,41542.27,212511.77,185661.19,7330.96,19519.62,conventional,2017,Detroit +22,2017-07-30,1.29,339850.04,114942.57,39063.15,27664.07,158180.25,133047.25,12487.18,12645.82,conventional,2017,Detroit +23,2017-07-23,1.55,267254.47,66396.62,40479.0,30384.25,129994.6,113415.54,2545.08,14033.98,conventional,2017,Detroit +24,2017-07-16,1.18,385966.55,100370.0,55199.44,46609.96,183787.15,155523.04,4802.95,23461.16,conventional,2017,Detroit +25,2017-07-09,0.99,502774.82,119584.9,56064.04,43719.76,283406.12,232206.09,28983.01,22217.02,conventional,2017,Detroit +26,2017-07-02,1.22,392513.77,65065.41,63951.02,42737.51,220759.83,183724.24,16727.64,20307.95,conventional,2017,Detroit +27,2017-06-25,1.01,402914.93,96114.24,58116.71,14203.42,234480.56,200994.73,31937.51,1548.32,conventional,2017,Detroit +28,2017-06-18,0.85,668936.01,127581.26,129555.86,35982.95,375815.94,349596.64,22971.06,3248.24,conventional,2017,Detroit +29,2017-06-11,1.28,315240.72,71644.61,61426.82,17894.09,164275.2,159993.56,2790.35,1491.29,conventional,2017,Detroit +30,2017-06-04,1.26,361513.16,77883.8,57322.69,35156.7,191149.97,174009.46,12147.98,4992.53,conventional,2017,Detroit +31,2017-05-28,1.29,361905.98,83266.74,48464.11,42531.88,187643.25,126219.14,47266.33,14157.78,conventional,2017,Detroit +32,2017-05-21,1.32,307674.16,71333.9,44186.58,36112.15,156041.53,123293.61,16846.6,15901.32,conventional,2017,Detroit +33,2017-05-14,1.03,445350.61,110697.8,44186.84,40589.56,249876.41,225833.42,13583.47,10459.52,conventional,2017,Detroit +34,2017-05-07,0.99,625475.58,160714.71,82132.76,84740.62,297887.49,259510.89,12354.59,26022.01,conventional,2017,Detroit +35,2017-04-30,1.48,324983.09,64498.25,50224.27,37837.43,172423.14,150695.49,11326.73,10400.92,conventional,2017,Detroit +36,2017-04-23,1.46,295788.03,60299.3,42596.28,33427.76,159464.69,144672.71,4014.98,10777.0,conventional,2017,Detroit +37,2017-04-16,1.45,342545.94,68514.24,51563.48,38761.83,183706.39,165252.92,3614.14,14839.33,conventional,2017,Detroit +38,2017-04-09,1.51,284715.12,64658.67,48429.11,33629.99,137997.35,123525.69,3833.22,10638.44,conventional,2017,Detroit +39,2017-04-02,1.48,288639.34,65914.28,45497.47,33828.6,143398.99,131639.74,3178.06,8581.19,conventional,2017,Detroit +40,2017-03-26,1.48,289107.02,69601.63,44602.74,30844.93,144057.72,125425.49,3129.79,15502.44,conventional,2017,Detroit +41,2017-03-19,1.48,262116.19,71290.38,45054.51,26987.7,118783.6,101931.36,3247.87,13604.37,conventional,2017,Detroit +42,2017-03-12,1.44,238211.13,73391.3,40214.51,26073.5,98531.82,80639.8,5789.02,12103.0,conventional,2017,Detroit +43,2017-03-05,0.97,383170.95,117593.23,42026.91,24897.12,198653.69,184674.65,2917.35,11061.69,conventional,2017,Detroit +44,2017-02-26,0.83,540315.74,133389.93,105832.88,79598.84,221494.09,186675.1,3009.89,31809.1,conventional,2017,Detroit +45,2017-02-19,1.07,311270.6,82084.73,46507.12,20143.65,162535.1,147195.14,3389.57,11950.39,conventional,2017,Detroit +46,2017-02-12,0.74,475602.7,148920.01,87966.44,9992.23,228724.02,212979.31,14028.85,1715.86,conventional,2017,Detroit +47,2017-02-05,0.65,797699.81,214826.74,228906.58,25712.14,328254.35,321790.97,6374.7,88.68,conventional,2017,Detroit +48,2017-01-29,1.01,381506.2,125847.46,70435.94,6902.42,178320.38,174385.95,3782.91,151.52,conventional,2017,Detroit +49,2017-01-22,0.84,616589.93,129912.94,202323.91,25797.7,258555.38,254296.51,3810.7,448.17,conventional,2017,Detroit +50,2017-01-15,0.98,397115.64,124452.62,72303.07,7243.19,193116.76,181789.4,11325.64,1.72,conventional,2017,Detroit +51,2017-01-08,0.9,470643.79,157160.74,76519.91,7819.3,229143.84,225725.06,3415.32,3.46,conventional,2017,Detroit +52,2017-01-01,0.75,480612.79,100364.1,165059.57,18804.24,196384.88,194306.37,2054.18,24.33,conventional,2017,Detroit +0,2017-12-31,1.09,202635.01,2522.84,103361.16,58453.24,38297.77,17391.94,4053.28,16852.55,conventional,2017,GrandRapids +1,2017-12-24,1.64,130735.97,2190.4,59470.2,28289.38,40785.99,29812.2,4900.59,6073.2,conventional,2017,GrandRapids +2,2017-12-17,1.25,162923.49,2042.43,74185.34,48181.44,38514.28,21582.27,3918.17,13013.84,conventional,2017,GrandRapids +3,2017-12-10,1.61,107018.62,2211.54,52467.15,17501.9,34838.03,25029.12,5916.44,3892.47,conventional,2017,GrandRapids +4,2017-12-03,0.99,301527.0,2268.0,182507.0,65476.0,51277.0,14813.0,26632.0,9831.0,conventional,2017,GrandRapids +5,2017-11-26,1.65,96700.0,1864.0,50330.0,11404.0,33102.0,22505.0,10417.0,180.0,conventional,2017,GrandRapids +6,2017-11-19,1.4,139279.0,2688.0,68242.0,15683.0,52667.0,42924.0,7407.0,2335.0,conventional,2017,GrandRapids +7,2017-11-12,1.59,110784.0,2585.0,49202.0,17062.0,41935.0,31462.0,8517.0,1957.0,conventional,2017,GrandRapids +8,2017-11-05,1.7,103715.88,2335.02,46898.66,18583.72,35898.48,26098.52,7766.59,2033.37,conventional,2017,GrandRapids +9,2017-10-29,1.55,138190.33,2263.72,65813.83,21510.67,48602.11,40970.87,2846.34,4784.9,conventional,2017,GrandRapids +10,2017-10-22,1.96,97132.42,2538.84,37656.26,21937.7,34999.62,27100.47,2690.37,5208.78,conventional,2017,GrandRapids +11,2017-10-15,2.07,94071.58,3559.98,37970.75,18550.88,33989.97,27063.64,1681.88,5244.45,conventional,2017,GrandRapids +12,2017-10-08,2.19,86753.64,2689.21,30568.23,19624.56,33871.64,25625.39,2275.59,5970.66,conventional,2017,GrandRapids +13,2017-10-01,2.09,97411.58,3178.13,35898.69,19397.32,38937.44,30261.87,2715.01,5960.56,conventional,2017,GrandRapids +14,2017-09-24,1.96,113272.89,2101.47,48552.76,24966.57,37652.09,26290.1,3741.32,7620.67,conventional,2017,GrandRapids +15,2017-09-17,1.99,100498.79,1713.76,40378.99,23054.23,35351.81,25043.6,2910.5,7397.71,conventional,2017,GrandRapids +16,2017-09-10,1.86,111733.79,2360.3,46227.08,23127.7,40018.71,29053.6,3726.39,7238.72,conventional,2017,GrandRapids +17,2017-09-03,1.65,127147.57,2659.69,52612.04,28692.1,43183.74,30195.58,4062.57,8925.59,conventional,2017,GrandRapids +18,2017-08-27,1.74,112023.41,1978.65,45102.68,25971.21,38970.87,26953.3,3478.91,8538.66,conventional,2017,GrandRapids +19,2017-08-20,1.7,124908.76,2503.59,47876.89,29038.08,45490.2,30576.74,5002.47,9910.99,conventional,2017,GrandRapids +20,2017-08-13,1.7,125212.99,3912.7,48945.22,30208.75,42146.32,29466.86,3459.77,9219.69,conventional,2017,GrandRapids +21,2017-08-06,1.45,167234.75,2082.16,69687.29,45132.06,50333.24,31734.93,4280.74,14317.57,conventional,2017,GrandRapids +22,2017-07-30,1.63,127602.86,2162.74,49417.9,30794.05,45228.17,30869.15,5476.93,8882.09,conventional,2017,GrandRapids +23,2017-07-23,1.68,136088.12,2240.69,56572.58,33294.94,43979.91,29974.73,4228.93,9776.25,conventional,2017,GrandRapids +24,2017-07-16,1.42,169837.53,2520.38,70377.13,52300.71,44639.31,25053.61,4106.88,15478.82,conventional,2017,GrandRapids +25,2017-07-09,1.43,178186.11,2225.4,71380.42,47480.65,57099.64,38785.0,3403.65,14910.99,conventional,2017,GrandRapids +26,2017-07-02,1.51,192007.39,2073.97,71125.6,51887.02,66920.8,45887.04,4128.48,16905.28,conventional,2017,GrandRapids +27,2017-06-25,1.74,142258.18,2010.17,54017.53,29866.67,56363.81,42161.64,4631.35,9570.82,conventional,2017,GrandRapids +28,2017-06-18,1.29,245293.35,2180.87,96015.63,81813.26,65283.59,38840.79,2445.56,23997.24,conventional,2017,GrandRapids +29,2017-06-11,1.79,158876.02,2308.29,64251.02,34921.76,57394.95,40421.03,6310.56,10663.36,conventional,2017,GrandRapids +30,2017-06-04,1.88,162051.09,2254.78,74167.19,35468.43,50160.69,34931.43,7483.36,7745.9,conventional,2017,GrandRapids +31,2017-05-28,1.85,165718.77,1824.13,70747.33,36364.98,56782.33,41977.67,6300.99,8503.67,conventional,2017,GrandRapids +32,2017-05-21,1.88,148499.08,1972.51,64369.19,30992.24,51165.14,35805.71,6312.41,9047.02,conventional,2017,GrandRapids +33,2017-05-14,1.87,151273.21,1659.83,68015.22,33883.15,47715.01,35585.87,6715.5,5413.64,conventional,2017,GrandRapids +34,2017-05-07,1.46,254982.52,2037.53,134403.02,68209.7,50332.27,30912.8,6939.54,12479.93,conventional,2017,GrandRapids +35,2017-04-30,1.83,157868.62,2008.8,72819.17,33054.67,49985.98,36778.97,7109.08,6097.93,conventional,2017,GrandRapids +36,2017-04-23,1.67,146024.28,1826.18,67510.44,28859.88,47827.78,32757.4,6398.5,8671.88,conventional,2017,GrandRapids +37,2017-04-16,1.67,175861.5,1857.22,80672.38,34537.85,58794.05,39418.9,6580.28,12794.87,conventional,2017,GrandRapids +38,2017-04-09,1.73,144360.97,2187.7,69915.75,29243.42,43014.1,30183.84,6762.23,6068.03,conventional,2017,GrandRapids +39,2017-04-02,1.73,140629.7,1804.04,68299.15,25528.0,44998.51,31734.52,5315.48,7948.51,conventional,2017,GrandRapids +40,2017-03-26,1.71,149479.58,1890.37,71916.37,25542.69,50130.15,32426.3,6541.93,11161.92,conventional,2017,GrandRapids +41,2017-03-19,1.73,141712.21,1749.65,70210.67,23436.73,46315.16,30574.0,6156.07,9585.09,conventional,2017,GrandRapids +42,2017-03-12,1.73,129820.93,1645.17,64057.69,21287.24,42830.83,26704.25,7110.17,9016.41,conventional,2017,GrandRapids +43,2017-03-05,1.5,128203.51,1498.24,59098.06,17801.4,49805.81,28414.03,14185.06,7206.72,conventional,2017,GrandRapids +44,2017-02-26,1.02,238305.05,1386.96,140947.2,48369.8,47601.09,25307.14,4248.19,18045.76,conventional,2017,GrandRapids +45,2017-02-19,1.42,141775.8,1224.48,80219.4,17743.37,42588.55,28012.65,4266.37,10309.53,conventional,2017,GrandRapids +46,2017-02-12,1.13,176589.86,1277.43,107963.46,8309.17,59039.8,49076.31,6314.58,3648.91,conventional,2017,GrandRapids +47,2017-02-05,0.81,391313.63,1573.98,298897.77,8303.14,82538.74,78260.3,3910.85,367.59,conventional,2017,GrandRapids +48,2017-01-29,1.29,168252.2,1391.78,100681.06,5482.22,60697.14,53182.31,6877.73,637.1,conventional,2017,GrandRapids +49,2017-01-22,0.92,322366.88,1152.99,227003.5,12962.62,81247.77,72435.68,6021.3,2790.79,conventional,2017,GrandRapids +50,2017-01-15,1.29,166158.43,935.22,107348.7,2863.54,55010.97,49537.11,5423.0,50.86,conventional,2017,GrandRapids +51,2017-01-08,1.26,174079.23,1225.77,102134.85,3082.6,67636.01,60761.6,6851.61,22.8,conventional,2017,GrandRapids +52,2017-01-01,0.77,306129.4,1217.67,224774.25,7582.69,72554.79,68737.04,3714.24,103.51,conventional,2017,GrandRapids +0,2017-12-31,0.92,4398887.92,1092011.22,1740608.6,364049.45,1202218.65,927628.08,231172.74,43417.83,conventional,2017,GreatLakes +1,2017-12-24,1.3,2860693.26,507534.15,1076521.4,274898.24,1001739.47,812838.52,172058.17,16842.78,conventional,2017,GreatLakes +2,2017-12-17,1.22,3023285.74,605188.35,1037403.48,314592.44,1066101.47,773430.02,248878.18,43793.27,conventional,2017,GreatLakes +3,2017-12-10,1.18,3258080.63,609987.32,926924.56,158478.97,1562689.78,776310.65,772667.93,13711.2,conventional,2017,GreatLakes +4,2017-12-03,1.15,3837027.0,603156.0,1732528.0,317891.0,1183450.0,577048.0,579235.0,27167.0,conventional,2017,GreatLakes +5,2017-11-26,1.38,2254700.0,483896.0,837408.0,128863.0,804532.0,475224.0,328481.0,827.0,conventional,2017,GreatLakes +6,2017-11-19,1.23,2983690.0,581511.0,991256.0,155562.0,1255362.0,810002.0,438664.0,6697.0,conventional,2017,GreatLakes +7,2017-11-12,1.19,3284210.0,699961.0,1049661.0,151409.0,1383179.0,791377.0,585936.0,5866.0,conventional,2017,GreatLakes +8,2017-11-05,1.26,3225071.95,696600.38,1043530.21,144063.19,1340878.17,823843.88,510854.52,6179.77,conventional,2017,GreatLakes +9,2017-10-29,1.52,2739607.48,570308.79,901889.6,159959.25,1107449.84,775312.24,319204.76,12932.84,conventional,2017,GreatLakes +10,2017-10-22,1.75,2247856.71,444286.92,806545.92,170360.42,826663.45,555284.7,257991.63,13387.12,conventional,2017,GreatLakes +11,2017-10-15,1.86,2221613.58,446922.8,801194.66,160272.53,813223.59,525270.57,272860.81,15092.21,conventional,2017,GreatLakes +12,2017-10-08,1.98,2063573.51,419515.35,658131.8,166808.35,819118.01,531466.43,263131.15,24520.43,conventional,2017,GreatLakes +13,2017-10-01,1.89,2289168.77,444534.18,780137.97,169347.13,895149.49,599057.03,269972.31,26120.15,conventional,2017,GreatLakes +14,2017-09-24,1.83,2415482.04,458465.32,895147.87,165462.95,896405.9,603851.22,258959.51,33595.17,conventional,2017,GreatLakes +15,2017-09-17,1.86,2358162.43,421369.74,851995.69,199189.12,885607.88,597800.84,252502.35,35304.69,conventional,2017,GreatLakes +16,2017-09-10,1.81,2589499.71,441483.65,913391.31,215802.18,1018822.57,687077.09,288380.16,43365.32,conventional,2017,GreatLakes +17,2017-09-03,1.73,2638911.89,445855.59,975125.15,235105.19,982825.96,641935.76,287510.2,53380.0,conventional,2017,GreatLakes +18,2017-08-27,1.49,2973144.04,629034.1,996526.74,225401.1,1122182.1,706994.82,364885.27,50302.01,conventional,2017,GreatLakes +19,2017-08-20,1.44,3378088.25,666458.42,1089386.32,263855.97,1358387.54,890685.77,410469.94,57231.83,conventional,2017,GreatLakes +20,2017-08-13,1.57,2971011.18,504445.27,1051826.5,264838.37,1149901.04,733843.21,352853.24,63204.59,conventional,2017,GreatLakes +21,2017-08-06,1.42,3357719.29,574437.85,1199617.75,327392.03,1256271.66,832554.71,340048.81,83668.14,conventional,2017,GreatLakes +22,2017-07-30,1.44,3127451.33,628374.02,1159890.3,265494.92,1073692.09,685116.12,335733.79,52842.18,conventional,2017,GreatLakes +23,2017-07-23,1.47,3014558.52,557159.67,1180490.16,267511.89,1009396.8,647895.99,296531.31,64969.5,conventional,2017,GreatLakes +24,2017-07-16,1.38,3372297.92,613737.91,1337473.31,342667.93,1078418.77,686341.95,302794.91,89281.91,conventional,2017,GreatLakes +25,2017-07-09,1.2,4104371.46,695313.32,1385858.46,373472.43,1649727.25,1093507.57,476444.72,79774.96,conventional,2017,GreatLakes +26,2017-07-02,1.18,4250394.01,740503.01,1423924.97,356791.68,1729174.35,1157601.31,485376.01,86197.03,conventional,2017,GreatLakes +27,2017-06-25,1.15,3938985.06,718886.46,1270259.61,253074.81,1696764.18,1090179.55,563107.77,43476.86,conventional,2017,GreatLakes +28,2017-06-18,1.12,4668135.31,707122.82,1685604.76,403401.16,1872006.57,1345931.0,448086.41,77989.16,conventional,2017,GreatLakes +29,2017-06-11,1.27,3714237.95,596035.19,1338515.62,248948.07,1530739.07,867501.26,619111.8,44126.01,conventional,2017,GreatLakes +30,2017-06-04,1.33,3649478.04,559144.79,1336833.13,287895.63,1465604.49,858903.25,564981.58,41719.66,conventional,2017,GreatLakes +31,2017-05-28,1.37,3562841.46,580440.94,1365403.08,269625.44,1347372.0,776304.5,523114.36,47953.14,conventional,2017,GreatLakes +32,2017-05-21,1.34,3415474.26,605625.06,1302177.14,268428.07,1239243.99,750032.2,434987.85,54223.94,conventional,2017,GreatLakes +33,2017-05-14,1.19,3901825.7,649626.44,1290414.96,302082.61,1659701.69,944331.4,681254.13,34116.16,conventional,2017,GreatLakes +34,2017-05-07,1.1,5308891.12,923002.11,1932630.68,469332.59,1983925.74,1072504.99,832296.7,79124.05,conventional,2017,GreatLakes +35,2017-04-30,1.38,3584134.9,633332.25,1431880.81,277355.63,1241566.21,797304.37,407221.12,37040.72,conventional,2017,GreatLakes +36,2017-04-23,1.38,3193269.98,536784.83,1228762.83,224335.83,1203386.49,762724.52,400843.02,39818.95,conventional,2017,GreatLakes +37,2017-04-16,1.36,3543152.49,561509.96,1337527.18,255439.7,1388675.65,937394.9,394791.96,56488.79,conventional,2017,GreatLakes +38,2017-04-09,1.41,3149013.04,583906.3,1255688.28,235145.52,1074272.94,758452.66,276698.0,39122.28,conventional,2017,GreatLakes +39,2017-04-02,1.41,3081036.18,504640.46,1212295.86,224247.43,1139852.43,723374.52,380655.17,35822.74,conventional,2017,GreatLakes +40,2017-03-26,1.42,3002195.77,474956.6,1228379.13,223458.77,1075401.27,694807.1,327861.78,52732.39,conventional,2017,GreatLakes +41,2017-03-19,1.39,2975356.86,463863.64,1224340.81,212871.38,1074281.03,650674.32,377140.01,46466.7,conventional,2017,GreatLakes +42,2017-03-12,1.38,2883466.63,460240.32,1259335.82,211090.34,952800.15,549146.17,358275.0,45378.98,conventional,2017,GreatLakes +43,2017-03-05,1.24,3197341.66,563498.27,1313704.16,195550.24,1124588.99,720629.17,364409.43,39550.39,conventional,2017,GreatLakes +44,2017-02-26,1.08,3848715.52,565282.75,1692494.9,368973.25,1221964.62,756489.66,369884.9,95590.06,conventional,2017,GreatLakes +45,2017-02-19,1.1,3184221.55,458082.87,1329999.72,224790.76,1171348.2,721288.96,401353.64,48705.6,conventional,2017,GreatLakes +46,2017-02-12,0.88,4129136.03,765348.23,1694610.53,249248.52,1419928.75,978488.81,422557.68,18882.26,conventional,2017,GreatLakes +47,2017-02-05,0.73,6575186.76,1338529.97,3117639.02,322305.24,1796712.53,1334037.61,449566.65,13108.27,conventional,2017,GreatLakes +48,2017-01-29,1.01,3799154.1,593815.23,1631554.73,181118.9,1392665.24,891429.94,485161.76,16073.54,conventional,2017,GreatLakes +49,2017-01-22,0.95,4696372.14,680490.86,2241043.46,234650.47,1540187.35,1068557.0,455206.07,16424.28,conventional,2017,GreatLakes +50,2017-01-15,1.05,3893220.87,667328.63,1705655.8,182713.77,1337522.67,878109.85,449340.86,10071.96,conventional,2017,GreatLakes +51,2017-01-08,0.99,4067134.96,725716.77,1755106.4,195159.52,1391152.27,1010322.96,367740.51,13088.8,conventional,2017,GreatLakes +52,2017-01-01,0.88,4225245.4,636277.7,2157249.6,189356.95,1242361.15,885769.21,349032.8,7559.14,conventional,2017,GreatLakes +0,2017-12-31,1.37,195897.4,35962.67,106173.46,56.99,53704.28,41330.39,12373.89,0.0,conventional,2017,HarrisburgScranton +1,2017-12-24,1.37,217968.19,37343.09,115065.17,82.0,65477.93,61171.2,4306.73,0.0,conventional,2017,HarrisburgScranton +2,2017-12-17,1.37,196746.0,35590.92,101937.4,71.96,59145.72,54104.35,5041.37,0.0,conventional,2017,HarrisburgScranton +3,2017-12-10,1.13,274939.0,43089.18,163729.22,84.84,68035.76,62282.56,5753.2,0.0,conventional,2017,HarrisburgScranton +4,2017-12-03,1.27,231977.0,39382.0,127730.0,91.0,64773.0,57036.0,7738.0,0.0,conventional,2017,HarrisburgScranton +5,2017-11-26,1.3,191490.0,30488.0,89564.0,97.0,71341.0,55196.0,16146.0,0.0,conventional,2017,HarrisburgScranton +6,2017-11-19,1.3,216608.0,30820.0,97308.0,125.0,88355.0,59742.0,28613.0,0.0,conventional,2017,HarrisburgScranton +7,2017-11-12,1.38,201442.0,31166.0,99684.0,74.0,70518.0,54249.0,16269.0,0.0,conventional,2017,HarrisburgScranton +8,2017-11-05,1.45,191459.87,31048.2,99317.22,76.31,61018.14,58486.25,2505.22,26.67,conventional,2017,HarrisburgScranton +9,2017-10-29,1.47,203026.62,30541.03,117170.48,36.92,55278.19,54995.56,282.63,0.0,conventional,2017,HarrisburgScranton +10,2017-10-22,1.43,206115.08,30373.68,111836.53,29.48,63875.39,62343.72,1531.67,0.0,conventional,2017,HarrisburgScranton +11,2017-10-15,1.48,205858.6,32691.3,112916.52,74.12,60176.66,48527.09,11649.57,0.0,conventional,2017,HarrisburgScranton +12,2017-10-08,1.54,164699.75,34256.95,79474.31,139.28,50829.21,46034.83,4794.38,0.0,conventional,2017,HarrisburgScranton +13,2017-10-01,1.45,213952.02,37491.09,115716.48,192.67,60551.78,56521.74,4030.04,0.0,conventional,2017,HarrisburgScranton +14,2017-09-24,1.44,209982.19,36336.43,122032.96,70.71,51542.09,50219.51,1319.25,3.33,conventional,2017,HarrisburgScranton +15,2017-09-17,1.46,189035.91,32973.74,107531.22,54.93,48476.02,47545.72,763.63,166.67,conventional,2017,HarrisburgScranton +16,2017-09-10,1.51,180874.92,32675.66,97799.79,61.9,50337.57,44252.37,1741.87,4343.33,conventional,2017,HarrisburgScranton +17,2017-09-03,1.53,212828.72,39153.66,117858.62,49.9,55766.54,52253.48,599.73,2913.33,conventional,2017,HarrisburgScranton +18,2017-08-27,1.48,214056.41,40614.08,112224.82,30.39,61187.12,60211.91,245.21,730.0,conventional,2017,HarrisburgScranton +19,2017-08-20,1.47,212934.98,40413.35,104200.02,62.76,68258.85,60759.46,3437.16,4062.23,conventional,2017,HarrisburgScranton +20,2017-08-13,1.43,238229.99,42116.11,127782.88,58.29,68272.71,55944.4,9001.64,3326.67,conventional,2017,HarrisburgScranton +21,2017-08-06,1.37,235902.96,42012.76,129112.23,58.47,64719.5,59348.16,2124.67,3246.67,conventional,2017,HarrisburgScranton +22,2017-07-30,1.36,222758.77,41369.26,115565.26,55.81,65768.44,64199.34,285.77,1283.33,conventional,2017,HarrisburgScranton +23,2017-07-23,1.38,224207.07,44426.16,116786.25,100.44,62894.22,58580.71,1086.84,3226.67,conventional,2017,HarrisburgScranton +24,2017-07-16,1.38,224434.92,42951.31,120360.02,131.85,60991.74,53141.81,3621.04,4228.89,conventional,2017,HarrisburgScranton +25,2017-07-09,1.47,237446.62,41065.78,129466.37,176.98,66737.49,49614.54,8987.95,8135.0,conventional,2017,HarrisburgScranton +26,2017-07-02,1.48,226114.96,40997.57,111399.05,155.12,73563.22,61049.83,5973.39,6540.0,conventional,2017,HarrisburgScranton +27,2017-06-25,1.46,222447.25,40132.56,121032.8,92.67,61189.22,52906.18,2108.04,6175.0,conventional,2017,HarrisburgScranton +28,2017-06-18,1.5,238389.11,45186.48,131057.91,86.44,62058.28,55129.91,2569.76,4358.61,conventional,2017,HarrisburgScranton +29,2017-06-11,1.5,232728.73,50902.99,115824.28,93.56,65907.9,58868.88,4122.08,2916.94,conventional,2017,HarrisburgScranton +30,2017-06-04,1.55,247060.03,50484.86,118452.04,139.39,77983.74,75848.61,1879.02,256.11,conventional,2017,HarrisburgScranton +31,2017-05-28,1.56,275488.47,53527.9,137082.84,170.2,84707.53,80202.22,4474.75,30.56,conventional,2017,HarrisburgScranton +32,2017-05-21,1.51,244638.89,52736.28,119601.86,179.49,72121.26,70371.47,1749.79,0.0,conventional,2017,HarrisburgScranton +33,2017-05-14,1.54,239036.52,52237.47,95012.5,152.37,91634.18,90107.34,1469.9,56.94,conventional,2017,HarrisburgScranton +34,2017-05-07,1.51,301180.77,53636.12,140316.58,208.35,107019.72,101118.65,5671.9,229.17,conventional,2017,HarrisburgScranton +35,2017-04-30,1.48,268831.64,54369.02,135977.0,123.86,78361.76,76015.77,2179.32,166.67,conventional,2017,HarrisburgScranton +36,2017-04-23,1.49,225681.54,53508.78,103642.1,52.7,68477.96,61430.73,7047.23,0.0,conventional,2017,HarrisburgScranton +37,2017-04-16,1.56,261861.07,50600.52,123726.97,83.48,87450.1,74662.8,12787.3,0.0,conventional,2017,HarrisburgScranton +38,2017-04-09,1.48,251676.02,47837.77,121350.21,124.82,82363.22,78470.9,3892.32,0.0,conventional,2017,HarrisburgScranton +39,2017-04-02,1.46,239412.64,53424.06,110824.96,74.27,75089.35,73919.09,1170.26,0.0,conventional,2017,HarrisburgScranton +40,2017-03-26,1.38,254599.21,52944.04,131659.03,340.26,69655.88,68119.1,1536.78,0.0,conventional,2017,HarrisburgScranton +41,2017-03-19,1.4,243265.5,59161.21,118545.42,245.2,65313.67,58499.02,6729.93,84.72,conventional,2017,HarrisburgScranton +42,2017-03-12,1.42,245928.12,51306.88,126552.09,107.88,67961.27,64446.7,3514.57,0.0,conventional,2017,HarrisburgScranton +43,2017-03-05,1.19,273485.3,53961.57,151537.0,745.71,67241.02,66399.83,841.19,0.0,conventional,2017,HarrisburgScranton +44,2017-02-26,1.29,260743.16,52855.29,139066.59,100.84,68720.44,66310.52,2332.14,77.78,conventional,2017,HarrisburgScranton +45,2017-02-19,1.28,224541.2,56042.2,104680.99,184.45,63633.56,61717.96,1915.6,0.0,conventional,2017,HarrisburgScranton +46,2017-02-12,1.13,276755.29,105170.96,106548.49,367.91,64667.93,57944.02,6589.19,134.72,conventional,2017,HarrisburgScranton +47,2017-02-05,1.14,348380.9,117876.11,153442.16,4525.24,72537.39,67100.41,5107.7,329.28,conventional,2017,HarrisburgScranton +48,2017-01-29,1.25,267917.78,64322.44,129735.77,1855.78,72003.79,70448.34,1418.77,136.68,conventional,2017,HarrisburgScranton +49,2017-01-22,1.4,266851.77,49774.5,135845.63,3688.76,77542.88,74174.07,3242.21,126.6,conventional,2017,HarrisburgScranton +50,2017-01-15,1.44,251547.43,47536.54,126095.12,791.62,77124.15,75330.56,1793.59,0.0,conventional,2017,HarrisburgScranton +51,2017-01-08,1.3,275064.65,51590.9,153751.13,98.83,69623.79,67890.58,1733.21,0.0,conventional,2017,HarrisburgScranton +52,2017-01-01,1.35,235430.29,41800.77,136109.66,420.83,57099.03,52817.14,4281.89,0.0,conventional,2017,HarrisburgScranton +0,2017-12-31,1.42,245203.25,4805.09,183945.55,178.97,56273.64,48824.63,7447.45,1.56,conventional,2017,HartfordSpringfield +1,2017-12-24,1.5,225990.67,5610.69,161963.18,198.18,58218.62,53040.5,5162.55,15.57,conventional,2017,HartfordSpringfield +2,2017-12-17,1.44,228292.45,6271.96,160129.76,112.41,61778.32,56644.7,5133.62,0.0,conventional,2017,HartfordSpringfield +3,2017-12-10,1.14,447122.29,18098.0,359319.53,162.16,69542.6,58863.24,10673.16,6.2,conventional,2017,HartfordSpringfield +4,2017-12-03,1.55,231210.0,5716.0,166828.0,171.0,58495.0,47328.0,11166.0,0.0,conventional,2017,HartfordSpringfield +5,2017-11-26,1.38,229399.0,5695.0,153323.0,88.0,70294.0,42139.0,28155.0,0.0,conventional,2017,HartfordSpringfield +6,2017-11-19,1.38,264765.0,4591.0,169972.0,131.0,90071.0,61128.0,28942.0,0.0,conventional,2017,HartfordSpringfield +7,2017-11-12,1.56,226866.0,6490.0,162389.0,206.0,57781.0,55528.0,2253.0,0.0,conventional,2017,HartfordSpringfield +8,2017-11-05,1.53,240615.51,5209.01,161648.13,106.23,73652.14,62768.76,10883.38,0.0,conventional,2017,HartfordSpringfield +9,2017-10-29,1.53,247946.32,5938.74,188044.0,173.6,53789.98,51182.38,2607.6,0.0,conventional,2017,HartfordSpringfield +10,2017-10-22,1.5,244786.18,7441.12,179802.05,151.61,57391.4,55717.53,1673.87,0.0,conventional,2017,HartfordSpringfield +11,2017-10-15,1.58,236604.19,7043.32,177668.62,73.0,51819.25,49691.8,2127.45,0.0,conventional,2017,HartfordSpringfield +12,2017-10-08,1.6,217988.15,7540.43,159211.65,174.29,51061.78,50139.83,921.95,0.0,conventional,2017,HartfordSpringfield +13,2017-10-01,1.6,250057.54,6770.97,189987.47,76.86,53222.24,51546.23,1676.01,0.0,conventional,2017,HartfordSpringfield +14,2017-09-24,1.59,228615.67,4809.81,181192.01,81.52,42532.33,41353.71,1178.62,0.0,conventional,2017,HartfordSpringfield +15,2017-09-17,1.54,222593.17,7488.87,162728.73,73.1,52302.47,50193.57,2102.23,6.67,conventional,2017,HartfordSpringfield +16,2017-09-10,1.57,243134.01,5195.18,182049.97,130.21,55758.65,52068.88,2423.1,1266.67,conventional,2017,HartfordSpringfield +17,2017-09-03,1.74,224635.6,4476.51,165217.63,79.27,54862.19,52916.32,345.87,1600.0,conventional,2017,HartfordSpringfield +18,2017-08-27,1.78,220520.33,4245.98,160115.84,67.41,56091.1,55270.66,377.11,443.33,conventional,2017,HartfordSpringfield +19,2017-08-20,1.74,223619.15,3659.65,155326.78,79.42,64553.3,59503.97,3259.33,1790.0,conventional,2017,HartfordSpringfield +20,2017-08-13,1.63,263624.63,4240.0,193118.61,164.97,66101.05,49438.96,14192.88,2469.21,conventional,2017,HartfordSpringfield +21,2017-08-06,1.6,262304.2,5057.28,200007.7,223.22,57016.0,52868.61,2359.61,1787.78,conventional,2017,HartfordSpringfield +22,2017-07-30,1.56,258166.4,5477.9,190639.6,130.79,61918.11,59706.9,1314.55,896.66,conventional,2017,HartfordSpringfield +23,2017-07-23,1.59,264308.37,8142.48,201585.67,62.7,54517.52,49946.51,3071.01,1500.0,conventional,2017,HartfordSpringfield +24,2017-07-16,1.59,265615.87,10004.17,205771.6,129.66,49710.44,46745.57,1544.87,1420.0,conventional,2017,HartfordSpringfield +25,2017-07-09,1.72,273059.91,10848.33,198967.11,142.4,63102.07,56481.05,3381.02,3240.0,conventional,2017,HartfordSpringfield +26,2017-07-02,1.76,259782.83,9173.43,191483.01,549.47,58576.92,46887.32,8666.82,3022.78,conventional,2017,HartfordSpringfield +27,2017-06-25,1.68,275912.97,8658.16,220849.19,134.57,46271.05,42685.55,670.5,2915.0,conventional,2017,HartfordSpringfield +28,2017-06-18,1.79,256900.68,5734.57,195637.72,124.6,55403.79,52477.5,86.29,2840.0,conventional,2017,HartfordSpringfield +29,2017-06-11,1.75,296173.79,11601.99,218427.65,135.11,66009.04,62894.62,6.09,3108.33,conventional,2017,HartfordSpringfield +30,2017-06-04,1.81,288516.73,10922.08,216912.96,148.68,60533.01,59149.95,0.0,1383.06,conventional,2017,HartfordSpringfield +31,2017-05-28,1.85,304340.56,10672.4,225753.07,210.84,67704.25,67319.99,27.59,356.67,conventional,2017,HartfordSpringfield +32,2017-05-21,1.8,279086.43,10370.09,208423.4,169.35,60123.59,59724.57,245.41,153.61,conventional,2017,HartfordSpringfield +33,2017-05-14,1.76,285282.2,4501.51,193014.31,269.13,87497.25,85671.81,1111.55,713.89,conventional,2017,HartfordSpringfield +34,2017-05-07,1.61,369499.67,6754.65,251849.93,310.83,110584.26,109324.82,974.72,284.72,conventional,2017,HartfordSpringfield +35,2017-04-30,1.66,300311.86,7020.54,234305.43,228.33,58757.56,56541.74,2215.82,0.0,conventional,2017,HartfordSpringfield +36,2017-04-23,1.76,267468.69,8180.9,201383.54,202.5,57701.75,51718.85,5982.9,0.0,conventional,2017,HartfordSpringfield +37,2017-04-16,1.8,257405.41,6808.85,189287.26,128.05,61181.25,56049.22,5132.03,0.0,conventional,2017,HartfordSpringfield +38,2017-04-09,1.74,284522.31,7409.75,199909.01,161.85,77041.7,76173.81,867.89,0.0,conventional,2017,HartfordSpringfield +39,2017-04-02,1.71,269090.51,10131.3,204310.58,345.18,54303.45,53650.11,653.34,0.0,conventional,2017,HartfordSpringfield +40,2017-03-26,1.58,270398.76,7860.88,203663.76,1524.94,57349.18,56284.03,862.37,202.78,conventional,2017,HartfordSpringfield +41,2017-03-19,1.66,253838.3,5615.33,195073.06,691.53,52458.38,46606.3,5852.08,0.0,conventional,2017,HartfordSpringfield +42,2017-03-12,1.65,248805.91,4902.42,186372.61,162.89,57367.99,56747.94,620.05,0.0,conventional,2017,HartfordSpringfield +43,2017-03-05,1.25,373924.25,8437.42,316785.84,265.3,48435.69,46650.51,1785.18,0.0,conventional,2017,HartfordSpringfield +44,2017-02-26,1.59,259318.66,11083.37,193422.27,350.5,54462.52,51393.77,3068.75,0.0,conventional,2017,HartfordSpringfield +45,2017-02-19,1.3,249027.94,30000.58,167971.32,598.22,50457.82,45723.05,4491.71,243.06,conventional,2017,HartfordSpringfield +46,2017-02-12,1.14,395980.22,85641.41,249990.68,2290.06,58058.07,54676.58,2761.55,619.94,conventional,2017,HartfordSpringfield +47,2017-02-05,1.2,486542.38,52460.96,356398.62,23027.59,54655.21,49803.73,3869.41,982.07,conventional,2017,HartfordSpringfield +48,2017-01-29,1.46,292710.38,4741.29,220159.57,3935.43,63874.09,62167.99,1025.61,680.49,conventional,2017,HartfordSpringfield +49,2017-01-22,1.47,332672.05,4349.36,247185.31,13325.62,67811.76,65059.13,1897.89,854.74,conventional,2017,HartfordSpringfield +50,2017-01-15,1.43,284386.03,4665.17,223678.05,7893.25,48149.56,46455.74,1319.66,374.16,conventional,2017,HartfordSpringfield +51,2017-01-08,1.25,369468.59,5105.33,315473.05,306.22,48583.99,47415.32,1168.67,0.0,conventional,2017,HartfordSpringfield +52,2017-01-01,1.64,232663.88,2772.36,188107.91,2695.77,39087.84,38034.62,919.42,133.8,conventional,2017,HartfordSpringfield +0,2017-12-31,0.78,1391181.63,564063.25,209000.62,4194.25,613923.51,527743.84,86179.67,0.0,conventional,2017,Houston +1,2017-12-24,0.99,1063384.61,486643.36,150511.24,3020.72,423209.29,327462.75,95743.21,3.33,conventional,2017,Houston +2,2017-12-17,0.98,928716.6,429276.67,184347.17,2606.12,312486.64,218017.64,94469.0,0.0,conventional,2017,Houston +3,2017-12-10,0.79,1266364.71,459265.36,294180.18,6828.23,506090.94,416839.01,89251.93,0.0,conventional,2017,Houston +4,2017-12-03,0.77,1398400.0,540763.0,289729.0,7694.0,560213.0,479680.0,80533.0,0.0,conventional,2017,Houston +5,2017-11-26,0.88,991547.0,501157.0,134619.0,2692.0,353079.0,264827.0,88252.0,0.0,conventional,2017,Houston +6,2017-11-19,0.89,1142126.0,620361.0,134476.0,2776.0,384513.0,298259.0,86254.0,0.0,conventional,2017,Houston +7,2017-11-12,0.88,1256897.0,514065.0,251034.0,6534.0,485264.0,416893.0,68334.0,37.0,conventional,2017,Houston +8,2017-11-05,0.95,1363261.11,526090.63,264224.32,4359.04,568587.12,428438.84,137878.28,2270.0,conventional,2017,Houston +9,2017-10-29,1.12,1126402.78,481864.71,189258.96,2105.74,453173.37,264530.01,188243.36,400.0,conventional,2017,Houston +10,2017-10-22,1.16,1008358.03,492168.22,128029.43,1834.84,386325.54,298349.69,87975.85,0.0,conventional,2017,Houston +11,2017-10-15,1.26,1029556.13,476686.67,149935.14,1866.1,401068.22,310037.28,91030.94,0.0,conventional,2017,Houston +12,2017-10-08,1.29,1042700.75,491561.89,146966.38,1449.29,402723.19,320849.72,81873.47,0.0,conventional,2017,Houston +13,2017-10-01,1.29,991939.31,472251.74,141695.25,2169.62,375822.7,291964.68,83858.02,0.0,conventional,2017,Houston +14,2017-09-24,1.25,949769.71,470511.08,145808.34,1812.37,331637.92,262287.19,69350.73,0.0,conventional,2017,Houston +15,2017-09-17,1.2,964460.21,460806.95,171011.56,2264.51,330377.19,229435.93,100937.93,3.33,conventional,2017,Houston +16,2017-09-10,1.1,1138315.8,606027.02,165584.72,2452.1,364251.96,259297.35,104954.61,0.0,conventional,2017,Houston +17,2017-09-03,1.19,852110.88,426423.84,171139.39,1860.58,252687.07,172564.44,79904.85,217.78,conventional,2017,Houston +18,2017-08-27,1.16,1109914.22,510226.8,195358.46,1867.94,402461.02,293696.79,108227.56,536.67,conventional,2017,Houston +19,2017-08-20,1.01,1096227.54,458024.37,216584.11,1575.76,420043.3,230159.82,189883.48,0.0,conventional,2017,Houston +20,2017-08-13,0.99,1332232.95,406049.08,395755.28,6723.26,523705.33,224811.25,298894.08,0.0,conventional,2017,Houston +21,2017-08-06,0.99,1192888.53,552895.89,251754.0,3739.05,384499.59,246147.25,138352.34,0.0,conventional,2017,Houston +22,2017-07-30,1.0,1117345.6,536258.78,203627.59,2676.17,374783.06,247453.57,127329.49,0.0,conventional,2017,Houston +23,2017-07-23,1.02,1088792.51,510127.52,214165.71,3006.89,361492.39,240331.25,121091.14,70.0,conventional,2017,Houston +24,2017-07-16,1.01,1143310.87,475986.48,251487.71,4545.5,411291.18,279519.76,131771.42,0.0,conventional,2017,Houston +25,2017-07-09,0.78,1513596.5,565234.2,223073.67,3020.2,722268.43,334967.14,387301.29,0.0,conventional,2017,Houston +26,2017-07-02,0.83,1348652.11,559731.32,240188.7,4720.91,544011.18,276152.2,267556.2,302.78,conventional,2017,Houston +27,2017-06-25,0.82,1352318.9,569850.04,285476.88,2928.68,494063.3,188282.06,305777.91,3.33,conventional,2017,Houston +28,2017-06-18,0.77,1755331.3,583952.66,412002.26,7010.41,752365.97,201968.43,550383.65,13.89,conventional,2017,Houston +29,2017-06-11,0.89,1240308.02,627610.5,201534.03,5451.76,405711.73,200221.42,205490.31,0.0,conventional,2017,Houston +30,2017-06-04,0.83,1377530.34,603106.83,192105.68,4926.04,577391.79,357447.61,219944.18,0.0,conventional,2017,Houston +31,2017-05-28,0.87,1315258.8,627786.36,268181.39,5549.79,413741.26,187986.63,225754.63,0.0,conventional,2017,Houston +32,2017-05-21,0.83,1262476.33,579270.57,219956.52,3706.26,459542.98,190861.62,268681.36,0.0,conventional,2017,Houston +33,2017-05-14,0.79,1444023.34,625728.18,231431.19,3248.89,583615.08,262815.2,320799.88,0.0,conventional,2017,Houston +34,2017-05-07,0.74,1789051.94,732114.63,350523.8,3364.51,703049.0,232259.29,470789.71,0.0,conventional,2017,Houston +35,2017-04-30,0.72,1832450.4,576270.01,451254.61,10440.51,794485.27,164674.25,629791.58,19.44,conventional,2017,Houston +36,2017-04-23,0.68,1776220.69,665435.93,352920.48,5646.02,752218.26,224693.22,527525.04,0.0,conventional,2017,Houston +37,2017-04-16,0.76,1402904.54,820487.46,207708.35,3383.48,371325.25,312771.41,58553.84,0.0,conventional,2017,Houston +38,2017-04-09,0.81,1244695.02,684059.72,272460.29,7690.78,280484.23,204288.42,76195.81,0.0,conventional,2017,Houston +39,2017-04-02,0.7,1543050.06,879079.77,183771.99,3906.52,476291.78,316601.87,159683.24,6.67,conventional,2017,Houston +40,2017-03-26,0.83,1074520.66,663134.3,182628.92,5896.58,222860.86,203295.68,19565.18,0.0,conventional,2017,Houston +41,2017-03-19,0.85,1016536.61,653306.71,183349.68,21365.41,158514.81,157513.45,998.03,3.33,conventional,2017,Houston +42,2017-03-12,0.9,903586.21,619358.06,151499.32,29781.99,102946.84,101884.7,1062.14,0.0,conventional,2017,Houston +43,2017-03-05,0.74,1110895.97,697103.02,161909.48,40611.87,211271.6,209810.16,1458.11,3.33,conventional,2017,Houston +44,2017-02-26,0.53,1547337.25,1067091.8,116819.32,42393.74,321032.39,292106.96,28925.43,0.0,conventional,2017,Houston +45,2017-02-19,0.67,1190708.83,565042.04,142847.65,63757.91,419061.23,291927.39,127089.4,44.44,conventional,2017,Houston +46,2017-02-12,0.58,1420811.06,781130.12,148459.74,71472.3,419748.9,278125.24,141599.77,23.89,conventional,2017,Houston +47,2017-02-05,0.55,1977923.65,1026765.08,406006.03,140962.93,404189.61,316097.57,88069.82,22.22,conventional,2017,Houston +48,2017-01-29,0.7,1258481.11,789020.2,215934.35,58981.08,194545.48,74838.47,119674.39,32.62,conventional,2017,Houston +49,2017-01-22,0.68,1119168.1,798585.87,170357.81,4719.74,145504.68,79246.83,66254.52,3.33,conventional,2017,Houston +50,2017-01-15,0.53,1613159.67,1134750.48,184545.5,2711.5,291152.19,242009.67,49139.19,3.33,conventional,2017,Houston +51,2017-01-08,0.57,1417208.02,933181.79,198434.84,2690.98,282900.41,190479.48,92420.93,0.0,conventional,2017,Houston +52,2017-01-01,0.51,1475741.07,985040.19,290583.75,6313.88,193803.25,62497.42,131305.83,0.0,conventional,2017,Houston +0,2017-12-31,0.96,205202.95,67904.72,57394.76,13768.33,66135.14,59516.58,6575.66,42.9,conventional,2017,Indianapolis +1,2017-12-24,1.3,148389.14,22248.67,58457.91,12103.69,55578.87,47670.97,7840.41,67.49,conventional,2017,Indianapolis +2,2017-12-17,1.26,143975.58,18371.92,58045.77,9259.69,58298.2,48938.01,9311.33,48.86,conventional,2017,Indianapolis +3,2017-12-10,1.26,167890.91,9368.9,83042.64,1754.24,73725.13,37305.23,36372.75,47.15,conventional,2017,Indianapolis +4,2017-12-03,1.25,182891.0,8806.0,103238.0,2338.0,68510.0,23489.0,44956.0,64.0,conventional,2017,Indianapolis +5,2017-11-26,1.4,115688.0,7132.0,51923.0,608.0,56024.0,25102.0,30900.0,23.0,conventional,2017,Indianapolis +6,2017-11-19,1.08,178437.0,7408.0,76810.0,613.0,93605.0,42396.0,51103.0,106.0,conventional,2017,Indianapolis +7,2017-11-12,1.03,202129.0,11814.0,89236.0,1037.0,100042.0,36175.0,63702.0,165.0,conventional,2017,Indianapolis +8,2017-11-05,1.26,194103.11,8575.56,86633.97,752.93,98140.65,35477.95,62594.13,68.57,conventional,2017,Indianapolis +9,2017-10-29,1.63,152558.08,8565.38,65715.28,870.81,77406.61,36905.14,40362.33,139.14,conventional,2017,Indianapolis +10,2017-10-22,1.67,125746.37,8944.76,57230.12,603.48,58968.01,28364.19,30577.22,26.6,conventional,2017,Indianapolis +11,2017-10-15,1.76,120662.74,9351.2,52216.91,631.41,58463.22,27096.14,31344.37,22.71,conventional,2017,Indianapolis +12,2017-10-08,1.97,105043.74,10071.88,37063.61,607.85,57300.4,27891.17,29348.64,60.59,conventional,2017,Indianapolis +13,2017-10-01,1.84,128999.95,9051.01,53986.11,972.08,64990.75,33550.42,31111.99,328.34,conventional,2017,Indianapolis +14,2017-09-24,1.74,135854.22,7948.8,63487.06,867.35,63551.01,31441.95,32031.35,77.71,conventional,2017,Indianapolis +15,2017-09-17,1.86,126434.16,7889.87,55951.98,800.26,61792.05,31782.33,29745.79,263.93,conventional,2017,Indianapolis +16,2017-09-10,1.86,139315.43,8832.22,60421.9,787.37,69273.94,35802.73,32306.29,1164.92,conventional,2017,Indianapolis +17,2017-09-03,1.7,145552.03,7686.15,61680.49,879.27,75306.12,39686.62,34205.17,1414.33,conventional,2017,Indianapolis +18,2017-08-27,1.29,179853.82,8671.85,83185.36,1093.0,86903.61,32946.35,52220.21,1737.05,conventional,2017,Indianapolis +19,2017-08-20,1.39,174633.06,7182.87,83860.57,1162.61,82427.01,35015.7,46406.54,1004.77,conventional,2017,Indianapolis +20,2017-08-13,1.49,154354.18,7053.96,68255.91,800.61,78243.7,36182.69,40113.9,1947.11,conventional,2017,Indianapolis +21,2017-08-06,1.35,170536.59,7818.03,78546.1,1301.64,82870.82,39049.2,41000.59,2821.03,conventional,2017,Indianapolis +22,2017-07-30,1.41,159525.4,7452.61,74597.93,807.32,76667.54,35579.02,39457.8,1630.72,conventional,2017,Indianapolis +23,2017-07-23,1.36,155196.74,7482.96,70451.99,843.55,76418.24,37123.85,37812.55,1481.84,conventional,2017,Indianapolis +24,2017-07-16,1.35,166601.37,9861.88,82250.49,1367.59,73121.41,34009.29,37719.47,1392.65,conventional,2017,Indianapolis +25,2017-07-09,1.08,209047.97,8754.14,85278.67,1835.09,113180.07,51238.22,59538.32,2403.53,conventional,2017,Indianapolis +26,2017-07-02,1.09,194572.17,8629.27,78472.44,1678.38,105792.08,54877.91,47715.79,3198.38,conventional,2017,Indianapolis +27,2017-06-25,1.04,197095.32,7378.96,72671.18,1002.29,116042.89,49444.51,64817.87,1780.51,conventional,2017,Indianapolis +28,2017-06-18,1.03,223221.9,11623.93,96522.44,1944.09,113131.44,53306.73,58995.18,829.53,conventional,2017,Indianapolis +29,2017-06-11,0.98,224873.96,11584.14,72043.56,1097.13,140149.13,46235.82,93478.49,434.82,conventional,2017,Indianapolis +30,2017-06-04,1.07,218092.41,11334.96,79916.6,1766.11,125074.74,40296.68,84463.79,314.27,conventional,2017,Indianapolis +31,2017-05-28,1.19,188284.12,11651.62,77776.16,1540.83,97315.51,45525.97,51742.05,47.49,conventional,2017,Indianapolis +32,2017-05-21,1.09,185608.56,13080.23,71966.19,1202.57,99359.57,44714.52,54004.53,640.52,conventional,2017,Indianapolis +33,2017-05-14,0.85,268519.12,17926.54,93535.99,1422.94,155633.65,44372.98,111176.5,84.17,conventional,2017,Indianapolis +34,2017-05-07,0.93,290014.77,22284.54,116928.39,2348.18,148453.66,50838.55,97497.22,117.89,conventional,2017,Indianapolis +35,2017-04-30,1.18,212879.47,14827.79,86660.77,1564.77,109826.14,47389.5,62334.66,101.98,conventional,2017,Indianapolis +36,2017-04-23,1.06,211977.98,11831.88,72470.48,1240.51,126435.11,42539.62,83872.46,23.03,conventional,2017,Indianapolis +37,2017-04-16,1.14,205429.57,13018.13,79071.99,1773.31,111566.14,46322.29,65171.8,72.05,conventional,2017,Indianapolis +38,2017-04-09,1.3,160389.47,11776.2,69900.7,1133.76,77578.81,41688.75,35858.77,31.29,conventional,2017,Indianapolis +39,2017-04-02,1.26,166588.45,11375.5,61512.67,1452.17,92248.11,45777.12,46455.38,15.61,conventional,2017,Indianapolis +40,2017-03-26,1.27,181489.14,12342.94,68119.93,1326.07,99700.2,42285.27,57404.1,10.83,conventional,2017,Indianapolis +41,2017-03-19,1.25,168330.5,12798.54,60511.72,1516.39,93503.85,41713.27,51729.38,61.2,conventional,2017,Indianapolis +42,2017-03-12,1.35,149318.47,10979.78,65279.45,1539.77,71519.47,35129.81,36351.65,38.01,conventional,2017,Indianapolis +43,2017-03-05,1.35,150301.8,12865.79,66251.59,1756.45,69427.97,40647.4,28640.13,140.44,conventional,2017,Indianapolis +44,2017-02-26,1.02,188900.46,12096.22,83033.68,1923.56,91847.0,38588.66,53252.02,6.32,conventional,2017,Indianapolis +45,2017-02-19,0.94,179250.21,12336.44,74485.41,1362.8,91065.56,42818.68,48242.38,4.5,conventional,2017,Indianapolis +46,2017-02-12,0.77,237575.64,17435.1,116691.02,2796.88,100652.64,51397.7,49247.59,7.35,conventional,2017,Indianapolis +47,2017-02-05,0.84,276051.64,19443.88,146037.65,5353.25,105216.86,53663.15,51550.76,2.95,conventional,2017,Indianapolis +48,2017-01-29,0.87,224036.18,12914.29,93252.53,2759.02,115110.34,53542.2,61566.67,1.47,conventional,2017,Indianapolis +49,2017-01-22,0.93,204570.78,13553.31,92880.57,3909.4,94227.5,47552.12,46669.52,5.86,conventional,2017,Indianapolis +50,2017-01-15,0.96,210793.64,15258.94,102478.51,2034.41,91021.78,45737.6,45282.71,1.47,conventional,2017,Indianapolis +51,2017-01-08,0.86,222849.42,17783.95,112339.02,3127.01,89599.44,41838.55,47759.42,1.47,conventional,2017,Indianapolis +52,2017-01-01,0.91,186464.64,16193.14,97953.5,5029.22,67288.78,39169.93,28118.85,0.0,conventional,2017,Indianapolis +0,2017-12-31,1.12,206562.78,115793.69,14230.19,277.37,76261.53,29166.63,46858.23,236.67,conventional,2017,Jacksonville +1,2017-12-24,1.38,127181.54,67108.8,8048.69,314.0,51710.05,25721.96,25598.09,390.0,conventional,2017,Jacksonville +2,2017-12-17,0.99,176847.28,98660.32,11261.09,288.18,66637.69,27358.59,39015.77,263.33,conventional,2017,Jacksonville +3,2017-12-10,1.01,181425.66,95942.65,11557.82,257.6,73667.59,33265.86,40251.73,150.0,conventional,2017,Jacksonville +4,2017-12-03,1.26,152697.0,87017.0,9779.0,273.0,55628.0,41484.0,13951.0,193.0,conventional,2017,Jacksonville +5,2017-11-26,1.42,120001.0,65331.0,7096.0,195.0,47379.0,26125.0,21030.0,223.0,conventional,2017,Jacksonville +6,2017-11-19,1.21,155729.0,84638.0,10606.0,306.0,60179.0,25039.0,34900.0,240.0,conventional,2017,Jacksonville +7,2017-11-12,1.33,154511.0,85332.0,9938.0,237.0,59003.0,48421.0,10329.0,253.0,conventional,2017,Jacksonville +8,2017-11-05,1.48,131679.37,74308.6,8741.26,234.92,48394.59,33225.98,14981.94,186.67,conventional,2017,Jacksonville +9,2017-10-29,1.17,193936.8,108447.0,13949.4,264.49,71275.91,39625.9,31443.34,206.67,conventional,2017,Jacksonville +10,2017-10-22,1.56,152418.64,89649.03,11079.1,260.69,51429.82,21040.91,30388.91,0.0,conventional,2017,Jacksonville +11,2017-10-15,1.76,137503.61,75857.38,10193.63,137.38,51315.22,23963.09,27352.13,0.0,conventional,2017,Jacksonville +12,2017-10-08,1.79,152742.37,89903.47,10996.65,76.87,51765.38,22345.45,29419.93,0.0,conventional,2017,Jacksonville +13,2017-10-01,2.0,128592.98,68330.79,14372.21,49.83,45840.15,19480.95,26359.2,0.0,conventional,2017,Jacksonville +14,2017-09-24,1.82,130570.77,82615.31,12009.49,64.82,35881.15,18592.21,17288.94,0.0,conventional,2017,Jacksonville +15,2017-09-17,1.73,141725.96,82016.13,13544.55,24.82,46140.46,8860.73,37219.73,60.0,conventional,2017,Jacksonville +16,2017-09-10,1.77,117342.62,62701.34,11080.3,27.8,43533.18,22005.33,20014.52,1513.33,conventional,2017,Jacksonville +17,2017-09-03,1.88,147242.45,82573.64,14144.89,99.08,50424.84,20452.27,28919.24,1053.33,conventional,2017,Jacksonville +18,2017-08-27,1.63,138021.2,83466.7,12673.2,54.34,41826.96,19492.6,19474.36,2860.0,conventional,2017,Jacksonville +19,2017-08-20,1.63,150828.78,86428.56,13226.03,12.2,51161.99,22007.23,27404.76,1750.0,conventional,2017,Jacksonville +20,2017-08-13,1.49,171995.95,90069.37,14574.55,68.45,67283.58,40501.07,23085.84,3696.67,conventional,2017,Jacksonville +21,2017-08-06,1.44,148237.94,82275.37,12280.16,43.1,53639.31,22133.61,29292.37,2213.33,conventional,2017,Jacksonville +22,2017-07-30,1.43,157712.19,89089.69,13102.88,73.61,55446.01,32147.33,21985.35,1313.33,conventional,2017,Jacksonville +23,2017-07-23,1.44,172994.22,101545.19,14942.73,55.78,56450.52,23710.96,29831.78,2907.78,conventional,2017,Jacksonville +24,2017-07-16,1.48,160177.18,88735.04,14194.77,102.81,57144.56,24773.25,29400.2,2971.11,conventional,2017,Jacksonville +25,2017-07-09,1.42,161864.64,98757.83,14132.78,46.02,48928.01,28914.04,16267.58,3746.39,conventional,2017,Jacksonville +26,2017-07-02,1.41,189413.48,113926.84,18894.24,122.11,56470.29,31305.74,20128.72,5035.83,conventional,2017,Jacksonville +27,2017-06-25,1.36,180199.86,99600.41,16687.42,75.35,63836.68,33088.12,28278.56,2470.0,conventional,2017,Jacksonville +28,2017-06-18,1.45,151012.55,94578.34,12992.82,90.39,43351.0,23346.19,16704.81,3300.0,conventional,2017,Jacksonville +29,2017-06-11,1.43,193088.4,119698.07,15932.56,121.45,57336.32,29031.67,25729.09,2575.56,conventional,2017,Jacksonville +30,2017-06-04,1.46,178356.7,119654.85,16223.79,84.55,42393.51,24682.06,16731.45,980.0,conventional,2017,Jacksonville +31,2017-05-28,1.43,181588.22,96509.06,15848.55,115.43,69115.18,35449.21,33245.97,420.0,conventional,2017,Jacksonville +32,2017-05-21,1.44,155818.85,86716.2,14543.35,99.54,54459.76,25647.12,28151.81,660.83,conventional,2017,Jacksonville +33,2017-05-14,1.47,148325.98,79945.48,12921.51,99.81,55359.18,24530.62,30178.56,650.0,conventional,2017,Jacksonville +34,2017-05-07,1.13,268808.12,155607.42,26574.54,224.12,86402.04,33910.3,52241.74,250.0,conventional,2017,Jacksonville +35,2017-04-30,1.26,240227.67,150982.37,24978.55,121.15,64145.6,26376.03,37214.57,555.0,conventional,2017,Jacksonville +36,2017-04-23,1.47,156137.58,85993.83,16104.95,78.16,53960.64,25194.97,28670.67,95.0,conventional,2017,Jacksonville +37,2017-04-16,1.46,151862.73,83664.62,16186.11,70.75,51941.25,25862.92,25718.33,360.0,conventional,2017,Jacksonville +38,2017-04-09,1.5,151364.03,81448.74,17365.3,142.56,52407.43,22044.41,29968.02,395.0,conventional,2017,Jacksonville +39,2017-04-02,1.64,149669.6,84324.85,16423.7,171.97,48749.08,20349.59,28239.49,160.0,conventional,2017,Jacksonville +40,2017-03-26,1.62,149813.32,81656.27,16051.23,125.48,51980.34,20444.62,31040.72,495.0,conventional,2017,Jacksonville +41,2017-03-19,1.56,138402.06,72614.47,15206.97,167.14,50413.48,24402.11,25501.37,510.0,conventional,2017,Jacksonville +42,2017-03-12,1.55,146196.96,78256.68,17190.82,85.68,50663.78,23969.51,26579.27,115.0,conventional,2017,Jacksonville +43,2017-03-05,1.56,134582.21,71350.35,16171.12,82.78,46977.96,19070.58,27887.38,20.0,conventional,2017,Jacksonville +44,2017-02-26,1.16,172502.22,90291.99,20630.64,66.62,61512.97,31645.74,29517.23,350.0,conventional,2017,Jacksonville +45,2017-02-19,1.23,139949.65,72634.25,18683.75,89.88,48541.77,19864.06,28137.71,540.0,conventional,2017,Jacksonville +46,2017-02-12,0.9,216367.38,107196.49,33548.36,348.06,75274.47,28073.99,47170.48,30.0,conventional,2017,Jacksonville +47,2017-02-05,0.74,398543.91,191954.42,65200.84,357.77,141030.88,64165.61,76520.83,344.44,conventional,2017,Jacksonville +48,2017-01-29,1.11,206654.98,87623.67,29999.87,236.88,88794.56,37567.36,50878.59,348.61,conventional,2017,Jacksonville +49,2017-01-22,0.91,246514.81,75808.7,50763.51,376.72,119565.88,28445.81,91120.07,0.0,conventional,2017,Jacksonville +50,2017-01-15,1.16,191122.29,80023.35,30493.69,188.02,80417.23,27774.46,52642.77,0.0,conventional,2017,Jacksonville +51,2017-01-08,1.15,141693.33,47783.4,23081.48,148.91,70679.54,29267.91,41411.63,0.0,conventional,2017,Jacksonville +52,2017-01-01,0.81,263730.05,94909.67,46910.39,302.55,121607.44,35501.09,86106.35,0.0,conventional,2017,Jacksonville +0,2017-12-31,1.04,291922.57,57663.71,111439.26,6018.29,116801.31,49190.85,67480.46,130.0,conventional,2017,LasVegas +1,2017-12-24,1.24,234520.01,63831.1,66599.45,6232.61,97856.85,60969.97,36710.21,176.67,conventional,2017,LasVegas +2,2017-12-17,1.03,267987.97,62937.38,102137.37,3955.11,98958.11,63479.54,35185.24,293.33,conventional,2017,LasVegas +3,2017-12-10,1.03,288441.17,65071.68,94140.95,4760.32,124468.22,62945.15,61291.96,231.11,conventional,2017,LasVegas +4,2017-12-03,1.01,315521.0,66925.0,127968.0,4488.0,116140.0,47447.0,68396.0,297.0,conventional,2017,LasVegas +5,2017-11-26,1.16,205033.0,52245.0,75503.0,4316.0,72969.0,45659.0,27009.0,300.0,conventional,2017,LasVegas +6,2017-11-19,1.13,234265.0,60519.0,77336.0,5388.0,91022.0,47255.0,43420.0,347.0,conventional,2017,LasVegas +7,2017-11-12,1.06,291325.0,57132.0,110255.0,5043.0,118895.0,42648.0,76180.0,67.0,conventional,2017,LasVegas +8,2017-11-05,1.12,321534.28,57828.06,121041.61,5037.21,137627.4,41685.93,95611.47,330.0,conventional,2017,LasVegas +9,2017-10-29,1.29,243340.4,56224.61,94603.45,3515.0,88997.34,41859.63,46967.71,170.0,conventional,2017,LasVegas +10,2017-10-22,1.37,204094.51,61741.1,74165.15,682.14,67506.12,46482.24,21023.88,0.0,conventional,2017,LasVegas +11,2017-10-15,1.45,202735.87,57479.41,76990.78,60.64,68205.04,44183.98,24021.06,0.0,conventional,2017,LasVegas +12,2017-10-08,1.64,195455.06,62574.22,60756.44,75.85,72048.55,47487.79,24560.76,0.0,conventional,2017,LasVegas +13,2017-10-01,1.61,189529.26,58261.77,67847.94,62.85,63356.7,43605.94,19750.76,0.0,conventional,2017,LasVegas +14,2017-09-24,1.61,192284.92,59560.0,62383.75,66.23,70274.94,42658.17,27616.77,0.0,conventional,2017,LasVegas +15,2017-09-17,1.58,201028.75,64271.49,63852.15,109.31,72795.8,45361.66,27434.14,0.0,conventional,2017,LasVegas +16,2017-09-10,1.49,215393.25,116267.62,26602.41,5997.25,66525.97,43187.87,23218.1,120.0,conventional,2017,LasVegas +17,2017-09-03,1.53,204091.69,95445.95,29557.08,6208.57,72880.09,45086.5,27650.26,143.33,conventional,2017,LasVegas +18,2017-08-27,1.48,203947.9,107288.21,26219.44,6548.22,63892.03,39816.3,23140.17,935.56,conventional,2017,LasVegas +19,2017-08-20,1.26,261684.23,109201.66,44715.5,7342.47,100424.6,34087.48,65960.46,376.66,conventional,2017,LasVegas +20,2017-08-13,1.18,323793.98,100523.04,68158.2,6825.44,148287.3,42423.16,105694.14,170.0,conventional,2017,LasVegas +21,2017-08-06,1.3,283779.47,114985.35,53059.42,7126.4,108608.3,49026.33,59193.02,388.95,conventional,2017,LasVegas +22,2017-07-30,1.29,288905.9,113471.56,46394.92,7351.15,121688.27,58516.35,62901.92,270.0,conventional,2017,LasVegas +23,2017-07-23,1.28,296887.44,114294.17,62879.45,6655.76,113058.06,46713.26,66328.13,16.67,conventional,2017,LasVegas +24,2017-07-16,1.22,299858.79,131681.44,54114.55,6343.2,107719.6,36179.33,71540.27,0.0,conventional,2017,LasVegas +25,2017-07-09,0.99,399827.4,138190.07,54694.89,7591.71,199350.73,75039.55,124311.18,0.0,conventional,2017,LasVegas +26,2017-07-02,1.06,376795.81,129619.03,48964.77,8471.78,189740.23,70018.95,119721.28,0.0,conventional,2017,LasVegas +27,2017-06-25,1.03,362489.51,130867.46,49034.77,6653.42,175933.86,53411.08,122522.78,0.0,conventional,2017,LasVegas +28,2017-06-18,1.01,357696.04,133507.85,55577.57,6723.34,161887.28,55967.51,105919.77,0.0,conventional,2017,LasVegas +29,2017-06-11,0.99,374211.54,158132.02,51454.31,6562.63,158062.58,60840.35,97009.73,212.5,conventional,2017,LasVegas +30,2017-06-04,1.05,376990.33,137454.97,53764.53,8227.13,177543.7,63050.35,114357.24,136.11,conventional,2017,LasVegas +31,2017-05-28,1.06,364486.68,130568.12,50153.97,10114.51,173650.08,62414.0,111236.08,0.0,conventional,2017,LasVegas +32,2017-05-21,1.02,356922.23,117366.67,63083.52,8122.78,168349.26,48461.64,119887.62,0.0,conventional,2017,LasVegas +33,2017-05-14,0.98,399525.37,125448.07,75420.31,7459.78,191197.21,47410.64,143342.13,444.44,conventional,2017,LasVegas +34,2017-05-07,0.94,468975.91,160728.38,76426.47,7876.55,223944.51,50093.71,173850.8,0.0,conventional,2017,LasVegas +35,2017-04-30,0.95,359011.13,113104.9,65026.2,6704.04,174175.99,43597.71,130578.28,0.0,conventional,2017,LasVegas +36,2017-04-23,0.84,439665.28,118344.17,81560.68,9126.91,230633.52,41132.11,189154.19,347.22,conventional,2017,LasVegas +37,2017-04-16,0.93,410849.51,119501.49,58233.45,9911.63,223202.94,56490.21,166712.73,0.0,conventional,2017,LasVegas +38,2017-04-09,1.04,304603.84,115811.58,40245.44,8785.16,139761.66,50811.89,88838.66,111.11,conventional,2017,LasVegas +39,2017-04-02,1.04,329722.62,118797.68,41149.92,11317.61,158457.41,63726.92,94730.49,0.0,conventional,2017,LasVegas +40,2017-03-26,1.02,325734.59,117623.43,43374.75,9405.35,155331.06,64615.85,90715.21,0.0,conventional,2017,LasVegas +41,2017-03-19,1.02,318004.24,111396.46,43301.14,9357.16,153949.48,51704.25,102245.23,0.0,conventional,2017,LasVegas +42,2017-03-12,0.99,315445.03,114790.55,38280.91,8807.29,153566.28,72719.62,80846.66,0.0,conventional,2017,LasVegas +43,2017-03-05,0.96,345889.75,119711.85,49738.25,8076.53,168363.12,53110.43,115252.69,0.0,conventional,2017,LasVegas +44,2017-02-26,0.89,325905.13,97278.06,57129.17,7364.63,164133.27,55239.96,108893.31,0.0,conventional,2017,LasVegas +45,2017-02-19,0.93,318600.59,135001.7,40837.72,6859.46,135901.71,65647.85,70253.86,0.0,conventional,2017,LasVegas +46,2017-02-12,0.72,406866.03,128160.12,59930.14,8137.14,210638.63,53528.96,157109.67,0.0,conventional,2017,LasVegas +47,2017-02-05,0.54,680234.93,286395.34,121440.6,8149.22,264249.77,56405.96,207843.81,0.0,conventional,2017,LasVegas +48,2017-01-29,0.93,309146.07,120542.24,45790.67,7716.2,135096.96,59095.7,76001.26,0.0,conventional,2017,LasVegas +49,2017-01-22,0.79,382850.78,133276.27,64435.68,6954.72,178184.11,44375.39,133739.28,69.44,conventional,2017,LasVegas +50,2017-01-15,0.78,419687.35,118904.72,80217.63,7692.26,212872.74,59471.06,153401.68,0.0,conventional,2017,LasVegas +51,2017-01-08,0.81,411218.71,112947.03,77763.79,7983.56,212524.33,71141.24,141383.09,0.0,conventional,2017,LasVegas +52,2017-01-01,0.77,363865.19,95268.03,75111.35,7736.95,185748.86,62603.76,123145.1,0.0,conventional,2017,LasVegas +0,2017-12-31,0.88,3212261.75,1368619.91,755743.47,75509.63,1012388.74,959746.82,14343.09,38298.83,conventional,2017,LosAngeles +1,2017-12-24,1.1,2389829.32,1076720.74,350754.59,78272.26,884081.73,831557.36,15344.42,37179.95,conventional,2017,LosAngeles +2,2017-12-17,0.89,3130916.47,1046466.31,1167417.29,76600.37,840432.5,790545.51,14767.42,35119.57,conventional,2017,LosAngeles +3,2017-12-10,1.07,2404221.58,1024592.52,396712.41,62000.95,920915.7,868361.67,16284.72,36269.31,conventional,2017,LosAngeles +4,2017-12-03,1.01,2615853.0,1177940.0,396804.0,68958.0,972151.0,913002.0,23854.0,35296.0,conventional,2017,LosAngeles +5,2017-11-26,1.19,2153918.0,987928.0,327525.0,82683.0,755782.0,702784.0,16197.0,36801.0,conventional,2017,LosAngeles +6,2017-11-19,1.14,2391383.0,1042472.0,309130.0,73389.0,966392.0,893064.0,34871.0,38457.0,conventional,2017,LosAngeles +7,2017-11-12,1.08,2626121.0,1225567.0,413517.0,72562.0,914474.0,851550.0,23684.0,39240.0,conventional,2017,LosAngeles +8,2017-11-05,1.04,2691240.89,1079147.36,743292.73,69039.29,799761.51,748133.99,14912.26,36715.26,conventional,2017,LosAngeles +9,2017-10-29,1.09,2850377.2,1085428.83,843048.34,81784.71,840115.32,794198.46,16098.25,29818.61,conventional,2017,LosAngeles +10,2017-10-22,1.49,1968638.86,924450.62,360936.46,84635.32,598616.46,551747.52,15614.96,31253.98,conventional,2017,LosAngeles +11,2017-10-15,1.67,1779831.36,741758.67,385402.67,94134.88,558535.14,509468.27,15849.71,33217.16,conventional,2017,LosAngeles +12,2017-10-08,1.8,1711267.24,753730.08,343707.72,91288.33,522541.11,475271.7,17349.06,29920.35,conventional,2017,LosAngeles +13,2017-10-01,1.77,1697028.59,725653.31,335816.39,78098.02,557460.87,510568.78,17512.89,29379.2,conventional,2017,LosAngeles +14,2017-09-24,1.75,1760610.46,768658.64,337637.65,79407.42,574906.75,529354.38,16258.82,29293.55,conventional,2017,LosAngeles +15,2017-09-17,1.73,1865690.48,837463.16,357662.06,84556.11,586009.15,543636.79,13163.62,29208.74,conventional,2017,LosAngeles +16,2017-09-10,1.74,1969051.97,898753.94,359807.34,94971.16,615519.53,568315.4,14394.75,32809.38,conventional,2017,LosAngeles +17,2017-09-03,1.61,2176974.29,1050438.58,441327.04,112400.98,572807.69,521219.23,15575.83,36012.63,conventional,2017,LosAngeles +18,2017-08-27,1.66,2117126.8,1096036.21,344686.36,105558.18,570846.05,523454.36,14650.86,32740.83,conventional,2017,LosAngeles +19,2017-08-20,1.45,2309865.74,1207541.43,324882.97,99791.22,677650.12,618120.14,22264.21,37265.77,conventional,2017,LosAngeles +20,2017-08-13,1.19,2832849.85,1412649.35,452871.67,120591.71,846737.12,784481.79,21556.57,40698.76,conventional,2017,LosAngeles +21,2017-08-06,1.22,2742628.31,1359069.5,414552.66,109001.34,860004.81,793163.78,20822.11,46018.92,conventional,2017,LosAngeles +22,2017-07-30,1.39,2426027.85,1263812.03,399835.58,100595.71,661784.53,603467.35,18679.7,39637.48,conventional,2017,LosAngeles +23,2017-07-23,1.38,2484918.32,1266618.54,407573.08,99404.46,711322.24,652958.02,12421.66,45942.56,conventional,2017,LosAngeles +24,2017-07-16,1.37,2558156.26,1327685.51,409058.25,105463.36,715949.14,658086.39,14421.29,43441.46,conventional,2017,LosAngeles +25,2017-07-09,1.12,3382974.98,1520215.45,437585.1,87693.03,1337481.4,1285980.32,788.55,50712.53,conventional,2017,LosAngeles +26,2017-07-02,1.07,3507155.74,1521073.33,497356.53,104452.24,1384273.64,1337890.74,411.72,45971.18,conventional,2017,LosAngeles +27,2017-06-25,0.92,3655667.22,1609002.4,414532.82,90801.1,1541330.9,1496630.45,696.59,44003.86,conventional,2017,LosAngeles +28,2017-06-18,0.99,3631321.55,1581223.4,480083.42,93204.86,1476809.87,1424124.05,963.71,51722.11,conventional,2017,LosAngeles +29,2017-06-11,0.99,3390850.94,1280363.31,415143.16,96489.25,1598855.22,1550403.66,468.39,47983.17,conventional,2017,LosAngeles +30,2017-06-04,0.96,3637220.72,1330141.06,418291.29,89031.2,1799757.17,1761072.22,559.34,38125.61,conventional,2017,LosAngeles +31,2017-05-28,1.13,3243908.89,1296066.67,466479.64,102414.38,1378948.2,1324066.55,300.84,54580.81,conventional,2017,LosAngeles +32,2017-05-21,1.14,2921916.66,1169688.69,428611.48,91670.96,1231945.53,1178399.48,401.84,53144.21,conventional,2017,LosAngeles +33,2017-05-14,0.94,3551402.91,1376168.79,430527.04,88215.9,1656491.18,1602634.76,674.27,53182.15,conventional,2017,LosAngeles +34,2017-05-07,0.87,4214313.1,1745366.17,583071.39,97893.53,1787982.01,1727340.36,488.13,60153.52,conventional,2017,LosAngeles +35,2017-04-30,0.99,3299258.02,1329981.71,518018.74,105295.61,1345961.96,1286252.05,686.15,59023.76,conventional,2017,LosAngeles +36,2017-04-23,1.04,3074226.19,1118405.84,429077.76,108744.24,1417998.35,1358189.5,3262.06,56546.79,conventional,2017,LosAngeles +37,2017-04-16,1.18,2789630.4,1044500.39,455872.03,109370.93,1179887.05,1117995.97,574.14,61316.94,conventional,2017,LosAngeles +38,2017-04-09,1.01,2993246.61,957440.04,408516.09,106825.66,1520464.82,1460394.98,10162.56,49907.28,conventional,2017,LosAngeles +39,2017-04-02,0.98,3100355.01,975079.42,428361.34,95594.45,1601319.8,1542667.95,11742.19,46909.66,conventional,2017,LosAngeles +40,2017-03-26,1.12,2583323.58,861802.43,418362.3,83244.93,1219913.92,1168719.39,1177.9,50016.63,conventional,2017,LosAngeles +41,2017-03-19,1.11,2737872.14,965781.76,422615.12,89296.88,1260178.38,1209897.81,2474.78,47805.79,conventional,2017,LosAngeles +42,2017-03-12,1.12,2633574.94,974290.82,439065.83,94533.02,1125685.27,1067166.21,4495.49,54023.57,conventional,2017,LosAngeles +43,2017-03-05,0.99,2768930.88,897311.08,518369.51,83307.14,1269943.15,1214991.2,6376.28,48575.67,conventional,2017,LosAngeles +44,2017-02-26,0.82,2935077.5,980146.15,477454.27,70872.57,1406604.51,1341305.37,33291.9,32007.24,conventional,2017,LosAngeles +45,2017-02-19,0.79,3033918.41,1029674.7,493496.38,68553.91,1442193.42,1277346.26,130416.16,34431.0,conventional,2017,LosAngeles +46,2017-02-12,0.64,3625630.64,1181120.66,592688.22,61331.51,1790490.25,1664506.69,81240.11,44743.45,conventional,2017,LosAngeles +47,2017-02-05,0.53,5470227.08,1741607.02,937331.61,89678.63,2701609.82,2656630.42,3465.7,41513.7,conventional,2017,LosAngeles +48,2017-01-29,0.6,4230448.98,1439453.61,741369.62,67607.57,1982018.18,1923042.64,29993.97,28981.57,conventional,2017,LosAngeles +49,2017-01-22,0.62,4215552.57,1715034.11,663032.28,61799.24,1775686.94,1710186.48,39625.95,25874.51,conventional,2017,LosAngeles +50,2017-01-15,0.76,3363407.98,1075572.75,703853.31,61161.98,1522819.94,1442445.76,59205.75,21168.43,conventional,2017,LosAngeles +51,2017-01-08,0.89,3120961.67,969758.4,692908.87,72814.14,1385480.26,1288525.3,72837.94,24117.02,conventional,2017,LosAngeles +52,2017-01-01,0.84,3551337.17,1223299.39,829896.69,56808.74,1441332.35,1332601.11,88931.96,19799.28,conventional,2017,LosAngeles +0,2017-12-31,0.87,117941.49,26048.65,34289.02,270.75,57333.07,37617.67,19711.15,4.25,conventional,2017,Louisville +1,2017-12-24,1.18,80024.09,6596.13,28324.6,217.35,44886.01,23837.75,21035.42,12.84,conventional,2017,Louisville +2,2017-12-17,1.07,80191.11,6894.24,28129.43,326.83,44840.61,29455.18,15356.82,28.61,conventional,2017,Louisville +3,2017-12-10,1.01,100072.52,6065.04,37048.51,147.89,56811.08,26607.95,30198.81,4.32,conventional,2017,Louisville +4,2017-12-03,1.11,108947.0,2489.0,52286.0,530.0,53643.0,9238.0,44403.0,1.0,conventional,2017,Louisville +5,2017-11-26,1.45,53796.0,1858.0,22808.0,107.0,29023.0,10221.0,18803.0,0.0,conventional,2017,Louisville +6,2017-11-19,1.18,79284.0,2182.0,33869.0,79.0,43155.0,12675.0,30480.0,0.0,conventional,2017,Louisville +7,2017-11-12,1.14,100811.0,3181.0,43510.0,86.0,54034.0,11788.0,42246.0,0.0,conventional,2017,Louisville +8,2017-11-05,1.18,86085.33,3045.35,37125.6,120.44,45793.94,13435.51,32355.55,2.88,conventional,2017,Louisville +9,2017-10-29,1.23,102915.21,3751.03,44115.78,56.48,54991.92,13041.14,41950.78,0.0,conventional,2017,Louisville +10,2017-10-22,1.7,62179.04,3538.09,25086.52,33.07,33521.36,13492.32,20029.04,0.0,conventional,2017,Louisville +11,2017-10-15,1.79,60616.52,3403.65,25005.3,68.1,32139.47,12700.01,19439.46,0.0,conventional,2017,Louisville +12,2017-10-08,1.98,52865.97,4093.28,17191.2,71.23,31510.26,11687.9,19822.36,0.0,conventional,2017,Louisville +13,2017-10-01,1.89,62180.5,3158.2,25612.0,73.49,33336.81,14044.19,19292.62,0.0,conventional,2017,Louisville +14,2017-09-24,1.88,59540.52,2256.64,25575.25,82.79,31625.84,12529.29,19096.55,0.0,conventional,2017,Louisville +15,2017-09-17,1.73,68830.07,2265.55,31173.61,79.54,35311.37,14322.14,20969.23,20.0,conventional,2017,Louisville +16,2017-09-10,1.65,78604.92,2337.33,34553.13,91.41,41623.05,15816.03,25440.35,366.67,conventional,2017,Louisville +17,2017-09-03,1.64,80371.08,2707.25,35073.5,133.23,42457.1,16063.17,26038.37,355.56,conventional,2017,Louisville +18,2017-08-27,1.62,80466.47,3038.11,33674.56,103.73,43650.07,17157.17,26001.79,491.11,conventional,2017,Louisville +19,2017-08-20,1.56,88644.49,2852.34,35594.01,148.97,50049.17,24106.1,25489.74,453.33,conventional,2017,Louisville +20,2017-08-13,1.38,93447.51,2736.38,37308.97,121.05,53281.11,27903.99,24543.79,833.33,conventional,2017,Louisville +21,2017-08-06,1.3,95140.94,2317.1,37610.34,218.0,54995.5,29610.66,24173.08,1211.76,conventional,2017,Louisville +22,2017-07-30,1.3,90428.76,2384.77,33397.53,133.88,54512.58,29280.49,24102.09,1130.0,conventional,2017,Louisville +23,2017-07-23,1.37,92486.04,2203.65,37670.64,134.13,52477.62,24730.17,26604.12,1143.33,conventional,2017,Louisville +24,2017-07-16,1.44,87217.2,3058.87,41177.44,211.13,42769.76,15204.43,26375.34,1189.99,conventional,2017,Louisville +25,2017-07-09,1.01,124946.18,2696.41,45861.16,209.51,76179.1,22207.37,53245.65,726.08,conventional,2017,Louisville +26,2017-07-02,1.02,113658.98,2605.69,47985.11,340.48,62727.7,23991.67,38397.78,338.25,conventional,2017,Louisville +27,2017-06-25,0.97,114003.27,2137.42,43420.23,203.5,68242.12,20546.42,47643.48,52.22,conventional,2017,Louisville +28,2017-06-18,1.06,104369.68,2581.61,49620.17,541.77,51626.13,21822.14,29725.7,78.29,conventional,2017,Louisville +29,2017-06-11,1.04,112253.93,2251.92,46391.41,159.38,63451.22,17357.08,45674.42,419.72,conventional,2017,Louisville +30,2017-06-04,1.06,121602.81,2191.2,48994.64,305.84,70111.13,16752.03,53317.46,41.64,conventional,2017,Louisville +31,2017-05-28,1.08,111487.07,2098.77,48808.39,305.78,60274.13,16202.19,44055.13,16.81,conventional,2017,Louisville +32,2017-05-21,1.1,104440.16,2090.74,51642.32,225.38,50481.72,14518.52,35959.83,3.37,conventional,2017,Louisville +33,2017-05-14,1.27,82244.67,2266.19,37229.4,247.88,42501.2,16236.09,26265.11,0.0,conventional,2017,Louisville +34,2017-05-07,1.06,135486.52,2467.22,57992.66,426.61,74600.03,21513.2,52904.37,182.46,conventional,2017,Louisville +35,2017-04-30,1.26,93663.48,2431.03,48499.45,203.94,42529.06,18452.22,23931.06,145.78,conventional,2017,Louisville +36,2017-04-23,1.17,93502.86,2091.62,42839.29,236.73,48335.22,16780.79,31343.12,211.31,conventional,2017,Louisville +37,2017-04-16,1.22,100089.52,2109.81,47637.85,213.91,50127.95,18406.86,31705.47,15.62,conventional,2017,Louisville +38,2017-04-09,1.2,89926.02,2222.25,43333.76,209.34,44160.67,17618.59,26542.08,0.0,conventional,2017,Louisville +39,2017-04-02,1.15,96962.69,2228.91,43114.54,225.38,51393.86,18336.09,33057.77,0.0,conventional,2017,Louisville +40,2017-03-26,1.11,100036.14,2435.42,46979.43,163.77,50457.52,18244.87,32209.26,3.39,conventional,2017,Louisville +41,2017-03-19,1.29,74388.06,1883.85,44133.45,213.08,28157.68,17374.52,10768.15,15.01,conventional,2017,Louisville +42,2017-03-12,1.18,85005.19,2122.02,42103.02,159.61,40620.54,14085.25,26520.4,14.89,conventional,2017,Louisville +43,2017-03-05,0.99,101061.01,1914.78,49340.2,183.87,49622.16,12670.72,36951.44,0.0,conventional,2017,Louisville +44,2017-02-26,0.95,106098.37,2181.83,59928.42,578.39,43409.73,15168.82,28234.42,6.49,conventional,2017,Louisville +45,2017-02-19,0.94,94778.79,1979.99,41851.86,159.04,50787.9,13809.65,36841.43,136.82,conventional,2017,Louisville +46,2017-02-12,0.75,131965.58,2078.54,58269.96,357.4,71259.68,16002.34,55257.34,0.0,conventional,2017,Louisville +47,2017-02-05,0.91,126829.29,2214.61,74680.7,1046.84,48887.14,19517.27,29368.27,1.6,conventional,2017,Louisville +48,2017-01-29,0.94,116309.9,2082.57,55703.27,217.7,58306.36,17307.09,40985.94,13.33,conventional,2017,Louisville +49,2017-01-22,0.94,127597.75,2407.87,66870.27,714.26,57605.35,18678.36,38926.99,0.0,conventional,2017,Louisville +50,2017-01-15,1.06,89361.43,2069.09,43683.9,281.29,43327.15,17644.78,25682.37,0.0,conventional,2017,Louisville +51,2017-01-08,0.86,118310.74,2489.41,55251.9,397.86,60171.57,17859.61,42296.4,15.56,conventional,2017,Louisville +52,2017-01-01,0.77,110696.17,1692.13,60441.72,643.88,47918.44,12573.63,35198.14,146.67,conventional,2017,Louisville +0,2017-12-31,1.17,728998.69,499352.88,74265.81,3057.2,152322.8,72698.98,79623.82,0.0,conventional,2017,MiamiFtLauderdale +1,2017-12-24,1.45,506569.1,336796.77,44094.52,4987.95,120689.86,88550.58,32139.28,0.0,conventional,2017,MiamiFtLauderdale +2,2017-12-17,1.01,660737.83,449484.96,63179.34,5749.55,142323.98,69456.09,72867.89,0.0,conventional,2017,MiamiFtLauderdale +3,2017-12-10,1.03,713866.0,484033.33,71985.61,6988.61,150858.45,75190.47,75667.98,0.0,conventional,2017,MiamiFtLauderdale +4,2017-12-03,1.35,550215.0,358080.0,50526.0,9947.0,131661.0,75459.0,56202.0,0.0,conventional,2017,MiamiFtLauderdale +5,2017-11-26,1.45,464647.0,302437.0,44200.0,1052.0,116959.0,70352.0,46606.0,0.0,conventional,2017,MiamiFtLauderdale +6,2017-11-19,1.23,642013.0,418092.0,65920.0,2026.0,155975.0,80040.0,75936.0,0.0,conventional,2017,MiamiFtLauderdale +7,2017-11-12,1.42,513109.0,336664.0,51672.0,1669.0,123105.0,72870.0,50234.0,0.0,conventional,2017,MiamiFtLauderdale +8,2017-11-05,1.53,463170.5,314039.49,47476.82,392.9,101261.29,66124.03,35137.26,0.0,conventional,2017,MiamiFtLauderdale +9,2017-10-29,1.22,674788.56,450543.04,71919.22,223.75,152102.55,75333.68,76768.87,0.0,conventional,2017,MiamiFtLauderdale +10,2017-10-22,1.59,558315.26,378185.3,61183.38,183.75,118762.83,61151.44,57611.39,0.0,conventional,2017,MiamiFtLauderdale +11,2017-10-15,1.79,472074.73,324877.96,49047.42,32.0,98117.35,72027.82,26089.53,0.0,conventional,2017,MiamiFtLauderdale +12,2017-10-08,1.92,455831.94,302210.81,44414.13,104.53,109102.47,80223.56,28878.91,0.0,conventional,2017,MiamiFtLauderdale +13,2017-10-01,2.04,399836.65,254127.88,48863.68,187.25,96657.84,54423.36,42234.48,0.0,conventional,2017,MiamiFtLauderdale +14,2017-09-24,1.93,408851.65,291020.95,42336.4,237.74,75256.56,33217.53,42039.03,0.0,conventional,2017,MiamiFtLauderdale +15,2017-09-17,1.84,409206.24,278164.17,53156.3,50.37,77835.4,16642.51,61152.89,40.0,conventional,2017,MiamiFtLauderdale +16,2017-09-10,1.81,362581.9,266569.88,34078.89,155.17,61777.96,34614.01,23940.62,3223.33,conventional,2017,MiamiFtLauderdale +17,2017-09-03,1.98,465051.74,323445.92,50947.85,284.53,90373.44,40450.86,46519.25,3403.33,conventional,2017,MiamiFtLauderdale +18,2017-08-27,1.65,450204.59,302627.69,49717.5,289.62,97569.78,37812.76,51132.58,8624.44,conventional,2017,MiamiFtLauderdale +19,2017-08-20,1.7,468514.7,317677.27,56349.59,184.51,94303.33,34142.86,54596.03,5564.44,conventional,2017,MiamiFtLauderdale +20,2017-08-13,1.51,568797.63,383486.57,70899.96,207.86,114203.24,31618.38,73383.75,9201.11,conventional,2017,MiamiFtLauderdale +21,2017-08-06,1.48,501154.94,341186.45,64789.85,324.38,94854.26,38651.03,48348.78,7854.45,conventional,2017,MiamiFtLauderdale +22,2017-07-30,1.46,501001.78,342501.26,62144.33,358.81,95997.38,34817.34,55121.15,6058.89,conventional,2017,MiamiFtLauderdale +23,2017-07-23,1.47,546833.62,374063.45,67585.09,421.47,104763.61,35385.93,61377.68,8000.0,conventional,2017,MiamiFtLauderdale +24,2017-07-16,1.48,523617.87,367930.59,65180.09,301.98,90205.21,38434.8,41978.19,9792.22,conventional,2017,MiamiFtLauderdale +25,2017-07-09,1.43,550195.13,371243.58,67379.1,239.94,111332.51,44355.87,55317.47,11659.17,conventional,2017,MiamiFtLauderdale +26,2017-07-02,1.44,627569.42,419259.34,76464.05,418.31,131427.72,49954.72,72199.67,9273.33,conventional,2017,MiamiFtLauderdale +27,2017-06-25,1.43,539847.3,349940.7,66569.13,127.88,123209.59,51069.12,59391.58,12748.89,conventional,2017,MiamiFtLauderdale +28,2017-06-18,1.52,505828.46,311873.22,66760.95,105.13,127089.16,51803.99,62943.5,12341.67,conventional,2017,MiamiFtLauderdale +29,2017-06-11,1.48,696603.38,447672.96,88004.23,340.96,160585.23,73486.27,79488.96,7610.0,conventional,2017,MiamiFtLauderdale +30,2017-06-04,1.49,687913.86,449727.4,85907.47,238.92,152040.07,84992.72,64412.35,2635.0,conventional,2017,MiamiFtLauderdale +31,2017-05-28,1.45,645768.88,403556.09,74337.63,66.26,167808.9,102591.5,65217.4,0.0,conventional,2017,MiamiFtLauderdale +32,2017-05-21,1.49,605721.02,383030.29,75985.14,127.05,146578.54,86440.86,60137.68,0.0,conventional,2017,MiamiFtLauderdale +33,2017-05-14,1.5,594781.35,373017.97,71834.66,92.98,149835.74,87201.95,62633.79,0.0,conventional,2017,MiamiFtLauderdale +34,2017-05-07,1.17,910239.07,569792.16,130126.67,689.42,209630.82,96700.11,112930.71,0.0,conventional,2017,MiamiFtLauderdale +35,2017-04-30,1.26,832704.2,511842.97,127586.28,121.3,193153.65,79251.87,113901.78,0.0,conventional,2017,MiamiFtLauderdale +36,2017-04-23,1.51,556944.14,333198.36,78525.35,143.43,145077.0,81699.04,63377.96,0.0,conventional,2017,MiamiFtLauderdale +37,2017-04-16,1.5,533442.27,329067.9,75100.84,127.13,129146.4,73084.25,56062.15,0.0,conventional,2017,MiamiFtLauderdale +38,2017-04-09,1.54,494093.73,312737.23,74502.99,242.38,106611.13,66358.64,40164.99,87.5,conventional,2017,MiamiFtLauderdale +39,2017-04-02,1.71,493610.85,299394.5,74726.71,285.88,119203.76,63253.12,55950.64,0.0,conventional,2017,MiamiFtLauderdale +40,2017-03-26,1.71,498987.31,297987.32,79372.45,370.75,121256.79,59606.47,61500.32,150.0,conventional,2017,MiamiFtLauderdale +41,2017-03-19,1.62,520937.75,297627.53,79475.12,350.68,143484.42,80525.62,62486.58,472.22,conventional,2017,MiamiFtLauderdale +42,2017-03-12,1.7,473865.59,286726.08,80308.24,280.65,106550.62,58637.13,47913.49,0.0,conventional,2017,MiamiFtLauderdale +43,2017-03-05,1.67,464210.89,273177.19,78151.22,228.88,112653.6,56960.63,55692.97,0.0,conventional,2017,MiamiFtLauderdale +44,2017-02-26,1.26,553803.5,328098.98,90099.4,97.02,135508.1,76060.43,59447.67,0.0,conventional,2017,MiamiFtLauderdale +45,2017-02-19,1.35,468266.51,262617.9,89037.77,253.62,116357.22,58634.83,57722.39,0.0,conventional,2017,MiamiFtLauderdale +46,2017-02-12,0.97,804977.39,462514.53,171782.76,399.31,170280.79,67653.42,102267.65,359.72,conventional,2017,MiamiFtLauderdale +47,2017-02-05,0.87,1254201.12,689710.71,281503.4,629.67,282357.34,102844.25,178368.65,1144.44,conventional,2017,MiamiFtLauderdale +48,2017-01-29,1.3,609721.18,271896.48,128996.33,519.69,208308.68,99039.03,108598.82,670.83,conventional,2017,MiamiFtLauderdale +49,2017-01-22,1.05,793514.22,308899.67,230819.58,377.73,253417.24,71856.16,181454.14,106.94,conventional,2017,MiamiFtLauderdale +50,2017-01-15,1.34,588482.19,251140.35,125991.87,544.78,210805.19,82722.7,128082.49,0.0,conventional,2017,MiamiFtLauderdale +51,2017-01-08,1.4,522278.22,209904.22,121128.25,293.18,190952.57,85738.78,105206.85,6.94,conventional,2017,MiamiFtLauderdale +52,2017-01-01,0.98,787406.1,309692.08,199635.67,540.23,277538.12,84253.42,193284.7,0.0,conventional,2017,MiamiFtLauderdale +0,2017-12-31,0.96,3777193.46,937259.75,1398684.02,29457.57,1411792.12,1246593.68,163761.83,1436.61,conventional,2017,Midsouth +1,2017-12-24,1.26,2494315.29,589482.87,939519.27,19763.67,945549.48,824335.49,118291.12,2922.87,conventional,2017,Midsouth +2,2017-12-17,1.23,2483817.57,586473.42,918892.91,16966.89,961484.35,853140.03,106279.96,2064.36,conventional,2017,Midsouth +3,2017-12-10,1.07,3370521.81,728666.15,1219626.41,17891.07,1404338.18,1229379.23,172927.24,2031.71,conventional,2017,Midsouth +4,2017-12-03,1.18,3003104.0,755828.0,1275665.0,18490.0,953110.0,762953.0,188039.0,2118.0,conventional,2017,Midsouth +5,2017-11-26,1.33,2200251.0,488106.0,903101.0,15350.0,793694.0,663097.0,128990.0,1607.0,conventional,2017,Midsouth +6,2017-11-19,1.3,2462798.0,567752.0,938850.0,16827.0,939370.0,751485.0,186157.0,1727.0,conventional,2017,Midsouth +7,2017-11-12,1.33,2631186.0,670773.0,1022489.0,18762.0,919162.0,735347.0,181873.0,1942.0,conventional,2017,Midsouth +8,2017-11-05,1.28,2880937.37,797195.7,1081492.86,20209.95,982038.86,821114.39,159168.35,1756.12,conventional,2017,Midsouth +9,2017-10-29,1.41,2661899.8,639486.72,1075382.15,19076.52,927954.41,774152.75,153145.22,656.44,conventional,2017,Midsouth +10,2017-10-22,1.56,2380544.44,537789.18,1026119.76,20115.07,796520.43,698822.91,97558.95,138.57,conventional,2017,Midsouth +11,2017-10-15,1.63,2395914.69,529662.41,1066264.19,21955.24,778032.85,654675.29,123337.18,20.38,conventional,2017,Midsouth +12,2017-10-08,1.72,2133166.39,515353.83,852450.97,19640.32,745721.27,630328.89,115357.54,34.84,conventional,2017,Midsouth +13,2017-10-01,1.64,2443800.39,484618.58,1130202.23,20147.99,808831.59,688480.03,120198.57,152.99,conventional,2017,Midsouth +14,2017-09-24,1.6,2466210.08,494295.13,1150979.86,19549.26,801385.83,704199.37,96708.78,477.68,conventional,2017,Midsouth +15,2017-09-17,1.55,2466838.85,512068.16,1116827.87,20473.18,817469.64,716654.48,98413.44,2401.72,conventional,2017,Midsouth +16,2017-09-10,1.56,2428140.05,466611.07,1074163.59,21742.49,865622.9,732278.1,110137.25,23207.55,conventional,2017,Midsouth +17,2017-09-03,1.54,2561783.52,512114.91,1135717.01,24649.0,889302.6,747801.46,116289.45,25211.69,conventional,2017,Midsouth +18,2017-08-27,1.5,2617107.98,577443.09,1071863.58,23088.84,944712.47,804265.11,124191.97,16255.39,conventional,2017,Midsouth +19,2017-08-20,1.41,2865414.36,613834.15,1140930.95,23579.86,1087069.4,904139.21,145663.0,37267.19,conventional,2017,Midsouth +20,2017-08-13,1.37,2902604.84,595916.46,1267014.94,25765.18,1013908.26,836575.7,148877.99,28454.57,conventional,2017,Midsouth +21,2017-08-06,1.34,2907563.95,601191.03,1272881.65,26753.29,1006737.98,856452.33,122563.55,27722.1,conventional,2017,Midsouth +22,2017-07-30,1.34,2817091.62,613040.11,1200263.6,26106.33,977681.58,833164.8,126121.45,18395.33,conventional,2017,Midsouth +23,2017-07-23,1.34,2886538.37,613826.71,1240751.66,26154.28,1005805.72,861274.69,114928.95,29602.08,conventional,2017,Midsouth +24,2017-07-16,1.34,2827404.11,566734.82,1217131.68,26712.77,1016824.84,860213.61,122607.37,34003.86,conventional,2017,Midsouth +25,2017-07-09,1.29,3173372.45,643600.31,1287442.95,27337.2,1214991.99,969121.67,191301.87,54568.45,conventional,2017,Midsouth +26,2017-07-02,1.26,3218961.84,663114.75,1257956.68,30426.63,1267463.78,1026992.74,187005.45,53465.59,conventional,2017,Midsouth +27,2017-06-25,1.27,3147519.14,673327.18,1319522.05,27318.06,1127351.85,903265.11,187611.42,36475.32,conventional,2017,Midsouth +28,2017-06-18,1.34,3032871.22,600416.38,1348477.92,28997.27,1054979.65,909822.8,107064.11,38092.74,conventional,2017,Midsouth +29,2017-06-11,1.34,3150788.24,640517.27,1365909.57,31604.96,1112756.44,900866.53,167944.28,43945.63,conventional,2017,Midsouth +30,2017-06-04,1.43,3212276.31,699461.68,1357927.08,31609.48,1123278.07,916401.72,187872.39,19003.96,conventional,2017,Midsouth +31,2017-05-28,1.38,3380161.63,750399.45,1352784.05,35153.44,1241824.69,1002083.8,230580.56,9160.33,conventional,2017,Midsouth +32,2017-05-21,1.34,3232304.82,740206.13,1308057.07,32390.63,1151650.99,953595.56,193338.02,4717.41,conventional,2017,Midsouth +33,2017-05-14,1.31,3047596.25,721743.92,1036404.83,30170.73,1259276.77,1104012.3,148638.5,6625.97,conventional,2017,Midsouth +34,2017-05-07,1.19,4372728.72,926758.39,1699122.93,47936.74,1698910.66,1456000.83,237524.29,5385.54,conventional,2017,Midsouth +35,2017-04-30,1.38,3291328.16,771445.46,1301500.7,32879.9,1185502.1,1038439.12,142458.63,4604.35,conventional,2017,Midsouth +36,2017-04-23,1.4,3060395.83,617149.84,1225887.12,31534.53,1185824.34,1044588.96,136072.44,5162.94,conventional,2017,Midsouth +37,2017-04-16,1.43,2965083.46,618949.71,1222427.88,31587.43,1092118.44,962599.6,125318.67,4200.17,conventional,2017,Midsouth +38,2017-04-09,1.39,2990138.08,650949.77,1221294.08,29641.61,1088252.62,990216.19,93875.58,4160.85,conventional,2017,Midsouth +39,2017-04-02,1.3,3350938.53,670531.47,1325656.97,32123.7,1322626.39,1192231.15,126225.16,4170.08,conventional,2017,Midsouth +40,2017-03-26,1.33,3162600.85,673395.8,1328645.97,33096.36,1127462.72,988523.65,135004.05,3935.02,conventional,2017,Midsouth +41,2017-03-19,1.35,2933076.38,607103.98,1325162.91,30753.5,970055.99,867587.43,98619.63,3848.93,conventional,2017,Midsouth +42,2017-03-12,1.33,3059010.05,718846.39,1306320.17,38103.37,995740.12,868710.37,123511.69,3518.06,conventional,2017,Midsouth +43,2017-03-05,1.14,3397985.84,737562.33,1432039.9,51390.66,1176992.95,1044380.88,131525.12,1086.95,conventional,2017,Midsouth +44,2017-02-26,1.2,3310530.37,689256.5,1618434.51,52647.95,950191.41,823879.69,123351.91,2959.81,conventional,2017,Midsouth +45,2017-02-19,1.19,2929351.67,665322.17,1215056.58,41351.82,1007621.1,857235.29,147587.67,2798.14,conventional,2017,Midsouth +46,2017-02-12,1.07,3403723.66,936823.61,1373680.54,38397.21,1054822.3,860148.6,190222.35,4451.35,conventional,2017,Midsouth +47,2017-02-05,0.95,4703681.01,1220323.46,2257429.97,108936.31,1116991.27,950345.69,161722.79,4922.79,conventional,2017,Midsouth +48,2017-01-29,1.22,3151000.47,740797.0,1363481.75,43527.67,1003194.05,845213.44,153112.84,4867.77,conventional,2017,Midsouth +49,2017-01-22,1.17,3394184.15,737948.84,1519035.24,94412.42,1042787.65,859648.57,181562.03,1577.05,conventional,2017,Midsouth +50,2017-01-15,1.23,3034320.24,693675.19,1293221.45,43787.1,1003636.5,876946.57,125271.44,1418.49,conventional,2017,Midsouth +51,2017-01-08,1.11,3454819.97,777266.14,1624949.84,45093.12,1007510.87,873053.26,130291.21,4166.4,conventional,2017,Midsouth +52,2017-01-01,1.12,2878967.54,653896.0,1285364.27,64703.08,875004.19,719379.64,151226.51,4398.04,conventional,2017,Midsouth +0,2017-12-31,0.81,258729.83,159028.54,10137.8,177.54,89385.95,70278.2,18477.36,630.39,conventional,2017,Nashville +1,2017-12-24,1.04,182002.85,96258.83,6816.8,201.49,78725.73,65116.32,12231.63,1377.78,conventional,2017,Nashville +2,2017-12-17,0.91,197844.12,97643.53,7363.32,224.12,92613.15,79113.94,12580.32,918.89,conventional,2017,Nashville +3,2017-12-10,0.9,239587.94,123093.48,7029.89,199.82,109264.75,94522.11,13872.64,870.0,conventional,2017,Nashville +4,2017-12-03,1.01,229337.0,123038.0,8062.0,175.0,98063.0,78202.0,18913.0,949.0,conventional,2017,Nashville +5,2017-11-26,1.08,159826.0,83217.0,6254.0,183.0,70172.0,58959.0,10358.0,856.0,conventional,2017,Nashville +6,2017-11-19,1.02,188444.0,104128.0,6946.0,262.0,77107.0,65958.0,10329.0,820.0,conventional,2017,Nashville +7,2017-11-12,1.07,202631.0,121879.0,7035.0,281.0,73436.0,63381.0,9118.0,936.0,conventional,2017,Nashville +8,2017-11-05,1.02,229240.49,144908.02,8243.13,354.53,75734.81,63826.67,11123.57,784.57,conventional,2017,Nashville +9,2017-10-29,1.14,217723.59,125954.95,9477.04,185.0,82106.6,68554.67,13183.91,368.02,conventional,2017,Nashville +10,2017-10-22,1.41,167135.85,97915.36,9503.17,252.39,59464.93,49860.59,9599.22,5.12,conventional,2017,Nashville +11,2017-10-15,1.57,161020.39,87209.67,10227.66,125.62,63457.44,53309.92,10144.19,3.33,conventional,2017,Nashville +12,2017-10-08,1.76,140968.03,77117.26,4016.38,105.67,59728.72,49424.27,10304.45,0.0,conventional,2017,Nashville +13,2017-10-01,1.7,154956.62,73759.23,21324.74,90.32,59782.33,52292.12,7431.64,58.57,conventional,2017,Nashville +14,2017-09-24,1.66,159412.07,74533.49,22831.21,82.19,61965.18,54501.62,7350.47,113.09,conventional,2017,Nashville +15,2017-09-17,1.48,167440.24,70892.31,29793.52,69.77,66684.64,56309.28,10118.1,257.26,conventional,2017,Nashville +16,2017-09-10,1.42,176082.45,72427.91,37438.94,93.89,66121.71,56903.06,7881.98,1336.67,conventional,2017,Nashville +17,2017-09-03,1.34,188701.54,76965.28,42751.23,76.41,68908.62,57883.39,10273.89,751.34,conventional,2017,Nashville +18,2017-08-27,1.28,184465.49,82465.35,40038.54,106.04,61855.56,48844.82,10803.43,2207.31,conventional,2017,Nashville +19,2017-08-20,1.07,261757.88,114191.45,37848.66,52.6,109665.17,90141.14,17632.7,1891.33,conventional,2017,Nashville +20,2017-08-13,1.05,268655.66,124290.96,38810.91,91.21,105462.58,87901.11,16066.8,1494.67,conventional,2017,Nashville +21,2017-08-06,1.13,243526.27,106178.67,36727.83,49.22,100570.55,86175.13,12836.41,1559.01,conventional,2017,Nashville +22,2017-07-30,1.14,217774.89,106460.13,29771.49,52.14,81491.13,65555.61,14827.94,1107.58,conventional,2017,Nashville +23,2017-07-23,1.21,211384.21,95944.35,32144.65,179.51,83115.7,71644.75,9364.25,2106.7,conventional,2017,Nashville +24,2017-07-16,1.18,212210.95,93140.13,32246.58,206.54,86617.7,71974.21,13092.37,1551.12,conventional,2017,Nashville +25,2017-07-09,0.99,267296.7,101167.78,35679.18,109.54,130340.2,105530.95,22029.25,2780.0,conventional,2017,Nashville +26,2017-07-02,0.96,281067.39,112545.01,39946.64,90.44,128485.3,110433.46,15456.31,2595.53,conventional,2017,Nashville +27,2017-06-25,0.9,287217.67,114569.65,47014.32,60.26,125573.44,105149.34,18681.51,1742.59,conventional,2017,Nashville +28,2017-06-18,1.0,260893.43,108420.61,33689.09,143.44,118640.29,105965.4,10905.92,1768.97,conventional,2017,Nashville +29,2017-06-11,1.13,218540.28,107489.08,23109.92,141.95,87799.33,74772.49,10764.96,2261.88,conventional,2017,Nashville +30,2017-06-04,1.07,269102.17,133059.17,12467.64,119.54,123455.82,106243.76,14782.06,2430.0,conventional,2017,Nashville +31,2017-05-28,0.97,282671.14,149461.62,7592.89,149.22,125467.41,85799.73,37474.7,2192.98,conventional,2017,Nashville +32,2017-05-21,0.99,259151.84,139176.17,7391.96,36.98,112546.73,86638.12,23799.21,2109.4,conventional,2017,Nashville +33,2017-05-14,1.02,225323.91,124825.7,7630.5,100.44,92767.27,72042.12,18978.41,1746.74,conventional,2017,Nashville +34,2017-05-07,0.84,368796.8,169743.69,12217.82,189.96,186645.33,163451.19,21424.14,1770.0,conventional,2017,Nashville +35,2017-04-30,0.99,286322.22,147000.26,11874.45,78.43,127369.08,105192.33,20198.8,1977.95,conventional,2017,Nashville +36,2017-04-23,1.1,226088.3,109053.98,8877.76,75.09,108081.47,97879.1,8397.37,1805.0,conventional,2017,Nashville +37,2017-04-16,1.09,230566.12,111412.23,9801.87,135.7,109216.32,102366.17,5170.15,1680.0,conventional,2017,Nashville +38,2017-04-09,1.03,251089.69,110090.84,10197.45,118.65,130682.75,122342.62,6780.13,1560.0,conventional,2017,Nashville +39,2017-04-02,0.95,281438.76,122671.42,10966.77,86.7,147713.87,139193.03,7520.84,1000.0,conventional,2017,Nashville +40,2017-03-26,0.91,276732.88,135016.05,10773.0,92.56,130851.27,122643.74,6937.53,1270.0,conventional,2017,Nashville +41,2017-03-19,0.96,228023.12,110762.28,10019.64,100.06,107141.14,99605.44,5995.7,1540.0,conventional,2017,Nashville +42,2017-03-12,0.75,261830.38,154343.07,10155.12,71.33,97260.86,89585.87,6434.99,1240.0,conventional,2017,Nashville +43,2017-03-05,0.6,379324.44,174849.76,10907.3,185.57,193381.81,186396.09,6875.72,110.0,conventional,2017,Nashville +44,2017-02-26,0.88,216226.59,121849.81,13162.21,71.22,81143.35,72019.67,8088.68,1035.0,conventional,2017,Nashville +45,2017-02-19,0.82,225664.23,113867.81,12392.24,123.12,99281.06,90304.21,8146.85,830.0,conventional,2017,Nashville +46,2017-02-12,0.66,271393.5,139708.54,30102.92,246.24,101335.8,80701.0,19120.08,1514.72,conventional,2017,Nashville +47,2017-02-05,0.68,377719.7,182395.78,43116.96,149.64,152057.32,131344.95,20622.37,90.0,conventional,2017,Nashville +48,2017-01-29,0.93,238392.73,109656.49,20938.22,122.93,107675.09,92858.91,14816.18,0.0,conventional,2017,Nashville +49,2017-01-22,0.87,251189.52,112820.57,30481.58,81.46,107805.91,82914.32,24413.26,478.33,conventional,2017,Nashville +50,2017-01-15,0.89,251914.74,109163.63,20522.38,121.39,122107.34,106434.47,15372.87,300.0,conventional,2017,Nashville +51,2017-01-08,0.84,255094.17,126438.73,17389.25,183.0,111083.19,98008.64,12089.55,985.0,conventional,2017,Nashville +52,2017-01-01,0.73,249074.81,112089.34,27327.66,71.34,109586.47,87099.25,20952.22,1535.0,conventional,2017,Nashville +0,2017-12-31,1.06,262281.64,164147.55,23239.77,1336.79,73557.53,61080.44,11333.76,1143.33,conventional,2017,NewOrleansMobile +1,2017-12-24,1.14,224869.91,127281.43,14372.7,1613.39,81602.39,72271.01,8224.71,1106.67,conventional,2017,NewOrleansMobile +2,2017-12-17,1.03,251753.79,151885.76,18381.27,1505.0,79981.76,68849.84,10321.92,810.0,conventional,2017,NewOrleansMobile +3,2017-12-10,1.06,251601.16,144316.93,21840.9,1803.0,83640.33,71291.13,11513.64,835.56,conventional,2017,NewOrleansMobile +4,2017-12-03,0.97,266547.0,163448.0,19343.0,2002.0,81753.0,77355.0,3609.0,790.0,conventional,2017,NewOrleansMobile +5,2017-11-26,1.27,176817.0,96043.0,12239.0,1145.0,67390.0,57613.0,8817.0,960.0,conventional,2017,NewOrleansMobile +6,2017-11-19,1.27,207295.0,118191.0,14363.0,1729.0,73013.0,63649.0,8597.0,767.0,conventional,2017,NewOrleansMobile +7,2017-11-12,1.11,292987.0,176864.0,25045.0,2188.0,88890.0,83664.0,4411.0,816.0,conventional,2017,NewOrleansMobile +8,2017-11-05,1.32,225563.4,131134.51,19876.07,1893.0,72659.82,65167.14,6089.35,1403.33,conventional,2017,NewOrleansMobile +9,2017-10-29,1.11,277437.66,169106.09,21885.18,1787.0,84659.39,72752.65,11155.63,751.11,conventional,2017,NewOrleansMobile +10,2017-10-22,1.26,269443.25,159833.64,24349.84,1576.11,83683.66,73112.43,10571.23,0.0,conventional,2017,NewOrleansMobile +11,2017-10-15,1.46,227947.46,135384.25,18515.33,173.04,73874.84,65362.87,8511.97,0.0,conventional,2017,NewOrleansMobile +12,2017-10-08,1.34,328829.92,207980.89,24630.11,31.1,96187.82,82449.13,13738.69,0.0,conventional,2017,NewOrleansMobile +13,2017-10-01,1.72,227535.41,132184.69,21112.28,9.0,74229.44,61436.17,12793.27,0.0,conventional,2017,NewOrleansMobile +14,2017-09-24,1.7,205976.51,129861.05,22072.72,19.0,54023.74,44407.6,9616.14,0.0,conventional,2017,NewOrleansMobile +15,2017-09-17,1.62,219275.21,136981.14,25106.49,108.0,57079.58,46789.06,10177.19,113.33,conventional,2017,NewOrleansMobile +16,2017-09-10,1.62,217336.35,123071.39,24260.85,164.0,69840.11,59451.56,5951.88,4436.67,conventional,2017,NewOrleansMobile +17,2017-09-03,1.57,227168.31,129857.31,26734.97,290.73,70285.3,56267.76,9259.77,4757.77,conventional,2017,NewOrleansMobile +18,2017-08-27,1.46,229748.3,133655.24,27697.42,188.82,68206.82,58890.86,5129.29,4186.67,conventional,2017,NewOrleansMobile +19,2017-08-20,1.46,226946.53,128287.97,25042.77,77.91,73537.88,61052.42,10098.8,2386.66,conventional,2017,NewOrleansMobile +20,2017-08-13,1.39,236698.78,130628.39,30558.86,82.91,75428.62,60970.59,10286.92,4171.11,conventional,2017,NewOrleansMobile +21,2017-08-06,1.33,240983.48,130001.44,34141.47,44.0,76796.57,56841.81,10734.76,9220.0,conventional,2017,NewOrleansMobile +22,2017-07-30,1.4,246036.68,142551.37,30114.36,41.0,73329.95,55778.64,9484.64,8066.67,conventional,2017,NewOrleansMobile +23,2017-07-23,1.39,262774.91,155838.78,38067.91,78.0,68790.22,49217.0,12526.55,7046.67,conventional,2017,NewOrleansMobile +24,2017-07-16,1.32,232912.36,120631.11,29406.15,39.0,82836.1,64601.65,9641.12,8593.33,conventional,2017,NewOrleansMobile +25,2017-07-09,1.26,267928.19,156935.51,23221.13,28.96,87742.59,80324.72,5261.2,2156.67,conventional,2017,NewOrleansMobile +26,2017-07-02,1.27,302052.69,177146.52,24028.95,64.0,100813.22,93220.64,4992.58,2600.0,conventional,2017,NewOrleansMobile +27,2017-06-25,1.3,293079.22,168867.39,19760.58,104.95,104346.3,94389.49,8091.81,1865.0,conventional,2017,NewOrleansMobile +28,2017-06-18,1.29,287734.91,177973.04,25893.61,157.0,83711.26,76256.4,4569.86,2885.0,conventional,2017,NewOrleansMobile +29,2017-06-11,1.32,312695.0,187011.15,31940.35,188.0,93555.5,76637.93,8992.57,7925.0,conventional,2017,NewOrleansMobile +30,2017-06-04,1.38,256543.43,158511.61,25352.42,298.0,72381.4,53362.71,5313.69,13705.0,conventional,2017,NewOrleansMobile +31,2017-05-28,1.39,293608.21,182795.19,30514.83,267.0,80031.19,55454.81,10461.38,14115.0,conventional,2017,NewOrleansMobile +32,2017-05-21,1.36,252110.25,155348.21,27177.19,345.91,69238.94,46750.78,10833.16,11655.0,conventional,2017,NewOrleansMobile +33,2017-05-14,1.35,241194.43,139087.23,25294.95,347.82,76464.43,49414.09,10375.34,16675.0,conventional,2017,NewOrleansMobile +34,2017-05-07,1.02,423839.41,261367.48,53102.06,220.92,109148.95,86740.85,17223.1,5185.0,conventional,2017,NewOrleansMobile +35,2017-04-30,1.32,301447.98,193112.77,28592.77,251.05,79491.39,60607.72,10988.67,7895.0,conventional,2017,NewOrleansMobile +36,2017-04-23,1.35,227634.47,134821.9,21723.74,301.14,70787.69,52284.28,8843.41,9660.0,conventional,2017,NewOrleansMobile +37,2017-04-16,1.27,268722.38,156177.03,33661.51,241.0,78642.84,59163.58,9889.26,9590.0,conventional,2017,NewOrleansMobile +38,2017-04-09,1.34,235686.8,134722.14,26489.36,249.11,74226.19,55994.69,8934.0,9297.5,conventional,2017,NewOrleansMobile +39,2017-04-02,1.37,243155.13,137881.46,33317.61,192.06,71764.0,53763.94,9845.06,8155.0,conventional,2017,NewOrleansMobile +40,2017-03-26,1.38,236515.28,133157.9,29086.58,355.97,73914.83,53280.49,10526.56,10107.78,conventional,2017,NewOrleansMobile +41,2017-03-19,1.32,231348.89,130993.69,32649.16,284.06,67421.98,51297.4,9849.58,6275.0,conventional,2017,NewOrleansMobile +42,2017-03-12,1.32,239083.77,145739.86,25219.09,271.03,67853.79,51341.55,9832.24,6680.0,conventional,2017,NewOrleansMobile +43,2017-03-05,1.13,254912.18,134356.15,50228.72,184.0,70143.31,55427.21,8536.1,6180.0,conventional,2017,NewOrleansMobile +44,2017-02-26,0.98,307637.26,190219.99,30519.39,140.16,86757.72,69741.69,8046.03,8970.0,conventional,2017,NewOrleansMobile +45,2017-02-19,1.11,220338.25,123639.4,24706.23,289.36,71703.26,54549.08,7834.18,9320.0,conventional,2017,NewOrleansMobile +46,2017-02-12,0.9,276002.68,160040.82,30195.68,443.13,85323.05,59560.4,13862.65,11900.0,conventional,2017,NewOrleansMobile +47,2017-02-05,0.61,633235.06,400599.94,80089.33,402.0,152143.79,119084.94,26378.85,6680.0,conventional,2017,NewOrleansMobile +48,2017-01-29,0.97,344239.35,208314.95,36546.78,316.0,99061.62,77868.08,15523.54,5670.0,conventional,2017,NewOrleansMobile +49,2017-01-22,1.06,267331.27,138670.15,34757.27,273.0,93630.85,56028.66,29497.19,8105.0,conventional,2017,NewOrleansMobile +50,2017-01-15,1.01,291083.26,171326.01,35657.65,232.92,83866.68,60508.85,16912.83,6445.0,conventional,2017,NewOrleansMobile +51,2017-01-08,1.1,230884.67,124108.53,31296.37,316.0,75163.77,52403.61,13645.16,9115.0,conventional,2017,NewOrleansMobile +52,2017-01-01,0.81,318672.94,175385.65,42839.67,242.0,100205.62,68817.75,24039.54,7348.33,conventional,2017,NewOrleansMobile +0,2017-12-31,1.33,1201219.44,36680.16,816261.84,445.17,347832.27,269325.19,78507.08,0.0,conventional,2017,NewYork +1,2017-12-24,1.34,1233461.89,36684.62,791089.36,1217.71,404470.2,379573.9,24894.3,2.0,conventional,2017,NewYork +2,2017-12-17,1.41,1181560.33,35511.18,661369.74,601.53,484077.88,465885.99,18174.07,17.82,conventional,2017,NewYork +3,2017-12-10,1.14,2390308.58,48483.07,1906061.15,1561.82,434202.54,411052.38,23130.51,19.65,conventional,2017,NewYork +4,2017-12-03,1.41,1191930.0,42352.0,652690.0,580.0,496308.0,466132.0,30177.0,0.0,conventional,2017,NewYork +5,2017-11-26,1.42,1210256.0,39943.0,696301.0,697.0,473316.0,373479.0,99837.0,0.0,conventional,2017,NewYork +6,2017-11-19,1.37,1335298.0,47063.0,654065.0,710.0,633460.0,448431.0,185014.0,16.0,conventional,2017,NewYork +7,2017-11-12,1.52,1122350.0,51661.0,667319.0,710.0,402660.0,369347.0,33312.0,0.0,conventional,2017,NewYork +8,2017-11-05,1.41,1319642.14,61830.21,632293.37,600.5,624918.06,563910.07,60984.25,23.74,conventional,2017,NewYork +9,2017-10-29,1.57,1217806.97,74423.5,788262.18,779.34,354341.95,330959.23,23366.81,15.91,conventional,2017,NewYork +10,2017-10-22,1.54,1253047.6,71422.68,788731.96,491.71,392401.25,368385.46,24011.81,3.98,conventional,2017,NewYork +11,2017-10-15,1.68,1176751.31,75694.79,747793.74,632.63,352630.15,319602.75,33027.4,0.0,conventional,2017,NewYork +12,2017-10-08,1.69,1105462.53,75444.57,669974.98,872.2,359170.78,340114.08,19056.7,0.0,conventional,2017,NewYork +13,2017-10-01,1.67,1201890.84,83287.52,707902.58,547.17,410153.57,377569.16,32584.41,0.0,conventional,2017,NewYork +14,2017-09-24,1.65,1178504.26,77197.18,716125.04,599.08,384582.96,362090.67,22488.31,3.98,conventional,2017,NewYork +15,2017-09-17,1.61,1154925.12,71450.66,693111.36,408.14,389954.96,355131.24,34823.72,0.0,conventional,2017,NewYork +16,2017-09-10,1.61,1150959.1,76107.84,681320.36,640.77,392890.13,356286.86,35547.71,1055.56,conventional,2017,NewYork +17,2017-09-03,1.8,1077993.21,72172.99,630743.85,517.88,374558.49,360305.76,9201.62,5051.11,conventional,2017,NewYork +18,2017-08-27,1.81,1100987.66,73400.68,639876.64,702.96,387007.38,358843.51,13593.87,14570.0,conventional,2017,NewYork +19,2017-08-20,1.75,1057188.97,72101.32,582403.53,620.27,402063.85,377884.2,20393.67,3785.98,conventional,2017,NewYork +20,2017-08-13,1.58,1267239.35,64027.77,686338.23,1222.6,515650.75,462811.56,49542.64,3296.55,conventional,2017,NewYork +21,2017-08-06,1.56,1277419.69,59767.3,821262.42,2432.16,393957.81,358318.64,24812.03,10827.14,conventional,2017,NewYork +22,2017-07-30,1.52,1306226.34,63098.74,856414.09,3849.65,382863.86,362404.9,17642.09,2816.87,conventional,2017,NewYork +23,2017-07-23,1.55,1306877.98,63537.04,830714.94,3112.43,409513.57,380873.57,21311.87,7328.13,conventional,2017,NewYork +24,2017-07-16,1.57,1327763.45,71450.18,859372.14,3388.19,393552.94,368995.87,13580.41,10976.66,conventional,2017,NewYork +25,2017-07-09,1.63,1442667.56,82965.35,800414.02,3563.36,555724.83,494674.05,42918.63,18132.15,conventional,2017,NewYork +26,2017-07-02,1.72,1304560.72,56685.05,733184.24,3145.41,511546.02,270378.6,223986.86,17180.56,conventional,2017,NewYork +27,2017-06-25,1.47,1521598.08,53675.18,1060721.23,3691.1,403510.57,260423.69,126518.07,16568.81,conventional,2017,NewYork +28,2017-06-18,1.82,1242160.85,55732.76,765117.64,3600.65,417709.8,290382.6,113734.72,13592.48,conventional,2017,NewYork +29,2017-06-11,1.74,1374185.78,54293.79,753430.43,3000.9,563460.66,322838.07,233754.81,6867.78,conventional,2017,NewYork +30,2017-06-04,1.83,1335461.36,51740.89,834879.59,3267.53,445573.35,345141.25,90033.49,10398.61,conventional,2017,NewYork +31,2017-05-28,1.75,1451146.59,52861.92,824445.19,4083.43,569756.05,372163.91,178834.64,18757.5,conventional,2017,NewYork +32,2017-05-21,1.8,1298242.54,54128.18,817106.16,3335.37,423672.83,352350.91,70436.92,885.0,conventional,2017,NewYork +33,2017-05-14,1.75,1387420.96,51358.7,797684.64,4111.68,534265.94,445866.42,71417.58,16981.94,conventional,2017,NewYork +34,2017-05-07,1.65,1746824.6,56814.61,920313.85,3634.42,766061.72,451173.29,305309.26,9579.17,conventional,2017,NewYork +35,2017-04-30,1.84,1228100.25,48042.72,808258.75,2747.33,369051.45,314750.54,44523.13,9777.78,conventional,2017,NewYork +36,2017-04-23,1.68,1247609.13,45532.93,838408.44,2853.1,360814.66,312758.39,41885.07,6171.2,conventional,2017,NewYork +37,2017-04-16,1.76,1222890.71,38975.1,775310.37,4900.16,403705.08,339953.84,55759.57,7991.67,conventional,2017,NewYork +38,2017-04-09,1.75,1277721.97,37746.37,775729.89,2839.8,461405.91,407168.08,51164.8,3073.03,conventional,2017,NewYork +39,2017-04-02,1.74,1221327.78,36138.61,791416.43,4113.73,389659.01,340915.45,48526.89,216.67,conventional,2017,NewYork +40,2017-03-26,1.72,1154893.52,28449.94,717035.68,20182.45,389225.45,330935.25,49533.26,8756.94,conventional,2017,NewYork +41,2017-03-19,1.7,1155875.16,16705.37,737596.2,17545.38,384028.21,336742.0,40754.27,6531.94,conventional,2017,NewYork +42,2017-03-12,1.76,1163703.37,16828.77,755172.29,12532.1,379170.21,326854.39,49775.54,2540.28,conventional,2017,NewYork +43,2017-03-05,1.39,1465568.77,31240.27,1065008.71,34775.18,334544.61,297818.33,33380.45,3345.83,conventional,2017,NewYork +44,2017-02-26,1.55,1241381.61,37239.25,855650.14,7080.46,341411.76,269130.72,65872.47,6408.57,conventional,2017,NewYork +45,2017-02-19,1.28,1052132.16,107882.24,609206.21,6704.26,328339.45,286438.21,41374.04,527.2,conventional,2017,NewYork +46,2017-02-12,1.19,1955395.44,294591.11,1177334.06,13287.33,470182.94,400217.61,63416.03,6549.3,conventional,2017,NewYork +47,2017-02-05,1.24,2544483.08,172265.9,1744342.19,279630.35,348244.64,290463.93,50135.53,7645.18,conventional,2017,NewYork +48,2017-01-29,1.52,1270564.47,17844.88,816423.62,94445.56,341850.41,285574.23,51331.29,4944.89,conventional,2017,NewYork +49,2017-01-22,1.48,1721917.04,15652.26,1169600.51,206537.54,330126.73,288384.55,36337.65,5404.53,conventional,2017,NewYork +50,2017-01-15,1.38,1384264.04,14301.61,995747.96,58355.49,315858.98,275101.56,38860.92,1896.5,conventional,2017,NewYork +51,2017-01-08,1.29,1532074.69,18585.1,1207607.23,6403.22,299479.14,258470.17,40822.02,186.95,conventional,2017,NewYork +52,2017-01-01,1.44,940983.17,10498.68,668183.16,22804.6,239496.73,208504.55,30684.59,307.59,conventional,2017,NewYork +0,2017-12-31,1.31,3652549.7,235982.42,2537022.88,7412.85,872131.55,658153.52,213974.56,3.47,conventional,2017,Northeast +1,2017-12-24,1.37,3489057.04,186562.39,2247768.56,6300.51,1048425.58,887121.16,161276.62,27.8,conventional,2017,Northeast +2,2017-12-17,1.35,3504253.8,224383.39,2159906.12,10505.68,1109458.61,948844.2,160592.02,22.39,conventional,2017,Northeast +3,2017-12-10,1.17,5543004.84,235645.01,4168090.07,8054.61,1131215.15,960202.45,170986.87,25.83,conventional,2017,Northeast +4,2017-12-03,1.32,4030251.0,219287.0,2671616.0,6523.0,1132825.0,995470.0,137354.0,2.0,conventional,2017,Northeast +5,2017-11-26,1.37,3269460.0,208161.0,1937090.0,6919.0,1117290.0,820402.0,296888.0,0.0,conventional,2017,Northeast +6,2017-11-19,1.37,3680754.0,192312.0,2061116.0,7247.0,1420079.0,967838.0,452228.0,14.0,conventional,2017,Northeast +7,2017-11-12,1.35,3925104.0,234190.0,2638119.0,13068.0,1039727.0,869351.0,170377.0,0.0,conventional,2017,Northeast +8,2017-11-05,1.45,3492828.1,228843.35,1955086.76,5588.32,1303309.67,1078991.73,224223.95,93.99,conventional,2017,Northeast +9,2017-10-29,1.52,3430235.17,251453.16,2238785.24,6303.94,933692.83,768631.44,165040.73,20.66,conventional,2017,Northeast +10,2017-10-22,1.51,3380058.07,289343.32,2157327.99,6149.33,927237.43,838555.26,88678.73,3.44,conventional,2017,Northeast +11,2017-10-15,1.62,3251117.56,302669.36,2116241.41,6202.08,826004.71,703791.09,122213.62,0.0,conventional,2017,Northeast +12,2017-10-08,1.63,3065336.1,291046.85,1864722.88,6148.69,903417.68,736995.23,166422.45,0.0,conventional,2017,Northeast +13,2017-10-01,1.61,3438536.39,303877.34,2154492.82,6754.69,973411.54,795311.93,178099.61,0.0,conventional,2017,Northeast +14,2017-09-24,1.59,3424954.07,264819.64,2218374.38,6873.95,934886.1,781772.69,153032.17,81.24,conventional,2017,Northeast +15,2017-09-17,1.54,3350043.59,255828.11,2093753.14,5689.66,994772.68,824931.93,168244.08,1596.67,conventional,2017,Northeast +16,2017-09-10,1.61,3536857.97,264529.93,2267361.07,6494.94,998472.03,844249.91,130829.9,23392.22,conventional,2017,Northeast +17,2017-09-03,1.75,3330799.31,269503.29,2097278.42,6901.98,957115.62,822614.03,106630.48,27871.11,conventional,2017,Northeast +18,2017-08-27,1.7,3374546.02,246450.56,2076611.47,7302.53,1044181.46,892785.83,130586.74,20808.89,conventional,2017,Northeast +19,2017-08-20,1.68,3417507.87,233399.64,2072428.62,7950.27,1103729.34,912290.33,160575.78,30863.23,conventional,2017,Northeast +20,2017-08-13,1.49,4323440.02,235128.9,2842288.75,13705.7,1232316.67,1008008.74,194459.03,29848.9,conventional,2017,Northeast +21,2017-08-06,1.52,4132666.26,227866.95,2801740.0,14589.95,1088469.36,891867.29,165243.16,31358.91,conventional,2017,Northeast +22,2017-07-30,1.49,4018833.97,232617.59,2705082.88,15289.08,1065844.42,931973.3,119001.73,14869.39,conventional,2017,Northeast +23,2017-07-23,1.46,4222039.27,235858.72,2896879.68,22482.01,1066818.86,887134.17,149980.19,29704.5,conventional,2017,Northeast +24,2017-07-16,1.5,4180237.98,266663.37,2858828.89,30721.99,1024023.73,850086.41,138210.65,35726.67,conventional,2017,Northeast +25,2017-07-09,1.58,4406341.73,289590.47,2850917.36,25597.43,1240236.47,1034138.98,140035.79,66061.7,conventional,2017,Northeast +26,2017-07-02,1.63,4035234.26,242271.89,2580466.19,39314.57,1173181.61,762656.42,355666.02,54859.17,conventional,2017,Northeast +27,2017-06-25,1.54,4121661.3,232666.83,2909813.43,25224.18,953956.86,686928.3,215092.27,51936.29,conventional,2017,Northeast +28,2017-06-18,1.68,3945270.4,237156.76,2668419.58,20366.86,1019327.2,765706.0,209441.36,44179.84,conventional,2017,Northeast +29,2017-06-11,1.68,4060850.93,246826.64,2632016.93,13643.55,1168363.81,778716.02,350202.79,39445.0,conventional,2017,Northeast +30,2017-06-04,1.74,4096560.83,241585.33,2718513.23,12943.73,1123518.54,923263.95,179473.2,20781.39,conventional,2017,Northeast +31,2017-05-28,1.71,4529672.68,265254.03,2874935.5,14156.23,1375326.92,1067433.44,283132.09,24761.39,conventional,2017,Northeast +32,2017-05-21,1.66,4110305.09,302107.66,2678109.07,15192.54,1114895.82,951882.76,160311.39,2701.67,conventional,2017,Northeast +33,2017-05-14,1.67,4163120.72,235696.82,2525304.86,15247.5,1386871.54,1204975.59,162343.17,19552.78,conventional,2017,Northeast +34,2017-05-07,1.53,5262336.16,305718.69,3009076.65,22448.52,1925092.3,1272105.9,640105.84,12880.56,conventional,2017,Northeast +35,2017-04-30,1.6,4289149.75,286828.17,2806975.81,14226.06,1181119.71,986234.23,184172.2,10713.28,conventional,2017,Northeast +36,2017-04-23,1.59,3846196.3,244168.62,2440599.66,12331.97,1149096.05,892014.05,250892.4,6189.6,conventional,2017,Northeast +37,2017-04-16,1.65,4043204.76,222626.36,2576783.08,14146.92,1229648.4,1019859.84,200044.12,9744.44,conventional,2017,Northeast +38,2017-04-09,1.6,4313430.98,221283.06,2750988.26,12498.1,1328661.56,1082688.19,242674.12,3299.25,conventional,2017,Northeast +39,2017-04-02,1.62,3988654.48,235162.47,2529680.45,14491.29,1209320.27,967632.76,241470.84,216.67,conventional,2017,Northeast +40,2017-03-26,1.54,3977196.18,201606.45,2556561.4,35248.23,1183780.1,997167.6,176429.17,10183.33,conventional,2017,Northeast +41,2017-03-19,1.59,3768359.35,176542.27,2451289.31,30573.3,1109954.47,910785.79,192548.68,6620.0,conventional,2017,Northeast +42,2017-03-12,1.6,3779295.69,166067.6,2452508.05,28153.1,1132566.94,852503.25,276859.52,3204.17,conventional,2017,Northeast +43,2017-03-05,1.34,4468555.34,237802.16,3228538.95,63971.19,938243.04,877970.46,56847.58,3425.0,conventional,2017,Northeast +44,2017-02-26,1.43,3980574.14,206240.69,2790944.02,24709.35,958680.08,851836.0,100143.29,6700.79,conventional,2017,Northeast +45,2017-02-19,1.36,3526205.21,321067.02,2259557.92,21331.82,924248.45,848018.16,75165.19,1065.1,conventional,2017,Northeast +46,2017-02-12,1.19,5367769.78,736158.49,3387834.41,45051.71,1198725.17,1079129.7,111229.11,8366.36,conventional,2017,Northeast +47,2017-02-05,1.23,6724196.61,624600.42,4684187.02,375904.92,1039504.25,943595.66,84785.68,11122.91,conventional,2017,Northeast +48,2017-01-29,1.39,4155042.11,201045.06,2754050.67,131086.5,1068859.88,988168.37,73048.91,7642.6,conventional,2017,Northeast +49,2017-01-22,1.39,5007356.22,206778.67,3425747.61,319052.61,1055777.33,978886.09,68710.32,8180.92,conventional,2017,Northeast +50,2017-01-15,1.36,4250958.55,203358.77,2913734.21,96705.28,1037160.29,969744.48,64997.68,2418.13,conventional,2017,Northeast +51,2017-01-08,1.25,4691937.5,203756.33,3517891.27,29359.1,940930.8,882013.66,58723.55,193.59,conventional,2017,Northeast +52,2017-01-01,1.35,3513388.32,174842.62,2589315.66,39606.96,709623.08,659611.76,49532.71,478.61,conventional,2017,Northeast +0,2017-12-31,1.13,513318.77,12055.64,455794.95,1957.91,43510.27,16181.54,27328.73,0.0,conventional,2017,NorthernNewEngland +1,2017-12-24,1.36,347811.65,8585.08,251130.76,1335.19,86760.62,24294.77,62465.85,0.0,conventional,2017,NorthernNewEngland +2,2017-12-17,1.26,394608.36,8588.72,304318.64,2955.36,78745.64,18037.88,60707.76,0.0,conventional,2017,NorthernNewEngland +3,2017-12-10,1.29,364577.18,9450.19,265318.32,1317.74,88490.93,33221.26,55269.67,0.0,conventional,2017,NorthernNewEngland +4,2017-12-03,1.1,636106.0,15373.0,576981.0,1540.0,42212.0,20648.0,21564.0,0.0,conventional,2017,NorthernNewEngland +5,2017-11-26,1.41,270865.0,7679.0,210476.0,1350.0,51360.0,15877.0,35483.0,0.0,conventional,2017,NorthernNewEngland +6,2017-11-19,1.36,311603.0,8451.0,230533.0,1285.0,71335.0,16744.0,54591.0,0.0,conventional,2017,NorthernNewEngland +7,2017-11-12,1.01,681570.0,19108.0,588116.0,3876.0,70471.0,15795.0,54675.0,0.0,conventional,2017,NorthernNewEngland +8,2017-11-05,1.51,288593.62,9954.77,229668.21,1209.71,47760.93,18323.67,29437.26,0.0,conventional,2017,NorthernNewEngland +9,2017-10-29,1.5,304167.22,10155.17,237554.72,1307.67,55149.66,32792.8,22356.86,0.0,conventional,2017,NorthernNewEngland +10,2017-10-22,1.52,300976.46,12997.21,237665.93,1461.46,48851.86,25885.06,22966.8,0.0,conventional,2017,NorthernNewEngland +11,2017-10-15,1.58,298364.19,12295.38,244434.33,1566.21,40068.27,17241.1,22827.17,0.0,conventional,2017,NorthernNewEngland +12,2017-10-08,1.61,267322.07,13747.51,203354.1,1304.64,48915.82,14987.09,33928.73,0.0,conventional,2017,NorthernNewEngland +13,2017-10-01,1.64,290521.98,12237.85,217700.24,1440.92,59142.97,20376.29,38766.68,0.0,conventional,2017,NorthernNewEngland +14,2017-09-24,1.63,296892.52,10778.57,233287.45,1510.55,51315.95,13437.56,37878.39,0.0,conventional,2017,NorthernNewEngland +15,2017-09-17,1.59,281832.66,17182.07,213664.48,1190.12,49795.99,18883.66,30805.66,106.67,conventional,2017,NorthernNewEngland +16,2017-09-10,1.74,312541.08,23481.64,229059.76,1536.7,58462.98,19750.58,36065.73,2646.67,conventional,2017,NorthernNewEngland +17,2017-09-03,1.88,288210.32,24015.11,215287.21,1644.8,47263.2,16764.03,28132.5,2366.67,conventional,2017,NorthernNewEngland +18,2017-08-27,1.83,277558.13,11729.61,202013.68,1677.75,62137.09,19695.46,41491.63,950.0,conventional,2017,NorthernNewEngland +19,2017-08-20,1.82,322962.89,5632.85,242365.82,2441.56,72522.66,22942.48,46083.51,3496.67,conventional,2017,NorthernNewEngland +20,2017-08-13,1.24,554390.58,8993.96,476884.89,5005.47,63506.26,19689.02,39173.91,4643.33,conventional,2017,NorthernNewEngland +21,2017-08-06,1.59,462412.85,7918.05,369483.25,4703.97,80307.58,22061.56,55252.69,2993.33,conventional,2017,NorthernNewEngland +22,2017-07-30,1.55,412937.73,7321.27,340883.77,4312.89,60419.8,18260.75,40432.38,1726.67,conventional,2017,NorthernNewEngland +23,2017-07-23,1.38,464876.48,7288.33,387463.06,6472.03,63653.06,10484.64,49641.75,3526.67,conventional,2017,NorthernNewEngland +24,2017-07-16,1.39,490940.46,12060.32,404809.72,11916.24,62154.18,12580.97,46560.98,3012.23,conventional,2017,NorthernNewEngland +25,2017-07-09,1.48,486214.04,12466.36,397668.16,11922.66,64156.86,22095.26,36856.6,5205.0,conventional,2017,NorthernNewEngland +26,2017-07-02,1.57,432564.12,9383.7,330212.3,22416.37,70551.75,29585.42,36241.33,4725.0,conventional,2017,NorthernNewEngland +27,2017-06-25,1.62,359321.55,8947.03,270962.51,13004.97,66407.04,28816.42,33800.62,3790.0,conventional,2017,NorthernNewEngland +28,2017-06-18,1.52,420089.07,9653.18,327624.68,7455.86,75355.35,31581.28,40114.07,3660.0,conventional,2017,NorthernNewEngland +29,2017-06-11,1.62,406486.08,9491.92,326672.5,2468.8,67852.86,26940.61,37008.92,3903.33,conventional,2017,NorthernNewEngland +30,2017-06-04,1.66,401637.7,8209.2,322243.99,2107.52,69076.99,31580.39,36384.93,1111.67,conventional,2017,NorthernNewEngland +31,2017-05-28,1.66,445049.68,10552.04,357297.24,2336.14,74864.26,41798.08,32252.85,813.33,conventional,2017,NorthernNewEngland +32,2017-05-21,1.54,393289.53,10135.32,314676.72,2188.89,66288.6,34182.37,32016.23,90.0,conventional,2017,NorthernNewEngland +33,2017-05-14,1.53,391189.88,7559.58,295163.55,2628.5,85838.25,41685.89,44152.36,0.0,conventional,2017,NorthernNewEngland +34,2017-05-07,1.23,544200.61,8809.36,334984.45,4090.47,196316.33,41452.28,154825.16,38.89,conventional,2017,NorthernNewEngland +35,2017-04-30,1.39,407790.12,9127.08,296827.97,1939.54,99895.53,41352.44,58543.09,0.0,conventional,2017,NorthernNewEngland +36,2017-04-23,1.38,404739.65,12604.22,255970.54,2244.84,133920.05,41763.06,92156.99,0.0,conventional,2017,NorthernNewEngland +37,2017-04-16,1.46,417480.41,11163.07,314450.49,2270.89,89595.96,45791.49,43804.47,0.0,conventional,2017,NorthernNewEngland +38,2017-04-09,1.33,515775.3,14320.67,418277.81,2325.08,80851.74,50867.56,29981.96,2.22,conventional,2017,NorthernNewEngland +39,2017-04-02,1.45,422201.67,12862.0,298461.59,2600.59,108277.49,36643.24,71634.25,0.0,conventional,2017,NorthernNewEngland +40,2017-03-26,1.38,416769.78,10551.64,299053.26,2432.2,104732.68,43814.83,60380.35,537.5,conventional,2017,NorthernNewEngland +41,2017-03-19,1.43,380612.68,7926.17,267013.2,2512.28,103161.03,45010.58,58150.45,0.0,conventional,2017,NorthernNewEngland +42,2017-03-12,1.41,397861.17,8862.88,272805.73,2790.68,113401.88,27188.75,86213.13,0.0,conventional,2017,NorthernNewEngland +43,2017-03-05,1.38,384828.85,9417.54,318710.7,4245.38,52455.23,52455.23,0.0,0.0,conventional,2017,NorthernNewEngland +44,2017-02-26,1.25,434201.49,9612.04,363051.67,5133.05,56404.73,56404.73,0.0,0.0,conventional,2017,NorthernNewEngland +45,2017-02-19,1.37,375322.2,8811.46,295892.82,3364.17,67253.75,67249.95,3.8,0.0,conventional,2017,NorthernNewEngland +46,2017-02-12,1.13,501364.8,13508.23,424253.19,7548.54,56054.84,56051.1,3.74,0.0,conventional,2017,NorthernNewEngland +47,2017-02-05,1.13,701706.0,23160.46,625037.0,4984.23,48524.31,48524.31,0.0,0.0,conventional,2017,NorthernNewEngland +48,2017-01-29,1.21,423387.02,15901.2,348629.28,3634.19,55222.35,55222.35,0.0,0.0,conventional,2017,NorthernNewEngland +49,2017-01-22,1.17,502345.31,16606.58,421568.56,9377.69,54792.48,54789.15,3.33,0.0,conventional,2017,NorthernNewEngland +50,2017-01-15,1.25,421262.96,13397.71,330248.49,6370.03,71246.73,71246.73,0.0,0.0,conventional,2017,NorthernNewEngland +51,2017-01-08,1.19,425000.71,13448.46,348811.57,5517.5,57223.18,57223.18,0.0,0.0,conventional,2017,NorthernNewEngland +52,2017-01-01,1.11,476239.03,20667.36,414792.25,3313.1,37466.32,37466.32,0.0,0.0,conventional,2017,NorthernNewEngland +0,2017-12-31,1.16,461913.85,314324.12,38867.01,665.33,108057.39,56521.08,51536.31,0.0,conventional,2017,Orlando +1,2017-12-24,1.39,292291.1,178469.57,21232.36,779.89,91809.28,60988.48,30820.8,0.0,conventional,2017,Orlando +2,2017-12-17,1.01,381303.71,248830.89,30567.37,865.3,101040.15,56490.38,44549.77,0.0,conventional,2017,Orlando +3,2017-12-10,1.02,424938.5,267852.26,33749.43,892.21,122444.6,63079.34,59365.26,0.0,conventional,2017,Orlando +4,2017-12-03,1.31,318626.0,202974.0,23478.0,987.0,91187.0,60278.0,30905.0,3.0,conventional,2017,Orlando +5,2017-11-26,1.4,272367.0,171834.0,19833.0,645.0,80056.0,56566.0,23490.0,0.0,conventional,2017,Orlando +6,2017-11-19,1.2,349206.0,212316.0,27720.0,907.0,108263.0,63245.0,45015.0,3.0,conventional,2017,Orlando +7,2017-11-12,1.38,330006.0,203135.0,24511.0,902.0,101458.0,80933.0,20525.0,0.0,conventional,2017,Orlando +8,2017-11-05,1.48,290421.2,185134.03,22655.69,698.11,81933.37,54667.82,27265.55,0.0,conventional,2017,Orlando +9,2017-10-29,1.22,399421.97,257257.1,33771.93,570.11,107822.83,77035.93,30786.9,0.0,conventional,2017,Orlando +10,2017-10-22,1.56,328326.17,214853.32,27481.16,613.49,85378.2,50444.75,34933.45,0.0,conventional,2017,Orlando +11,2017-10-15,1.74,288581.65,176622.72,22938.4,94.4,88926.13,57999.74,30926.39,0.0,conventional,2017,Orlando +12,2017-10-08,1.85,304863.13,195935.23,23473.26,50.59,85404.05,63299.53,22104.52,0.0,conventional,2017,Orlando +13,2017-10-01,2.0,262601.79,166612.29,29616.83,15.2,66357.47,42497.48,23856.66,3.33,conventional,2017,Orlando +14,2017-09-24,1.83,263801.67,172557.9,22851.75,114.09,68277.93,39067.53,29207.07,3.33,conventional,2017,Orlando +15,2017-09-17,1.76,271882.04,181121.25,30283.33,63.61,60413.85,16154.6,44255.92,3.33,conventional,2017,Orlando +16,2017-09-10,1.7,253627.92,159141.75,19370.0,698.55,74417.62,49005.6,22215.35,3196.67,conventional,2017,Orlando +17,2017-09-03,1.8,295896.59,189267.58,26200.67,653.97,79774.37,58009.37,19778.33,1986.67,conventional,2017,Orlando +18,2017-08-27,1.57,296756.62,189042.09,27713.25,101.45,79899.83,46809.61,27371.33,5718.89,conventional,2017,Orlando +19,2017-08-20,1.57,297964.43,191383.38,28989.39,54.69,77536.97,37834.22,33852.75,5850.0,conventional,2017,Orlando +20,2017-08-13,1.44,363916.69,227667.4,38433.45,166.56,97649.28,41567.72,47374.89,8706.67,conventional,2017,Orlando +21,2017-08-06,1.41,326355.84,209093.43,34123.34,147.27,82991.8,44905.73,31827.18,6258.89,conventional,2017,Orlando +22,2017-07-30,1.4,321422.84,208380.73,32846.09,204.32,79991.7,46344.02,29287.68,4360.0,conventional,2017,Orlando +23,2017-07-23,1.38,361733.69,237300.29,33319.21,196.65,90917.54,48111.11,36664.21,6142.22,conventional,2017,Orlando +24,2017-07-16,1.42,331752.25,202249.93,34024.62,218.32,95259.38,51403.05,36936.33,6920.0,conventional,2017,Orlando +25,2017-07-09,1.4,343076.46,207541.44,33999.04,126.06,101409.92,58274.75,31959.89,11175.28,conventional,2017,Orlando +26,2017-07-02,1.4,414176.6,247137.41,50254.8,190.22,116594.17,61248.28,45105.89,10240.0,conventional,2017,Orlando +27,2017-06-25,1.35,376407.55,230886.33,38375.37,94.56,107051.29,60122.45,40833.84,6095.0,conventional,2017,Orlando +28,2017-06-18,1.4,339228.04,215668.41,32674.49,115.97,90769.17,49398.47,34065.7,7305.0,conventional,2017,Orlando +29,2017-06-11,1.41,401365.48,246114.25,41215.61,61.99,113973.63,61632.8,46130.83,6210.0,conventional,2017,Orlando +30,2017-06-04,1.41,400425.73,250523.79,40813.04,48.0,109040.9,59333.06,48034.23,1673.61,conventional,2017,Orlando +31,2017-05-28,1.4,381490.67,238131.34,39531.06,74.61,103753.66,71721.05,31992.33,40.28,conventional,2017,Orlando +32,2017-05-21,1.41,357405.82,225241.39,38535.12,103.21,93526.1,60657.69,32650.35,218.06,conventional,2017,Orlando +33,2017-05-14,1.42,322189.66,203335.76,33864.16,77.22,84912.52,60404.27,24508.25,0.0,conventional,2017,Orlando +34,2017-05-07,1.17,529138.31,340439.27,66961.88,98.55,121638.61,67552.66,54085.95,0.0,conventional,2017,Orlando +35,2017-04-30,1.24,479827.89,312135.12,64372.82,47.64,103272.31,53232.75,50039.56,0.0,conventional,2017,Orlando +36,2017-04-23,1.44,345971.78,220178.28,41901.19,58.86,83833.45,57365.77,26467.68,0.0,conventional,2017,Orlando +37,2017-04-16,1.47,305796.3,181939.75,38374.67,32.0,85449.88,49866.05,35583.83,0.0,conventional,2017,Orlando +38,2017-04-09,1.49,311220.15,189598.19,39854.26,48.95,81718.75,46129.68,35589.07,0.0,conventional,2017,Orlando +39,2017-04-02,1.59,297788.72,179139.67,38059.95,60.25,80528.85,45744.07,34620.34,164.44,conventional,2017,Orlando +40,2017-03-26,1.62,281795.07,164358.1,38333.89,88.48,79014.6,44649.55,34365.05,0.0,conventional,2017,Orlando +41,2017-03-19,1.53,287195.89,160686.42,38524.03,47.0,87938.44,56308.21,31630.23,0.0,conventional,2017,Orlando +42,2017-03-12,1.52,290011.0,163532.82,41183.06,75.44,85219.68,51987.48,33232.2,0.0,conventional,2017,Orlando +43,2017-03-05,1.55,270877.61,159001.85,39733.35,36.19,72106.22,41112.34,30993.88,0.0,conventional,2017,Orlando +44,2017-02-26,1.25,307685.6,172780.16,46592.5,70.6,88242.34,53501.63,34737.38,3.33,conventional,2017,Orlando +45,2017-02-19,1.26,262109.86,149730.42,40603.49,58.48,71717.47,40951.55,30721.48,44.44,conventional,2017,Orlando +46,2017-02-12,0.95,430096.94,242212.8,81697.52,264.25,105922.37,48557.37,57365.0,0.0,conventional,2017,Orlando +47,2017-02-05,0.85,711200.33,362670.27,151154.5,307.79,197067.77,94810.52,101426.69,830.56,conventional,2017,Orlando +48,2017-01-29,1.24,364048.79,153528.1,72365.95,196.49,137958.25,70535.42,67422.83,0.0,conventional,2017,Orlando +49,2017-01-22,1.0,481274.0,167213.01,125193.82,178.8,188688.37,66571.38,121936.43,180.56,conventional,2017,Orlando +50,2017-01-15,1.27,356960.5,148500.59,72248.12,175.19,136036.6,69128.81,66907.79,0.0,conventional,2017,Orlando +51,2017-01-08,1.28,301768.99,118255.25,62039.01,116.51,121358.22,65681.77,55671.45,5.0,conventional,2017,Orlando +52,2017-01-01,0.95,447083.97,166581.9,110283.97,151.92,170066.18,61681.31,108384.87,0.0,conventional,2017,Orlando +0,2017-12-31,1.35,334783.58,17238.97,210750.82,276.38,106517.41,79090.96,27426.45,0.0,conventional,2017,Philadelphia +1,2017-12-24,1.34,379421.96,17276.7,226538.0,472.94,135134.32,116972.59,18161.73,0.0,conventional,2017,Philadelphia +2,2017-12-17,1.43,344203.81,17554.66,195308.13,131.09,131209.93,114735.77,16471.35,2.81,conventional,2017,Philadelphia +3,2017-12-10,1.23,575854.08,23492.14,418502.09,518.51,133341.34,113064.75,20276.59,0.0,conventional,2017,Philadelphia +4,2017-12-03,1.35,379540.0,20978.0,209391.0,293.0,148879.0,128086.0,20793.0,0.0,conventional,2017,Philadelphia +5,2017-11-26,1.38,337065.0,17523.0,172416.0,269.0,146857.0,118548.0,28309.0,0.0,conventional,2017,Philadelphia +6,2017-11-19,1.34,384115.0,22293.0,175118.0,402.0,186302.0,131913.0,54389.0,0.0,conventional,2017,Philadelphia +7,2017-11-12,1.45,356528.0,28196.0,195219.0,203.0,132910.0,108280.0,24629.0,0.0,conventional,2017,Philadelphia +8,2017-11-05,1.4,384628.71,38006.98,174069.17,181.44,172371.12,141562.78,30808.34,0.0,conventional,2017,Philadelphia +9,2017-10-29,1.53,367260.68,40321.47,209091.67,274.42,117573.12,111580.31,5986.88,5.93,conventional,2017,Philadelphia +10,2017-10-22,1.53,376196.84,39322.2,201632.28,288.94,134953.42,122293.75,12659.67,0.0,conventional,2017,Philadelphia +11,2017-10-15,1.64,368965.61,44235.03,197307.19,235.29,127188.1,110631.92,16556.18,0.0,conventional,2017,Philadelphia +12,2017-10-08,1.67,331169.67,43189.77,163922.46,336.6,123720.84,117136.44,6584.4,0.0,conventional,2017,Philadelphia +13,2017-10-01,1.62,389987.92,45811.04,195759.47,255.36,148162.05,133321.24,14840.81,0.0,conventional,2017,Philadelphia +14,2017-09-24,1.58,383655.09,47744.79,204123.34,395.52,131391.44,121155.89,10231.1,4.45,conventional,2017,Philadelphia +15,2017-09-17,1.54,366239.72,41947.51,195393.08,131.65,128767.48,114989.9,13754.25,23.33,conventional,2017,Philadelphia +16,2017-09-10,1.54,358609.19,49621.05,185295.22,179.47,123513.45,116229.76,4683.69,2600.0,conventional,2017,Philadelphia +17,2017-09-03,1.7,363905.02,46296.62,199034.81,223.03,118350.56,111664.4,4430.61,2255.55,conventional,2017,Philadelphia +18,2017-08-27,1.68,370286.98,45068.5,196136.69,604.27,128477.52,117020.86,11204.43,252.23,conventional,2017,Philadelphia +19,2017-08-20,1.64,368098.13,41521.77,188024.05,1049.84,137502.47,118791.88,16327.26,2383.33,conventional,2017,Philadelphia +20,2017-08-13,1.54,385890.89,37776.72,200247.11,682.86,147184.2,126569.88,18466.21,2148.11,conventional,2017,Philadelphia +21,2017-08-06,1.48,382653.13,33708.96,225677.1,1472.45,121794.62,107141.63,12272.99,2380.0,conventional,2017,Philadelphia +22,2017-07-30,1.47,404029.77,36123.33,238811.54,1343.6,127751.3,117153.23,9611.12,986.95,conventional,2017,Philadelphia +23,2017-07-23,1.47,393360.73,35968.15,227600.65,415.16,129376.77,117089.39,10184.05,2103.33,conventional,2017,Philadelphia +24,2017-07-16,1.51,381469.09,42039.06,224289.93,513.38,114626.72,105159.06,6522.1,2945.56,conventional,2017,Philadelphia +25,2017-07-09,1.59,406120.55,44522.78,225551.84,494.66,135551.27,111684.04,18000.56,5866.67,conventional,2017,Philadelphia +26,2017-07-02,1.68,365488.32,38790.35,196153.79,582.2,129961.98,93672.73,31592.58,4696.67,conventional,2017,Philadelphia +27,2017-06-25,1.5,422231.87,40402.83,268986.4,632.36,112210.28,89625.83,17872.78,4711.67,conventional,2017,Philadelphia +28,2017-06-18,1.75,380239.79,41177.89,219693.6,586.19,118782.11,95067.36,20864.75,2850.0,conventional,2017,Philadelphia +29,2017-06-11,1.73,379927.26,38042.56,205769.8,620.68,135494.22,101707.26,31846.4,1940.56,conventional,2017,Philadelphia +30,2017-06-04,1.8,394307.04,38390.3,221022.3,643.86,134250.58,118507.2,15415.88,327.5,conventional,2017,Philadelphia +31,2017-05-28,1.74,432742.98,41076.94,232834.25,662.52,158169.27,130634.15,27089.29,445.83,conventional,2017,Philadelphia +32,2017-05-21,1.75,385075.85,39609.47,214417.22,619.72,130429.44,118137.44,12100.33,191.67,conventional,2017,Philadelphia +33,2017-05-14,1.75,387975.97,38509.67,194669.62,536.53,154260.15,142282.0,11346.21,631.94,conventional,2017,Philadelphia +34,2017-05-07,1.66,491356.56,42673.46,249542.51,919.18,198221.41,155183.42,42203.27,834.72,conventional,2017,Philadelphia +35,2017-04-30,1.78,386907.3,36817.47,222850.39,492.98,126746.46,119345.98,7305.77,94.71,conventional,2017,Philadelphia +36,2017-04-23,1.66,363689.09,34157.54,208134.75,416.47,120980.33,105813.24,15167.09,0.0,conventional,2017,Philadelphia +37,2017-04-16,1.74,390396.69,31877.26,220755.78,406.24,137357.41,120676.87,16680.54,0.0,conventional,2017,Philadelphia +38,2017-04-09,1.7,398600.32,30725.04,213528.19,566.18,153780.91,143053.85,10506.23,220.83,conventional,2017,Philadelphia +39,2017-04-02,1.68,385731.38,30716.75,208155.43,757.88,146101.32,138280.26,7821.06,0.0,conventional,2017,Philadelphia +40,2017-03-26,1.66,379956.99,24691.96,219076.77,2819.37,133368.89,124540.35,8828.54,0.0,conventional,2017,Philadelphia +41,2017-03-19,1.66,373158.66,16003.12,220282.45,3440.64,133432.45,119317.04,14115.41,0.0,conventional,2017,Philadelphia +42,2017-03-12,1.74,377616.35,16961.96,230010.9,6116.39,124527.1,112097.57,12054.53,375.0,conventional,2017,Philadelphia +43,2017-03-05,1.48,409950.45,15629.06,245417.56,13667.43,135236.4,130174.35,5062.05,0.0,conventional,2017,Philadelphia +44,2017-02-26,1.49,411014.79,18063.56,251740.67,2094.14,139116.42,122476.97,16639.45,0.0,conventional,2017,Philadelphia +45,2017-02-19,1.37,369284.51,29184.0,205018.24,1022.62,134059.65,125901.76,7863.07,294.82,conventional,2017,Philadelphia +46,2017-02-12,1.19,572219.25,69860.68,269591.68,3923.46,228843.43,208810.97,19337.73,694.73,conventional,2017,Philadelphia +47,2017-02-05,1.28,645655.16,77182.34,383060.06,58041.56,127371.2,111889.17,13700.39,1781.64,conventional,2017,Philadelphia +48,2017-01-29,1.48,421316.65,27673.88,248553.08,20098.48,124991.21,114418.84,10028.59,543.78,conventional,2017,Philadelphia +49,2017-01-22,1.51,489345.23,18201.14,287008.11,58242.14,125893.84,114958.9,9387.36,1547.58,conventional,2017,Philadelphia +50,2017-01-15,1.44,435740.48,16847.12,282239.77,8983.4,127670.19,118443.27,9006.12,220.8,conventional,2017,Philadelphia +51,2017-01-08,1.39,435745.77,16209.65,298757.98,1201.07,119577.07,111625.82,7753.16,198.09,conventional,2017,Philadelphia +52,2017-01-01,1.4,321941.32,12767.25,217447.76,3090.37,88635.94,83428.92,5163.19,43.83,conventional,2017,Philadelphia +0,2017-12-31,0.75,986474.74,422070.44,283040.88,12415.52,268947.9,173098.72,93945.85,1903.33,conventional,2017,PhoenixTucson +1,2017-12-24,0.75,1006477.79,488446.2,176311.28,14450.19,327270.12,230660.26,93116.53,3493.33,conventional,2017,PhoenixTucson +2,2017-12-17,0.7,1031887.79,508369.0,216817.98,8575.36,298125.45,207680.54,86441.58,4003.33,conventional,2017,PhoenixTucson +3,2017-12-10,0.64,1222641.23,731583.95,200595.47,10237.88,280223.93,199484.52,77062.75,3676.66,conventional,2017,PhoenixTucson +4,2017-12-03,0.72,1135877.0,678640.0,215949.0,10981.0,230306.0,156307.0,70637.0,3362.0,conventional,2017,PhoenixTucson +5,2017-11-26,0.77,929825.0,529091.0,181823.0,10223.0,208688.0,133534.0,72473.0,2681.0,conventional,2017,PhoenixTucson +6,2017-11-19,0.6,1427367.0,953957.0,202003.0,10913.0,260494.0,117939.0,139564.0,2991.0,conventional,2017,PhoenixTucson +7,2017-11-12,0.72,1248721.0,691378.0,271700.0,10123.0,275520.0,166855.0,106780.0,1886.0,conventional,2017,PhoenixTucson +8,2017-11-05,0.79,1208035.4,555816.37,227846.11,9212.36,415160.56,330740.57,81893.32,2526.67,conventional,2017,PhoenixTucson +9,2017-10-29,0.98,866137.35,368642.75,273118.45,7336.87,217039.28,145789.42,69622.08,1627.78,conventional,2017,PhoenixTucson +10,2017-10-22,1.04,809603.25,352330.12,241655.47,3878.71,211738.95,170612.91,41122.71,3.33,conventional,2017,PhoenixTucson +11,2017-10-15,1.17,776108.23,338241.51,217038.81,2634.94,218192.97,168675.02,49516.84,1.11,conventional,2017,PhoenixTucson +12,2017-10-08,1.28,713847.15,334851.45,146162.7,2097.5,230735.5,183526.64,47192.19,16.67,conventional,2017,PhoenixTucson +13,2017-10-01,1.31,666472.86,289195.06,153391.94,2561.47,221324.39,184421.19,36823.2,80.0,conventional,2017,PhoenixTucson +14,2017-09-24,1.24,685443.39,337495.18,155470.63,2333.48,190144.1,132493.63,57632.7,17.77,conventional,2017,PhoenixTucson +15,2017-09-17,1.22,731289.23,375755.8,152686.3,2172.41,200674.72,139237.45,61433.94,3.33,conventional,2017,PhoenixTucson +16,2017-09-10,1.2,727628.13,397475.35,129503.24,3441.71,197207.83,141600.41,55189.64,417.78,conventional,2017,PhoenixTucson +17,2017-09-03,1.2,727912.24,407081.82,136998.12,5005.72,178826.58,109254.62,66904.18,2667.78,conventional,2017,PhoenixTucson +18,2017-08-27,1.18,715349.6,378232.81,125819.78,10404.56,200892.45,144419.94,50196.95,6275.56,conventional,2017,PhoenixTucson +19,2017-08-20,1.14,773947.25,404665.91,127106.48,12550.96,229623.9,152307.86,72488.26,4827.78,conventional,2017,PhoenixTucson +20,2017-08-13,1.01,940390.93,458381.41,178230.34,12192.21,291586.97,178802.98,109113.99,3670.0,conventional,2017,PhoenixTucson +21,2017-08-06,0.94,974933.36,493642.98,198503.76,11502.53,271284.09,166106.57,101493.08,3684.44,conventional,2017,PhoenixTucson +22,2017-07-30,0.96,930918.01,482854.07,163669.16,12228.42,272166.36,160062.92,109657.89,2445.55,conventional,2017,PhoenixTucson +23,2017-07-23,0.89,1072590.2,540131.79,267082.3,12298.76,253077.35,148179.1,104409.36,488.89,conventional,2017,PhoenixTucson +24,2017-07-16,0.92,973521.7,499391.8,211064.2,12355.98,250709.72,141156.76,108849.63,703.33,conventional,2017,PhoenixTucson +25,2017-07-09,0.75,1347858.68,568223.72,232289.27,12866.51,534479.18,321383.07,213096.11,0.0,conventional,2017,PhoenixTucson +26,2017-07-02,0.77,1224659.64,551528.3,185311.58,14893.87,472925.89,276703.9,195838.66,383.33,conventional,2017,PhoenixTucson +27,2017-06-25,0.77,1197422.34,551529.22,184895.41,12891.55,448106.16,239584.34,207048.21,1473.61,conventional,2017,PhoenixTucson +28,2017-06-18,0.7,1326697.78,592933.2,295319.97,12531.08,425913.53,235981.26,189932.27,0.0,conventional,2017,PhoenixTucson +29,2017-06-11,0.68,1417604.32,786718.62,187402.03,14150.63,429333.04,235639.45,193693.59,0.0,conventional,2017,PhoenixTucson +30,2017-06-04,0.76,1228049.22,575382.16,178626.45,14892.86,459147.75,251109.66,207645.03,393.06,conventional,2017,PhoenixTucson +31,2017-05-28,0.81,1177093.03,535029.37,206991.26,17174.58,417897.82,211188.34,205430.31,1279.17,conventional,2017,PhoenixTucson +32,2017-05-21,0.74,1163735.54,511917.03,268221.34,14020.29,369576.88,193930.12,175110.65,536.11,conventional,2017,PhoenixTucson +33,2017-05-14,0.69,1297119.2,612625.19,239024.86,14939.98,430529.17,275375.52,154056.43,1097.22,conventional,2017,PhoenixTucson +34,2017-05-07,0.65,1546765.68,813990.86,282109.87,16944.99,433719.96,213850.65,219720.7,148.61,conventional,2017,PhoenixTucson +35,2017-04-30,0.75,1080538.36,480904.28,236525.22,13569.85,349539.01,128890.58,220515.1,133.33,conventional,2017,PhoenixTucson +36,2017-04-23,0.7,1197854.72,544507.98,243224.53,17245.27,392876.94,128243.06,263385.27,1248.61,conventional,2017,PhoenixTucson +37,2017-04-16,0.73,1255293.53,621533.02,193885.09,19435.79,420439.63,227061.64,193282.99,95.0,conventional,2017,PhoenixTucson +38,2017-04-09,0.65,1264239.57,707466.32,220405.29,18966.27,317401.69,145354.75,171728.88,318.06,conventional,2017,PhoenixTucson +39,2017-04-02,0.67,1315020.28,692107.1,190493.5,20666.37,411753.31,213105.17,197107.86,1540.28,conventional,2017,PhoenixTucson +40,2017-03-26,0.57,1607936.05,990504.55,203409.21,20130.79,393891.5,219158.02,174184.87,548.61,conventional,2017,PhoenixTucson +41,2017-03-19,0.68,1241284.04,598359.0,205006.8,19620.25,418297.99,229269.89,188397.54,630.56,conventional,2017,PhoenixTucson +42,2017-03-12,0.65,1264592.26,714430.93,176678.74,18778.41,354704.18,240361.27,113409.58,933.33,conventional,2017,PhoenixTucson +43,2017-03-05,0.67,1176932.6,551312.9,221516.99,15504.1,388598.61,250902.57,136918.26,777.78,conventional,2017,PhoenixTucson +44,2017-02-26,0.65,1146225.87,558763.67,289095.7,14923.76,283442.74,113594.12,169659.73,188.89,conventional,2017,PhoenixTucson +45,2017-02-19,0.67,1171871.64,624947.16,260052.13,14748.58,272123.77,126572.67,145260.82,290.28,conventional,2017,PhoenixTucson +46,2017-02-12,0.54,1582877.09,917584.44,257573.05,18976.18,388743.42,118301.86,269542.95,898.61,conventional,2017,PhoenixTucson +47,2017-02-05,0.46,2200550.27,1200632.86,531226.65,18324.93,450365.83,113752.17,330583.1,6030.56,conventional,2017,PhoenixTucson +48,2017-01-29,0.58,1380520.76,799387.73,246921.02,16440.78,317771.23,114964.92,202520.2,286.11,conventional,2017,PhoenixTucson +49,2017-01-22,0.54,1601222.68,909748.65,296612.15,15561.81,379300.07,98982.8,280317.27,0.0,conventional,2017,PhoenixTucson +50,2017-01-15,0.6,1470187.14,689503.99,362435.36,13938.56,404309.23,136614.13,267595.1,100.0,conventional,2017,PhoenixTucson +51,2017-01-08,0.73,1138871.92,515078.84,275341.74,16071.97,332379.37,140574.68,191804.69,0.0,conventional,2017,PhoenixTucson +52,2017-01-01,0.63,1169638.17,560445.04,325471.67,15079.65,268641.81,117177.54,151421.21,43.06,conventional,2017,PhoenixTucson +0,2017-12-31,1.01,150867.12,76689.8,30458.87,2273.44,41445.01,28145.83,13299.18,0.0,conventional,2017,Pittsburgh +1,2017-12-24,1.29,87945.29,29723.13,18387.77,1008.56,38825.83,32590.13,6235.7,0.0,conventional,2017,Pittsburgh +2,2017-12-17,1.01,141895.38,66813.07,29425.92,2193.61,43462.78,30505.58,12957.2,0.0,conventional,2017,Pittsburgh +3,2017-12-10,1.27,93436.57,34239.68,19312.09,1573.33,38311.47,31900.28,6411.19,0.0,conventional,2017,Pittsburgh +4,2017-12-03,1.18,93898.0,36640.0,20642.0,1451.0,35165.0,27782.0,7383.0,0.0,conventional,2017,Pittsburgh +5,2017-11-26,1.02,124119.0,60144.0,26227.0,2176.0,35572.0,23424.0,12148.0,0.0,conventional,2017,Pittsburgh +6,2017-11-19,1.5,89083.0,28168.0,17531.0,1896.0,41488.0,35828.0,5660.0,0.0,conventional,2017,Pittsburgh +7,2017-11-12,1.51,87818.0,30062.0,15533.0,1162.0,41061.0,35203.0,5858.0,0.0,conventional,2017,Pittsburgh +8,2017-11-05,1.54,85430.88,29627.78,17235.32,1064.82,37502.96,32659.31,4843.65,0.0,conventional,2017,Pittsburgh +9,2017-10-29,1.52,90393.33,30939.52,20179.35,1067.37,38207.09,32383.14,5823.95,0.0,conventional,2017,Pittsburgh +10,2017-10-22,1.54,99922.23,35800.8,22216.67,1088.38,40816.38,34330.46,6485.92,0.0,conventional,2017,Pittsburgh +11,2017-10-15,1.56,97962.05,34869.71,21509.86,1142.62,40439.86,32424.63,8015.23,0.0,conventional,2017,Pittsburgh +12,2017-10-08,1.6,84870.68,35817.02,10330.12,1240.8,37482.74,29940.23,7542.51,0.0,conventional,2017,Pittsburgh +13,2017-10-01,1.33,105766.89,43623.37,22847.25,1404.16,37892.11,26558.89,11333.22,0.0,conventional,2017,Pittsburgh +14,2017-09-24,1.32,102663.43,44018.65,25081.98,1558.08,32004.72,23199.63,8788.42,16.67,conventional,2017,Pittsburgh +15,2017-09-17,1.29,104613.01,43083.52,24457.99,1747.08,35324.42,27434.82,7722.93,166.67,conventional,2017,Pittsburgh +16,2017-09-10,1.31,100073.91,42781.2,23778.55,1402.3,32111.86,23892.22,7239.64,980.0,conventional,2017,Pittsburgh +17,2017-09-03,1.31,104937.39,43246.31,27966.76,1880.37,31843.95,23478.54,6839.85,1525.56,conventional,2017,Pittsburgh +18,2017-08-27,1.28,106686.99,43026.01,26492.95,1743.95,35424.08,27608.32,7352.42,463.34,conventional,2017,Pittsburgh +19,2017-08-20,1.29,104117.39,42108.08,25108.57,1582.31,35318.43,26702.83,7058.93,1556.67,conventional,2017,Pittsburgh +20,2017-08-13,1.27,106928.65,44556.63,26086.43,1284.85,35000.74,26432.21,7035.2,1533.33,conventional,2017,Pittsburgh +21,2017-08-06,1.29,105595.21,41518.8,28322.16,1457.18,34297.07,26823.78,6373.29,1100.0,conventional,2017,Pittsburgh +22,2017-07-30,1.29,104351.36,41263.14,27919.48,1465.5,33703.24,26704.33,6275.57,723.34,conventional,2017,Pittsburgh +23,2017-07-23,1.29,105012.68,42723.4,25661.41,1369.42,35258.45,26991.6,7230.18,1036.67,conventional,2017,Pittsburgh +24,2017-07-16,1.26,106344.95,44572.1,26346.56,1538.54,33887.75,25479.25,6868.5,1540.0,conventional,2017,Pittsburgh +25,2017-07-09,1.25,116575.48,45339.5,30916.91,1471.62,38847.45,30093.41,6444.04,2310.0,conventional,2017,Pittsburgh +26,2017-07-02,1.25,124868.74,50926.04,30335.71,1779.51,41827.48,33133.21,6770.1,1924.17,conventional,2017,Pittsburgh +27,2017-06-25,1.26,120211.37,47201.63,29968.8,1660.34,41380.6,30778.72,8391.6,2210.28,conventional,2017,Pittsburgh +28,2017-06-18,1.29,119743.9,47857.66,32486.05,1543.23,37856.96,27652.92,8201.54,2002.5,conventional,2017,Pittsburgh +29,2017-06-11,1.33,117367.43,51973.42,29897.94,1738.43,33757.64,24054.78,7650.36,2052.5,conventional,2017,Pittsburgh +30,2017-06-04,1.33,123557.37,51219.47,27379.67,1919.8,43038.43,34198.85,8279.86,559.72,conventional,2017,Pittsburgh +31,2017-05-28,1.32,143674.94,60061.87,29709.54,1890.54,52012.99,44354.41,7658.58,0.0,conventional,2017,Pittsburgh +32,2017-05-21,1.02,207645.24,105432.3,48642.87,3875.28,49694.79,34916.3,14778.49,0.0,conventional,2017,Pittsburgh +33,2017-05-14,1.33,117857.6,51068.92,20279.94,1751.27,44757.47,41341.77,3086.53,329.17,conventional,2017,Pittsburgh +34,2017-05-07,1.03,214738.04,107597.81,50334.69,3681.75,53123.79,38144.13,14979.66,0.0,conventional,2017,Pittsburgh +35,2017-04-30,1.05,205559.96,101894.13,53722.34,3641.61,46301.88,31302.01,14958.2,41.67,conventional,2017,Pittsburgh +36,2017-04-23,1.34,117579.21,48209.57,24388.1,1515.43,43466.11,35733.48,7732.63,0.0,conventional,2017,Pittsburgh +37,2017-04-16,1.33,116011.18,44551.19,23042.87,1422.88,46994.24,40217.19,6777.05,0.0,conventional,2017,Pittsburgh +38,2017-04-09,1.36,119196.56,48580.74,25212.69,1465.76,43937.37,36384.09,7553.28,0.0,conventional,2017,Pittsburgh +39,2017-04-02,1.37,122944.98,50365.37,27047.63,1687.36,43844.62,35344.15,8500.47,0.0,conventional,2017,Pittsburgh +40,2017-03-26,1.34,117686.64,43115.85,27137.5,1559.54,45873.75,38441.55,7432.2,0.0,conventional,2017,Pittsburgh +41,2017-03-19,1.34,110278.1,37849.42,28735.05,1151.02,42542.61,35408.71,7133.9,0.0,conventional,2017,Pittsburgh +42,2017-03-12,1.34,108624.25,37402.73,29383.0,1358.94,40479.58,33537.77,6941.81,0.0,conventional,2017,Pittsburgh +43,2017-03-05,1.02,174567.14,80177.15,47353.34,2909.17,44127.48,28421.5,15705.98,0.0,conventional,2017,Pittsburgh +44,2017-02-26,1.33,103906.0,37871.78,26478.19,1492.92,38063.11,31339.0,6724.11,0.0,conventional,2017,Pittsburgh +45,2017-02-19,1.33,91579.18,32493.94,24711.08,1212.1,33162.06,27745.1,5416.96,0.0,conventional,2017,Pittsburgh +46,2017-02-12,1.28,100215.44,31075.53,28242.44,1114.29,39783.18,34235.6,5547.58,0.0,conventional,2017,Pittsburgh +47,2017-02-05,1.02,157981.65,67986.6,47941.88,2927.44,39125.73,27741.95,11383.78,0.0,conventional,2017,Pittsburgh +48,2017-01-29,1.26,107225.04,34693.77,30342.44,1353.22,40835.61,35389.28,5446.33,0.0,conventional,2017,Pittsburgh +49,2017-01-22,1.04,159303.6,68732.26,45716.42,3110.59,41744.33,30703.03,11041.3,0.0,conventional,2017,Pittsburgh +50,2017-01-15,1.08,168143.15,74537.1,47948.29,3405.2,42252.56,29876.42,12376.14,0.0,conventional,2017,Pittsburgh +51,2017-01-08,1.02,152780.85,65343.94,47296.47,2616.18,37524.26,27826.18,9698.08,0.0,conventional,2017,Pittsburgh +52,2017-01-01,1.02,141043.91,58724.08,42203.79,2553.37,37562.67,28298.47,9264.2,0.0,conventional,2017,Pittsburgh +0,2017-12-31,1.02,2173591.74,1159470.84,493193.16,5719.66,515208.08,417190.3,97986.16,31.62,conventional,2017,Plains +1,2017-12-24,1.26,1576731.65,694864.33,411212.79,4508.17,466146.36,357357.71,108754.39,34.26,conventional,2017,Plains +2,2017-12-17,1.05,1829991.74,931127.59,418034.24,4249.88,476580.03,364590.57,111973.42,16.04,conventional,2017,Plains +3,2017-12-10,1.15,1606464.12,658960.79,395234.44,4370.57,547898.32,413856.9,133584.89,456.53,conventional,2017,Plains +4,2017-12-03,1.19,1630974.0,738854.0,411741.0,5403.0,474976.0,345924.0,128385.0,668.0,conventional,2017,Plains +5,2017-11-26,1.28,1280491.0,628374.0,311442.0,4253.0,336422.0,225355.0,110958.0,108.0,conventional,2017,Plains +6,2017-11-19,1.12,1729745.0,963556.0,315619.0,4554.0,446016.0,341806.0,104210.0,0.0,conventional,2017,Plains +7,2017-11-12,1.26,1625590.0,765204.0,344953.0,3663.0,511771.0,398551.0,113198.0,22.0,conventional,2017,Plains +8,2017-11-05,1.48,1380036.54,583677.03,410381.7,4216.04,381761.77,292776.18,88977.53,8.06,conventional,2017,Plains +9,2017-10-29,1.38,1536445.96,679340.39,436908.61,3387.14,416809.82,339758.82,77029.46,21.54,conventional,2017,Plains +10,2017-10-22,1.48,1455487.08,650121.75,388491.92,4068.81,412804.6,343995.88,68736.06,72.66,conventional,2017,Plains +11,2017-10-15,1.77,1232522.78,566004.4,324285.18,4322.76,337910.44,260794.05,77059.87,56.52,conventional,2017,Plains +12,2017-10-08,1.81,1248620.9,579778.92,278087.93,5387.88,385366.17,285269.57,100043.45,53.15,conventional,2017,Plains +13,2017-10-01,1.77,1309590.39,547565.46,323435.45,13597.72,424991.76,323068.99,101858.27,64.5,conventional,2017,Plains +14,2017-09-24,1.75,1384407.83,592804.14,318265.02,21231.46,452107.21,379266.75,72783.69,56.77,conventional,2017,Plains +15,2017-09-17,1.66,1369417.02,603285.91,339221.28,6807.98,420101.85,365945.02,54079.47,77.36,conventional,2017,Plains +16,2017-09-10,1.6,1534772.16,677031.99,369718.92,5851.96,482169.29,440426.06,40820.99,922.24,conventional,2017,Plains +17,2017-09-03,1.58,1531392.1,682504.86,356889.47,6349.19,485648.58,423640.15,43196.91,18811.52,conventional,2017,Plains +18,2017-08-27,1.37,1822828.12,940974.89,417322.15,6076.68,458454.4,403908.27,36075.49,18470.64,conventional,2017,Plains +19,2017-08-20,1.53,1548298.16,649040.17,436601.26,6025.98,456630.75,417905.99,34478.09,4246.67,conventional,2017,Plains +20,2017-08-13,1.43,1739844.71,649275.23,609832.36,6243.42,474493.7,424441.48,35663.55,14388.67,conventional,2017,Plains +21,2017-08-06,1.43,1762012.56,675558.34,580796.32,7231.22,498426.68,440097.5,44108.31,14220.87,conventional,2017,Plains +22,2017-07-30,1.46,1718325.16,669232.81,557504.83,11639.77,479947.75,430060.41,37912.23,11975.11,conventional,2017,Plains +23,2017-07-23,1.39,1854451.3,719912.1,594292.4,11924.17,528322.63,466178.48,46069.1,16075.05,conventional,2017,Plains +24,2017-07-16,1.38,1843260.04,662783.83,595296.48,28026.13,557153.6,485370.12,50390.43,21393.05,conventional,2017,Plains +25,2017-07-09,1.32,2106705.01,785869.03,554318.38,45371.29,721146.31,710273.4,5457.82,5415.09,conventional,2017,Plains +26,2017-07-02,1.31,2223310.81,801224.73,664924.43,28132.18,729029.47,707685.17,6808.01,14536.29,conventional,2017,Plains +27,2017-06-25,1.35,2035318.57,790697.35,562376.12,10764.95,671480.15,633187.99,29126.86,9165.3,conventional,2017,Plains +28,2017-06-18,1.35,1993421.09,812644.07,464271.97,7538.35,708966.7,653169.34,34954.01,20843.35,conventional,2017,Plains +29,2017-06-11,1.31,2120488.01,948624.24,478847.61,7878.02,685138.14,642268.81,27923.27,14946.06,conventional,2017,Plains +30,2017-06-04,1.31,2136102.71,958508.87,499135.71,11013.14,667444.99,620312.74,35312.21,11820.04,conventional,2017,Plains +31,2017-05-28,1.38,1975524.7,833904.89,499191.31,10560.99,631867.51,584294.01,29543.77,18029.73,conventional,2017,Plains +32,2017-05-21,1.33,1840889.79,832263.81,420870.92,7303.17,580451.89,534882.58,31630.61,13938.7,conventional,2017,Plains +33,2017-05-14,1.33,1894833.35,874405.39,415178.47,7813.52,597435.97,535679.03,49821.03,11935.91,conventional,2017,Plains +34,2017-05-07,1.13,2617237.35,1371861.27,579543.42,8089.83,657742.83,570356.24,71124.76,16261.83,conventional,2017,Plains +35,2017-04-30,1.19,2080438.13,1092962.79,415847.89,7112.21,564515.24,516294.46,38654.81,9565.97,conventional,2017,Plains +36,2017-04-23,1.18,2143445.39,1115172.82,403864.38,6655.98,617752.21,606147.7,8038.24,3566.27,conventional,2017,Plains +37,2017-04-16,1.35,1808002.16,776378.88,497717.36,7828.86,526077.06,500350.57,5479.2,20247.29,conventional,2017,Plains +38,2017-04-09,1.28,1868022.01,888870.09,497864.55,9239.84,472047.53,450706.0,5367.56,15973.97,conventional,2017,Plains +39,2017-04-02,1.29,1818148.12,851477.91,524130.79,13117.72,429421.7,409630.98,6543.51,13247.21,conventional,2017,Plains +40,2017-03-26,1.33,1704624.12,765106.73,474410.9,8534.77,456571.72,432296.32,5044.13,19231.27,conventional,2017,Plains +41,2017-03-19,1.3,1679882.22,721848.28,489324.58,8220.55,460488.81,437779.63,20075.74,2633.44,conventional,2017,Plains +42,2017-03-12,1.29,1602700.69,758548.15,426749.6,6594.42,410808.52,399428.36,4019.84,7360.32,conventional,2017,Plains +43,2017-03-05,1.25,1601599.81,734909.69,421271.9,9572.98,435845.24,393722.61,36578.51,5544.12,conventional,2017,Plains +44,2017-02-26,1.05,2008263.47,1013358.38,453752.92,14783.06,526369.11,462233.19,58328.14,5807.78,conventional,2017,Plains +45,2017-02-19,0.96,2087617.13,1035888.35,444278.43,20779.51,586670.84,537145.2,44324.73,5200.91,conventional,2017,Plains +46,2017-02-12,0.94,2097983.48,1041604.45,490947.03,23556.8,541875.2,466641.32,53465.68,21768.2,conventional,2017,Plains +47,2017-02-05,0.76,3575499.21,2157030.64,801199.59,8231.35,609037.63,579814.97,21646.18,7576.48,conventional,2017,Plains +48,2017-01-29,1.06,2057899.39,896361.8,569685.24,6640.06,585212.29,503163.84,55896.78,26151.67,conventional,2017,Plains +49,2017-01-22,1.09,1812652.88,790172.66,503597.38,5427.07,513455.77,463066.89,48648.26,1740.62,conventional,2017,Plains +50,2017-01-15,1.05,2064194.02,925668.48,529337.88,6259.33,602928.33,545116.32,46315.29,11496.72,conventional,2017,Plains +51,2017-01-08,1.06,1890389.78,915300.05,479607.98,5628.26,489853.49,450604.75,32676.07,6572.67,conventional,2017,Plains +52,2017-01-01,0.83,2382742.62,1462454.22,509659.58,4780.52,405848.3,387097.97,13008.21,5742.12,conventional,2017,Plains +0,2017-12-31,0.89,614950.95,93210.19,250586.4,16024.9,255129.46,204432.64,50366.11,330.71,conventional,2017,Portland +1,2017-12-24,1.33,407742.01,64005.13,141179.93,12577.34,189979.61,128039.05,61593.08,347.48,conventional,2017,Portland +2,2017-12-17,1.31,430915.0,74946.87,158604.57,10853.54,186510.02,133500.93,52414.62,594.47,conventional,2017,Portland +3,2017-12-10,1.29,424741.73,110651.9,93996.37,15325.59,204767.87,147247.2,57068.55,452.12,conventional,2017,Portland +4,2017-12-03,0.88,777430.0,260954.0,168336.0,12318.0,335821.0,295944.0,39575.0,302.0,conventional,2017,Portland +5,2017-11-26,1.48,336192.0,99591.0,69191.0,12659.0,154751.0,105787.0,48468.0,495.0,conventional,2017,Portland +6,2017-11-19,1.53,350149.0,105421.0,72924.0,13313.0,158491.0,84675.0,72816.0,1000.0,conventional,2017,Portland +7,2017-11-12,1.11,593320.0,178779.0,115334.0,12996.0,286211.0,231215.0,54586.0,410.0,conventional,2017,Portland +8,2017-11-05,1.03,681564.98,225938.5,150840.92,14808.15,289977.41,246798.74,42932.34,246.33,conventional,2017,Portland +9,2017-10-29,1.29,520629.7,152604.62,128666.04,15431.79,223927.25,175517.41,47898.67,511.17,conventional,2017,Portland +10,2017-10-22,1.36,511400.66,138574.37,127745.69,14424.63,230655.97,189637.21,40584.24,434.52,conventional,2017,Portland +11,2017-10-15,1.25,546932.09,150707.93,240106.11,11215.37,144902.68,91834.79,52424.48,643.41,conventional,2017,Portland +12,2017-10-08,1.9,363427.67,92601.95,111769.87,14976.51,144079.34,87516.85,54855.78,1706.71,conventional,2017,Portland +13,2017-10-01,1.84,362296.15,97772.92,104336.09,14152.16,146034.98,92339.3,52994.8,700.88,conventional,2017,Portland +14,2017-09-24,1.82,354180.85,93965.86,95406.48,13094.82,151713.69,93608.45,57417.88,687.36,conventional,2017,Portland +15,2017-09-17,1.83,378220.95,99284.19,104444.53,12499.89,161992.34,91160.7,70070.11,761.53,conventional,2017,Portland +16,2017-09-10,1.87,384536.99,103658.38,106229.71,16044.05,158604.85,85879.75,71546.81,1178.29,conventional,2017,Portland +17,2017-09-03,1.76,415130.61,113711.41,118369.81,14533.01,168516.38,106243.97,61915.21,357.2,conventional,2017,Portland +18,2017-08-27,1.34,597580.17,168216.37,97433.68,12732.14,319197.98,266476.63,52445.78,275.57,conventional,2017,Portland +19,2017-08-20,1.32,671617.66,191682.01,131531.25,15625.26,332779.14,276359.88,55932.31,486.95,conventional,2017,Portland +20,2017-08-13,1.71,432923.79,100657.31,122555.64,14938.35,194772.49,113265.06,81462.18,45.25,conventional,2017,Portland +21,2017-08-06,1.58,540879.33,125451.64,146938.76,16332.57,252156.36,162070.46,89822.94,262.96,conventional,2017,Portland +22,2017-07-30,1.34,575652.16,145857.23,211102.06,14356.83,204336.04,116878.48,87177.01,280.55,conventional,2017,Portland +23,2017-07-23,1.15,606128.4,163681.81,240248.53,15020.34,187177.72,99301.68,87801.41,74.63,conventional,2017,Portland +24,2017-07-16,1.38,530468.65,141903.05,173049.68,14908.1,200607.82,108090.39,91624.34,893.09,conventional,2017,Portland +25,2017-07-09,0.7,1136070.26,228987.68,231828.52,13755.65,661498.41,656040.89,5097.49,360.03,conventional,2017,Portland +26,2017-07-02,0.99,767074.64,138050.07,193657.22,15389.61,419977.74,417909.15,1832.24,236.35,conventional,2017,Portland +27,2017-06-25,0.96,803349.86,162934.76,169403.8,19050.31,451960.99,450916.88,634.51,409.6,conventional,2017,Portland +28,2017-06-18,0.97,755535.79,151651.79,165833.34,15531.89,422518.77,422053.82,312.53,152.42,conventional,2017,Portland +29,2017-06-11,1.0,718937.65,128990.56,168571.5,18215.43,403160.16,401672.14,1316.91,171.11,conventional,2017,Portland +30,2017-06-04,1.12,698957.23,120671.14,128831.45,23470.48,425984.16,423593.25,2161.68,229.23,conventional,2017,Portland +31,2017-05-28,0.97,820850.36,162040.39,194722.06,23352.57,440735.34,438469.98,2179.16,86.2,conventional,2017,Portland +32,2017-05-21,1.01,750346.5,160576.89,189301.72,21411.16,379056.73,378471.34,433.9,151.49,conventional,2017,Portland +33,2017-05-14,0.95,765147.43,162605.72,154258.39,20830.86,427452.46,412487.49,14659.64,305.33,conventional,2017,Portland +34,2017-05-07,0.91,933826.15,229401.85,253020.4,22084.03,429319.87,370157.41,58789.0,373.46,conventional,2017,Portland +35,2017-04-30,0.84,940104.32,220613.6,175669.06,20230.57,523591.09,521942.84,1439.44,208.81,conventional,2017,Portland +36,2017-04-23,0.91,756075.76,165357.47,200048.67,19111.08,371558.54,370457.47,588.26,512.81,conventional,2017,Portland +37,2017-04-16,0.98,743878.59,151790.12,168188.1,18907.42,404992.95,403966.15,732.22,294.58,conventional,2017,Portland +38,2017-04-09,1.08,713478.54,156932.81,145011.71,22074.29,389459.73,385964.86,3215.76,279.11,conventional,2017,Portland +39,2017-04-02,1.12,672306.68,152601.88,137424.85,20885.2,361394.75,359313.65,1923.63,157.47,conventional,2017,Portland +40,2017-03-26,1.12,629914.06,142591.43,127964.61,16620.87,342737.15,338024.62,4248.56,463.97,conventional,2017,Portland +41,2017-03-19,1.11,634212.88,149500.57,129099.31,19059.85,336553.15,334445.43,1589.36,518.36,conventional,2017,Portland +42,2017-03-12,0.84,922940.33,131660.67,200564.13,18137.28,572578.25,536468.52,35442.63,667.1,conventional,2017,Portland +43,2017-03-05,0.89,770551.84,142356.74,159767.62,17968.89,450458.59,272980.83,177251.57,226.19,conventional,2017,Portland +44,2017-02-26,0.7,877633.92,134185.56,153225.87,17614.85,572607.64,352429.69,219524.32,653.63,conventional,2017,Portland +45,2017-02-19,0.76,869425.93,151715.71,176142.73,16930.22,524637.27,354510.94,169575.72,550.61,conventional,2017,Portland +46,2017-02-12,0.77,724514.73,159697.86,113321.3,15145.03,436350.54,397601.08,38270.41,479.05,conventional,2017,Portland +47,2017-02-05,0.68,1189151.17,173944.99,260237.26,17285.27,737683.65,678871.57,57776.33,1035.75,conventional,2017,Portland +48,2017-01-29,0.76,909463.13,153610.95,175048.56,17090.49,563713.13,423872.42,138350.97,1489.74,conventional,2017,Portland +49,2017-01-22,0.87,711564.14,107651.59,194199.57,16169.54,393543.44,331105.98,62282.17,155.29,conventional,2017,Portland +50,2017-01-15,0.85,758125.51,109638.8,187142.02,17794.13,443550.56,415774.16,27321.98,454.42,conventional,2017,Portland +51,2017-01-08,0.85,877646.01,137600.57,252977.95,16698.99,470368.5,423677.63,46173.85,517.02,conventional,2017,Portland +52,2017-01-01,0.73,869835.55,100273.33,269506.85,13235.82,486819.55,468972.79,17284.95,561.81,conventional,2017,Portland +0,2017-12-31,0.92,419590.58,90432.19,134861.05,5994.91,188302.43,178330.99,9970.33,1.11,conventional,2017,RaleighGreensboro +1,2017-12-24,1.27,248315.51,77545.43,71380.7,3882.23,95507.15,92648.3,2858.85,0.0,conventional,2017,RaleighGreensboro +2,2017-12-17,1.24,253164.73,79511.53,70218.88,3459.14,99975.18,97660.72,2310.02,4.44,conventional,2017,RaleighGreensboro +3,2017-12-10,1.03,356980.37,91718.59,76259.58,4128.62,184873.58,180009.62,4863.96,0.0,conventional,2017,RaleighGreensboro +4,2017-12-03,1.18,307299.0,91761.0,119171.0,3892.0,92471.0,89249.0,3222.0,0.0,conventional,2017,RaleighGreensboro +5,2017-11-26,1.36,225495.0,64578.0,73321.0,3144.0,84452.0,82420.0,2032.0,0.0,conventional,2017,RaleighGreensboro +6,2017-11-19,1.36,247612.0,72444.0,79451.0,3778.0,91940.0,89013.0,2925.0,2.0,conventional,2017,RaleighGreensboro +7,2017-11-12,1.4,254131.0,77868.0,80926.0,4326.0,91011.0,88458.0,2553.0,0.0,conventional,2017,RaleighGreensboro +8,2017-11-05,1.39,271264.81,87732.98,82461.12,4552.75,96517.96,94086.43,2431.53,0.0,conventional,2017,RaleighGreensboro +9,2017-10-29,1.48,251521.91,76356.75,82013.34,4266.3,88885.52,85668.09,3216.32,1.11,conventional,2017,RaleighGreensboro +10,2017-10-22,1.63,229001.29,62822.01,87018.3,5007.19,74153.79,71573.43,2580.36,0.0,conventional,2017,RaleighGreensboro +11,2017-10-15,1.63,243992.86,72524.24,89294.26,5003.35,77171.01,71183.69,5987.32,0.0,conventional,2017,RaleighGreensboro +12,2017-10-08,1.7,243412.06,70536.12,91083.5,4383.72,77408.72,73770.6,3637.01,1.11,conventional,2017,RaleighGreensboro +13,2017-10-01,1.63,249920.93,67533.05,96920.94,4787.85,80679.09,76700.96,3978.13,0.0,conventional,2017,RaleighGreensboro +14,2017-09-24,1.54,273060.96,70581.38,111227.45,4434.42,86817.71,82873.27,3944.44,0.0,conventional,2017,RaleighGreensboro +15,2017-09-17,1.47,274560.95,81352.87,94454.59,4978.32,93775.17,91738.58,2026.59,10.0,conventional,2017,RaleighGreensboro +16,2017-09-10,1.57,250327.75,58910.8,97907.87,5296.91,88212.17,85481.76,1770.41,960.0,conventional,2017,RaleighGreensboro +17,2017-09-03,1.54,263532.84,63349.98,96363.44,5765.75,98053.67,91379.99,2160.35,4513.33,conventional,2017,RaleighGreensboro +18,2017-08-27,1.47,293278.78,92921.86,90069.37,5520.15,104767.4,100986.72,2240.68,1540.0,conventional,2017,RaleighGreensboro +19,2017-08-20,1.42,297724.56,85619.74,98672.41,5226.02,108206.39,100691.38,3695.01,3820.0,conventional,2017,RaleighGreensboro +20,2017-08-13,1.39,275406.02,63759.04,102293.95,5709.16,103643.87,95749.54,5384.33,2510.0,conventional,2017,RaleighGreensboro +21,2017-08-06,1.29,288674.63,84938.56,97693.5,5724.63,100317.94,95244.27,3590.34,1483.33,conventional,2017,RaleighGreensboro +22,2017-07-30,1.31,289052.93,88828.86,96173.17,5723.72,98327.18,93129.14,4554.7,643.34,conventional,2017,RaleighGreensboro +23,2017-07-23,1.31,286761.46,72790.4,94919.48,6495.0,112556.58,106561.61,3974.97,2020.0,conventional,2017,RaleighGreensboro +24,2017-07-16,1.3,270590.36,54756.27,94289.74,6881.95,114662.4,109084.83,3044.24,2533.33,conventional,2017,RaleighGreensboro +25,2017-07-09,1.25,309542.11,92214.73,91091.46,5985.39,120250.53,113413.21,1835.65,5001.67,conventional,2017,RaleighGreensboro +26,2017-07-02,1.22,314536.29,95259.45,93112.35,6531.77,119632.72,112838.17,2159.55,4635.0,conventional,2017,RaleighGreensboro +27,2017-06-25,1.24,297426.95,92985.13,87499.38,6296.21,110646.23,105884.61,1991.62,2770.0,conventional,2017,RaleighGreensboro +28,2017-06-18,1.34,263858.47,63136.38,95583.32,6670.12,98468.65,93661.14,1772.51,3035.0,conventional,2017,RaleighGreensboro +29,2017-06-11,1.3,302596.77,77343.65,110902.92,7279.01,107071.19,101531.91,1864.28,3675.0,conventional,2017,RaleighGreensboro +30,2017-06-04,1.43,303913.24,85319.88,110335.08,7020.17,101238.11,95259.58,2878.53,3100.0,conventional,2017,RaleighGreensboro +31,2017-05-28,1.41,318497.15,85122.51,112526.54,7817.12,113030.98,109210.63,3820.35,0.0,conventional,2017,RaleighGreensboro +32,2017-05-21,1.39,312273.14,87350.21,110400.31,6949.54,107573.08,104411.01,3162.07,0.0,conventional,2017,RaleighGreensboro +33,2017-05-14,1.33,311498.75,83304.15,100720.61,6401.85,121072.14,119259.88,1812.26,0.0,conventional,2017,RaleighGreensboro +34,2017-05-07,1.33,375498.03,103481.72,124384.84,9620.92,138010.55,134892.78,3117.77,0.0,conventional,2017,RaleighGreensboro +35,2017-04-30,1.44,309256.66,87512.66,108724.01,6537.73,106482.26,102811.33,3670.93,0.0,conventional,2017,RaleighGreensboro +36,2017-04-23,1.4,305014.56,80081.24,100517.02,6401.68,118014.62,116286.32,1590.8,137.5,conventional,2017,RaleighGreensboro +37,2017-04-16,1.44,288117.21,78077.16,102376.32,6206.54,101457.19,100591.02,866.17,0.0,conventional,2017,RaleighGreensboro +38,2017-04-09,1.45,268332.13,75202.56,95458.05,6114.48,91557.04,90352.2,1204.84,0.0,conventional,2017,RaleighGreensboro +39,2017-04-02,1.39,309926.42,75587.22,115160.54,6188.55,112990.11,111590.71,1399.4,0.0,conventional,2017,RaleighGreensboro +40,2017-03-26,1.41,296660.74,68136.71,124783.85,7118.4,96621.78,95202.32,1419.46,0.0,conventional,2017,RaleighGreensboro +41,2017-03-19,1.39,280949.58,67152.77,117247.84,6082.76,90466.21,89175.8,1290.41,0.0,conventional,2017,RaleighGreensboro +42,2017-03-12,1.42,281539.78,78536.35,110931.62,7528.92,84542.89,83251.21,1291.68,0.0,conventional,2017,RaleighGreensboro +43,2017-03-05,1.32,282098.34,65892.0,114010.71,10062.04,92133.59,90822.06,1311.53,0.0,conventional,2017,RaleighGreensboro +44,2017-02-26,1.21,329592.25,75319.8,154834.96,11165.32,88272.17,86960.95,1311.22,0.0,conventional,2017,RaleighGreensboro +45,2017-02-19,1.27,286847.49,74958.58,112011.72,8812.48,91064.71,90004.05,1060.66,0.0,conventional,2017,RaleighGreensboro +46,2017-02-12,1.18,292605.18,93335.19,96469.3,8372.29,94428.4,92787.13,1502.38,138.89,conventional,2017,RaleighGreensboro +47,2017-02-05,0.97,455798.5,123228.06,230068.42,23080.58,79421.44,76260.19,2607.08,554.17,conventional,2017,RaleighGreensboro +48,2017-01-29,1.26,296249.39,89311.71,113615.4,9272.33,84049.95,81864.06,2185.89,0.0,conventional,2017,RaleighGreensboro +49,2017-01-22,1.14,326997.65,88147.39,135723.73,18581.37,84545.16,80560.91,3984.25,0.0,conventional,2017,RaleighGreensboro +50,2017-01-15,1.27,277248.48,73384.69,111891.62,8946.58,83025.59,80590.42,2435.17,0.0,conventional,2017,RaleighGreensboro +51,2017-01-08,1.22,305194.22,91874.42,105089.17,10444.52,97786.11,95734.55,2051.56,0.0,conventional,2017,RaleighGreensboro +52,2017-01-01,1.18,283434.01,74754.07,125855.56,13633.95,69190.43,66525.85,2664.58,0.0,conventional,2017,RaleighGreensboro +0,2017-12-31,0.83,315463.87,101602.77,102532.75,1995.65,109332.7,97601.86,11720.6,10.24,conventional,2017,RichmondNorfolk +1,2017-12-24,1.19,206250.4,49403.62,70977.27,1201.14,84668.37,75698.7,8969.67,0.0,conventional,2017,RichmondNorfolk +2,2017-12-17,1.13,199747.25,48414.09,67932.4,999.61,82401.15,77442.99,4954.83,3.33,conventional,2017,RichmondNorfolk +3,2017-12-10,1.04,253167.21,66481.28,75996.96,1058.89,109630.08,103972.45,5623.61,34.02,conventional,2017,RichmondNorfolk +4,2017-12-03,1.02,261784.0,78900.0,105291.0,1306.0,76288.0,71392.0,4865.0,30.0,conventional,2017,RichmondNorfolk +5,2017-11-26,1.24,163351.0,43700.0,63665.0,1021.0,54964.0,51601.0,3363.0,0.0,conventional,2017,RichmondNorfolk +6,2017-11-19,1.23,187293.0,48360.0,70014.0,1097.0,67821.0,64562.0,3227.0,32.0,conventional,2017,RichmondNorfolk +7,2017-11-12,1.26,200521.0,58938.0,69122.0,982.0,71479.0,69009.0,2411.0,59.0,conventional,2017,RichmondNorfolk +8,2017-11-05,1.15,250600.37,82955.94,75403.92,1474.13,90766.38,87156.99,3547.7,61.69,conventional,2017,RichmondNorfolk +9,2017-10-29,1.33,217679.03,53015.01,82269.66,1275.09,81119.27,78089.52,3026.42,3.33,conventional,2017,RichmondNorfolk +10,2017-10-22,1.39,206044.77,44086.63,86692.04,1441.14,73824.96,70959.97,2854.93,10.06,conventional,2017,RichmondNorfolk +11,2017-10-15,1.46,211342.84,43036.52,92849.88,1580.75,73875.69,67819.41,6056.28,0.0,conventional,2017,RichmondNorfolk +12,2017-10-08,1.62,159117.57,43388.05,49967.91,1517.57,64244.04,60012.28,4231.76,0.0,conventional,2017,RichmondNorfolk +13,2017-10-01,1.54,205642.56,39836.95,90617.44,1295.35,73892.82,68462.46,5430.36,0.0,conventional,2017,RichmondNorfolk +14,2017-09-24,1.47,206719.88,42524.16,84541.19,1112.71,78541.82,75856.02,2562.92,122.88,conventional,2017,RichmondNorfolk +15,2017-09-17,1.44,200632.61,44304.44,81995.44,1367.96,72964.77,70410.57,2293.63,260.57,conventional,2017,RichmondNorfolk +16,2017-09-10,1.47,192455.24,46253.54,64865.08,1324.07,80012.55,74003.77,2082.52,3926.26,conventional,2017,RichmondNorfolk +17,2017-09-03,1.44,208006.98,47932.32,81520.05,1786.45,76768.16,73080.19,2370.44,1317.53,conventional,2017,RichmondNorfolk +18,2017-08-27,1.38,215394.7,47758.49,75623.15,1559.71,90453.35,86399.49,3209.24,844.62,conventional,2017,RichmondNorfolk +19,2017-08-20,1.33,224102.83,51667.62,76235.53,1638.15,94561.53,84245.95,5869.87,4445.71,conventional,2017,RichmondNorfolk +20,2017-08-13,1.35,214146.34,55347.03,81849.06,1853.27,75096.98,67332.72,4184.26,3580.0,conventional,2017,RichmondNorfolk +21,2017-08-06,1.26,234101.85,60135.26,90862.57,1893.69,81210.33,74984.01,2762.99,3463.33,conventional,2017,RichmondNorfolk +22,2017-07-30,1.26,229911.14,61959.41,85046.12,1831.32,81074.29,74994.56,4529.73,1550.0,conventional,2017,RichmondNorfolk +23,2017-07-23,1.13,266821.34,96431.74,83045.48,2068.65,85275.47,80562.61,1952.87,2759.99,conventional,2017,RichmondNorfolk +24,2017-07-16,1.17,267806.51,89083.09,79805.02,1830.85,97087.55,90560.26,2757.35,3769.94,conventional,2017,RichmondNorfolk +25,2017-07-09,1.19,257780.31,71681.98,84932.95,2084.36,99081.02,89396.86,2634.16,7050.0,conventional,2017,RichmondNorfolk +26,2017-07-02,1.21,257162.16,71544.84,83589.78,2458.8,99568.74,90410.02,2797.05,6361.67,conventional,2017,RichmondNorfolk +27,2017-06-25,1.21,251831.45,70138.76,97759.86,1913.81,82019.02,71831.35,4301.84,5885.83,conventional,2017,RichmondNorfolk +28,2017-06-18,1.28,245564.59,63304.98,98223.11,1955.72,82080.78,75119.47,1746.59,5214.72,conventional,2017,RichmondNorfolk +29,2017-06-11,1.31,248634.5,63325.16,101559.72,2489.11,81260.51,74457.92,57.59,6745.0,conventional,2017,RichmondNorfolk +30,2017-06-04,1.38,261051.5,68705.59,108536.25,2472.06,81337.6,77842.84,1729.76,1765.0,conventional,2017,RichmondNorfolk +31,2017-05-28,1.25,288112.58,85850.86,104655.78,2662.62,94943.32,88523.34,6414.46,5.52,conventional,2017,RichmondNorfolk +32,2017-05-21,1.17,271051.35,85990.47,95579.62,2457.75,87023.51,82632.8,4363.23,27.48,conventional,2017,RichmondNorfolk +33,2017-05-14,1.13,257009.92,84866.27,60389.15,2298.81,109455.69,105063.78,4141.01,250.9,conventional,2017,RichmondNorfolk +34,2017-05-07,1.12,365531.86,119254.23,102627.13,3870.59,139779.91,135956.54,2975.91,847.46,conventional,2017,RichmondNorfolk +35,2017-04-30,1.18,285128.95,89984.49,87015.16,2182.03,105947.27,102188.75,3730.86,27.66,conventional,2017,RichmondNorfolk +36,2017-04-23,1.25,262771.53,64102.11,92451.08,2142.77,104075.57,103485.2,577.83,12.54,conventional,2017,RichmondNorfolk +37,2017-04-16,1.28,251124.14,68940.19,85592.85,2315.02,94276.08,93488.63,787.45,0.0,conventional,2017,RichmondNorfolk +38,2017-04-09,1.22,260512.01,81759.61,90074.43,2229.61,86448.36,85939.37,508.99,0.0,conventional,2017,RichmondNorfolk +39,2017-04-02,1.19,288015.28,67802.69,87489.8,2400.17,130322.62,130221.54,98.86,2.22,conventional,2017,RichmondNorfolk +40,2017-03-26,1.26,258325.55,79200.67,90219.05,2473.42,86432.41,85387.4,695.01,350.0,conventional,2017,RichmondNorfolk +41,2017-03-19,1.29,250471.76,66618.17,101944.33,2551.0,79358.26,77669.45,1688.81,0.0,conventional,2017,RichmondNorfolk +42,2017-03-12,1.35,254377.74,72440.76,98330.92,2941.28,80664.78,78718.53,1946.25,0.0,conventional,2017,RichmondNorfolk +43,2017-03-05,1.31,230403.88,60435.81,89549.29,4281.06,76137.72,74615.52,1522.2,0.0,conventional,2017,RichmondNorfolk +44,2017-02-26,1.13,281322.06,79067.59,131383.7,4209.86,66660.91,65695.54,965.37,0.0,conventional,2017,RichmondNorfolk +45,2017-02-19,1.18,241012.17,68120.76,90486.17,3142.36,79262.88,78087.14,1175.74,0.0,conventional,2017,RichmondNorfolk +46,2017-02-12,1.13,255531.24,89620.04,96337.1,2392.94,67181.16,66109.53,1071.63,0.0,conventional,2017,RichmondNorfolk +47,2017-02-05,1.0,379603.83,131147.08,162972.35,7578.2,77906.2,76374.99,1531.21,0.0,conventional,2017,RichmondNorfolk +48,2017-01-29,1.18,259671.38,87900.17,104490.09,3433.47,63847.65,62577.62,929.75,340.28,conventional,2017,RichmondNorfolk +49,2017-01-22,1.13,286641.35,94347.19,107935.3,6890.03,77468.83,75851.48,1617.35,0.0,conventional,2017,RichmondNorfolk +50,2017-01-15,1.15,261313.02,96322.65,89916.17,3884.99,71189.21,69981.57,1164.58,43.06,conventional,2017,RichmondNorfolk +51,2017-01-08,1.18,275129.35,91466.86,106264.62,3253.48,74144.39,73168.4,975.99,0.0,conventional,2017,RichmondNorfolk +52,2017-01-01,1.11,240752.75,82444.88,85577.58,5485.61,67244.68,65961.19,1104.32,179.17,conventional,2017,RichmondNorfolk +0,2017-12-31,0.81,194627.58,63533.54,44810.59,99.22,86184.23,64304.28,21865.75,14.2,conventional,2017,Roanoke +1,2017-12-24,1.09,137679.86,32538.88,35304.59,79.43,69756.96,58617.25,11139.71,0.0,conventional,2017,Roanoke +2,2017-12-17,1.08,124002.08,29951.42,31312.81,85.19,62652.66,56079.52,6554.89,18.25,conventional,2017,Roanoke +3,2017-12-10,1.05,137960.99,38481.95,36370.51,73.18,63035.35,57738.32,5284.43,12.6,conventional,2017,Roanoke +4,2017-12-03,0.99,166540.0,56316.0,47267.0,149.0,62801.0,57210.0,5518.0,73.0,conventional,2017,Roanoke +5,2017-11-26,1.16,92146.0,25890.0,29449.0,133.0,36675.0,32592.0,4082.0,0.0,conventional,2017,Roanoke +6,2017-11-19,1.09,112603.0,31004.0,31095.0,158.0,50346.0,46213.0,4130.0,3.0,conventional,2017,Roanoke +7,2017-11-12,1.19,126496.0,43121.0,31995.0,173.0,51207.0,46960.0,4235.0,12.0,conventional,2017,Roanoke +8,2017-11-05,1.08,176421.06,65571.8,34149.97,209.3,76489.99,69792.75,6641.68,55.56,conventional,2017,Roanoke +9,2017-10-29,1.3,143342.57,36192.73,35007.6,265.2,71877.04,69621.41,2255.63,0.0,conventional,2017,Roanoke +10,2017-10-22,1.42,115432.53,26729.27,35118.27,103.84,53481.15,50154.17,3297.64,29.34,conventional,2017,Roanoke +11,2017-10-15,1.49,114826.68,27140.34,37806.88,114.24,49765.22,44950.05,4815.17,0.0,conventional,2017,Roanoke +12,2017-10-08,1.66,87278.58,26135.12,16257.01,73.31,44813.14,38450.63,6362.51,0.0,conventional,2017,Roanoke +13,2017-10-01,1.59,112518.2,25019.0,35234.94,85.57,52178.69,45303.82,6874.87,0.0,conventional,2017,Roanoke +14,2017-09-24,1.51,118080.88,25124.98,39485.74,71.76,53398.4,49231.32,4111.19,55.89,conventional,2017,Roanoke +15,2017-09-17,1.5,113231.66,26063.47,35969.8,45.25,51153.14,47157.59,3583.02,412.53,conventional,2017,Roanoke +16,2017-09-10,1.53,110081.14,25756.54,28947.04,95.06,55282.5,48825.07,4896.36,1561.07,conventional,2017,Roanoke +17,2017-09-03,1.45,115506.15,27598.89,37446.95,91.48,50368.83,43969.06,5061.79,1337.98,conventional,2017,Roanoke +18,2017-08-27,1.43,126646.81,30304.48,35205.89,102.36,61034.08,54510.23,5540.82,983.03,conventional,2017,Roanoke +19,2017-08-20,1.41,123267.26,28139.26,35074.05,64.13,59989.82,52792.92,5474.94,1721.96,conventional,2017,Roanoke +20,2017-08-13,1.38,109713.0,26240.62,40274.6,137.22,43060.56,36751.94,4721.95,1586.67,conventional,2017,Roanoke +21,2017-08-06,1.29,124119.9,28072.43,42704.66,168.32,53174.49,48158.96,3335.53,1680.0,conventional,2017,Roanoke +22,2017-07-30,1.29,123476.6,25323.09,41333.21,182.21,56638.09,49647.52,5730.57,1260.0,conventional,2017,Roanoke +23,2017-07-23,1.17,141148.36,36513.08,40395.65,320.79,63918.84,58375.34,3505.26,2038.24,conventional,2017,Roanoke +24,2017-07-16,1.16,159919.52,42470.79,40719.18,222.19,76507.36,67961.07,6304.08,2242.21,conventional,2017,Roanoke +25,2017-07-09,1.11,157797.53,29283.77,43863.9,232.79,84417.07,78578.39,2538.68,3300.0,conventional,2017,Roanoke +26,2017-07-02,1.13,156098.42,29008.07,44059.61,88.93,82941.81,75455.52,4063.51,3422.78,conventional,2017,Roanoke +27,2017-06-25,1.15,146132.45,28194.39,47197.86,97.07,70643.13,58834.48,9493.4,2315.25,conventional,2017,Roanoke +28,2017-06-18,1.16,152802.24,30545.71,47417.92,97.56,74741.05,69630.36,2860.69,2250.0,conventional,2017,Roanoke +29,2017-06-11,1.16,155040.89,31085.3,50163.3,93.77,73698.52,70183.05,610.47,2905.0,conventional,2017,Roanoke +30,2017-06-04,1.23,151097.89,35865.04,51698.26,76.74,63457.85,58885.96,4011.89,560.0,conventional,2017,Roanoke +31,2017-05-28,1.15,165711.15,42689.34,46416.68,107.29,76497.84,62798.96,13638.09,60.79,conventional,2017,Roanoke +32,2017-05-21,1.01,172518.2,39721.37,44645.91,152.32,87998.6,78050.29,9942.08,6.23,conventional,2017,Roanoke +33,2017-05-14,0.99,164928.9,49148.94,24238.43,98.26,91443.27,83409.79,7994.41,39.07,conventional,2017,Roanoke +34,2017-05-07,1.02,221289.76,55938.36,55664.31,124.64,109562.45,106593.49,2951.72,17.24,conventional,2017,Roanoke +35,2017-04-30,1.22,162420.79,30906.47,45408.59,58.54,86047.19,80694.54,5352.65,0.0,conventional,2017,Roanoke +36,2017-04-23,1.24,146324.59,27263.3,41988.7,75.47,76997.12,73624.88,3372.24,0.0,conventional,2017,Roanoke +37,2017-04-16,1.2,158523.99,30316.73,41034.36,73.98,87098.92,85993.01,1105.91,0.0,conventional,2017,Roanoke +38,2017-04-09,1.26,145899.12,32290.75,47113.7,54.65,66440.02,65146.93,1180.59,112.5,conventional,2017,Roanoke +39,2017-04-02,1.15,169374.96,32991.83,50584.41,94.1,85704.62,84689.06,1015.56,0.0,conventional,2017,Roanoke +40,2017-03-26,1.21,146817.49,29493.31,47162.94,70.51,70090.73,69195.18,895.55,0.0,conventional,2017,Roanoke +41,2017-03-19,1.23,141618.19,28859.6,52182.42,79.96,60496.21,59561.05,935.16,0.0,conventional,2017,Roanoke +42,2017-03-12,1.26,143644.79,31344.32,50614.07,161.29,61525.11,59939.46,1585.65,0.0,conventional,2017,Roanoke +43,2017-03-05,1.15,149237.92,31738.77,48916.45,159.11,68423.59,67685.81,737.78,0.0,conventional,2017,Roanoke +44,2017-02-26,1.13,153568.21,33526.51,62461.07,176.82,57403.81,56665.14,738.67,0.0,conventional,2017,Roanoke +45,2017-02-19,1.12,141558.76,32841.4,43497.06,69.27,65151.03,64383.7,767.33,0.0,conventional,2017,Roanoke +46,2017-02-12,1.03,159133.19,49551.37,48583.61,189.68,60808.53,59563.4,1245.13,0.0,conventional,2017,Roanoke +47,2017-02-05,0.97,212143.72,75074.86,76042.48,151.02,60875.36,59129.65,1337.38,408.33,conventional,2017,Roanoke +48,2017-01-29,1.13,143828.34,37601.17,50930.88,146.84,55149.45,53902.27,963.85,283.33,conventional,2017,Roanoke +49,2017-01-22,1.04,163498.85,48905.14,46802.42,142.99,67648.3,66764.36,883.94,0.0,conventional,2017,Roanoke +50,2017-01-15,1.06,158063.43,50449.58,43695.52,94.12,63824.21,63041.06,780.93,2.22,conventional,2017,Roanoke +51,2017-01-08,1.13,146072.21,44014.89,48526.46,92.52,53438.34,52587.23,842.22,8.89,conventional,2017,Roanoke +52,2017-01-01,0.97,142347.9,43011.78,43260.01,125.37,55950.74,55319.62,535.56,95.56,conventional,2017,Roanoke +0,2017-12-31,1.03,578374.5,130774.36,396250.81,922.03,50427.3,46215.9,521.92,3689.48,conventional,2017,Sacramento +1,2017-12-24,1.14,469533.33,128124.6,287781.13,989.68,52637.92,46568.56,579.63,5489.73,conventional,2017,Sacramento +2,2017-12-17,1.2,404548.13,122866.5,225425.46,795.93,55460.24,49298.88,868.99,5292.37,conventional,2017,Sacramento +3,2017-12-10,1.07,474539.47,157173.69,266189.47,910.41,50265.9,45079.72,526.67,4659.51,conventional,2017,Sacramento +4,2017-12-03,1.17,427791.0,132009.0,238373.0,779.0,56630.0,52589.0,502.0,3539.0,conventional,2017,Sacramento +5,2017-11-26,1.45,304942.0,98689.0,153842.0,1205.0,51206.0,44903.0,467.0,5836.0,conventional,2017,Sacramento +6,2017-11-19,1.45,331472.0,107079.0,174514.0,696.0,49184.0,43875.0,822.0,4486.0,conventional,2017,Sacramento +7,2017-11-12,1.23,442150.0,120349.0,268009.0,984.0,52808.0,48720.0,546.0,3542.0,conventional,2017,Sacramento +8,2017-11-05,1.36,407622.18,129130.3,234394.74,1020.06,43077.08,38736.42,429.99,3910.67,conventional,2017,Sacramento +9,2017-10-29,1.45,374807.93,120962.4,209801.43,798.13,43245.97,42643.71,515.55,86.71,conventional,2017,Sacramento +10,2017-10-22,1.58,337225.47,93869.48,204224.61,851.79,38279.59,37630.79,468.16,180.64,conventional,2017,Sacramento +11,2017-10-15,1.68,342218.56,89884.18,208158.38,800.92,43375.08,42344.65,833.74,196.69,conventional,2017,Sacramento +12,2017-10-08,1.66,348907.43,94059.88,214294.88,934.78,39617.89,37953.34,1407.04,257.51,conventional,2017,Sacramento +13,2017-10-01,1.74,318071.39,81753.69,191731.0,927.15,43659.55,41898.82,1572.23,188.5,conventional,2017,Sacramento +14,2017-09-24,1.7,314818.19,89050.27,187831.17,962.78,36973.97,34708.41,2069.24,196.32,conventional,2017,Sacramento +15,2017-09-17,1.61,354589.37,124583.84,189307.81,912.4,39785.32,39044.8,587.02,153.5,conventional,2017,Sacramento +16,2017-09-10,1.63,361079.39,121828.74,195817.0,1392.93,42040.72,41469.44,98.13,473.15,conventional,2017,Sacramento +17,2017-09-03,1.79,358168.59,122718.22,194468.27,1544.42,39437.68,39031.61,91.47,314.6,conventional,2017,Sacramento +18,2017-08-27,1.87,341841.01,120934.07,178392.05,1937.73,40577.16,39281.66,109.39,1186.11,conventional,2017,Sacramento +19,2017-08-20,1.82,331372.05,117500.89,164389.32,4321.75,45160.09,41838.76,1275.43,2045.9,conventional,2017,Sacramento +20,2017-08-13,1.44,455886.37,142234.49,263667.14,3221.43,46763.31,43675.73,1227.58,1860.0,conventional,2017,Sacramento +21,2017-08-06,1.46,471016.34,150669.55,267998.44,1923.28,50425.07,47817.62,1200.78,1406.67,conventional,2017,Sacramento +22,2017-07-30,1.41,503413.12,149729.73,306327.51,2243.53,45112.35,42049.24,1129.77,1933.34,conventional,2017,Sacramento +23,2017-07-23,1.46,444230.79,148014.47,247469.68,2242.49,46504.15,43739.04,1268.44,1496.67,conventional,2017,Sacramento +24,2017-07-16,1.58,461109.34,159107.69,257399.67,4592.03,40009.95,37654.57,1102.05,1253.33,conventional,2017,Sacramento +25,2017-07-09,1.44,505422.37,174813.37,267561.36,13473.26,49574.38,46835.01,669.37,2070.0,conventional,2017,Sacramento +26,2017-07-02,1.55,509256.0,157249.59,285875.16,12975.27,53155.98,50509.46,676.52,1970.0,conventional,2017,Sacramento +27,2017-06-25,1.5,492249.41,166509.01,261622.93,9937.63,54179.84,52113.51,561.33,1505.0,conventional,2017,Sacramento +28,2017-06-18,1.59,448930.73,164647.72,215644.64,10699.93,57938.44,53795.49,757.39,3385.56,conventional,2017,Sacramento +29,2017-06-11,1.55,440572.26,164987.61,210729.68,9745.09,55109.88,50595.08,601.47,3913.33,conventional,2017,Sacramento +30,2017-06-04,1.61,428553.32,160860.42,210208.11,2618.83,54865.96,51366.15,316.75,3183.06,conventional,2017,Sacramento +31,2017-05-28,1.55,481635.83,161377.98,265045.66,1129.2,54082.99,51629.16,373.83,2080.0,conventional,2017,Sacramento +32,2017-05-21,1.64,403959.96,140005.65,211234.12,1385.95,51334.24,49064.02,475.5,1794.72,conventional,2017,Sacramento +33,2017-05-14,1.56,410450.05,152535.19,199991.54,1396.48,56526.84,54722.49,509.35,1295.0,conventional,2017,Sacramento +34,2017-05-07,1.4,560446.85,157076.63,348134.91,1707.32,53527.99,49645.28,567.71,3315.0,conventional,2017,Sacramento +35,2017-04-30,1.62,391714.3,143615.47,197927.08,874.02,49297.73,46808.23,210.89,2278.61,conventional,2017,Sacramento +36,2017-04-23,1.6,370499.27,140311.55,183045.02,1050.45,46092.25,44010.19,117.06,1965.0,conventional,2017,Sacramento +37,2017-04-16,1.58,370816.51,137216.82,183753.76,1072.94,48772.99,47374.68,158.31,1240.0,conventional,2017,Sacramento +38,2017-04-09,1.36,431593.41,131487.05,248393.09,1003.61,50709.66,46825.36,5.97,3878.33,conventional,2017,Sacramento +39,2017-04-02,1.58,385734.97,141455.85,192900.99,1102.78,50275.35,48822.5,47.72,1405.13,conventional,2017,Sacramento +40,2017-03-26,1.57,375225.76,136446.55,190537.19,1187.45,47054.57,44746.86,95.41,2212.3,conventional,2017,Sacramento +41,2017-03-19,1.59,372216.08,126853.44,190505.63,1309.84,53547.17,51316.97,38.6,2191.6,conventional,2017,Sacramento +42,2017-03-12,1.61,354782.58,113887.8,189365.17,1980.8,49548.81,47380.73,80.43,2087.65,conventional,2017,Sacramento +43,2017-03-05,1.32,431348.55,162323.0,212458.59,5241.72,51325.24,50741.89,393.58,189.77,conventional,2017,Sacramento +44,2017-02-26,1.08,499261.3,163501.3,282428.66,6156.19,47175.15,45582.62,242.71,1349.82,conventional,2017,Sacramento +45,2017-02-19,1.2,431830.4,126780.19,247569.1,8981.28,48499.83,45747.06,8.93,2743.84,conventional,2017,Sacramento +46,2017-02-12,1.08,423595.21,173371.46,188127.57,9247.17,52849.01,51822.69,186.04,840.28,conventional,2017,Sacramento +47,2017-02-05,0.98,808808.87,321474.22,418158.93,11962.44,57213.28,56599.1,43.35,570.83,conventional,2017,Sacramento +48,2017-01-29,1.08,513293.45,203929.81,247415.04,7505.24,54443.36,52021.69,35.56,2386.11,conventional,2017,Sacramento +49,2017-01-22,0.98,532733.04,166864.88,321763.18,2248.57,41856.41,41368.62,487.79,0.0,conventional,2017,Sacramento +50,2017-01-15,1.2,469431.68,147645.88,275717.97,670.73,45397.1,42762.25,2404.85,230.0,conventional,2017,Sacramento +51,2017-01-08,1.15,506805.15,156654.26,276138.98,642.55,73369.36,66987.7,4336.66,2045.0,conventional,2017,Sacramento +52,2017-01-01,0.98,526765.64,144876.31,339664.16,660.97,41564.2,37920.98,2018.22,1625.0,conventional,2017,Sacramento +0,2017-12-31,0.98,619699.65,199514.36,268431.96,15509.5,136243.83,129566.1,4704.4,1973.33,conventional,2017,SanDiego +1,2017-12-24,1.17,397332.09,147688.05,120566.8,15186.18,113891.06,106944.5,4227.67,2718.89,conventional,2017,SanDiego +2,2017-12-17,0.73,719091.14,147099.59,439224.74,17641.76,115125.05,108179.86,4196.3,2748.89,conventional,2017,SanDiego +3,2017-12-10,1.13,442147.66,156011.73,148747.09,11293.42,126095.42,114750.28,8734.03,2611.11,conventional,2017,SanDiego +4,2017-12-03,1.08,479566.0,186079.0,147995.0,13899.0,131592.0,124045.0,4828.0,2719.0,conventional,2017,SanDiego +5,2017-11-26,1.24,384465.0,146577.0,114715.0,17443.0,105730.0,93366.0,9153.0,3211.0,conventional,2017,SanDiego +6,2017-11-19,1.25,409476.0,146119.0,102909.0,14767.0,145681.0,133210.0,9919.0,2552.0,conventional,2017,SanDiego +7,2017-11-12,1.16,433591.0,168076.0,140122.0,16004.0,109389.0,100528.0,5510.0,3351.0,conventional,2017,SanDiego +8,2017-11-05,1.04,493425.51,162044.55,219943.83,17093.91,94343.22,88039.76,3916.8,2386.66,conventional,2017,SanDiego +9,2017-10-29,1.0,593934.52,169061.21,309160.39,19020.23,96692.69,91706.27,4481.98,504.44,conventional,2017,SanDiego +10,2017-10-22,1.57,343882.42,130818.62,123575.63,17091.4,72396.77,68339.07,4057.7,0.0,conventional,2017,SanDiego +11,2017-10-15,1.67,322915.64,101926.07,136483.97,20792.45,63713.15,59356.15,4357.0,0.0,conventional,2017,SanDiego +12,2017-10-08,1.83,314828.77,114286.86,122377.33,21165.55,56999.03,52846.67,4152.36,0.0,conventional,2017,SanDiego +13,2017-10-01,1.78,321740.77,118114.48,122964.46,17450.03,63211.8,59173.54,4038.26,0.0,conventional,2017,SanDiego +14,2017-09-24,1.74,330959.91,123024.51,119911.94,17120.26,70903.2,67782.03,3117.48,3.69,conventional,2017,SanDiego +15,2017-09-17,1.71,341162.84,132005.47,118470.83,18093.98,72592.56,68684.19,3908.37,0.0,conventional,2017,SanDiego +16,2017-09-10,1.71,351223.38,132530.53,124344.76,17826.68,76521.41,71727.39,4603.67,190.35,conventional,2017,SanDiego +17,2017-09-03,1.52,402400.31,146612.09,158752.15,22496.54,74539.53,68847.07,5456.55,235.91,conventional,2017,SanDiego +18,2017-08-27,1.79,356447.96,143124.9,120383.98,19739.14,73199.94,67689.01,4535.81,975.12,conventional,2017,SanDiego +19,2017-08-20,1.65,379035.92,150962.01,110759.28,20546.29,96768.34,88428.12,6993.62,1346.6,conventional,2017,SanDiego +20,2017-08-13,1.24,499110.51,188851.61,165179.35,23999.56,121079.99,113037.67,7028.31,1014.01,conventional,2017,SanDiego +21,2017-08-06,1.34,476535.85,191792.73,140575.29,21769.92,122397.91,113356.35,6642.56,2399.0,conventional,2017,SanDiego +22,2017-07-30,1.48,444013.66,174486.03,137655.83,21223.58,110648.22,101946.55,6750.08,1951.59,conventional,2017,SanDiego +23,2017-07-23,1.46,455369.95,190512.25,135877.1,19475.81,109504.79,101991.15,4401.18,3112.46,conventional,2017,SanDiego +24,2017-07-16,1.48,449543.62,181912.69,134913.99,22438.5,110278.44,102399.17,4884.6,2994.67,conventional,2017,SanDiego +25,2017-07-09,1.21,575413.33,216297.72,151179.81,16976.57,190959.23,187255.57,150.33,3553.33,conventional,2017,SanDiego +26,2017-07-02,1.23,584480.72,200562.02,165727.23,23222.54,194968.93,191413.75,47.57,3507.61,conventional,2017,SanDiego +27,2017-06-25,1.05,586241.71,212203.54,131972.03,19457.18,222608.96,220632.65,197.32,1778.99,conventional,2017,SanDiego +28,2017-06-18,1.1,591731.93,214632.83,163049.23,19625.98,194423.89,189387.0,386.74,4650.15,conventional,2017,SanDiego +29,2017-06-11,1.17,522813.2,177782.46,134393.24,19857.93,190779.57,187655.1,160.56,2963.91,conventional,2017,SanDiego +30,2017-06-04,1.13,559985.06,184953.76,132976.72,20220.15,221834.43,219392.34,163.34,2278.75,conventional,2017,SanDiego +31,2017-05-28,1.27,532494.25,183306.26,147790.18,22850.74,178547.07,172875.87,21.92,5649.28,conventional,2017,SanDiego +32,2017-05-21,1.27,481522.42,164861.65,134099.68,20302.32,162258.77,158571.01,65.33,3622.43,conventional,2017,SanDiego +33,2017-05-14,1.08,556946.85,196722.52,132664.9,18988.93,208570.5,206313.02,90.47,2167.01,conventional,2017,SanDiego +34,2017-05-07,1.05,613046.52,221144.52,148033.96,20790.62,223077.42,221019.65,202.29,1855.48,conventional,2017,SanDiego +35,2017-04-30,1.18,498381.64,166863.56,136882.96,26022.53,168612.59,166655.47,128.23,1828.89,conventional,2017,SanDiego +36,2017-04-23,1.18,500367.63,156330.7,132449.49,25784.78,185802.66,184124.34,1068.32,610.0,conventional,2017,SanDiego +37,2017-04-16,1.29,465624.88,148202.16,137653.99,22572.45,157196.28,156168.83,122.45,905.0,conventional,2017,SanDiego +38,2017-04-09,1.22,461063.08,145442.79,128010.28,23321.76,164288.25,160950.36,2652.89,685.0,conventional,2017,SanDiego +39,2017-04-02,1.22,455329.05,144114.57,131344.17,20997.79,158872.52,154152.27,4013.58,706.67,conventional,2017,SanDiego +40,2017-03-26,1.28,430467.52,133247.68,128683.21,20148.75,148387.88,147197.26,285.62,905.0,conventional,2017,SanDiego +41,2017-03-19,1.25,460355.92,150847.61,132525.61,19948.07,157034.63,154726.89,1291.35,1016.39,conventional,2017,SanDiego +42,2017-03-12,1.24,445311.34,157513.94,139859.05,22386.0,125552.35,122585.47,1039.66,1927.22,conventional,2017,SanDiego +43,2017-03-05,1.04,517701.26,163424.69,176304.67,19186.14,158785.76,157805.49,549.71,430.56,conventional,2017,SanDiego +44,2017-02-26,0.88,572076.4,203828.88,150939.43,16296.69,201011.4,196998.31,3449.2,563.89,conventional,2017,SanDiego +45,2017-02-19,0.97,497333.98,164517.95,156159.47,17240.95,159415.61,154010.94,5009.67,395.0,conventional,2017,SanDiego +46,2017-02-12,0.7,645130.97,203848.19,199351.67,13290.0,228641.11,220708.3,7652.81,280.0,conventional,2017,SanDiego +47,2017-02-05,0.63,892740.87,260418.91,290223.93,20313.95,321784.08,318872.23,2886.85,25.0,conventional,2017,SanDiego +48,2017-01-29,0.65,776310.02,282233.2,253233.56,14380.96,226462.3,209999.44,13407.3,3055.56,conventional,2017,SanDiego +49,2017-01-22,0.74,695873.15,313593.77,174728.8,15139.2,192411.38,179361.27,13050.11,0.0,conventional,2017,SanDiego +50,2017-01-15,0.87,580190.82,156924.39,216675.95,14469.29,192121.19,168153.59,23244.82,722.78,conventional,2017,SanDiego +51,2017-01-08,0.96,582835.25,146165.17,222743.67,15301.4,198625.01,161975.42,36309.59,340.0,conventional,2017,SanDiego +52,2017-01-01,0.93,560310.35,149666.2,206181.12,15014.45,189448.58,150517.04,37802.65,1128.89,conventional,2017,SanDiego +0,2017-12-31,0.92,1174818.67,174144.97,860294.61,1733.53,138645.56,136909.07,32.99,1703.5,conventional,2017,SanFrancisco +1,2017-12-24,1.15,860922.52,178487.8,560097.71,2244.23,120092.78,117345.4,31.33,2716.05,conventional,2017,SanFrancisco +2,2017-12-17,1.4,674625.07,189827.12,374644.39,2099.61,108053.95,105441.28,50.58,2562.09,conventional,2017,SanFrancisco +3,2017-12-10,1.05,992871.42,302200.79,593521.66,2372.46,94776.51,91822.55,55.17,2898.79,conventional,2017,SanFrancisco +4,2017-12-03,1.28,798853.0,310481.0,387168.0,1966.0,99238.0,97333.0,108.0,1797.0,conventional,2017,SanFrancisco +5,2017-11-26,1.52,630939.0,166448.0,359471.0,2154.0,102865.0,100099.0,60.0,2706.0,conventional,2017,SanFrancisco +6,2017-11-19,1.48,657693.0,195380.0,366968.0,1909.0,93436.0,91293.0,128.0,2015.0,conventional,2017,SanFrancisco +7,2017-11-12,1.27,875104.0,289970.0,496390.0,2439.0,86306.0,84463.0,73.0,1770.0,conventional,2017,SanFrancisco +8,2017-11-05,1.41,787625.8,261561.33,435912.81,3140.0,87011.66,84961.32,94.01,1956.33,conventional,2017,SanFrancisco +9,2017-10-29,1.56,716567.05,197107.52,428002.14,4543.85,86913.54,85850.59,44.0,1018.95,conventional,2017,SanFrancisco +10,2017-10-22,1.57,768374.15,138067.37,551292.65,2933.7,76080.43,75647.31,103.92,329.2,conventional,2017,SanFrancisco +11,2017-10-15,1.76,671239.19,120680.92,461963.1,3144.56,85450.61,84850.23,231.37,369.01,conventional,2017,SanFrancisco +12,2017-10-08,1.65,780710.38,118596.49,587792.61,2921.61,71399.67,70491.41,419.54,488.72,conventional,2017,SanFrancisco +13,2017-10-01,1.79,660452.07,106075.6,477519.16,3125.78,73731.53,72812.1,451.17,468.26,conventional,2017,SanFrancisco +14,2017-09-24,1.76,653751.09,118405.01,461050.64,2948.47,71346.97,70570.56,463.21,313.2,conventional,2017,SanFrancisco +15,2017-09-17,1.81,648318.59,129172.57,428254.49,3490.1,87401.43,86891.91,163.49,346.03,conventional,2017,SanFrancisco +16,2017-09-10,1.71,688636.33,157322.98,434164.41,4117.75,93031.19,92218.55,190.74,621.9,conventional,2017,SanFrancisco +17,2017-09-03,1.78,667860.21,151679.5,421880.84,4061.05,90238.82,88850.91,76.81,1311.1,conventional,2017,SanFrancisco +18,2017-08-27,2.09,600153.2,151421.16,360906.48,5531.37,82294.19,80015.08,147.83,2131.28,conventional,2017,SanFrancisco +19,2017-08-20,2.07,561541.93,147449.96,304989.35,10147.53,98955.09,94445.66,932.19,3577.24,conventional,2017,SanFrancisco +20,2017-08-13,1.29,821395.74,164086.95,569847.08,9914.9,77546.81,72666.82,1062.21,3817.78,conventional,2017,SanFrancisco +21,2017-08-06,1.62,723557.56,156780.78,472631.33,4524.91,89620.54,85993.75,753.46,2873.33,conventional,2017,SanFrancisco +22,2017-07-30,1.3,897443.52,162330.88,657673.84,5039.65,72399.15,67138.82,930.33,4330.0,conventional,2017,SanFrancisco +23,2017-07-23,1.66,675183.5,166906.47,421727.32,5650.14,80899.57,78075.75,1063.82,1760.0,conventional,2017,SanFrancisco +24,2017-07-16,1.74,732328.94,182480.94,472009.71,8044.28,69794.01,67144.66,896.01,1753.34,conventional,2017,SanFrancisco +25,2017-07-09,1.69,715078.15,194695.25,421757.61,25793.3,72831.99,68952.89,1248.27,2630.83,conventional,2017,SanFrancisco +26,2017-07-02,1.7,700809.09,172013.34,420653.86,19625.31,88516.58,82113.65,1385.15,5017.78,conventional,2017,SanFrancisco +27,2017-06-25,1.53,874937.71,196221.86,568576.84,18879.86,91259.15,86302.01,1532.97,3424.17,conventional,2017,SanFrancisco +28,2017-06-18,1.77,660386.27,202024.11,336284.13,16709.19,105368.84,100785.35,1133.49,3450.0,conventional,2017,SanFrancisco +29,2017-06-11,1.8,608604.75,181965.02,318250.06,14342.68,94046.99,91219.19,1136.13,1691.67,conventional,2017,SanFrancisco +30,2017-06-04,1.83,650426.37,200052.18,350369.35,6248.07,93756.77,89727.13,1108.81,2920.83,conventional,2017,SanFrancisco +31,2017-05-28,1.78,664075.57,183361.47,386005.08,4497.4,90211.62,85402.49,805.24,4003.89,conventional,2017,SanFrancisco +32,2017-05-21,1.86,652301.59,167436.19,380367.23,4360.17,100138.0,97322.16,1157.23,1658.61,conventional,2017,SanFrancisco +33,2017-05-14,1.77,652375.87,182705.28,349569.02,5175.3,114926.27,110145.3,1127.91,3653.06,conventional,2017,SanFrancisco +34,2017-05-07,1.42,956829.89,212488.46,646869.71,6803.64,90668.08,86569.82,619.37,3478.89,conventional,2017,SanFrancisco +35,2017-04-30,1.93,612104.34,151929.31,369058.38,4331.73,86784.92,84446.16,671.26,1667.5,conventional,2017,SanFrancisco +36,2017-04-23,1.83,613563.9,178827.43,347730.09,4219.92,82786.46,79196.1,550.08,3040.28,conventional,2017,SanFrancisco +37,2017-04-16,1.69,670281.46,229167.93,349889.27,4769.39,86454.87,84582.49,250.71,1621.67,conventional,2017,SanFrancisco +38,2017-04-09,1.22,961954.91,216253.69,667301.58,4849.32,73550.32,72736.07,125.64,688.61,conventional,2017,SanFrancisco +39,2017-04-02,1.79,632537.9,180896.63,358599.04,5732.43,87309.8,85552.16,67.78,1689.86,conventional,2017,SanFrancisco +40,2017-03-26,1.79,617981.91,173628.92,349036.6,7123.04,88193.35,81760.29,213.18,6219.88,conventional,2017,SanFrancisco +41,2017-03-19,1.79,639050.82,185340.18,358216.27,6446.38,89047.99,87289.79,342.06,1416.14,conventional,2017,SanFrancisco +42,2017-03-12,1.8,620908.22,173434.03,354307.59,7050.37,86116.23,82363.32,407.28,3345.63,conventional,2017,SanFrancisco +43,2017-03-05,1.59,672242.8,234739.54,334851.44,12269.88,90381.94,86669.71,1172.75,2539.48,conventional,2017,SanFrancisco +44,2017-02-26,1.18,891688.67,286807.87,509449.62,14078.74,81352.44,76653.99,988.58,3709.87,conventional,2017,SanFrancisco +45,2017-02-19,1.17,863688.61,191375.63,578275.44,25011.96,69025.58,66457.97,962.82,1604.79,conventional,2017,SanFrancisco +46,2017-02-12,1.14,765983.21,265975.96,394642.91,22683.76,82680.58,76702.05,1053.53,4925.0,conventional,2017,SanFrancisco +47,2017-02-05,0.84,1557975.05,560686.25,900172.65,21331.13,75785.02,71464.46,976.12,3344.44,conventional,2017,SanFrancisco +48,2017-01-29,1.13,909650.62,371071.3,438456.28,15021.97,85101.07,73349.82,844.31,10906.94,conventional,2017,SanFrancisco +49,2017-01-22,0.94,1089513.11,297208.6,722757.78,5364.85,64181.88,59393.11,3290.16,1498.61,conventional,2017,SanFrancisco +50,2017-01-15,1.23,848267.19,211588.95,566260.12,2752.49,67665.63,60288.11,5710.02,1667.5,conventional,2017,SanFrancisco +51,2017-01-08,1.22,953770.46,196279.04,665608.45,2547.79,89335.18,80425.68,6315.06,2594.44,conventional,2017,SanFrancisco +52,2017-01-01,0.95,1047175.33,260100.73,717625.67,2490.66,66958.27,60397.91,5515.08,1045.28,conventional,2017,SanFrancisco +0,2017-12-31,1.1,559149.89,167408.78,182686.49,699.05,208355.57,161594.74,46404.85,355.98,conventional,2017,Seattle +1,2017-12-24,1.46,394845.19,95687.95,123764.9,653.49,174738.85,120140.61,54232.27,365.97,conventional,2017,Seattle +2,2017-12-17,1.49,361827.41,80005.49,107435.85,465.2,173920.87,125095.16,48311.96,513.75,conventional,2017,Seattle +3,2017-12-10,1.39,389912.46,85240.97,116349.02,706.43,187616.04,134944.06,51994.82,677.16,conventional,2017,Seattle +4,2017-12-03,1.26,500180.0,113961.0,107904.0,680.0,277636.0,231869.0,45507.0,260.0,conventional,2017,Seattle +5,2017-11-26,1.61,322421.0,73725.0,102163.0,700.0,145833.0,94616.0,50872.0,345.0,conventional,2017,Seattle +6,2017-11-19,1.62,347463.0,80544.0,109554.0,1324.0,156041.0,91853.0,63374.0,814.0,conventional,2017,Seattle +7,2017-11-12,1.34,498620.0,121406.0,117475.0,3994.0,255745.0,203897.0,51294.0,554.0,conventional,2017,Seattle +8,2017-11-05,1.37,503544.6,119514.34,114867.45,6037.11,263125.7,222651.89,40236.49,237.32,conventional,2017,Seattle +9,2017-10-29,1.53,452358.05,109352.84,121941.84,14722.61,206340.76,169263.24,36815.75,261.77,conventional,2017,Seattle +10,2017-10-22,1.48,468703.71,115638.44,168488.4,10445.22,174131.65,134104.55,39747.32,279.78,conventional,2017,Seattle +11,2017-10-15,1.74,411343.55,85159.49,168426.55,10887.91,146869.6,98698.38,47512.48,658.74,conventional,2017,Seattle +12,2017-10-08,2.02,358445.95,66345.57,129937.45,813.23,161349.7,102890.33,56577.6,1881.77,conventional,2017,Seattle +13,2017-10-01,2.01,363941.68,72930.41,126903.44,659.39,163448.44,107521.77,54904.91,1021.76,conventional,2017,Seattle +14,2017-09-24,1.99,367468.92,78736.2,129549.89,781.61,158401.22,104351.01,53318.88,731.33,conventional,2017,Seattle +15,2017-09-17,1.88,431277.46,101821.26,168223.74,648.37,160584.09,96743.5,62936.39,904.2,conventional,2017,Seattle +16,2017-09-10,2.07,388099.41,83635.01,140863.68,713.75,162886.97,93344.69,68261.26,1281.02,conventional,2017,Seattle +17,2017-09-03,1.94,409075.07,83934.95,146966.08,604.17,177569.87,113635.3,62704.47,1230.1,conventional,2017,Seattle +18,2017-08-27,1.54,562332.61,148933.34,138239.09,435.65,274724.53,225974.56,48406.18,343.79,conventional,2017,Seattle +19,2017-08-20,1.67,496897.67,126277.34,145202.43,447.78,224970.12,168561.46,56032.06,376.6,conventional,2017,Seattle +20,2017-08-13,1.81,438236.06,108558.45,159897.73,558.27,169221.61,104087.06,64712.1,422.45,conventional,2017,Seattle +21,2017-08-06,1.73,493703.62,124307.99,178899.75,965.93,189529.95,115658.86,73095.04,776.05,conventional,2017,Seattle +22,2017-07-30,1.72,470813.03,115910.95,169760.67,2027.83,183113.58,112306.79,69630.16,1176.63,conventional,2017,Seattle +23,2017-07-23,1.54,509159.42,110161.26,215252.32,5868.34,177877.5,105736.33,72025.25,115.92,conventional,2017,Seattle +24,2017-07-16,1.68,473361.62,122341.72,165493.94,762.56,184763.4,107734.09,76671.75,357.56,conventional,2017,Seattle +25,2017-07-09,1.0,905064.3,186651.37,182881.1,1023.68,534508.15,534148.07,34.7,325.38,conventional,2017,Seattle +26,2017-07-02,1.21,682920.51,125597.17,179521.36,840.48,376961.5,376182.03,56.47,723.0,conventional,2017,Seattle +27,2017-06-25,1.17,680060.61,129823.78,162186.47,1038.82,387011.54,386543.6,73.92,394.02,conventional,2017,Seattle +28,2017-06-18,1.16,696101.26,128838.87,170657.09,521.7,396083.6,395578.69,92.84,412.07,conventional,2017,Seattle +29,2017-06-11,1.21,664560.99,105557.41,169870.98,835.35,388297.25,387996.76,91.45,209.04,conventional,2017,Seattle +30,2017-06-04,1.21,681109.55,110722.71,172954.89,454.68,396977.27,396509.11,168.72,299.44,conventional,2017,Seattle +31,2017-05-28,1.19,729001.29,128463.84,191777.16,763.26,407997.03,407840.36,57.37,99.3,conventional,2017,Seattle +32,2017-05-21,1.25,628075.85,126440.43,172836.79,745.56,328053.07,327052.45,154.61,846.01,conventional,2017,Seattle +33,2017-05-14,1.09,760302.75,161654.66,182174.19,646.27,415827.63,411542.11,4195.83,89.69,conventional,2017,Seattle +34,2017-05-07,1.0,962478.04,251868.68,251822.4,499.56,458287.4,435657.92,22522.63,106.85,conventional,2017,Seattle +35,2017-04-30,0.92,906413.45,194789.64,170398.76,470.65,540754.4,538920.53,1467.7,366.17,conventional,2017,Seattle +36,2017-04-23,1.11,653100.77,135560.01,203465.08,670.42,313405.26,313046.46,250.26,108.54,conventional,2017,Seattle +37,2017-04-16,1.09,682386.6,131986.76,151806.57,404.18,398189.09,397484.51,217.5,487.08,conventional,2017,Seattle +38,2017-04-09,0.96,838359.35,196844.45,228960.5,209.25,412345.15,411247.99,280.09,817.07,conventional,2017,Seattle +39,2017-04-02,1.18,618377.56,103029.89,176357.55,319.02,338671.1,338015.92,310.82,344.36,conventional,2017,Seattle +40,2017-03-26,1.16,608172.61,99301.64,166232.82,323.47,342314.68,341802.35,213.09,299.24,conventional,2017,Seattle +41,2017-03-19,1.14,600698.43,109446.23,158477.5,329.64,332445.06,330536.19,1660.18,248.69,conventional,2017,Seattle +42,2017-03-12,0.91,846864.87,106731.77,212055.16,584.72,527493.22,507284.81,19483.58,724.83,conventional,2017,Seattle +43,2017-03-05,0.94,803073.94,125507.2,199518.76,773.03,477274.95,295803.25,180388.07,1083.63,conventional,2017,Seattle +44,2017-02-26,0.8,823735.2,115599.41,177935.95,3415.76,526784.08,446738.29,79634.56,411.23,conventional,2017,Seattle +45,2017-02-19,0.87,758887.32,95175.3,157514.67,512.85,505684.5,423476.63,81596.26,611.61,conventional,2017,Seattle +46,2017-02-12,0.77,750095.92,122056.9,182222.43,664.53,445152.06,359133.78,85567.69,450.59,conventional,2017,Seattle +47,2017-02-05,0.76,1093144.23,160260.61,306958.6,957.35,624967.67,471283.84,152490.79,1193.04,conventional,2017,Seattle +48,2017-01-29,0.86,838930.98,114095.9,187068.73,478.51,537287.84,496669.13,40312.44,306.27,conventional,2017,Seattle +49,2017-01-22,0.85,865893.82,102662.26,256663.56,556.69,506011.31,393137.4,112547.31,326.6,conventional,2017,Seattle +50,2017-01-15,0.93,755537.27,88731.0,212640.4,894.17,453271.7,442607.26,10132.02,532.42,conventional,2017,Seattle +51,2017-01-08,0.8,938061.93,106390.45,348112.17,274.97,483284.34,456141.41,26533.02,609.91,conventional,2017,Seattle +52,2017-01-01,0.84,822000.04,79598.76,267691.37,705.61,474004.3,469004.72,4461.1,538.48,conventional,2017,Seattle +0,2017-12-31,0.99,460716.58,210307.64,80809.78,3034.55,166564.61,124648.0,41191.56,725.05,conventional,2017,SouthCarolina +1,2017-12-24,1.22,294202.67,133334.86,48531.59,2380.74,109955.48,84037.13,23046.13,2872.22,conventional,2017,SouthCarolina +2,2017-12-17,1.04,348367.63,174025.39,54684.76,2567.12,117090.36,84686.83,30354.29,2049.24,conventional,2017,SouthCarolina +3,2017-12-10,1.02,382563.7,169611.11,55404.43,2823.89,154724.27,119935.01,32440.06,2349.2,conventional,2017,SouthCarolina +4,2017-12-03,1.12,349900.0,166920.0,72687.0,2909.0,107385.0,81124.0,24366.0,1895.0,conventional,2017,SouthCarolina +5,2017-11-26,1.25,269322.0,125872.0,47631.0,2004.0,93815.0,72283.0,19651.0,1882.0,conventional,2017,SouthCarolina +6,2017-11-19,1.23,295766.0,136349.0,49469.0,2736.0,107212.0,81408.0,23870.0,1933.0,conventional,2017,SouthCarolina +7,2017-11-12,1.23,340345.0,165782.0,55018.0,2954.0,116591.0,90110.0,24929.0,1552.0,conventional,2017,SouthCarolina +8,2017-11-05,1.28,308280.39,134738.68,56451.03,2686.05,114404.63,89967.7,23352.49,1084.44,conventional,2017,SouthCarolina +9,2017-10-29,1.32,310343.81,139889.99,57049.49,2572.09,110832.24,74082.72,35393.69,1355.83,conventional,2017,SouthCarolina +10,2017-10-22,1.57,275350.6,130878.22,56508.94,2299.62,85663.82,63298.32,22359.95,5.55,conventional,2017,SouthCarolina +11,2017-10-15,1.69,275807.02,125345.26,60281.11,1836.26,88344.39,62685.34,25649.66,9.39,conventional,2017,SouthCarolina +12,2017-10-08,1.56,316112.15,161942.76,57386.29,1635.25,95147.85,61514.47,33613.17,20.21,conventional,2017,SouthCarolina +13,2017-10-01,1.64,296183.33,135045.88,74889.77,1574.57,84673.11,61373.43,23291.48,8.2,conventional,2017,SouthCarolina +14,2017-09-24,1.57,300285.1,147297.51,66856.69,1530.25,84600.65,61065.57,23511.35,23.73,conventional,2017,SouthCarolina +15,2017-09-17,1.46,311277.81,145609.4,70155.27,1756.44,93756.7,65724.25,27476.84,555.61,conventional,2017,SouthCarolina +16,2017-09-10,1.42,286146.89,127817.15,60589.64,1332.74,96407.36,73147.07,19863.14,3397.15,conventional,2017,SouthCarolina +17,2017-09-03,1.44,328515.05,150242.17,66384.2,1908.52,109980.16,79464.23,25545.93,4970.0,conventional,2017,SouthCarolina +18,2017-08-27,1.41,333689.71,155801.96,65899.22,1788.77,110199.76,78518.11,24604.0,7077.65,conventional,2017,SouthCarolina +19,2017-08-20,1.4,348843.91,158452.34,70864.82,2138.0,117388.75,84288.4,28388.92,4711.43,conventional,2017,SouthCarolina +20,2017-08-13,1.36,370979.09,154159.71,86025.66,2120.0,128673.72,93633.15,28100.57,6940.0,conventional,2017,SouthCarolina +21,2017-08-06,1.37,336237.92,128394.5,85339.68,1997.32,120506.42,89592.68,25937.07,4976.67,conventional,2017,SouthCarolina +22,2017-07-30,1.3,359544.03,168379.33,84509.29,1851.95,104803.46,75567.92,26297.82,2937.72,conventional,2017,SouthCarolina +23,2017-07-23,1.3,382711.86,183065.16,83184.47,1969.67,114492.56,86140.03,22272.11,6080.42,conventional,2017,SouthCarolina +24,2017-07-16,1.28,385644.8,176984.94,84547.08,2236.83,121875.95,91437.77,25312.59,5125.59,conventional,2017,SouthCarolina +25,2017-07-09,1.24,380517.93,171133.29,76166.58,2472.14,130745.92,94038.84,26927.08,9780.0,conventional,2017,SouthCarolina +26,2017-07-02,1.28,413263.16,179977.91,86915.73,2600.47,143769.05,94511.45,38696.11,10561.49,conventional,2017,SouthCarolina +27,2017-06-25,1.17,406520.66,190192.84,75673.79,2127.54,138526.49,87432.27,43444.22,7650.0,conventional,2017,SouthCarolina +28,2017-06-18,1.3,356093.51,159850.81,74051.6,2187.84,120003.26,81818.12,23600.14,14585.0,conventional,2017,SouthCarolina +29,2017-06-11,1.3,404634.09,189016.02,79763.1,2567.22,133287.75,87105.14,34472.61,11710.0,conventional,2017,SouthCarolina +30,2017-06-04,1.33,423186.06,213834.25,76898.32,2442.91,130010.58,86890.34,38375.24,4745.0,conventional,2017,SouthCarolina +31,2017-05-28,1.41,393303.27,181618.56,78082.98,2859.86,130741.87,102225.45,23365.63,5150.79,conventional,2017,SouthCarolina +32,2017-05-21,1.38,363333.32,163512.19,72321.42,2900.6,124599.11,91713.47,27830.64,5055.0,conventional,2017,SouthCarolina +33,2017-05-14,1.34,367894.37,163820.54,65765.91,2816.91,135491.01,103782.12,27148.13,4560.76,conventional,2017,SouthCarolina +34,2017-05-07,1.19,531412.4,256780.48,92639.78,3231.21,178760.93,120193.78,54591.21,3975.94,conventional,2017,SouthCarolina +35,2017-04-30,1.34,429088.02,208521.12,87676.66,2203.03,130687.21,88444.19,38293.89,3949.13,conventional,2017,SouthCarolina +36,2017-04-23,1.36,374054.54,161218.94,72371.77,2161.37,138302.46,109288.68,27426.79,1586.99,conventional,2017,SouthCarolina +37,2017-04-16,1.37,368844.67,161105.36,75615.93,2256.9,129866.48,92236.52,34384.96,3245.0,conventional,2017,SouthCarolina +38,2017-04-09,1.38,345869.64,153802.62,72253.48,2212.93,117600.61,82167.37,31317.19,4116.05,conventional,2017,SouthCarolina +39,2017-04-02,1.38,366510.61,141146.65,73888.66,2180.22,149295.08,122294.03,24716.05,2285.0,conventional,2017,SouthCarolina +40,2017-03-26,1.41,343469.43,146122.86,75527.35,2188.58,119630.64,91327.88,26397.76,1905.0,conventional,2017,SouthCarolina +41,2017-03-19,1.37,332804.42,128918.82,76830.72,2452.6,124602.28,89623.26,33294.02,1685.0,conventional,2017,SouthCarolina +42,2017-03-12,1.4,325834.91,135698.2,76260.31,2778.64,111097.76,79135.68,31292.08,670.0,conventional,2017,SouthCarolina +43,2017-03-05,1.31,326142.89,137486.85,76876.57,4078.4,107701.07,78628.74,29047.33,25.0,conventional,2017,SouthCarolina +44,2017-02-26,1.06,404208.68,189463.14,97078.18,4420.29,113247.07,91626.66,20450.41,1170.0,conventional,2017,SouthCarolina +45,2017-02-19,1.14,331446.6,150107.1,76620.67,2862.33,101856.5,78346.11,22320.39,1190.0,conventional,2017,SouthCarolina +46,2017-02-12,0.99,395220.24,190775.53,83866.61,2382.35,118195.75,92656.18,25474.57,65.0,conventional,2017,SouthCarolina +47,2017-02-05,0.81,706098.15,365828.76,182799.5,6024.17,151445.72,92596.35,58746.59,102.78,conventional,2017,SouthCarolina +48,2017-01-29,1.11,395411.39,174671.54,85091.43,3175.63,132472.79,91776.59,40642.03,54.17,conventional,2017,SouthCarolina +49,2017-01-22,1.0,451738.89,159931.18,121922.88,6643.91,163240.92,98463.17,64777.75,0.0,conventional,2017,SouthCarolina +50,2017-01-15,1.14,369916.29,167680.27,86901.86,2850.92,112483.24,70024.71,42458.53,0.0,conventional,2017,SouthCarolina +51,2017-01-08,1.15,352660.2,154597.55,75966.86,3127.12,118968.67,83272.89,35695.78,0.0,conventional,2017,SouthCarolina +52,2017-01-01,1.0,402162.87,166822.96,105262.07,5223.2,124854.64,57344.89,67509.75,0.0,conventional,2017,SouthCarolina +0,2017-12-31,0.85,6150665.32,2819105.97,1288524.97,22204.28,2020830.1,1456270.21,563984.42,575.47,conventional,2017,SouthCentral +1,2017-12-24,1.0,5140296.84,2608912.51,875474.02,19843.89,1636066.42,1229407.46,406416.57,242.39,conventional,2017,SouthCentral +2,2017-12-17,0.9,4951756.35,2460827.88,956506.58,17333.23,1517088.66,1167760.58,349011.06,317.02,conventional,2017,SouthCentral +3,2017-12-10,0.8,6113749.37,2897662.05,1093963.73,25059.21,2097064.38,1732882.47,363630.88,551.03,conventional,2017,SouthCentral +4,2017-12-03,0.84,6037641.0,2801657.0,1222335.0,27629.0,1986021.0,1596144.0,389649.0,228.0,conventional,2017,SouthCentral +5,2017-11-26,0.96,4362824.0,2377638.0,713646.0,14770.0,1256771.0,870931.0,385677.0,162.0,conventional,2017,SouthCentral +6,2017-11-19,0.97,4864335.0,2719309.0,742890.0,17529.0,1384607.0,973474.0,409491.0,1642.0,conventional,2017,SouthCentral +7,2017-11-12,0.95,5627547.0,2730492.0,1207080.0,27925.0,1662050.0,1146657.0,514869.0,525.0,conventional,2017,SouthCentral +8,2017-11-05,0.99,5798077.88,2770715.69,1154114.11,24089.18,1849158.9,1127480.34,716953.08,4725.48,conventional,2017,SouthCentral +9,2017-10-29,1.1,5167419.42,2567803.45,938018.17,12452.51,1649145.29,1013799.29,634225.69,1120.31,conventional,2017,SouthCentral +10,2017-10-22,1.15,4919102.69,2541201.97,796819.87,11499.33,1569581.52,1211443.25,357979.25,159.02,conventional,2017,SouthCentral +11,2017-10-15,1.3,4553170.77,2390226.58,797892.99,8836.79,1356214.41,976323.02,379688.5,202.89,conventional,2017,SouthCentral +12,2017-10-08,1.32,4735152.21,2484149.44,842457.24,6332.78,1402212.75,1011503.13,390140.39,569.23,conventional,2017,SouthCentral +13,2017-10-01,1.34,4488892.01,2373892.08,775342.08,7963.75,1331694.1,952665.5,378804.94,223.66,conventional,2017,SouthCentral +14,2017-09-24,1.33,4405343.75,2350943.03,750401.85,6455.71,1297543.16,965684.93,331517.39,340.84,conventional,2017,SouthCentral +15,2017-09-17,1.27,4685091.86,2583311.02,836032.28,7144.13,1258604.43,897888.6,358252.41,2463.42,conventional,2017,SouthCentral +16,2017-09-10,1.22,4926555.69,2756276.03,771799.51,12730.06,1385750.09,1011681.68,365700.82,8367.59,conventional,2017,SouthCentral +17,2017-09-03,1.24,4677784.49,2610726.8,799483.48,11103.09,1256471.12,925948.98,319844.34,10677.8,conventional,2017,SouthCentral +18,2017-08-27,1.17,5303260.4,2926795.58,860801.06,11576.49,1504087.27,1125461.97,367930.21,10695.09,conventional,2017,SouthCentral +19,2017-08-20,1.06,5412866.59,2733435.14,1013579.35,9937.85,1655914.25,962288.29,683111.22,10514.74,conventional,2017,SouthCentral +20,2017-08-13,1.05,6058478.32,2794533.52,1399558.46,22466.02,1841920.32,940654.23,893304.81,7961.28,conventional,2017,SouthCentral +21,2017-08-06,1.03,5882728.51,3063985.05,1282288.49,18165.44,1518289.53,1037654.15,457240.12,23395.26,conventional,2017,SouthCentral +22,2017-07-30,1.06,5548390.24,2922902.49,1156832.81,15183.9,1453471.04,1010568.54,424211.45,18691.05,conventional,2017,SouthCentral +23,2017-07-23,1.05,5550586.51,2881726.68,1185462.48,16702.54,1466694.81,1013213.46,427812.72,25668.63,conventional,2017,SouthCentral +24,2017-07-16,1.02,5780893.13,2730101.66,1369045.96,19641.56,1662103.95,1083666.18,557527.48,20910.29,conventional,2017,SouthCentral +25,2017-07-09,0.86,7194967.49,3208920.88,1183761.98,19559.17,2782725.46,2120458.99,656778.35,5488.12,conventional,2017,SouthCentral +26,2017-07-02,0.92,6675892.1,3159081.46,1239433.34,25461.72,2251915.58,1790494.11,457729.03,3692.44,conventional,2017,SouthCentral +27,2017-06-25,0.92,6466429.64,3274928.07,1121983.76,16796.23,2052721.58,1518938.69,530616.8,3166.09,conventional,2017,SouthCentral +28,2017-06-18,0.89,7417264.07,3419006.86,1543629.57,28126.85,2426500.79,1501763.36,923549.91,1187.52,conventional,2017,SouthCentral +29,2017-06-11,0.93,6526488.94,3540683.7,1042887.71,21574.2,1921343.33,1496503.74,401617.34,23222.25,conventional,2017,SouthCentral +30,2017-06-04,0.93,6585882.05,3465782.2,1015653.58,20437.22,2084009.05,1636585.91,413725.96,33697.18,conventional,2017,SouthCentral +31,2017-05-28,0.96,6549043.84,3495036.65,1267551.42,27015.73,1759440.04,1322192.06,405650.84,31597.14,conventional,2017,SouthCentral +32,2017-05-21,0.94,6084796.99,3262539.84,1043850.3,20820.97,1757585.88,1269469.83,460424.96,27691.09,conventional,2017,SouthCentral +33,2017-05-14,0.92,6551804.0,3340446.93,1114123.07,22104.73,2075129.27,1494262.46,545591.74,35275.07,conventional,2017,SouthCentral +34,2017-05-07,0.85,7922898.43,4093101.6,1453770.19,18738.51,2357288.13,1526967.7,810444.58,19875.85,conventional,2017,SouthCentral +35,2017-04-30,0.86,7483931.18,3221294.56,1692107.7,38275.59,2532253.33,1460631.32,1049435.14,22186.87,conventional,2017,SouthCentral +36,2017-04-23,0.83,7523061.26,3396320.97,1500545.51,27770.0,2598424.78,1675300.95,895408.78,27715.05,conventional,2017,SouthCentral +37,2017-04-16,0.88,6949890.75,3783304.41,1212653.06,23850.86,1930082.42,1783244.66,127878.28,18959.48,conventional,2017,SouthCentral +38,2017-04-09,0.92,6183823.03,3415501.85,1234042.3,39098.99,1495179.89,1318526.89,152730.49,23922.51,conventional,2017,SouthCentral +39,2017-04-02,0.84,6777539.0,3916659.1,1012267.12,24556.67,1824056.11,1494823.82,309395.83,19836.46,conventional,2017,SouthCentral +40,2017-03-26,0.93,5805541.99,3391002.54,978691.09,27689.37,1408158.99,1322350.27,66091.65,19717.07,conventional,2017,SouthCentral +41,2017-03-19,0.94,5498742.96,3186678.9,1033840.6,65215.62,1213007.84,1165809.84,31725.57,15472.43,conventional,2017,SouthCentral +42,2017-03-12,0.93,5316530.73,3199639.83,870253.1,138376.81,1108260.99,1040138.95,52798.3,15323.74,conventional,2017,SouthCentral +43,2017-03-05,0.87,5637789.74,3275101.47,959531.9,154394.14,1248762.23,1200644.45,40174.35,7943.43,conventional,2017,SouthCentral +44,2017-02-26,0.7,6808805.4,4318255.15,822773.31,142658.92,1525118.02,1359306.0,146644.88,19167.14,conventional,2017,SouthCentral +45,2017-02-19,0.75,5953222.87,2869772.48,1114706.47,207634.25,1761109.67,1408219.68,330575.32,22314.67,conventional,2017,SouthCentral +46,2017-02-12,0.68,7043078.06,3640314.18,1098974.88,215201.61,2088587.39,1790736.15,276301.68,21549.56,conventional,2017,SouthCentral +47,2017-02-05,0.62,9421609.22,5160896.68,1821670.82,430538.46,2008503.26,1652465.83,346207.63,9829.8,conventional,2017,SouthCentral +48,2017-01-29,0.76,6449698.15,4041490.37,922431.65,173874.57,1311901.56,996674.85,306892.76,8333.95,conventional,2017,SouthCentral +49,2017-01-22,0.74,6207638.5,4020198.09,957479.68,23685.51,1206275.22,1066264.87,128528.14,11482.21,conventional,2017,SouthCentral +50,2017-01-15,0.68,7103726.14,4335593.06,1264050.32,18959.07,1485123.69,1360058.7,110035.17,15029.82,conventional,2017,SouthCentral +51,2017-01-08,0.74,6347964.79,3529761.56,1305030.08,18206.06,1494967.09,1296031.4,183062.26,15873.43,conventional,2017,SouthCentral +52,2017-01-01,0.64,6687273.64,3587283.29,1719720.01,27548.73,1352721.61,1105953.16,230434.03,16334.42,conventional,2017,SouthCentral +0,2017-12-31,1.08,4651107.62,2795828.19,448136.41,12621.43,1394521.59,807942.12,571443.81,15135.66,conventional,2017,Southeast +1,2017-12-24,1.31,3077843.09,1732070.28,277003.33,14230.23,1054539.25,708818.41,322895.28,22825.56,conventional,2017,Southeast +2,2017-12-17,1.01,3751927.63,2208030.81,341376.69,15056.86,1187463.27,728007.45,442491.14,16964.68,conventional,2017,Southeast +3,2017-12-10,1.02,4091257.98,2353835.77,373395.29,17836.02,1346190.9,817967.19,511116.18,17107.53,conventional,2017,Southeast +4,2017-12-03,1.21,3452207.0,2032331.0,328178.0,21381.0,1070317.0,737179.0,318086.0,15051.0,conventional,2017,Southeast +5,2017-11-26,1.32,2743409.0,1577493.0,251975.0,8058.0,905883.0,606486.0,282761.0,16635.0,conventional,2017,Southeast +6,2017-11-19,1.2,3446284.0,1997537.0,326446.0,12078.0,1110222.0,674139.0,423999.0,12084.0,conventional,2017,Southeast +7,2017-11-12,1.28,3422495.0,1947873.0,312578.0,12862.0,1149182.0,818630.0,314965.0,15586.0,conventional,2017,Southeast +8,2017-11-05,1.34,3194059.94,1801086.94,298601.36,10159.03,1084212.61,767422.68,305652.13,11137.8,conventional,2017,Southeast +9,2017-10-29,1.23,3856643.75,2294505.56,395328.65,9660.73,1157148.81,722262.44,425157.58,9728.79,conventional,2017,Southeast +10,2017-10-22,1.54,3133906.68,1888095.12,344382.02,8075.73,893353.81,544946.37,348391.24,16.2,conventional,2017,Southeast +11,2017-10-15,1.71,2896732.11,1662424.55,323402.58,3543.74,907361.24,595753.34,311512.94,94.96,conventional,2017,Southeast +12,2017-10-08,1.72,3072184.68,1834789.3,292733.11,2599.67,942062.6,621238.23,320687.97,136.4,conventional,2017,Southeast +13,2017-10-01,1.82,2755546.6,1532669.78,403538.05,3143.68,816195.09,534947.07,281145.63,102.39,conventional,2017,Southeast +14,2017-09-24,1.72,2761067.55,1656715.66,380146.9,2733.11,721471.88,441533.7,279631.41,306.77,conventional,2017,Southeast +15,2017-09-17,1.66,2816590.79,1623450.57,438322.06,2874.78,751943.38,367156.52,382447.49,2339.37,conventional,2017,Southeast +16,2017-09-10,1.61,2707005.49,1511637.28,383131.2,4113.88,808123.13,537849.67,238131.35,32142.11,conventional,2017,Southeast +17,2017-09-03,1.7,3049931.5,1745317.16,443460.97,4599.91,856553.46,545847.71,277105.95,33599.8,conventional,2017,Southeast +18,2017-08-27,1.54,3005445.53,1702152.2,429629.31,3466.82,870197.2,513450.97,295204.62,61541.61,conventional,2017,Southeast +19,2017-08-20,1.52,3113164.81,1729866.38,444533.12,3377.63,935387.68,544185.62,352850.68,38351.38,conventional,2017,Southeast +20,2017-08-13,1.42,3654633.49,1989685.69,556375.02,3729.01,1104843.77,607668.91,425033.0,72141.86,conventional,2017,Southeast +21,2017-08-06,1.41,3282864.06,1799095.92,507685.74,3572.73,972509.67,569390.19,337374.62,65744.86,conventional,2017,Southeast +22,2017-07-30,1.38,3266646.69,1874296.82,498800.91,3558.7,889990.26,525044.69,321214.36,43731.21,conventional,2017,Southeast +23,2017-07-23,1.36,3580363.85,2109070.98,533696.3,3991.94,933604.63,523093.86,346162.09,64348.68,conventional,2017,Southeast +24,2017-07-16,1.36,3516276.38,2006796.85,518858.64,4070.44,986550.45,596733.72,324532.55,65284.18,conventional,2017,Southeast +25,2017-07-09,1.32,3491991.63,1930025.72,485914.34,4529.63,1071521.94,636669.38,342065.06,92787.5,conventional,2017,Southeast +26,2017-07-02,1.33,3979264.02,2219034.51,549006.94,4778.63,1206443.94,676830.5,437058.12,92555.32,conventional,2017,Southeast +27,2017-06-25,1.28,3666944.13,2101935.63,442822.73,3465.07,1118720.7,612556.65,434645.54,71518.51,conventional,2017,Southeast +28,2017-06-18,1.35,3404457.77,1995540.97,416295.25,3535.91,989085.64,546899.52,350819.45,91366.67,conventional,2017,Southeast +29,2017-06-11,1.33,4151016.69,2451659.18,483092.03,4402.35,1211863.13,691324.55,449983.89,70554.69,conventional,2017,Southeast +30,2017-06-04,1.34,4237221.91,2520206.31,473205.61,4226.6,1239583.39,719958.99,474483.44,45140.96,conventional,2017,Southeast +31,2017-05-28,1.38,3916908.69,2252109.64,450910.1,5062.46,1208826.49,789659.56,371172.96,47993.97,conventional,2017,Southeast +32,2017-05-21,1.38,3609377.95,2047913.44,423449.51,7101.98,1130913.02,714273.47,375844.67,40794.88,conventional,2017,Southeast +33,2017-05-14,1.36,3560841.76,1996527.25,387915.89,8542.18,1167856.44,781111.52,343498.72,43246.2,conventional,2017,Southeast +34,2017-05-07,1.14,5391717.88,3160480.49,682416.13,6155.92,1542665.34,866807.14,644104.72,31753.48,conventional,2017,Southeast +35,2017-04-30,1.24,4698266.8,2790480.21,656888.72,4042.59,1246855.28,695716.33,513525.29,37613.66,conventional,2017,Southeast +36,2017-04-23,1.39,3503236.08,1956787.44,445304.19,3585.35,1097559.1,726576.46,359238.87,11743.77,conventional,2017,Southeast +37,2017-04-16,1.37,3418235.57,1841481.88,429995.14,3755.98,1143002.57,740336.5,378277.12,24388.95,conventional,2017,Southeast +38,2017-04-09,1.41,3257901.93,1813137.91,432542.65,4014.69,1008206.68,620397.57,359415.3,28393.81,conventional,2017,Southeast +39,2017-04-02,1.49,3289069.45,1771188.27,432476.69,3724.73,1081679.76,720880.75,345797.07,15001.94,conventional,2017,Southeast +40,2017-03-26,1.52,3149349.04,1691953.94,444119.19,4008.12,1009267.79,619190.02,366946.66,23131.11,conventional,2017,Southeast +41,2017-03-19,1.45,3168368.37,1643034.48,443255.67,4278.48,1077799.74,685021.63,374167.84,18610.27,conventional,2017,Southeast +42,2017-03-12,1.45,3130784.67,1661752.06,452054.37,4318.46,1012659.78,629441.9,373081.49,10136.39,conventional,2017,Southeast +43,2017-03-05,1.39,3078856.36,1616582.26,446313.48,6013.44,1009947.18,636964.49,368181.02,4801.67,conventional,2017,Southeast +44,2017-02-26,1.09,3780081.91,2009302.02,536981.39,6635.9,1227162.6,876737.08,337642.19,12783.33,conventional,2017,Southeast +45,2017-02-19,1.14,3178563.0,1648815.38,483659.79,4681.1,1041406.73,695382.17,330922.06,15102.5,conventional,2017,Southeast +46,2017-02-12,0.91,4584245.6,2444616.0,806769.91,5419.77,1327439.92,800309.01,522265.71,4865.2,conventional,2017,Southeast +47,2017-02-05,0.81,7545938.97,3878267.73,1537592.22,10563.99,2119515.03,1194582.55,919049.98,5882.5,conventional,2017,Southeast +48,2017-01-29,1.12,4143712.22,1855817.07,719826.98,6139.7,1561928.47,947470.76,611716.88,2740.83,conventional,2017,Southeast +49,2017-01-22,0.97,4992701.64,1897606.32,1188251.05,11258.47,1895585.8,834407.94,1059745.36,1432.5,conventional,2017,Southeast +50,2017-01-15,1.17,3843139.76,1686737.9,724373.09,5637.4,1426391.37,784077.42,641123.95,1190.0,conventional,2017,Southeast +51,2017-01-08,1.17,3512131.09,1510770.18,635042.26,5892.48,1360426.17,818150.8,540435.37,1840.0,conventional,2017,Southeast +52,2017-01-01,0.94,4655896.95,1826477.14,1085898.73,9296.67,1734224.41,731587.7,1000752.82,1883.89,conventional,2017,Southeast +0,2017-12-31,0.94,98086.34,30325.05,36245.2,501.63,31014.46,24405.56,6544.94,63.96,conventional,2017,Spokane +1,2017-12-24,1.32,66895.5,17243.77,20939.98,534.99,28176.76,20309.07,7796.19,71.5,conventional,2017,Spokane +2,2017-12-17,1.34,61276.15,16166.42,17749.69,328.0,27032.04,20076.59,6919.35,36.1,conventional,2017,Spokane +3,2017-12-10,1.2,74626.15,20460.76,20182.48,397.01,33585.9,26559.33,6994.31,32.26,conventional,2017,Spokane +4,2017-12-03,1.16,80464.0,23473.0,17884.0,378.0,38729.0,33362.0,5310.0,57.0,conventional,2017,Spokane +5,2017-11-26,1.49,48850.0,12988.0,15594.0,252.0,20016.0,14612.0,5404.0,0.0,conventional,2017,Spokane +6,2017-11-19,1.3,64230.0,17283.0,16712.0,410.0,29825.0,17010.0,12808.0,7.0,conventional,2017,Spokane +7,2017-11-12,1.17,86928.0,23286.0,19991.0,458.0,43193.0,37987.0,5076.0,130.0,conventional,2017,Spokane +8,2017-11-05,1.32,78530.28,22345.57,19106.3,286.43,36791.98,31681.11,5078.04,32.83,conventional,2017,Spokane +9,2017-10-29,1.41,70870.34,20428.73,21686.72,276.93,28477.96,23106.36,5310.69,60.91,conventional,2017,Spokane +10,2017-10-22,1.31,77451.36,21170.41,32061.06,223.31,23996.58,17308.71,6657.31,30.56,conventional,2017,Spokane +11,2017-10-15,1.6,63283.44,15839.0,26443.4,98.77,20902.27,13661.48,7156.18,84.61,conventional,2017,Spokane +12,2017-10-08,1.82,56315.89,13845.14,22168.16,38.94,20263.65,13676.09,6543.06,44.5,conventional,2017,Spokane +13,2017-10-01,1.83,55420.33,13935.32,20908.42,26.77,20549.82,13317.33,7186.61,45.88,conventional,2017,Spokane +14,2017-09-24,1.84,54348.48,13393.92,20303.31,124.02,20527.23,13723.75,6762.47,41.01,conventional,2017,Spokane +15,2017-09-17,1.66,65219.18,16477.84,28242.32,34.47,20464.55,12775.39,7598.66,90.5,conventional,2017,Spokane +16,2017-09-10,1.89,57493.94,15581.38,21528.72,94.37,20289.47,11533.0,8688.6,67.87,conventional,2017,Spokane +17,2017-09-03,1.58,75840.73,20808.02,22824.26,102.75,32105.7,24386.21,7714.95,4.54,conventional,2017,Spokane +18,2017-08-27,1.42,86969.36,24242.56,22050.47,71.96,40604.37,34697.5,5902.35,4.52,conventional,2017,Spokane +19,2017-08-20,1.65,72084.39,19604.56,23704.67,189.66,28585.5,19888.67,8696.83,0.0,conventional,2017,Spokane +20,2017-08-13,1.67,68140.75,16296.64,26112.53,100.27,25631.31,16335.62,9284.42,11.27,conventional,2017,Spokane +21,2017-08-06,1.55,77832.62,20501.08,29823.74,121.9,27385.9,17489.63,9861.3,34.97,conventional,2017,Spokane +22,2017-07-30,1.56,75067.88,18393.36,29605.74,88.93,26979.85,16550.54,10298.79,130.52,conventional,2017,Spokane +23,2017-07-23,1.44,77668.0,17050.89,35913.91,88.54,24614.66,13712.78,10899.63,2.25,conventional,2017,Spokane +24,2017-07-16,1.35,86112.54,26467.32,25825.62,241.55,33578.05,23087.63,10239.46,250.96,conventional,2017,Spokane +25,2017-07-09,0.97,128455.05,26682.9,32986.26,119.07,68666.82,68576.38,46.14,44.3,conventional,2017,Spokane +26,2017-07-02,1.2,102306.61,19186.14,34732.14,150.14,48238.19,48093.04,35.92,109.23,conventional,2017,Spokane +27,2017-06-25,1.12,103925.6,22126.81,27886.74,69.45,53842.6,53465.11,377.49,0.0,conventional,2017,Spokane +28,2017-06-18,1.11,103313.47,21695.01,28464.58,84.08,53069.8,53053.14,8.89,7.77,conventional,2017,Spokane +29,2017-06-11,1.16,94583.08,16949.7,27300.24,62.41,50270.73,50207.99,13.63,49.11,conventional,2017,Spokane +30,2017-06-04,1.16,97756.24,18046.3,29061.02,52.82,50596.1,50585.78,0.0,10.32,conventional,2017,Spokane +31,2017-05-28,1.15,102536.61,20265.31,31394.11,156.08,50721.11,50674.3,33.81,13.0,conventional,2017,Spokane +32,2017-05-21,1.14,92273.1,20886.24,26056.94,196.5,45133.42,44915.11,143.04,75.27,conventional,2017,Spokane +33,2017-05-14,1.08,108411.15,23815.87,31405.86,68.52,53120.9,53015.54,18.68,86.68,conventional,2017,Spokane +34,2017-05-07,1.0,140992.26,35074.32,44285.32,68.98,61563.64,57195.98,4035.76,331.9,conventional,2017,Spokane +35,2017-04-30,1.02,114753.82,22231.98,28664.66,64.58,63792.6,63101.53,688.44,2.63,conventional,2017,Spokane +36,2017-04-23,1.02,100154.13,21016.93,31935.14,63.35,47138.71,47076.77,6.19,55.75,conventional,2017,Spokane +37,2017-04-16,1.09,101877.38,22310.41,24057.81,131.98,55377.18,55362.83,6.28,8.07,conventional,2017,Spokane +38,2017-04-09,0.93,126295.09,31685.51,42399.5,28.47,52181.61,51852.08,316.06,13.47,conventional,2017,Spokane +39,2017-04-02,1.12,95055.86,20769.46,26687.61,12.45,47586.34,47511.05,43.02,32.27,conventional,2017,Spokane +40,2017-03-26,1.09,93209.14,20638.9,24121.86,21.01,48427.37,48412.48,9.53,5.36,conventional,2017,Spokane +41,2017-03-19,0.92,110951.46,22275.29,24389.97,64.85,64221.35,63117.36,1074.7,29.29,conventional,2017,Spokane +42,2017-03-12,0.83,132799.77,23152.23,30302.15,51.55,79293.84,74945.53,4149.17,199.14,conventional,2017,Spokane +43,2017-03-05,0.85,128940.32,22154.4,31330.88,54.48,75400.56,43180.15,32199.31,21.1,conventional,2017,Spokane +44,2017-02-26,0.75,122591.72,19681.43,26454.78,531.27,75924.24,58196.05,17637.97,90.22,conventional,2017,Spokane +45,2017-02-19,0.85,101482.65,19026.46,19163.64,314.98,62977.57,53957.47,8989.8,30.3,conventional,2017,Spokane +46,2017-02-12,0.77,110492.2,21706.17,27884.97,42.58,60858.48,44301.52,16496.0,60.96,conventional,2017,Spokane +47,2017-02-05,0.76,165785.94,30442.86,47312.59,527.32,87503.17,63590.88,23843.58,68.71,conventional,2017,Spokane +48,2017-01-29,0.84,112192.95,20867.72,25238.48,27.25,66059.5,56084.13,9927.04,48.33,conventional,2017,Spokane +49,2017-01-22,0.88,113430.5,19006.07,38753.45,153.69,55517.29,49749.97,5680.78,86.54,conventional,2017,Spokane +50,2017-01-15,0.93,107376.76,15011.06,31840.57,438.94,60086.19,58001.9,2063.92,20.37,conventional,2017,Spokane +51,2017-01-08,0.78,144931.3,16655.27,59371.33,68.06,68836.64,61628.87,7043.88,163.89,conventional,2017,Spokane +52,2017-01-01,0.87,115041.61,11707.17,43700.05,511.0,59123.39,58631.06,415.97,76.36,conventional,2017,Spokane +0,2017-12-31,1.14,192170.15,96909.29,6606.57,263.96,88390.33,67703.51,20686.82,0.0,conventional,2017,StLouis +1,2017-12-24,1.38,149940.62,71923.53,12725.42,321.56,64970.11,52479.82,12490.29,0.0,conventional,2017,StLouis +2,2017-12-17,1.17,154325.75,70752.06,5892.57,273.79,77407.33,59608.2,17799.13,0.0,conventional,2017,StLouis +3,2017-12-10,1.18,156410.57,59840.03,6577.15,153.25,89840.14,61719.51,28120.63,0.0,conventional,2017,StLouis +4,2017-12-03,1.37,132165.0,61716.0,6514.0,320.0,63616.0,41245.0,22371.0,0.0,conventional,2017,StLouis +5,2017-11-26,1.31,126244.0,59506.0,10345.0,547.0,55845.0,37032.0,18813.0,0.0,conventional,2017,StLouis +6,2017-11-19,1.23,152206.0,70695.0,6761.0,374.0,74375.0,58388.0,15987.0,0.0,conventional,2017,StLouis +7,2017-11-12,1.3,169251.0,89557.0,7643.0,136.0,71915.0,51019.0,20896.0,0.0,conventional,2017,StLouis +8,2017-11-05,1.55,125685.45,58145.15,16129.77,588.91,50821.62,44600.41,6221.21,0.0,conventional,2017,StLouis +9,2017-10-29,1.34,134388.82,83829.38,11655.32,117.88,38786.24,34224.0,4562.24,0.0,conventional,2017,StLouis +10,2017-10-22,1.61,120265.74,72104.67,8866.99,81.1,39212.98,34007.52,5199.54,5.92,conventional,2017,StLouis +11,2017-10-15,1.75,125434.52,56251.73,17904.77,50.25,51227.77,41063.69,10136.37,27.71,conventional,2017,StLouis +12,2017-10-08,1.83,127591.09,50280.03,6489.27,77.53,70744.26,51510.04,19224.32,9.9,conventional,2017,StLouis +13,2017-10-01,1.83,129576.56,53230.11,6365.22,139.39,69841.84,48257.51,21570.51,13.82,conventional,2017,StLouis +14,2017-09-24,1.83,144890.83,55004.63,7796.72,126.19,81963.29,58921.39,23031.97,9.93,conventional,2017,StLouis +15,2017-09-17,1.72,122734.74,52470.0,9190.83,74.85,60999.06,46655.44,14303.89,39.73,conventional,2017,StLouis +16,2017-09-10,1.47,197546.49,109797.39,15410.99,55.81,72282.3,61599.32,10532.93,150.05,conventional,2017,StLouis +17,2017-09-03,1.69,155772.26,71468.66,15124.65,147.23,69031.72,53354.85,11043.68,4633.19,conventional,2017,StLouis +18,2017-08-27,1.71,153581.11,68563.36,18506.1,214.47,66297.18,53462.64,6959.92,5874.62,conventional,2017,StLouis +19,2017-08-20,1.6,168054.68,77753.47,20659.5,233.13,69408.58,60881.95,5823.82,2702.81,conventional,2017,StLouis +20,2017-08-13,1.49,169526.52,81583.85,16239.33,251.27,71452.07,60139.12,7179.81,4133.14,conventional,2017,StLouis +21,2017-08-06,1.49,163833.23,73948.62,18312.07,174.67,71397.87,57720.94,9088.27,4588.66,conventional,2017,StLouis +22,2017-07-30,1.52,154896.27,66450.58,19148.7,157.76,69139.23,62761.15,4260.8,2117.28,conventional,2017,StLouis +23,2017-07-23,1.33,194261.62,99724.67,17159.84,192.82,77184.29,66945.66,5322.86,4915.77,conventional,2017,StLouis +24,2017-07-16,1.45,176564.58,77376.85,17792.83,217.5,81177.4,66888.6,11069.59,3219.21,conventional,2017,StLouis +25,2017-07-09,1.26,214965.37,107971.62,10695.31,123.97,96174.47,94133.65,2005.56,35.26,conventional,2017,StLouis +26,2017-07-02,1.14,192174.84,102625.76,9979.67,461.09,79108.32,78516.16,525.73,66.43,conventional,2017,StLouis +27,2017-06-25,1.31,185418.99,76172.59,13284.98,121.52,95839.9,79384.95,15959.99,494.96,conventional,2017,StLouis +28,2017-06-18,1.3,201993.63,76343.74,14887.64,140.98,110621.27,87817.63,20679.07,2124.57,conventional,2017,StLouis +29,2017-06-11,1.32,197442.71,76191.65,15824.35,224.01,105202.7,84981.22,16665.05,3556.43,conventional,2017,StLouis +30,2017-06-04,1.28,211538.7,80655.86,13450.19,895.48,116537.17,90030.72,21035.3,5471.15,conventional,2017,StLouis +31,2017-05-28,1.23,220314.55,79848.31,14664.64,490.82,125310.78,102547.24,17838.96,4924.58,conventional,2017,StLouis +32,2017-05-21,1.17,229193.81,93195.05,13886.31,178.09,121934.36,98532.73,20541.92,2859.71,conventional,2017,StLouis +33,2017-05-14,1.3,196829.3,67091.48,10233.19,147.73,119356.9,89952.04,29354.55,50.31,conventional,2017,StLouis +34,2017-05-07,1.37,214795.58,85199.26,18033.84,265.76,111296.72,78386.36,32515.65,394.71,conventional,2017,StLouis +35,2017-04-30,1.37,200743.79,118005.58,22429.27,203.47,60105.47,59450.76,191.94,462.77,conventional,2017,StLouis +36,2017-04-23,1.51,174613.45,82661.42,23248.85,252.37,68450.81,67084.51,57.89,1308.41,conventional,2017,StLouis +37,2017-04-16,1.52,144788.05,65731.57,20965.11,237.17,57854.2,55907.7,77.36,1869.14,conventional,2017,StLouis +38,2017-04-09,1.27,145196.59,77305.55,12263.89,83.21,55543.94,55522.64,21.3,0.0,conventional,2017,StLouis +39,2017-04-02,1.33,116596.47,63506.59,8377.96,75.0,44636.92,44610.25,26.67,0.0,conventional,2017,StLouis +40,2017-03-26,1.33,110960.45,46092.99,8922.44,72.24,55872.78,55422.18,383.93,66.67,conventional,2017,StLouis +41,2017-03-19,1.18,136296.62,64278.57,9737.04,94.67,62186.34,51285.5,10900.84,0.0,conventional,2017,StLouis +42,2017-03-12,1.36,102939.99,48343.63,10325.95,49.81,44220.6,43898.79,321.81,0.0,conventional,2017,StLouis +43,2017-03-05,1.38,112515.7,48508.49,8252.62,60.86,55693.73,48821.55,6872.18,0.0,conventional,2017,StLouis +44,2017-02-26,1.29,142253.42,53308.66,12854.89,123.35,75966.52,61695.35,14271.17,0.0,conventional,2017,StLouis +45,2017-02-19,1.09,144525.33,76057.35,8727.38,161.48,59579.12,52365.6,7213.52,0.0,conventional,2017,StLouis +46,2017-02-12,0.99,153045.63,60850.47,12420.08,163.12,79611.96,79283.25,98.15,230.56,conventional,2017,StLouis +47,2017-02-05,0.88,237276.96,131630.24,15888.64,160.63,89597.45,79805.09,9792.36,0.0,conventional,2017,StLouis +48,2017-01-29,1.0,192362.18,80253.19,15081.96,159.98,96867.05,63464.66,33402.39,0.0,conventional,2017,StLouis +49,2017-01-22,1.14,155424.95,63018.91,8315.4,105.28,83985.36,54350.1,29635.26,0.0,conventional,2017,StLouis +50,2017-01-15,1.11,183270.4,71169.65,10367.87,63.07,101669.81,72670.03,28999.78,0.0,conventional,2017,StLouis +51,2017-01-08,1.11,152614.52,65552.6,10274.73,133.06,76654.13,58010.46,18595.06,48.61,conventional,2017,StLouis +52,2017-01-01,1.11,144323.7,90181.75,10226.35,212.85,43702.75,39615.42,4087.33,0.0,conventional,2017,StLouis +0,2017-12-31,1.39,59077.02,2596.63,41694.13,23.2,14763.06,11544.79,3218.27,0.0,conventional,2017,Syracuse +1,2017-12-24,1.31,57784.05,2688.4,34404.86,45.22,20645.57,17602.68,3042.89,0.0,conventional,2017,Syracuse +2,2017-12-17,1.3,49219.75,2485.9,30082.89,44.91,16606.05,13821.2,2784.85,0.0,conventional,2017,Syracuse +3,2017-12-10,1.24,59965.39,2531.03,34341.79,32.29,23060.28,19843.38,3216.9,0.0,conventional,2017,Syracuse +4,2017-12-03,1.25,80838.0,2791.0,57129.0,47.0,20871.0,19354.0,1517.0,0.0,conventional,2017,Syracuse +5,2017-11-26,1.29,44800.0,2027.0,25986.0,37.0,16750.0,13893.0,2858.0,0.0,conventional,2017,Syracuse +6,2017-11-19,1.43,61126.0,3191.0,38882.0,55.0,18998.0,15009.0,3989.0,0.0,conventional,2017,Syracuse +7,2017-11-12,1.32,62300.0,4073.0,37767.0,65.0,20395.0,17129.0,3266.0,0.0,conventional,2017,Syracuse +8,2017-11-05,1.44,52028.11,3247.93,29429.38,67.38,19283.42,7444.72,11838.7,0.0,conventional,2017,Syracuse +9,2017-10-29,1.46,53621.45,4026.13,30151.64,29.82,19413.86,5103.83,14310.03,0.0,conventional,2017,Syracuse +10,2017-10-22,1.51,44004.03,9115.03,23293.35,47.27,11548.38,9164.3,2384.08,0.0,conventional,2017,Syracuse +11,2017-10-15,1.57,43715.52,9713.37,25427.16,63.06,8511.93,6112.95,2398.98,0.0,conventional,2017,Syracuse +12,2017-10-08,1.57,45452.47,8991.47,18883.83,12.52,17564.65,10518.27,7046.38,0.0,conventional,2017,Syracuse +13,2017-10-01,1.58,47034.13,8960.94,26794.59,26.53,11252.07,7107.08,4144.99,0.0,conventional,2017,Syracuse +14,2017-09-24,1.47,53868.66,4475.84,28923.06,29.25,20440.51,17095.79,3341.39,3.33,conventional,2017,Syracuse +15,2017-09-17,1.38,62352.95,3606.84,36375.29,17.24,22353.58,17869.41,4337.5,146.67,conventional,2017,Syracuse +16,2017-09-10,1.59,72483.1,2235.35,45425.83,26.6,24795.32,21065.46,2169.86,1560.0,conventional,2017,Syracuse +17,2017-09-03,1.64,59583.07,2114.45,36157.55,13.49,21297.58,18165.54,2042.04,1090.0,conventional,2017,Syracuse +18,2017-08-27,1.41,63048.42,1316.69,37148.13,13.23,24570.37,23840.35,433.35,296.67,conventional,2017,Syracuse +19,2017-08-20,1.42,60657.76,796.92,36561.0,19.35,23280.49,21641.1,392.72,1246.67,conventional,2017,Syracuse +20,2017-08-13,1.45,78489.49,995.24,49060.0,95.43,28338.82,26760.87,504.62,1073.33,conventional,2017,Syracuse +21,2017-08-06,1.4,69322.32,1279.22,41361.06,55.46,26626.58,24827.73,988.85,810.0,conventional,2017,Syracuse +22,2017-07-30,1.43,64459.46,1121.94,36769.4,36.37,26531.75,25309.08,496.01,726.66,conventional,2017,Syracuse +23,2017-07-23,1.38,68030.78,1193.19,40041.52,249.55,26546.52,24946.32,760.2,840.0,conventional,2017,Syracuse +24,2017-07-16,1.38,69590.82,1077.61,42756.31,906.91,24849.99,22863.54,766.45,1220.0,conventional,2017,Syracuse +25,2017-07-09,1.38,77529.57,1001.92,45176.42,381.6,30969.63,26802.91,1161.72,3005.0,conventional,2017,Syracuse +26,2017-07-02,1.42,71770.39,1523.49,47455.14,253.64,22538.12,19118.32,2184.8,1235.0,conventional,2017,Syracuse +27,2017-06-25,1.48,58174.88,1578.3,44074.2,113.25,12409.13,9107.87,2081.26,1220.0,conventional,2017,Syracuse +28,2017-06-18,1.54,61468.49,1407.87,43878.97,350.22,15831.43,13074.87,1366.56,1390.0,conventional,2017,Syracuse +29,2017-06-11,1.66,58542.16,1072.14,42974.8,113.4,14381.82,9561.81,2500.01,2320.0,conventional,2017,Syracuse +30,2017-06-04,1.65,64255.79,976.08,42117.66,21.91,21140.14,17366.8,2528.34,1245.0,conventional,2017,Syracuse +31,2017-05-28,1.71,87335.11,912.16,54932.84,57.2,31432.91,29067.88,1795.03,570.0,conventional,2017,Syracuse +32,2017-05-21,1.6,65540.84,954.42,39537.45,25.0,25023.97,22216.56,2684.08,123.33,conventional,2017,Syracuse +33,2017-05-14,1.66,74951.66,1032.62,43170.45,42.0,30706.59,28525.65,2180.94,0.0,conventional,2017,Syracuse +34,2017-05-07,1.63,89105.75,1032.88,52450.37,43.0,35579.5,29203.64,6375.86,0.0,conventional,2017,Syracuse +35,2017-04-30,1.36,96486.66,1552.03,59920.21,20.0,34994.42,30442.04,4552.38,0.0,conventional,2017,Syracuse +36,2017-04-23,1.5,63453.06,2063.37,36408.59,18.0,24963.1,21108.83,3854.27,0.0,conventional,2017,Syracuse +37,2017-04-16,1.6,75156.9,2160.01,40347.49,18.69,32630.71,29196.51,3434.2,0.0,conventional,2017,Syracuse +38,2017-04-09,1.61,79779.92,1222.66,46634.37,10.34,31912.55,14344.41,17568.14,0.0,conventional,2017,Syracuse +39,2017-04-02,1.6,75253.52,2542.88,40061.88,8.0,32640.76,22629.71,10011.05,0.0,conventional,2017,Syracuse +40,2017-03-26,1.37,88278.7,1578.03,56606.36,10.97,30083.34,26771.35,3311.99,0.0,conventional,2017,Syracuse +41,2017-03-19,1.59,68447.26,1084.6,40909.74,6.0,26446.92,22773.41,3673.51,0.0,conventional,2017,Syracuse +42,2017-03-12,1.53,73839.48,950.82,43531.8,9.0,29347.86,16225.96,13121.9,0.0,conventional,2017,Syracuse +43,2017-03-05,1.42,72748.04,989.63,50667.02,9.59,21081.8,20971.87,30.76,79.17,conventional,2017,Syracuse +44,2017-02-26,1.57,60421.42,1108.5,40969.38,4.3,18339.24,18169.46,8.67,161.11,conventional,2017,Syracuse +45,2017-02-19,1.71,61608.13,831.96,44732.35,6.0,16037.82,15679.21,358.61,0.0,conventional,2017,Syracuse +46,2017-02-12,1.5,67899.62,1335.04,45061.2,66.28,21437.1,20869.15,567.95,0.0,conventional,2017,Syracuse +47,2017-02-05,1.49,104027.11,1216.04,78340.67,44.0,24426.4,24392.2,34.2,0.0,conventional,2017,Syracuse +48,2017-01-29,1.36,71809.68,1270.55,44228.54,101.0,26209.59,25395.9,813.69,0.0,conventional,2017,Syracuse +49,2017-01-22,1.52,79859.72,1341.0,52570.04,16.27,25932.41,24856.47,1075.94,0.0,conventional,2017,Syracuse +50,2017-01-15,1.4,68598.22,1109.08,37401.39,21.0,30066.75,29465.36,601.39,0.0,conventional,2017,Syracuse +51,2017-01-08,1.43,67353.38,1221.37,41382.49,11.79,24737.73,24733.29,4.44,0.0,conventional,2017,Syracuse +52,2017-01-01,1.55,64284.03,853.31,47182.71,7.0,16241.01,16175.8,65.21,0.0,conventional,2017,Syracuse +0,2017-12-31,1.16,548933.38,364499.92,55831.33,610.57,127991.56,59003.18,68988.38,0.0,conventional,2017,Tampa +1,2017-12-24,1.4,335782.87,210851.28,27970.4,717.07,96244.12,62931.27,33312.85,0.0,conventional,2017,Tampa +2,2017-12-17,1.0,449048.75,288732.84,41565.28,706.31,118044.32,65991.99,52052.33,0.0,conventional,2017,Tampa +3,2017-12-10,1.02,474890.22,293951.67,45874.99,840.0,134223.56,66383.24,67840.32,0.0,conventional,2017,Tampa +4,2017-12-03,1.27,381605.0,249846.0,34029.0,805.0,96925.0,67280.0,29645.0,0.0,conventional,2017,Tampa +5,2017-11-26,1.4,295940.0,188536.0,25479.0,476.0,81450.0,57222.0,24228.0,0.0,conventional,2017,Tampa +6,2017-11-19,1.21,406797.0,251741.0,39402.0,740.0,114914.0,65591.0,49323.0,0.0,conventional,2017,Tampa +7,2017-11-12,1.35,383991.0,240719.0,33019.0,830.0,109423.0,73813.0,35609.0,0.0,conventional,2017,Tampa +8,2017-11-05,1.48,323634.05,204472.52,30501.48,696.02,87964.03,54636.63,33327.4,0.0,conventional,2017,Tampa +9,2017-10-29,1.19,479880.25,310309.77,48829.24,661.15,120080.09,69292.89,50787.2,0.0,conventional,2017,Tampa +10,2017-10-22,1.54,366454.43,235502.11,36022.98,487.62,94441.72,53966.71,40475.01,0.0,conventional,2017,Tampa +11,2017-10-15,1.71,328041.36,201650.5,30918.98,66.61,95405.27,57769.09,37636.18,0.0,conventional,2017,Tampa +12,2017-10-08,1.76,362523.96,232556.89,34336.91,51.95,95578.21,60089.49,35488.72,0.0,conventional,2017,Tampa +13,2017-10-01,1.96,298663.48,184126.8,34452.35,47.63,80036.7,52502.99,27533.71,0.0,conventional,2017,Tampa +14,2017-09-24,1.86,293617.05,196122.05,29716.98,28.49,67749.53,32356.64,35372.89,20.0,conventional,2017,Tampa +15,2017-09-17,1.76,304681.73,207920.64,40380.01,42.41,56338.67,8294.86,48037.14,6.67,conventional,2017,Tampa +16,2017-09-10,1.76,246731.78,171031.68,22401.18,701.15,52597.77,27150.11,21804.33,3643.33,conventional,2017,Tampa +17,2017-09-03,1.89,294705.99,203765.72,31318.96,89.32,59531.99,41222.46,15912.86,2396.67,conventional,2017,Tampa +18,2017-08-27,1.63,291725.75,198709.14,33927.87,98.63,58990.11,24226.46,29160.32,5603.33,conventional,2017,Tampa +19,2017-08-20,1.64,289379.57,199550.24,35017.75,84.57,54727.01,12351.0,37069.34,5306.67,conventional,2017,Tampa +20,2017-08-13,1.49,367628.08,241771.3,49334.31,107.12,76415.35,14979.73,53594.51,7841.11,conventional,2017,Tampa +21,2017-08-06,1.46,312638.58,207551.11,40584.94,88.0,64414.53,26777.09,32206.33,5431.11,conventional,2017,Tampa +22,2017-07-30,1.44,317250.55,212489.84,38534.38,93.74,66132.59,27042.63,34834.4,4255.56,conventional,2017,Tampa +23,2017-07-23,1.42,349228.39,238382.27,42528.26,135.9,68181.96,18132.57,43928.28,6121.11,conventional,2017,Tampa +24,2017-07-16,1.5,309815.95,209888.73,40717.65,137.3,59072.27,16459.16,36103.11,6510.0,conventional,2017,Tampa +25,2017-07-09,1.45,323653.24,211134.84,42947.5,137.48,69433.42,21337.25,37338.39,10757.78,conventional,2017,Tampa +26,2017-07-02,1.45,407584.72,258323.53,61821.63,235.54,87204.02,23812.96,55106.06,8285.0,conventional,2017,Tampa +27,2017-06-25,1.39,357813.41,236685.0,45798.6,58.71,75271.1,31292.67,38658.43,5320.0,conventional,2017,Tampa +28,2017-06-18,1.43,336746.96,225053.54,42017.04,62.47,69613.91,24077.65,38791.26,6745.0,conventional,2017,Tampa +29,2017-06-11,1.42,410602.09,258974.89,51596.53,84.47,99946.2,44926.8,49924.4,5095.0,conventional,2017,Tampa +30,2017-06-04,1.43,418788.68,262533.92,53444.67,15.0,102795.09,49481.16,51963.93,1350.0,conventional,2017,Tampa +31,2017-05-28,1.41,418872.37,261273.98,50673.15,70.52,106854.72,64058.16,42796.56,0.0,conventional,2017,Tampa +32,2017-05-21,1.44,373821.74,224341.97,46054.85,33.0,103391.92,64869.78,38515.2,6.94,conventional,2017,Tampa +33,2017-05-14,1.43,342985.7,215699.35,42141.19,60.98,85084.18,59447.45,25620.06,16.67,conventional,2017,Tampa +34,2017-05-07,1.15,582405.72,366742.0,90035.15,80.37,125548.2,71538.85,54009.35,0.0,conventional,2017,Tampa +35,2017-04-30,1.25,534175.65,339907.64,84557.74,49.7,109660.57,54629.6,55030.97,0.0,conventional,2017,Tampa +36,2017-04-23,1.46,358385.91,224054.93,51111.32,15.18,83204.48,56892.19,26297.01,15.28,conventional,2017,Tampa +37,2017-04-16,1.48,335494.24,199036.55,48021.06,28.0,88408.63,51870.49,36538.14,0.0,conventional,2017,Tampa +38,2017-04-09,1.5,327808.93,197024.0,48831.23,64.88,81888.82,47099.1,34786.39,3.33,conventional,2017,Tampa +39,2017-04-02,1.63,321691.27,191494.22,49716.19,58.4,80422.46,42505.11,37917.35,0.0,conventional,2017,Tampa +40,2017-03-26,1.67,308197.46,175398.52,49480.72,45.16,83273.06,44188.95,39025.78,58.33,conventional,2017,Tampa +41,2017-03-19,1.58,312270.07,174757.38,47825.6,67.14,89619.95,56385.93,33211.8,22.22,conventional,2017,Tampa +42,2017-03-12,1.57,310151.12,170948.09,50945.22,60.0,88197.81,52520.07,35677.74,0.0,conventional,2017,Tampa +43,2017-03-05,1.59,292544.83,166308.01,49556.55,33.91,76646.36,42018.46,34621.23,6.67,conventional,2017,Tampa +44,2017-02-26,1.23,369337.81,209754.73,61504.6,54.62,98023.86,60609.67,37414.19,0.0,conventional,2017,Tampa +45,2017-02-19,1.29,297524.28,160252.79,57390.21,44.0,79837.28,45296.0,34541.28,0.0,conventional,2017,Tampa +46,2017-02-12,0.95,484658.75,244896.84,108692.87,143.7,130925.34,64717.67,66097.95,109.72,conventional,2017,Tampa +47,2017-02-05,0.79,893143.94,432114.92,200199.09,273.63,260556.3,150022.99,110241.64,291.67,conventional,2017,Tampa +48,2017-01-29,1.21,445251.37,183508.26,90757.43,207.75,170777.93,93866.67,76118.2,793.06,conventional,2017,Tampa +49,2017-01-22,1.0,547800.42,178179.3,151852.98,116.5,217651.64,80110.89,137540.75,0.0,conventional,2017,Tampa +50,2017-01-15,1.24,425887.79,176596.61,89720.14,152.26,159418.78,81860.82,77557.96,0.0,conventional,2017,Tampa +51,2017-01-08,1.27,351707.78,131948.41,75346.27,100.07,144313.03,80554.92,63758.11,0.0,conventional,2017,Tampa +52,2017-01-01,0.93,578061.29,202816.81,150261.06,71.05,224912.37,87852.78,137059.59,0.0,conventional,2017,Tampa +0,2017-12-31,0.98,38267341.61,13109617.49,13197460.59,644837.54,11315425.99,8092355.2,3098373.91,124696.88,conventional,2017,TotalUS +1,2017-12-24,1.18,29102349.33,10027319.18,8964247.34,546373.81,9564409.0,7222270.69,2226794.39,115343.92,conventional,2017,TotalUS +2,2017-12-17,1.07,30757767.03,10704214.26,9934618.43,574089.32,9544845.02,7149680.01,2260602.86,134562.15,conventional,2017,TotalUS +3,2017-12-10,1.03,35634913.01,11943914.54,11659897.51,398348.55,11632752.41,8404955.25,3122650.26,105146.9,conventional,2017,TotalUS +4,2017-12-03,1.09,33824253.0,11746980.0,10905968.0,583801.0,10587491.0,7730801.0,2748622.0,108068.0,conventional,2017,TotalUS +5,2017-11-26,1.24,24686675.0,9175316.0,7312239.0,379637.0,7819483.0,5571801.0,2156887.0,90795.0,conventional,2017,TotalUS +6,2017-11-19,1.17,29253484.0,11173132.0,7847059.0,416186.0,9817108.0,6662322.0,3059627.0,95159.0,conventional,2017,TotalUS +7,2017-11-12,1.15,32336225.0,11512837.0,9994648.0,416643.0,10412097.0,7277327.0,3044847.0,89923.0,conventional,2017,TotalUS +8,2017-11-05,1.19,32051594.24,11042128.27,9774987.75,400250.97,10834227.25,7470394.42,3275463.49,88369.34,conventional,2017,TotalUS +9,2017-10-29,1.29,30237911.23,10596902.91,9803569.58,424755.66,9412683.08,6602082.25,2747519.87,63080.96,conventional,2017,TotalUS +10,2017-10-22,1.44,26706971.51,9607586.96,8761192.74,409598.47,7928593.34,6074596.23,1804539.66,49457.45,conventional,2017,TotalUS +11,2017-10-15,1.58,25031589.09,8769357.86,8534404.17,392119.12,7335707.94,5387869.35,1893510.99,54327.6,conventional,2017,TotalUS +12,2017-10-08,1.65,24397166.19,8911144.2,7609509.9,391832.89,7484679.2,5444021.28,1976738.84,63919.08,conventional,2017,TotalUS +13,2017-10-01,1.64,24610645.21,8342407.59,8354516.32,384794.18,7528927.12,5513111.7,1954129.38,61686.04,conventional,2017,TotalUS +14,2017-09-24,1.62,24637148.38,8652381.39,8295761.93,385004.72,7304000.34,5442167.06,1792564.59,69268.69,conventional,2017,TotalUS +15,2017-09-17,1.57,25394902.82,9153158.54,8328241.87,417270.7,7496231.71,5494163.7,1923561.42,78506.59,conventional,2017,TotalUS +16,2017-09-10,1.56,26385081.36,9496485.27,8373234.08,487926.52,8027435.49,6035666.24,1818832.48,172936.77,conventional,2017,TotalUS +17,2017-09-03,1.57,26808410.65,9775062.87,8565265.61,541902.88,7926179.29,5851814.47,1855970.25,218394.57,conventional,2017,TotalUS +18,2017-08-27,1.47,28785279.75,10735709.61,8587105.6,517541.94,8944922.6,6592504.0,2117565.5,234853.1,conventional,2017,TotalUS +19,2017-08-20,1.41,29913744.37,10507928.78,8837219.28,581074.35,9987521.96,6837126.12,2911554.48,238841.36,conventional,2017,TotalUS +20,2017-08-13,1.33,32817254.13,10952703.84,11154310.29,624963.41,10085276.59,6687661.77,3118889.17,278725.65,conventional,2017,TotalUS +21,2017-08-06,1.33,32529920.23,11292580.44,10988313.58,665312.55,9583713.66,6889925.78,2376269.93,317517.95,conventional,2017,TotalUS +22,2017-07-30,1.32,31756097.22,11112191.11,11088082.78,596676.12,8959147.21,6337457.44,2396438.66,225251.11,conventional,2017,TotalUS +23,2017-07-23,1.31,32608301.51,11391055.98,11339580.43,612242.37,9265422.73,6333888.33,2636616.32,294918.08,conventional,2017,TotalUS +24,2017-07-16,1.33,32455047.11,11155465.9,11202844.97,756103.12,9340633.12,6514899.46,2499385.51,326348.15,conventional,2017,TotalUS +25,2017-07-09,1.17,39367336.18,13009944.14,11031218.25,821964.42,14504209.37,11112405.61,3018280.29,373523.47,conventional,2017,TotalUS +26,2017-07-02,1.21,38010426.16,12623188.5,10988734.57,859889.81,13538613.28,10041243.95,3119708.27,377661.06,conventional,2017,TotalUS +27,2017-06-25,1.17,37305307.68,12901031.63,10805961.74,655965.98,12942348.33,9462413.18,3202253.91,277681.24,conventional,2017,TotalUS +28,2017-06-18,1.18,38247669.33,12975373.48,11199448.6,807107.21,13265740.04,9650858.66,3267491.24,347390.14,conventional,2017,TotalUS +29,2017-06-11,1.21,37039853.8,13490545.5,10090861.46,648410.9,12810035.94,9373421.78,3128713.2,307900.96,conventional,2017,TotalUS +30,2017-06-04,1.24,37352360.59,13248334.78,10157565.24,667066.51,13279394.06,10103007.01,2946264.52,230122.53,conventional,2017,TotalUS +31,2017-05-28,1.28,37030893.73,12841952.21,10932970.72,673384.78,12582586.02,9312239.39,3013459.42,256887.21,conventional,2017,TotalUS +32,2017-05-21,1.26,34397651.15,12120948.7,10213231.95,621603.57,11441866.93,8508442.17,2718685.22,214739.54,conventional,2017,TotalUS +33,2017-05-14,1.19,36634269.03,12807836.17,9717257.8,652973.26,13456201.8,10373347.62,2859413.59,223440.59,conventional,2017,TotalUS +34,2017-05-07,1.09,47293921.6,17076650.82,13549102.59,863471.88,15804696.31,11228049.63,4324231.19,252415.49,conventional,2017,TotalUS +35,2017-04-30,1.18,38315500.43,13316594.36,11291149.13,667996.83,13039760.11,9463810.58,3378923.98,197025.55,conventional,2017,TotalUS +36,2017-04-23,1.18,35729013.92,12236713.41,10224484.11,613507.38,12654309.02,9051466.83,3434846.78,167995.41,conventional,2017,TotalUS +37,2017-04-16,1.23,35182320.78,12311055.17,10069354.29,650017.26,12151894.06,9399104.79,2544942.74,207846.53,conventional,2017,TotalUS +38,2017-04-09,1.21,34785712.55,12091315.22,10821096.24,647969.03,11225332.06,8946792.83,2098142.94,180396.29,conventional,2017,TotalUS +39,2017-04-02,1.21,34468017.36,12245520.55,9733584.68,624709.69,11864202.44,9385516.28,2330300.27,148385.89,conventional,2017,TotalUS +40,2017-03-26,1.24,32555119.32,11737559.6,9664310.82,611105.54,10542143.36,8498317.81,1844371.94,199453.61,conventional,2017,TotalUS +41,2017-03-19,1.25,31595125.23,10975689.78,9622711.73,638217.85,10358505.87,8202242.37,2000176.08,156087.42,conventional,2017,TotalUS +42,2017-03-12,1.22,32020573.94,11228357.23,9575227.17,727233.05,10489756.49,8207585.25,2124294.41,157876.83,conventional,2017,TotalUS +43,2017-03-05,1.13,33684175.01,11335275.58,10807889.59,795173.2,10745836.64,8302600.77,2322677.19,120558.68,conventional,2017,TotalUS +44,2017-02-26,0.99,37007797.69,13173668.36,11398142.68,896761.77,11539224.88,8945888.88,2405733.76,187602.24,conventional,2017,TotalUS +45,2017-02-19,0.99,33905854.58,11321732.4,10351148.2,832906.12,11400067.86,8676989.56,2576166.71,146911.59,conventional,2017,TotalUS +46,2017-02-12,0.87,41077470.65,15051951.54,12184188.37,862322.15,12979008.59,9922489.84,2919324.45,137194.3,conventional,2017,TotalUS +47,2017-02-05,0.77,61034457.1,22743616.17,20328161.55,1664383.09,16298296.29,12567155.58,3618270.75,112869.96,conventional,2017,TotalUS +48,2017-01-29,0.96,39373579.25,14034075.77,11683464.54,818727.02,12837311.92,9918255.52,2799960.74,119095.66,conventional,2017,TotalUS +49,2017-01-22,0.94,42140393.39,14254150.46,14212881.66,908616.41,12764744.86,9462853.82,3231019.56,70871.48,conventional,2017,TotalUS +50,2017-01-15,0.98,38295488.31,12936858.36,12625665.39,579346.52,12153618.04,9445622.04,2638918.48,69077.52,conventional,2017,TotalUS +51,2017-01-08,0.99,38049802.62,11809727.7,13856934.7,539068.39,11844071.83,9332971.74,2432259.13,78840.96,conventional,2017,TotalUS +52,2017-01-01,0.89,38879716.85,12707894.99,14201200.68,549844.57,11420776.61,8551133.56,2802709.32,66933.73,conventional,2017,TotalUS +0,2017-12-31,0.94,6330634.55,1789024.92,2089553.44,91527.19,2360529.0,1117482.22,1235496.72,7550.06,conventional,2017,West +1,2017-12-24,1.1,5116876.57,1773530.98,1202037.28,89973.68,2051334.63,1124779.76,915774.05,10780.82,conventional,2017,West +2,2017-12-17,1.05,5007523.13,1786351.75,1225289.22,80134.21,1915747.95,1083960.19,820156.22,11631.54,conventional,2017,West +3,2017-12-10,0.96,5936122.03,2225055.28,1469462.62,76489.85,2165114.28,1183057.63,970382.43,11674.22,conventional,2017,West +4,2017-12-03,0.98,6288493.0,2261955.0,1603331.0,86252.0,2336955.0,1350302.0,977019.0,9633.0,conventional,2017,West +5,2017-11-26,1.18,4182730.0,1677367.0,1002610.0,79478.0,1423276.0,817296.0,595877.0,10103.0,conventional,2017,West +6,2017-11-19,1.04,5303858.0,2271643.0,1110188.0,95334.0,1826693.0,815150.0,997264.0,14280.0,conventional,2017,West +7,2017-11-12,1.01,6182298.0,2154560.0,1537208.0,80539.0,2409991.0,1269325.0,1132967.0,7699.0,conventional,2017,West +8,2017-11-05,1.06,6417143.95,2015381.78,1607251.56,83591.62,2710918.99,1453245.43,1249145.77,8527.79,conventional,2017,West +9,2017-10-29,1.23,5130982.78,1612273.73,1432411.64,88098.88,1998198.53,1043034.52,950954.44,4209.57,conventional,2017,West +10,2017-10-22,1.31,4769138.17,1651832.17,1462327.27,65438.43,1589540.3,1024799.25,563721.25,1019.8,conventional,2017,West +11,2017-10-15,1.43,4413876.67,1523418.35,1405450.5,49958.58,1435049.24,848946.77,584104.47,1998.0,conventional,2017,West +12,2017-10-08,1.62,3927688.07,1409409.51,991395.23,46534.94,1480348.39,880091.4,595424.37,4832.62,conventional,2017,West +13,2017-10-01,1.57,4014477.31,1366983.48,1178504.57,43433.94,1425555.32,824834.62,598437.91,2282.79,conventional,2017,West +14,2017-09-24,1.59,3842682.36,1450858.85,1006684.68,42995.08,1342143.75,764285.55,575719.82,2138.38,conventional,2017,West +15,2017-09-17,1.53,4181226.81,1582315.47,1095433.56,47072.46,1456405.32,863081.25,591149.15,2174.92,conventional,2017,West +16,2017-09-10,1.56,4281593.13,1701547.18,994157.13,79291.53,1506597.29,877485.21,625252.36,3859.72,conventional,2017,West +17,2017-09-03,1.53,4369089.47,1652405.87,1036380.46,85016.4,1595286.74,904506.46,684034.46,6745.82,conventional,2017,West +18,2017-08-27,1.31,5328934.06,1822972.31,1313977.96,83291.42,2108692.37,1314990.74,779209.02,14492.61,conventional,2017,West +19,2017-08-20,1.3,5653429.62,1886625.76,1346579.44,101128.66,2319095.76,1219038.28,1090563.92,9493.56,conventional,2017,West +20,2017-08-13,1.34,5304873.15,1837007.78,1348037.98,97902.68,2021924.71,975913.29,1035878.35,10133.07,conventional,2017,West +21,2017-08-06,1.32,5548410.44,2036702.69,1451163.28,107844.51,1952699.96,1060422.56,879238.7,13038.7,conventional,2017,West +22,2017-07-30,1.25,5688357.24,1992527.59,1603136.43,106461.23,1986231.99,973013.15,1003906.67,9312.17,conventional,2017,West +23,2017-07-23,1.18,6311280.51,2072496.16,1969142.59,112050.77,2157590.99,916284.35,1234707.82,6598.82,conventional,2017,West +24,2017-07-16,1.28,5529487.17,1989077.36,1484596.99,125816.11,1929996.71,944879.43,980887.97,4229.31,conventional,2017,West +25,2017-07-09,0.95,8389918.04,2821722.16,1464321.92,118151.88,3985722.08,2780258.77,1200981.9,4481.41,conventional,2017,West +26,2017-07-02,1.07,7020076.49,2270834.48,1330339.0,150862.92,3268040.09,2074185.51,1185728.1,8126.48,conventional,2017,West +27,2017-06-25,1.05,6929193.97,2401714.73,1201234.39,128253.56,3197991.29,1956121.79,1236850.44,5019.06,conventional,2017,West +28,2017-06-18,1.02,7187200.64,2511913.67,1422660.4,123827.42,3128799.15,1938407.82,1187663.27,2728.06,conventional,2017,West +29,2017-06-11,1.02,7138766.83,2763254.66,1231683.94,132101.6,3011726.63,1900413.66,1106330.85,4982.12,conventional,2017,West +30,2017-06-04,1.07,6927745.15,2425106.14,1176272.52,157620.26,3168746.23,2078712.99,1085987.41,4045.83,conventional,2017,West +31,2017-05-28,1.07,6955988.8,2356866.57,1328698.82,158308.24,3112115.17,1940875.89,1167041.0,4198.28,conventional,2017,West +32,2017-05-21,1.06,6505499.28,2253179.19,1408963.68,132610.9,2710745.51,1649259.2,1058205.12,3281.19,conventional,2017,West +33,2017-05-14,1.01,7143624.99,2613704.06,1377670.83,132186.47,3020063.63,2092575.26,923467.38,4020.99,conventional,2017,West +34,2017-05-07,0.94,8545908.75,3444218.04,1721747.13,140174.32,3239769.26,2148672.62,1085028.72,6067.92,conventional,2017,West +35,2017-04-30,0.98,6998582.19,2322426.47,1296721.88,136596.23,3242837.61,2198776.68,1040924.08,3136.85,conventional,2017,West +36,2017-04-23,0.96,6822109.27,2342474.18,1457625.39,145286.81,2876722.89,1494551.63,1378030.25,4141.01,conventional,2017,West +37,2017-04-16,1.02,7012665.19,2459661.72,1219278.16,150405.25,3183320.06,1869830.38,1311397.37,2092.31,conventional,2017,West +38,2017-04-09,1.0,6774200.48,2591478.44,1299808.65,156421.2,2726492.19,1768746.74,954249.03,3496.42,conventional,2017,West +39,2017-04-02,1.05,6442820.51,2439188.31,1116769.5,161765.78,2725096.92,1817462.84,904013.54,3620.54,conventional,2017,West +40,2017-03-26,1.0,6680540.39,2845948.78,1110523.82,140936.9,2583130.89,1814182.35,765002.63,3945.91,conventional,2017,West +41,2017-03-19,1.04,6242381.13,2318973.17,1100226.44,142718.03,2680463.49,1775537.5,900751.44,4174.55,conventional,2017,West +42,2017-03-12,0.94,7040683.56,2392258.48,1230878.83,143967.04,3273579.21,2340076.3,928524.91,4978.0,conventional,2017,West +43,2017-03-05,0.96,6667896.16,2208631.13,1286416.73,153028.56,3019819.74,1700904.18,1315781.81,3133.75,conventional,2017,West +44,2017-02-26,0.86,6928736.97,2178473.36,1444476.86,130710.99,3175075.76,1944844.66,1227429.31,2801.79,conventional,2017,West +45,2017-02-19,0.88,6852304.51,2322985.0,1405482.21,134519.85,2989317.45,1880874.95,1100783.31,7659.19,conventional,2017,West +46,2017-02-12,0.76,7589357.36,3057701.43,1460486.11,126912.0,2944257.82,1699471.1,1241913.98,2872.74,conventional,2017,West +47,2017-02-05,0.66,11274749.11,4377537.67,2558039.85,193764.89,4145406.7,2508731.79,1627453.06,9221.85,conventional,2017,West +48,2017-01-29,0.85,7561590.72,2695457.93,1426577.31,128003.65,3311551.83,2241712.64,1065787.79,4051.4,conventional,2017,West +49,2017-01-22,0.82,7876147.38,2831351.41,1718065.83,113570.61,3213159.53,1984947.54,1227056.13,1155.86,conventional,2017,West +50,2017-01-15,0.85,7449374.27,2349466.71,1745015.51,130146.93,3224745.12,2120972.62,1101921.17,1851.33,conventional,2017,West +51,2017-01-08,0.86,7432376.14,2158521.28,1969740.61,130700.84,3173413.41,2194867.87,974954.56,3590.98,conventional,2017,West +52,2017-01-01,0.79,7360925.84,2100350.66,1976304.53,123652.12,3160618.53,2299700.47,857388.28,3529.78,conventional,2017,West +0,2017-12-31,0.89,727024.03,347248.16,158559.97,5628.28,215587.62,78402.09,137088.87,96.66,conventional,2017,WestTexNewMexico +1,2017-12-24,0.93,769970.84,402476.91,150206.86,7966.08,209320.99,96489.71,112764.62,66.66,conventional,2017,WestTexNewMexico +2,2017-12-17,0.85,754023.66,390096.35,161122.14,6208.15,196597.02,94766.7,101820.32,10.0,conventional,2017,WestTexNewMexico +3,2017-12-10,0.86,751137.79,384349.01,133201.98,5774.97,227811.83,104486.24,123222.25,103.34,conventional,2017,WestTexNewMexico +4,2017-12-03,0.85,799879.0,359419.0,224516.0,6690.0,209254.0,70520.0,138586.0,148.0,conventional,2017,WestTexNewMexico +5,2017-11-26,0.91,623094.0,354268.0,104956.0,5465.0,158405.0,74684.0,83606.0,114.0,conventional,2017,WestTexNewMexico +6,2017-11-19,0.95,654996.0,333777.0,119338.0,6035.0,195845.0,73894.0,118062.0,3889.0,conventional,2017,WestTexNewMexico +7,2017-11-12,0.93,759126.0,375798.0,165578.0,9438.0,208312.0,67655.0,140060.0,597.0,conventional,2017,WestTexNewMexico +8,2017-11-05,0.94,791515.45,381629.56,199062.24,8891.13,201932.52,62748.05,139154.47,30.0,conventional,2017,WestTexNewMexico +9,2017-10-29,1.02,660019.25,340028.02,169026.98,4847.21,146117.04,65993.2,80063.84,60.0,conventional,2017,WestTexNewMexico +10,2017-10-22,1.04,673664.68,390067.16,159230.47,2000.47,122366.58,63878.87,58487.71,0.0,conventional,2017,WestTexNewMexico +11,2017-10-15,1.15,615558.48,378161.23,115974.2,360.91,121062.14,55077.35,65984.79,0.0,conventional,2017,WestTexNewMexico +12,2017-10-08,1.2,591001.79,371142.58,99797.74,288.21,119773.26,61163.75,58609.51,0.0,conventional,2017,WestTexNewMexico +13,2017-10-01,1.22,598455.99,357909.12,121221.98,517.3,118807.59,62874.85,55932.74,0.0,conventional,2017,WestTexNewMexico +14,2017-09-24,1.22,584045.7,363596.75,99990.28,415.7,120042.97,68799.49,51236.81,6.67,conventional,2017,WestTexNewMexico +15,2017-09-17,1.2,585989.67,348290.56,103677.84,1179.49,132841.78,88720.88,44120.9,0.0,conventional,2017,WestTexNewMexico +16,2017-09-10,1.14,649192.58,439332.51,67241.66,5766.29,136852.12,103192.13,33659.99,0.0,conventional,2017,WestTexNewMexico +17,2017-09-03,1.14,666775.1,448083.06,71179.45,6037.95,141474.64,95618.57,45849.4,6.67,conventional,2017,WestTexNewMexico +18,2017-08-27,1.08,645080.71,432526.95,65673.79,6963.17,139916.8,100976.02,38460.78,480.0,conventional,2017,WestTexNewMexico +19,2017-08-20,1.01,772883.21,462664.9,91342.95,7461.86,211413.5,100740.73,108212.77,2460.0,conventional,2017,WestTexNewMexico +20,2017-08-13,0.95,867284.03,479443.63,113710.28,12037.45,262092.67,110195.24,151506.32,391.11,conventional,2017,WestTexNewMexico +21,2017-08-06,0.95,871230.15,532554.49,121535.96,7915.35,209224.35,124742.32,84285.36,196.67,conventional,2017,WestTexNewMexico +22,2017-07-30,1.01,837672.89,496316.57,107799.04,8697.46,224859.82,141547.68,82057.69,1254.45,conventional,2017,WestTexNewMexico +23,2017-07-23,1.03,848944.78,488728.09,118607.98,9864.53,231744.18,125662.18,100565.34,5516.66,conventional,2017,WestTexNewMexico +24,2017-07-16,0.95,887639.13,473343.11,152255.69,24289.97,237750.36,111162.35,126588.01,0.0,conventional,2017,WestTexNewMexico +25,2017-07-09,0.84,1083015.1,549857.13,109308.7,8436.06,415413.21,192156.83,223256.38,0.0,conventional,2017,WestTexNewMexico +26,2017-07-02,0.86,1023584.42,541032.2,87497.9,10276.33,384777.99,168553.29,216224.7,0.0,conventional,2017,WestTexNewMexico +27,2017-06-25,0.85,1022130.1,565529.68,82613.84,8881.62,365104.96,150840.39,214264.57,0.0,conventional,2017,WestTexNewMexico +28,2017-06-18,0.87,1046946.87,578248.12,88224.45,10539.38,369934.92,164735.4,205157.85,41.67,conventional,2017,WestTexNewMexico +29,2017-06-11,0.83,1090267.81,638208.69,88563.14,10519.07,352976.91,165191.61,187785.3,0.0,conventional,2017,WestTexNewMexico +30,2017-06-04,0.83,1104682.52,660903.1,87083.97,10771.66,345923.79,146358.81,199564.98,0.0,conventional,2017,WestTexNewMexico +31,2017-05-28,0.91,1042737.97,586236.26,88983.48,15734.13,351784.1,139601.56,212182.54,0.0,conventional,2017,WestTexNewMexico +32,2017-05-21,0.89,999265.6,545326.36,89271.68,12452.44,352215.12,135057.21,217157.91,0.0,conventional,2017,WestTexNewMexico +33,2017-05-14,0.84,1108372.45,622089.83,105351.01,12177.74,368753.87,143675.74,225078.13,0.0,conventional,2017,WestTexNewMexico +34,2017-05-07,0.82,1159488.49,643961.42,121509.24,12243.26,381774.57,127690.85,254083.72,0.0,conventional,2017,WestTexNewMexico +35,2017-04-30,0.81,978289.98,550326.03,85308.08,11068.06,331587.81,125278.55,206309.26,0.0,conventional,2017,WestTexNewMexico +36,2017-04-23,0.75,1108328.51,583229.86,105373.5,13999.44,405725.71,118216.19,287509.52,0.0,conventional,2017,WestTexNewMexico +37,2017-04-16,0.82,1115442.01,593840.91,87765.85,19105.49,414729.76,149148.45,265581.31,0.0,conventional,2017,WestTexNewMexico +38,2017-04-09,0.9,818355.5,463332.94,59419.34,17752.8,277850.42,124912.72,152937.7,0.0,conventional,2017,WestTexNewMexico +39,2017-04-02,0.86,886455.71,492263.73,60337.44,22050.22,311804.32,141881.26,169923.06,0.0,conventional,2017,WestTexNewMexico +40,2017-03-26,0.84,910903.81,533119.84,65918.97,17073.66,294791.34,139768.43,155022.91,0.0,conventional,2017,WestTexNewMexico +41,2017-03-19,0.84,914181.01,550156.27,60673.98,18046.15,285304.61,122778.9,162525.71,0.0,conventional,2017,WestTexNewMexico +42,2017-03-12,0.86,813341.58,425584.68,60264.21,19234.46,308258.23,138151.67,170106.56,0.0,conventional,2017,WestTexNewMexico +43,2017-03-05,0.84,841019.69,466853.14,55790.06,28477.27,289899.22,128328.66,161570.56,0.0,conventional,2017,WestTexNewMexico +44,2017-02-26,0.79,864199.16,471215.82,67019.53,15924.59,310039.22,126854.84,183184.38,0.0,conventional,2017,WestTexNewMexico +45,2017-02-19,0.8,870359.48,520135.25,62561.35,15797.29,271865.59,143141.71,128723.88,0.0,conventional,2017,WestTexNewMexico +46,2017-02-12,0.65,1122062.47,634306.53,74919.2,16662.96,396173.78,146277.87,249895.91,0.0,conventional,2017,WestTexNewMexico +47,2017-02-05,0.52,1637554.42,1067388.68,127511.86,18640.48,424013.4,144985.32,279028.08,0.0,conventional,2017,WestTexNewMexico +48,2017-01-29,0.74,979146.85,607131.32,61234.48,15028.65,295752.4,159375.8,136376.6,0.0,conventional,2017,WestTexNewMexico +49,2017-01-22,0.67,1100953.14,653900.04,95147.87,14466.07,337439.16,113880.3,223558.86,0.0,conventional,2017,WestTexNewMexico +50,2017-01-15,0.73,1068598.28,565135.47,98377.69,17186.36,387898.76,153857.94,234040.82,0.0,conventional,2017,WestTexNewMexico +51,2017-01-08,0.76,954821.31,486063.56,102288.73,15502.82,350966.2,151408.26,199527.38,30.56,conventional,2017,WestTexNewMexico +52,2017-01-01,0.75,819748.75,394004.15,96731.03,16147.28,312866.29,134847.67,178016.4,2.22,conventional,2017,WestTexNewMexico +0,2018-03-25,1.57,149396.5,16361.69,109045.03,65.45,23924.33,19273.8,4270.53,380.0,conventional,2018,Albany +1,2018-03-18,1.35,105304.65,13234.86,61037.58,55.0,30977.21,26755.9,3721.31,500.0,conventional,2018,Albany +2,2018-03-11,1.12,144648.75,15823.35,110950.68,70.0,17804.72,14480.52,3033.09,291.11,conventional,2018,Albany +3,2018-03-04,1.08,139520.6,12002.12,105069.57,95.62,22353.29,16128.51,5941.45,283.33,conventional,2018,Albany +4,2018-02-25,1.28,104278.89,10368.77,59723.32,48.0,34138.8,30126.31,3702.49,310.0,conventional,2018,Albany +5,2018-02-18,1.43,85630.24,5499.73,61661.76,75.0,18393.75,15677.67,2336.08,380.0,conventional,2018,Albany +6,2018-02-11,1.45,121804.36,8183.48,95548.47,61.0,18011.41,13264.91,4295.39,451.11,conventional,2018,Albany +7,2018-02-04,1.03,216738.47,7625.65,195725.06,143.53,13244.23,10571.6,2422.63,250.0,conventional,2018,Albany +8,2018-01-28,1.57,93625.03,3101.17,74627.23,55.59,15841.04,11614.79,4159.58,66.67,conventional,2018,Albany +9,2018-01-21,1.69,135196.35,3133.37,116520.88,88.78,15453.32,10023.79,5429.53,0.0,conventional,2018,Albany +10,2018-01-14,1.42,95246.38,2897.41,76570.67,44.0,15734.3,10012.8,5721.5,0.0,conventional,2018,Albany +11,2018-01-07,1.13,98540.22,2940.63,76192.61,42.63,19364.35,8633.09,10707.93,23.33,conventional,2018,Albany +0,2018-03-25,1.04,624645.42,281209.4,33187.58,1831.33,308417.11,227944.75,77406.46,3065.9,conventional,2018,Atlanta +1,2018-03-18,0.95,730449.69,323507.79,36770.0,1828.28,368343.62,267740.12,97851.46,2752.04,conventional,2018,Atlanta +2,2018-03-11,0.96,695821.13,320199.4,36356.76,1628.73,337636.24,260152.24,74963.16,2520.84,conventional,2018,Atlanta +3,2018-03-04,1.08,594551.6,272245.24,37136.05,1763.52,283406.79,178019.66,103016.02,2371.11,conventional,2018,Atlanta +4,2018-02-25,1.06,586240.44,257877.67,35083.86,1579.38,291699.53,201139.31,88126.43,2433.79,conventional,2018,Atlanta +5,2018-02-18,1.04,538448.01,229255.93,30082.73,1325.82,277783.53,198897.13,76224.45,2661.95,conventional,2018,Atlanta +6,2018-02-11,0.87,723928.38,349354.58,39349.47,1608.23,333616.1,241870.49,89401.42,2344.19,conventional,2018,Atlanta +7,2018-02-04,0.86,957792.07,474887.68,55158.13,1755.05,425991.21,292317.81,131566.04,2107.36,conventional,2018,Atlanta +8,2018-01-28,1.08,559460.44,267126.26,37573.74,1661.8,253098.64,165156.6,83774.26,4167.78,conventional,2018,Atlanta +9,2018-01-21,1.1,639421.29,288131.95,56731.74,1612.56,292945.04,158655.8,128969.24,5320.0,conventional,2018,Atlanta +10,2018-01-14,1.1,670766.04,298975.97,60229.21,1604.9,309955.96,171508.47,134436.39,4011.1,conventional,2018,Atlanta +11,2018-01-07,0.98,713915.8,364463.12,47869.41,1459.65,300123.62,217644.43,78287.66,4191.53,conventional,2018,Atlanta +0,2018-03-25,1.23,986038.75,108250.52,591934.75,4205.03,281648.45,277508.08,2777.04,1363.33,conventional,2018,BaltimoreWashington +1,2018-03-18,1.16,1113242.82,114754.38,505245.36,5034.83,488208.25,483402.85,2918.73,1886.67,conventional,2018,BaltimoreWashington +2,2018-03-11,1.36,874780.27,104341.22,484252.62,4933.91,281252.52,278834.0,2348.52,70.0,conventional,2018,BaltimoreWashington +3,2018-03-04,1.25,988572.63,102687.68,619501.22,5269.13,261114.6,256822.62,4225.31,66.67,conventional,2018,BaltimoreWashington +4,2018-02-25,1.37,836294.71,104218.01,479773.13,4765.7,247537.87,243370.62,3930.59,236.66,conventional,2018,BaltimoreWashington +5,2018-02-18,1.42,796515.52,92816.97,487724.44,4694.08,211280.03,206322.72,4030.64,926.67,conventional,2018,BaltimoreWashington +6,2018-02-11,1.41,900558.38,112222.95,545365.67,4700.52,238269.24,233808.41,4287.5,173.33,conventional,2018,BaltimoreWashington +7,2018-02-04,1.12,1225103.27,139312.12,708495.55,5611.56,371684.04,369085.25,2512.13,86.66,conventional,2018,BaltimoreWashington +8,2018-01-28,1.12,1152539.42,115283.7,805041.45,4257.45,227956.82,225931.13,2019.02,6.67,conventional,2018,BaltimoreWashington +9,2018-01-21,1.18,1102213.13,129351.87,659069.49,4321.42,309470.35,304382.22,5088.13,0.0,conventional,2018,BaltimoreWashington +10,2018-01-14,1.49,799726.89,91785.6,485963.15,4234.82,217743.32,212956.99,4783.0,3.33,conventional,2018,BaltimoreWashington +11,2018-01-07,1.5,771313.78,89883.07,466602.79,4167.07,210660.85,189304.53,21356.32,0.0,conventional,2018,BaltimoreWashington +0,2018-03-25,1.28,85839.98,40361.51,2026.94,9200.23,34251.3,24809.18,9434.29,7.83,conventional,2018,Boise +1,2018-03-18,1.03,119045.04,49145.38,6654.76,7737.62,55507.28,20536.92,34626.8,343.56,conventional,2018,Boise +2,2018-03-11,1.26,80611.01,28399.47,2279.82,12280.5,37651.22,28668.38,8931.77,51.07,conventional,2018,Boise +3,2018-03-04,1.22,91070.8,44454.46,1835.89,10101.52,34678.93,26585.16,8061.36,32.41,conventional,2018,Boise +4,2018-02-25,1.09,113183.43,42116.22,7518.83,11798.39,51749.99,17586.21,33806.52,357.26,conventional,2018,Boise +5,2018-02-18,1.25,80833.06,39772.8,2363.06,8575.65,30121.55,21029.36,9032.9,59.29,conventional,2018,Boise +6,2018-02-11,1.14,93106.27,48308.72,2816.31,10558.83,31422.41,19862.62,11540.14,19.65,conventional,2018,Boise +7,2018-02-04,1.07,128702.15,39582.33,8511.49,22490.26,58118.07,17470.72,40491.57,155.78,conventional,2018,Boise +8,2018-01-28,1.12,105025.45,66653.8,1971.68,6961.61,29438.36,20717.06,8682.47,38.83,conventional,2018,Boise +9,2018-01-21,1.25,88727.77,49711.32,2157.11,6343.03,30516.31,22463.22,8026.61,26.48,conventional,2018,Boise +10,2018-01-14,1.15,111113.11,49335.23,7414.97,8298.95,46063.96,19135.96,26830.36,97.64,conventional,2018,Boise +11,2018-01-07,1.3,85697.65,45936.53,2658.28,7511.15,29591.69,21784.14,7752.83,54.72,conventional,2018,Boise +0,2018-03-25,1.39,641462.43,26019.52,479186.12,1883.17,134373.62,109938.39,22955.23,1480.0,conventional,2018,Boston +1,2018-03-18,1.38,602177.43,24831.59,443903.93,1853.86,131588.05,101891.24,28125.7,1571.11,conventional,2018,Boston +2,2018-03-11,1.34,629090.87,23641.04,479640.6,1840.01,123969.22,102902.94,19475.17,1591.11,conventional,2018,Boston +3,2018-03-04,1.19,785188.72,20384.08,645988.55,1884.67,116931.42,88147.57,27442.74,1341.11,conventional,2018,Boston +4,2018-02-25,1.41,527274.99,19622.47,376506.86,1796.38,129349.28,112254.26,15890.58,1204.44,conventional,2018,Boston +5,2018-02-18,1.51,515022.94,16054.89,378699.13,2422.76,117846.16,99085.39,17672.99,1087.78,conventional,2018,Boston +6,2018-02-11,1.3,834304.52,23220.89,703749.06,6620.69,100713.88,86124.35,13366.2,1223.33,conventional,2018,Boston +7,2018-02-04,1.39,725934.21,21309.4,566751.03,3293.87,134579.91,98025.22,36068.02,486.67,conventional,2018,Boston +8,2018-01-28,1.22,800274.4,14384.54,680080.04,2656.9,103152.92,77511.92,25561.0,80.0,conventional,2018,Boston +9,2018-01-21,1.12,999783.13,15177.93,865836.92,6492.83,112275.45,85468.78,26806.67,0.0,conventional,2018,Boston +10,2018-01-14,1.49,533150.49,10669.09,393026.08,2533.63,126921.69,81610.31,45311.38,0.0,conventional,2018,Boston +11,2018-01-07,1.28,685417.51,12012.96,557314.83,4961.24,111128.48,58834.32,52294.16,0.0,conventional,2018,Boston +0,2018-03-25,1.21,163592.4,18266.89,82910.91,80.6,62334.0,20541.67,41090.1,702.23,conventional,2018,BuffaloRochester +1,2018-03-18,1.14,166358.32,16300.2,70320.66,63.65,79673.81,22589.43,56334.38,750.0,conventional,2018,BuffaloRochester +2,2018-03-11,1.16,185174.55,18057.75,83259.03,57.09,83800.68,41026.82,41959.42,814.44,conventional,2018,BuffaloRochester +3,2018-03-04,1.19,168190.37,13533.32,75344.69,67.47,79244.89,23485.14,55219.75,540.0,conventional,2018,BuffaloRochester +4,2018-02-25,1.23,151330.38,12862.56,69046.27,64.77,69356.78,43442.45,25218.77,695.56,conventional,2018,BuffaloRochester +5,2018-02-18,1.28,144087.48,10951.83,66055.96,74.08,67005.61,32089.56,34562.71,353.34,conventional,2018,BuffaloRochester +6,2018-02-11,1.27,151057.53,12749.59,74595.11,84.21,63628.62,41236.05,21391.46,1001.11,conventional,2018,BuffaloRochester +7,2018-02-04,1.32,188654.47,13478.37,99364.48,84.19,75727.43,14935.4,60228.7,563.33,conventional,2018,BuffaloRochester +8,2018-01-28,1.27,158637.92,8099.96,76070.49,96.23,74371.24,12060.74,62156.06,154.44,conventional,2018,BuffaloRochester +9,2018-01-21,1.29,161887.27,8269.77,75965.53,61.69,77590.28,26340.41,51249.87,0.0,conventional,2018,BuffaloRochester +10,2018-01-14,1.32,159070.65,8239.41,80916.85,40.26,69874.13,27693.23,42180.9,0.0,conventional,2018,BuffaloRochester +11,2018-01-07,1.28,161876.76,8645.3,92302.56,56.67,60872.23,12248.04,48624.19,0.0,conventional,2018,BuffaloRochester +0,2018-03-25,1.04,6687009.44,1932162.02,2715163.6,92955.04,1946728.78,1827362.5,37434.21,81932.07,conventional,2018,California +1,2018-03-18,1.02,6802084.11,2161037.82,2305253.24,94087.86,2241705.19,2116307.93,38597.17,86800.09,conventional,2018,California +2,2018-03-11,1.11,6488605.43,2277437.31,1750118.87,108244.33,2352804.92,2230913.33,41105.34,80786.25,conventional,2018,California +3,2018-03-04,1.13,6295529.61,2380723.98,1676629.99,116796.74,2121378.9,1992549.07,47126.97,81702.86,conventional,2018,California +4,2018-02-25,1.03,6750361.46,2666133.31,1947660.32,110662.05,2025905.78,1908897.38,42064.35,74944.05,conventional,2018,California +5,2018-02-18,1.1,6379219.83,2086478.7,2413234.64,114573.33,1764933.16,1640897.04,47009.82,77026.3,conventional,2018,California +6,2018-02-11,0.98,6718358.1,2787033.93,1781591.88,119593.17,2030139.12,1930311.89,31301.69,68525.54,conventional,2018,California +7,2018-02-04,0.8,10894677.77,4473811.63,4097591.67,146357.78,2176916.69,2072477.62,34196.27,70242.8,conventional,2018,California +8,2018-01-28,1.16,6134040.58,2254631.8,2185495.65,121090.87,1572822.26,1480527.7,24545.94,67748.62,conventional,2018,California +9,2018-01-21,1.12,6610010.64,2378177.09,2590301.7,122950.68,1518581.17,1431898.88,24801.59,61880.7,conventional,2018,California +10,2018-01-14,1.27,5927016.73,2098762.55,2356359.93,151045.33,1320848.92,1226559.09,25390.97,68898.86,conventional,2018,California +11,2018-01-07,1.19,5756632.36,2350838.88,1704810.36,135053.06,1565930.06,1465321.32,25951.12,74657.62,conventional,2018,California +0,2018-03-25,1.32,258547.55,68088.95,87220.18,5567.45,97670.97,92743.21,4926.65,1.11,conventional,2018,Charlotte +1,2018-03-18,0.99,396324.57,73274.02,93954.85,5330.38,223765.32,218181.7,5583.62,0.0,conventional,2018,Charlotte +2,2018-03-11,1.27,279661.71,72847.8,98059.2,6212.37,102542.34,96038.19,6503.04,1.11,conventional,2018,Charlotte +3,2018-03-04,1.32,259060.74,67459.59,80515.46,6005.97,105079.72,97703.43,7376.29,0.0,conventional,2018,Charlotte +4,2018-02-25,1.34,249254.23,63442.49,91258.71,5678.86,88874.17,86338.79,2535.38,0.0,conventional,2018,Charlotte +5,2018-02-18,1.36,224395.77,53547.46,75445.39,5423.5,89979.42,85685.59,4293.83,0.0,conventional,2018,Charlotte +6,2018-02-11,1.18,262133.71,69727.98,67904.5,5261.66,119239.57,113041.82,6197.75,0.0,conventional,2018,Charlotte +7,2018-02-04,0.99,411160.94,86708.74,99117.46,6476.93,218857.81,208289.93,10567.88,0.0,conventional,2018,Charlotte +8,2018-01-28,1.37,247893.13,68666.93,79639.9,4802.79,94783.51,89456.12,5327.39,0.0,conventional,2018,Charlotte +9,2018-01-21,1.11,331324.99,74246.57,80371.21,4657.83,172049.38,165016.97,7031.3,1.11,conventional,2018,Charlotte +10,2018-01-14,1.38,251260.54,60751.23,97094.95,5512.27,87902.09,82964.19,4937.9,0.0,conventional,2018,Charlotte +11,2018-01-07,1.36,243301.08,69157.01,80320.79,4915.1,88908.18,84280.34,4627.84,0.0,conventional,2018,Charlotte +0,2018-03-25,1.36,908202.13,142681.06,463136.28,174975.75,127409.04,103579.41,22467.04,1362.59,conventional,2018,Chicago +1,2018-03-18,1.42,841171.24,85185.29,435552.05,174149.72,146284.18,110035.76,34764.91,1483.51,conventional,2018,Chicago +2,2018-03-11,1.54,830421.03,95041.64,454041.33,142564.1,138773.96,100438.58,37184.96,1150.42,conventional,2018,Chicago +3,2018-03-04,1.53,820728.47,109595.38,465039.55,104755.22,141338.32,97377.72,42517.93,1442.67,conventional,2018,Chicago +4,2018-02-25,1.51,794925.31,74465.63,452448.67,131640.53,136370.48,91023.86,44466.75,879.87,conventional,2018,Chicago +5,2018-02-18,1.53,736317.26,67207.4,403149.52,131732.99,134227.35,98803.7,35146.84,276.81,conventional,2018,Chicago +6,2018-02-11,1.39,897178.36,131360.75,488374.4,154223.75,123219.46,85210.17,37063.73,945.56,conventional,2018,Chicago +7,2018-02-04,0.88,1802646.35,257095.68,1235325.42,158735.41,151489.84,91953.59,59112.77,423.48,conventional,2018,Chicago +8,2018-01-28,1.36,947968.47,108233.69,515116.55,124271.04,200347.19,79871.28,120462.37,13.54,conventional,2018,Chicago +9,2018-01-21,1.42,951648.11,110759.53,473797.46,154585.97,212505.15,79124.15,133370.44,10.56,conventional,2018,Chicago +10,2018-01-14,1.64,762997.53,82376.44,440322.05,134141.55,106157.49,93374.57,12782.92,0.0,conventional,2018,Chicago +11,2018-01-07,1.5,842141.42,132853.21,475772.58,139314.8,94200.83,85019.84,9161.86,19.13,conventional,2018,Chicago +0,2018-03-25,1.08,277267.97,70493.35,27183.18,9616.52,169974.92,140702.4,20939.89,8332.63,conventional,2018,CincinnatiDayton +1,2018-03-18,1.07,245062.31,68444.95,16626.16,10114.52,149876.68,119963.26,25174.42,4739.0,conventional,2018,CincinnatiDayton +2,2018-03-11,1.01,275804.74,65139.45,22713.79,10175.31,177776.19,146773.92,30140.64,861.63,conventional,2018,CincinnatiDayton +3,2018-03-04,1.02,265942.15,69312.67,20912.27,9651.63,166065.58,146627.38,14918.25,4519.95,conventional,2018,CincinnatiDayton +4,2018-02-25,1.03,263363.41,59106.97,31605.03,9097.03,163554.38,135219.03,24337.13,3998.22,conventional,2018,CincinnatiDayton +5,2018-02-18,0.83,231729.88,71473.92,15783.23,7110.53,137362.2,108121.76,28080.54,1159.9,conventional,2018,CincinnatiDayton +6,2018-02-11,0.8,305400.41,98065.66,31216.87,11211.24,164906.64,124062.8,34478.97,6364.87,conventional,2018,CincinnatiDayton +7,2018-02-04,0.76,380214.74,102019.45,67966.25,13825.01,196404.03,165544.38,29548.07,1311.58,conventional,2018,CincinnatiDayton +8,2018-01-28,0.92,281913.49,78131.98,27858.19,11786.66,164136.66,155062.73,9071.23,2.7,conventional,2018,CincinnatiDayton +9,2018-01-21,0.89,321809.3,92142.87,54830.94,12823.81,162011.68,148818.14,13170.73,22.81,conventional,2018,CincinnatiDayton +10,2018-01-14,1.15,243366.13,59620.01,30542.73,19975.22,133228.17,123961.02,9260.42,6.73,conventional,2018,CincinnatiDayton +11,2018-01-07,0.91,303592.92,98045.53,37713.62,18889.29,148944.48,130642.78,18046.8,254.9,conventional,2018,CincinnatiDayton +0,2018-03-25,0.96,264778.18,77671.02,21732.24,3272.61,162102.31,133163.77,28160.04,778.5,conventional,2018,Columbus +1,2018-03-18,1.01,216897.74,62775.9,15964.09,2293.97,135863.78,95448.1,39893.13,522.55,conventional,2018,Columbus +2,2018-03-11,1.05,212107.87,60498.56,22813.02,2942.75,125853.54,85932.68,39844.53,76.33,conventional,2018,Columbus +3,2018-03-04,1.04,207531.29,61462.7,17792.45,2208.68,126067.46,103725.06,21557.69,784.71,conventional,2018,Columbus +4,2018-02-25,1.03,209180.18,55429.58,28466.82,3406.16,121877.62,85192.08,34250.82,2434.72,conventional,2018,Columbus +5,2018-02-18,1.02,179193.25,47570.1,13758.25,2239.22,115625.68,76906.83,36898.98,1819.87,conventional,2018,Columbus +6,2018-02-11,0.82,218329.7,79239.58,26356.05,2998.74,109735.33,73393.34,34338.97,2003.02,conventional,2018,Columbus +7,2018-02-04,0.73,333398.29,108554.97,61748.67,5329.61,157765.04,117614.03,39927.3,223.71,conventional,2018,Columbus +8,2018-01-28,1.03,187523.2,60555.62,23671.37,3175.28,100120.93,83156.44,16932.05,32.44,conventional,2018,Columbus +9,2018-01-21,0.99,214353.02,75486.73,52395.54,4298.3,82172.45,63261.5,18897.31,13.64,conventional,2018,Columbus +10,2018-01-14,1.07,194619.31,77236.77,24462.37,3266.68,89653.49,75499.35,14125.61,28.53,conventional,2018,Columbus +11,2018-01-07,0.84,256757.6,112638.98,32262.19,4167.93,107688.5,89971.36,17360.9,356.24,conventional,2018,Columbus +0,2018-03-25,0.73,1803351.21,788734.28,219585.81,6423.31,788607.81,673212.32,94356.41,21039.08,conventional,2018,DallasFtWorth +1,2018-03-18,0.87,1362250.25,656842.99,247599.72,4978.69,452828.85,329530.61,103951.68,19346.56,conventional,2018,DallasFtWorth +2,2018-03-11,0.87,1356159.96,688566.31,213463.41,5709.3,448420.94,329344.14,100310.59,18766.21,conventional,2018,DallasFtWorth +3,2018-03-04,0.77,1501141.58,673535.25,263895.18,6341.68,557369.47,449577.44,86867.63,20924.4,conventional,2018,DallasFtWorth +4,2018-02-25,0.74,1616898.5,807933.71,231111.57,6306.38,571546.84,477107.45,75376.35,19063.04,conventional,2018,DallasFtWorth +5,2018-02-18,0.77,1421970.53,780856.19,250380.23,5033.93,385700.18,268220.8,102051.19,15428.19,conventional,2018,DallasFtWorth +6,2018-02-11,0.72,1553404.16,768415.85,212945.5,5327.13,566715.68,461849.3,87861.7,17004.68,conventional,2018,DallasFtWorth +7,2018-02-04,0.67,1885401.44,855815.37,340887.07,6655.47,682043.53,583353.2,86725.24,11965.09,conventional,2018,DallasFtWorth +8,2018-01-28,0.82,1433095.36,781164.88,187033.59,5596.69,459300.2,378776.69,80095.8,427.71,conventional,2018,DallasFtWorth +9,2018-01-21,0.85,1437239.09,728035.0,216211.98,6291.83,486700.28,410340.65,76287.17,72.46,conventional,2018,DallasFtWorth +10,2018-01-14,0.93,1333180.68,677477.52,316020.36,7862.07,331820.73,240134.19,91381.56,304.98,conventional,2018,DallasFtWorth +11,2018-01-07,0.92,1140210.38,587439.51,258369.66,5543.59,288857.62,183640.29,104915.08,302.25,conventional,2018,DallasFtWorth +0,2018-03-25,1.02,950483.37,176286.79,222958.27,16540.62,534697.69,121655.4,413042.29,0.0,conventional,2018,Denver +1,2018-03-18,1.02,1010953.71,163394.48,260747.73,15483.84,571327.66,129403.31,441922.13,2.22,conventional,2018,Denver +2,2018-03-11,1.16,788107.23,159389.01,205340.23,16598.6,406779.39,156327.39,250452.0,0.0,conventional,2018,Denver +3,2018-03-04,1.01,934460.44,192776.45,258652.66,15526.86,467504.47,137337.91,330166.56,0.0,conventional,2018,Denver +4,2018-02-25,0.99,1018614.31,166753.37,254657.74,14153.31,583049.89,137052.52,445944.87,52.5,conventional,2018,Denver +5,2018-02-18,1.16,743979.81,159850.99,197244.92,12929.9,373954.0,126126.99,247827.01,0.0,conventional,2018,Denver +6,2018-02-11,0.91,1056054.41,234995.54,251174.58,13754.34,556129.95,86599.13,469530.82,0.0,conventional,2018,Denver +7,2018-02-04,0.87,1381528.74,234985.26,468889.32,11698.36,665955.8,88502.27,577453.53,0.0,conventional,2018,Denver +8,2018-01-28,1.15,773218.13,181751.78,215803.07,9803.85,365859.43,111320.37,254537.95,1.11,conventional,2018,Denver +9,2018-01-21,1.16,872673.39,147297.68,233968.98,14834.26,476572.47,101867.53,374703.83,1.11,conventional,2018,Denver +10,2018-01-14,1.1,1003142.47,178992.28,323916.08,11963.62,488270.49,121454.8,366815.69,0.0,conventional,2018,Denver +11,2018-01-07,1.01,963849.75,184830.15,292349.16,14102.19,472568.25,112396.9,360171.35,0.0,conventional,2018,Denver +0,2018-03-25,1.15,477637.43,82568.15,72460.6,62078.52,260530.16,211303.55,21812.97,27413.64,conventional,2018,Detroit +1,2018-03-18,1.09,428600.2,82792.93,43727.67,29920.79,272158.81,220038.13,37118.17,15002.51,conventional,2018,Detroit +2,2018-03-11,1.14,443295.3,82676.76,65334.67,47721.41,247562.46,178042.93,49942.51,19577.02,conventional,2018,Detroit +3,2018-03-04,1.18,400047.47,89601.76,41375.29,26105.84,242964.58,216775.85,13655.21,12533.52,conventional,2018,Detroit +4,2018-02-25,1.08,464413.57,72595.4,90296.46,53864.5,247657.21,185976.63,32253.35,29427.23,conventional,2018,Detroit +5,2018-02-18,1.11,361966.97,70416.79,33890.23,18889.7,238770.25,177738.87,48953.96,12077.42,conventional,2018,Detroit +6,2018-02-11,0.92,435384.45,123642.25,73381.42,26265.23,212095.55,156008.05,42872.58,13214.92,conventional,2018,Detroit +7,2018-02-04,0.67,880540.45,167512.7,287359.89,60027.97,365639.89,266930.49,89516.48,9192.92,conventional,2018,Detroit +8,2018-01-28,1.14,367456.05,80917.0,70055.35,14554.29,201929.41,177720.43,23023.66,1185.32,conventional,2018,Detroit +9,2018-01-21,0.96,570161.95,87365.29,220100.47,46163.59,216532.6,146574.63,65171.17,4786.8,conventional,2018,Detroit +10,2018-01-14,1.18,369628.1,94963.97,60826.16,13812.28,200025.69,162745.09,36032.53,1248.07,conventional,2018,Detroit +11,2018-01-07,0.92,512142.96,164665.38,81248.88,23315.8,242912.9,195595.55,45090.53,2226.82,conventional,2018,Detroit +0,2018-03-25,1.47,207028.28,2946.6,85213.8,63349.05,55518.83,29054.93,7662.55,18801.35,conventional,2018,GrandRapids +1,2018-03-18,1.4,175969.31,3261.54,64300.91,35087.55,73319.31,55491.01,6112.96,11715.34,conventional,2018,GrandRapids +2,2018-03-11,1.43,191286.89,3195.61,75173.54,55327.24,57590.5,32676.64,8368.93,16544.93,conventional,2018,GrandRapids +3,2018-03-04,1.74,137419.7,2687.59,54299.89,29572.84,50859.38,33939.14,7138.74,9781.5,conventional,2018,GrandRapids +4,2018-02-25,1.27,208279.53,2534.14,86121.81,63728.61,55894.97,27041.98,11484.9,17368.09,conventional,2018,GrandRapids +5,2018-02-18,1.52,143871.75,1921.26,46210.79,26232.82,69506.88,55370.67,5586.21,8550.0,conventional,2018,GrandRapids +6,2018-02-11,1.4,167604.6,3619.4,80530.3,42489.31,40965.59,25201.76,2735.5,13028.33,conventional,2018,GrandRapids +7,2018-02-04,0.88,408921.57,4371.02,193222.08,143538.35,67790.12,22315.79,1765.51,43708.82,conventional,2018,GrandRapids +8,2018-01-28,1.55,162674.55,2937.98,86845.82,30069.97,42820.78,31880.77,1661.64,9278.37,conventional,2018,GrandRapids +9,2018-01-21,1.01,349565.06,2991.23,143928.98,137321.51,65323.34,23516.4,1183.72,40623.22,conventional,2018,GrandRapids +10,2018-01-14,1.63,132716.65,2444.54,60928.74,30487.47,38855.9,27912.73,1824.11,9119.06,conventional,2018,GrandRapids +11,2018-01-07,1.35,169476.04,2865.76,75494.46,45133.04,45982.78,29085.45,3455.76,13441.57,conventional,2018,GrandRapids +0,2018-03-25,1.18,4245947.2,860997.47,1144066.23,459002.28,1781881.22,1397088.59,282886.2,101906.43,conventional,2018,GreatLakes +1,2018-03-18,1.16,3944850.17,784915.67,952233.04,348177.94,1859523.52,1416662.42,381069.68,61791.42,conventional,2018,GreatLakes +2,2018-03-11,1.22,3953699.57,741349.12,1112605.39,380229.8,1719515.26,1237310.02,410612.84,71592.4,conventional,2018,GreatLakes +3,2018-03-04,1.27,3654450.88,753405.33,984160.83,246085.46,1670799.26,1303661.73,309332.66,57804.87,conventional,2018,GreatLakes +4,2018-02-25,1.19,3920643.53,663042.81,1184034.99,408305.47,1665260.26,1129063.14,433394.02,102803.1,conventional,2018,GreatLakes +5,2018-02-18,1.2,3351722.04,639056.82,856103.82,251048.73,1605512.67,1146466.95,412433.13,46612.59,conventional,2018,GreatLakes +6,2018-02-11,1.05,4104031.93,998859.86,1221482.58,336456.51,1547232.98,1080233.43,398603.44,68396.11,conventional,2018,GreatLakes +7,2018-02-04,0.81,7094764.73,1410647.88,2875747.93,667141.61,2141227.31,1436877.51,573049.04,131300.76,conventional,2018,GreatLakes +8,2018-01-28,1.18,3857262.14,818434.82,1243174.16,259671.42,1535981.74,1200021.74,312985.52,22974.48,conventional,2018,GreatLakes +9,2018-01-21,1.08,4824586.17,939693.95,1678615.71,599358.14,1606918.37,1091946.07,411120.89,103851.41,conventional,2018,GreatLakes +10,2018-01-14,1.31,3437563.27,778207.19,1040627.93,294793.29,1323934.86,1117531.11,183163.55,23240.2,conventional,2018,GreatLakes +11,2018-01-07,1.11,4123104.83,1112028.17,1238992.5,350648.99,1421435.17,1154910.93,230241.31,36282.93,conventional,2018,GreatLakes +0,2018-03-25,1.21,330371.24,87782.44,137599.47,131.89,104857.44,95210.59,7089.08,2557.77,conventional,2018,HarrisburgScranton +1,2018-03-18,1.18,299740.63,75911.89,121945.84,200.48,101682.42,98656.62,725.8,2300.0,conventional,2018,HarrisburgScranton +2,2018-03-11,1.22,279645.04,65731.37,115236.06,174.48,98503.13,87461.84,9219.07,1822.22,conventional,2018,HarrisburgScranton +3,2018-03-04,1.21,289090.98,65788.57,130046.74,150.9,93104.77,82676.57,8658.2,1770.0,conventional,2018,HarrisburgScranton +4,2018-02-25,1.24,281655.48,63582.79,127685.46,166.92,90220.31,78774.1,9426.21,2020.0,conventional,2018,HarrisburgScranton +5,2018-02-18,1.25,277022.82,67138.92,129856.77,111.37,79915.76,71649.0,6605.65,1661.11,conventional,2018,HarrisburgScranton +6,2018-02-11,1.09,321368.64,77585.95,165153.24,116.39,78513.06,72248.7,4766.58,1497.78,conventional,2018,HarrisburgScranton +7,2018-02-04,1.16,395673.05,92062.94,211176.35,157.51,92276.25,89502.17,1977.41,796.67,conventional,2018,HarrisburgScranton +8,2018-01-28,1.15,299069.36,101247.63,112796.55,129.6,84895.58,84111.58,447.33,336.67,conventional,2018,HarrisburgScranton +9,2018-01-21,1.14,345436.84,125847.54,136876.39,168.16,82544.75,79398.89,3142.53,3.33,conventional,2018,HarrisburgScranton +10,2018-01-14,1.25,277616.71,80067.78,121405.45,189.01,75954.47,62453.61,13500.86,0.0,conventional,2018,HarrisburgScranton +11,2018-01-07,1.33,257281.38,57546.66,128633.39,70.97,71030.36,57822.58,13207.78,0.0,conventional,2018,HarrisburgScranton +0,2018-03-25,1.44,345963.16,17715.06,243023.15,242.2,84982.75,82409.99,1066.1,1506.66,conventional,2018,HartfordSpringfield +1,2018-03-18,1.43,308716.16,16506.01,218357.11,217.92,73635.12,68741.49,3282.52,1611.11,conventional,2018,HartfordSpringfield +2,2018-03-11,1.42,314847.26,17765.06,215834.18,183.31,81064.71,66170.41,13298.75,1595.55,conventional,2018,HartfordSpringfield +3,2018-03-04,1.17,432095.58,15615.69,347650.33,272.95,68556.61,64366.72,3032.11,1157.78,conventional,2018,HartfordSpringfield +4,2018-02-25,1.45,289607.63,13661.98,196776.63,314.45,78854.57,68300.92,9368.09,1185.56,conventional,2018,HartfordSpringfield +5,2018-02-18,1.42,283265.66,11150.75,209791.73,212.96,62110.22,60822.76,386.35,901.11,conventional,2018,HartfordSpringfield +6,2018-02-11,1.48,352731.83,14675.9,270215.97,208.1,67631.86,65856.28,744.47,1031.11,conventional,2018,HartfordSpringfield +7,2018-02-04,1.38,427950.71,11605.62,345582.17,1100.67,69662.25,67967.4,1438.65,256.2,conventional,2018,HartfordSpringfield +8,2018-01-28,1.18,432600.1,7854.32,360244.35,237.31,64264.12,60495.46,3601.99,166.67,conventional,2018,HartfordSpringfield +9,2018-01-21,1.18,474554.55,8065.55,407711.57,175.38,58602.05,56135.81,2459.57,6.67,conventional,2018,HartfordSpringfield +10,2018-01-14,1.53,289124.31,6006.14,215891.85,128.82,67097.5,60219.1,6878.4,0.0,conventional,2018,HartfordSpringfield +11,2018-01-07,1.52,283678.88,5732.13,214934.82,136.28,62875.65,49441.07,13434.58,0.0,conventional,2018,HartfordSpringfield +0,2018-03-25,0.56,2120511.03,837700.97,162473.38,4190.48,1116146.2,952254.7,161188.17,2703.33,conventional,2018,Houston +1,2018-03-18,0.79,1243926.96,630826.45,184825.84,4011.21,424263.46,322054.35,99304.67,2904.44,conventional,2018,Houston +2,2018-03-11,0.83,1324475.69,614152.38,162269.94,4184.08,543869.29,432316.21,110079.75,1473.33,conventional,2018,Houston +3,2018-03-04,0.71,1501699.41,701418.48,176206.5,3827.34,620247.09,528247.89,91441.42,557.78,conventional,2018,Houston +4,2018-02-25,0.67,1657524.28,855570.87,147837.21,3976.08,650140.12,544537.0,105365.34,237.78,conventional,2018,Houston +5,2018-02-18,0.68,1572064.61,931553.8,160780.41,4045.42,475684.98,372117.42,103276.45,291.11,conventional,2018,Houston +6,2018-02-11,0.58,1870874.72,801390.67,156458.96,4407.32,908617.77,747968.17,160355.16,294.44,conventional,2018,Houston +7,2018-02-04,0.56,2381742.59,952746.89,300383.28,7990.32,1120622.1,1010539.42,109978.24,104.44,conventional,2018,Houston +8,2018-01-28,0.71,1647858.32,832418.81,103716.17,17666.27,694057.07,609576.26,84377.48,103.33,conventional,2018,Houston +9,2018-01-21,0.78,1584416.56,651432.75,153445.45,10598.32,768940.04,683790.27,85149.77,0.0,conventional,2018,Houston +10,2018-01-14,0.95,1316347.07,548774.22,292561.6,6066.33,468944.92,355573.55,113294.7,76.67,conventional,2018,Houston +11,2018-01-07,0.8,1390616.83,658828.73,171364.98,3656.03,556767.09,446637.02,110130.07,0.0,conventional,2018,Houston +0,2018-03-25,1.05,228837.36,53795.52,53103.06,7008.97,114929.81,96343.12,15834.92,2751.77,conventional,2018,Indianapolis +1,2018-03-18,1.01,209169.31,51782.0,34392.89,8471.15,114523.27,98947.12,12343.98,3232.17,conventional,2018,Indianapolis +2,2018-03-11,1.0,227995.61,56419.41,46098.37,6226.22,119251.61,104102.69,13239.57,1909.35,conventional,2018,Indianapolis +3,2018-03-04,1.09,207466.39,52161.49,35083.44,5581.83,114639.63,99830.1,11245.17,3564.36,conventional,2018,Indianapolis +4,2018-02-25,1.06,196615.34,37683.05,50954.95,6621.44,101355.9,74496.52,21698.04,5161.34,conventional,2018,Indianapolis +5,2018-02-18,0.91,186523.76,48716.42,27782.65,4155.93,105868.76,86145.76,17865.71,1857.29,conventional,2018,Indianapolis +6,2018-02-11,0.81,258008.01,86439.93,52397.39,5258.07,113912.62,90091.1,21306.88,2514.64,conventional,2018,Indianapolis +7,2018-02-04,0.79,335442.41,90305.67,110035.27,12010.66,123090.81,95765.52,25974.12,1351.17,conventional,2018,Indianapolis +8,2018-01-28,0.92,265600.2,64276.57,83870.54,8592.12,108860.97,93966.39,14884.55,10.03,conventional,2018,Indianapolis +9,2018-01-21,1.03,233732.16,62385.12,66055.88,11433.91,93857.25,84064.64,9782.65,9.96,conventional,2018,Indianapolis +10,2018-01-14,1.2,188231.39,42103.61,39886.19,14213.38,92028.21,87576.92,4431.35,19.94,conventional,2018,Indianapolis +11,2018-01-07,0.95,241296.05,77536.48,52880.27,15323.48,95555.82,88828.8,6694.44,32.58,conventional,2018,Indianapolis +0,2018-03-25,1.3,183489.03,97376.71,9226.39,569.02,76316.91,41255.77,34987.81,73.33,conventional,2018,Jacksonville +1,2018-03-18,1.12,234236.46,125894.69,13198.7,449.65,94693.42,38854.51,55768.91,70.0,conventional,2018,Jacksonville +2,2018-03-11,1.16,227714.5,126052.23,12557.63,439.09,88665.55,37739.81,50845.74,80.0,conventional,2018,Jacksonville +3,2018-03-04,1.12,229905.22,129813.08,12471.8,516.79,87103.55,35609.86,51397.02,96.67,conventional,2018,Jacksonville +4,2018-02-25,1.27,194729.14,103082.9,11763.72,428.58,79453.94,43722.7,35617.91,113.33,conventional,2018,Jacksonville +5,2018-02-18,1.31,185003.97,103477.92,10571.97,409.49,70544.59,34243.08,36218.18,83.33,conventional,2018,Jacksonville +6,2018-02-11,0.99,234557.28,134245.82,14759.96,521.63,85029.87,34342.57,50597.3,90.0,conventional,2018,Jacksonville +7,2018-02-04,0.96,365637.29,206007.07,24133.66,480.95,135015.61,79274.34,55614.6,126.67,conventional,2018,Jacksonville +8,2018-01-28,1.33,188556.57,103226.13,11072.2,397.94,73860.3,40095.88,33517.75,246.67,conventional,2018,Jacksonville +9,2018-01-21,1.14,231285.04,137389.34,14033.79,444.84,79417.07,34372.62,44668.89,375.56,conventional,2018,Jacksonville +10,2018-01-14,1.41,182389.99,105265.46,11039.81,332.17,65752.55,30382.8,34981.97,387.78,conventional,2018,Jacksonville +11,2018-01-07,1.2,197919.4,116008.83,13934.03,395.16,67581.38,26811.45,40448.82,321.11,conventional,2018,Jacksonville +0,2018-03-25,1.01,382746.42,76054.73,122475.03,6496.13,177720.53,75499.86,101806.23,414.44,conventional,2018,LasVegas +1,2018-03-18,1.17,311526.49,76056.35,92588.91,7007.47,135873.76,80016.52,55393.91,463.33,conventional,2018,LasVegas +2,2018-03-11,1.18,298805.55,61233.57,91407.22,8059.72,138105.04,83945.28,53527.54,632.22,conventional,2018,LasVegas +3,2018-03-04,1.05,371269.22,83041.34,107504.82,6520.79,174202.27,93651.31,80100.96,450.0,conventional,2018,LasVegas +4,2018-02-25,1.05,352533.59,76253.45,109855.16,6642.99,159781.99,76321.56,82977.1,483.33,conventional,2018,LasVegas +5,2018-02-18,1.13,325042.62,60956.79,107433.65,6230.52,150421.66,74636.88,75331.45,453.33,conventional,2018,LasVegas +6,2018-02-11,0.9,433809.84,89138.42,145487.36,5018.6,194165.46,71692.87,122026.15,446.44,conventional,2018,LasVegas +7,2018-02-04,0.88,512982.73,80027.98,212174.53,6000.36,214779.86,82603.57,131899.62,276.67,conventional,2018,LasVegas +8,2018-01-28,1.04,348153.29,70883.01,109999.79,5322.27,161948.22,82587.72,78955.87,404.63,conventional,2018,LasVegas +9,2018-01-21,1.05,364155.28,78984.26,100813.61,6256.28,178101.13,69513.95,108140.51,446.67,conventional,2018,LasVegas +10,2018-01-14,1.16,322932.06,79986.22,96281.04,7841.07,138823.73,71330.43,67126.63,366.67,conventional,2018,LasVegas +11,2018-01-07,1.05,345809.34,78921.42,113033.07,7515.77,146339.08,60836.42,85049.33,453.33,conventional,2018,LasVegas +0,2018-03-25,1.02,2843541.07,1007972.48,439940.61,63511.29,1332116.69,1248694.27,26861.69,56560.73,conventional,2018,LosAngeles +1,2018-03-18,0.91,3395262.7,1116865.19,700177.12,62395.31,1515825.08,1435807.52,25385.22,54632.34,conventional,2018,LosAngeles +2,2018-03-11,1.03,3059034.3,1152656.67,373411.39,72380.13,1460586.11,1373991.99,29875.02,56719.1,conventional,2018,LosAngeles +3,2018-03-04,1.1,2667104.06,985767.65,371412.09,77531.99,1232392.33,1144956.76,33430.29,54005.28,conventional,2018,LosAngeles +4,2018-02-25,1.0,3029956.79,1191842.89,462947.54,74821.65,1300344.71,1220997.59,30525.57,48821.55,conventional,2018,LosAngeles +5,2018-02-18,1.08,2749718.75,1148398.39,357520.77,74811.86,1168987.73,1089251.46,33031.23,46705.04,conventional,2018,LosAngeles +6,2018-02-11,0.85,3323882.38,1497227.27,412653.41,79663.02,1334338.68,1271672.84,20164.55,42501.29,conventional,2018,LosAngeles +7,2018-02-04,0.73,5070580.56,2532500.54,965716.73,93806.56,1478556.73,1414064.63,21441.6,43050.5,conventional,2018,LosAngeles +8,2018-01-28,1.08,2893717.97,1134192.09,707838.42,81296.65,970390.81,911703.94,16595.96,42090.91,conventional,2018,LosAngeles +9,2018-01-21,1.15,2653023.23,1230413.83,364552.16,82843.86,975213.38,918833.2,16789.91,39590.27,conventional,2018,LosAngeles +10,2018-01-14,1.28,2409159.6,1104367.71,403918.08,101443.02,799430.79,739977.4,16783.17,42670.22,conventional,2018,LosAngeles +11,2018-01-07,1.04,2725856.44,1275098.12,354221.03,91230.73,1005306.56,940327.03,18317.46,46662.07,conventional,2018,LosAngeles +0,2018-03-25,1.04,126662.1,31512.47,24342.6,306.07,70500.96,49898.62,19277.55,1324.79,conventional,2018,Louisville +1,2018-03-18,1.02,126213.08,32100.53,23976.21,204.7,69931.64,53034.96,15925.76,970.92,conventional,2018,Louisville +2,2018-03-11,1.08,117108.97,26859.44,26636.99,263.3,63349.24,46121.81,16452.99,774.44,conventional,2018,Louisville +3,2018-03-04,1.15,97173.74,22840.56,23137.75,219.31,50976.12,32351.06,17796.4,828.66,conventional,2018,Louisville +4,2018-02-25,1.13,99580.43,18466.45,25327.67,351.69,55434.62,32907.74,22038.31,488.57,conventional,2018,Louisville +5,2018-02-18,1.06,101522.07,21211.55,21287.42,197.27,58825.83,33930.79,24059.49,835.55,conventional,2018,Louisville +6,2018-02-11,0.87,130566.55,37508.86,30307.97,307.16,62442.56,42692.52,19050.04,700.0,conventional,2018,Louisville +7,2018-02-04,0.84,169828.77,37164.18,52978.0,805.93,78880.66,51038.21,27458.2,384.25,conventional,2018,Louisville +8,2018-01-28,1.18,96546.56,9754.12,34513.14,262.76,52016.54,31382.0,20628.88,5.66,conventional,2018,Louisville +9,2018-01-21,1.07,119167.18,9137.72,48370.29,699.18,60959.99,34517.5,26442.49,0.0,conventional,2018,Louisville +10,2018-01-14,1.15,121812.81,12826.43,44061.69,168.9,64755.79,32059.16,32693.81,2.82,conventional,2018,Louisville +11,2018-01-07,1.0,118958.8,29241.59,37772.39,170.77,51774.05,32655.63,19115.6,2.82,conventional,2018,Louisville +0,2018-03-25,1.37,698961.15,474642.82,53923.97,2049.21,168345.15,106478.51,61776.64,90.0,conventional,2018,MiamiFtLauderdale +1,2018-03-18,1.17,828837.57,575923.2,70118.84,2101.12,180694.41,102331.92,78219.16,143.33,conventional,2018,MiamiFtLauderdale +2,2018-03-11,1.19,888615.09,603091.72,74717.78,2009.9,208795.69,97893.87,110561.82,340.0,conventional,2018,MiamiFtLauderdale +3,2018-03-04,1.14,881388.29,639495.68,77645.93,1780.45,162466.23,112719.37,48965.19,781.67,conventional,2018,MiamiFtLauderdale +4,2018-02-25,1.36,647233.53,420401.52,51048.05,1505.14,174278.82,120093.14,54105.68,80.0,conventional,2018,MiamiFtLauderdale +5,2018-02-18,1.34,669345.2,451052.19,52028.41,2264.07,164000.53,95511.54,68415.66,73.33,conventional,2018,MiamiFtLauderdale +6,2018-02-11,1.0,856022.49,580099.01,76468.67,2153.49,197301.32,106427.69,90813.63,60.0,conventional,2018,MiamiFtLauderdale +7,2018-02-04,0.98,1310671.51,897435.51,118495.93,2277.74,292462.33,111637.21,180761.79,63.33,conventional,2018,MiamiFtLauderdale +8,2018-01-28,1.4,661212.22,440406.44,54463.83,2465.91,163876.04,95377.39,68491.98,6.67,conventional,2018,MiamiFtLauderdale +9,2018-01-21,1.19,825835.92,592863.38,79364.06,1920.89,151687.59,84785.47,66902.12,0.0,conventional,2018,MiamiFtLauderdale +10,2018-01-14,1.46,617912.41,416705.54,53783.64,2713.93,144709.3,81480.75,63228.55,0.0,conventional,2018,MiamiFtLauderdale +11,2018-01-07,1.22,746903.16,513398.84,68558.71,1946.21,162999.4,75200.98,87798.42,0.0,conventional,2018,MiamiFtLauderdale +0,2018-03-25,1.14,3911075.35,967164.69,1347066.73,25014.31,1571829.62,1390840.94,164970.47,16018.21,conventional,2018,Midsouth +1,2018-03-18,1.03,4558888.55,977322.22,1305676.96,24247.96,2251641.41,2062091.77,175886.82,13662.82,conventional,2018,Midsouth +2,2018-03-11,1.15,3874143.18,1003594.96,1291212.19,26832.41,1552503.62,1389780.99,153631.49,9091.14,conventional,2018,Midsouth +3,2018-03-04,1.2,3554252.13,823140.05,1320402.53,27046.92,1383662.63,1172483.78,200264.2,10914.65,conventional,2018,Midsouth +4,2018-02-25,1.24,3349766.24,786103.03,1219846.07,25950.6,1317866.54,1104688.0,201778.2,11400.34,conventional,2018,Midsouth +5,2018-02-18,1.25,3135330.32,709218.57,1150144.86,24776.61,1251190.28,1015372.21,224403.31,11414.76,conventional,2018,Midsouth +6,2018-02-11,1.1,3803512.06,1000333.25,1266291.36,24733.63,1512153.82,1303270.27,199986.79,8896.76,conventional,2018,Midsouth +7,2018-02-04,0.96,5286412.87,1259113.31,1697962.55,30102.36,2299234.65,2012145.29,280722.16,6367.2,conventional,2018,Midsouth +8,2018-01-28,1.19,3647362.37,778524.44,1643934.63,24013.62,1200889.68,1039975.99,157317.79,3595.9,conventional,2018,Midsouth +9,2018-01-21,1.13,4022549.75,834676.76,1528592.15,23691.17,1635589.67,1400848.71,232308.25,2432.71,conventional,2018,Midsouth +10,2018-01-14,1.28,3537243.04,793349.35,1435754.49,27610.81,1280528.39,1025338.52,251804.63,3385.24,conventional,2018,Midsouth +11,2018-01-07,1.2,3437632.8,998436.07,1224229.25,24958.08,1190009.4,1033913.96,152674.33,3421.11,conventional,2018,Midsouth +0,2018-03-25,0.95,306280.52,125788.54,10713.8,334.61,169443.57,136737.44,30406.07,2300.06,conventional,2018,Nashville +1,2018-03-18,0.89,316201.23,141265.4,11914.02,387.61,162634.2,131128.64,29834.21,1671.35,conventional,2018,Nashville +2,2018-03-11,0.94,304701.2,136420.81,11461.07,366.73,156452.59,129994.08,24769.62,1688.89,conventional,2018,Nashville +3,2018-03-04,1.03,243867.72,117403.93,10736.39,403.16,115324.24,82516.9,30595.68,2211.66,conventional,2018,Nashville +4,2018-02-25,1.08,230229.94,105794.31,10432.01,350.86,113652.76,83854.53,27860.65,1937.58,conventional,2018,Nashville +5,2018-02-18,1.05,230083.5,96889.96,9241.74,323.04,123628.76,84042.09,37977.78,1608.89,conventional,2018,Nashville +6,2018-02-11,0.8,303827.76,149429.09,10869.53,363.33,143165.81,107936.13,33522.21,1707.47,conventional,2018,Nashville +7,2018-02-04,0.8,391780.25,186689.66,15471.74,466.2,189152.65,141976.99,45308.77,1866.89,conventional,2018,Nashville +8,2018-01-28,1.08,221273.84,103525.83,11727.15,500.49,105520.37,79909.39,24040.98,1570.0,conventional,2018,Nashville +9,2018-01-21,1.0,273473.62,118667.23,20388.24,309.67,134108.48,95967.09,36876.95,1264.44,conventional,2018,Nashville +10,2018-01-14,1.04,291320.91,131981.77,22212.81,355.01,136771.32,97153.34,38004.65,1613.33,conventional,2018,Nashville +11,2018-01-07,0.85,303963.18,167628.98,10026.09,409.67,125898.44,108075.96,16240.96,1581.52,conventional,2018,Nashville +0,2018-03-25,1.04,305105.53,171335.77,20076.04,2425.1,111268.62,94895.33,15963.29,410.0,conventional,2018,NewOrleansMobile +1,2018-03-18,1.02,316969.55,181011.25,19002.68,2515.0,114440.62,95470.29,18533.66,436.67,conventional,2018,NewOrleansMobile +2,2018-03-11,1.05,316463.18,177320.17,22478.1,2158.0,114506.91,93807.58,20352.66,346.67,conventional,2018,NewOrleansMobile +3,2018-03-04,1.03,332378.96,190521.47,24646.65,2564.0,114646.84,97910.59,16489.58,246.67,conventional,2018,NewOrleansMobile +4,2018-02-25,0.98,373167.22,221362.46,38254.71,2432.0,111118.05,97659.22,13202.16,256.67,conventional,2018,NewOrleansMobile +5,2018-02-18,1.02,306966.07,173296.43,24837.13,1962.0,106870.51,94229.99,12303.85,336.67,conventional,2018,NewOrleansMobile +6,2018-02-11,0.97,289527.53,174271.9,18425.78,1971.0,94858.85,82271.42,12267.43,320.0,conventional,2018,NewOrleansMobile +7,2018-02-04,0.76,521184.22,352425.87,40674.51,2373.28,125710.56,114300.77,11056.46,353.33,conventional,2018,NewOrleansMobile +8,2018-01-28,1.08,314915.09,198062.3,21726.15,2409.57,92717.07,81430.82,10352.92,933.33,conventional,2018,NewOrleansMobile +9,2018-01-21,1.04,310587.46,192632.7,23240.42,2212.37,92501.97,79583.19,11776.55,1142.23,conventional,2018,NewOrleansMobile +10,2018-01-14,1.15,290571.66,170097.6,22912.24,2542.0,95019.82,76659.09,17342.95,1017.78,conventional,2018,NewOrleansMobile +11,2018-01-07,1.15,295941.23,183343.94,30856.25,2514.49,79226.55,64892.6,13346.17,987.78,conventional,2018,NewOrleansMobile +0,2018-03-25,1.34,1774776.77,63905.98,908653.71,843.45,801373.63,774634.09,23833.93,2905.61,conventional,2018,NewYork +1,2018-03-18,1.43,1564859.63,73760.49,911098.28,612.78,579388.08,552433.16,24302.69,2652.23,conventional,2018,NewYork +2,2018-03-11,1.35,1755052.38,64008.06,883441.96,828.96,806773.4,730150.78,74224.85,2397.77,conventional,2018,NewYork +3,2018-03-04,1.23,1931495.66,62328.7,1324579.73,754.74,543832.49,511679.31,29854.29,2298.89,conventional,2018,NewYork +4,2018-02-25,1.3,1615325.14,76602.52,841320.18,852.11,696550.33,632625.27,61658.39,2266.67,conventional,2018,NewYork +5,2018-02-18,1.24,1413687.38,87283.86,909950.56,885.94,415567.02,392965.43,20809.09,1792.5,conventional,2018,NewYork +6,2018-02-11,1.27,2051389.99,169218.18,1319012.42,1222.29,561937.1,539237.71,21409.81,1289.58,conventional,2018,NewYork +7,2018-02-04,1.28,2959541.38,96084.63,2250967.25,3253.28,609236.22,569361.35,38734.78,1140.09,conventional,2018,NewYork +8,2018-01-28,1.2,2278728.69,82652.82,1501055.47,745.5,694274.9,675215.26,18491.86,567.78,conventional,2018,NewYork +9,2018-01-21,1.27,2135242.76,46444.43,1642533.16,1165.1,445100.07,423570.05,21523.99,6.03,conventional,2018,NewYork +10,2018-01-14,1.67,1294149.71,39681.84,818051.5,1338.06,435078.31,415694.04,19384.27,0.0,conventional,2018,NewYork +11,2018-01-07,1.67,1287480.31,39884.07,866953.05,573.69,380069.5,348249.49,31820.01,0.0,conventional,2018,NewYork +0,2018-03-25,1.35,5134637.05,443927.42,2940789.85,6733.38,1743186.4,1495884.84,232372.83,14928.73,conventional,2018,Northeast +1,2018-03-18,1.34,4621126.31,453731.61,2646866.44,7610.65,1512917.61,1210266.06,287448.21,15203.34,conventional,2018,Northeast +2,2018-03-11,1.27,5214137.33,412621.66,3066433.39,6214.63,1728867.65,1436116.22,279239.21,13512.22,conventional,2018,Northeast +3,2018-03-04,1.22,5318554.52,364721.28,3542626.1,6184.77,1405022.37,1101807.62,291485.87,11728.88,conventional,2018,Northeast +4,2018-02-25,1.3,4525386.69,413430.69,2459409.32,7486.34,1645060.34,1357273.92,275551.97,12234.45,conventional,2018,Northeast +5,2018-02-18,1.31,4112725.9,371846.83,2539306.99,6573.57,1194998.51,976712.55,207823.43,10462.53,conventional,2018,Northeast +6,2018-02-11,1.24,5694136.21,565852.47,3782154.05,14275.87,1331853.82,1134698.11,186733.68,10422.03,conventional,2018,Northeast +7,2018-02-04,1.22,7508650.27,480603.9,5402444.45,14403.38,1611198.54,1275859.94,329682.23,5656.37,conventional,2018,Northeast +8,2018-01-28,1.23,5680957.63,418911.03,3730287.55,8112.22,1523646.83,1278588.12,242866.49,2192.22,conventional,2018,Northeast +9,2018-01-21,1.25,6137752.61,441673.49,4447691.02,16607.82,1231780.28,990188.67,241571.32,20.29,conventional,2018,Northeast +10,2018-01-14,1.49,4073408.38,282970.7,2558511.27,8555.47,1223370.94,955649.36,267714.63,6.95,conventional,2018,Northeast +11,2018-01-07,1.43,4230002.92,241291.93,2868985.89,12579.51,1107145.59,769968.02,337149.02,28.55,conventional,2018,Northeast +0,2018-03-25,1.46,483124.53,43595.07,365913.24,1529.8,72086.42,34546.13,36509.18,1031.11,conventional,2018,NorthernNewEngland +1,2018-03-18,1.4,428028.9,45178.07,315349.91,1354.16,66146.76,30679.34,34470.75,996.67,conventional,2018,NorthernNewEngland +2,2018-03-11,1.08,765746.37,50349.63,662866.85,1245.98,51283.91,27070.31,23244.71,968.89,conventional,2018,NorthernNewEngland +3,2018-03-04,1.35,458200.4,34173.58,343496.99,1176.07,79353.76,29431.43,49209.0,713.33,conventional,2018,NorthernNewEngland +4,2018-02-25,1.38,399308.69,22334.63,293596.94,1398.78,81978.34,37405.1,43809.91,763.33,conventional,2018,NorthernNewEngland +5,2018-02-18,1.35,395298.31,16084.53,297489.92,1168.92,80554.94,39537.13,40374.48,643.33,conventional,2018,NorthernNewEngland +6,2018-02-11,1.11,617475.89,19640.0,512849.57,3564.09,81422.23,35046.08,45221.71,1154.44,conventional,2018,NorthernNewEngland +7,2018-02-04,1.06,847261.25,22674.34,754096.71,2247.4,68242.8,34218.15,33787.99,236.66,conventional,2018,NorthernNewEngland +8,2018-01-28,1.44,441977.0,11731.68,360982.52,1920.26,67342.54,31388.47,35837.4,116.67,conventional,2018,NorthernNewEngland +9,2018-01-21,1.33,577116.22,11506.29,492832.55,3776.0,69001.38,27451.21,41550.17,0.0,conventional,2018,NorthernNewEngland +10,2018-01-14,1.42,419376.62,11067.05,322712.21,2011.52,83585.84,29827.25,53758.59,0.0,conventional,2018,NorthernNewEngland +11,2018-01-07,1.17,502851.14,10284.45,394541.74,4357.02,93667.93,23938.29,69729.64,0.0,conventional,2018,NorthernNewEngland +0,2018-03-25,1.32,429132.5,258217.83,25970.97,1426.07,143517.63,90870.28,52357.35,290.0,conventional,2018,Orlando +1,2018-03-18,1.11,508979.43,333194.13,32206.33,1543.14,142035.83,82165.92,59626.58,243.33,conventional,2018,Orlando +2,2018-03-11,1.13,529200.61,333909.79,33091.99,1477.79,160721.04,91546.69,68931.02,243.33,conventional,2018,Orlando +3,2018-03-04,1.13,533700.98,331886.57,35297.07,1526.93,164990.41,86462.68,78304.4,223.33,conventional,2018,Orlando +4,2018-02-25,1.3,416950.05,255777.62,26833.71,1404.42,132934.3,93328.68,39425.62,180.0,conventional,2018,Orlando +5,2018-02-18,1.31,396568.38,246434.79,23807.51,1357.35,124968.73,83331.83,41450.24,186.66,conventional,2018,Orlando +6,2018-02-11,1.0,516404.7,346562.74,36818.09,1200.04,131823.83,74552.03,57051.8,220.0,conventional,2018,Orlando +7,2018-02-04,0.99,759532.37,511953.91,60712.96,1345.0,185520.5,88148.1,97195.73,176.67,conventional,2018,Orlando +8,2018-01-28,1.35,414781.12,262391.05,28265.08,1290.4,122834.59,75243.3,47547.96,43.33,conventional,2018,Orlando +9,2018-01-21,1.16,482904.74,312991.46,36478.07,1521.7,131913.51,72049.51,59856.21,7.79,conventional,2018,Orlando +10,2018-01-14,1.4,387588.47,258150.99,26672.33,1199.66,101565.49,68412.96,33152.53,0.0,conventional,2018,Orlando +11,2018-01-07,1.19,430765.97,288886.48,34311.29,997.66,106570.54,65277.02,41293.52,0.0,conventional,2018,Orlando +0,2018-03-25,1.31,503277.65,43421.1,252219.75,248.04,207388.76,187566.62,17687.7,2134.44,conventional,2018,Philadelphia +1,2018-03-18,1.33,471175.79,44696.37,241775.09,334.21,184370.12,169602.85,12962.83,1804.44,conventional,2018,Philadelphia +2,2018-03-11,1.32,486492.24,45869.8,237689.35,297.86,202635.23,177287.22,23394.68,1953.33,conventional,2018,Philadelphia +3,2018-03-04,1.36,443651.36,37703.03,231605.34,335.17,174007.82,151599.08,20573.19,1835.55,conventional,2018,Philadelphia +4,2018-02-25,1.26,490292.38,55979.65,235447.72,314.32,198550.69,173945.98,22558.04,2046.67,conventional,2018,Philadelphia +5,2018-02-18,1.24,443312.68,67616.46,233345.32,236.22,142114.68,117913.98,22366.81,1833.89,conventional,2018,Philadelphia +6,2018-02-11,1.02,611269.34,130162.76,320845.9,213.8,160046.88,136379.5,22296.32,1371.06,conventional,2018,Philadelphia +7,2018-02-04,1.12,819224.3,62044.22,467927.8,645.87,288606.41,254149.59,33540.82,916.0,conventional,2018,Philadelphia +8,2018-01-28,1.23,537883.88,90381.5,256525.12,390.07,190587.19,183977.34,6289.85,320.0,conventional,2018,Philadelphia +9,2018-01-21,1.32,527860.09,69862.88,303263.33,383.99,154349.89,144550.12,9797.01,2.76,conventional,2018,Philadelphia +10,2018-01-14,1.5,419189.36,36351.3,232190.19,443.69,150204.18,126685.84,23512.81,5.53,conventional,2018,Philadelphia +11,2018-01-07,1.56,408203.49,22384.92,239185.79,407.29,146225.49,114764.69,31460.8,0.0,conventional,2018,Philadelphia +0,2018-03-25,0.59,1684537.69,932956.86,296968.67,14886.96,439725.2,216076.58,218329.73,5318.89,conventional,2018,PhoenixTucson +1,2018-03-18,0.71,1299190.92,626645.87,243424.78,14272.43,414847.84,204096.69,205346.71,5404.44,conventional,2018,PhoenixTucson +2,2018-03-11,0.58,1619549.79,941189.25,269078.43,14057.17,395224.94,227505.97,161870.08,5848.89,conventional,2018,PhoenixTucson +3,2018-03-04,0.61,1672899.36,962967.9,268082.25,12934.88,428914.33,266658.69,156802.31,5453.33,conventional,2018,PhoenixTucson +4,2018-02-25,0.72,1224254.4,621383.55,216588.22,13517.52,372765.11,218471.0,148190.88,6103.23,conventional,2018,PhoenixTucson +5,2018-02-18,0.59,1544983.15,923293.0,242108.74,12876.81,366704.6,228817.23,131177.62,6709.75,conventional,2018,PhoenixTucson +6,2018-02-11,0.64,1490711.97,793896.21,256987.03,12607.4,427221.33,241681.63,179607.48,5932.22,conventional,2018,PhoenixTucson +7,2018-02-04,0.59,1998260.47,1029017.42,511201.78,13917.11,444124.16,236056.82,202720.67,5346.67,conventional,2018,PhoenixTucson +8,2018-01-28,0.68,1592137.3,902410.41,288508.97,12312.08,388905.84,235248.48,147958.47,5698.89,conventional,2018,PhoenixTucson +9,2018-01-21,0.78,1315329.83,613600.56,246703.53,13332.26,441693.48,210780.39,226079.75,4833.34,conventional,2018,PhoenixTucson +10,2018-01-14,0.81,1354912.98,628591.78,284087.44,15249.83,426983.93,200603.91,221593.36,4786.66,conventional,2018,PhoenixTucson +11,2018-01-07,0.89,1025312.59,470698.28,222151.2,14761.13,317701.98,178186.6,134615.38,4900.0,conventional,2018,PhoenixTucson +0,2018-03-25,1.28,132097.87,44126.21,13225.39,1385.77,73360.5,39142.16,34191.67,26.67,conventional,2018,Pittsburgh +1,2018-03-18,0.98,198246.71,73389.94,22422.63,2599.53,99834.61,36169.0,63248.94,416.67,conventional,2018,Pittsburgh +2,2018-03-11,1.23,134625.32,40798.11,15527.17,1089.04,77211.0,48023.13,29181.2,6.67,conventional,2018,Pittsburgh +3,2018-03-04,1.23,120612.82,35950.34,14351.56,954.03,69356.89,43202.37,26151.19,3.33,conventional,2018,Pittsburgh +4,2018-02-25,0.98,184226.61,67240.38,21907.5,2122.3,92956.43,33977.62,58972.14,6.67,conventional,2018,Pittsburgh +5,2018-02-18,1.21,121002.8,32928.15,18278.91,1037.34,68758.4,40103.96,28647.77,6.67,conventional,2018,Pittsburgh +6,2018-02-11,1.22,116882.18,33543.27,21090.24,1094.97,61153.7,37660.14,23490.23,3.33,conventional,2018,Pittsburgh +7,2018-02-04,0.98,202604.34,78189.91,30466.23,2684.22,91263.98,38743.07,52514.24,6.67,conventional,2018,Pittsburgh +8,2018-01-28,1.23,119606.35,37562.68,19312.87,1415.85,61314.95,42492.34,18822.61,0.0,conventional,2018,Pittsburgh +9,2018-01-21,1.01,183347.37,83017.19,32323.3,2721.64,65285.24,36503.46,28781.78,0.0,conventional,2018,Pittsburgh +10,2018-01-14,1.3,117483.82,40292.71,22648.55,1560.23,52982.33,42859.85,10122.48,0.0,conventional,2018,Pittsburgh +11,2018-01-07,1.3,110929.77,40579.4,24117.63,1241.27,44991.47,36998.3,7993.17,0.0,conventional,2018,Pittsburgh +0,2018-03-25,1.08,2298609.62,870297.25,765738.57,8214.57,654359.23,603569.13,50091.31,698.79,conventional,2018,Plains +1,2018-03-18,1.06,2346527.89,948199.79,630350.03,9313.26,758664.81,701598.07,55972.31,1094.43,conventional,2018,Plains +2,2018-03-11,1.15,2152113.24,917962.76,512519.24,7989.48,713641.76,630813.83,77037.43,5790.5,conventional,2018,Plains +3,2018-03-04,1.15,2092354.75,888108.56,501748.08,8144.54,694353.57,627934.12,53944.75,12474.7,conventional,2018,Plains +4,2018-02-25,1.13,2115879.93,879720.97,527659.45,9044.15,699455.36,641489.04,57064.05,902.27,conventional,2018,Plains +5,2018-02-18,1.2,1807033.26,772199.5,506014.94,6634.13,522184.69,422152.59,99678.78,353.32,conventional,2018,Plains +6,2018-02-11,1.06,2198997.16,957709.32,540048.54,6998.12,694241.18,526134.96,167565.02,541.2,conventional,2018,Plains +7,2018-02-04,0.91,3316494.76,1609104.94,827998.81,9830.1,869560.91,678696.23,190573.14,291.54,conventional,2018,Plains +8,2018-01-28,0.99,2533937.56,1387712.4,515698.93,6371.3,624154.93,474701.92,149437.52,15.49,conventional,2018,Plains +9,2018-01-21,1.18,2208596.12,1051836.46,479599.9,7659.28,669500.48,562989.08,106461.22,50.18,conventional,2018,Plains +10,2018-01-14,1.25,2033823.81,891358.6,572445.19,6526.08,563493.94,436555.79,126910.37,27.78,conventional,2018,Plains +11,2018-01-07,1.17,2103531.72,1026303.18,570087.19,6096.19,501045.16,384809.96,116197.07,38.13,conventional,2018,Plains +0,2018-03-25,1.06,658169.39,75837.48,304991.92,14300.89,263039.1,166273.14,96427.92,338.04,conventional,2018,Portland +1,2018-03-18,1.04,759157.5,66714.53,222709.52,18614.12,451119.33,144978.05,305017.82,1123.46,conventional,2018,Portland +2,2018-03-11,1.11,676307.43,78454.87,308559.86,17485.05,271807.65,172296.2,99071.86,439.59,conventional,2018,Portland +3,2018-03-04,1.16,592281.81,75141.3,252079.64,16464.63,248596.24,163839.54,84108.76,647.94,conventional,2018,Portland +4,2018-02-25,1.01,772848.65,62880.59,259931.89,16312.94,433723.23,101200.06,328765.75,3757.42,conventional,2018,Portland +5,2018-02-18,1.06,636925.69,81789.75,278393.23,16614.38,260128.33,160051.88,99595.36,481.09,conventional,2018,Portland +6,2018-02-11,1.25,507333.47,87666.45,146006.56,17712.54,255947.92,156038.59,99378.83,530.5,conventional,2018,Portland +7,2018-02-04,0.88,1051039.26,78861.85,452243.28,15405.98,504528.15,111755.8,391141.49,1630.86,conventional,2018,Portland +8,2018-01-28,1.34,486679.98,80881.12,152913.11,16678.38,236207.37,142712.01,92874.02,621.34,conventional,2018,Portland +9,2018-01-21,1.17,608159.45,76804.75,271528.75,18147.81,241678.14,150749.79,90544.14,384.21,conventional,2018,Portland +10,2018-01-14,1.06,747864.18,76227.53,252457.95,17693.46,401485.24,99618.49,300591.83,1274.92,conventional,2018,Portland +11,2018-01-07,1.22,567488.01,107127.71,220686.01,14535.35,225138.94,156850.43,67977.85,310.66,conventional,2018,Portland +0,2018-03-25,1.24,362959.17,91484.37,120803.28,5307.11,145364.41,139121.67,6242.74,0.0,conventional,2018,RaleighGreensboro +1,2018-03-18,0.92,552900.21,96399.53,130874.15,4769.76,320856.77,312969.23,7886.43,1.11,conventional,2018,RaleighGreensboro +2,2018-03-11,1.2,384595.79,106062.76,132338.25,5654.47,140540.31,135823.49,4716.82,0.0,conventional,2018,RaleighGreensboro +3,2018-03-04,1.28,330201.25,88012.88,101227.44,5793.79,135167.14,128111.5,7055.64,0.0,conventional,2018,RaleighGreensboro +4,2018-02-25,1.28,343583.53,91255.51,120240.34,5425.62,126662.06,119370.42,7291.64,0.0,conventional,2018,RaleighGreensboro +5,2018-02-18,1.29,302077.06,78221.45,101748.26,5439.47,116667.88,108698.13,7969.75,0.0,conventional,2018,RaleighGreensboro +6,2018-02-11,1.1,367903.88,106372.21,91013.42,5010.88,165507.37,156789.32,8718.05,0.0,conventional,2018,RaleighGreensboro +7,2018-02-04,0.97,525075.42,119688.78,132891.28,5891.9,266603.46,254234.83,12368.63,0.0,conventional,2018,RaleighGreensboro +8,2018-01-28,1.34,322348.72,93956.4,105608.44,5131.66,117652.22,112705.62,4946.6,0.0,conventional,2018,RaleighGreensboro +9,2018-01-21,1.12,407825.0,101929.83,102790.68,4632.9,198471.59,191459.41,7012.18,0.0,conventional,2018,RaleighGreensboro +10,2018-01-14,1.29,360772.32,88430.39,138123.95,6178.1,128039.88,119713.01,8326.87,0.0,conventional,2018,RaleighGreensboro +11,2018-01-07,1.3,317209.9,113445.48,103827.25,5071.98,94865.19,90848.07,4017.12,0.0,conventional,2018,RaleighGreensboro +0,2018-03-25,1.1,316217.11,77628.91,88215.28,1928.8,148444.12,135644.21,11246.17,1553.74,conventional,2018,RichmondNorfolk +1,2018-03-18,0.98,365038.23,82914.3,97133.0,1515.48,183475.45,169506.35,12586.56,1382.54,conventional,2018,RichmondNorfolk +2,2018-03-11,1.0,345645.83,95991.36,94894.74,1776.1,152983.63,139363.88,13327.83,291.92,conventional,2018,RichmondNorfolk +3,2018-03-04,1.14,289118.6,69170.11,83513.89,1792.21,134642.39,115639.95,18714.11,288.33,conventional,2018,RichmondNorfolk +4,2018-02-25,1.13,277107.48,75032.02,85267.7,1914.32,114893.44,98624.54,15568.9,700.0,conventional,2018,RichmondNorfolk +5,2018-02-18,1.18,237767.01,52314.98,78322.91,1685.0,105444.12,85472.15,18198.64,1773.33,conventional,2018,RichmondNorfolk +6,2018-02-11,1.01,292742.42,73304.78,95360.46,1648.41,122428.77,107274.6,14805.83,348.34,conventional,2018,RichmondNorfolk +7,2018-02-04,0.86,469093.71,124229.81,128208.07,2217.45,214438.38,187621.35,26710.36,106.67,conventional,2018,RichmondNorfolk +8,2018-01-28,1.21,267305.91,63753.71,104053.12,1743.34,97755.74,87331.26,10414.48,10.0,conventional,2018,RichmondNorfolk +9,2018-01-21,1.12,322272.97,72502.51,112843.42,1772.99,135154.05,112298.65,22855.4,0.0,conventional,2018,RichmondNorfolk +10,2018-01-14,1.19,311185.65,76364.47,126208.57,1844.45,106768.16,84944.73,21823.43,0.0,conventional,2018,RichmondNorfolk +11,2018-01-07,1.03,300234.79,96040.45,94172.95,1657.28,108364.11,99730.22,8633.89,0.0,conventional,2018,RichmondNorfolk +0,2018-03-25,0.99,218058.0,62126.61,39027.74,219.42,116684.23,97377.29,18342.66,964.28,conventional,2018,Roanoke +1,2018-03-18,0.97,209053.83,55659.94,43568.23,225.48,109600.18,86740.75,22179.43,680.0,conventional,2018,Roanoke +2,2018-03-11,0.93,228663.46,68597.75,43277.55,205.1,116583.06,100506.78,15642.94,433.34,conventional,2018,Roanoke +3,2018-03-04,1.07,178885.9,43252.27,37048.49,245.11,98340.03,73252.51,24594.18,493.34,conventional,2018,Roanoke +4,2018-02-25,1.06,174394.57,41912.44,37321.57,206.18,94954.38,66920.87,27310.18,723.33,conventional,2018,Roanoke +5,2018-02-18,1.06,155902.21,34945.28,34511.48,261.0,86184.45,58311.72,27101.62,771.11,conventional,2018,Roanoke +6,2018-02-11,0.85,207658.32,54069.78,44325.77,286.59,108976.18,87195.47,21390.71,390.0,conventional,2018,Roanoke +7,2018-02-04,0.82,287728.25,82020.39,55243.26,294.67,150169.93,116918.04,32938.52,313.37,conventional,2018,Roanoke +8,2018-01-28,1.14,159289.18,31259.73,49375.92,283.44,78370.09,61701.01,16669.08,0.0,conventional,2018,Roanoke +9,2018-01-21,1.11,176001.32,32866.66,52406.08,271.62,90456.96,61172.35,29271.28,13.33,conventional,2018,Roanoke +10,2018-01-14,1.09,189671.57,35632.0,58767.29,184.49,95087.79,62260.15,32827.64,0.0,conventional,2018,Roanoke +11,2018-01-07,0.93,203482.84,57981.46,48543.26,161.75,96796.37,80678.76,16101.64,15.97,conventional,2018,Roanoke +0,2018-03-25,1.13,570446.95,135652.39,361227.57,812.1,72754.89,67652.14,624.2,4478.55,conventional,2018,Sacramento +1,2018-03-18,1.14,517463.38,154151.99,270169.95,840.67,92300.77,84669.16,734.35,6897.26,conventional,2018,Sacramento +2,2018-03-11,1.18,546435.55,151094.92,271726.6,862.4,122751.63,115769.46,1627.32,5354.85,conventional,2018,Sacramento +3,2018-03-04,1.18,559943.98,181586.15,241036.31,1031.75,136289.77,128164.6,2453.04,5672.13,conventional,2018,Sacramento +4,2018-02-25,0.99,589559.59,199926.0,308881.68,1158.23,79593.68,72189.31,1982.31,5422.06,conventional,2018,Sacramento +5,2018-02-18,1.19,530247.15,131656.46,330556.13,700.57,67333.99,57058.58,3145.98,7129.43,conventional,2018,Sacramento +6,2018-02-11,1.07,554598.15,193066.47,282308.93,1180.54,78042.21,70403.14,1800.9,5838.17,conventional,2018,Sacramento +7,2018-02-04,0.86,862337.1,262795.28,518775.3,1051.29,79715.23,71669.96,1595.61,6449.66,conventional,2018,Sacramento +8,2018-01-28,1.32,468915.38,158788.12,233834.71,1129.27,75163.28,67847.8,1197.57,6117.91,conventional,2018,Sacramento +9,2018-01-21,1.15,591211.37,160917.18,362263.89,1136.97,66893.33,60172.16,1674.44,5046.73,conventional,2018,Sacramento +10,2018-01-14,1.31,504269.23,144109.69,299605.5,1249.15,59304.89,52486.47,754.65,6063.77,conventional,2018,Sacramento +11,2018-01-07,1.35,465108.34,159862.75,247999.0,1045.98,56200.61,49386.35,522.37,6291.89,conventional,2018,Sacramento +0,2018-03-25,1.1,488321.93,140383.72,156203.0,13940.11,177795.1,168263.27,7442.94,2088.89,conventional,2018,SanDiego +1,2018-03-18,0.92,643491.07,159346.7,256098.92,13404.8,214640.65,201973.65,9993.67,2673.33,conventional,2018,SanDiego +2,2018-03-11,1.14,512155.1,165801.09,124279.19,16482.97,205591.85,197838.66,6495.41,1257.78,conventional,2018,SanDiego +3,2018-03-04,1.24,459124.87,144401.02,122241.79,18028.76,174453.3,165182.9,6458.18,2812.22,conventional,2018,SanDiego +4,2018-02-25,1.07,538360.91,175663.85,163499.41,15737.33,183460.32,174528.26,6291.5,2640.56,conventional,2018,SanDiego +5,2018-02-18,1.23,447962.28,152250.41,119244.74,18614.87,157852.26,147616.58,7409.57,2826.11,conventional,2018,SanDiego +6,2018-02-11,0.93,558926.47,222366.32,136214.59,16577.9,183767.66,175708.38,5873.73,2185.55,conventional,2018,SanDiego +7,2018-02-04,0.88,858101.65,311038.84,318396.18,23719.23,204947.4,193681.96,8547.66,2717.78,conventional,2018,SanDiego +8,2018-01-28,1.07,566134.81,168171.75,256042.84,16669.82,125250.4,118366.92,4446.82,2436.66,conventional,2018,SanDiego +9,2018-01-21,1.26,460708.82,192219.39,122174.21,17624.92,128690.3,121675.53,4729.22,2285.55,conventional,2018,SanDiego +10,2018-01-14,1.41,439652.12,160896.99,136499.29,21680.72,120575.12,113513.51,4689.39,2372.22,conventional,2018,SanDiego +11,2018-01-07,1.18,464720.86,192510.16,118483.12,19625.38,134102.2,125040.09,6169.89,2892.22,conventional,2018,SanDiego +0,2018-03-25,1.01,1203274.11,198289.36,895797.12,2202.74,106984.89,103033.73,186.2,3764.96,conventional,2018,SanFrancisco +1,2018-03-18,1.38,777300.99,215279.75,435108.21,2698.44,124214.59,119694.95,92.29,4427.35,conventional,2018,SanFrancisco +2,2018-03-11,1.29,904333.98,270255.15,434279.15,2517.79,197281.89,193813.92,196.57,3271.4,conventional,2018,SanFrancisco +3,2018-03-04,1.16,1051308.5,386100.25,426277.63,2512.69,236417.93,231913.11,1286.43,3218.39,conventional,2018,SanFrancisco +4,2018-02-25,1.17,984000.13,383689.73,431346.38,2127.86,166836.16,162913.33,609.2,3313.63,conventional,2018,SanFrancisco +5,2018-02-18,1.06,1149074.92,193705.48,835774.38,2425.38,117169.68,113216.42,316.78,3636.48,conventional,2018,SanFrancisco +6,2018-02-11,1.32,823086.86,267695.96,405148.34,3199.77,147042.79,144064.49,120.38,2857.92,conventional,2018,SanFrancisco +7,2018-02-04,0.84,1706251.05,459981.14,1113987.54,2886.78,129395.59,126171.02,282.38,2942.19,conventional,2018,SanFrancisco +8,2018-01-28,1.38,821352.05,246496.88,418612.3,2588.33,153654.54,150232.81,402.62,3019.11,conventional,2018,SanFrancisco +9,2018-01-21,1.01,1301932.95,259497.05,919666.37,2578.69,120190.84,117863.67,80.08,2247.09,conventional,2018,SanFrancisco +10,2018-01-14,1.21,1117376.99,193892.28,785766.05,2860.37,134858.29,130904.76,944.69,3008.84,conventional,2018,SanFrancisco +11,2018-01-07,1.46,818086.25,209267.23,466935.74,2525.01,139358.27,136440.18,104.56,2813.53,conventional,2018,SanFrancisco +0,2018-03-25,1.4,524265.69,103573.88,149867.07,998.53,269826.21,155866.8,113666.7,292.71,conventional,2018,Seattle +1,2018-03-18,1.21,685505.57,91648.17,191972.39,1244.44,400640.57,180451.72,219003.18,1185.67,conventional,2018,Seattle +2,2018-03-11,1.42,514742.18,96728.68,134993.6,920.6,282099.3,165320.5,116481.78,297.02,conventional,2018,Seattle +3,2018-03-04,1.43,456320.3,93608.78,135422.61,571.39,226717.52,143222.46,83237.67,257.39,conventional,2018,Seattle +4,2018-02-25,1.22,636462.47,86796.33,173328.81,710.13,375627.2,113771.59,260807.35,1048.26,conventional,2018,Seattle +5,2018-02-18,1.46,468075.23,92450.89,135317.0,639.03,239668.31,148877.37,90182.78,608.16,conventional,2018,Seattle +6,2018-02-11,1.4,468936.03,98161.81,129399.46,631.78,240742.98,136973.79,103420.83,348.36,conventional,2018,Seattle +7,2018-02-04,1.04,909127.6,189717.79,289707.88,853.2,428848.73,115360.8,312387.51,1100.42,conventional,2018,Seattle +8,2018-01-28,1.34,548587.07,125676.32,178484.53,599.03,243827.19,136634.87,106746.35,445.97,conventional,2018,Seattle +9,2018-01-21,1.31,600669.78,125236.3,202783.51,754.76,271895.21,138209.77,133100.87,584.57,conventional,2018,Seattle +10,2018-01-14,1.26,709903.13,109322.06,214002.35,1034.16,385544.56,136005.01,248487.47,1052.08,conventional,2018,Seattle +11,2018-01-07,1.43,474305.15,116665.02,133127.64,1132.42,223380.07,164408.65,58738.83,232.59,conventional,2018,Seattle +0,2018-03-25,1.19,450658.34,205952.19,73267.19,4313.11,167125.85,132488.4,31527.74,3109.71,conventional,2018,SouthCarolina +1,2018-03-18,1.06,542846.79,230046.31,78736.72,3687.24,230376.52,185198.74,41852.22,3325.56,conventional,2018,SouthCarolina +2,2018-03-11,1.13,482065.76,217013.42,79944.64,4374.67,180733.03,141288.83,36165.79,3278.41,conventional,2018,SouthCarolina +3,2018-03-04,1.16,457398.25,213096.65,71897.89,3953.91,168449.8,119609.41,45130.39,3710.0,conventional,2018,SouthCarolina +4,2018-02-25,1.25,405689.01,178666.56,70216.92,3960.77,152844.76,119270.49,30146.09,3428.18,conventional,2018,SouthCarolina +5,2018-02-18,1.2,396970.44,173173.18,65055.84,3355.35,155386.07,115741.19,35864.29,3780.59,conventional,2018,SouthCarolina +6,2018-02-11,1.05,452805.55,213633.63,65654.71,3577.01,169940.2,126052.2,40667.08,3220.92,conventional,2018,SouthCarolina +7,2018-02-04,0.96,678235.27,304189.26,97949.8,4065.74,272030.47,200563.64,68207.94,3258.89,conventional,2018,SouthCarolina +8,2018-01-28,1.22,435490.6,209197.71,72212.81,3511.52,150568.56,109267.86,38526.25,2774.45,conventional,2018,SouthCarolina +9,2018-01-21,1.1,506254.11,234534.94,77898.32,3486.87,190333.98,138219.59,49325.5,2788.89,conventional,2018,SouthCarolina +10,2018-01-14,1.24,423919.68,190128.64,82399.03,3424.35,147967.66,105934.11,39865.79,2167.76,conventional,2018,SouthCarolina +11,2018-01-07,1.19,402919.29,201490.47,64214.46,3089.49,134124.87,104998.57,26809.64,2316.66,conventional,2018,SouthCarolina +0,2018-03-25,0.7,9010588.32,3999735.71,966589.5,30130.82,4014132.29,3398569.92,546409.74,69152.63,conventional,2018,SouthCentral +1,2018-03-18,0.86,6579144.13,3289390.32,1115203.69,28384.4,2146165.72,1625982.91,455350.18,64832.63,conventional,2018,SouthCentral +2,2018-03-11,0.89,6621293.03,3309218.1,926223.64,28752.6,2357098.69,1820819.54,472662.31,63616.84,conventional,2018,SouthCentral +3,2018-03-04,0.79,7399716.74,3596162.29,1104894.9,30623.35,2668036.2,2185246.31,416456.32,66333.57,conventional,2018,SouthCentral +4,2018-02-25,0.76,7648478.57,3888705.13,989820.91,28149.02,2741803.51,2257193.31,420376.57,64233.63,conventional,2018,SouthCentral +5,2018-02-18,0.78,7057862.0,3904868.07,1066061.08,25700.92,2061231.93,1513446.56,496221.25,51564.12,conventional,2018,SouthCentral +6,2018-02-11,0.7,8043965.41,3886584.49,917502.14,24745.18,3215133.6,2589009.32,574460.87,51663.41,conventional,2018,SouthCentral +7,2018-02-04,0.65,10323174.59,4772921.95,1623613.82,38521.35,3888117.47,3351508.25,508738.57,27870.65,conventional,2018,SouthCentral +8,2018-01-28,0.82,7110840.99,3754423.75,780891.92,46906.91,2528618.41,2119296.19,408000.54,1321.68,conventional,2018,SouthCentral +9,2018-01-21,0.86,7128446.75,3429393.15,931790.87,36818.11,2730444.62,2311921.49,418189.88,333.25,conventional,2018,SouthCentral +10,2018-01-14,0.96,6514441.7,3135720.11,1470455.24,34008.03,1874258.32,1368263.33,505121.44,873.55,conventional,2018,SouthCentral +11,2018-01-07,0.9,6148732.19,3191091.1,1064902.97,24586.38,1868151.74,1373791.28,493580.0,780.46,conventional,2018,SouthCentral +0,2018-03-25,1.23,4454904.4,2489234.81,333310.56,18460.82,1613898.21,1117431.16,484934.57,11532.48,conventional,2018,Southeast +1,2018-03-18,1.07,5278752.32,2993709.42,397715.46,17560.86,1869766.58,1246650.93,611691.39,11424.26,conventional,2018,Southeast +2,2018-03-11,1.1,5239198.71,2984665.37,403000.78,18332.57,1833199.99,1211466.26,610537.41,11196.32,conventional,2018,Southeast +3,2018-03-04,1.12,5054856.62,2956740.05,410652.92,18500.63,1668963.02,1016239.81,640717.65,12005.56,conventional,2018,Southeast +4,2018-02-25,1.23,4302561.08,2378306.98,346795.18,16966.25,1560492.67,1104205.56,445832.46,10454.65,conventional,2018,Southeast +5,2018-02-18,1.23,4082887.98,2267185.54,315802.19,16241.89,1483658.36,996473.57,475690.59,11494.2,conventional,2018,Southeast +6,2018-02-11,0.97,5141310.45,3028127.72,399356.06,16907.18,1696919.49,1077827.17,608625.73,10466.59,conventional,2018,Southeast +7,2018-02-04,0.95,7516415.07,4492704.7,625805.92,17920.43,2379984.02,1405622.59,963895.82,10465.61,conventional,2018,Southeast +8,2018-01-28,1.27,4199974.24,2420770.45,355406.02,16642.51,1407155.26,901796.49,485922.1,19436.67,conventional,2018,Southeast +9,2018-01-21,1.14,4954059.33,2925027.75,461260.99,15728.65,1552041.94,879462.33,647625.95,24953.66,conventional,2018,Southeast +10,2018-01-14,1.31,4198992.14,2371136.88,403224.01,17012.38,1407618.87,845928.49,540110.99,21579.39,conventional,2018,Southeast +11,2018-01-07,1.14,4544750.92,2749042.52,402798.53,15351.11,1377558.76,873160.78,483913.55,20484.43,conventional,2018,Southeast +0,2018-03-25,1.15,99982.71,23281.1,29539.62,544.24,46617.75,22506.27,23986.48,125.0,conventional,2018,Spokane +1,2018-03-18,1.17,98328.71,21145.49,26680.03,594.18,49909.01,30325.62,19483.29,100.1,conventional,2018,Spokane +2,2018-03-11,1.3,82487.75,20810.25,22874.92,509.82,38292.76,25921.98,12329.14,41.64,conventional,2018,Spokane +3,2018-03-04,1.19,94804.19,21571.92,26446.43,559.0,46226.84,20795.01,25368.62,63.21,conventional,2018,Spokane +4,2018-02-25,1.16,97120.83,21800.62,24410.77,555.0,50354.44,21906.42,28350.8,97.22,conventional,2018,Spokane +5,2018-02-18,1.28,79223.81,21659.59,22242.85,495.67,34825.7,24328.12,10453.84,43.74,conventional,2018,Spokane +6,2018-02-11,1.16,95011.27,25569.06,24035.03,453.07,44954.11,21460.59,23406.38,87.14,conventional,2018,Spokane +7,2018-02-04,0.98,141362.77,36203.06,49563.73,560.55,55035.43,21807.59,33030.13,197.71,conventional,2018,Spokane +8,2018-01-28,1.16,88197.75,25211.46,28636.94,406.68,33942.67,23389.62,10519.31,33.74,conventional,2018,Spokane +9,2018-01-21,1.07,105005.26,24435.65,33395.51,517.34,46656.76,22478.8,24044.51,133.45,conventional,2018,Spokane +10,2018-01-14,1.2,102537.95,25067.66,30621.77,483.2,46365.32,22425.95,23850.96,88.41,conventional,2018,Spokane +11,2018-01-07,1.18,85027.89,27224.55,21852.06,487.93,35463.35,27270.42,8169.06,23.87,conventional,2018,Spokane +0,2018-03-25,1.25,165209.29,80921.04,7515.78,518.71,76253.76,65742.81,10499.14,11.81,conventional,2018,StLouis +1,2018-03-18,1.07,191261.08,90217.1,6557.08,418.97,94067.93,85441.83,8175.36,450.74,conventional,2018,StLouis +2,2018-03-11,1.02,249444.49,119801.0,6013.84,404.77,123224.88,99130.17,19950.02,4144.69,conventional,2018,StLouis +3,2018-03-04,1.32,172050.58,67717.05,9189.29,437.35,94706.89,69210.53,16517.88,8978.48,conventional,2018,StLouis +4,2018-02-25,1.29,188826.97,91834.24,12327.4,470.34,84194.99,70052.46,14017.07,125.46,conventional,2018,StLouis +5,2018-02-18,1.22,172847.28,100935.83,7745.41,388.29,63777.75,46000.98,17776.77,0.0,conventional,2018,StLouis +6,2018-02-11,1.15,174606.68,80260.52,6205.36,372.01,87768.79,67859.82,19908.97,0.0,conventional,2018,StLouis +7,2018-02-04,0.9,322673.64,174119.26,7272.61,456.41,140825.36,114234.23,26591.13,0.0,conventional,2018,StLouis +8,2018-01-28,1.24,208484.39,97083.74,7111.09,464.04,103825.52,81101.21,22724.31,0.0,conventional,2018,StLouis +9,2018-01-21,1.05,257250.2,98471.49,7427.5,582.75,150768.46,123950.8,26817.66,0.0,conventional,2018,StLouis +10,2018-01-14,1.36,171192.49,76981.79,12192.94,419.29,81598.47,65370.95,16227.52,0.0,conventional,2018,StLouis +11,2018-01-07,1.34,171869.94,93054.39,13758.41,541.05,64516.09,53120.31,11395.78,0.0,conventional,2018,StLouis +0,2018-03-25,1.38,93961.48,10004.38,57087.01,102.7,26767.39,11836.12,14931.27,0.0,conventional,2018,Syracuse +1,2018-03-18,1.2,71732.63,8952.71,33509.12,83.0,29187.8,9185.93,20001.87,0.0,conventional,2018,Syracuse +2,2018-03-11,1.12,90823.29,9823.97,45835.73,107.7,35055.89,20163.08,14891.7,1.11,conventional,2018,Syracuse +3,2018-03-04,1.1,89700.27,7365.24,50900.41,81.18,31353.44,9960.15,21393.29,0.0,conventional,2018,Syracuse +4,2018-02-25,1.24,68888.16,7676.62,31987.77,94.31,29129.46,20766.25,8363.21,0.0,conventional,2018,Syracuse +5,2018-02-18,1.3,65757.32,5423.11,33613.93,74.65,26645.63,16019.89,10625.74,0.0,conventional,2018,Syracuse +6,2018-02-11,1.3,78222.88,8860.55,46499.73,87.27,22775.33,12967.57,9807.76,0.0,conventional,2018,Syracuse +7,2018-02-04,1.15,113023.35,5795.04,77127.19,87.42,30013.7,7708.12,22305.58,0.0,conventional,2018,Syracuse +8,2018-01-28,1.34,73320.15,3345.87,42297.35,62.85,27614.08,5723.16,21890.92,0.0,conventional,2018,Syracuse +9,2018-01-21,1.45,84994.86,3424.37,55184.65,81.92,26303.92,11894.14,14409.78,0.0,conventional,2018,Syracuse +10,2018-01-14,1.31,79367.52,3452.94,45825.51,72.86,30016.21,14827.72,15188.49,0.0,conventional,2018,Syracuse +11,2018-01-07,1.21,68938.02,3687.73,46420.2,60.09,18770.0,5075.27,13694.73,0.0,conventional,2018,Syracuse +0,2018-03-25,1.33,469300.74,289527.11,33226.48,1342.31,145204.84,87355.05,57643.12,206.67,conventional,2018,Tampa +1,2018-03-18,1.13,574380.46,372785.73,43017.73,1301.33,157275.67,93201.11,63924.56,150.0,conventional,2018,Tampa +2,2018-03-11,1.16,580771.43,372746.58,45277.75,1442.66,161304.44,92677.26,68493.85,133.33,conventional,2018,Tampa +3,2018-03-04,1.14,597351.68,372631.01,48784.93,1465.95,174469.79,88569.48,85746.97,153.34,conventional,2018,Tampa +4,2018-02-25,1.3,484876.62,308452.46,39379.53,1251.31,135793.32,96039.07,39654.25,100.0,conventional,2018,Tampa +5,2018-02-18,1.33,442206.63,274990.42,33938.4,1121.33,132156.48,82223.49,49809.66,123.33,conventional,2018,Tampa +6,2018-02-11,1.0,569543.02,364195.92,46814.57,1035.27,157497.26,82780.08,74593.85,123.33,conventional,2018,Tampa +7,2018-02-04,0.98,853642.9,564685.19,79267.58,1096.9,208593.23,91618.58,116804.65,170.0,conventional,2018,Tampa +8,2018-01-28,1.36,461179.38,294233.52,36783.53,958.61,129203.72,77554.08,51622.97,26.67,conventional,2018,Tampa +9,2018-01-21,1.17,577173.29,375284.99,50138.85,1076.25,150673.2,76281.04,74392.16,0.0,conventional,2018,Tampa +10,2018-01-14,1.41,446629.55,286535.45,36727.96,1153.0,122213.14,76263.43,45949.71,0.0,conventional,2018,Tampa +11,2018-01-07,1.2,484007.91,317536.23,44226.34,1046.81,121198.53,68969.54,52215.66,13.33,conventional,2018,Tampa +0,2018-03-25,1.03,43409835.75,14130799.1,12125711.42,758801.12,16394524.11,12540327.19,3544729.39,309467.53,conventional,2018,TotalUS +1,2018-03-18,1.05,41386314.12,13707389.51,11061051.69,645380.85,15972492.07,11712807.19,3988101.74,271583.14,conventional,2018,TotalUS +2,2018-03-11,1.09,40449603.12,14089091.05,10758039.45,707578.82,14894893.8,11392828.89,3229556.62,272508.29,conventional,2018,TotalUS +3,2018-03-04,1.07,40741214.05,14439547.46,11289307.37,571747.72,14440611.5,10832907.44,3339214.96,268489.1,conventional,2018,TotalUS +4,2018-02-25,1.06,40021528.76,13829857.87,10415463.59,724330.16,15051877.14,10666942.78,4081397.72,303536.64,conventional,2018,TotalUS +5,2018-02-18,1.08,36709887.49,13262751.42,10491918.44,552969.73,12402247.9,9023351.68,3151157.42,227738.8,conventional,2018,TotalUS +6,2018-02-11,0.97,43167806.09,15870677.7,11541844.87,652856.58,15102426.94,10844852.22,4023485.04,234089.68,conventional,2018,TotalUS +7,2018-02-04,0.87,62505646.52,21620180.9,20445501.03,1066830.22,19373134.37,13384586.8,5719096.61,269450.96,conventional,2018,TotalUS +8,2018-01-28,1.09,40171640.84,14551799.5,12119884.61,575974.74,12923981.99,9749412.19,3041125.42,133444.38,conventional,2018,TotalUS +9,2018-01-21,1.08,42939821.55,14218843.83,13929702.12,928815.12,13862460.48,9866218.28,3789722.9,206519.3,conventional,2018,TotalUS +10,2018-01-14,1.2,37299945.22,12600918.24,11866197.84,652808.4,12180020.74,8128241.88,3917569.95,134208.91,conventional,2018,TotalUS +11,2018-01-07,1.13,36703156.72,13730992.75,10781339.21,677714.86,11513109.9,8231766.23,3130919.1,150424.57,conventional,2018,TotalUS +0,2018-03-25,0.93,7667064.46,2567279.74,1912986.38,118289.91,3068508.43,1309580.19,1745630.06,13298.18,conventional,2018,West +1,2018-03-18,0.99,7254940.65,2099082.66,1707752.84,115997.93,3332107.22,1333247.05,1982086.02,16774.15,conventional,2018,West +2,2018-03-11,1.0,6906412.5,2442241.76,1695925.97,130983.0,2637261.77,1435608.59,1184730.56,16922.62,conventional,2018,West +3,2018-03-04,0.96,7371498.76,2676545.9,1748192.04,118365.31,2828395.51,1432984.96,1379886.53,15524.02,conventional,2018,West +4,2018-02-25,0.97,7408451.31,2154414.96,1740237.35,117766.27,3396032.73,1164132.42,2205336.14,26564.17,conventional,2018,West +5,2018-02-18,0.98,6783106.02,2511897.38,1645249.93,107420.55,2518538.16,1311830.11,1187897.07,18810.98,conventional,2018,West +6,2018-02-11,0.93,7463494.79,2646176.67,1633418.28,109146.92,3074752.92,1203367.03,1856207.85,15178.04,conventional,2018,West +7,2018-02-04,0.83,10565056.41,3121272.58,3294335.87,142553.21,4006894.75,1151399.33,2838239.39,17256.03,conventional,2018,West +8,2018-01-28,1.01,7007265.31,2718390.81,1664995.75,93165.88,2530712.87,1254504.07,1260049.46,16159.34,conventional,2018,West +9,2018-01-21,1.04,7053820.12,2218365.17,1811849.78,106001.28,2917603.89,1196963.03,1707643.76,12997.1,conventional,2018,West +10,2018-01-14,1.05,7577456.14,2249412.86,2028819.77,113257.03,3185966.48,1152416.21,2017353.32,16196.95,conventional,2018,West +11,2018-01-07,1.08,6358768.95,2061960.91,1706532.52,108441.55,2481833.97,1175889.89,1291212.75,14731.33,conventional,2018,West +0,2018-03-25,0.84,965185.06,438526.12,199585.9,11017.42,316055.62,153009.89,160999.1,2046.63,conventional,2018,WestTexNewMexico +1,2018-03-18,0.88,855251.17,457635.79,137597.04,8422.08,251596.26,151191.85,98535.6,1868.81,conventional,2018,WestTexNewMexico +2,2018-03-11,0.94,897607.12,467501.55,154130.63,11380.26,264594.68,152380.6,110322.16,1891.92,conventional,2018,WestTexNewMexico +3,2018-03-04,0.88,935934.1,454269.43,164856.57,9907.85,306900.25,164965.35,138399.68,3535.22,conventional,2018,WestTexNewMexico +4,2018-02-25,0.88,895671.55,431217.01,171532.79,10590.75,282331.0,125973.31,147040.26,9317.43,conventional,2018,WestTexNewMexico +5,2018-02-18,0.89,896808.98,421321.21,191798.82,10065.33,273623.62,130348.75,140202.81,3072.06,conventional,2018,WestTexNewMexico +6,2018-02-11,0.75,1071952.06,544075.54,189862.1,7194.15,330820.27,113338.76,215753.74,1727.77,conventional,2018,WestTexNewMexico +7,2018-02-04,0.76,1272039.8,531469.08,368948.26,13078.2,358544.26,127833.03,229786.03,925.2,conventional,2018,WestTexNewMexico +8,2018-01-28,0.85,957086.16,479147.93,179489.19,7314.98,291134.06,143430.96,147376.43,326.67,conventional,2018,WestTexNewMexico +9,2018-01-21,0.84,1020913.2,505263.29,177911.4,9468.95,328269.56,118978.5,209131.06,160.0,conventional,2018,WestTexNewMexico +10,2018-01-14,0.9,950954.6,463945.73,188126.02,11227.47,287655.38,125408.69,162040.02,206.67,conventional,2018,WestTexNewMexico +11,2018-01-07,0.88,880266.52,436282.38,178669.53,9467.11,255847.5,99686.92,155870.58,290.0,conventional,2018,WestTexNewMexico +0,2015-12-27,1.83,989.55,8.16,88.59,0.0,892.8,892.8,0.0,0.0,organic,2015,Albany +1,2015-12-20,1.89,1163.03,30.24,172.14,0.0,960.65,960.65,0.0,0.0,organic,2015,Albany +2,2015-12-13,1.85,995.96,10.44,178.7,0.0,806.82,806.82,0.0,0.0,organic,2015,Albany +3,2015-12-06,1.84,1158.42,90.29,104.18,0.0,963.95,948.52,15.43,0.0,organic,2015,Albany +4,2015-11-29,1.94,831.69,0.0,94.73,0.0,736.96,736.96,0.0,0.0,organic,2015,Albany +5,2015-11-22,1.94,858.83,13.84,84.18,0.0,760.81,755.69,5.12,0.0,organic,2015,Albany +6,2015-11-15,1.89,1208.54,20.71,238.16,0.0,949.67,949.67,0.0,0.0,organic,2015,Albany +7,2015-11-08,1.88,1332.27,20.08,351.4,0.0,960.79,960.79,0.0,0.0,organic,2015,Albany +8,2015-11-01,1.88,1021.68,11.47,137.58,0.0,872.63,872.63,0.0,0.0,organic,2015,Albany +9,2015-10-25,1.83,1161.9,49.27,148.96,0.0,963.67,963.67,0.0,0.0,organic,2015,Albany +10,2015-10-18,1.97,969.29,10.31,158.07,0.0,800.91,800.91,0.0,0.0,organic,2015,Albany +11,2015-10-11,1.9,1170.01,28.65,88.25,0.0,1053.11,1035.28,17.83,0.0,organic,2015,Albany +12,2015-10-04,1.98,1145.88,5.74,165.26,0.0,974.88,964.68,10.2,0.0,organic,2015,Albany +13,2015-09-27,1.98,814.13,13.79,140.23,0.0,660.11,660.11,0.0,0.0,organic,2015,Albany +14,2015-09-20,1.98,774.2,42.63,228.13,0.0,503.44,503.44,0.0,0.0,organic,2015,Albany +15,2015-09-13,1.99,902.5,13.86,105.13,0.0,783.51,783.51,0.0,0.0,organic,2015,Albany +16,2015-09-06,1.86,1168.86,30.13,96.18,0.0,1042.55,1042.55,0.0,0.0,organic,2015,Albany +17,2015-08-30,1.88,1239.16,17.27,65.08,0.0,1156.81,1156.81,0.0,0.0,organic,2015,Albany +18,2015-08-23,1.87,1275.64,24.45,97.82,0.0,1153.37,1153.37,0.0,0.0,organic,2015,Albany +19,2015-08-16,2.0,1467.23,24.56,168.41,0.0,1274.26,1274.26,0.0,0.0,organic,2015,Albany +20,2015-08-09,1.88,1421.47,79.82,106.81,0.0,1234.84,1234.84,0.0,0.0,organic,2015,Albany +21,2015-08-02,2.0,1223.94,17.66,103.62,0.0,1102.66,1102.66,0.0,0.0,organic,2015,Albany +22,2015-07-26,2.01,1449.04,99.16,165.27,0.0,1184.61,1184.61,0.0,0.0,organic,2015,Albany +23,2015-07-19,2.08,1076.23,50.86,112.36,0.0,913.01,913.01,0.0,0.0,organic,2015,Albany +24,2015-07-12,2.01,1175.34,34.27,92.17,0.0,1048.9,1048.9,0.0,0.0,organic,2015,Albany +25,2015-07-05,2.04,1573.19,50.69,183.9,0.0,1338.6,1338.6,0.0,0.0,organic,2015,Albany +26,2015-06-28,2.02,1200.61,22.35,124.7,0.0,1053.56,1053.56,0.0,0.0,organic,2015,Albany +27,2015-06-21,2.09,1053.73,17.59,107.87,0.0,928.27,928.27,0.0,0.0,organic,2015,Albany +28,2015-06-14,2.03,1542.45,79.45,211.46,0.0,1251.54,1251.54,0.0,0.0,organic,2015,Albany +29,2015-06-07,1.93,1547.03,25.6,125.66,0.0,1395.77,1395.77,0.0,0.0,organic,2015,Albany +30,2015-05-31,1.9,1752.14,82.3,105.49,0.0,1564.35,1564.35,0.0,0.0,organic,2015,Albany +31,2015-05-24,1.93,1628.65,24.09,183.55,0.0,1421.01,1421.01,0.0,0.0,organic,2015,Albany +32,2015-05-17,1.87,1881.08,19.51,213.43,0.0,1648.14,1648.14,0.0,0.0,organic,2015,Albany +33,2015-05-10,1.98,2117.48,46.8,523.9,0.0,1546.78,1546.78,0.0,0.0,organic,2015,Albany +34,2015-05-03,2.03,1798.99,57.93,130.62,0.0,1610.44,1610.44,0.0,0.0,organic,2015,Albany +35,2015-04-26,1.9,929.61,27.01,30.53,0.0,872.07,872.07,0.0,0.0,organic,2015,Albany +36,2015-04-19,1.96,1516.24,18.01,102.45,0.0,1395.78,1395.78,0.0,0.0,organic,2015,Albany +37,2015-04-12,1.76,1634.59,51.75,93.38,0.0,1489.46,1489.46,0.0,0.0,organic,2015,Albany +38,2015-04-05,1.93,1526.1,15.75,202.52,0.0,1307.83,1307.83,0.0,0.0,organic,2015,Albany +39,2015-03-29,1.93,1082.44,24.75,173.26,0.0,884.43,884.43,0.0,0.0,organic,2015,Albany +40,2015-03-22,1.86,1375.02,40.57,326.78,0.0,1007.67,1007.67,0.0,0.0,organic,2015,Albany +41,2015-03-15,1.79,1473.56,19.18,164.73,0.0,1289.65,1289.65,0.0,0.0,organic,2015,Albany +42,2015-03-08,1.79,1626.32,49.73,331.14,0.0,1245.45,1245.45,0.0,0.0,organic,2015,Albany +43,2015-03-01,1.76,1663.35,32.82,105.25,0.0,1525.28,1525.28,0.0,0.0,organic,2015,Albany +44,2015-02-22,1.82,1152.33,11.34,31.76,0.0,1109.23,1109.23,0.0,0.0,organic,2015,Albany +45,2015-02-15,1.81,1182.3,22.74,83.02,0.0,1076.54,1076.54,0.0,0.0,organic,2015,Albany +46,2015-02-08,1.59,1770.87,27.36,152.74,0.0,1590.77,1590.77,0.0,0.0,organic,2015,Albany +47,2015-02-01,1.83,1228.51,33.12,99.36,0.0,1096.03,1096.03,0.0,0.0,organic,2015,Albany +48,2015-01-25,1.89,1115.89,14.87,148.72,0.0,952.3,952.3,0.0,0.0,organic,2015,Albany +49,2015-01-18,1.93,1118.47,8.02,178.78,0.0,931.67,931.67,0.0,0.0,organic,2015,Albany +50,2015-01-11,1.77,1182.56,39.0,305.12,0.0,838.44,838.44,0.0,0.0,organic,2015,Albany +51,2015-01-04,1.79,1373.95,57.42,153.88,0.0,1162.65,1162.65,0.0,0.0,organic,2015,Albany +0,2015-12-27,1.84,3195.0,1366.31,1652.5,0.0,176.19,103.33,72.86,0.0,organic,2015,Atlanta +1,2015-12-20,1.89,3973.64,2000.64,1925.52,0.0,47.48,36.66,10.82,0.0,organic,2015,Atlanta +2,2015-12-13,1.78,3610.91,1589.39,1581.83,0.0,439.69,208.32,231.37,0.0,organic,2015,Atlanta +3,2015-12-06,1.48,4400.25,1358.53,1735.98,0.0,1305.74,130.0,1175.74,0.0,organic,2015,Atlanta +4,2015-11-29,1.37,5205.88,1340.82,2104.37,0.0,1760.69,103.33,1657.36,0.0,organic,2015,Atlanta +5,2015-11-22,1.88,4015.99,1766.22,2096.22,0.0,153.55,70.0,83.55,0.0,organic,2015,Atlanta +6,2015-11-15,1.85,3888.18,1643.11,1661.96,0.0,583.11,470.0,113.11,0.0,organic,2015,Atlanta +7,2015-11-08,1.74,5317.73,1904.89,2047.54,0.0,1365.3,843.33,521.97,0.0,organic,2015,Atlanta +8,2015-11-01,1.79,5445.08,2074.17,2536.89,0.0,834.02,290.0,544.02,0.0,organic,2015,Atlanta +9,2015-10-25,1.87,5476.77,2441.49,2684.67,0.0,350.61,180.0,170.61,0.0,organic,2015,Atlanta +10,2015-10-18,1.94,5657.95,2169.0,2870.36,0.0,618.59,63.33,555.26,0.0,organic,2015,Atlanta +11,2015-10-11,1.75,7279.83,2387.77,3377.79,0.0,1514.27,0.0,1514.27,0.0,organic,2015,Atlanta +12,2015-10-04,1.79,7423.5,2743.66,3550.81,0.0,1129.03,0.0,1129.03,0.0,organic,2015,Atlanta +13,2015-09-27,2.01,5392.63,2232.51,3021.0,0.0,139.12,0.0,139.12,0.0,organic,2015,Atlanta +14,2015-09-20,2.04,5705.15,2378.64,3304.23,0.0,22.28,0.0,22.28,0.0,organic,2015,Atlanta +15,2015-09-13,2.0,5891.89,2340.17,3395.62,0.0,156.1,11.15,144.95,0.0,organic,2015,Atlanta +16,2015-09-06,1.98,6736.29,2522.07,3851.76,0.0,362.46,147.77,214.69,0.0,organic,2015,Atlanta +17,2015-08-30,1.53,9298.19,2349.53,3534.12,0.0,3414.54,1577.97,1836.57,0.0,organic,2015,Atlanta +18,2015-08-23,1.52,10342.09,2493.75,3862.12,0.0,3986.22,1841.3,2144.92,0.0,organic,2015,Atlanta +19,2015-08-16,1.83,6627.48,1953.69,3335.84,0.0,1337.95,1087.61,250.34,0.0,organic,2015,Atlanta +20,2015-08-09,2.01,5579.38,2291.03,2855.35,0.0,433.0,49.96,383.04,0.0,organic,2015,Atlanta +21,2015-08-02,1.8,5792.88,1981.77,2627.72,0.0,1183.39,277.57,905.82,0.0,organic,2015,Atlanta +22,2015-07-26,1.56,7888.45,2286.67,2468.79,0.0,3132.99,1537.46,1595.53,0.0,organic,2015,Atlanta +23,2015-07-19,1.29,7641.69,1571.09,2221.88,0.0,3848.72,1001.85,2846.87,0.0,organic,2015,Atlanta +24,2015-07-12,1.6,5946.34,1501.4,2208.56,0.0,2236.38,608.67,1627.71,0.0,organic,2015,Atlanta +25,2015-07-05,1.5,5744.26,1577.43,2748.05,0.0,1418.78,0.0,1418.78,0.0,organic,2015,Atlanta +26,2015-06-28,1.39,6313.67,1896.92,2306.95,0.0,2109.8,0.0,2109.8,0.0,organic,2015,Atlanta +27,2015-06-21,1.83,5003.46,1804.59,2660.93,0.0,537.94,0.0,537.94,0.0,organic,2015,Atlanta +28,2015-06-14,1.85,4484.76,1646.73,2236.3,0.0,601.73,2.73,599.0,0.0,organic,2015,Atlanta +29,2015-06-07,1.74,4096.05,1467.61,1864.5,0.0,763.94,147.2,616.74,0.0,organic,2015,Atlanta +30,2015-05-31,1.84,4803.11,1744.63,2484.81,0.0,573.67,97.88,475.79,0.0,organic,2015,Atlanta +31,2015-05-24,1.74,5464.3,1705.34,2707.04,0.0,1051.92,119.44,932.48,0.0,organic,2015,Atlanta +32,2015-05-17,1.78,5157.67,2076.48,2105.43,0.0,975.76,122.05,853.71,0.0,organic,2015,Atlanta +33,2015-05-10,1.82,5067.95,1878.0,2479.23,0.0,710.72,0.0,710.72,0.0,organic,2015,Atlanta +34,2015-05-03,2.03,3976.19,1325.62,2650.57,0.0,0.0,0.0,0.0,0.0,organic,2015,Atlanta +35,2015-04-26,2.01,4447.09,1627.63,2751.73,0.0,67.73,0.0,67.73,0.0,organic,2015,Atlanta +36,2015-04-19,1.63,6705.06,1820.12,4094.67,0.0,790.27,772.29,17.98,0.0,organic,2015,Atlanta +37,2015-04-12,1.79,6687.31,1899.54,4739.12,0.0,48.65,40.54,8.11,0.0,organic,2015,Atlanta +38,2015-04-05,1.74,5558.81,1595.31,3073.37,0.0,890.13,40.46,849.67,0.0,organic,2015,Atlanta +39,2015-03-29,1.88,5076.62,2016.24,2847.3,0.0,213.08,40.41,172.67,0.0,organic,2015,Atlanta +40,2015-03-22,1.62,6483.98,1891.11,4197.32,0.0,395.55,0.0,395.55,0.0,organic,2015,Atlanta +41,2015-03-15,1.19,13985.95,2004.93,9249.47,0.0,2731.55,0.0,2731.55,0.0,organic,2015,Atlanta +42,2015-03-08,1.22,16026.95,1579.22,11705.02,0.0,2742.71,0.0,2742.71,0.0,organic,2015,Atlanta +43,2015-03-01,1.22,16227.56,1683.31,12002.83,0.0,2541.42,0.0,2541.42,0.0,organic,2015,Atlanta +44,2015-02-22,1.38,10969.92,1780.63,7973.37,0.0,1215.92,83.33,1132.59,0.0,organic,2015,Atlanta +45,2015-02-15,1.46,7783.29,1449.86,5216.4,0.0,1117.03,700.0,417.03,0.0,organic,2015,Atlanta +46,2015-02-08,1.29,13288.3,1716.38,8656.15,0.0,2915.77,1316.67,1599.1,0.0,organic,2015,Atlanta +47,2015-02-01,1.44,7665.7,1565.49,4210.72,0.0,1889.49,1133.33,756.16,0.0,organic,2015,Atlanta +48,2015-01-25,1.87,3047.38,1578.59,735.23,0.0,733.56,533.33,200.23,0.0,organic,2015,Atlanta +49,2015-01-18,1.86,4294.01,2138.51,989.4,0.0,1166.1,1019.34,146.76,0.0,organic,2015,Atlanta +50,2015-01-11,1.84,3743.82,1613.69,1207.72,0.0,922.41,865.0,57.41,0.0,organic,2015,Atlanta +51,2015-01-04,1.76,3846.69,1500.15,938.35,0.0,1408.19,1071.35,336.84,0.0,organic,2015,Atlanta +0,2015-12-27,1.51,14201.42,363.5,5263.2,318.34,8256.38,2247.43,6008.95,0.0,organic,2015,BaltimoreWashington +1,2015-12-20,1.67,9296.03,504.11,4702.33,419.14,3670.45,1424.08,2246.37,0.0,organic,2015,BaltimoreWashington +2,2015-12-13,1.72,12403.85,550.57,4510.99,337.45,7004.84,2920.24,4084.6,0.0,organic,2015,BaltimoreWashington +3,2015-12-06,1.46,9717.55,432.82,4364.69,444.69,4475.35,715.2,3760.15,0.0,organic,2015,BaltimoreWashington +4,2015-11-29,1.32,10961.82,536.38,5920.71,432.48,4072.25,327.43,3744.82,0.0,organic,2015,BaltimoreWashington +5,2015-11-22,1.39,9576.59,587.25,6336.98,460.05,2192.31,602.03,1590.28,0.0,organic,2015,BaltimoreWashington +6,2015-11-15,1.64,6884.09,1133.05,4772.58,458.97,519.49,480.58,38.91,0.0,organic,2015,BaltimoreWashington +7,2015-11-08,1.65,7159.03,2700.66,2975.05,566.83,916.49,846.82,69.67,0.0,organic,2015,BaltimoreWashington +8,2015-11-01,1.6,9421.09,3323.3,4105.67,687.55,1304.57,935.87,368.7,0.0,organic,2015,BaltimoreWashington +9,2015-10-25,1.59,11223.38,998.73,6750.34,768.94,2705.37,926.69,1778.68,0.0,organic,2015,BaltimoreWashington +10,2015-10-18,1.54,10215.96,772.28,6014.66,685.19,2743.83,913.31,1830.52,0.0,organic,2015,BaltimoreWashington +11,2015-10-11,1.53,9453.04,459.96,5639.91,597.61,2755.56,1033.33,1722.23,0.0,organic,2015,BaltimoreWashington +12,2015-10-04,1.63,8857.68,451.99,6092.19,667.28,1646.22,1646.22,0.0,0.0,organic,2015,BaltimoreWashington +13,2015-09-27,1.7,7552.49,429.46,4774.78,616.56,1731.69,1720.53,11.16,0.0,organic,2015,BaltimoreWashington +14,2015-09-20,1.35,11150.19,1462.34,6346.51,519.67,2821.67,2818.89,2.78,0.0,organic,2015,BaltimoreWashington +15,2015-09-13,1.6,11772.43,1450.32,5418.35,698.25,4205.51,4202.73,2.78,0.0,organic,2015,BaltimoreWashington +16,2015-09-06,1.58,14379.6,2634.99,5041.08,717.8,5985.73,5977.42,8.31,0.0,organic,2015,BaltimoreWashington +17,2015-08-30,1.6,12626.2,2524.44,5164.04,715.02,4222.7,4219.94,2.76,0.0,organic,2015,BaltimoreWashington +18,2015-08-23,1.72,11555.75,4288.75,3541.08,635.31,3090.61,3087.86,2.75,0.0,organic,2015,BaltimoreWashington +19,2015-08-16,1.75,10280.59,4472.68,3521.79,864.71,1421.41,1404.99,16.42,0.0,organic,2015,BaltimoreWashington +20,2015-08-09,1.66,13132.64,3946.7,4109.96,836.42,4239.56,4225.93,13.63,0.0,organic,2015,BaltimoreWashington +21,2015-08-02,1.72,11937.63,3887.77,3335.55,719.46,3994.85,3983.99,10.86,0.0,organic,2015,BaltimoreWashington +22,2015-07-26,1.72,8502.95,3682.42,3166.87,599.98,1053.68,1050.98,2.7,0.0,organic,2015,BaltimoreWashington +23,2015-07-19,1.81,8669.79,2230.7,2168.87,649.81,3620.41,3620.41,0.0,0.0,organic,2015,BaltimoreWashington +24,2015-07-12,1.7,8904.2,4829.01,2707.82,759.55,607.82,607.82,0.0,0.0,organic,2015,BaltimoreWashington +25,2015-07-05,1.69,12480.84,6639.93,3113.54,902.49,1824.88,1824.88,0.0,0.0,organic,2015,BaltimoreWashington +26,2015-06-28,1.7,11718.49,5562.43,2728.68,882.13,2545.25,2545.25,0.0,0.0,organic,2015,BaltimoreWashington +27,2015-06-21,1.69,10939.94,5224.23,2873.85,713.71,2128.15,2122.8,5.35,0.0,organic,2015,BaltimoreWashington +28,2015-06-14,1.61,13924.11,5819.08,2943.69,956.31,4205.03,4199.7,5.33,0.0,organic,2015,BaltimoreWashington +29,2015-06-07,1.71,13808.71,5560.86,3115.87,1042.17,4089.81,4076.52,13.29,0.0,organic,2015,BaltimoreWashington +30,2015-05-31,1.69,12640.64,5802.91,3268.67,1060.5,2508.56,2505.91,2.65,0.0,organic,2015,BaltimoreWashington +31,2015-05-24,1.69,17042.46,6716.44,3800.9,993.22,5531.9,5531.9,0.0,0.0,organic,2015,BaltimoreWashington +32,2015-05-17,1.42,22470.42,6094.92,7358.76,3915.19,5101.55,5101.55,0.0,0.0,organic,2015,BaltimoreWashington +33,2015-05-10,1.7,14499.46,6023.88,2924.01,1128.81,4422.76,4414.82,7.94,0.0,organic,2015,BaltimoreWashington +34,2015-05-03,1.66,16396.29,6666.67,3755.62,1163.9,4810.1,4806.79,3.31,0.0,organic,2015,BaltimoreWashington +35,2015-04-26,1.7,13466.97,6339.49,3106.49,815.62,3205.37,3202.07,3.3,0.0,organic,2015,BaltimoreWashington +36,2015-04-19,1.64,15852.99,8223.03,3998.93,865.46,2765.57,2765.57,0.0,0.0,organic,2015,BaltimoreWashington +37,2015-04-12,1.66,15999.82,7671.04,3634.16,864.43,3830.19,3822.27,7.92,0.0,organic,2015,BaltimoreWashington +38,2015-04-05,1.63,14551.96,8144.98,3199.51,708.11,2499.36,2499.36,0.0,0.0,organic,2015,BaltimoreWashington +39,2015-03-29,1.63,15847.83,7578.28,3597.75,786.94,3884.86,3884.86,0.0,0.0,organic,2015,BaltimoreWashington +40,2015-03-22,1.25,16507.0,10883.75,4512.52,758.37,352.36,352.36,0.0,0.0,organic,2015,BaltimoreWashington +41,2015-03-15,1.59,11586.41,6527.12,3390.64,745.35,923.3,923.3,0.0,0.0,organic,2015,BaltimoreWashington +42,2015-03-08,1.56,19053.84,6590.46,3908.46,745.13,7809.79,7809.79,0.0,0.0,organic,2015,BaltimoreWashington +43,2015-03-01,1.58,15923.18,7386.79,4112.33,732.79,3691.27,3659.85,31.42,0.0,organic,2015,BaltimoreWashington +44,2015-02-22,1.19,23920.36,12844.54,5815.13,667.62,4593.07,4593.07,0.0,0.0,organic,2015,BaltimoreWashington +45,2015-02-15,1.56,16335.15,5709.5,3782.28,777.82,6065.55,6065.55,0.0,0.0,organic,2015,BaltimoreWashington +46,2015-02-08,1.43,14898.15,6050.1,4361.21,745.2,3741.64,3739.05,2.59,0.0,organic,2015,BaltimoreWashington +47,2015-02-01,1.15,27929.74,14635.12,8013.19,667.82,4613.61,4613.61,0.0,0.0,organic,2015,BaltimoreWashington +48,2015-01-25,1.41,15387.74,8097.26,5023.48,528.36,1738.64,1738.64,0.0,0.0,organic,2015,BaltimoreWashington +49,2015-01-18,1.41,14057.45,8148.89,4725.43,659.56,523.57,461.75,61.82,0.0,organic,2015,BaltimoreWashington +50,2015-01-11,1.22,26008.88,12258.26,7094.53,490.24,6165.85,6165.85,0.0,0.0,organic,2015,BaltimoreWashington +51,2015-01-04,1.29,19137.28,8040.64,6557.47,657.48,3881.69,3881.69,0.0,0.0,organic,2015,BaltimoreWashington +0,2015-12-27,0.91,2272.26,15.53,508.49,0.0,1748.24,1008.2,740.04,0.0,organic,2015,Boise +1,2015-12-20,1.17,1807.57,10.29,409.07,0.0,1388.21,689.27,698.94,0.0,organic,2015,Boise +2,2015-12-13,0.87,4054.49,26.21,738.96,2.58,3286.74,1147.38,2139.36,0.0,organic,2015,Boise +3,2015-12-06,1.36,1286.83,11.75,533.55,0.0,741.53,73.33,668.2,0.0,organic,2015,Boise +4,2015-11-29,1.34,1047.42,2.59,418.01,0.0,626.82,20.0,606.82,0.0,organic,2015,Boise +5,2015-11-22,1.54,1000.86,7.77,724.33,2.59,266.17,13.34,252.83,0.0,organic,2015,Boise +6,2015-11-15,1.78,881.14,17.27,538.4,0.0,325.47,140.0,185.47,0.0,organic,2015,Boise +7,2015-11-08,1.5,1059.69,12.99,732.62,0.0,314.08,43.3,270.78,0.0,organic,2015,Boise +8,2015-11-01,1.16,2767.88,2.6,1411.88,3.9,1349.5,257.15,1092.35,0.0,organic,2015,Boise +9,2015-10-25,1.95,1106.41,14.34,690.76,3.91,397.4,220.0,177.4,0.0,organic,2015,Boise +10,2015-10-18,2.05,1169.26,10.44,836.3,0.0,322.52,116.67,205.85,0.0,organic,2015,Boise +11,2015-10-11,1.95,1396.94,9.12,1160.59,0.0,227.23,0.0,227.23,0.0,organic,2015,Boise +12,2015-10-04,1.83,1802.83,11.69,1456.26,0.0,334.88,0.0,334.88,0.0,organic,2015,Boise +13,2015-09-27,2.02,1137.03,17.54,822.27,0.0,297.22,16.66,280.56,0.0,organic,2015,Boise +14,2015-09-20,1.93,956.97,19.33,723.01,0.0,214.63,16.66,197.97,0.0,organic,2015,Boise +15,2015-09-13,2.28,996.79,10.31,856.71,0.0,129.77,123.33,6.44,0.0,organic,2015,Boise +16,2015-09-06,2.35,908.95,9.22,813.54,0.0,86.19,3.33,82.86,0.0,organic,2015,Boise +17,2015-08-30,1.47,3103.71,8.98,2789.26,0.0,305.47,76.67,228.8,0.0,organic,2015,Boise +18,2015-08-23,2.29,937.64,7.69,794.15,0.0,135.8,33.33,102.47,0.0,organic,2015,Boise +19,2015-08-16,1.69,2649.76,5.12,1894.81,0.0,749.83,86.67,663.16,0.0,organic,2015,Boise +20,2015-08-09,1.91,1656.67,21.74,1098.33,0.0,536.6,353.33,183.27,0.0,organic,2015,Boise +21,2015-08-02,2.15,1196.53,12.8,972.43,0.0,211.3,136.67,74.63,0.0,organic,2015,Boise +22,2015-07-26,2.08,1555.89,26.92,1201.02,0.0,327.95,203.33,124.62,0.0,organic,2015,Boise +23,2015-07-19,1.45,3103.11,37.26,2527.06,0.0,538.79,203.33,335.46,0.0,organic,2015,Boise +24,2015-07-12,2.05,1454.28,7.73,1091.29,0.0,355.26,230.0,125.26,0.0,organic,2015,Boise +25,2015-07-05,2.18,1594.45,11.65,1359.32,0.0,223.48,203.34,20.14,0.0,organic,2015,Boise +26,2015-06-28,1.58,2550.15,15.62,2464.53,0.0,70.0,70.0,0.0,0.0,organic,2015,Boise +27,2015-06-21,1.49,1921.75,6.54,1657.53,0.0,257.68,123.33,134.35,0.0,organic,2015,Boise +28,2015-06-14,2.18,1402.21,19.66,1161.32,0.0,221.23,206.67,14.56,0.0,organic,2015,Boise +29,2015-06-07,2.24,1381.67,2.63,1262.37,0.0,116.67,116.67,0.0,0.0,organic,2015,Boise +30,2015-05-31,1.54,2693.46,19.2,2374.26,0.0,300.0,300.0,0.0,0.0,organic,2015,Boise +31,2015-05-24,1.97,1274.53,45.07,1108.3,0.0,121.16,100.0,21.16,0.0,organic,2015,Boise +32,2015-05-17,1.92,1178.2,22.86,1010.43,0.0,144.91,86.67,58.24,0.0,organic,2015,Boise +33,2015-05-10,1.71,1404.65,25.6,959.24,0.0,419.81,123.33,296.48,0.0,organic,2015,Boise +34,2015-05-03,1.55,1403.79,22.12,737.88,0.0,643.79,210.0,433.79,0.0,organic,2015,Boise +35,2015-04-26,1.36,2154.49,9.05,1579.24,0.0,566.2,203.33,362.87,0.0,organic,2015,Boise +36,2015-04-19,1.69,1453.59,5.14,1138.32,0.0,310.13,156.67,153.46,0.0,organic,2015,Boise +37,2015-04-12,1.41,3807.38,5.11,3290.24,0.0,512.03,43.33,468.7,0.0,organic,2015,Boise +38,2015-04-05,1.83,1701.31,6.35,1216.07,0.0,478.89,296.67,182.22,0.0,organic,2015,Boise +39,2015-03-29,1.52,3933.04,8.82,3776.05,0.0,148.17,116.67,31.5,0.0,organic,2015,Boise +40,2015-03-22,1.51,3570.83,1.25,3429.16,0.0,140.42,50.0,90.42,0.0,organic,2015,Boise +41,2015-03-15,1.63,1777.09,0.0,1209.68,0.0,567.41,366.67,200.74,0.0,organic,2015,Boise +42,2015-03-08,1.5,4314.45,9.95,3799.34,0.0,505.16,253.33,251.83,0.0,organic,2015,Boise +43,2015-03-01,1.68,1396.48,2.48,945.45,0.0,448.55,393.33,55.22,0.0,organic,2015,Boise +44,2015-02-22,1.75,1081.18,1.24,813.03,0.0,266.91,260.0,6.91,0.0,organic,2015,Boise +45,2015-02-15,1.62,1308.88,11.21,891.63,0.0,406.04,166.67,239.37,0.0,organic,2015,Boise +46,2015-02-08,1.35,3870.67,13.74,2832.21,0.0,1024.72,323.33,701.39,0.0,organic,2015,Boise +47,2015-02-01,1.43,1780.76,0.0,999.31,0.0,781.45,283.33,498.12,0.0,organic,2015,Boise +48,2015-01-25,1.82,1174.53,1.26,858.4,0.0,314.87,133.33,181.54,0.0,organic,2015,Boise +49,2015-01-18,1.44,2973.94,8.83,2513.36,0.0,451.75,143.33,308.42,0.0,organic,2015,Boise +50,2015-01-11,1.44,2378.68,0.0,1923.4,0.0,455.28,170.0,285.28,0.0,organic,2015,Boise +51,2015-01-04,1.64,1505.12,1.27,1129.5,0.0,374.35,186.67,187.68,0.0,organic,2015,Boise +0,2015-12-27,1.48,7986.08,9.65,775.99,39.82,7160.62,7149.89,10.73,0.0,organic,2015,Boston +1,2015-12-20,1.41,7939.48,26.64,511.07,61.76,7340.01,7340.01,0.0,0.0,organic,2015,Boston +2,2015-12-13,1.55,8563.97,18.24,434.18,251.75,7859.8,7848.99,10.81,0.0,organic,2015,Boston +3,2015-12-06,1.29,8286.37,37.55,466.83,0.0,7781.99,7781.99,0.0,0.0,organic,2015,Boston +4,2015-11-29,1.28,6869.81,11.37,388.1,0.0,6470.34,6470.34,0.0,0.0,organic,2015,Boston +5,2015-11-22,1.27,7668.48,71.07,394.69,0.0,7202.72,7202.72,0.0,0.0,organic,2015,Boston +6,2015-11-15,1.15,8779.47,6.99,534.36,0.0,8238.12,8232.57,5.55,0.0,organic,2015,Boston +7,2015-11-08,1.22,7507.69,13.29,486.67,0.0,7007.73,6990.96,16.77,0.0,organic,2015,Boston +8,2015-11-01,1.3,7166.04,14.71,574.96,0.0,6576.37,6093.84,482.53,0.0,organic,2015,Boston +9,2015-10-25,1.27,8471.24,11.38,407.12,0.0,8052.74,6608.59,1444.15,0.0,organic,2015,Boston +10,2015-10-18,1.26,6986.04,19.93,488.69,0.0,6477.42,6387.39,90.03,0.0,organic,2015,Boston +11,2015-10-11,1.26,7698.58,12.33,386.4,0.0,7299.85,7299.85,0.0,0.0,organic,2015,Boston +12,2015-10-04,1.28,8186.26,14.4,647.58,0.0,7524.28,7524.28,0.0,0.0,organic,2015,Boston +13,2015-09-27,2.0,2023.36,15.19,758.31,0.0,1249.86,1249.86,0.0,0.0,organic,2015,Boston +14,2015-09-20,2.01,2623.42,16.17,1123.97,0.0,1483.28,1483.28,0.0,0.0,organic,2015,Boston +15,2015-09-13,2.0,3283.74,13.63,1299.4,0.0,1970.71,1970.71,0.0,0.0,organic,2015,Boston +16,2015-09-06,1.97,3343.86,57.99,1242.5,0.0,2043.37,2043.37,0.0,0.0,organic,2015,Boston +17,2015-08-30,2.03,2633.6,20.81,1081.19,0.0,1531.6,1531.6,0.0,0.0,organic,2015,Boston +18,2015-08-23,2.0,3080.47,41.2,1201.46,0.0,1837.81,1837.81,0.0,0.0,organic,2015,Boston +19,2015-08-16,2.09,2694.61,297.3,1041.09,0.0,1356.22,1356.22,0.0,0.0,organic,2015,Boston +20,2015-08-09,2.02,2955.27,185.35,1066.42,0.0,1703.5,1703.5,0.0,0.0,organic,2015,Boston +21,2015-08-02,2.12,3357.29,116.22,1353.43,0.0,1887.64,1887.64,0.0,0.0,organic,2015,Boston +22,2015-07-26,2.02,3367.46,99.25,1956.83,0.0,1311.38,1304.71,6.67,0.0,organic,2015,Boston +23,2015-07-19,2.05,3388.25,18.63,2152.1,0.0,1217.52,1217.52,0.0,0.0,organic,2015,Boston +24,2015-07-12,2.19,2763.5,19.61,1646.24,0.0,1097.65,1097.65,0.0,0.0,organic,2015,Boston +25,2015-07-05,2.13,3135.77,2.0,1530.03,0.0,1603.74,1603.74,0.0,0.0,organic,2015,Boston +26,2015-06-28,2.03,3045.1,13.15,1625.69,0.0,1406.26,1406.26,0.0,0.0,organic,2015,Boston +27,2015-06-21,2.06,2662.63,82.6,1124.34,0.0,1455.69,1455.69,0.0,0.0,organic,2015,Boston +28,2015-06-14,2.03,2943.18,71.77,1018.87,0.0,1852.54,1852.54,0.0,0.0,organic,2015,Boston +29,2015-06-07,2.0,3641.0,67.78,1199.74,0.0,2373.48,2373.48,0.0,0.0,organic,2015,Boston +30,2015-05-31,1.94,4235.93,45.51,1123.51,0.0,3066.91,3066.91,0.0,0.0,organic,2015,Boston +31,2015-05-24,1.94,3507.89,28.09,1052.29,0.0,2427.51,2427.51,0.0,0.0,organic,2015,Boston +32,2015-05-17,1.91,4366.74,54.38,1651.19,0.0,2661.17,2661.17,0.0,0.0,organic,2015,Boston +33,2015-05-10,2.02,3428.91,76.25,1275.48,0.0,2077.18,2077.18,0.0,0.0,organic,2015,Boston +34,2015-05-03,1.82,4123.17,20.35,1934.87,0.0,2167.95,2167.95,0.0,0.0,organic,2015,Boston +35,2015-04-26,1.86,3517.6,4.29,956.52,0.0,2556.79,2556.79,0.0,0.0,organic,2015,Boston +36,2015-04-19,1.94,2696.21,13.06,912.2,0.0,1770.95,1770.95,0.0,0.0,organic,2015,Boston +37,2015-04-12,1.86,3619.27,44.38,915.97,0.0,2658.92,2658.92,0.0,0.0,organic,2015,Boston +38,2015-04-05,1.91,3202.71,75.42,932.58,0.0,2194.71,2194.71,0.0,0.0,organic,2015,Boston +39,2015-03-29,1.98,2121.96,22.27,745.34,0.0,1354.35,1314.35,40.0,0.0,organic,2015,Boston +40,2015-03-22,1.94,2763.26,6.36,1119.46,0.0,1637.44,1627.44,10.0,0.0,organic,2015,Boston +41,2015-03-15,1.99,1965.57,19.04,904.23,0.0,1042.3,1042.3,0.0,0.0,organic,2015,Boston +42,2015-03-08,1.91,2566.9,29.07,945.32,0.0,1592.51,1592.51,0.0,0.0,organic,2015,Boston +43,2015-03-01,1.85,3024.12,8.47,932.5,0.0,2083.15,2083.15,0.0,0.0,organic,2015,Boston +44,2015-02-22,1.74,3325.89,75.83,1062.64,0.0,2187.42,2187.42,0.0,0.0,organic,2015,Boston +45,2015-02-15,1.91,2271.95,18.98,678.93,0.0,1574.04,1574.04,0.0,0.0,organic,2015,Boston +46,2015-02-08,1.91,3098.29,15.18,948.71,0.0,2134.4,2134.4,0.0,0.0,organic,2015,Boston +47,2015-02-01,1.78,2943.85,12.18,1308.94,0.0,1622.73,1622.73,0.0,0.0,organic,2015,Boston +48,2015-01-25,2.01,1948.28,3.14,760.39,0.0,1184.75,1184.75,0.0,0.0,organic,2015,Boston +49,2015-01-18,2.0,2209.34,4.22,834.34,0.0,1370.78,1370.78,0.0,0.0,organic,2015,Boston +50,2015-01-11,1.94,2217.82,12.82,956.07,0.0,1248.93,1248.93,0.0,0.0,organic,2015,Boston +51,2015-01-04,1.83,2192.13,8.66,939.43,0.0,1244.04,1244.04,0.0,0.0,organic,2015,Boston +0,2015-12-27,1.47,5043.15,0.0,166.37,0.0,4876.78,2751.87,2124.91,0.0,organic,2015,BuffaloRochester +1,2015-12-20,1.5,5314.55,2.37,151.73,0.0,5160.45,3672.26,1488.19,0.0,organic,2015,BuffaloRochester +2,2015-12-13,1.45,4317.94,0.0,130.62,0.0,4187.32,1502.72,2684.6,0.0,organic,2015,BuffaloRochester +3,2015-12-06,1.57,2544.92,17.41,102.56,0.0,2424.95,2298.67,126.28,0.0,organic,2015,BuffaloRochester +4,2015-11-29,1.6,2261.52,16.57,129.95,0.0,2115.0,2096.59,18.41,0.0,organic,2015,BuffaloRochester +5,2015-11-22,1.57,2626.33,13.08,119.86,0.0,2493.39,2493.39,0.0,0.0,organic,2015,BuffaloRochester +6,2015-11-15,1.59,1852.24,2.38,117.99,0.0,1731.87,1731.87,0.0,0.0,organic,2015,BuffaloRochester +7,2015-11-08,1.55,4031.98,2.38,141.17,0.0,3888.43,3888.43,0.0,0.0,organic,2015,BuffaloRochester +8,2015-11-01,1.55,2738.24,14.25,92.6,0.0,2631.39,2631.39,0.0,0.0,organic,2015,BuffaloRochester +9,2015-10-25,1.55,3021.45,20.19,123.59,0.0,2877.67,2871.0,6.67,0.0,organic,2015,BuffaloRochester +10,2015-10-18,1.57,3334.38,14.26,159.32,0.0,3160.8,3160.8,0.0,0.0,organic,2015,BuffaloRochester +11,2015-10-11,1.52,4176.1,16.64,47.43,0.0,4112.03,4109.39,2.64,0.0,organic,2015,BuffaloRochester +12,2015-10-04,1.55,3447.03,29.73,177.18,0.0,3240.12,3240.12,0.0,0.0,organic,2015,BuffaloRochester +13,2015-09-27,1.58,1477.67,10.71,71.37,0.0,1395.59,1395.59,0.0,0.0,organic,2015,BuffaloRochester +14,2015-09-20,1.56,3291.61,33.31,127.31,0.0,3130.99,3130.99,0.0,0.0,organic,2015,BuffaloRochester +15,2015-09-13,1.55,4265.98,19.04,139.85,0.0,4107.09,4107.09,0.0,0.0,organic,2015,BuffaloRochester +16,2015-09-06,1.53,5283.38,14.28,92.4,0.0,5176.7,5176.7,0.0,0.0,organic,2015,BuffaloRochester +17,2015-08-30,1.62,1771.59,21.42,124.01,0.0,1626.16,1620.87,5.29,0.0,organic,2015,BuffaloRochester +18,2015-08-23,1.57,3681.62,19.03,181.17,0.0,3481.42,3478.78,2.64,0.0,organic,2015,BuffaloRochester +19,2015-08-16,1.89,716.29,46.05,154.22,0.0,516.02,516.02,0.0,0.0,organic,2015,BuffaloRochester +20,2015-08-09,1.6,2743.42,30.97,188.59,0.0,2523.86,2510.63,13.23,0.0,organic,2015,BuffaloRochester +21,2015-08-02,1.86,3348.4,78.56,154.19,0.0,3115.65,3115.65,0.0,0.0,organic,2015,BuffaloRochester +22,2015-07-26,1.87,3413.88,80.0,154.75,0.0,3179.13,3176.48,2.65,0.0,organic,2015,BuffaloRochester +23,2015-07-19,1.91,1728.99,56.05,123.39,0.0,1549.55,1549.55,0.0,0.0,organic,2015,BuffaloRochester +24,2015-07-12,2.02,614.3,90.49,103.52,0.0,420.29,417.64,2.65,0.0,organic,2015,BuffaloRochester +25,2015-07-05,1.91,1439.39,70.11,149.73,0.0,1219.55,1216.91,2.64,0.0,organic,2015,BuffaloRochester +26,2015-06-28,1.83,3567.3,49.83,125.23,0.0,3392.24,3388.91,3.33,0.0,organic,2015,BuffaloRochester +27,2015-06-21,1.9,1187.71,56.78,126.69,0.0,1004.24,953.13,51.11,0.0,organic,2015,BuffaloRochester +28,2015-06-14,1.83,3436.93,71.91,137.92,0.0,3227.1,3227.1,0.0,0.0,organic,2015,BuffaloRochester +29,2015-06-07,1.8,4777.04,45.84,167.38,0.0,4563.82,4563.82,0.0,0.0,organic,2015,BuffaloRochester +30,2015-05-31,1.79,5018.44,42.61,173.27,0.0,4802.56,4802.56,0.0,0.0,organic,2015,BuffaloRochester +31,2015-05-24,1.8,5016.96,33.04,169.92,0.0,4814.0,4814.0,0.0,0.0,organic,2015,BuffaloRochester +32,2015-05-17,1.79,5111.52,30.55,196.22,0.0,4884.75,4884.75,0.0,0.0,organic,2015,BuffaloRochester +33,2015-05-10,1.85,2161.08,32.79,183.76,0.0,1944.53,1944.53,0.0,0.0,organic,2015,BuffaloRochester +34,2015-05-03,1.81,3647.7,63.02,168.13,0.0,3416.55,3416.55,0.0,0.0,organic,2015,BuffaloRochester +35,2015-04-26,1.84,2560.97,29.08,204.73,0.0,2327.16,2327.16,0.0,0.0,organic,2015,BuffaloRochester +36,2015-04-19,1.83,2731.48,38.27,156.12,0.0,2537.09,2537.09,0.0,0.0,organic,2015,BuffaloRochester +37,2015-04-12,1.79,3473.94,30.13,145.17,0.0,3298.64,3298.64,0.0,0.0,organic,2015,BuffaloRochester +38,2015-04-05,1.8,2585.22,16.21,131.49,0.0,2437.52,2437.52,0.0,0.0,organic,2015,BuffaloRochester +39,2015-03-29,1.83,1642.66,13.88,128.39,0.0,1500.39,1500.39,0.0,0.0,organic,2015,BuffaloRochester +40,2015-03-22,1.93,530.96,0.0,147.63,0.0,383.33,383.33,0.0,0.0,organic,2015,BuffaloRochester +41,2015-03-15,1.79,712.4,4.64,130.35,0.0,577.41,577.41,0.0,0.0,organic,2015,BuffaloRochester +42,2015-03-08,1.56,2163.15,9.28,94.74,0.0,2059.13,2059.13,0.0,0.0,organic,2015,BuffaloRochester +43,2015-03-01,1.55,3520.47,17.44,126.08,0.0,3376.95,3376.95,0.0,0.0,organic,2015,BuffaloRochester +44,2015-02-22,1.53,5821.39,32.64,92.08,0.0,5696.67,5696.67,0.0,0.0,organic,2015,BuffaloRochester +45,2015-02-15,1.65,1269.74,12.86,123.93,0.0,1132.95,1132.95,0.0,0.0,organic,2015,BuffaloRochester +46,2015-02-08,1.54,3414.8,24.6,115.96,0.0,3274.24,3274.24,0.0,0.0,organic,2015,BuffaloRochester +47,2015-02-01,1.55,2808.55,18.78,102.35,0.0,2687.42,2687.42,0.0,0.0,organic,2015,BuffaloRochester +48,2015-01-25,1.6,1480.91,16.46,90.53,0.0,1373.92,1373.92,0.0,0.0,organic,2015,BuffaloRochester +49,2015-01-18,1.64,1426.87,91.85,137.49,0.0,1197.53,1197.53,0.0,0.0,organic,2015,BuffaloRochester +50,2015-01-11,1.59,2078.49,0.0,143.51,0.0,1934.98,1934.98,0.0,0.0,organic,2015,BuffaloRochester +51,2015-01-04,1.73,379.82,0.0,59.82,0.0,320.0,320.0,0.0,0.0,organic,2015,BuffaloRochester +0,2015-12-27,1.45,98576.63,14306.68,50893.97,0.0,33375.98,29507.45,3868.53,0.0,organic,2015,California +1,2015-12-20,1.35,99793.55,12746.47,48195.95,1.52,38849.61,25535.8,13313.81,0.0,organic,2015,California +2,2015-12-13,1.39,98605.4,13609.24,46518.56,3.05,38474.55,24359.79,14114.76,0.0,organic,2015,California +3,2015-12-06,1.48,91211.53,17839.96,47527.65,1.53,25842.39,25661.06,181.33,0.0,organic,2015,California +4,2015-11-29,1.75,83415.54,13195.19,48229.29,0.0,21991.06,21671.7,319.36,0.0,organic,2015,California +5,2015-11-22,1.6,89062.36,14803.41,51282.8,0.0,22976.15,22516.44,459.71,0.0,organic,2015,California +6,2015-11-15,1.59,97265.23,16244.94,59089.47,0.0,21930.82,21274.01,656.81,0.0,organic,2015,California +7,2015-11-08,1.66,101320.15,17074.6,62469.04,0.0,21776.51,20005.46,1771.05,0.0,organic,2015,California +8,2015-11-01,1.6,104331.19,20050.21,63408.14,0.0,20872.84,20158.5,714.34,0.0,organic,2015,California +9,2015-10-25,1.64,103918.03,20902.94,66867.39,0.0,16147.7,15174.85,972.85,0.0,organic,2015,California +10,2015-10-18,2.01,73799.28,15960.2,48820.15,3.09,9015.84,7988.73,1027.11,0.0,organic,2015,California +11,2015-10-11,2.07,70004.38,14400.49,48933.21,3.1,6667.58,6607.58,60.0,0.0,organic,2015,California +12,2015-10-04,2.0,81751.48,18414.61,57015.39,0.0,6321.48,6281.48,40.0,0.0,organic,2015,California +13,2015-09-27,1.85,80734.58,20639.23,50992.3,0.0,9103.05,9093.05,10.0,0.0,organic,2015,California +14,2015-09-20,1.92,94267.54,28489.91,60941.41,0.0,4836.22,4802.89,33.33,0.0,organic,2015,California +15,2015-09-13,1.97,95230.68,34760.74,54821.89,0.0,5648.05,5608.05,40.0,0.0,organic,2015,California +16,2015-09-06,1.99,88963.61,23875.92,56393.97,0.0,8693.72,8693.72,0.0,0.0,organic,2015,California +17,2015-08-30,1.98,90125.42,23449.1,55879.18,0.0,10797.14,10797.14,0.0,0.0,organic,2015,California +18,2015-08-23,1.85,107431.24,30454.79,63850.97,3.11,13122.37,13122.37,0.0,0.0,organic,2015,California +19,2015-08-16,1.96,90240.43,24630.76,52035.43,0.0,13574.24,13574.24,0.0,0.0,organic,2015,California +20,2015-08-09,2.03,86211.24,23147.23,52640.84,0.0,10423.17,10423.17,0.0,0.0,organic,2015,California +21,2015-08-02,1.99,89435.6,26067.67,54133.2,0.0,9234.73,9234.73,0.0,0.0,organic,2015,California +22,2015-07-26,1.93,98449.84,31604.24,57990.08,0.0,8855.52,8855.52,0.0,0.0,organic,2015,California +23,2015-07-19,1.89,103081.23,33422.15,59794.77,0.0,9864.31,9864.31,0.0,0.0,organic,2015,California +24,2015-07-12,1.8,115063.87,45482.88,60702.07,3.11,8875.81,8867.16,8.65,0.0,organic,2015,California +25,2015-07-05,1.67,135522.65,50367.92,74571.56,18.66,10564.51,10564.51,0.0,0.0,organic,2015,California +26,2015-06-28,1.67,116913.79,46841.35,61727.62,0.0,8344.82,8341.49,3.33,0.0,organic,2015,California +27,2015-06-21,1.69,116908.54,51294.9,55597.45,3.09,10013.1,10009.77,3.33,0.0,organic,2015,California +28,2015-06-14,1.68,116322.44,51607.99,54937.64,43.18,9733.63,9733.63,0.0,0.0,organic,2015,California +29,2015-06-07,1.67,114406.15,49301.79,52704.34,6.16,12393.86,12393.86,0.0,0.0,organic,2015,California +30,2015-05-31,1.5,119999.12,52846.87,53628.31,0.0,13523.94,13523.94,0.0,0.0,organic,2015,California +31,2015-05-24,1.5,135543.89,60597.97,63560.02,0.0,11385.9,11385.9,0.0,0.0,organic,2015,California +32,2015-05-17,1.49,133759.31,65830.84,56261.16,0.0,11667.31,11667.31,0.0,0.0,organic,2015,California +33,2015-05-10,1.4,160570.28,77103.7,70434.57,0.0,13032.01,13032.01,0.0,0.0,organic,2015,California +34,2015-05-03,1.48,119059.56,54176.97,51542.88,0.0,13339.71,13339.71,0.0,0.0,organic,2015,California +35,2015-04-26,1.5,128166.45,63539.73,51223.93,0.0,13402.79,13402.79,0.0,0.0,organic,2015,California +36,2015-04-19,1.52,123851.34,55948.06,57078.01,1.49,10823.78,10823.78,0.0,0.0,organic,2015,California +37,2015-04-12,1.5,119549.28,59861.05,49554.48,0.0,10133.75,10133.75,0.0,0.0,organic,2015,California +38,2015-04-05,1.52,120814.24,57082.3,51295.72,0.0,12436.22,12436.22,0.0,0.0,organic,2015,California +39,2015-03-29,1.53,111423.89,56829.47,44390.86,0.0,10203.56,10203.56,0.0,0.0,organic,2015,California +40,2015-03-22,1.3,112284.57,64969.37,40012.49,0.0,7302.71,7302.71,0.0,0.0,organic,2015,California +41,2015-03-15,1.52,94419.17,65441.32,21855.14,0.0,7122.71,7122.71,0.0,0.0,organic,2015,California +42,2015-03-08,1.48,108346.9,75016.11,21619.82,0.0,11710.97,11710.97,0.0,0.0,organic,2015,California +43,2015-03-01,1.15,250298.58,178033.64,59786.79,0.0,12478.15,12478.15,0.0,0.0,organic,2015,California +44,2015-02-22,1.41,136421.88,102232.31,25715.73,0.0,8473.84,8470.51,3.33,0.0,organic,2015,California +45,2015-02-15,1.52,116499.36,85444.97,21689.75,0.0,9364.64,9364.64,0.0,0.0,organic,2015,California +46,2015-02-08,1.35,132790.41,94440.9,24587.9,0.0,13761.61,13761.61,0.0,0.0,organic,2015,California +47,2015-02-01,1.11,196031.9,142332.45,41999.51,2.92,11697.02,11697.02,0.0,0.0,organic,2015,California +48,2015-01-25,1.3,121698.02,80952.24,28216.13,0.0,12529.65,12529.65,0.0,0.0,organic,2015,California +49,2015-01-18,1.24,195207.6,123138.29,58616.16,0.0,13453.15,13453.15,0.0,0.0,organic,2015,California +50,2015-01-11,1.1,158110.68,123712.51,25975.27,1.47,8421.43,8421.43,0.0,0.0,organic,2015,California +51,2015-01-04,1.24,142349.77,107490.73,25711.96,2.93,9144.15,9144.15,0.0,0.0,organic,2015,California +0,2015-12-27,1.9,2948.39,389.52,1416.49,682.38,460.0,460.0,0.0,0.0,organic,2015,Charlotte +1,2015-12-20,1.9,2940.47,326.79,1462.14,604.87,546.67,546.67,0.0,0.0,organic,2015,Charlotte +2,2015-12-13,1.9,2720.17,321.35,1353.35,527.18,518.29,473.33,44.96,0.0,organic,2015,Charlotte +3,2015-12-06,1.95,2487.94,162.31,1278.07,577.56,470.0,470.0,0.0,0.0,organic,2015,Charlotte +4,2015-11-29,1.96,2617.44,142.69,1404.09,638.12,432.54,425.87,6.67,0.0,organic,2015,Charlotte +5,2015-11-22,1.97,2798.21,234.13,1454.12,728.78,381.18,377.85,3.33,0.0,organic,2015,Charlotte +6,2015-11-15,1.94,3002.61,244.63,1295.86,828.52,633.6,633.6,0.0,0.0,organic,2015,Charlotte +7,2015-11-08,1.91,3103.1,332.85,1195.59,751.01,823.65,820.32,3.33,0.0,organic,2015,Charlotte +8,2015-11-01,1.92,3507.63,317.46,1300.88,1100.02,789.27,789.27,0.0,0.0,organic,2015,Charlotte +9,2015-10-25,1.93,3851.01,342.3,1551.67,1123.58,833.46,833.46,0.0,0.0,organic,2015,Charlotte +10,2015-10-18,1.97,3681.19,336.37,1394.0,1143.22,807.6,807.6,0.0,0.0,organic,2015,Charlotte +11,2015-10-11,1.94,3614.95,253.41,1370.54,1016.7,974.3,974.3,0.0,0.0,organic,2015,Charlotte +12,2015-10-04,2.06,3480.18,337.52,1218.57,808.84,1115.25,1115.25,0.0,0.0,organic,2015,Charlotte +13,2015-09-27,2.16,2965.81,291.76,1201.29,867.01,605.75,605.75,0.0,0.0,organic,2015,Charlotte +14,2015-09-20,1.97,4103.72,307.22,1181.6,842.48,1772.42,1772.42,0.0,0.0,organic,2015,Charlotte +15,2015-09-13,2.02,3992.43,327.06,1255.8,928.56,1481.01,1481.01,0.0,0.0,organic,2015,Charlotte +16,2015-09-06,2.01,4259.63,250.27,1331.42,1018.35,1659.59,1659.59,0.0,0.0,organic,2015,Charlotte +17,2015-08-30,2.01,4203.2,274.43,1401.28,1025.96,1501.53,1501.53,0.0,0.0,organic,2015,Charlotte +18,2015-08-23,2.06,4602.39,272.26,1766.07,1193.83,1370.23,1370.23,0.0,0.0,organic,2015,Charlotte +19,2015-08-16,2.04,4279.91,150.98,1496.03,1269.58,1363.32,1363.32,0.0,0.0,organic,2015,Charlotte +20,2015-08-09,1.98,4920.3,374.39,2116.41,1410.55,1018.95,1018.95,0.0,0.0,organic,2015,Charlotte +21,2015-08-02,2.11,3977.77,358.91,1441.63,1083.55,1093.68,1093.68,0.0,0.0,organic,2015,Charlotte +22,2015-07-26,2.08,3206.72,228.17,1265.39,861.44,851.72,835.05,16.67,0.0,organic,2015,Charlotte +23,2015-07-19,2.05,3885.45,199.61,1516.86,1018.6,1150.38,1150.38,0.0,0.0,organic,2015,Charlotte +24,2015-07-12,2.13,3962.07,287.98,1458.03,1144.44,1071.62,1071.62,0.0,0.0,organic,2015,Charlotte +25,2015-07-05,2.16,3669.96,278.99,1514.86,1196.67,679.44,679.44,0.0,0.0,organic,2015,Charlotte +26,2015-06-28,2.15,3823.73,414.23,1740.69,1016.64,652.17,652.17,0.0,0.0,organic,2015,Charlotte +27,2015-06-21,2.19,3425.95,336.07,1506.6,1081.37,501.91,501.91,0.0,0.0,organic,2015,Charlotte +28,2015-06-14,2.06,4040.75,325.75,1432.84,1059.26,1222.9,1222.9,0.0,0.0,organic,2015,Charlotte +29,2015-06-07,2.02,4369.42,278.55,1378.4,1159.44,1553.03,1553.03,0.0,0.0,organic,2015,Charlotte +30,2015-05-31,2.14,4092.07,335.32,1524.77,1348.57,883.41,883.41,0.0,0.0,organic,2015,Charlotte +31,2015-05-24,2.07,4774.56,405.0,1601.85,1473.53,1294.18,1294.18,0.0,0.0,organic,2015,Charlotte +32,2015-05-17,1.26,11088.2,476.58,4780.37,4975.49,855.76,855.76,0.0,0.0,organic,2015,Charlotte +33,2015-05-10,2.05,4245.72,465.84,1282.98,1191.26,1305.64,1305.64,0.0,0.0,organic,2015,Charlotte +34,2015-05-03,1.8,4635.16,265.21,1499.19,1856.14,1014.62,1014.62,0.0,0.0,organic,2015,Charlotte +35,2015-04-26,2.18,3471.08,295.75,1054.18,1150.52,970.63,970.63,0.0,0.0,organic,2015,Charlotte +36,2015-04-19,2.06,4163.99,234.0,1311.9,1400.1,1217.99,1217.99,0.0,0.0,organic,2015,Charlotte +37,2015-04-12,2.12,3870.58,255.73,1460.35,1256.22,898.28,898.28,0.0,0.0,organic,2015,Charlotte +38,2015-04-05,2.08,3643.37,303.66,1235.08,1127.82,976.81,976.81,0.0,0.0,organic,2015,Charlotte +39,2015-03-29,1.96,3493.98,267.8,1467.6,1227.69,530.89,530.89,0.0,0.0,organic,2015,Charlotte +40,2015-03-22,1.9,4289.1,329.84,1603.42,1221.87,1133.97,1133.97,0.0,0.0,organic,2015,Charlotte +41,2015-03-15,1.87,3890.97,205.39,1300.42,1102.84,1282.32,1282.32,0.0,0.0,organic,2015,Charlotte +42,2015-03-08,1.84,4143.11,215.98,1312.61,1163.42,1451.1,1451.1,0.0,0.0,organic,2015,Charlotte +43,2015-03-01,1.9,3545.33,189.99,1371.06,1099.96,884.32,884.32,0.0,0.0,organic,2015,Charlotte +44,2015-02-22,1.9,3180.29,198.13,1119.06,992.87,870.23,870.23,0.0,0.0,organic,2015,Charlotte +45,2015-02-15,1.92,3125.59,219.08,1098.75,1056.49,751.27,751.27,0.0,0.0,organic,2015,Charlotte +46,2015-02-08,1.87,4011.02,188.23,1382.91,1092.82,1347.06,1347.06,0.0,0.0,organic,2015,Charlotte +47,2015-02-01,1.93,3557.34,210.49,1244.18,1457.98,644.69,644.69,0.0,0.0,organic,2015,Charlotte +48,2015-01-25,2.29,2694.11,347.67,956.65,920.11,469.68,469.68,0.0,0.0,organic,2015,Charlotte +49,2015-01-18,2.15,2697.81,346.76,744.32,766.41,840.32,840.32,0.0,0.0,organic,2015,Charlotte +50,2015-01-11,2.29,2390.22,155.92,969.82,832.7,431.78,431.78,0.0,0.0,organic,2015,Charlotte +51,2015-01-04,2.13,2965.62,151.7,882.52,905.77,1025.63,1025.63,0.0,0.0,organic,2015,Charlotte +0,2015-12-27,1.58,20995.37,1064.71,19320.66,0.0,610.0,610.0,0.0,0.0,organic,2015,Chicago +1,2015-12-20,1.58,22452.3,730.65,21574.99,0.0,146.66,143.33,3.33,0.0,organic,2015,Chicago +2,2015-12-13,1.59,24059.71,876.48,23109.9,0.0,73.33,73.33,0.0,0.0,organic,2015,Chicago +3,2015-12-06,1.59,27081.13,819.66,26104.8,0.0,156.67,156.67,0.0,0.0,organic,2015,Chicago +4,2015-11-29,1.59,22168.32,457.29,21677.7,0.0,33.33,33.33,0.0,0.0,organic,2015,Chicago +5,2015-11-22,1.57,24095.66,716.68,23255.65,0.0,123.33,120.0,3.33,0.0,organic,2015,Chicago +6,2015-11-15,1.58,25759.36,609.3,24890.06,0.0,260.0,260.0,0.0,0.0,organic,2015,Chicago +7,2015-11-08,1.59,26247.16,643.23,24713.93,0.0,890.0,890.0,0.0,0.0,organic,2015,Chicago +8,2015-11-01,1.6,24450.48,936.9,23373.58,0.0,140.0,140.0,0.0,0.0,organic,2015,Chicago +9,2015-10-25,1.61,22648.93,1033.01,21495.92,0.0,120.0,120.0,0.0,0.0,organic,2015,Chicago +10,2015-10-18,1.79,19818.98,1237.5,18374.81,0.0,206.67,206.67,0.0,0.0,organic,2015,Chicago +11,2015-10-11,1.69,19520.71,933.6,18480.44,0.0,106.67,106.67,0.0,0.0,organic,2015,Chicago +12,2015-10-04,1.78,20398.64,787.1,19394.87,0.0,216.67,216.67,0.0,0.0,organic,2015,Chicago +13,2015-09-27,1.67,24311.76,1213.4,23051.69,0.0,46.67,46.67,0.0,0.0,organic,2015,Chicago +14,2015-09-20,1.6,26935.23,1188.26,25203.64,0.0,543.33,543.33,0.0,0.0,organic,2015,Chicago +15,2015-09-13,1.61,27327.18,985.56,26008.45,0.0,333.17,323.33,9.84,0.0,organic,2015,Chicago +16,2015-09-06,1.61,28269.21,1283.81,26272.22,0.0,713.18,703.33,9.85,0.0,organic,2015,Chicago +17,2015-08-30,1.6,30663.55,1065.92,29017.63,0.0,580.0,580.0,0.0,0.0,organic,2015,Chicago +18,2015-08-23,1.61,31623.52,1517.15,29613.04,0.0,493.33,493.33,0.0,0.0,organic,2015,Chicago +19,2015-08-16,1.62,29458.3,1142.46,27912.51,0.0,403.33,403.33,0.0,0.0,organic,2015,Chicago +20,2015-08-09,1.62,28253.94,1173.62,26743.66,0.0,336.66,333.33,3.33,0.0,organic,2015,Chicago +21,2015-08-02,1.59,27490.93,614.02,26526.91,0.0,350.0,350.0,0.0,0.0,organic,2015,Chicago +22,2015-07-26,1.62,26098.32,401.96,25320.55,0.0,375.81,346.67,29.14,0.0,organic,2015,Chicago +23,2015-07-19,1.65,19677.2,562.05,18741.42,0.0,373.73,263.33,110.4,0.0,organic,2015,Chicago +24,2015-07-12,1.66,18945.72,253.02,18087.09,0.0,605.61,566.67,38.94,0.0,organic,2015,Chicago +25,2015-07-05,1.67,19704.96,186.43,18998.53,0.0,520.0,520.0,0.0,0.0,organic,2015,Chicago +26,2015-06-28,1.68,18877.36,576.78,18163.91,0.0,136.67,136.67,0.0,0.0,organic,2015,Chicago +27,2015-06-21,1.82,16136.49,655.45,15171.04,0.0,310.0,310.0,0.0,0.0,organic,2015,Chicago +28,2015-06-14,1.87,18374.82,502.87,17175.28,0.0,696.67,696.67,0.0,0.0,organic,2015,Chicago +29,2015-06-07,1.85,19636.24,857.74,18325.17,0.0,453.33,453.33,0.0,0.0,organic,2015,Chicago +30,2015-05-31,1.85,18625.81,599.1,17156.71,0.0,870.0,870.0,0.0,0.0,organic,2015,Chicago +31,2015-05-24,1.86,20871.17,552.15,19632.59,0.0,686.43,680.0,6.43,0.0,organic,2015,Chicago +32,2015-05-17,1.57,24727.46,201.46,24405.82,0.0,120.18,30.0,90.18,0.0,organic,2015,Chicago +33,2015-05-10,1.47,27146.38,455.63,23858.81,0.0,2831.94,903.33,1928.61,0.0,organic,2015,Chicago +34,2015-05-03,1.51,27210.49,672.05,26198.44,0.0,340.0,340.0,0.0,0.0,organic,2015,Chicago +35,2015-04-26,1.51,31932.1,920.16,30398.61,0.0,613.33,613.33,0.0,0.0,organic,2015,Chicago +36,2015-04-19,1.55,27489.48,614.18,25888.63,0.0,986.67,986.67,0.0,0.0,organic,2015,Chicago +37,2015-04-12,1.3,88346.47,722.16,86707.64,0.0,916.67,916.67,0.0,0.0,organic,2015,Chicago +38,2015-04-05,1.65,21064.17,112.46,20035.04,0.0,916.67,916.67,0.0,0.0,organic,2015,Chicago +39,2015-03-29,1.66,15545.06,119.66,14605.4,0.0,820.0,820.0,0.0,0.0,organic,2015,Chicago +40,2015-03-22,1.67,16076.52,436.1,15367.09,0.0,273.33,273.33,0.0,0.0,organic,2015,Chicago +41,2015-03-15,1.64,15001.33,990.98,12767.2,0.0,1243.15,1243.15,0.0,0.0,organic,2015,Chicago +42,2015-03-08,1.62,16545.05,818.74,13266.68,0.0,2459.63,2459.63,0.0,0.0,organic,2015,Chicago +43,2015-03-01,1.82,11842.47,637.51,9823.85,0.0,1381.11,1381.11,0.0,0.0,organic,2015,Chicago +44,2015-02-22,1.83,10235.09,511.72,8648.92,0.0,1074.45,1074.45,0.0,0.0,organic,2015,Chicago +45,2015-02-15,1.81,10575.65,948.53,8233.79,0.0,1393.33,1393.33,0.0,0.0,organic,2015,Chicago +46,2015-02-08,1.78,9910.84,1224.22,6971.06,0.0,1715.56,1715.56,0.0,0.0,organic,2015,Chicago +47,2015-02-01,1.52,14391.05,1363.35,11835.47,0.0,1192.23,1192.23,0.0,0.0,organic,2015,Chicago +48,2015-01-25,1.83,10951.51,711.63,9515.44,0.0,724.44,724.44,0.0,0.0,organic,2015,Chicago +49,2015-01-18,1.81,12499.87,1154.81,10830.61,0.0,514.45,514.45,0.0,0.0,organic,2015,Chicago +50,2015-01-11,1.79,12915.74,1426.75,10900.1,0.0,588.89,588.89,0.0,0.0,organic,2015,Chicago +51,2015-01-04,1.49,17723.17,1189.35,15628.27,0.0,905.55,905.55,0.0,0.0,organic,2015,Chicago +0,2015-12-27,1.43,7088.36,249.94,5919.28,0.0,919.14,266.67,652.47,0.0,organic,2015,CincinnatiDayton +1,2015-12-20,1.47,7113.17,303.65,6449.34,0.0,360.18,173.03,187.15,0.0,organic,2015,CincinnatiDayton +2,2015-12-13,1.32,8699.18,307.35,6153.05,0.0,2238.78,440.58,1798.2,0.0,organic,2015,CincinnatiDayton +3,2015-12-06,1.48,8656.18,234.08,7004.43,0.0,1417.67,663.33,754.34,0.0,organic,2015,CincinnatiDayton +4,2015-11-29,1.5,7189.95,284.13,6272.44,0.0,633.38,263.33,370.05,0.0,organic,2015,CincinnatiDayton +5,2015-11-22,1.36,8662.14,336.76,7558.29,0.0,767.09,193.33,573.76,0.0,organic,2015,CincinnatiDayton +6,2015-11-15,1.2,8896.59,338.88,7249.58,0.0,1308.13,286.67,1021.46,0.0,organic,2015,CincinnatiDayton +7,2015-11-08,1.3,10407.9,339.94,7705.72,0.0,2362.24,420.0,1942.24,0.0,organic,2015,CincinnatiDayton +8,2015-11-01,1.61,9499.24,287.24,7556.8,0.0,1655.2,326.67,1328.53,0.0,organic,2015,CincinnatiDayton +9,2015-10-25,1.56,10526.95,416.07,8846.71,0.0,1264.17,463.33,800.84,0.0,organic,2015,CincinnatiDayton +10,2015-10-18,1.5,12023.56,259.83,9299.99,0.0,2463.74,293.33,2170.41,0.0,organic,2015,CincinnatiDayton +11,2015-10-11,1.66,9860.75,304.48,8500.97,0.0,1055.3,443.33,611.97,0.0,organic,2015,CincinnatiDayton +12,2015-10-04,1.54,10231.74,341.89,8519.0,0.0,1370.85,303.33,1067.52,0.0,organic,2015,CincinnatiDayton +13,2015-09-27,1.46,10508.73,329.58,9461.16,0.0,717.99,96.67,621.32,0.0,organic,2015,CincinnatiDayton +14,2015-09-20,1.58,12915.37,379.74,12416.63,0.0,119.0,43.33,75.67,0.0,organic,2015,CincinnatiDayton +15,2015-09-13,1.59,14448.15,458.07,12290.62,0.0,1699.46,460.0,1239.46,0.0,organic,2015,CincinnatiDayton +16,2015-09-06,1.62,15010.83,517.66,13286.9,0.0,1206.27,550.0,656.27,0.0,organic,2015,CincinnatiDayton +17,2015-08-30,1.56,14000.96,459.35,11740.46,0.0,1801.15,190.0,1611.15,0.0,organic,2015,CincinnatiDayton +18,2015-08-23,1.58,14963.77,433.88,13036.74,0.0,1493.15,220.0,1273.15,0.0,organic,2015,CincinnatiDayton +19,2015-08-16,1.66,15095.2,252.24,13919.8,0.0,923.16,260.0,663.16,0.0,organic,2015,CincinnatiDayton +20,2015-08-09,1.59,14774.26,289.65,12902.16,0.0,1582.45,346.67,1235.78,0.0,organic,2015,CincinnatiDayton +21,2015-08-02,1.62,15286.4,198.92,14035.28,0.0,1052.2,123.34,928.86,0.0,organic,2015,CincinnatiDayton +22,2015-07-26,1.63,15050.08,253.43,12357.79,0.0,2438.86,70.0,2368.86,0.0,organic,2015,CincinnatiDayton +23,2015-07-19,1.66,14741.72,230.06,11663.77,0.0,2847.89,96.67,2751.22,0.0,organic,2015,CincinnatiDayton +24,2015-07-12,1.56,14507.57,241.98,11177.28,0.0,3088.31,226.67,2861.64,0.0,organic,2015,CincinnatiDayton +25,2015-07-05,1.59,15077.62,250.57,12154.91,0.0,2672.14,640.0,2032.14,0.0,organic,2015,CincinnatiDayton +26,2015-06-28,1.49,12523.04,313.32,11312.15,0.0,897.57,303.33,594.24,0.0,organic,2015,CincinnatiDayton +27,2015-06-21,1.39,13791.64,318.95,11779.34,0.0,1693.35,548.86,1144.49,0.0,organic,2015,CincinnatiDayton +28,2015-06-14,1.34,15445.59,225.1,12225.64,0.0,2994.85,1030.0,1964.85,0.0,organic,2015,CincinnatiDayton +29,2015-06-07,1.46,12893.69,209.83,11403.27,0.0,1280.59,985.63,294.96,0.0,organic,2015,CincinnatiDayton +30,2015-05-31,1.47,14240.44,247.34,12167.6,0.0,1825.5,1176.95,648.55,0.0,organic,2015,CincinnatiDayton +31,2015-05-24,1.48,14589.17,303.66,13023.85,0.0,1261.66,818.95,442.71,0.0,organic,2015,CincinnatiDayton +32,2015-05-17,1.27,16389.19,283.38,10504.29,0.0,5601.52,1797.12,3804.4,0.0,organic,2015,CincinnatiDayton +33,2015-05-10,1.43,15989.61,285.62,11539.26,0.0,4164.73,663.33,3501.4,0.0,organic,2015,CincinnatiDayton +34,2015-05-03,1.42,14145.51,248.06,11260.77,0.0,2636.68,680.0,1956.68,0.0,organic,2015,CincinnatiDayton +35,2015-04-26,1.36,16289.6,256.76,13336.25,0.0,2696.59,563.33,2133.26,0.0,organic,2015,CincinnatiDayton +36,2015-04-19,1.46,15386.2,374.37,13907.82,0.0,1104.01,510.91,593.1,0.0,organic,2015,CincinnatiDayton +37,2015-04-12,1.49,13607.83,272.3,12556.25,0.0,779.28,688.44,90.84,0.0,organic,2015,CincinnatiDayton +38,2015-04-05,1.22,16010.39,279.01,12842.34,0.0,2889.04,547.77,2341.27,0.0,organic,2015,CincinnatiDayton +39,2015-03-29,1.27,13809.65,344.26,12693.87,0.0,771.52,690.0,81.52,0.0,organic,2015,CincinnatiDayton +40,2015-03-22,1.25,13781.05,376.93,13270.16,0.0,133.96,106.67,27.29,0.0,organic,2015,CincinnatiDayton +41,2015-03-15,1.22,12310.3,237.38,11231.53,0.0,841.39,96.67,744.72,0.0,organic,2015,CincinnatiDayton +42,2015-03-08,1.17,13070.44,251.86,9304.08,0.0,3514.5,1373.33,2141.17,0.0,organic,2015,CincinnatiDayton +43,2015-03-01,1.24,10963.48,271.44,9758.15,0.0,933.89,696.67,237.22,0.0,organic,2015,CincinnatiDayton +44,2015-02-22,1.23,11254.29,258.35,9998.18,0.0,997.76,403.33,594.43,0.0,organic,2015,CincinnatiDayton +45,2015-02-15,1.22,10742.08,264.74,9452.15,0.0,1025.19,780.0,245.19,0.0,organic,2015,CincinnatiDayton +46,2015-02-08,1.24,10351.99,225.93,8949.13,0.0,1176.93,963.33,213.6,0.0,organic,2015,CincinnatiDayton +47,2015-02-01,1.19,10707.5,218.51,9140.29,0.0,1348.7,371.08,977.62,0.0,organic,2015,CincinnatiDayton +48,2015-01-25,1.26,10191.82,220.4,8150.22,0.0,1821.2,377.77,1443.43,0.0,organic,2015,CincinnatiDayton +49,2015-01-18,1.37,10051.4,282.08,9374.23,0.0,395.09,351.87,43.22,0.0,organic,2015,CincinnatiDayton +50,2015-01-11,1.32,11313.77,209.52,10352.17,0.0,752.08,310.62,441.46,0.0,organic,2015,CincinnatiDayton +51,2015-01-04,1.34,8764.33,144.47,6921.75,0.0,1698.11,585.96,1112.15,0.0,organic,2015,CincinnatiDayton +0,2015-12-27,1.53,2970.79,289.7,1781.31,0.0,899.78,189.66,710.12,0.0,organic,2015,Columbus +1,2015-12-20,1.67,2002.61,242.01,1474.26,0.0,286.34,222.2,64.14,0.0,organic,2015,Columbus +2,2015-12-13,1.59,2253.92,330.43,1469.69,0.0,453.8,169.47,284.33,0.0,organic,2015,Columbus +3,2015-12-06,1.52,3535.8,469.17,2218.83,2.23,845.57,549.78,295.79,0.0,organic,2015,Columbus +4,2015-11-29,1.48,3305.78,452.86,2326.79,0.0,526.13,371.89,154.24,0.0,organic,2015,Columbus +5,2015-11-22,1.48,3636.86,522.57,2789.25,0.0,325.04,129.01,196.03,0.0,organic,2015,Columbus +6,2015-11-15,1.48,3595.02,570.0,2671.18,0.0,353.84,126.59,227.25,0.0,organic,2015,Columbus +7,2015-11-08,1.4,4144.82,443.1,2827.56,0.0,874.16,413.97,460.19,0.0,organic,2015,Columbus +8,2015-11-01,1.47,3834.42,393.15,2899.9,0.0,541.37,257.61,283.76,0.0,organic,2015,Columbus +9,2015-10-25,1.44,4010.32,577.08,2725.99,0.0,707.25,468.9,238.35,0.0,organic,2015,Columbus +10,2015-10-18,1.36,4135.76,502.82,2726.7,0.0,906.24,227.49,678.75,0.0,organic,2015,Columbus +11,2015-10-11,1.27,4403.09,463.25,2759.23,0.0,1180.61,349.52,831.09,0.0,organic,2015,Columbus +12,2015-10-04,1.49,3592.22,505.59,2497.62,0.0,589.01,311.5,277.51,0.0,organic,2015,Columbus +13,2015-09-27,1.67,2404.66,486.97,1465.4,0.0,452.29,100.72,351.57,0.0,organic,2015,Columbus +14,2015-09-20,1.82,2435.16,511.87,1610.65,0.0,312.64,53.78,258.86,0.0,organic,2015,Columbus +15,2015-09-13,1.74,3900.18,639.76,2289.49,0.0,970.93,472.61,498.32,0.0,organic,2015,Columbus +16,2015-09-06,1.64,5450.41,549.36,3387.7,0.0,1513.35,582.87,930.48,0.0,organic,2015,Columbus +17,2015-08-30,1.48,5070.79,773.57,2548.11,0.0,1749.11,99.41,1649.7,0.0,organic,2015,Columbus +18,2015-08-23,1.66,4806.35,593.95,2740.64,3.34,1468.42,305.46,1162.96,0.0,organic,2015,Columbus +19,2015-08-16,2.08,3554.43,378.55,2654.29,0.0,521.59,236.67,284.92,0.0,organic,2015,Columbus +20,2015-08-09,1.98,3184.94,303.49,2218.55,0.0,662.9,370.0,292.9,0.0,organic,2015,Columbus +21,2015-08-02,1.8,2749.93,337.96,1947.39,3.32,461.26,53.33,407.93,0.0,organic,2015,Columbus +22,2015-07-26,1.31,4288.7,397.65,2337.28,0.0,1553.77,0.0,1553.77,0.0,organic,2015,Columbus +23,2015-07-19,1.46,4349.0,432.54,2342.56,0.0,1573.9,26.67,1547.23,0.0,organic,2015,Columbus +24,2015-07-12,1.01,6269.43,409.42,2453.22,0.0,3406.79,80.0,3326.79,0.0,organic,2015,Columbus +25,2015-07-05,1.31,5903.4,536.02,4088.38,0.0,1279.0,290.0,989.0,0.0,organic,2015,Columbus +26,2015-06-28,1.35,4816.89,461.01,3362.89,2.23,990.76,219.9,770.86,0.0,organic,2015,Columbus +27,2015-06-21,1.35,5347.37,493.67,3524.91,1.12,1327.67,381.41,946.26,0.0,organic,2015,Columbus +28,2015-06-14,1.5,4520.37,431.69,2970.35,0.0,1118.33,837.62,280.71,0.0,organic,2015,Columbus +29,2015-06-07,1.21,6028.43,322.05,2720.68,0.0,2985.7,687.09,2298.61,0.0,organic,2015,Columbus +30,2015-05-31,1.49,5950.91,410.92,3627.94,0.0,1912.05,1138.94,773.11,0.0,organic,2015,Columbus +31,2015-05-24,1.51,5360.41,463.76,3593.0,0.0,1303.65,746.25,557.4,0.0,organic,2015,Columbus +32,2015-05-17,1.21,4754.7,560.26,2085.96,0.0,2108.48,605.53,1502.95,0.0,organic,2015,Columbus +33,2015-05-10,0.81,29694.82,967.36,17214.8,1.11,11511.55,433.31,11078.24,0.0,organic,2015,Columbus +34,2015-05-03,0.89,28020.38,961.24,18774.04,2.21,8282.89,503.27,7779.62,0.0,organic,2015,Columbus +35,2015-04-26,1.57,4883.55,408.44,3284.07,0.0,1191.04,572.85,618.19,0.0,organic,2015,Columbus +36,2015-04-19,1.47,4844.5,287.16,3203.91,0.0,1353.43,740.97,612.46,0.0,organic,2015,Columbus +37,2015-04-12,1.66,4628.41,383.43,3479.25,0.0,765.73,450.15,315.58,0.0,organic,2015,Columbus +38,2015-04-05,1.38,5289.64,403.53,2859.4,0.0,2026.71,645.46,1381.25,0.0,organic,2015,Columbus +39,2015-03-29,1.79,3464.77,369.21,2347.69,0.0,747.87,719.17,28.7,0.0,organic,2015,Columbus +40,2015-03-22,1.91,2294.07,343.29,1775.29,0.0,175.49,137.47,38.02,0.0,organic,2015,Columbus +41,2015-03-15,1.65,3385.11,406.97,2060.4,0.0,917.74,291.55,626.19,0.0,organic,2015,Columbus +42,2015-03-08,1.84,4518.71,317.1,2943.26,7.45,1250.9,1130.31,120.59,0.0,organic,2015,Columbus +43,2015-03-01,1.86,4054.67,397.22,2681.49,0.0,975.96,664.76,311.2,0.0,organic,2015,Columbus +44,2015-02-22,1.79,3933.81,589.45,2581.64,0.0,762.72,238.07,524.65,0.0,organic,2015,Columbus +45,2015-02-15,1.64,4283.56,374.59,2597.56,0.0,1311.41,706.67,604.74,0.0,organic,2015,Columbus +46,2015-02-08,1.78,3483.64,285.2,2071.17,0.0,1127.27,856.67,270.6,0.0,organic,2015,Columbus +47,2015-02-01,1.63,4215.96,432.24,2985.02,0.0,798.7,223.33,575.37,0.0,organic,2015,Columbus +48,2015-01-25,1.67,4847.86,350.39,3650.73,0.0,846.74,293.33,553.41,0.0,organic,2015,Columbus +49,2015-01-18,1.84,4027.45,279.22,2959.75,0.0,788.48,213.33,575.15,0.0,organic,2015,Columbus +50,2015-01-11,1.68,4193.17,349.17,3226.58,0.0,617.42,416.25,201.17,0.0,organic,2015,Columbus +51,2015-01-04,1.44,3930.94,358.05,2432.81,0.0,1140.08,444.17,695.91,0.0,organic,2015,Columbus +0,2015-12-27,1.33,10860.07,5921.12,421.38,0.0,4517.57,3584.44,933.13,0.0,organic,2015,DallasFtWorth +1,2015-12-20,1.38,11128.3,5742.81,384.49,0.0,5001.0,4594.21,406.79,0.0,organic,2015,DallasFtWorth +2,2015-12-13,1.43,12224.14,6036.65,389.17,0.0,5798.32,5798.32,0.0,0.0,organic,2015,DallasFtWorth +3,2015-12-06,1.48,10458.62,5582.56,401.5,0.0,4474.56,4474.56,0.0,0.0,organic,2015,DallasFtWorth +4,2015-11-29,1.46,9412.9,5706.47,278.7,0.0,3427.73,3427.73,0.0,0.0,organic,2015,DallasFtWorth +5,2015-11-22,1.46,10812.09,6189.69,271.59,0.0,4350.81,4350.81,0.0,0.0,organic,2015,DallasFtWorth +6,2015-11-15,1.36,11640.14,7099.89,416.6,0.0,4123.65,4123.65,0.0,0.0,organic,2015,DallasFtWorth +7,2015-11-08,1.46,11147.93,6807.09,441.15,0.0,3899.69,3899.69,0.0,0.0,organic,2015,DallasFtWorth +8,2015-11-01,1.41,12250.82,6449.72,268.05,0.0,5533.05,5533.05,0.0,0.0,organic,2015,DallasFtWorth +9,2015-10-25,1.48,13258.61,7509.17,329.44,0.0,5420.0,5410.0,10.0,0.0,organic,2015,DallasFtWorth +10,2015-10-18,1.39,11010.45,7657.06,253.39,0.0,3100.0,3070.0,30.0,0.0,organic,2015,DallasFtWorth +11,2015-10-11,1.48,10647.39,6628.99,378.41,0.0,3639.99,3636.66,3.33,0.0,organic,2015,DallasFtWorth +12,2015-10-04,1.49,10751.69,5675.04,446.65,0.0,4630.0,4626.67,3.33,0.0,organic,2015,DallasFtWorth +13,2015-09-27,1.48,12224.81,8224.68,303.47,0.0,3696.66,3696.66,0.0,0.0,organic,2015,DallasFtWorth +14,2015-09-20,1.47,12513.98,8023.81,240.17,0.0,4250.0,4250.0,0.0,0.0,organic,2015,DallasFtWorth +15,2015-09-13,1.48,12704.71,7561.87,362.7,0.0,4780.14,4776.8,3.34,0.0,organic,2015,DallasFtWorth +16,2015-09-06,1.46,12941.48,7399.01,347.0,0.0,5195.47,5195.47,0.0,0.0,organic,2015,DallasFtWorth +17,2015-08-30,1.36,14317.26,9720.71,348.71,0.0,4247.84,4081.53,166.31,0.0,organic,2015,DallasFtWorth +18,2015-08-23,1.36,17429.71,11090.91,565.77,0.0,5773.03,5238.79,534.24,0.0,organic,2015,DallasFtWorth +19,2015-08-16,1.45,13268.55,8229.01,694.8,0.0,4344.74,4334.74,10.0,0.0,organic,2015,DallasFtWorth +20,2015-08-09,1.4,16702.43,8961.35,999.37,0.0,6741.71,6741.71,0.0,0.0,organic,2015,DallasFtWorth +21,2015-08-02,1.31,12992.93,10686.21,522.44,36.97,1747.31,1733.98,13.33,0.0,organic,2015,DallasFtWorth +22,2015-07-26,1.14,12801.03,11536.0,337.16,0.0,927.87,927.87,0.0,0.0,organic,2015,DallasFtWorth +23,2015-07-19,1.29,11881.44,10492.38,499.9,0.0,889.16,889.16,0.0,0.0,organic,2015,DallasFtWorth +24,2015-07-12,1.27,11076.72,9757.92,444.54,0.0,874.26,874.26,0.0,0.0,organic,2015,DallasFtWorth +25,2015-07-05,1.3,13234.04,10979.75,459.19,0.0,1795.1,1795.1,0.0,0.0,organic,2015,DallasFtWorth +26,2015-06-28,1.33,11792.51,9252.18,434.28,0.0,2106.05,2106.05,0.0,0.0,organic,2015,DallasFtWorth +27,2015-06-21,1.37,9936.12,7968.59,486.7,0.0,1480.83,1480.83,0.0,0.0,organic,2015,DallasFtWorth +28,2015-06-14,1.35,9881.65,7806.7,512.0,0.0,1562.95,1562.95,0.0,0.0,organic,2015,DallasFtWorth +29,2015-06-07,1.35,9019.0,6952.15,356.44,0.0,1710.41,1710.41,0.0,0.0,organic,2015,DallasFtWorth +30,2015-05-31,1.38,9882.68,7376.1,398.95,0.0,2107.63,2107.63,0.0,0.0,organic,2015,DallasFtWorth +31,2015-05-24,1.36,12809.78,10061.35,430.17,0.0,2318.26,2318.26,0.0,0.0,organic,2015,DallasFtWorth +32,2015-05-17,1.35,11092.7,8380.26,445.77,0.0,2266.67,2266.67,0.0,0.0,organic,2015,DallasFtWorth +33,2015-05-10,1.39,10242.6,7874.84,351.09,0.0,2016.67,2013.34,3.33,0.0,organic,2015,DallasFtWorth +34,2015-05-03,1.37,6568.67,5350.74,207.93,0.0,1010.0,1010.0,0.0,0.0,organic,2015,DallasFtWorth +35,2015-04-26,1.34,9855.14,7679.05,379.42,0.0,1796.67,1796.67,0.0,0.0,organic,2015,DallasFtWorth +36,2015-04-19,1.35,12054.84,9552.71,525.47,0.0,1976.66,1976.66,0.0,0.0,organic,2015,DallasFtWorth +37,2015-04-12,1.39,11119.47,8189.75,526.38,0.0,2403.34,2403.34,0.0,0.0,organic,2015,DallasFtWorth +38,2015-04-05,1.36,11720.06,8239.86,486.87,0.0,2993.33,2993.33,0.0,0.0,organic,2015,DallasFtWorth +39,2015-03-29,1.36,9162.06,6160.98,467.75,0.0,2533.33,2533.33,0.0,0.0,organic,2015,DallasFtWorth +40,2015-03-22,1.29,13176.92,9505.21,765.04,0.0,2906.67,2906.67,0.0,0.0,organic,2015,DallasFtWorth +41,2015-03-15,1.34,11922.76,7889.79,659.64,0.0,3373.33,3373.33,0.0,0.0,organic,2015,DallasFtWorth +42,2015-03-08,1.39,8557.95,5946.47,498.15,0.0,2113.33,2113.33,0.0,0.0,organic,2015,DallasFtWorth +43,2015-03-01,1.29,17267.84,9540.52,850.65,0.0,6876.67,6876.67,0.0,0.0,organic,2015,DallasFtWorth +44,2015-02-22,1.38,15485.45,9117.48,851.3,0.0,5516.67,5516.67,0.0,0.0,organic,2015,DallasFtWorth +45,2015-02-15,1.41,10958.57,7081.47,827.1,0.0,3050.0,3050.0,0.0,0.0,organic,2015,DallasFtWorth +46,2015-02-08,1.35,10315.32,6135.93,826.06,0.0,3353.33,3353.33,0.0,0.0,organic,2015,DallasFtWorth +47,2015-02-01,1.24,12276.58,6669.52,1653.73,0.0,3953.33,3953.33,0.0,0.0,organic,2015,DallasFtWorth +48,2015-01-25,1.34,11247.71,7244.18,1390.2,0.0,2613.33,2613.33,0.0,0.0,organic,2015,DallasFtWorth +49,2015-01-18,1.28,12634.71,7556.77,871.27,0.0,4206.67,4206.67,0.0,0.0,organic,2015,DallasFtWorth +50,2015-01-11,1.35,12126.63,7136.34,1353.62,0.0,3636.67,3636.67,0.0,0.0,organic,2015,DallasFtWorth +51,2015-01-04,1.35,9895.96,4634.7,1647.92,0.0,3613.34,3613.34,0.0,0.0,organic,2015,DallasFtWorth +0,2015-12-27,1.43,23728.62,9299.54,2853.98,12.14,11562.96,330.31,11232.65,0.0,organic,2015,Denver +1,2015-12-20,1.35,27173.38,9203.25,3262.41,4.42,14703.3,276.67,14426.63,0.0,organic,2015,Denver +2,2015-12-13,1.36,24285.79,7419.99,3155.41,3.32,13707.07,444.05,13263.02,0.0,organic,2015,Denver +3,2015-12-06,0.92,41324.9,3841.78,8059.68,33.27,29390.17,430.0,28960.17,0.0,organic,2015,Denver +4,2015-11-29,0.88,56722.58,5178.73,11715.12,15.54,39813.19,385.54,39427.65,0.0,organic,2015,Denver +5,2015-11-22,1.39,23094.34,6643.41,5729.32,30.25,10691.36,523.98,10167.38,0.0,organic,2015,Denver +6,2015-11-15,1.33,23789.01,11293.76,3356.13,29.19,9109.93,1068.24,8041.69,0.0,organic,2015,Denver +7,2015-11-08,1.14,55351.03,37447.75,9325.92,36.0,8541.36,500.0,8041.36,0.0,organic,2015,Denver +8,2015-11-01,1.26,29803.99,5850.87,6277.42,29.31,17646.39,506.71,17139.68,0.0,organic,2015,Denver +9,2015-10-25,1.27,30032.31,1813.92,6320.58,36.17,21861.64,447.68,21413.96,0.0,organic,2015,Denver +10,2015-10-18,1.3,25827.35,2156.55,5707.23,26.07,17937.5,434.23,17503.27,0.0,organic,2015,Denver +11,2015-10-11,1.28,24738.5,2269.21,4720.12,26.14,17723.03,397.58,17325.45,0.0,organic,2015,Denver +12,2015-10-04,1.25,28692.21,1368.83,5986.74,30.75,21305.89,739.33,20566.56,0.0,organic,2015,Denver +13,2015-09-27,1.35,32925.13,5917.8,5527.24,30.8,21449.29,643.33,20805.96,0.0,organic,2015,Denver +14,2015-09-20,1.36,25808.98,6109.72,3509.31,13.7,16176.25,356.67,15819.58,0.0,organic,2015,Denver +15,2015-09-13,1.36,26282.03,5076.16,3584.05,28.59,17593.23,203.33,17389.9,0.0,organic,2015,Denver +16,2015-09-06,1.43,27271.95,3820.97,5153.61,11.45,18285.92,185.09,18100.83,0.0,organic,2015,Denver +17,2015-08-30,1.45,25122.55,5988.79,4070.46,24.06,15039.24,676.06,14363.18,0.0,organic,2015,Denver +18,2015-08-23,1.46,37948.74,12000.67,6027.3,32.35,19888.42,833.33,19055.09,0.0,organic,2015,Denver +19,2015-08-16,1.45,32252.93,10281.75,5062.53,10.4,16898.25,661.81,16236.44,0.0,organic,2015,Denver +20,2015-08-09,1.44,34888.66,12490.9,3930.9,21.94,18444.92,748.73,17696.19,0.0,organic,2015,Denver +21,2015-08-02,1.43,31424.93,10555.41,2962.63,23.09,17883.8,603.94,17279.86,0.0,organic,2015,Denver +22,2015-07-26,1.43,28284.23,9085.94,2619.52,21.94,16556.83,248.46,16308.37,0.0,organic,2015,Denver +23,2015-07-19,1.45,25375.78,9846.73,2604.75,23.09,12901.21,90.0,12811.21,0.0,organic,2015,Denver +24,2015-07-12,1.44,27100.8,9772.47,3066.94,32.24,14229.15,85.12,14144.03,0.0,organic,2015,Denver +25,2015-07-05,1.42,33660.46,9786.78,3058.6,11.49,20803.59,86.67,20716.92,0.0,organic,2015,Denver +26,2015-06-28,1.44,30625.69,10715.21,2929.8,33.28,16947.4,290.0,16657.4,0.0,organic,2015,Denver +27,2015-06-21,1.43,31954.94,9953.25,2917.93,21.75,19062.01,740.07,18321.94,0.0,organic,2015,Denver +28,2015-06-14,1.44,33994.64,11488.79,4348.88,49.63,18107.34,720.65,17386.69,0.0,organic,2015,Denver +29,2015-06-07,1.44,30890.93,11955.6,4701.62,48.34,14185.37,692.38,13492.99,0.0,organic,2015,Denver +30,2015-05-31,1.43,33855.74,11232.12,4800.39,21.27,17801.96,902.05,16899.91,0.0,organic,2015,Denver +31,2015-05-24,1.43,36082.44,13288.77,5497.61,18.94,17277.12,1041.58,16235.54,0.0,organic,2015,Denver +32,2015-05-17,1.22,45514.57,19911.52,8929.9,18.89,16654.26,4177.16,12477.1,0.0,organic,2015,Denver +33,2015-05-10,1.23,46949.06,19400.27,8573.27,45.43,18930.09,3274.03,15656.06,0.0,organic,2015,Denver +34,2015-05-03,1.03,139212.26,88780.66,36428.1,143.56,13859.94,2957.81,10902.13,0.0,organic,2015,Denver +35,2015-04-26,1.03,125507.76,75842.24,37729.4,268.3,11667.82,1966.49,9701.33,0.0,organic,2015,Denver +36,2015-04-19,1.44,23563.42,6897.03,4706.9,65.71,11893.78,683.33,11210.45,0.0,organic,2015,Denver +37,2015-04-12,1.42,23701.5,6189.81,4728.75,20.72,12762.22,450.0,12312.22,0.0,organic,2015,Denver +38,2015-04-05,1.42,34432.77,8696.59,6633.32,19.54,19083.32,560.0,18523.32,0.0,organic,2015,Denver +39,2015-03-29,1.44,29105.69,5455.77,8344.01,8.64,15297.27,1693.33,13603.94,0.0,organic,2015,Denver +40,2015-03-22,1.39,29621.9,9365.64,8034.98,16.15,12205.13,543.33,11661.8,0.0,organic,2015,Denver +41,2015-03-15,1.12,68533.2,27916.18,27507.13,27.89,13082.0,1813.33,11268.67,0.0,organic,2015,Denver +42,2015-03-08,1.09,70858.71,34792.41,26156.12,45.91,9864.27,2923.33,6940.94,0.0,organic,2015,Denver +43,2015-03-01,1.27,36086.54,15769.31,11650.03,14.93,8652.27,1970.0,6682.27,0.0,organic,2015,Denver +44,2015-02-22,1.4,24794.39,4987.23,6082.18,28.78,13696.2,1180.0,12516.2,0.0,organic,2015,Denver +45,2015-02-15,1.44,19660.58,2347.47,7061.55,12.76,10238.8,953.33,9285.47,0.0,organic,2015,Denver +46,2015-02-08,1.4,22798.51,3017.93,7175.41,9.63,12595.54,2293.33,10302.21,0.0,organic,2015,Denver +47,2015-02-01,1.29,27527.63,4823.79,10709.5,104.48,11889.86,1323.33,10566.53,0.0,organic,2015,Denver +48,2015-01-25,1.33,22502.5,4271.13,8412.17,584.78,9234.42,1202.57,8031.85,0.0,organic,2015,Denver +49,2015-01-18,1.1,42234.91,5475.13,32538.95,42.01,4178.82,992.64,3186.18,0.0,organic,2015,Denver +50,2015-01-11,1.28,30682.77,8855.89,15070.85,24.8,6731.23,1699.95,5031.28,0.0,organic,2015,Denver +51,2015-01-04,1.42,22480.07,3199.35,6916.72,7.56,12356.44,1076.67,11279.77,0.0,organic,2015,Denver +0,2015-12-27,1.61,6834.42,1276.73,3370.14,0.0,2187.55,366.67,1820.88,0.0,organic,2015,Detroit +1,2015-12-20,1.8,4973.92,1421.84,3078.38,0.0,473.7,376.67,97.03,0.0,organic,2015,Detroit +2,2015-12-13,1.53,5677.68,1494.58,2748.69,0.0,1434.41,196.67,1237.74,0.0,organic,2015,Detroit +3,2015-12-06,1.8,7059.51,1289.28,4788.95,0.0,981.28,300.0,681.28,0.0,organic,2015,Detroit +4,2015-11-29,1.81,5837.79,1437.86,3895.14,0.0,504.79,163.33,341.46,0.0,organic,2015,Detroit +5,2015-11-22,1.84,6871.97,1822.5,4568.82,0.0,480.65,83.33,397.32,0.0,organic,2015,Detroit +6,2015-11-15,1.84,6564.71,1658.29,4577.75,0.0,328.67,140.0,188.67,0.0,organic,2015,Detroit +7,2015-11-08,1.74,6908.14,1657.5,4296.5,0.0,954.14,216.67,737.47,0.0,organic,2015,Detroit +8,2015-11-01,1.85,8109.3,1553.13,5744.36,0.0,811.81,190.0,621.81,0.0,organic,2015,Detroit +9,2015-10-25,1.8,7895.81,1520.03,5456.64,0.0,919.14,383.33,535.81,0.0,organic,2015,Detroit +10,2015-10-18,1.65,7791.34,1652.49,4374.48,0.0,1764.37,393.33,1371.04,0.0,organic,2015,Detroit +11,2015-10-11,1.61,7509.74,1111.36,4593.51,0.0,1804.87,480.0,1324.87,0.0,organic,2015,Detroit +12,2015-10-04,1.81,7271.25,1373.43,5026.38,0.0,871.44,533.33,338.11,0.0,organic,2015,Detroit +13,2015-09-27,1.71,7891.05,1434.64,4977.0,0.0,1479.41,456.67,1022.74,0.0,organic,2015,Detroit +14,2015-09-20,1.86,7310.16,1647.88,5145.47,0.0,516.81,486.67,30.14,0.0,organic,2015,Detroit +15,2015-09-13,1.81,8304.32,1800.82,5478.4,0.0,1025.1,366.67,658.43,0.0,organic,2015,Detroit +16,2015-09-06,1.47,10957.17,1810.09,6972.09,0.0,2174.99,413.33,1761.66,0.0,organic,2015,Detroit +17,2015-08-30,1.32,11583.26,2544.39,5844.25,0.0,3194.62,383.01,2811.61,0.0,organic,2015,Detroit +18,2015-08-23,1.43,13232.79,2425.86,7778.97,0.0,3027.96,289.01,2738.95,0.0,organic,2015,Detroit +19,2015-08-16,1.74,10631.12,615.83,8951.71,0.0,1063.58,332.59,730.99,0.0,organic,2015,Detroit +20,2015-08-09,1.85,5912.34,556.67,4367.33,0.0,988.34,636.67,351.67,0.0,organic,2015,Detroit +21,2015-08-02,1.66,7273.85,443.61,5477.67,0.0,1352.57,580.0,772.57,0.0,organic,2015,Detroit +22,2015-07-26,1.28,12186.97,562.63,7155.42,0.0,4468.92,476.67,3992.25,0.0,organic,2015,Detroit +23,2015-07-19,1.24,11938.2,447.33,6816.25,0.0,4674.62,270.0,4404.62,0.0,organic,2015,Detroit +24,2015-07-12,1.01,14131.07,481.72,5955.13,0.0,7694.22,436.67,7257.55,0.0,organic,2015,Detroit +25,2015-07-05,1.47,10676.71,498.59,7509.63,0.0,2668.49,576.67,2091.82,0.0,organic,2015,Detroit +26,2015-06-28,1.56,8432.66,521.15,6130.28,0.0,1781.23,306.67,1474.56,0.0,organic,2015,Detroit +27,2015-06-21,1.64,9992.2,636.81,7546.77,0.0,1808.62,422.19,1386.43,0.0,organic,2015,Detroit +28,2015-06-14,1.37,10756.77,623.62,7968.37,0.0,2164.78,1271.84,892.94,0.0,organic,2015,Detroit +29,2015-06-07,1.28,12366.2,750.88,8290.39,0.0,3324.93,1359.77,1965.16,0.0,organic,2015,Detroit +30,2015-05-31,1.55,9908.64,616.11,7097.83,0.0,2194.7,1165.54,1029.16,0.0,organic,2015,Detroit +31,2015-05-24,1.61,7900.21,506.77,5960.45,0.0,1432.99,776.58,656.41,0.0,organic,2015,Detroit +32,2015-05-17,1.34,6214.56,428.47,3469.2,0.0,2316.89,433.33,1883.56,0.0,organic,2015,Detroit +33,2015-05-10,1.09,16805.16,573.64,6949.68,0.0,9281.84,716.67,8565.17,0.0,organic,2015,Detroit +34,2015-05-03,1.37,10694.75,518.26,7336.27,0.0,2840.22,580.0,2260.22,0.0,organic,2015,Detroit +35,2015-04-26,1.63,8147.68,430.95,6139.36,0.0,1577.37,616.67,960.7,0.0,organic,2015,Detroit +36,2015-04-19,1.59,8122.45,391.97,5966.03,0.0,1764.45,1058.6,705.85,0.0,organic,2015,Detroit +37,2015-04-12,1.72,7736.69,460.89,6496.85,0.0,778.95,357.92,421.03,0.0,organic,2015,Detroit +38,2015-04-05,1.51,8978.08,460.98,6496.51,0.0,2020.59,436.3,1584.29,0.0,organic,2015,Detroit +39,2015-03-29,1.74,6650.29,410.36,5582.97,0.0,656.96,471.04,185.92,0.0,organic,2015,Detroit +40,2015-03-22,1.78,5649.34,392.8,5184.42,0.0,72.12,13.33,58.79,0.0,organic,2015,Detroit +41,2015-03-15,1.49,9162.43,514.16,6238.51,0.0,2409.76,515.71,1894.05,0.0,organic,2015,Detroit +42,2015-03-08,1.83,8433.78,517.12,6512.03,0.0,1404.63,1140.0,264.63,0.0,organic,2015,Detroit +43,2015-03-01,1.92,7174.35,386.65,5898.07,0.0,889.63,516.67,372.96,0.0,organic,2015,Detroit +44,2015-02-22,1.85,7176.69,651.55,5368.11,0.0,1157.03,340.0,817.03,0.0,organic,2015,Detroit +45,2015-02-15,1.82,7038.51,434.7,5742.58,0.0,861.23,293.33,567.9,0.0,organic,2015,Detroit +46,2015-02-08,1.86,6499.18,509.02,4643.12,0.0,1347.04,913.33,433.71,0.0,organic,2015,Detroit +47,2015-02-01,1.55,8707.92,449.84,6955.71,0.0,1302.37,253.33,1049.04,0.0,organic,2015,Detroit +48,2015-01-25,1.62,8703.74,580.39,7210.53,0.0,912.82,60.0,852.82,0.0,organic,2015,Detroit +49,2015-01-18,1.9,7656.72,376.08,6430.19,0.0,850.45,446.67,403.78,0.0,organic,2015,Detroit +50,2015-01-11,1.87,6926.75,417.73,5637.76,0.0,871.26,329.5,541.76,0.0,organic,2015,Detroit +51,2015-01-04,1.7,7446.43,361.76,5025.58,0.0,2059.09,746.43,1312.66,0.0,organic,2015,Detroit +0,2015-12-27,1.67,2010.73,822.95,941.11,0.0,246.67,246.67,0.0,0.0,organic,2015,GrandRapids +1,2015-12-20,1.66,1991.44,1015.15,816.29,0.0,160.0,160.0,0.0,0.0,organic,2015,GrandRapids +2,2015-12-13,1.55,2093.11,1024.98,891.47,0.0,176.66,176.66,0.0,0.0,organic,2015,GrandRapids +3,2015-12-06,1.64,1643.19,944.24,492.28,0.0,206.67,206.67,0.0,0.0,organic,2015,GrandRapids +4,2015-11-29,1.66,1497.39,808.92,568.47,0.0,120.0,120.0,0.0,0.0,organic,2015,GrandRapids +5,2015-11-22,1.66,1602.88,870.86,595.85,0.0,136.17,130.0,6.17,0.0,organic,2015,GrandRapids +6,2015-11-15,1.65,1663.16,958.54,531.29,0.0,173.33,173.33,0.0,0.0,organic,2015,GrandRapids +7,2015-11-08,1.64,1629.69,981.27,485.09,0.0,163.33,163.33,0.0,0.0,organic,2015,GrandRapids +8,2015-11-01,1.6,1640.89,984.57,506.83,0.0,149.49,103.33,46.16,0.0,organic,2015,GrandRapids +9,2015-10-25,1.57,1980.42,946.43,692.85,0.0,341.14,193.33,147.81,0.0,organic,2015,GrandRapids +10,2015-10-18,1.61,2146.0,1156.71,650.48,0.0,338.81,283.33,55.48,0.0,organic,2015,GrandRapids +11,2015-10-11,1.74,1653.86,517.94,835.92,0.0,300.0,300.0,0.0,0.0,organic,2015,GrandRapids +12,2015-10-04,1.69,1708.12,613.05,695.07,0.0,400.0,400.0,0.0,0.0,organic,2015,GrandRapids +13,2015-09-27,1.68,2137.67,849.13,835.21,0.0,453.33,453.33,0.0,0.0,organic,2015,GrandRapids +14,2015-09-20,1.69,1837.03,787.73,762.63,0.0,286.67,286.67,0.0,0.0,organic,2015,GrandRapids +15,2015-09-13,1.68,1932.15,906.33,762.49,0.0,263.33,263.33,0.0,0.0,organic,2015,GrandRapids +16,2015-09-06,1.68,2320.11,1050.73,866.05,0.0,403.33,403.33,0.0,0.0,organic,2015,GrandRapids +17,2015-08-30,1.68,2584.14,1246.63,1015.26,0.0,322.25,306.67,15.58,0.0,organic,2015,GrandRapids +18,2015-08-23,1.49,4417.82,2674.37,1500.12,0.0,243.33,243.33,0.0,0.0,organic,2015,GrandRapids +19,2015-08-16,1.64,2787.28,1152.32,1438.29,0.0,196.67,196.67,0.0,0.0,organic,2015,GrandRapids +20,2015-08-09,1.76,2882.04,1224.64,1107.4,0.0,550.0,550.0,0.0,0.0,organic,2015,GrandRapids +21,2015-08-02,1.63,2807.04,14.18,2366.56,0.0,426.3,420.0,6.3,0.0,organic,2015,GrandRapids +22,2015-07-26,1.86,1070.6,9.96,793.97,0.0,266.67,266.67,0.0,0.0,organic,2015,GrandRapids +23,2015-07-19,1.9,1028.63,7.14,885.31,0.0,136.18,126.66,9.52,0.0,organic,2015,GrandRapids +24,2015-07-12,1.86,1328.38,5.73,999.76,0.0,322.89,313.34,9.55,0.0,organic,2015,GrandRapids +25,2015-07-05,1.84,1296.65,7.18,923.24,0.0,366.23,356.66,9.57,0.0,organic,2015,GrandRapids +26,2015-06-28,1.92,1206.53,63.3,873.23,0.0,270.0,270.0,0.0,0.0,organic,2015,GrandRapids +27,2015-06-21,1.93,1235.29,47.51,954.58,0.0,233.2,230.0,3.2,0.0,organic,2015,GrandRapids +28,2015-06-14,1.8,1571.89,7.2,1128.02,0.0,436.67,436.67,0.0,0.0,organic,2015,GrandRapids +29,2015-06-07,1.7,1083.03,37.44,518.39,0.0,527.2,460.0,67.2,0.0,organic,2015,GrandRapids +30,2015-05-31,1.85,1082.52,22.99,722.86,0.0,336.67,336.67,0.0,0.0,organic,2015,GrandRapids +31,2015-05-24,1.83,1417.63,10.03,983.02,0.0,424.58,418.21,6.37,0.0,organic,2015,GrandRapids +32,2015-05-17,1.85,1338.84,0.0,969.48,0.0,369.36,356.67,12.69,0.0,organic,2015,GrandRapids +33,2015-05-10,1.22,4550.92,36.97,1045.22,0.0,3468.73,346.49,3122.24,0.0,organic,2015,GrandRapids +34,2015-05-03,1.61,1377.24,7.07,1053.5,0.0,316.67,316.67,0.0,0.0,organic,2015,GrandRapids +35,2015-04-26,1.79,1369.82,2.81,1040.34,0.0,326.67,326.67,0.0,0.0,organic,2015,GrandRapids +36,2015-04-19,1.59,1377.1,0.0,963.77,0.0,413.33,413.33,0.0,0.0,organic,2015,GrandRapids +37,2015-04-12,1.86,823.5,0.0,606.83,0.0,216.67,216.67,0.0,0.0,organic,2015,GrandRapids +38,2015-04-05,1.83,934.95,11.05,617.23,0.0,306.67,306.67,0.0,0.0,organic,2015,GrandRapids +39,2015-03-29,1.87,1005.21,46.7,631.84,0.0,326.67,326.67,0.0,0.0,organic,2015,GrandRapids +40,2015-03-22,2.01,683.76,20.54,659.89,0.0,3.33,3.33,0.0,0.0,organic,2015,GrandRapids +41,2015-03-15,1.87,1329.82,94.18,813.47,0.0,422.17,385.77,36.4,0.0,organic,2015,GrandRapids +42,2015-03-08,1.78,1175.95,69.48,493.14,0.0,613.33,613.33,0.0,0.0,organic,2015,GrandRapids +43,2015-03-01,1.84,849.44,32.69,506.75,0.0,310.0,310.0,0.0,0.0,organic,2015,GrandRapids +44,2015-02-22,1.89,950.14,46.37,643.77,0.0,260.0,260.0,0.0,0.0,organic,2015,GrandRapids +45,2015-02-15,1.88,787.72,17.75,566.64,0.0,203.33,203.33,0.0,0.0,organic,2015,GrandRapids +46,2015-02-08,1.79,1083.77,84.83,402.27,0.0,596.67,596.67,0.0,0.0,organic,2015,GrandRapids +47,2015-02-01,1.98,769.05,52.14,620.24,0.0,96.67,96.67,0.0,0.0,organic,2015,GrandRapids +48,2015-01-25,2.01,711.52,59.16,572.36,0.0,80.0,80.0,0.0,0.0,organic,2015,GrandRapids +49,2015-01-18,1.88,706.15,20.71,488.77,0.0,196.67,196.67,0.0,0.0,organic,2015,GrandRapids +50,2015-01-11,1.87,761.86,29.06,539.72,0.0,193.08,190.0,3.08,0.0,organic,2015,GrandRapids +51,2015-01-04,1.6,1012.61,23.59,772.85,0.0,216.17,210.0,6.17,0.0,organic,2015,GrandRapids +0,2015-12-27,1.49,66775.85,6557.08,43451.67,4.66,16762.44,6579.3,10183.14,0.0,organic,2015,GreatLakes +1,2015-12-20,1.55,62669.16,7341.18,45409.35,6.23,9912.4,4761.67,5150.73,0.0,organic,2015,GreatLakes +2,2015-12-13,1.53,65341.66,7762.24,46066.59,0.0,11512.83,4150.64,7362.19,0.0,organic,2015,GreatLakes +3,2015-12-06,1.6,71502.74,7269.3,53935.3,3.12,10295.02,5915.04,4379.98,0.0,organic,2015,GreatLakes +4,2015-11-29,1.61,59169.17,6464.54,46706.82,0.0,5997.81,3485.76,2512.05,0.0,organic,2015,GreatLakes +5,2015-11-22,1.57,67773.07,8031.45,52934.16,0.0,6807.46,3107.27,3700.19,0.0,organic,2015,GreatLakes +6,2015-11-15,1.54,72434.15,7998.72,54649.47,12.57,9773.39,4987.47,4785.92,0.0,organic,2015,GreatLakes +7,2015-11-08,1.54,77222.36,7904.17,54952.16,127.35,14238.68,7297.5,6941.18,0.0,organic,2015,GreatLakes +8,2015-11-01,1.59,75586.78,7785.24,54952.19,261.3,12588.05,5592.13,6995.92,0.0,organic,2015,GreatLakes +9,2015-10-25,1.58,77066.63,9037.35,54687.19,108.75,13233.34,7451.64,5781.7,0.0,organic,2015,GreatLakes +10,2015-10-18,1.6,75238.38,9125.57,50799.97,0.0,15312.84,6138.54,9174.3,0.0,organic,2015,GreatLakes +11,2015-10-11,1.6,69918.93,6468.53,50913.46,0.0,12536.94,5310.04,7226.9,0.0,organic,2015,GreatLakes +12,2015-10-04,1.67,70410.49,6795.29,53256.82,0.0,10358.38,5494.36,4864.02,0.0,organic,2015,GreatLakes +13,2015-09-27,1.66,70809.98,7925.81,55025.02,0.0,7859.15,4464.32,3394.83,0.0,organic,2015,GreatLakes +14,2015-09-20,1.68,75306.07,8591.69,60724.74,0.0,5989.64,4811.55,1178.09,0.0,organic,2015,GreatLakes +15,2015-09-13,1.67,83530.33,9336.46,64212.51,0.0,9981.36,5498.57,4482.79,0.0,organic,2015,GreatLakes +16,2015-09-06,1.61,95931.87,10710.92,70456.63,0.0,14764.32,8139.62,6624.7,0.0,organic,2015,GreatLakes +17,2015-08-30,1.56,96236.54,12072.61,68165.17,0.0,15998.76,5736.66,10262.1,0.0,organic,2015,GreatLakes +18,2015-08-23,1.59,107306.08,16868.78,74972.26,4.72,15460.32,6945.82,8514.5,0.0,organic,2015,GreatLakes +19,2015-08-16,1.72,92086.0,7870.21,75764.76,0.0,8451.03,4920.39,3530.64,0.0,organic,2015,GreatLakes +20,2015-08-09,1.7,84089.07,6759.99,64669.41,7.88,12651.79,9238.64,3413.15,0.0,organic,2015,GreatLakes +21,2015-08-02,1.64,82380.97,4097.55,68639.13,4.73,9639.56,5115.58,4523.98,0.0,organic,2015,GreatLakes +22,2015-07-26,1.5,87348.95,3971.27,63468.5,0.0,19909.18,4387.73,15521.45,0.0,organic,2015,GreatLakes +23,2015-07-19,1.48,81489.76,3513.22,55925.95,0.0,22050.59,2919.87,19130.72,0.0,organic,2015,GreatLakes +24,2015-07-12,1.4,88179.72,2857.11,56288.88,0.0,29033.73,5550.17,23483.56,0.0,organic,2015,GreatLakes +25,2015-07-05,1.54,86288.07,3459.78,64726.47,0.0,18101.82,6963.33,11138.49,0.0,organic,2015,GreatLakes +26,2015-06-28,1.59,71801.27,3449.4,58422.4,3.16,9926.31,4277.9,5648.41,0.0,organic,2015,GreatLakes +27,2015-06-21,1.62,72563.98,4039.33,57352.16,1.58,11170.91,5417.71,5753.2,0.0,organic,2015,GreatLakes +28,2015-06-14,1.58,80790.46,3599.24,60044.76,0.0,17146.46,11975.99,5170.47,0.0,organic,2015,GreatLakes +29,2015-06-07,1.55,81945.35,4002.95,58492.04,3.15,19447.21,10793.27,8653.94,0.0,organic,2015,GreatLakes +30,2015-05-31,1.65,79819.77,3599.67,58929.65,0.0,17290.45,12356.85,4933.6,0.0,organic,2015,GreatLakes +31,2015-05-24,1.66,79844.57,4379.87,61338.68,0.0,14126.02,9484.68,4641.34,0.0,organic,2015,GreatLakes +32,2015-05-17,1.44,82513.95,3514.15,57296.83,0.0,21702.97,8158.29,13544.68,0.0,organic,2015,GreatLakes +33,2015-05-10,1.13,171746.76,4838.87,99557.66,1.56,67348.67,10756.98,56591.69,0.0,organic,2015,GreatLakes +34,2015-05-03,1.22,143144.15,4609.7,106059.64,9.31,32465.5,8315.3,24150.2,0.0,organic,2015,GreatLakes +35,2015-04-26,1.55,92616.45,3518.79,73735.0,0.0,15362.66,9119.01,6243.65,0.0,organic,2015,GreatLakes +36,2015-04-19,1.57,85825.52,3155.93,68315.02,1.54,14353.03,10861.1,3491.93,0.0,organic,2015,GreatLakes +37,2015-04-12,1.42,149583.28,3254.92,135705.27,0.0,10623.09,8421.24,2201.85,0.0,organic,2015,GreatLakes +38,2015-04-05,1.51,81495.39,2559.69,60473.81,0.0,18461.89,9256.24,9205.65,0.0,organic,2015,GreatLakes +39,2015-03-29,1.62,64282.45,2606.14,51107.34,0.0,10568.97,9963.32,605.65,0.0,organic,2015,GreatLakes +40,2015-03-22,1.63,56818.47,3057.74,51274.78,0.0,2485.95,1992.35,493.6,0.0,organic,2015,GreatLakes +41,2015-03-15,1.55,65534.87,3884.91,47489.47,0.0,14160.49,8669.15,5491.34,0.0,organic,2015,GreatLakes +42,2015-03-08,1.6,74152.81,3590.18,46265.47,10.54,24286.62,20700.55,3586.07,0.0,organic,2015,GreatLakes +43,2015-03-01,1.69,61260.09,3154.34,43284.57,0.0,14821.18,13128.9,1692.28,0.0,organic,2015,GreatLakes +44,2015-02-22,1.68,56569.37,3756.4,41242.41,0.0,11570.56,8327.94,3242.62,0.0,organic,2015,GreatLakes +45,2015-02-15,1.65,58236.29,3633.54,40867.13,0.0,13735.62,11050.0,2685.62,0.0,organic,2015,GreatLakes +46,2015-02-08,1.64,58545.6,3711.76,35512.66,0.0,19321.18,17758.89,1562.29,0.0,organic,2015,GreatLakes +47,2015-02-01,1.53,63248.58,4062.76,46378.83,0.0,12806.99,8615.6,4191.39,0.0,organic,2015,GreatLakes +48,2015-01-25,1.63,59906.52,3609.5,45327.3,0.0,10969.72,6137.81,4831.91,0.0,organic,2015,GreatLakes +49,2015-01-18,1.73,57646.9,3941.59,43653.15,0.0,10052.16,6511.7,3540.46,0.0,organic,2015,GreatLakes +50,2015-01-11,1.69,58061.65,4362.25,44552.46,0.0,9146.94,7266.75,1880.19,0.0,organic,2015,GreatLakes +51,2015-01-04,1.54,61615.1,3633.93,42963.06,0.0,15018.11,9763.55,5254.56,0.0,organic,2015,GreatLakes +0,2015-12-27,1.45,5828.38,79.19,186.22,16.23,5546.74,959.63,4587.11,0.0,organic,2015,HarrisburgScranton +1,2015-12-20,2.09,2787.93,116.92,171.24,17.81,2481.96,1452.29,1029.67,0.0,organic,2015,HarrisburgScranton +2,2015-12-13,2.0,4330.23,68.06,235.65,19.56,4006.96,1597.46,2409.5,0.0,organic,2015,HarrisburgScranton +3,2015-12-06,1.3,4854.67,137.97,185.9,3.2,4527.6,415.87,4111.73,0.0,organic,2015,HarrisburgScranton +4,2015-11-29,1.4,3109.42,78.81,199.95,11.9,2818.76,314.95,2503.81,0.0,organic,2015,HarrisburgScranton +5,2015-11-22,1.47,2236.04,118.91,176.06,10.92,1930.15,449.95,1480.2,0.0,organic,2015,HarrisburgScranton +6,2015-11-15,1.92,1200.0,117.97,290.51,6.13,785.39,723.13,62.26,0.0,organic,2015,HarrisburgScranton +7,2015-11-08,1.99,1162.68,165.99,263.8,11.95,720.94,648.49,72.45,0.0,organic,2015,HarrisburgScranton +8,2015-11-01,2.02,971.81,148.85,142.9,20.91,659.15,427.6,231.55,0.0,organic,2015,HarrisburgScranton +9,2015-10-25,1.79,1446.07,82.55,166.6,19.61,1177.31,490.21,687.1,0.0,organic,2015,HarrisburgScranton +10,2015-10-18,1.48,3139.5,67.84,221.62,16.38,2833.66,481.82,2351.84,0.0,organic,2015,HarrisburgScranton +11,2015-10-11,1.49,2449.56,70.71,136.9,21.13,2220.82,676.28,1544.54,0.0,organic,2015,HarrisburgScranton +12,2015-10-04,2.02,1188.82,82.58,186.17,9.38,910.69,910.69,0.0,0.0,organic,2015,HarrisburgScranton +13,2015-09-27,2.24,1140.95,106.54,222.08,8.74,803.59,803.59,0.0,0.0,organic,2015,HarrisburgScranton +14,2015-09-20,1.94,1558.39,136.1,215.36,15.42,1191.51,1191.51,0.0,0.0,organic,2015,HarrisburgScranton +15,2015-09-13,1.84,2056.82,83.47,177.37,8.35,1787.63,1787.63,0.0,0.0,organic,2015,HarrisburgScranton +16,2015-09-06,1.68,3559.45,155.6,173.38,3.33,3227.14,3210.67,16.47,0.0,organic,2015,HarrisburgScranton +17,2015-08-30,1.73,2421.86,94.47,134.32,12.92,2180.15,2153.91,26.24,0.0,organic,2015,HarrisburgScranton +18,2015-08-23,1.7,2826.08,63.18,149.88,17.31,2595.71,2585.91,9.8,0.0,organic,2015,HarrisburgScranton +19,2015-08-16,1.88,1721.57,101.04,156.68,7.65,1456.2,1456.2,0.0,0.0,organic,2015,HarrisburgScranton +20,2015-08-09,1.69,3079.23,99.0,160.14,33.3,2786.79,2786.79,0.0,0.0,organic,2015,HarrisburgScranton +21,2015-08-02,1.96,2728.36,69.63,198.74,11.44,2448.55,2448.55,0.0,0.0,organic,2015,HarrisburgScranton +22,2015-07-26,2.06,1397.24,145.93,176.28,17.81,1057.22,1057.22,0.0,0.0,organic,2015,HarrisburgScranton +23,2015-07-19,1.92,3151.22,79.11,222.93,15.28,2833.9,2833.9,0.0,0.0,organic,2015,HarrisburgScranton +24,2015-07-12,1.92,1267.44,124.64,166.18,6.53,970.09,970.09,0.0,0.0,organic,2015,HarrisburgScranton +25,2015-07-05,2.01,1841.62,65.57,91.22,11.24,1673.59,1673.59,0.0,0.0,organic,2015,HarrisburgScranton +26,2015-06-28,1.85,3388.83,119.9,155.59,12.85,3100.49,3100.49,0.0,0.0,organic,2015,HarrisburgScranton +27,2015-06-21,1.9,3072.73,62.37,243.82,4.66,2761.88,2761.88,0.0,0.0,organic,2015,HarrisburgScranton +28,2015-06-14,1.83,3495.22,87.55,165.22,10.76,3231.69,3231.69,0.0,0.0,organic,2015,HarrisburgScranton +29,2015-06-07,1.84,3485.54,35.17,122.39,0.0,3327.98,3327.98,0.0,0.0,organic,2015,HarrisburgScranton +30,2015-05-31,1.83,3046.57,91.11,173.81,0.0,2781.65,2781.65,0.0,0.0,organic,2015,HarrisburgScranton +31,2015-05-24,1.84,4440.45,75.43,178.79,15.02,4171.21,4171.21,0.0,0.0,organic,2015,HarrisburgScranton +32,2015-05-17,1.88,3850.2,39.57,251.83,8.35,3550.45,3550.45,0.0,0.0,organic,2015,HarrisburgScranton +33,2015-05-10,1.78,4998.64,68.79,228.82,6.47,4694.56,4694.56,0.0,0.0,organic,2015,HarrisburgScranton +34,2015-05-03,1.84,3547.22,38.69,132.65,0.0,3375.88,3375.88,0.0,0.0,organic,2015,HarrisburgScranton +35,2015-04-26,1.81,3339.18,23.42,97.81,0.0,3217.95,3217.95,0.0,0.0,organic,2015,HarrisburgScranton +36,2015-04-19,1.88,2901.35,96.21,86.59,6.2,2712.35,2712.35,0.0,0.0,organic,2015,HarrisburgScranton +37,2015-04-12,1.79,4127.83,86.7,151.38,0.0,3889.75,3889.75,0.0,0.0,organic,2015,HarrisburgScranton +38,2015-04-05,1.75,3315.89,28.96,155.83,7.44,3123.66,3123.66,0.0,0.0,organic,2015,HarrisburgScranton +39,2015-03-29,1.79,3705.26,48.19,204.38,0.0,3452.69,3452.69,0.0,0.0,organic,2015,HarrisburgScranton +40,2015-03-22,2.09,1169.94,45.7,391.89,0.0,732.35,732.35,0.0,0.0,organic,2015,HarrisburgScranton +41,2015-03-15,1.72,2403.77,52.73,270.59,0.0,2080.45,2080.45,0.0,0.0,organic,2015,HarrisburgScranton +42,2015-03-08,1.6,6095.01,18.08,353.34,0.0,5723.59,5723.59,0.0,0.0,organic,2015,HarrisburgScranton +43,2015-03-01,1.74,3063.7,44.66,266.54,7.83,2744.67,2744.67,0.0,0.0,organic,2015,HarrisburgScranton +44,2015-02-22,1.68,3400.24,22.4,152.59,11.46,3213.79,3213.79,0.0,0.0,organic,2015,HarrisburgScranton +45,2015-02-15,1.65,4701.71,49.13,261.1,16.03,4375.45,4375.45,0.0,0.0,organic,2015,HarrisburgScranton +46,2015-02-08,1.67,3408.2,35.2,136.56,0.0,3236.44,3236.44,0.0,0.0,organic,2015,HarrisburgScranton +47,2015-02-01,1.65,3796.16,39.55,151.13,0.0,3605.48,3605.48,0.0,0.0,organic,2015,HarrisburgScranton +48,2015-01-25,1.8,2171.91,97.75,171.42,0.0,1902.74,1902.74,0.0,0.0,organic,2015,HarrisburgScranton +49,2015-01-18,1.94,1355.5,50.54,127.76,8.74,1168.46,1168.46,0.0,0.0,organic,2015,HarrisburgScranton +50,2015-01-11,1.65,3882.88,90.15,288.15,0.0,3504.58,3504.58,0.0,0.0,organic,2015,HarrisburgScranton +51,2015-01-04,1.68,2896.72,161.68,206.96,0.0,2528.08,2528.08,0.0,0.0,organic,2015,HarrisburgScranton +0,2015-12-27,2.32,5526.5,88.59,3733.01,6.81,1698.09,1619.34,78.75,0.0,organic,2015,HartfordSpringfield +1,2015-12-20,2.24,3998.59,222.69,1874.44,230.89,1670.57,1670.57,0.0,0.0,organic,2015,HartfordSpringfield +2,2015-12-13,2.34,6923.91,75.32,2154.16,2410.25,2284.18,2284.18,0.0,0.0,organic,2015,HartfordSpringfield +3,2015-12-06,2.16,2739.09,192.25,2179.25,15.11,352.48,349.15,3.33,0.0,organic,2015,HartfordSpringfield +4,2015-11-29,2.33,1632.72,30.3,1476.57,0.0,125.85,89.73,36.12,0.0,organic,2015,HartfordSpringfield +5,2015-11-22,2.31,2318.13,138.16,2079.91,1.38,98.68,83.07,15.61,0.0,organic,2015,HartfordSpringfield +6,2015-11-15,2.23,2428.95,135.67,2079.43,0.0,213.85,201.54,12.31,0.0,organic,2015,HartfordSpringfield +7,2015-11-08,2.14,2878.54,113.32,2199.02,0.0,566.2,553.88,12.32,0.0,organic,2015,HartfordSpringfield +8,2015-11-01,1.96,4177.83,88.45,2399.47,9.72,1680.19,1390.22,289.97,0.0,organic,2015,HartfordSpringfield +9,2015-10-25,1.98,3885.53,54.15,2232.58,9.72,1589.08,339.5,1249.58,0.0,organic,2015,HartfordSpringfield +10,2015-10-18,2.18,2420.25,32.76,1785.15,0.0,602.34,398.75,203.59,0.0,organic,2015,HartfordSpringfield +11,2015-10-11,2.27,2819.11,97.26,2144.44,0.0,577.41,386.42,190.99,0.0,organic,2015,HartfordSpringfield +12,2015-10-04,2.3,2855.32,64.28,2269.13,5.54,516.37,396.42,119.95,0.0,organic,2015,HartfordSpringfield +13,2015-09-27,2.41,4559.35,53.88,4317.3,4.14,184.03,159.47,24.56,0.0,organic,2015,HartfordSpringfield +14,2015-09-20,2.31,2700.77,179.18,2459.91,2.76,58.92,58.92,0.0,0.0,organic,2015,HartfordSpringfield +15,2015-09-13,2.36,2868.18,49.48,2509.01,2.75,306.94,306.94,0.0,0.0,organic,2015,HartfordSpringfield +16,2015-09-06,2.37,4058.62,172.82,3667.53,2.74,215.53,209.43,6.1,0.0,organic,2015,HartfordSpringfield +17,2015-08-30,2.33,2641.01,88.92,2172.97,0.0,379.12,373.04,6.08,0.0,organic,2015,HartfordSpringfield +18,2015-08-23,2.31,2928.46,117.28,2302.09,0.0,509.09,509.09,0.0,0.0,organic,2015,HartfordSpringfield +19,2015-08-16,2.39,3753.16,1360.6,2053.79,2.72,336.05,336.05,0.0,0.0,organic,2015,HartfordSpringfield +20,2015-08-09,2.31,5078.46,1941.88,2656.17,1.36,479.05,479.05,0.0,0.0,organic,2015,HartfordSpringfield +21,2015-08-02,2.42,2676.3,82.67,2503.23,1.36,89.04,89.04,0.0,0.0,organic,2015,HartfordSpringfield +22,2015-07-26,2.39,2606.3,67.61,2487.67,0.0,51.02,47.69,3.33,0.0,organic,2015,HartfordSpringfield +23,2015-07-19,2.45,2960.69,80.9,2832.42,4.04,43.33,43.33,0.0,0.0,organic,2015,HartfordSpringfield +24,2015-07-12,2.38,2843.66,122.16,2585.19,0.0,136.31,136.31,0.0,0.0,organic,2015,HartfordSpringfield +25,2015-07-05,2.4,4295.54,160.42,3786.57,0.0,348.55,348.55,0.0,0.0,organic,2015,HartfordSpringfield +26,2015-06-28,2.31,2790.4,133.18,2522.05,0.0,135.17,135.17,0.0,0.0,organic,2015,HartfordSpringfield +27,2015-06-21,2.4,3776.07,74.33,3375.21,0.0,326.53,299.86,26.67,0.0,organic,2015,HartfordSpringfield +28,2015-06-14,2.25,3551.66,123.54,2957.88,7.93,462.31,462.31,0.0,0.0,organic,2015,HartfordSpringfield +29,2015-06-07,2.34,3478.25,276.38,2787.48,1.32,413.07,413.07,0.0,0.0,organic,2015,HartfordSpringfield +30,2015-05-31,2.24,3193.41,274.09,2489.29,18.36,411.67,411.67,0.0,0.0,organic,2015,HartfordSpringfield +31,2015-05-24,2.36,3550.25,84.97,3012.17,18.3,434.81,434.81,0.0,0.0,organic,2015,HartfordSpringfield +32,2015-05-17,2.3,3485.39,46.31,2854.86,2.61,581.61,581.61,0.0,0.0,organic,2015,HartfordSpringfield +33,2015-05-10,2.31,4484.97,79.2,3796.6,3.89,605.28,605.28,0.0,0.0,organic,2015,HartfordSpringfield +34,2015-05-03,1.55,6372.85,45.29,5832.35,20.71,474.5,474.5,0.0,0.0,organic,2015,HartfordSpringfield +35,2015-04-26,2.24,2843.96,52.97,2160.59,5.16,625.24,625.24,0.0,0.0,organic,2015,HartfordSpringfield +36,2015-04-19,2.27,3253.43,82.48,2636.67,1.29,532.99,532.99,0.0,0.0,organic,2015,HartfordSpringfield +37,2015-04-12,2.16,3828.42,183.5,2892.62,0.0,752.3,752.3,0.0,0.0,organic,2015,HartfordSpringfield +38,2015-04-05,2.18,2789.49,99.8,1927.65,2.59,759.45,759.45,0.0,0.0,organic,2015,HartfordSpringfield +39,2015-03-29,2.27,2220.8,88.35,1846.21,0.0,286.24,286.24,0.0,0.0,organic,2015,HartfordSpringfield +40,2015-03-22,2.18,2848.49,148.61,2276.05,0.0,423.83,423.83,0.0,0.0,organic,2015,HartfordSpringfield +41,2015-03-15,2.26,2727.38,83.69,2234.24,0.0,409.45,409.45,0.0,0.0,organic,2015,HartfordSpringfield +42,2015-03-08,2.18,3286.02,152.85,2524.64,0.0,608.53,608.53,0.0,0.0,organic,2015,HartfordSpringfield +43,2015-03-01,2.17,3050.04,59.15,2158.92,2.63,829.34,829.34,0.0,0.0,organic,2015,HartfordSpringfield +44,2015-02-22,2.38,4834.37,670.44,3747.31,2.64,413.98,413.98,0.0,0.0,organic,2015,HartfordSpringfield +45,2015-02-15,2.13,2753.92,304.33,1797.05,0.0,652.54,652.54,0.0,0.0,organic,2015,HartfordSpringfield +46,2015-02-08,2.37,5223.36,49.13,4531.32,15.93,626.98,626.98,0.0,0.0,organic,2015,HartfordSpringfield +47,2015-02-01,1.54,6084.48,88.08,5406.05,2.67,587.68,587.68,0.0,0.0,organic,2015,HartfordSpringfield +48,2015-01-25,2.21,1920.19,73.54,1602.72,9.36,234.57,234.57,0.0,0.0,organic,2015,HartfordSpringfield +49,2015-01-18,2.35,2552.09,39.56,2233.79,12.07,266.67,266.67,0.0,0.0,organic,2015,HartfordSpringfield +50,2015-01-11,2.28,3463.61,79.31,3190.97,0.0,193.33,193.33,0.0,0.0,organic,2015,HartfordSpringfield +51,2015-01-04,2.32,4801.1,87.56,4364.01,0.0,349.53,349.53,0.0,0.0,organic,2015,HartfordSpringfield +0,2015-12-27,1.31,10598.3,4797.41,57.91,0.0,5742.98,4815.51,927.47,0.0,organic,2015,Houston +1,2015-12-20,1.27,9253.24,4463.03,88.26,0.0,4701.95,3278.23,1423.72,0.0,organic,2015,Houston +2,2015-12-13,1.35,11494.89,4757.11,93.57,0.0,6644.21,6636.26,7.95,0.0,organic,2015,Houston +3,2015-12-06,1.49,8216.98,4787.28,85.7,0.0,3344.0,3344.0,0.0,0.0,organic,2015,Houston +4,2015-11-29,1.51,7442.68,4092.5,69.63,0.0,3280.55,3280.55,0.0,0.0,organic,2015,Houston +5,2015-11-22,1.5,8158.36,4552.46,58.92,0.0,3546.98,3546.98,0.0,0.0,organic,2015,Houston +6,2015-11-15,1.5,9857.51,5342.4,45.23,0.0,4469.88,4469.88,0.0,0.0,organic,2015,Houston +7,2015-11-08,1.44,10027.49,6028.94,83.94,0.0,3914.61,3914.61,0.0,0.0,organic,2015,Houston +8,2015-11-01,1.49,9377.04,5544.81,62.57,0.0,3769.66,3769.66,0.0,0.0,organic,2015,Houston +9,2015-10-25,1.48,11445.39,7202.98,65.11,0.0,4177.3,4177.3,0.0,0.0,organic,2015,Houston +10,2015-10-18,1.48,10652.02,6905.95,39.52,0.0,3706.55,3706.55,0.0,0.0,organic,2015,Houston +11,2015-10-11,1.48,10674.23,6510.89,106.8,0.0,4056.54,4056.54,0.0,0.0,organic,2015,Houston +12,2015-10-04,1.48,10800.6,6511.05,101.39,0.0,4188.16,4188.16,0.0,0.0,organic,2015,Houston +13,2015-09-27,1.47,12416.96,8647.11,58.47,0.0,3711.38,3711.38,0.0,0.0,organic,2015,Houston +14,2015-09-20,1.47,11781.86,8733.8,46.33,0.0,3001.73,3001.73,0.0,0.0,organic,2015,Houston +15,2015-09-13,1.41,13561.23,7965.37,33.07,0.0,5562.79,5546.76,16.03,0.0,organic,2015,Houston +16,2015-09-06,1.36,9622.66,7609.04,67.49,0.0,1946.13,1790.0,156.13,0.0,organic,2015,Houston +17,2015-08-30,1.22,14045.27,11507.69,50.99,0.0,2486.59,1906.67,579.92,0.0,organic,2015,Houston +18,2015-08-23,1.26,10518.1,8896.86,94.67,0.0,1526.57,1466.67,59.9,0.0,organic,2015,Houston +19,2015-08-16,1.35,9699.79,7995.26,74.77,0.0,1629.76,1550.0,79.76,0.0,organic,2015,Houston +20,2015-08-09,1.29,14996.12,13102.08,114.04,0.0,1780.0,1773.33,6.67,0.0,organic,2015,Houston +21,2015-08-02,1.17,9952.84,9679.37,116.8,0.0,156.67,146.67,10.0,0.0,organic,2015,Houston +22,2015-07-26,1.19,13059.01,12236.42,105.92,0.0,716.67,716.67,0.0,0.0,organic,2015,Houston +23,2015-07-19,1.21,10487.18,10034.98,358.87,0.0,93.33,93.33,0.0,0.0,organic,2015,Houston +24,2015-07-12,1.17,11741.87,11397.65,277.55,0.0,66.67,66.67,0.0,0.0,organic,2015,Houston +25,2015-07-05,1.17,12717.2,11733.69,353.51,0.0,630.0,630.0,0.0,0.0,organic,2015,Houston +26,2015-06-28,1.21,10531.95,9271.84,320.11,0.0,940.0,940.0,0.0,0.0,organic,2015,Houston +27,2015-06-21,1.22,11429.63,9667.42,465.54,0.0,1296.67,1296.67,0.0,0.0,organic,2015,Houston +28,2015-06-14,1.21,10464.45,9298.08,406.37,0.0,760.0,760.0,0.0,0.0,organic,2015,Houston +29,2015-06-07,1.19,10773.86,9794.34,312.85,0.0,666.67,666.67,0.0,0.0,organic,2015,Houston +30,2015-05-31,1.23,9890.95,8711.9,189.05,0.0,990.0,990.0,0.0,0.0,organic,2015,Houston +31,2015-05-24,1.26,12358.51,11145.09,366.75,0.0,846.67,846.67,0.0,0.0,organic,2015,Houston +32,2015-05-17,1.25,11026.61,10234.81,351.8,0.0,440.0,440.0,0.0,0.0,organic,2015,Houston +33,2015-05-10,1.28,10725.46,9355.66,449.8,0.0,920.0,920.0,0.0,0.0,organic,2015,Houston +34,2015-05-03,1.26,8532.45,7306.33,252.79,0.0,973.33,973.33,0.0,0.0,organic,2015,Houston +35,2015-04-26,1.26,12066.11,10739.01,480.43,0.0,846.67,846.67,0.0,0.0,organic,2015,Houston +36,2015-04-19,1.26,13856.85,12200.72,522.8,0.0,1133.33,1133.33,0.0,0.0,organic,2015,Houston +37,2015-04-12,1.26,12380.68,11423.99,490.02,0.0,466.67,466.67,0.0,0.0,organic,2015,Houston +38,2015-04-05,1.25,11676.65,10220.11,469.87,0.0,986.67,986.67,0.0,0.0,organic,2015,Houston +39,2015-03-29,1.24,9207.99,7514.43,836.89,0.0,856.67,856.67,0.0,0.0,organic,2015,Houston +40,2015-03-22,1.24,11997.73,9802.17,1065.56,0.0,1130.0,1130.0,0.0,0.0,organic,2015,Houston +41,2015-03-15,1.27,12371.76,9740.17,688.26,0.0,1943.33,1943.33,0.0,0.0,organic,2015,Houston +42,2015-03-08,1.31,9212.46,7483.56,622.23,0.0,1106.67,1106.67,0.0,0.0,organic,2015,Houston +43,2015-03-01,1.2,11760.53,9766.77,580.43,0.0,1413.33,1413.33,0.0,0.0,organic,2015,Houston +44,2015-02-22,1.26,10792.32,9480.2,595.45,0.0,716.67,716.67,0.0,0.0,organic,2015,Houston +45,2015-02-15,1.29,10569.83,8813.11,586.72,0.0,1170.0,1170.0,0.0,0.0,organic,2015,Houston +46,2015-02-08,1.25,9077.59,7272.68,704.91,0.0,1100.0,1100.0,0.0,0.0,organic,2015,Houston +47,2015-02-01,1.15,12285.76,9833.51,1505.58,0.0,946.67,946.67,0.0,0.0,organic,2015,Houston +48,2015-01-25,1.24,11398.91,9698.27,893.97,0.0,806.67,806.67,0.0,0.0,organic,2015,Houston +49,2015-01-18,1.2,9979.64,8538.96,690.68,0.0,750.0,750.0,0.0,0.0,organic,2015,Houston +50,2015-01-11,1.26,7561.0,6142.35,818.65,0.0,600.0,600.0,0.0,0.0,organic,2015,Houston +51,2015-01-04,1.22,8938.32,7009.77,671.88,0.0,1256.67,1256.67,0.0,0.0,organic,2015,Houston +0,2015-12-27,1.49,1726.25,207.04,1052.49,0.0,466.72,394.95,71.77,0.0,organic,2015,Indianapolis +1,2015-12-20,1.61,1601.29,289.63,1082.9,0.0,228.76,169.1,59.66,0.0,organic,2015,Indianapolis +2,2015-12-13,1.35,2068.47,275.19,926.78,0.0,866.5,184.16,682.34,0.0,organic,2015,Indianapolis +3,2015-12-06,1.31,2106.77,301.9,898.59,0.0,906.28,320.0,586.28,0.0,organic,2015,Indianapolis +4,2015-11-29,1.52,1156.05,213.55,676.97,0.0,265.53,26.67,238.86,0.0,organic,2015,Indianapolis +5,2015-11-22,1.57,1767.58,239.76,1157.11,0.0,370.71,193.33,177.38,0.0,organic,2015,Indianapolis +6,2015-11-15,1.54,1895.06,170.22,1266.3,0.0,458.54,183.33,275.21,0.0,organic,2015,Indianapolis +7,2015-11-08,1.57,1710.38,241.32,957.85,0.0,511.21,203.33,307.88,0.0,organic,2015,Indianapolis +8,2015-11-01,1.55,1906.4,179.56,1061.64,0.0,665.2,276.67,388.53,0.0,organic,2015,Indianapolis +9,2015-10-25,1.62,2147.79,227.83,1202.07,0.0,717.89,446.67,271.22,0.0,organic,2015,Indianapolis +10,2015-10-18,1.46,2390.65,239.68,1072.14,0.0,1078.83,503.33,575.5,0.0,organic,2015,Indianapolis +11,2015-10-11,1.4,2030.12,215.86,1146.18,0.0,668.08,176.67,491.41,0.0,organic,2015,Indianapolis +12,2015-10-04,1.53,2167.25,128.29,1322.93,0.0,716.03,343.33,372.7,0.0,organic,2015,Indianapolis +13,2015-09-27,1.66,1713.63,169.73,1231.13,0.0,312.77,166.67,146.1,0.0,organic,2015,Indianapolis +14,2015-09-20,1.7,1959.56,221.53,1243.15,0.0,494.88,470.0,24.88,0.0,organic,2015,Indianapolis +15,2015-09-13,1.64,2512.58,311.33,1618.91,0.0,582.34,326.67,255.67,0.0,organic,2015,Indianapolis +16,2015-09-06,1.62,2794.65,321.17,1731.98,0.0,741.5,413.33,328.17,0.0,organic,2015,Indianapolis +17,2015-08-30,1.66,2883.1,493.78,1711.21,0.0,678.11,323.33,354.78,0.0,organic,2015,Indianapolis +18,2015-08-23,1.69,2858.31,482.02,1602.7,0.0,773.59,470.0,303.59,0.0,organic,2015,Indianapolis +19,2015-08-16,1.79,2309.83,70.92,1510.47,0.0,728.44,420.0,308.44,0.0,organic,2015,Indianapolis +20,2015-08-09,1.77,2318.61,67.32,1564.51,0.0,686.78,443.34,243.44,0.0,organic,2015,Indianapolis +21,2015-08-02,1.65,2024.18,106.36,1348.4,0.0,569.42,240.0,329.42,0.0,organic,2015,Indianapolis +22,2015-07-26,1.11,2998.88,70.09,1177.29,0.0,1751.5,330.0,1421.5,0.0,organic,2015,Indianapolis +23,2015-07-19,0.99,3286.32,84.2,1023.83,0.0,2178.29,333.33,1844.96,0.0,organic,2015,Indianapolis +24,2015-07-12,1.19,3105.97,43.77,1060.84,0.0,2001.36,625.97,1375.39,0.0,organic,2015,Indianapolis +25,2015-07-05,1.11,2935.57,59.2,963.26,0.0,1913.11,470.0,1443.11,0.0,organic,2015,Indianapolis +26,2015-06-28,1.58,1529.5,77.59,870.07,0.0,581.84,211.24,370.6,0.0,organic,2015,Indianapolis +27,2015-06-21,1.8,1591.6,74.67,1040.59,0.0,476.34,326.87,149.47,0.0,organic,2015,Indianapolis +28,2015-06-14,1.57,2144.0,74.98,917.96,0.0,1151.06,780.41,370.65,0.0,organic,2015,Indianapolis +29,2015-06-07,1.45,2005.12,54.91,941.53,0.0,1008.68,521.01,487.67,0.0,organic,2015,Indianapolis +30,2015-05-31,1.56,2305.49,78.89,953.08,0.0,1273.52,952.55,320.97,0.0,organic,2015,Indianapolis +31,2015-05-24,1.65,2362.64,81.97,1193.4,0.0,1087.27,853.88,233.39,0.0,organic,2015,Indianapolis +32,2015-05-17,1.19,2363.41,111.73,870.72,0.0,1380.96,258.1,1122.86,0.0,organic,2015,Indianapolis +33,2015-05-10,1.08,4169.57,110.38,845.07,0.0,3214.12,820.0,2394.12,0.0,organic,2015,Indianapolis +34,2015-05-03,1.3,2258.1,90.87,895.67,0.0,1271.56,420.0,851.56,0.0,organic,2015,Indianapolis +35,2015-04-26,1.69,1798.92,75.88,1092.14,0.0,630.9,316.67,314.23,0.0,organic,2015,Indianapolis +36,2015-04-19,1.78,2011.47,93.88,1164.3,0.0,753.29,698.59,54.7,0.0,organic,2015,Indianapolis +37,2015-04-12,1.76,1912.15,79.59,1201.62,0.0,630.94,486.67,144.27,0.0,organic,2015,Indianapolis +38,2015-04-05,1.49,2029.52,66.72,1068.47,0.0,894.33,420.96,473.37,0.0,organic,2015,Indianapolis +39,2015-03-29,1.81,1169.48,50.73,812.75,0.0,306.0,225.84,80.16,0.0,organic,2015,Indianapolis +40,2015-03-22,1.95,964.25,76.53,841.88,0.0,45.84,3.33,42.51,0.0,organic,2015,Indianapolis +41,2015-03-15,1.78,1313.43,97.1,905.1,0.0,311.23,121.72,189.51,0.0,organic,2015,Indianapolis +42,2015-03-08,1.69,2205.12,70.33,949.01,0.0,1185.78,1026.67,159.11,0.0,organic,2015,Indianapolis +43,2015-03-01,1.79,1625.01,54.96,948.84,0.0,621.21,580.0,41.21,0.0,organic,2015,Indianapolis +44,2015-02-22,1.87,1563.5,104.69,1018.76,0.0,440.05,360.0,80.05,0.0,organic,2015,Indianapolis +45,2015-02-15,1.77,1601.74,88.99,956.36,0.0,556.39,450.0,106.39,0.0,organic,2015,Indianapolis +46,2015-02-08,1.68,2086.14,41.71,778.93,0.0,1265.5,1226.67,38.83,0.0,organic,2015,Indianapolis +47,2015-02-01,1.69,1565.24,45.17,805.09,0.0,714.98,496.67,218.31,0.0,organic,2015,Indianapolis +48,2015-01-25,1.78,1221.24,49.75,765.47,0.0,406.02,286.67,119.35,0.0,organic,2015,Indianapolis +49,2015-01-18,1.96,1083.8,45.28,925.94,0.0,112.58,105.03,7.55,0.0,organic,2015,Indianapolis +50,2015-01-11,1.83,1410.31,95.46,921.79,0.0,393.06,357.75,35.31,0.0,organic,2015,Indianapolis +51,2015-01-04,1.63,1780.6,76.89,874.32,0.0,829.39,542.89,286.5,0.0,organic,2015,Indianapolis +0,2015-12-27,1.82,1754.98,1154.87,45.01,28.43,526.67,526.67,0.0,0.0,organic,2015,Jacksonville +1,2015-12-20,1.83,1742.99,1078.97,55.37,15.32,593.33,593.33,0.0,0.0,organic,2015,Jacksonville +2,2015-12-13,1.9,1478.7,1132.66,42.17,10.54,293.33,293.33,0.0,0.0,organic,2015,Jacksonville +3,2015-12-06,1.76,2080.56,1762.15,43.1,18.64,256.67,256.67,0.0,0.0,organic,2015,Jacksonville +4,2015-11-29,1.87,1303.04,925.68,32.44,11.59,333.33,333.33,0.0,0.0,organic,2015,Jacksonville +5,2015-11-22,1.9,1640.06,1257.57,41.57,24.25,316.67,316.67,0.0,0.0,organic,2015,Jacksonville +6,2015-11-15,1.88,1954.57,1446.83,48.3,16.1,443.34,436.67,6.67,0.0,organic,2015,Jacksonville +7,2015-11-08,1.83,1746.27,1112.72,34.38,9.17,590.0,590.0,0.0,0.0,organic,2015,Jacksonville +8,2015-11-01,1.82,2109.04,1331.43,21.71,12.57,743.33,743.33,0.0,0.0,organic,2015,Jacksonville +9,2015-10-25,1.89,2089.47,1616.67,27.1,9.03,436.67,436.67,0.0,0.0,organic,2015,Jacksonville +10,2015-10-18,2.26,2167.37,1601.22,44.61,14.87,506.67,506.67,0.0,0.0,organic,2015,Jacksonville +11,2015-10-11,2.11,2605.97,1536.09,43.53,26.35,1000.0,1000.0,0.0,0.0,organic,2015,Jacksonville +12,2015-10-04,2.14,1808.46,1102.26,50.47,5.73,650.0,650.0,0.0,0.0,organic,2015,Jacksonville +13,2015-09-27,2.31,1592.71,1229.36,49.36,20.66,293.33,293.33,0.0,0.0,organic,2015,Jacksonville +14,2015-09-20,2.11,1557.89,940.33,19.52,8.04,590.0,590.0,0.0,0.0,organic,2015,Jacksonville +15,2015-09-13,2.18,1722.33,1104.58,60.86,6.89,550.0,550.0,0.0,0.0,organic,2015,Jacksonville +16,2015-09-06,2.07,2016.06,1096.25,55.1,8.04,856.67,856.67,0.0,0.0,organic,2015,Jacksonville +17,2015-08-30,1.93,2451.63,1209.01,51.63,20.65,1170.34,1170.34,0.0,0.0,organic,2015,Jacksonville +18,2015-08-23,1.82,3056.14,1313.07,55.0,25.21,1662.86,1662.86,0.0,0.0,organic,2015,Jacksonville +19,2015-08-16,1.69,3621.53,1275.73,49.21,9.16,2287.43,2269.63,17.8,0.0,organic,2015,Jacksonville +20,2015-08-09,2.19,2058.04,1394.81,60.54,25.13,577.56,577.56,0.0,0.0,organic,2015,Jacksonville +21,2015-08-02,2.21,1979.87,1338.04,61.55,27.35,552.93,552.93,0.0,0.0,organic,2015,Jacksonville +22,2015-07-26,1.83,2841.57,1275.61,44.38,25.03,1496.55,1496.55,0.0,0.0,organic,2015,Jacksonville +23,2015-07-19,1.63,3597.52,1209.37,23.85,34.07,2330.23,2330.23,0.0,0.0,organic,2015,Jacksonville +24,2015-07-12,1.91,3753.82,1209.16,47.86,18.23,2478.57,2478.57,0.0,0.0,organic,2015,Jacksonville +25,2015-07-05,1.87,1787.44,1263.07,65.22,9.15,450.0,450.0,0.0,0.0,organic,2015,Jacksonville +26,2015-06-28,1.95,1774.27,1515.5,85.02,16.09,157.66,150.0,7.66,0.0,organic,2015,Jacksonville +27,2015-06-21,1.92,1989.25,1551.97,114.32,10.39,312.57,310.0,2.57,0.0,organic,2015,Jacksonville +28,2015-06-14,1.88,2208.88,1621.33,60.35,16.25,510.95,480.0,30.95,0.0,organic,2015,Jacksonville +29,2015-06-07,1.64,4115.46,3240.32,118.98,12.83,743.33,743.33,0.0,0.0,organic,2015,Jacksonville +30,2015-05-31,1.83,2053.94,1343.65,17.59,22.28,670.42,670.42,0.0,0.0,organic,2015,Jacksonville +31,2015-05-24,1.83,2450.71,1521.36,68.51,14.17,846.67,846.67,0.0,0.0,organic,2015,Jacksonville +32,2015-05-17,1.75,2470.94,1550.76,186.61,248.41,485.16,485.16,0.0,0.0,organic,2015,Jacksonville +33,2015-05-10,1.81,2281.85,1296.22,45.46,33.5,906.67,906.67,0.0,0.0,organic,2015,Jacksonville +34,2015-05-03,1.82,2078.99,1314.35,26.5,30.11,708.03,708.03,0.0,0.0,organic,2015,Jacksonville +35,2015-04-26,1.88,2003.04,1426.4,36.35,30.29,510.0,510.0,0.0,0.0,organic,2015,Jacksonville +36,2015-04-19,1.82,2076.77,1375.82,35.37,13.42,652.16,652.16,0.0,0.0,organic,2015,Jacksonville +37,2015-04-12,1.89,1890.99,1407.49,56.1,20.73,406.67,406.67,0.0,0.0,organic,2015,Jacksonville +38,2015-04-05,1.81,1885.9,1209.53,64.62,48.77,562.98,557.56,5.42,0.0,organic,2015,Jacksonville +39,2015-03-29,1.76,2214.84,1346.48,65.78,17.06,785.52,777.4,8.12,0.0,organic,2015,Jacksonville +40,2015-03-22,1.78,2186.64,1175.85,58.31,29.15,923.33,923.33,0.0,0.0,organic,2015,Jacksonville +41,2015-03-15,1.86,1891.49,1284.83,60.6,32.73,513.33,513.33,0.0,0.0,organic,2015,Jacksonville +42,2015-03-08,1.81,2221.57,1300.23,53.2,18.14,850.0,850.0,0.0,0.0,organic,2015,Jacksonville +43,2015-03-01,1.75,2076.28,1007.45,30.16,25.34,1013.33,1013.33,0.0,0.0,organic,2015,Jacksonville +44,2015-02-22,1.77,1863.24,955.93,49.18,4.8,853.33,853.33,0.0,0.0,organic,2015,Jacksonville +45,2015-02-15,1.82,1758.64,1079.86,45.39,16.72,616.67,616.67,0.0,0.0,organic,2015,Jacksonville +46,2015-02-08,1.71,2242.67,892.03,63.04,14.27,1273.33,1273.33,0.0,0.0,organic,2015,Jacksonville +47,2015-02-01,1.76,1591.75,805.42,60.41,5.92,720.0,720.0,0.0,0.0,organic,2015,Jacksonville +48,2015-01-25,1.88,1140.32,853.38,22.43,1.18,263.33,263.33,0.0,0.0,organic,2015,Jacksonville +49,2015-01-18,1.82,1403.1,846.65,55.27,1.18,500.0,500.0,0.0,0.0,organic,2015,Jacksonville +50,2015-01-11,1.91,1248.89,978.49,24.55,5.85,240.0,240.0,0.0,0.0,organic,2015,Jacksonville +51,2015-01-04,1.81,1381.31,803.33,47.67,6.98,523.33,523.33,0.0,0.0,organic,2015,Jacksonville +0,2015-12-27,1.94,4595.5,1188.98,2391.02,0.0,1015.5,701.41,314.09,0.0,organic,2015,LasVegas +1,2015-12-20,1.99,4921.37,1672.16,2841.33,0.0,407.88,258.73,149.15,0.0,organic,2015,LasVegas +2,2015-12-13,1.89,5606.22,1979.71,3117.37,0.0,509.14,408.49,100.65,0.0,organic,2015,LasVegas +3,2015-12-06,1.97,4459.56,2223.41,2159.48,0.0,76.67,76.67,0.0,0.0,organic,2015,LasVegas +4,2015-11-29,2.17,3996.06,1460.87,2505.19,0.0,30.0,30.0,0.0,0.0,organic,2015,LasVegas +5,2015-11-22,2.03,4731.93,2047.55,2644.38,0.0,40.0,40.0,0.0,0.0,organic,2015,LasVegas +6,2015-11-15,2.05,4981.33,1845.67,2977.95,0.0,157.71,43.33,114.38,0.0,organic,2015,LasVegas +7,2015-11-08,1.96,5599.48,2671.45,2753.95,0.0,174.08,123.33,50.75,0.0,organic,2015,LasVegas +8,2015-11-01,1.88,5003.8,1735.17,3115.3,0.0,153.33,153.33,0.0,0.0,organic,2015,LasVegas +9,2015-10-25,2.16,4222.62,1225.4,2724.11,0.0,273.11,256.67,16.44,0.0,organic,2015,LasVegas +10,2015-10-18,2.21,4420.01,1353.82,2836.26,0.0,229.93,223.33,6.6,0.0,organic,2015,LasVegas +11,2015-10-11,2.22,4355.33,1288.15,2770.52,0.0,296.66,296.66,0.0,0.0,organic,2015,LasVegas +12,2015-10-04,2.31,4655.07,1209.45,3328.95,0.0,116.67,116.67,0.0,0.0,organic,2015,LasVegas +13,2015-09-27,1.85,5756.8,1243.87,4399.58,0.0,113.35,103.33,10.02,0.0,organic,2015,LasVegas +14,2015-09-20,2.4,3413.65,693.42,2696.9,0.0,23.33,23.33,0.0,0.0,organic,2015,LasVegas +15,2015-09-13,2.34,3783.2,847.33,2556.59,0.0,379.28,270.0,109.28,0.0,organic,2015,LasVegas +16,2015-09-06,2.14,6723.56,3062.78,3222.2,0.0,438.58,0.0,438.58,0.0,organic,2015,LasVegas +17,2015-08-30,1.75,8160.56,3905.04,3627.37,0.0,628.15,67.59,560.56,0.0,organic,2015,LasVegas +18,2015-08-23,1.62,8676.7,4150.85,3628.56,0.0,897.29,361.51,535.78,0.0,organic,2015,LasVegas +19,2015-08-16,1.63,8549.47,3299.05,4589.07,0.0,661.35,580.13,81.22,0.0,organic,2015,LasVegas +20,2015-08-09,1.82,7773.81,4016.18,3256.86,0.0,500.77,413.41,87.36,0.0,organic,2015,LasVegas +21,2015-08-02,1.8,9065.72,4950.22,3751.82,0.0,363.68,296.67,67.01,0.0,organic,2015,LasVegas +22,2015-07-26,1.85,6775.02,3052.48,3504.8,0.0,217.74,16.67,201.07,0.0,organic,2015,LasVegas +23,2015-07-19,1.92,5058.93,1717.89,3137.14,0.0,203.9,23.99,179.91,0.0,organic,2015,LasVegas +24,2015-07-12,2.09,4999.62,1393.67,3460.14,0.0,145.81,103.93,41.88,0.0,organic,2015,LasVegas +25,2015-07-05,1.6,10492.77,4751.99,5225.48,0.0,515.3,235.16,280.14,0.0,organic,2015,LasVegas +26,2015-06-28,1.54,11098.01,5745.2,4602.5,0.0,750.31,110.08,640.23,0.0,organic,2015,LasVegas +27,2015-06-21,1.51,11225.55,6354.28,4456.88,0.0,414.39,174.28,240.11,0.0,organic,2015,LasVegas +28,2015-06-14,1.44,10351.7,4423.81,4826.0,0.0,1101.89,305.54,796.35,0.0,organic,2015,LasVegas +29,2015-06-07,1.43,10804.37,5155.39,4362.09,0.0,1286.89,416.28,870.61,0.0,organic,2015,LasVegas +30,2015-05-31,1.35,11467.23,5870.7,4092.11,0.0,1504.42,486.67,1017.75,0.0,organic,2015,LasVegas +31,2015-05-24,1.33,12299.69,6688.91,4328.35,0.0,1282.43,343.14,939.29,0.0,organic,2015,LasVegas +32,2015-05-17,1.35,12470.02,6463.13,4621.31,0.0,1385.58,330.0,1055.58,0.0,organic,2015,LasVegas +33,2015-05-10,1.34,10511.94,5433.37,3859.31,0.0,1219.26,433.33,785.93,0.0,organic,2015,LasVegas +34,2015-05-03,1.41,10168.54,4718.35,4211.52,0.0,1238.67,451.49,787.18,0.0,organic,2015,LasVegas +35,2015-04-26,1.76,12433.98,3751.05,7660.4,0.0,1022.53,560.0,462.53,0.0,organic,2015,LasVegas +36,2015-04-19,1.43,10527.86,5673.89,3973.87,0.0,880.1,233.33,646.77,0.0,organic,2015,LasVegas +37,2015-04-12,1.56,8894.91,4396.88,3477.96,0.0,1020.07,450.0,570.07,0.0,organic,2015,LasVegas +38,2015-04-05,1.67,9356.12,4828.61,3641.12,0.0,886.39,545.4,340.99,0.0,organic,2015,LasVegas +39,2015-03-29,1.43,9469.98,5071.98,3688.02,0.0,709.98,687.72,22.26,0.0,organic,2015,LasVegas +40,2015-03-22,1.46,9021.37,4449.39,3881.75,0.0,690.23,690.23,0.0,0.0,organic,2015,LasVegas +41,2015-03-15,1.89,4860.39,1974.44,2783.78,0.0,102.17,66.67,35.5,0.0,organic,2015,LasVegas +42,2015-03-08,1.78,5910.67,2676.09,2766.99,0.0,467.59,453.33,14.26,0.0,organic,2015,LasVegas +43,2015-03-01,1.61,7867.61,4161.89,2885.72,0.0,820.0,820.0,0.0,0.0,organic,2015,LasVegas +44,2015-02-22,1.79,7179.44,3979.49,3109.69,0.0,90.26,86.67,3.59,0.0,organic,2015,LasVegas +45,2015-02-15,1.79,6259.44,3336.65,2622.79,0.0,300.0,300.0,0.0,0.0,organic,2015,LasVegas +46,2015-02-08,1.68,7138.01,3705.92,2718.76,0.0,713.33,713.33,0.0,0.0,organic,2015,LasVegas +47,2015-02-01,1.6,7634.17,4366.54,2884.3,0.0,383.33,383.33,0.0,0.0,organic,2015,LasVegas +48,2015-01-25,1.66,5758.68,2421.36,3050.67,0.0,286.65,273.33,13.32,0.0,organic,2015,LasVegas +49,2015-01-18,1.63,6032.31,3449.94,1769.04,0.0,813.33,813.33,0.0,0.0,organic,2015,LasVegas +50,2015-01-11,1.54,6144.55,4027.3,2083.92,0.0,33.33,33.33,0.0,0.0,organic,2015,LasVegas +51,2015-01-04,1.5,6329.83,3730.8,2141.91,0.0,457.12,426.67,30.45,0.0,organic,2015,LasVegas +0,2015-12-27,1.21,52474.67,8914.66,15290.56,0.0,28269.45,25485.27,2784.18,0.0,organic,2015,LosAngeles +1,2015-12-20,1.11,53170.36,7660.24,13978.6,1.56,31529.96,22728.58,8801.38,0.0,organic,2015,LosAngeles +2,2015-12-13,1.14,51913.12,8067.97,13612.91,0.0,30232.24,21066.55,9165.69,0.0,organic,2015,LosAngeles +3,2015-12-06,1.23,43059.51,9738.84,11520.76,1.57,21798.34,21632.95,165.39,0.0,organic,2015,LosAngeles +4,2015-11-29,1.33,42934.45,8753.06,14877.52,0.0,19303.87,19134.05,169.82,0.0,organic,2015,LosAngeles +5,2015-11-22,1.34,45689.27,10035.86,15296.9,0.0,20356.51,19978.57,377.94,0.0,organic,2015,LosAngeles +6,2015-11-15,1.31,49201.89,10986.49,18709.28,0.0,19506.12,18988.91,517.21,0.0,organic,2015,LosAngeles +7,2015-11-08,1.42,48697.16,11093.6,19386.2,0.0,18217.36,17164.73,1052.63,0.0,organic,2015,LosAngeles +8,2015-11-01,1.36,52815.97,13987.25,20741.07,0.0,18087.65,17485.6,602.05,0.0,organic,2015,LosAngeles +9,2015-10-25,1.41,48799.38,13800.24,21060.95,0.0,13938.19,12992.81,945.38,0.0,organic,2015,LosAngeles +10,2015-10-18,1.62,33737.71,10370.68,16004.06,3.18,7359.79,6393.48,966.31,0.0,organic,2015,LosAngeles +11,2015-10-11,1.72,28062.63,8093.67,14759.53,3.18,5206.25,5146.25,60.0,0.0,organic,2015,LosAngeles +12,2015-10-04,1.68,34443.27,11737.64,17362.62,0.0,5343.01,5303.01,40.0,0.0,organic,2015,LosAngeles +13,2015-09-27,1.51,38333.16,13181.74,17468.48,0.0,7682.94,7672.94,10.0,0.0,organic,2015,LosAngeles +14,2015-09-20,1.57,43450.79,20900.82,18316.88,0.0,4233.09,4216.42,16.67,0.0,organic,2015,LosAngeles +15,2015-09-13,1.66,45533.58,26153.24,15358.54,0.0,4021.8,3985.13,36.67,0.0,organic,2015,LosAngeles +16,2015-09-06,1.6,40540.88,16410.64,16444.08,0.0,7686.16,7686.16,0.0,0.0,organic,2015,LosAngeles +17,2015-08-30,1.58,40655.43,15094.25,16296.72,0.0,9264.46,9264.46,0.0,0.0,organic,2015,LosAngeles +18,2015-08-23,1.52,50234.03,19022.68,20438.43,3.19,10769.73,10769.73,0.0,0.0,organic,2015,LosAngeles +19,2015-08-16,1.55,39542.9,15077.03,13358.18,0.0,11107.69,11107.69,0.0,0.0,organic,2015,LosAngeles +20,2015-08-09,1.61,35630.99,13861.99,13291.44,0.0,8477.56,8477.56,0.0,0.0,organic,2015,LosAngeles +21,2015-08-02,1.63,40544.17,16172.21,16827.6,0.0,7544.36,7544.36,0.0,0.0,organic,2015,LosAngeles +22,2015-07-26,1.53,43803.78,17779.91,18294.82,0.0,7729.05,7729.05,0.0,0.0,organic,2015,LosAngeles +23,2015-07-19,1.56,41636.8,17780.38,15390.1,0.0,8466.32,8466.32,0.0,0.0,organic,2015,LosAngeles +24,2015-07-12,1.59,39171.61,18271.83,13741.41,1.59,7156.78,7147.96,8.82,0.0,organic,2015,LosAngeles +25,2015-07-05,1.46,56929.52,17846.84,30121.84,4.75,8956.09,8956.09,0.0,0.0,organic,2015,LosAngeles +26,2015-06-28,1.47,48421.15,15429.9,25963.83,0.0,7027.42,7027.42,0.0,0.0,organic,2015,LosAngeles +27,2015-06-21,1.46,45352.7,16257.28,20593.79,0.0,8501.63,8501.63,0.0,0.0,organic,2015,LosAngeles +28,2015-06-14,1.44,42369.24,15847.77,18470.25,22.09,8029.13,8029.13,0.0,0.0,organic,2015,LosAngeles +29,2015-06-07,1.42,44034.76,14739.99,19066.01,6.3,10222.46,10222.46,0.0,0.0,organic,2015,LosAngeles +30,2015-05-31,1.4,44605.56,14419.12,19119.68,0.0,11066.76,11066.76,0.0,0.0,organic,2015,LosAngeles +31,2015-05-24,1.42,49071.35,15437.2,24124.62,0.0,9509.53,9509.53,0.0,0.0,organic,2015,LosAngeles +32,2015-05-17,1.41,43907.34,14135.17,20351.39,0.0,9420.78,9420.78,0.0,0.0,organic,2015,LosAngeles +33,2015-05-10,1.39,42131.8,12338.35,19929.68,0.0,9863.77,9863.77,0.0,0.0,organic,2015,LosAngeles +34,2015-05-03,1.36,43115.31,14801.85,17706.23,0.0,10607.23,10607.23,0.0,0.0,organic,2015,LosAngeles +35,2015-04-26,1.4,44090.53,15815.81,17652.02,0.0,10622.7,10622.7,0.0,0.0,organic,2015,LosAngeles +36,2015-04-19,1.41,44688.56,14352.89,21089.41,1.52,9244.74,9244.74,0.0,0.0,organic,2015,LosAngeles +37,2015-04-12,1.39,43407.79,17119.09,17886.3,0.0,8402.4,8402.4,0.0,0.0,organic,2015,LosAngeles +38,2015-04-05,1.42,44984.85,16980.32,17529.71,0.0,10474.82,10474.82,0.0,0.0,organic,2015,LosAngeles +39,2015-03-29,1.42,35121.94,13962.42,12697.51,0.0,8462.01,8462.01,0.0,0.0,organic,2015,LosAngeles +40,2015-03-22,1.25,41439.59,22334.06,12861.93,0.0,6243.6,6243.6,0.0,0.0,organic,2015,LosAngeles +41,2015-03-15,1.42,32656.06,25316.97,1120.63,0.0,6218.46,6218.46,0.0,0.0,organic,2015,LosAngeles +42,2015-03-08,1.35,42280.47,31604.04,769.47,0.0,9906.96,9906.96,0.0,0.0,organic,2015,LosAngeles +43,2015-03-01,1.14,60244.59,49177.6,1680.02,0.0,9386.97,9386.97,0.0,0.0,organic,2015,LosAngeles +44,2015-02-22,1.36,44972.88,36585.77,905.94,0.0,7481.17,7481.17,0.0,0.0,organic,2015,LosAngeles +45,2015-02-15,1.43,41524.22,33427.07,1026.28,0.0,7070.87,7070.87,0.0,0.0,organic,2015,LosAngeles +46,2015-02-08,1.29,46991.12,36957.13,2213.06,0.0,7820.93,7820.93,0.0,0.0,organic,2015,LosAngeles +47,2015-02-01,1.12,50107.32,39628.65,1721.95,0.0,8756.72,8756.72,0.0,0.0,organic,2015,LosAngeles +48,2015-01-25,1.23,38078.07,28037.64,1355.8,0.0,8684.63,8684.63,0.0,0.0,organic,2015,LosAngeles +49,2015-01-18,1.29,43649.12,33738.87,1368.91,0.0,8541.34,8541.34,0.0,0.0,organic,2015,LosAngeles +50,2015-01-11,1.08,60232.63,52087.31,2063.44,0.0,6081.88,6081.88,0.0,0.0,organic,2015,LosAngeles +51,2015-01-04,1.25,54495.54,47721.51,1723.4,0.0,5050.63,5050.63,0.0,0.0,organic,2015,LosAngeles +0,2015-12-27,1.82,862.59,9.98,690.02,0.0,162.59,60.0,102.59,0.0,organic,2015,Louisville +1,2015-12-20,1.8,924.46,33.57,833.02,0.0,57.87,13.33,44.54,0.0,organic,2015,Louisville +2,2015-12-13,1.52,1111.9,28.91,798.1,0.0,284.89,0.0,284.89,0.0,organic,2015,Louisville +3,2015-12-06,1.19,1391.25,15.13,868.57,0.0,507.55,0.0,507.55,0.0,organic,2015,Louisville +4,2015-11-29,1.19,1491.28,34.6,805.09,0.0,651.59,0.0,651.59,0.0,organic,2015,Louisville +5,2015-11-22,1.87,1202.46,7.6,1107.08,0.0,87.78,3.33,84.45,0.0,organic,2015,Louisville +6,2015-11-15,1.83,1155.99,2.54,1014.34,0.0,139.11,106.67,32.44,0.0,organic,2015,Louisville +7,2015-11-08,1.68,1272.64,43.28,894.97,0.0,334.39,153.33,181.06,0.0,organic,2015,Louisville +8,2015-11-01,1.65,1156.12,48.5,835.97,0.0,271.65,43.33,228.32,0.0,organic,2015,Louisville +9,2015-10-25,1.64,1779.45,69.06,1631.97,0.0,78.42,0.0,78.42,0.0,organic,2015,Louisville +10,2015-10-18,1.52,1696.6,20.5,1442.52,0.0,233.58,0.0,233.58,0.0,organic,2015,Louisville +11,2015-10-11,1.65,1243.4,11.54,988.31,0.0,243.55,0.0,243.55,0.0,organic,2015,Louisville +12,2015-10-04,1.87,1155.28,23.52,1114.66,0.0,17.1,0.0,17.1,0.0,organic,2015,Louisville +13,2015-09-27,1.79,1602.79,24.36,1309.08,0.0,269.35,206.67,62.68,0.0,organic,2015,Louisville +14,2015-09-20,1.65,1974.52,40.99,1268.23,0.0,665.3,423.33,241.97,0.0,organic,2015,Louisville +15,2015-09-13,1.69,1858.03,44.79,1311.84,0.0,501.4,286.67,214.73,0.0,organic,2015,Louisville +16,2015-09-06,1.38,2450.75,52.43,1262.12,0.0,1136.2,440.0,696.2,0.0,organic,2015,Louisville +17,2015-08-30,1.44,2648.03,58.75,1634.78,0.0,954.5,273.34,681.16,0.0,organic,2015,Louisville +18,2015-08-23,1.49,2726.65,42.08,1625.92,0.0,1058.65,256.67,801.98,0.0,organic,2015,Louisville +19,2015-08-16,1.52,2495.29,3.82,1866.45,0.0,625.02,243.33,381.69,0.0,organic,2015,Louisville +20,2015-08-09,1.37,3003.82,2.54,2116.56,0.0,884.72,400.0,484.72,0.0,organic,2015,Louisville +21,2015-08-02,1.37,2477.04,4.0,1786.74,0.0,686.3,36.67,649.63,0.0,organic,2015,Louisville +22,2015-07-26,1.03,2995.57,0.0,1295.04,0.0,1700.53,40.0,1660.53,0.0,organic,2015,Louisville +23,2015-07-19,1.18,2680.01,0.0,1436.55,0.0,1243.46,53.33,1190.13,0.0,organic,2015,Louisville +24,2015-07-12,1.48,2290.3,7.54,1486.26,0.0,796.5,70.0,726.5,0.0,organic,2015,Louisville +25,2015-07-05,1.49,2117.32,0.0,1260.34,0.0,856.98,246.67,610.31,0.0,organic,2015,Louisville +26,2015-06-28,1.49,1744.67,8.76,1260.31,0.0,475.6,233.33,242.27,0.0,organic,2015,Louisville +27,2015-06-21,1.46,2344.24,18.73,1652.88,0.0,672.63,224.99,447.64,0.0,organic,2015,Louisville +28,2015-06-14,1.58,2093.17,17.42,1174.85,0.0,900.9,415.53,485.37,0.0,organic,2015,Louisville +29,2015-06-07,1.24,2299.74,14.16,972.02,0.0,1313.56,437.41,876.15,0.0,organic,2015,Louisville +30,2015-05-31,1.34,2103.36,8.65,1031.77,0.0,1062.94,370.98,691.96,0.0,organic,2015,Louisville +31,2015-05-24,1.51,2285.46,3.69,1340.14,0.0,941.63,438.45,503.18,0.0,organic,2015,Louisville +32,2015-05-17,1.44,2132.11,2.46,1335.83,0.0,793.82,458.25,335.57,0.0,organic,2015,Louisville +33,2015-05-10,1.04,3355.53,12.58,1328.8,0.0,2014.15,390.0,1624.15,0.0,organic,2015,Louisville +34,2015-05-03,1.38,2038.99,1.22,829.5,0.0,1208.27,463.33,744.94,0.0,organic,2015,Louisville +35,2015-04-26,1.67,1764.81,1.22,1045.34,0.0,718.25,373.33,344.92,0.0,organic,2015,Louisville +36,2015-04-19,1.37,1687.21,0.0,914.76,0.0,772.45,246.67,525.78,0.0,organic,2015,Louisville +37,2015-04-12,1.42,1294.45,8.84,799.87,0.0,485.74,263.35,222.39,0.0,organic,2015,Louisville +38,2015-04-05,1.59,1517.39,4.82,896.16,0.0,616.41,330.0,286.41,0.0,organic,2015,Louisville +39,2015-03-29,1.63,1219.02,0.0,685.41,0.0,533.61,279.31,254.3,0.0,organic,2015,Louisville +40,2015-03-22,1.76,1030.98,10.75,746.35,0.0,273.88,113.33,160.55,0.0,organic,2015,Louisville +41,2015-03-15,1.65,1664.74,8.34,731.35,0.0,925.05,796.67,128.38,0.0,organic,2015,Louisville +42,2015-03-08,1.72,1541.79,2.38,912.87,0.0,626.54,532.64,93.9,0.0,organic,2015,Louisville +43,2015-03-01,1.65,1510.75,0.0,1077.97,0.0,432.78,213.33,219.45,0.0,organic,2015,Louisville +44,2015-02-22,1.67,1347.62,14.29,658.47,0.0,674.86,443.33,231.53,0.0,organic,2015,Louisville +45,2015-02-15,1.75,1201.07,12.71,745.28,0.0,443.08,326.67,116.41,0.0,organic,2015,Louisville +46,2015-02-08,1.61,1438.14,13.52,823.66,0.0,600.96,393.33,207.63,0.0,organic,2015,Louisville +47,2015-02-01,1.55,1336.46,0.0,772.41,0.0,564.05,303.33,260.72,0.0,organic,2015,Louisville +48,2015-01-25,1.68,1201.46,3.57,740.48,0.0,457.41,216.67,240.74,0.0,organic,2015,Louisville +49,2015-01-18,1.79,1106.86,5.19,676.38,0.0,425.29,420.0,5.29,0.0,organic,2015,Louisville +50,2015-01-11,1.79,1435.48,0.0,1219.02,0.0,216.46,173.93,42.53,0.0,organic,2015,Louisville +51,2015-01-04,1.48,1395.75,12.41,824.64,0.0,558.7,478.15,80.55,0.0,organic,2015,Louisville +0,2015-12-27,1.57,1155.71,120.88,18.16,0.0,1016.67,1016.67,0.0,0.0,organic,2015,MiamiFtLauderdale +1,2015-12-20,1.5,1563.02,34.6,1.3,0.0,1527.12,1527.12,0.0,0.0,organic,2015,MiamiFtLauderdale +2,2015-12-13,1.5,1366.32,8.91,11.73,0.0,1345.68,1345.68,0.0,0.0,organic,2015,MiamiFtLauderdale +3,2015-12-06,1.49,1054.07,2.3,1.3,0.0,1050.47,1043.8,6.67,0.0,organic,2015,MiamiFtLauderdale +4,2015-11-29,1.51,1203.52,4.91,14.34,0.0,1184.27,1184.27,0.0,0.0,organic,2015,MiamiFtLauderdale +5,2015-11-22,1.11,657.96,4.62,7.87,0.0,645.47,642.14,3.33,0.0,organic,2015,MiamiFtLauderdale +6,2015-11-15,1.44,2707.87,3.63,1.31,0.0,2702.93,2696.26,6.67,0.0,organic,2015,MiamiFtLauderdale +7,2015-11-08,1.59,84.56,3.95,3.95,0.0,76.66,73.33,3.33,0.0,organic,2015,MiamiFtLauderdale +8,2015-11-01,1.5,1955.27,3.95,1.32,0.0,1950.0,1946.67,3.33,0.0,organic,2015,MiamiFtLauderdale +9,2015-10-25,1.5,1484.89,6.28,5.28,0.0,1473.33,1473.33,0.0,0.0,organic,2015,MiamiFtLauderdale +10,2015-10-18,1.51,901.53,6.97,14.56,0.0,880.0,880.0,0.0,0.0,organic,2015,MiamiFtLauderdale +11,2015-10-11,1.51,1780.24,12.93,3.98,0.0,1763.33,1763.33,0.0,0.0,organic,2015,MiamiFtLauderdale +12,2015-10-04,1.5,1584.01,9.96,2.65,0.0,1571.4,1571.4,0.0,0.0,organic,2015,MiamiFtLauderdale +13,2015-09-27,1.5,821.99,11.28,2.65,0.0,808.06,808.06,0.0,0.0,organic,2015,MiamiFtLauderdale +14,2015-09-20,1.47,1843.74,25.17,1.32,0.0,1817.25,1817.25,0.0,0.0,organic,2015,MiamiFtLauderdale +15,2015-09-13,1.43,1005.8,10.92,5.28,0.0,989.6,989.6,0.0,0.0,organic,2015,MiamiFtLauderdale +16,2015-09-06,1.47,1962.43,4.95,5.26,0.0,1952.22,1952.22,0.0,0.0,organic,2015,MiamiFtLauderdale +17,2015-08-30,1.47,1358.02,6.31,11.79,0.0,1339.92,1339.92,0.0,0.0,organic,2015,MiamiFtLauderdale +18,2015-08-23,1.5,1059.21,7.91,1.3,0.0,1050.0,1050.0,0.0,0.0,organic,2015,MiamiFtLauderdale +19,2015-08-16,1.51,1164.87,6.18,22.02,0.0,1136.67,1136.67,0.0,0.0,organic,2015,MiamiFtLauderdale +20,2015-08-09,1.5,1359.19,8.14,7.72,0.0,1343.33,1343.33,0.0,0.0,organic,2015,MiamiFtLauderdale +21,2015-08-02,1.51,1015.04,5.11,16.6,0.0,993.33,993.33,0.0,0.0,organic,2015,MiamiFtLauderdale +22,2015-07-26,1.48,571.4,5.07,6.34,0.0,559.99,556.66,3.33,0.0,organic,2015,MiamiFtLauderdale +23,2015-07-19,1.45,792.97,5.04,1.26,0.0,786.67,786.67,0.0,0.0,organic,2015,MiamiFtLauderdale +24,2015-07-12,1.56,1751.57,85.16,2.5,0.0,1663.91,1663.91,0.0,0.0,organic,2015,MiamiFtLauderdale +25,2015-07-05,1.88,1766.19,921.19,5.0,0.0,840.0,840.0,0.0,0.0,organic,2015,MiamiFtLauderdale +26,2015-06-28,1.86,1627.96,1181.34,9.95,0.0,436.67,436.67,0.0,0.0,organic,2015,MiamiFtLauderdale +27,2015-06-21,1.92,1415.1,1247.43,6.2,0.0,161.47,161.47,0.0,0.0,organic,2015,MiamiFtLauderdale +28,2015-06-14,1.81,2017.29,1278.78,13.6,0.0,724.91,724.91,0.0,0.0,organic,2015,MiamiFtLauderdale +29,2015-06-07,1.75,2094.36,1085.62,19.75,0.0,988.99,988.99,0.0,0.0,organic,2015,MiamiFtLauderdale +30,2015-05-31,1.72,2578.53,1172.5,12.33,0.0,1393.7,1393.7,0.0,0.0,organic,2015,MiamiFtLauderdale +31,2015-05-24,1.77,1811.7,1036.04,16.06,0.0,759.6,751.37,8.23,0.0,organic,2015,MiamiFtLauderdale +32,2015-05-17,1.79,2141.08,1251.61,48.24,0.0,841.23,827.49,13.74,0.0,organic,2015,MiamiFtLauderdale +33,2015-05-10,1.77,2184.05,1393.71,8.68,0.0,781.66,759.62,22.04,0.0,organic,2015,MiamiFtLauderdale +34,2015-05-03,1.35,4770.93,3106.9,154.67,0.0,1509.36,1509.36,0.0,0.0,organic,2015,MiamiFtLauderdale +35,2015-04-26,1.25,6631.49,5848.51,488.5,0.0,294.48,294.48,0.0,0.0,organic,2015,MiamiFtLauderdale +36,2015-04-19,1.61,2879.62,1344.13,31.38,0.0,1504.11,1498.53,5.58,0.0,organic,2015,MiamiFtLauderdale +37,2015-04-12,1.81,1877.52,1456.1,35.22,0.0,386.2,386.2,0.0,0.0,organic,2015,MiamiFtLauderdale +38,2015-04-05,1.86,1702.0,1231.96,22.7,0.0,447.34,447.34,0.0,0.0,organic,2015,MiamiFtLauderdale +39,2015-03-29,1.83,2723.62,1818.87,35.41,0.0,869.34,849.67,19.67,0.0,organic,2015,MiamiFtLauderdale +40,2015-03-22,1.82,1755.09,1129.76,24.07,0.0,601.26,590.0,11.26,0.0,organic,2015,MiamiFtLauderdale +41,2015-03-15,1.73,2478.0,1133.25,11.42,0.0,1333.33,1333.33,0.0,0.0,organic,2015,MiamiFtLauderdale +42,2015-03-08,1.69,2708.59,1060.0,15.26,0.0,1633.33,1633.33,0.0,0.0,organic,2015,MiamiFtLauderdale +43,2015-03-01,1.75,2035.58,1033.03,2.55,0.0,1000.0,1000.0,0.0,0.0,organic,2015,MiamiFtLauderdale +44,2015-02-22,1.92,1386.85,1140.99,19.2,0.0,226.66,223.33,3.33,0.0,organic,2015,MiamiFtLauderdale +45,2015-02-15,1.75,1791.51,908.96,2.55,0.0,880.0,880.0,0.0,0.0,organic,2015,MiamiFtLauderdale +46,2015-02-08,1.72,2118.66,945.33,0.0,0.0,1173.33,1173.33,0.0,0.0,organic,2015,MiamiFtLauderdale +47,2015-02-01,1.73,1767.3,827.35,16.62,0.0,923.33,923.33,0.0,0.0,organic,2015,MiamiFtLauderdale +48,2015-01-25,1.84,1648.84,1091.95,26.89,0.0,530.0,530.0,0.0,0.0,organic,2015,MiamiFtLauderdale +49,2015-01-18,1.87,1459.37,1054.78,17.92,0.0,386.67,386.67,0.0,0.0,organic,2015,MiamiFtLauderdale +50,2015-01-11,1.85,1614.56,1091.28,49.95,0.0,473.33,473.33,0.0,0.0,organic,2015,MiamiFtLauderdale +51,2015-01-04,1.82,2288.44,1438.04,53.73,0.0,796.67,796.67,0.0,0.0,organic,2015,MiamiFtLauderdale +0,2015-12-27,1.6,51768.23,2070.07,25260.38,2431.47,22006.31,11522.75,10483.56,0.0,organic,2015,Midsouth +1,2015-12-20,1.71,43696.22,2258.69,27086.7,2382.98,11967.85,9205.1,2762.75,0.0,organic,2015,Midsouth +2,2015-12-13,1.68,46565.74,2651.64,24678.0,1960.98,17275.12,10126.62,7148.5,0.0,organic,2015,Midsouth +3,2015-12-06,1.59,43426.6,1765.38,24285.58,2239.72,15135.92,7305.22,7830.7,0.0,organic,2015,Midsouth +4,2015-11-29,1.5,45599.48,1884.17,24809.12,2351.45,16554.74,6478.55,10076.19,0.0,organic,2015,Midsouth +5,2015-11-22,1.66,46456.92,2136.26,30845.18,2730.31,10745.17,7911.72,2833.45,0.0,organic,2015,Midsouth +6,2015-11-15,1.7,45159.24,2855.1,27350.5,2840.16,12113.48,10565.6,1547.88,0.0,organic,2015,Midsouth +7,2015-11-08,1.66,49231.83,4884.66,24573.94,3121.29,16651.94,13541.29,3110.65,0.0,organic,2015,Midsouth +8,2015-11-01,1.61,54907.07,5463.85,26550.99,3798.97,19093.26,12311.91,6781.35,0.0,organic,2015,Midsouth +9,2015-10-25,1.7,55916.99,2906.9,33178.27,4270.62,15561.2,12052.62,3508.58,0.0,organic,2015,Midsouth +10,2015-10-18,1.66,57077.28,2657.09,31526.9,3739.04,19154.25,13759.4,5394.85,0.0,organic,2015,Midsouth +11,2015-10-11,1.53,60162.15,2195.42,30952.79,3637.71,23376.23,11437.45,11938.78,0.0,organic,2015,Midsouth +12,2015-10-04,1.73,53587.09,2184.76,32902.43,3190.88,15309.02,12203.37,3105.65,0.0,organic,2015,Midsouth +13,2015-09-27,1.76,52253.69,2191.94,31426.09,3164.97,15470.69,13112.36,2358.33,0.0,organic,2015,Midsouth +14,2015-09-20,1.72,54619.72,3268.99,33591.15,3014.16,14745.42,14021.43,723.99,0.0,organic,2015,Midsouth +15,2015-09-13,1.75,62767.95,3051.05,38182.38,3467.76,18066.76,16251.27,1815.49,0.0,organic,2015,Midsouth +16,2015-09-06,1.67,74083.65,4321.27,39381.46,3866.74,26514.18,21807.88,4706.3,0.0,organic,2015,Midsouth +17,2015-08-30,1.7,69033.16,4216.66,39193.19,3852.33,21770.98,17878.06,3892.92,0.0,organic,2015,Midsouth +18,2015-08-23,1.7,74965.16,6396.33,38841.85,4122.53,25604.45,19831.56,5772.89,0.0,organic,2015,Midsouth +19,2015-08-16,1.7,69867.41,6146.33,39087.25,4519.71,20114.12,15180.41,4933.71,0.0,organic,2015,Midsouth +20,2015-08-09,1.65,81469.58,6068.03,43254.06,5020.21,27127.28,22422.37,4704.91,0.0,organic,2015,Midsouth +21,2015-08-02,1.71,68742.23,6041.95,39663.14,3861.33,19175.81,15361.12,3814.69,0.0,organic,2015,Midsouth +22,2015-07-26,1.52,67600.74,5543.66,36107.8,3438.23,22511.05,8545.51,13965.54,0.0,organic,2015,Midsouth +23,2015-07-19,1.51,69690.43,3753.91,33297.71,3790.49,28848.32,14626.61,14221.71,0.0,organic,2015,Midsouth +24,2015-07-12,1.51,72375.15,6846.13,34618.18,4080.75,26830.09,12329.8,14500.29,0.0,organic,2015,Midsouth +25,2015-07-05,1.61,72541.61,9102.96,36327.86,4782.0,22328.79,13216.79,9112.0,0.0,organic,2015,Midsouth +26,2015-06-28,1.62,67201.29,7894.13,35220.02,4380.25,19706.89,12921.08,6785.81,0.0,organic,2015,Midsouth +27,2015-06-21,1.65,67376.23,7698.52,38237.89,4064.84,17374.98,11504.18,5870.8,0.0,organic,2015,Midsouth +28,2015-06-14,1.6,75740.17,8396.47,33250.84,4677.73,29415.13,20211.79,9203.34,0.0,organic,2015,Midsouth +29,2015-06-07,1.47,84677.56,7938.82,33492.63,4478.81,38767.3,21779.26,16988.04,0.0,organic,2015,Midsouth +30,2015-05-31,1.44,89469.59,8593.51,46639.27,5152.23,29084.58,17885.01,11199.57,0.0,organic,2015,Midsouth +31,2015-05-24,1.37,107181.78,9466.95,54218.49,5347.87,38148.47,22674.58,15473.89,0.0,organic,2015,Midsouth +32,2015-05-17,1.24,130073.74,9323.58,71859.63,19399.4,29491.13,20651.92,8839.21,0.0,organic,2015,Midsouth +33,2015-05-10,1.28,107735.95,9453.83,49525.46,5246.3,43510.36,20888.16,22622.2,0.0,organic,2015,Midsouth +34,2015-05-03,1.34,102916.4,9430.59,47953.23,7065.04,38467.54,23337.15,15130.39,0.0,organic,2015,Midsouth +35,2015-04-26,1.46,83253.18,9169.34,42025.26,4427.92,27630.66,18237.04,9393.62,0.0,organic,2015,Midsouth +36,2015-04-19,1.51,84443.98,10821.03,45874.1,5280.9,22467.95,17627.07,4840.88,0.0,organic,2015,Midsouth +37,2015-04-12,1.53,76027.78,10623.07,38006.99,5014.1,22383.62,14962.2,7421.42,0.0,organic,2015,Midsouth +38,2015-04-05,1.65,68150.51,10574.96,31229.73,4688.87,21656.95,17759.54,3897.41,0.0,organic,2015,Midsouth +39,2015-03-29,1.65,64688.75,10530.83,30083.37,4781.66,19292.89,17345.15,1947.74,0.0,organic,2015,Midsouth +40,2015-03-22,1.53,57978.41,13957.53,29037.44,4426.59,10556.85,7426.95,3129.9,0.0,organic,2015,Midsouth +41,2015-03-15,1.65,58939.14,8401.12,28424.2,4385.54,17728.28,16137.24,1591.04,0.0,organic,2015,Midsouth +42,2015-03-08,1.62,73251.74,8451.96,27277.29,4616.93,32905.56,31682.71,1222.85,0.0,organic,2015,Midsouth +43,2015-03-01,1.61,62339.44,9303.87,29547.34,4471.19,19017.04,16977.16,2039.88,0.0,organic,2015,Midsouth +44,2015-02-22,1.4,75957.01,15459.67,35943.26,4053.24,20500.84,18497.02,2003.82,0.0,organic,2015,Midsouth +45,2015-02-15,1.48,67813.61,7426.1,34306.93,4067.67,22012.91,18624.73,3388.18,0.0,organic,2015,Midsouth +46,2015-02-08,1.58,64774.28,7824.43,26491.71,4388.15,26069.99,23654.98,2415.01,0.0,organic,2015,Midsouth +47,2015-02-01,1.44,72159.84,17276.51,30751.68,4813.6,19318.05,17413.54,1904.51,0.0,organic,2015,Midsouth +48,2015-01-25,1.63,54932.83,11160.54,26029.58,3297.83,14444.88,11428.78,3016.1,0.0,organic,2015,Midsouth +49,2015-01-18,1.65,52559.1,11415.28,25306.56,3345.08,12492.18,10971.43,1520.75,0.0,organic,2015,Midsouth +50,2015-01-11,1.52,65483.08,14570.74,30445.75,3170.11,17296.48,16715.45,581.03,0.0,organic,2015,Midsouth +51,2015-01-04,1.56,58065.35,10049.66,25228.37,3672.89,19114.43,17280.89,1833.54,0.0,organic,2015,Midsouth +0,2015-12-27,1.62,3895.76,501.13,2284.69,0.0,1109.94,840.0,269.94,0.0,organic,2015,Nashville +1,2015-12-20,1.66,3764.64,479.91,2713.01,0.0,571.72,533.33,38.39,0.0,organic,2015,Nashville +2,2015-12-13,1.53,4594.71,592.64,2602.48,0.0,1399.59,696.67,702.92,0.0,organic,2015,Nashville +3,2015-12-06,1.49,4204.87,394.56,2569.3,0.0,1241.01,620.0,621.01,0.0,organic,2015,Nashville +4,2015-11-29,1.21,5143.41,373.28,2589.7,0.0,2180.43,436.67,1743.76,0.0,organic,2015,Nashville +5,2015-11-22,1.66,4282.27,329.99,3186.8,0.0,765.48,616.67,148.81,0.0,organic,2015,Nashville +6,2015-11-15,1.65,4964.88,453.74,3405.37,0.0,1105.77,986.67,119.1,0.0,organic,2015,Nashville +7,2015-11-08,1.59,5305.71,585.42,3241.54,0.0,1478.75,1103.33,375.42,0.0,organic,2015,Nashville +8,2015-11-01,1.63,4965.1,580.21,3237.25,0.0,1147.64,883.33,264.31,0.0,organic,2015,Nashville +9,2015-10-25,1.69,5077.17,668.25,3697.25,0.0,711.67,643.33,68.34,0.0,organic,2015,Nashville +10,2015-10-18,1.66,4679.4,660.38,2930.12,0.0,1088.9,930.0,158.9,0.0,organic,2015,Nashville +11,2015-10-11,1.55,4976.32,609.97,3428.69,0.0,937.66,296.67,640.99,0.0,organic,2015,Nashville +12,2015-10-04,1.75,5092.36,533.94,3976.44,0.0,581.98,576.67,5.31,0.0,organic,2015,Nashville +13,2015-09-27,1.7,4352.18,459.53,3564.95,0.0,327.7,126.67,201.03,0.0,organic,2015,Nashville +14,2015-09-20,1.74,4181.32,424.12,3661.34,0.0,95.86,13.33,82.53,0.0,organic,2015,Nashville +15,2015-09-13,1.53,6742.51,409.09,4994.22,0.0,1339.2,638.66,700.54,0.0,organic,2015,Nashville +16,2015-09-06,1.31,8225.49,355.57,5187.04,0.0,2682.88,986.04,1696.84,0.0,organic,2015,Nashville +17,2015-08-30,1.45,7100.18,378.58,5319.3,0.0,1402.3,1074.18,328.12,0.0,organic,2015,Nashville +18,2015-08-23,1.36,7768.64,388.92,4852.16,0.0,2527.56,1287.54,1240.02,0.0,organic,2015,Nashville +19,2015-08-16,1.4,7201.85,324.12,4650.56,0.0,2227.17,1246.78,980.39,0.0,organic,2015,Nashville +20,2015-08-09,1.43,7442.75,384.24,5358.58,0.0,1699.93,705.98,993.95,0.0,organic,2015,Nashville +21,2015-08-02,1.43,8082.85,428.12,6058.21,0.0,1596.52,694.27,902.25,0.0,organic,2015,Nashville +22,2015-07-26,1.15,9173.77,385.32,5220.51,0.0,3567.94,576.19,2991.75,0.0,organic,2015,Nashville +23,2015-07-19,1.23,7731.85,266.76,4409.88,0.0,3055.21,1228.95,1826.26,0.0,organic,2015,Nashville +24,2015-07-12,1.28,7754.71,373.08,4517.25,0.0,2864.38,988.88,1875.5,0.0,organic,2015,Nashville +25,2015-07-05,1.23,7148.26,338.26,4695.24,0.0,2114.76,326.67,1788.09,0.0,organic,2015,Nashville +26,2015-06-28,1.47,5890.95,389.96,4223.23,0.0,1277.76,393.33,884.43,0.0,organic,2015,Nashville +27,2015-06-21,1.8,5259.46,402.38,4021.48,0.0,835.6,376.67,458.93,0.0,organic,2015,Nashville +28,2015-06-14,1.76,4985.34,335.42,3570.63,0.0,1079.29,400.0,679.29,0.0,organic,2015,Nashville +29,2015-06-07,1.25,6725.04,316.05,3217.52,0.0,3191.47,498.8,2692.67,0.0,organic,2015,Nashville +30,2015-05-31,1.55,4984.2,380.02,2767.07,0.0,1837.11,835.86,1001.25,0.0,organic,2015,Nashville +31,2015-05-24,1.35,6578.36,368.97,3203.83,0.0,3005.56,863.62,2141.94,0.0,organic,2015,Nashville +32,2015-05-17,1.55,6367.54,383.39,4720.92,0.0,1263.23,884.72,378.51,0.0,organic,2015,Nashville +33,2015-05-10,1.13,9466.36,369.96,4669.91,18.16,4408.33,750.0,3658.33,0.0,organic,2015,Nashville +34,2015-05-03,1.57,4529.02,334.9,2364.7,68.11,1761.31,719.19,1042.12,0.0,organic,2015,Nashville +35,2015-04-26,1.68,4821.3,255.29,3162.23,53.33,1350.45,345.04,1005.41,0.0,organic,2015,Nashville +36,2015-04-19,1.45,9167.42,355.1,6291.91,52.19,2468.22,655.55,1812.67,0.0,organic,2015,Nashville +37,2015-04-12,1.5,6607.74,493.81,4812.41,83.81,1217.71,301.8,915.91,0.0,organic,2015,Nashville +38,2015-04-05,1.66,5251.04,261.25,3354.35,116.49,1518.95,938.41,580.54,0.0,organic,2015,Nashville +39,2015-03-29,1.67,4455.04,334.3,2754.56,96.0,1270.18,580.0,690.18,0.0,organic,2015,Nashville +40,2015-03-22,1.64,3813.7,297.71,2408.67,51.68,1055.64,306.67,748.97,0.0,organic,2015,Nashville +41,2015-03-15,1.78,3199.37,230.06,2525.05,54.99,389.27,263.33,125.94,0.0,organic,2015,Nashville +42,2015-03-08,1.8,4231.32,213.26,2967.69,110.0,940.37,916.67,23.7,0.0,organic,2015,Nashville +43,2015-03-01,1.76,4269.61,217.89,3226.75,101.08,723.89,556.67,167.22,0.0,organic,2015,Nashville +44,2015-02-22,1.32,9791.87,299.83,8060.61,53.9,1377.53,1166.67,210.86,0.0,organic,2015,Nashville +45,2015-02-15,1.11,10581.74,244.59,8525.9,89.76,1721.49,250.0,1471.49,0.0,organic,2015,Nashville +46,2015-02-08,1.64,4614.78,249.82,2704.37,124.35,1536.24,743.33,792.91,0.0,organic,2015,Nashville +47,2015-02-01,1.65,4205.27,213.64,2682.26,99.55,1209.82,603.33,606.49,0.0,organic,2015,Nashville +48,2015-01-25,1.71,4448.88,192.26,2511.65,60.36,1684.61,850.0,834.61,0.0,organic,2015,Nashville +49,2015-01-18,1.81,3118.58,188.44,1951.63,86.02,892.49,773.33,119.16,0.0,organic,2015,Nashville +50,2015-01-11,1.92,2892.29,204.75,2168.33,80.56,438.65,435.54,3.11,0.0,organic,2015,Nashville +51,2015-01-04,1.84,3966.0,244.34,2700.02,76.21,945.43,838.34,107.09,0.0,organic,2015,Nashville +0,2015-12-27,1.55,2215.74,383.17,5.85,0.0,1826.72,1826.72,0.0,0.0,organic,2015,NewOrleansMobile +1,2015-12-20,1.66,1822.24,470.42,0.0,0.0,1351.82,1351.82,0.0,0.0,organic,2015,NewOrleansMobile +2,2015-12-13,1.6,1529.16,424.7,0.0,0.0,1104.46,1104.46,0.0,0.0,organic,2015,NewOrleansMobile +3,2015-12-06,1.35,2211.53,294.65,0.0,0.0,1916.88,1916.88,0.0,0.0,organic,2015,NewOrleansMobile +4,2015-11-29,1.58,2041.47,221.95,0.0,0.0,1819.52,1812.85,6.67,0.0,organic,2015,NewOrleansMobile +5,2015-11-22,1.7,1355.67,286.54,0.0,0.0,1069.13,1069.13,0.0,0.0,organic,2015,NewOrleansMobile +6,2015-11-15,1.7,1750.47,425.58,0.0,0.0,1324.89,1321.56,3.33,0.0,organic,2015,NewOrleansMobile +7,2015-11-08,1.52,3512.7,249.76,5.59,0.0,3257.35,3257.35,0.0,0.0,organic,2015,NewOrleansMobile +8,2015-11-01,1.67,1713.35,334.79,94.74,0.0,1283.82,1280.49,3.33,0.0,organic,2015,NewOrleansMobile +9,2015-10-25,1.45,3314.76,251.07,94.92,0.0,2968.77,2968.77,0.0,0.0,organic,2015,NewOrleansMobile +10,2015-10-18,1.52,3148.46,366.69,93.2,0.0,2688.57,2688.57,0.0,0.0,organic,2015,NewOrleansMobile +11,2015-10-11,1.54,3133.63,398.98,94.98,0.0,2639.67,2616.34,23.33,0.0,organic,2015,NewOrleansMobile +12,2015-10-04,1.61,3044.44,244.88,104.55,0.0,2695.01,2681.68,13.33,0.0,organic,2015,NewOrleansMobile +13,2015-09-27,1.68,1747.11,390.56,71.51,0.0,1285.04,1285.04,0.0,0.0,organic,2015,NewOrleansMobile +14,2015-09-20,1.65,2119.22,291.65,82.54,0.0,1745.03,1745.03,0.0,0.0,organic,2015,NewOrleansMobile +15,2015-09-13,1.62,2353.2,310.87,107.29,0.0,1935.04,1935.04,0.0,0.0,organic,2015,NewOrleansMobile +16,2015-09-06,1.59,2570.94,280.42,136.82,0.0,2153.7,2153.7,0.0,0.0,organic,2015,NewOrleansMobile +17,2015-08-30,1.08,4600.76,206.75,136.02,0.0,4257.99,4257.99,0.0,0.0,organic,2015,NewOrleansMobile +18,2015-08-23,1.63,2273.57,257.87,222.96,0.0,1792.74,1792.74,0.0,0.0,organic,2015,NewOrleansMobile +19,2015-08-16,1.55,2797.39,256.67,119.68,0.0,2421.04,2421.04,0.0,0.0,organic,2015,NewOrleansMobile +20,2015-08-09,1.69,2448.58,383.64,255.57,0.0,1809.37,1809.37,0.0,0.0,organic,2015,NewOrleansMobile +21,2015-08-02,1.86,1577.51,468.74,258.34,0.0,850.43,850.43,0.0,0.0,organic,2015,NewOrleansMobile +22,2015-07-26,1.59,1341.9,339.87,76.13,0.0,925.9,877.56,48.34,0.0,organic,2015,NewOrleansMobile +23,2015-07-19,1.45,2364.55,290.78,100.55,0.0,1973.22,1864.52,108.7,0.0,organic,2015,NewOrleansMobile +24,2015-07-12,1.55,2227.05,221.5,5.44,0.0,2000.11,2000.11,0.0,0.0,organic,2015,NewOrleansMobile +25,2015-07-05,1.58,2228.5,349.11,62.73,0.0,1816.66,1816.66,0.0,0.0,organic,2015,NewOrleansMobile +26,2015-06-28,1.61,2478.05,428.93,185.78,0.0,1863.34,1863.34,0.0,0.0,organic,2015,NewOrleansMobile +27,2015-06-21,1.64,2778.44,569.5,218.94,0.0,1990.0,1990.0,0.0,0.0,organic,2015,NewOrleansMobile +28,2015-06-14,1.63,2261.61,536.76,54.85,0.0,1670.0,1670.0,0.0,0.0,organic,2015,NewOrleansMobile +29,2015-06-07,1.54,1773.44,773.17,24.72,0.0,975.55,975.55,0.0,0.0,organic,2015,NewOrleansMobile +30,2015-05-31,1.55,2718.12,495.43,11.01,0.0,2211.68,2211.68,0.0,0.0,organic,2015,NewOrleansMobile +31,2015-05-24,1.61,1654.85,434.29,16.56,0.0,1204.0,1204.0,0.0,0.0,organic,2015,NewOrleansMobile +32,2015-05-17,1.53,1783.16,395.23,0.0,0.0,1387.93,1387.93,0.0,0.0,organic,2015,NewOrleansMobile +33,2015-05-10,1.6,1417.42,348.97,0.0,0.0,1068.45,1065.12,3.33,0.0,organic,2015,NewOrleansMobile +34,2015-05-03,1.55,1469.41,238.51,41.6,0.0,1189.3,1189.3,0.0,0.0,organic,2015,NewOrleansMobile +35,2015-04-26,1.56,2747.19,353.56,83.28,0.0,2310.35,2310.35,0.0,0.0,organic,2015,NewOrleansMobile +36,2015-04-19,1.57,2378.18,414.11,0.0,0.0,1964.07,1964.07,0.0,0.0,organic,2015,NewOrleansMobile +37,2015-04-12,1.58,2603.66,417.57,2.75,0.0,2183.34,2183.34,0.0,0.0,organic,2015,NewOrleansMobile +38,2015-04-05,1.53,4820.36,418.56,74.17,0.0,4327.63,4327.63,0.0,0.0,organic,2015,NewOrleansMobile +39,2015-03-29,1.57,3330.37,527.3,19.22,0.0,2783.85,2783.85,0.0,0.0,organic,2015,NewOrleansMobile +40,2015-03-22,1.56,2568.19,428.01,30.18,0.0,2110.0,2110.0,0.0,0.0,organic,2015,NewOrleansMobile +41,2015-03-15,1.55,2954.83,317.68,43.82,0.0,2593.33,2593.33,0.0,0.0,organic,2015,NewOrleansMobile +42,2015-03-08,1.65,1574.72,486.52,8.2,0.0,1080.0,1080.0,0.0,0.0,organic,2015,NewOrleansMobile +43,2015-03-01,1.54,2478.78,300.0,35.45,0.0,2143.33,2140.0,3.33,0.0,organic,2015,NewOrleansMobile +44,2015-02-22,1.52,3561.9,342.26,16.3,0.0,3203.34,3203.34,0.0,0.0,organic,2015,NewOrleansMobile +45,2015-02-15,1.48,5151.37,208.55,56.15,0.0,4886.67,4886.67,0.0,0.0,organic,2015,NewOrleansMobile +46,2015-02-08,1.53,3532.67,392.0,50.67,0.0,3090.0,3090.0,0.0,0.0,organic,2015,NewOrleansMobile +47,2015-02-01,1.48,2013.46,162.22,34.57,0.0,1816.67,1816.67,0.0,0.0,organic,2015,NewOrleansMobile +48,2015-01-25,1.47,1278.14,204.19,10.61,0.0,1063.34,1063.34,0.0,0.0,organic,2015,NewOrleansMobile +49,2015-01-18,0.98,4739.17,256.53,2.64,0.0,4480.0,4480.0,0.0,0.0,organic,2015,NewOrleansMobile +50,2015-01-11,1.44,1492.44,233.3,15.81,0.0,1243.33,1243.33,0.0,0.0,organic,2015,NewOrleansMobile +51,2015-01-04,1.41,2604.25,220.61,23.64,0.0,2360.0,2360.0,0.0,0.0,organic,2015,NewOrleansMobile +0,2015-12-27,1.9,21565.58,1752.06,6546.95,1319.02,11947.55,5757.79,6189.76,0.0,organic,2015,NewYork +1,2015-12-20,1.93,24549.47,3571.41,11118.88,1760.45,8098.73,7057.1,1041.63,0.0,organic,2015,NewYork +2,2015-12-13,1.9,23927.09,2764.18,6739.98,4130.01,10292.92,7553.74,2739.18,0.0,organic,2015,NewYork +3,2015-12-06,1.65,18494.23,4117.08,7226.46,1106.58,6044.11,200.3,5843.81,0.0,organic,2015,NewYork +4,2015-11-29,1.89,9962.63,1481.23,4689.04,807.44,2984.92,336.18,2648.74,0.0,organic,2015,NewYork +5,2015-11-22,1.84,13438.23,2862.55,8165.16,209.37,2201.15,260.45,1940.7,0.0,organic,2015,NewYork +6,2015-11-15,1.76,13622.89,3015.33,9221.79,43.64,1342.13,353.75,988.38,0.0,organic,2015,NewYork +7,2015-11-08,1.82,13935.65,3607.09,9164.65,90.48,1073.43,242.37,831.06,0.0,organic,2015,NewYork +8,2015-11-01,2.09,12422.6,3272.39,8029.19,707.98,413.04,320.72,92.32,0.0,organic,2015,NewYork +9,2015-10-25,1.94,15727.43,2675.93,8966.26,411.18,3674.06,187.0,3487.06,0.0,organic,2015,NewYork +10,2015-10-18,2.07,12935.87,1528.22,9002.2,516.36,1889.09,169.72,1719.37,0.0,organic,2015,NewYork +11,2015-10-11,2.09,12517.38,1981.58,8760.24,233.98,1541.58,301.04,1240.54,0.0,organic,2015,NewYork +12,2015-10-04,2.25,15454.59,1978.71,11877.16,47.48,1551.24,428.68,1122.56,0.0,organic,2015,NewYork +13,2015-09-27,2.22,17054.18,2222.04,12986.86,536.67,1308.61,898.99,409.62,0.0,organic,2015,NewYork +14,2015-09-20,2.01,17916.34,3810.93,12299.01,1110.43,695.97,695.97,0.0,0.0,organic,2015,NewYork +15,2015-09-13,2.18,14667.53,2210.93,9782.05,815.6,1858.95,1855.37,3.58,0.0,organic,2015,NewYork +16,2015-09-06,2.01,19296.46,3451.5,11143.02,1178.79,3523.15,3330.55,192.6,0.0,organic,2015,NewYork +17,2015-08-30,2.24,16541.9,2258.34,10984.36,844.54,2454.66,2063.66,391.0,0.0,organic,2015,NewYork +18,2015-08-23,2.28,15343.33,2738.56,9860.03,921.71,1823.03,1734.46,88.57,0.0,organic,2015,NewYork +19,2015-08-16,2.3,16293.09,2843.86,11396.1,789.75,1263.38,1242.18,21.2,0.0,organic,2015,NewYork +20,2015-08-09,1.98,17137.24,4053.69,10634.97,760.12,1688.46,1688.46,0.0,0.0,organic,2015,NewYork +21,2015-08-02,2.12,13852.18,1929.99,8910.09,213.73,2798.37,2798.37,0.0,0.0,organic,2015,NewYork +22,2015-07-26,1.91,12784.61,2931.11,8850.03,45.12,958.35,958.35,0.0,0.0,organic,2015,NewYork +23,2015-07-19,2.2,13745.4,2236.68,9080.28,68.2,2360.24,2360.24,0.0,0.0,organic,2015,NewYork +24,2015-07-12,2.02,10799.02,2075.8,8167.79,53.34,502.09,502.09,0.0,0.0,organic,2015,NewYork +25,2015-07-05,2.24,9519.72,1816.12,6858.33,123.46,721.81,721.81,0.0,0.0,organic,2015,NewYork +26,2015-06-28,1.93,16746.9,3320.1,10764.53,457.76,2204.51,2204.51,0.0,0.0,organic,2015,NewYork +27,2015-06-21,2.34,15733.14,3466.62,9967.4,1167.6,1131.52,1124.85,6.67,0.0,organic,2015,NewYork +28,2015-06-14,2.0,22931.78,5012.28,14260.6,923.15,2735.75,2735.75,0.0,0.0,organic,2015,NewYork +29,2015-06-07,2.31,15733.56,2746.38,9225.5,875.98,2885.7,2885.7,0.0,0.0,organic,2015,NewYork +30,2015-05-31,1.93,17646.52,3348.56,11206.98,649.64,2441.34,2441.34,0.0,0.0,organic,2015,NewYork +31,2015-05-24,2.17,18746.25,3933.46,9577.45,417.36,4817.98,4817.98,0.0,0.0,organic,2015,NewYork +32,2015-05-17,2.06,21815.46,2917.8,10860.17,90.34,7947.15,7947.15,0.0,0.0,organic,2015,NewYork +33,2015-05-10,1.93,23195.0,2719.15,13976.67,7.75,6491.43,6481.1,10.33,0.0,organic,2015,NewYork +34,2015-05-03,2.14,18576.24,2667.08,11540.21,505.84,3863.11,3832.24,30.87,0.0,organic,2015,NewYork +35,2015-04-26,2.21,16170.46,1765.8,10026.69,466.89,3911.08,3911.08,0.0,0.0,organic,2015,NewYork +36,2015-04-19,2.04,24265.78,2688.07,16785.46,34.25,4758.0,4758.0,0.0,0.0,organic,2015,NewYork +37,2015-04-12,1.86,25674.65,3711.04,14390.54,22.19,7550.88,7550.88,0.0,0.0,organic,2015,NewYork +38,2015-04-05,2.14,14907.54,1901.13,8814.15,10.97,4181.29,4172.71,8.58,0.0,organic,2015,NewYork +39,2015-03-29,2.08,16567.2,4160.87,9765.56,85.52,2555.25,2555.25,0.0,0.0,organic,2015,NewYork +40,2015-03-22,2.02,15438.68,2987.71,11096.86,23.66,1330.45,1330.45,0.0,0.0,organic,2015,NewYork +41,2015-03-15,1.81,16570.75,1525.25,9190.36,0.0,5855.14,5855.14,0.0,0.0,organic,2015,NewYork +42,2015-03-08,1.9,19904.38,2620.8,8510.42,34.3,8738.86,8738.86,0.0,0.0,organic,2015,NewYork +43,2015-03-01,2.0,20787.25,5138.97,10612.61,10.07,5025.6,5025.6,0.0,0.0,organic,2015,NewYork +44,2015-02-22,2.21,16620.69,3471.14,9549.06,43.85,3556.64,3556.64,0.0,0.0,organic,2015,NewYork +45,2015-02-15,1.91,25037.76,2255.75,15250.35,49.9,7481.76,7481.76,0.0,0.0,organic,2015,NewYork +46,2015-02-08,1.95,22571.11,1793.84,10974.3,16.7,9786.27,9786.27,0.0,0.0,organic,2015,NewYork +47,2015-02-01,1.93,24697.84,1867.35,12683.96,7.36,10139.17,10139.17,0.0,0.0,organic,2015,NewYork +48,2015-01-25,2.02,14337.32,1363.4,10912.03,46.42,2015.47,2015.47,0.0,0.0,organic,2015,NewYork +49,2015-01-18,2.08,9204.78,692.88,7146.78,37.93,1327.19,1327.19,0.0,0.0,organic,2015,NewYork +50,2015-01-11,2.03,14817.97,1744.44,10901.43,60.93,2111.17,2111.17,0.0,0.0,organic,2015,NewYork +51,2015-01-04,1.93,17328.24,2357.18,12692.21,9.47,2269.38,2269.38,0.0,0.0,organic,2015,NewYork +0,2015-12-27,1.7,75884.69,2608.86,15574.88,1202.38,56498.57,34774.94,21723.63,0.0,organic,2015,Northeast +1,2015-12-20,1.77,73826.41,5825.64,17999.1,2401.24,47600.43,40812.08,6788.35,0.0,organic,2015,Northeast +2,2015-12-13,1.8,76466.85,3310.22,12755.23,7637.49,52763.91,37344.72,15419.19,0.0,organic,2015,Northeast +3,2015-12-06,1.53,67245.25,5884.58,13280.16,961.1,47119.41,29475.97,17643.44,0.0,organic,2015,Northeast +4,2015-11-29,1.59,48901.36,2430.46,9533.76,710.99,36226.15,24764.03,11462.12,0.0,organic,2015,Northeast +5,2015-11-22,1.63,55389.85,4842.73,14368.7,217.07,35961.35,28099.9,7861.45,0.0,organic,2015,Northeast +6,2015-11-15,1.58,52680.94,4800.47,15407.35,54.61,32418.51,30557.72,1860.79,0.0,organic,2015,Northeast +7,2015-11-08,1.63,54182.7,6009.03,16101.87,111.18,31960.62,30428.94,1531.68,0.0,organic,2015,Northeast +8,2015-11-01,1.74,48955.21,5160.45,14384.31,718.43,28692.02,26937.17,1754.85,0.0,organic,2015,Northeast +9,2015-10-25,1.69,56802.46,4847.06,15489.48,457.14,36008.78,27679.02,8329.76,0.0,organic,2015,Northeast +10,2015-10-18,1.7,51045.02,2862.61,14224.98,518.85,33438.58,26508.59,6929.99,0.0,organic,2015,Northeast +11,2015-10-11,1.69,55097.44,3427.81,14320.5,234.48,37114.65,30619.47,6495.18,0.0,organic,2015,Northeast +12,2015-10-04,1.82,53701.26,3251.95,18185.35,108.53,32155.43,30619.08,1536.35,0.0,organic,2015,Northeast +13,2015-09-27,2.12,41882.91,3598.54,21853.75,571.17,15859.45,15096.04,763.41,0.0,organic,2015,Northeast +14,2015-09-20,1.93,47669.22,5964.9,21233.25,1065.24,19405.83,18862.28,543.55,0.0,organic,2015,Northeast +15,2015-09-13,1.97,49376.19,3473.57,18543.59,853.19,26505.84,26318.59,187.25,0.0,organic,2015,Northeast +16,2015-09-06,1.86,64445.98,5543.4,21432.21,1136.01,36334.36,35519.22,815.14,0.0,organic,2015,Northeast +17,2015-08-30,2.01,50307.57,3998.98,19017.27,852.47,26438.85,25235.11,1203.74,0.0,organic,2015,Northeast +18,2015-08-23,1.99,54255.52,4413.27,19200.77,917.81,29723.67,29487.98,235.69,0.0,organic,2015,Northeast +19,2015-08-16,2.11,47299.93,6353.43,20046.99,806.2,20093.31,19683.26,410.05,0.0,organic,2015,Northeast +20,2015-08-09,1.89,59179.16,8200.55,20527.9,788.85,29661.86,29202.28,459.58,0.0,organic,2015,Northeast +21,2015-08-02,2.02,51879.97,3801.74,18438.59,229.83,29409.81,29028.9,380.91,0.0,organic,2015,Northeast +22,2015-07-26,1.94,45208.21,4767.51,20119.18,87.72,20233.8,19658.12,575.68,0.0,organic,2015,Northeast +23,2015-07-19,2.07,47878.48,3613.49,20743.86,93.68,23427.45,23396.97,30.48,0.0,organic,2015,Northeast +24,2015-07-12,2.01,40245.19,4205.24,19850.58,90.1,16099.27,16093.19,6.08,0.0,organic,2015,Northeast +25,2015-07-05,2.09,45881.11,3575.37,18758.96,132.4,23414.38,23393.23,21.15,0.0,organic,2015,Northeast +26,2015-06-28,1.93,56485.02,5627.66,22070.75,531.58,28255.03,28196.36,58.67,0.0,organic,2015,Northeast +27,2015-06-21,2.12,48785.22,5390.54,20200.25,1166.45,22027.98,21513.69,514.29,0.0,organic,2015,Northeast +28,2015-06-14,1.93,65593.37,7000.26,25148.95,978.81,32465.35,32250.27,215.08,0.0,organic,2015,Northeast +29,2015-06-07,2.02,57645.02,4853.51,17359.72,857.17,34574.62,34488.34,86.28,0.0,organic,2015,Northeast +30,2015-05-31,1.89,63807.3,5614.59,21199.65,704.73,36288.33,36137.11,151.22,0.0,organic,2015,Northeast +31,2015-05-24,1.97,63674.1,5569.19,18983.33,513.94,38607.64,38338.21,269.43,0.0,organic,2015,Northeast +32,2015-05-17,1.92,68435.46,4444.73,20525.36,119.96,43345.41,43257.15,88.26,0.0,organic,2015,Northeast +33,2015-05-10,1.9,68804.21,4593.3,25193.73,29.41,38987.77,38815.66,172.11,0.0,organic,2015,Northeast +34,2015-05-03,1.89,67904.99,3879.94,25453.69,538.31,38033.05,37812.35,220.7,0.0,organic,2015,Northeast +35,2015-04-26,1.96,53200.63,3100.23,16190.74,438.48,33471.18,33361.61,109.57,0.0,organic,2015,Northeast +36,2015-04-19,1.94,60348.96,4357.54,24247.68,50.04,31693.7,31416.66,277.04,0.0,organic,2015,Northeast +37,2015-04-12,1.81,69377.2,6165.15,22584.41,27.38,40600.26,40303.57,296.69,0.0,organic,2015,Northeast +38,2015-04-05,1.91,52969.72,3446.17,15316.65,48.13,34158.77,33977.73,181.04,0.0,organic,2015,Northeast +39,2015-03-29,1.95,46496.41,5533.31,16533.45,90.99,24338.66,24298.66,40.0,0.0,organic,2015,Northeast +40,2015-03-22,1.92,44128.54,4956.8,20884.49,28.16,18259.09,18247.64,11.45,0.0,organic,2015,Northeast +41,2015-03-15,1.83,43012.32,2925.0,16559.95,26.02,23501.35,23398.38,102.97,0.0,organic,2015,Northeast +42,2015-03-08,1.79,60655.7,3991.62,17082.17,38.58,39543.33,39361.95,181.38,0.0,organic,2015,Northeast +43,2015-03-01,1.85,56799.83,5884.52,17398.87,26.54,33489.9,33457.94,31.96,0.0,organic,2015,Northeast +44,2015-02-22,1.9,56898.92,5183.02,17737.13,65.89,33912.88,33581.42,331.46,0.0,organic,2015,Northeast +45,2015-02-15,1.84,57627.38,3633.89,21385.14,78.86,32529.49,32381.03,148.46,0.0,organic,2015,Northeast +46,2015-02-08,1.85,65898.99,2547.81,19979.96,38.35,43332.87,43044.39,288.48,0.0,organic,2015,Northeast +47,2015-02-01,1.78,63537.1,3278.92,23694.61,13.97,36549.6,36537.93,11.67,0.0,organic,2015,Northeast +48,2015-01-25,1.92,40358.44,2519.17,17147.02,73.05,20619.2,20455.66,163.54,0.0,organic,2015,Northeast +49,2015-01-18,1.94,35304.15,1461.14,13317.36,73.5,20452.15,18457.1,1995.05,0.0,organic,2015,Northeast +50,2015-01-11,1.86,50079.81,3611.57,20043.89,65.93,26358.42,26332.17,26.25,0.0,organic,2015,Northeast +51,2015-01-04,1.88,48280.46,4476.73,22389.09,23.15,21391.49,21379.79,11.7,0.0,organic,2015,Northeast +0,2015-12-27,1.65,8119.93,10.91,155.21,0.0,7953.81,7953.81,0.0,0.0,organic,2015,NorthernNewEngland +1,2015-12-20,1.65,9262.66,9.65,149.62,0.0,9103.39,9103.39,0.0,0.0,organic,2015,NorthernNewEngland +2,2015-12-13,1.62,8029.92,9.61,134.51,0.0,7885.8,7885.8,0.0,0.0,organic,2015,NorthernNewEngland +3,2015-12-06,1.61,9278.66,11.96,78.95,0.0,9187.75,9184.42,3.33,0.0,organic,2015,NorthernNewEngland +4,2015-11-29,1.63,8205.88,4.77,89.4,0.0,8111.71,8108.38,3.33,0.0,organic,2015,NorthernNewEngland +5,2015-11-22,1.66,9580.4,15.45,78.44,0.0,9486.51,9486.51,0.0,0.0,organic,2015,NorthernNewEngland +6,2015-11-15,1.57,9930.12,8.3,187.41,0.0,9734.41,9731.08,3.33,0.0,organic,2015,NorthernNewEngland +7,2015-11-08,1.58,8340.73,9.48,261.9,0.0,8069.35,8069.35,0.0,0.0,organic,2015,NorthernNewEngland +8,2015-11-01,1.62,8260.25,13.04,88.91,0.0,8158.3,8158.3,0.0,0.0,organic,2015,NorthernNewEngland +9,2015-10-25,1.61,7858.07,8.31,84.27,0.0,7765.49,7765.49,0.0,0.0,organic,2015,NorthernNewEngland +10,2015-10-18,1.63,7919.94,1.19,76.18,0.0,7842.57,7842.57,0.0,0.0,organic,2015,NorthernNewEngland +11,2015-10-11,1.61,8749.6,6.0,68.35,0.0,8675.25,8675.25,0.0,0.0,organic,2015,NorthernNewEngland +12,2015-10-04,1.62,9011.35,15.66,189.08,0.0,8806.61,8806.61,0.0,0.0,organic,2015,NorthernNewEngland +13,2015-09-27,1.93,5374.57,6.05,263.94,0.0,5104.58,5104.58,0.0,0.0,organic,2015,NorthernNewEngland +14,2015-09-20,1.96,6799.27,30.44,656.38,0.0,6112.45,6112.45,0.0,0.0,organic,2015,NorthernNewEngland +15,2015-09-13,1.93,7465.69,18.38,687.37,0.0,6759.94,6759.94,0.0,0.0,organic,2015,NorthernNewEngland +16,2015-09-06,1.95,6936.51,3.7,669.84,0.0,6262.97,6262.97,0.0,0.0,organic,2015,NorthernNewEngland +17,2015-08-30,1.92,8005.96,3.72,675.06,0.0,7327.18,7327.18,0.0,0.0,organic,2015,NorthernNewEngland +18,2015-08-23,1.91,9116.19,18.81,769.98,0.0,8327.4,8327.4,0.0,0.0,organic,2015,NorthernNewEngland +19,2015-08-16,1.93,8259.26,16.42,690.82,0.0,7552.02,7552.02,0.0,0.0,organic,2015,NorthernNewEngland +20,2015-08-09,1.92,8552.32,21.61,639.29,0.0,7891.42,7881.42,10.0,0.0,organic,2015,NorthernNewEngland +21,2015-08-02,1.96,9346.73,87.59,753.74,0.0,8505.4,8478.73,26.67,0.0,organic,2015,NorthernNewEngland +22,2015-07-26,1.95,7510.46,94.34,1065.74,0.0,6350.38,6313.71,36.67,0.0,organic,2015,NorthernNewEngland +23,2015-07-19,1.96,8067.82,20.58,1104.69,0.0,6942.55,6942.55,0.0,0.0,organic,2015,NorthernNewEngland +24,2015-07-12,1.95,8821.58,20.44,1072.94,0.0,7728.2,7728.2,0.0,0.0,organic,2015,NorthernNewEngland +25,2015-07-05,1.95,10419.6,6.33,1080.43,0.0,9332.84,9332.84,0.0,0.0,organic,2015,NorthernNewEngland +26,2015-06-28,1.95,8515.11,1.25,1099.96,0.0,7413.9,7413.9,0.0,0.0,organic,2015,NorthernNewEngland +27,2015-06-21,1.93,8028.95,37.26,722.78,0.0,7268.91,7268.91,0.0,0.0,organic,2015,NorthernNewEngland +28,2015-06-14,1.94,8633.7,36.88,780.73,0.0,7816.09,7816.09,0.0,0.0,organic,2015,NorthernNewEngland +29,2015-06-07,1.92,8091.22,4.87,848.18,0.0,7238.17,7238.17,0.0,0.0,organic,2015,NorthernNewEngland +30,2015-05-31,1.91,8889.38,4.82,1045.37,0.0,7839.19,7839.19,0.0,0.0,organic,2015,NorthernNewEngland +31,2015-05-24,1.88,7515.96,5.95,677.58,0.0,6832.43,6832.43,0.0,0.0,organic,2015,NorthernNewEngland +32,2015-05-17,1.88,8208.44,35.29,879.99,0.0,7293.16,7293.16,0.0,0.0,organic,2015,NorthernNewEngland +33,2015-05-10,1.91,7575.34,41.86,819.84,0.0,6713.64,6713.64,0.0,0.0,organic,2015,NorthernNewEngland +34,2015-05-03,1.92,7982.59,6.9,631.45,0.0,7344.24,7344.24,0.0,0.0,organic,2015,NorthernNewEngland +35,2015-04-26,1.88,7583.31,6.83,617.83,0.0,6958.65,6958.65,0.0,0.0,organic,2015,NorthernNewEngland +36,2015-04-19,1.88,7468.8,3.38,643.91,0.0,6821.51,6821.51,0.0,0.0,organic,2015,NorthernNewEngland +37,2015-04-12,1.87,7094.98,46.16,444.69,0.0,6604.13,6604.13,0.0,0.0,organic,2015,NorthernNewEngland +38,2015-04-05,1.88,8444.82,56.28,553.8,0.0,7834.74,7834.74,0.0,0.0,organic,2015,NorthernNewEngland +39,2015-03-29,1.9,6433.37,24.76,569.59,0.0,5839.02,5839.02,0.0,0.0,organic,2015,NorthernNewEngland +40,2015-03-22,1.88,8083.91,10.14,977.2,0.0,7096.57,7096.57,0.0,0.0,organic,2015,NorthernNewEngland +41,2015-03-15,1.9,5599.89,7.89,687.58,0.0,4904.42,4904.42,0.0,0.0,organic,2015,NorthernNewEngland +42,2015-03-08,1.87,6756.78,32.68,809.1,0.0,5915.0,5915.0,0.0,0.0,organic,2015,NorthernNewEngland +43,2015-03-01,1.82,6940.73,5.63,870.75,0.0,6064.35,6064.35,0.0,0.0,organic,2015,NorthernNewEngland +44,2015-02-22,1.82,6267.8,6.76,873.74,0.0,5387.3,5387.3,0.0,0.0,organic,2015,NorthernNewEngland +45,2015-02-15,1.87,7199.17,7.88,590.77,0.0,6600.52,6600.52,0.0,0.0,organic,2015,NorthernNewEngland +46,2015-02-08,1.88,7856.82,0.0,522.91,0.0,7333.91,7333.91,0.0,0.0,organic,2015,NorthernNewEngland +47,2015-02-01,1.89,6551.44,4.49,568.47,0.0,5978.48,5978.48,0.0,0.0,organic,2015,NorthernNewEngland +48,2015-01-25,1.9,6757.39,0.0,593.56,0.0,6163.83,6163.83,0.0,0.0,organic,2015,NorthernNewEngland +49,2015-01-18,1.88,7618.91,0.0,569.28,0.0,7049.63,7049.63,0.0,0.0,organic,2015,NorthernNewEngland +50,2015-01-11,1.88,6485.3,1.13,590.02,0.0,5894.15,5894.15,0.0,0.0,organic,2015,NorthernNewEngland +51,2015-01-04,1.83,7301.3,6.81,630.24,0.0,6664.25,6664.25,0.0,0.0,organic,2015,NorthernNewEngland +0,2015-12-27,1.67,3110.45,1617.61,49.42,0.0,1443.42,1119.57,323.85,0.0,organic,2015,Orlando +1,2015-12-20,1.89,2850.72,2169.48,70.88,0.0,610.36,610.36,0.0,0.0,organic,2015,Orlando +2,2015-12-13,1.87,2437.13,1757.87,80.84,0.0,598.42,598.42,0.0,0.0,organic,2015,Orlando +3,2015-12-06,1.85,2811.06,1961.6,52.79,0.0,796.67,796.67,0.0,0.0,organic,2015,Orlando +4,2015-11-29,1.87,2082.98,1491.38,41.6,0.0,550.0,546.67,3.33,0.0,organic,2015,Orlando +5,2015-11-22,1.84,2375.83,1572.06,43.77,0.0,760.0,726.67,33.33,0.0,organic,2015,Orlando +6,2015-11-15,1.83,2903.44,1908.51,44.94,0.0,949.99,946.66,3.33,0.0,organic,2015,Orlando +7,2015-11-08,1.83,3067.94,1987.03,27.58,0.0,1053.33,1053.33,0.0,0.0,organic,2015,Orlando +8,2015-11-01,1.8,3127.26,1849.9,18.78,0.0,1258.58,1258.58,0.0,0.0,organic,2015,Orlando +9,2015-10-25,1.85,2905.07,2019.57,8.83,0.0,876.67,876.67,0.0,0.0,organic,2015,Orlando +10,2015-10-18,2.18,2804.82,1876.78,48.04,0.0,880.0,880.0,0.0,0.0,organic,2015,Orlando +11,2015-10-11,2.05,3285.94,1759.75,50.57,0.0,1475.62,1475.62,0.0,0.0,organic,2015,Orlando +12,2015-10-04,2.11,2990.97,1810.36,27.8,0.0,1152.81,1152.81,0.0,0.0,organic,2015,Orlando +13,2015-09-27,2.24,2490.3,1825.3,22.72,0.0,642.28,642.28,0.0,0.0,organic,2015,Orlando +14,2015-09-20,2.08,3252.5,1870.05,47.91,0.0,1334.54,1334.54,0.0,0.0,organic,2015,Orlando +15,2015-09-13,2.11,2895.23,1770.69,41.52,0.0,1083.02,1083.02,0.0,0.0,organic,2015,Orlando +16,2015-09-06,1.95,3337.29,1471.26,66.51,0.0,1799.52,1799.52,0.0,0.0,organic,2015,Orlando +17,2015-08-30,2.11,3081.43,1875.63,56.3,0.0,1149.5,1149.5,0.0,0.0,organic,2015,Orlando +18,2015-08-23,1.96,3760.73,2043.73,63.54,0.0,1653.46,1653.46,0.0,0.0,organic,2015,Orlando +19,2015-08-16,1.72,5843.23,2166.3,56.94,0.0,3619.99,3619.99,0.0,0.0,organic,2015,Orlando +20,2015-08-09,1.77,4599.05,2327.49,56.78,0.0,2214.78,2214.78,0.0,0.0,organic,2015,Orlando +21,2015-08-02,2.0,4054.1,2241.33,46.64,0.0,1766.13,1766.13,0.0,0.0,organic,2015,Orlando +22,2015-07-26,1.74,6023.21,2483.01,56.16,0.0,3484.04,3484.04,0.0,0.0,organic,2015,Orlando +23,2015-07-19,1.72,5031.11,2002.52,61.91,0.0,2966.68,2966.68,0.0,0.0,organic,2015,Orlando +24,2015-07-12,1.89,5281.36,1639.19,49.62,0.0,3592.55,3592.55,0.0,0.0,organic,2015,Orlando +25,2015-07-05,1.82,2529.35,1659.51,16.91,0.0,852.93,810.0,42.93,0.0,organic,2015,Orlando +26,2015-06-28,1.87,2804.46,2068.27,79.52,0.0,656.67,656.67,0.0,0.0,organic,2015,Orlando +27,2015-06-21,1.89,2442.88,1841.47,79.35,0.0,522.06,490.0,32.06,0.0,organic,2015,Orlando +28,2015-06-14,1.86,3012.55,2115.25,67.3,0.0,830.0,830.0,0.0,0.0,organic,2015,Orlando +29,2015-06-07,1.81,2834.45,1715.44,45.68,0.0,1073.33,1073.33,0.0,0.0,organic,2015,Orlando +30,2015-05-31,1.84,3350.22,2221.2,89.02,0.0,1040.0,1040.0,0.0,0.0,organic,2015,Orlando +31,2015-05-24,1.81,2640.04,1582.32,41.05,0.0,1016.67,1016.67,0.0,0.0,organic,2015,Orlando +32,2015-05-17,1.88,2730.74,2073.98,46.0,0.0,610.76,610.76,0.0,0.0,organic,2015,Orlando +33,2015-05-10,1.78,2982.83,1658.0,61.14,0.0,1263.69,1263.69,0.0,0.0,organic,2015,Orlando +34,2015-05-03,1.82,2498.36,1559.49,48.87,0.0,890.0,890.0,0.0,0.0,organic,2015,Orlando +35,2015-04-26,1.88,2490.11,1845.77,57.67,0.0,586.67,586.67,0.0,0.0,organic,2015,Orlando +36,2015-04-19,1.76,2745.8,1577.58,103.61,0.0,1064.61,1064.61,0.0,0.0,organic,2015,Orlando +37,2015-04-12,1.89,2310.76,1774.59,84.17,0.0,452.0,452.0,0.0,0.0,organic,2015,Orlando +38,2015-04-05,1.82,2405.02,1494.07,62.1,0.0,848.85,848.85,0.0,0.0,organic,2015,Orlando +39,2015-03-29,1.89,2718.72,2081.41,47.36,0.0,589.95,589.95,0.0,0.0,organic,2015,Orlando +40,2015-03-22,1.77,3577.55,1876.49,81.06,0.0,1620.0,1620.0,0.0,0.0,organic,2015,Orlando +41,2015-03-15,1.82,2478.71,1548.1,33.94,0.0,896.67,896.67,0.0,0.0,organic,2015,Orlando +42,2015-03-08,1.75,2782.53,1382.97,52.89,0.0,1346.67,1346.67,0.0,0.0,organic,2015,Orlando +43,2015-03-01,1.7,3031.46,1222.61,28.85,0.0,1780.0,1780.0,0.0,0.0,organic,2015,Orlando +44,2015-02-22,1.76,2584.79,1346.61,31.51,0.0,1206.67,1206.67,0.0,0.0,organic,2015,Orlando +45,2015-02-15,1.85,2038.24,1386.9,41.34,0.0,610.0,610.0,0.0,0.0,organic,2015,Orlando +46,2015-02-08,1.75,3229.47,1576.49,36.31,0.0,1616.67,1616.67,0.0,0.0,organic,2015,Orlando +47,2015-02-01,1.76,2499.88,1262.74,53.81,0.0,1183.33,1183.33,0.0,0.0,organic,2015,Orlando +48,2015-01-25,1.82,1925.46,1174.98,53.81,0.0,696.67,696.67,0.0,0.0,organic,2015,Orlando +49,2015-01-18,1.79,2151.76,1237.16,31.27,0.0,883.33,883.33,0.0,0.0,organic,2015,Orlando +50,2015-01-11,1.92,1610.6,1290.27,53.66,0.0,266.67,266.67,0.0,0.0,organic,2015,Orlando +51,2015-01-04,1.8,2057.29,1200.41,53.55,0.0,803.33,803.33,0.0,0.0,organic,2015,Orlando +0,2015-12-27,1.5,8780.15,340.1,2365.13,3.71,6071.21,560.04,5511.17,0.0,organic,2015,Philadelphia +1,2015-12-20,1.83,6900.94,719.56,2853.84,522.0,2805.54,1195.09,1610.45,0.0,organic,2015,Philadelphia +2,2015-12-13,1.79,7292.08,256.6,1559.27,952.44,4523.77,1098.51,3425.26,0.0,organic,2015,Philadelphia +3,2015-12-06,1.35,7324.92,482.3,1520.73,23.75,5298.14,64.68,5233.46,0.0,organic,2015,Philadelphia +4,2015-11-29,1.45,5104.74,257.73,1325.46,5.99,3515.56,102.78,3412.78,0.0,organic,2015,Philadelphia +5,2015-11-22,1.55,4698.19,400.4,1708.91,40.49,2548.39,93.11,2455.28,0.0,organic,2015,Philadelphia +6,2015-11-15,1.76,2966.77,619.54,1814.9,16.03,516.3,333.53,182.77,0.0,organic,2015,Philadelphia +7,2015-11-08,1.87,2933.95,662.62,1823.62,18.59,429.12,210.74,218.38,0.0,organic,2015,Philadelphia +8,2015-11-01,2.06,2371.09,503.42,1619.84,10.89,236.94,89.98,146.96,0.0,organic,2015,Philadelphia +9,2015-10-25,1.86,3254.64,441.78,1817.74,15.61,979.51,72.11,907.4,0.0,organic,2015,Philadelphia +10,2015-10-18,1.74,3665.62,230.01,1600.51,15.55,1819.55,111.28,1708.27,0.0,organic,2015,Philadelphia +11,2015-10-11,1.62,4268.78,325.35,1595.95,16.5,2330.98,147.0,2183.98,0.0,organic,2015,Philadelphia +12,2015-10-04,2.15,2709.41,395.16,1815.89,51.05,447.31,447.31,0.0,0.0,organic,2015,Philadelphia +13,2015-09-27,2.21,3002.5,327.0,1854.95,26.04,794.51,794.51,0.0,0.0,organic,2015,Philadelphia +14,2015-09-20,1.87,3957.04,620.65,1921.1,24.64,1390.65,1390.65,0.0,0.0,organic,2015,Philadelphia +15,2015-09-13,1.95,4303.93,312.56,1865.32,48.94,2077.11,2071.25,5.86,0.0,organic,2015,Philadelphia +16,2015-09-06,1.71,6848.76,624.83,1790.49,23.54,4409.9,4378.09,31.81,0.0,organic,2015,Philadelphia +17,2015-08-30,1.93,4426.44,421.42,1691.1,17.75,2296.17,2207.12,89.05,0.0,organic,2015,Philadelphia +18,2015-08-23,1.99,4617.21,490.29,1959.09,15.9,2151.93,2140.52,11.41,0.0,organic,2015,Philadelphia +19,2015-08-16,2.06,3885.79,431.13,2067.63,30.13,1356.9,1356.9,0.0,0.0,organic,2015,Philadelphia +20,2015-08-09,1.79,5446.24,628.74,2300.97,20.66,2495.87,2495.87,0.0,0.0,organic,2015,Philadelphia +21,2015-08-02,1.94,5147.5,369.17,1876.62,11.62,2890.09,2890.09,0.0,0.0,organic,2015,Philadelphia +22,2015-07-26,1.92,3072.46,280.52,1802.84,28.73,960.37,960.37,0.0,0.0,organic,2015,Philadelphia +23,2015-07-19,1.97,5289.63,250.13,1960.21,11.59,3067.7,3067.7,0.0,0.0,organic,2015,Philadelphia +24,2015-07-12,1.98,2617.63,442.82,1768.81,33.86,372.14,372.14,0.0,0.0,organic,2015,Philadelphia +25,2015-07-05,2.03,3075.46,318.9,1596.46,12.91,1147.19,1147.19,0.0,0.0,organic,2015,Philadelphia +26,2015-06-28,1.88,4785.67,378.59,1816.51,26.54,2564.03,2564.03,0.0,0.0,organic,2015,Philadelphia +27,2015-06-21,2.05,3782.07,405.51,1534.94,27.99,1813.63,1813.63,0.0,0.0,organic,2015,Philadelphia +28,2015-06-14,1.84,6353.19,534.82,2127.85,7.81,3682.71,3682.71,0.0,0.0,organic,2015,Philadelphia +29,2015-06-07,1.94,5043.08,608.81,1221.46,14.31,3198.5,3198.5,0.0,0.0,organic,2015,Philadelphia +30,2015-05-31,1.86,5461.83,508.05,1828.02,3.83,3121.93,3121.93,0.0,0.0,organic,2015,Philadelphia +31,2015-05-24,1.9,5495.95,371.01,1693.43,18.14,3413.37,3413.37,0.0,0.0,organic,2015,Philadelphia +32,2015-05-17,1.85,5578.04,293.24,1605.75,11.3,3667.75,3667.75,0.0,0.0,organic,2015,Philadelphia +33,2015-05-10,1.79,7296.3,365.29,1644.8,11.51,5274.7,5274.7,0.0,0.0,organic,2015,Philadelphia +34,2015-05-03,1.85,5737.78,247.58,1531.18,18.86,3940.16,3940.16,0.0,0.0,organic,2015,Philadelphia +35,2015-04-26,1.86,4698.5,305.19,1171.58,3.46,3218.27,3218.27,0.0,0.0,organic,2015,Philadelphia +36,2015-04-19,1.89,4548.77,386.51,1671.71,12.7,2477.85,2477.85,0.0,0.0,organic,2015,Philadelphia +37,2015-04-12,1.73,5957.21,677.37,1892.8,7.88,3379.16,3379.16,0.0,0.0,organic,2015,Philadelphia +38,2015-04-05,1.81,4382.72,390.07,1248.73,26.69,2717.23,2717.23,0.0,0.0,organic,2015,Philadelphia +39,2015-03-29,1.83,4310.34,382.81,1310.14,17.23,2600.16,2600.16,0.0,0.0,organic,2015,Philadelphia +40,2015-03-22,1.84,2777.38,454.68,1885.25,7.52,429.93,429.93,0.0,0.0,organic,2015,Philadelphia +41,2015-03-15,1.7,4152.94,387.21,1357.51,23.9,2384.32,2384.32,0.0,0.0,organic,2015,Philadelphia +42,2015-03-08,1.63,6507.49,284.64,1349.92,8.83,4864.1,4864.1,0.0,0.0,organic,2015,Philadelphia +43,2015-03-01,1.83,3448.63,227.3,1390.5,7.42,1823.41,1823.41,0.0,0.0,organic,2015,Philadelphia +44,2015-02-22,1.75,4341.33,255.58,1244.41,14.17,2827.17,2827.17,0.0,0.0,organic,2015,Philadelphia +45,2015-02-15,1.68,5687.19,280.4,1672.25,19.9,3714.64,3714.64,0.0,0.0,organic,2015,Philadelphia +46,2015-02-08,1.76,4172.75,253.27,1031.48,7.81,2880.19,2880.19,0.0,0.0,organic,2015,Philadelphia +47,2015-02-01,1.69,4907.41,285.43,1416.23,4.72,3201.03,3201.03,0.0,0.0,organic,2015,Philadelphia +48,2015-01-25,1.82,2888.62,235.21,1358.88,22.7,1271.83,1271.83,0.0,0.0,organic,2015,Philadelphia +49,2015-01-18,1.93,1699.0,258.85,731.44,19.58,689.13,689.13,0.0,0.0,organic,2015,Philadelphia +50,2015-01-11,1.63,6715.18,428.55,1809.47,4.83,4472.33,4465.66,6.67,0.0,organic,2015,Philadelphia +51,2015-01-04,1.72,3788.6,384.3,1597.97,11.42,1794.91,1794.91,0.0,0.0,organic,2015,Philadelphia +0,2015-12-27,1.72,7422.47,5038.15,906.49,0.0,1477.83,1324.33,153.5,0.0,organic,2015,PhoenixTucson +1,2015-12-20,1.79,6499.82,4879.21,919.88,0.0,700.73,679.05,21.68,0.0,organic,2015,PhoenixTucson +2,2015-12-13,1.72,6991.24,5065.07,1160.53,0.0,765.64,765.64,0.0,0.0,organic,2015,PhoenixTucson +3,2015-12-06,1.87,5936.27,4843.94,832.33,0.0,260.0,260.0,0.0,0.0,organic,2015,PhoenixTucson +4,2015-11-29,1.89,5175.81,4379.15,689.99,0.0,106.67,106.67,0.0,0.0,organic,2015,PhoenixTucson +5,2015-11-22,1.89,6755.96,5652.01,901.74,0.0,202.21,196.67,5.54,0.0,organic,2015,PhoenixTucson +6,2015-11-15,1.89,7451.55,6237.29,1005.37,0.0,208.89,203.33,5.56,0.0,organic,2015,PhoenixTucson +7,2015-11-08,1.72,9192.79,7679.02,1160.9,0.0,352.87,325.02,27.85,0.0,organic,2015,PhoenixTucson +8,2015-11-01,1.7,8638.12,7091.78,1301.83,0.0,244.51,238.92,5.59,0.0,organic,2015,PhoenixTucson +9,2015-10-25,1.52,9307.99,8001.76,1140.49,0.0,165.74,143.33,22.41,0.0,organic,2015,PhoenixTucson +10,2015-10-18,1.84,12357.55,10832.2,1317.09,0.0,208.26,166.14,42.12,0.0,organic,2015,PhoenixTucson +11,2015-10-11,1.91,6593.87,5438.94,970.16,0.0,184.77,181.25,3.52,0.0,organic,2015,PhoenixTucson +12,2015-10-04,1.93,6825.19,5605.54,1059.09,0.0,160.56,143.33,17.23,0.0,organic,2015,PhoenixTucson +13,2015-09-27,1.85,7128.73,5085.59,1578.82,0.0,464.32,442.37,21.95,0.0,organic,2015,PhoenixTucson +14,2015-09-20,1.98,4881.79,3741.39,890.96,0.0,249.44,193.33,56.11,0.0,organic,2015,PhoenixTucson +15,2015-09-13,1.9,7622.55,5346.57,1082.07,0.0,1193.91,968.39,225.52,0.0,organic,2015,PhoenixTucson +16,2015-09-06,1.79,10567.84,7314.43,1597.62,0.0,1655.79,759.46,896.33,0.0,organic,2015,PhoenixTucson +17,2015-08-30,1.8,10535.93,7278.82,1588.99,0.0,1668.12,1013.33,654.79,0.0,organic,2015,PhoenixTucson +18,2015-08-23,1.81,10004.86,7394.34,1347.23,0.0,1263.29,796.67,466.62,0.0,organic,2015,PhoenixTucson +19,2015-08-16,1.79,10949.5,7874.41,1893.33,0.0,1181.76,1013.33,168.43,0.0,organic,2015,PhoenixTucson +20,2015-08-09,1.82,10066.22,7476.75,1473.42,0.0,1116.05,880.0,236.05,0.0,organic,2015,PhoenixTucson +21,2015-08-02,1.88,8593.93,6675.88,1272.7,0.0,645.35,533.33,112.02,0.0,organic,2015,PhoenixTucson +22,2015-07-26,1.85,7178.36,5314.12,1303.35,0.0,560.89,290.0,270.89,0.0,organic,2015,PhoenixTucson +23,2015-07-19,1.85,6428.81,4840.08,1182.27,0.0,406.46,223.33,183.13,0.0,organic,2015,PhoenixTucson +24,2015-07-12,1.82,8064.16,5715.78,1462.53,0.0,885.85,746.67,139.18,0.0,organic,2015,PhoenixTucson +25,2015-07-05,1.72,10481.04,7517.21,1465.5,0.0,1498.33,1126.67,371.66,0.0,organic,2015,PhoenixTucson +26,2015-06-28,1.54,11633.27,9145.92,1568.59,0.0,918.76,303.33,615.43,0.0,organic,2015,PhoenixTucson +27,2015-06-21,1.48,14656.29,11743.35,1864.94,0.0,1048.0,736.67,311.33,0.0,organic,2015,PhoenixTucson +28,2015-06-14,1.62,12799.12,8833.67,2031.09,0.0,1934.36,1193.33,741.03,0.0,organic,2015,PhoenixTucson +29,2015-06-07,1.54,13840.92,10264.0,1518.09,0.0,2058.83,973.33,1085.5,0.0,organic,2015,PhoenixTucson +30,2015-05-31,1.54,14390.21,10865.24,1272.45,0.0,2252.52,1025.83,1226.69,0.0,organic,2015,PhoenixTucson +31,2015-05-24,1.7,11605.98,8631.46,1351.35,0.0,1623.17,960.0,663.17,0.0,organic,2015,PhoenixTucson +32,2015-05-17,1.67,11593.7,8485.76,1510.63,0.0,1597.31,866.67,730.64,0.0,organic,2015,PhoenixTucson +33,2015-05-10,1.46,14755.15,11232.9,1442.0,0.0,2080.25,906.67,1173.58,0.0,organic,2015,PhoenixTucson +34,2015-05-03,1.4,17519.51,12879.51,2627.53,0.0,2012.47,1073.33,939.14,0.0,organic,2015,PhoenixTucson +35,2015-04-26,1.65,17775.41,11276.67,4970.49,0.0,1528.25,726.67,801.58,0.0,organic,2015,PhoenixTucson +36,2015-04-19,1.48,15735.77,12488.27,1697.81,0.0,1549.69,670.0,879.69,0.0,organic,2015,PhoenixTucson +37,2015-04-12,1.56,14281.66,10085.19,1365.84,0.0,2830.63,2138.25,692.38,0.0,organic,2015,PhoenixTucson +38,2015-04-05,1.5,14328.05,10944.3,1290.72,0.0,2093.03,1812.94,280.09,0.0,organic,2015,PhoenixTucson +39,2015-03-29,1.46,15287.62,13441.63,1143.87,0.0,702.12,665.15,36.97,0.0,organic,2015,PhoenixTucson +40,2015-03-22,1.37,13824.58,11611.97,1541.11,0.0,671.5,659.15,12.35,0.0,organic,2015,PhoenixTucson +41,2015-03-15,1.56,9530.76,7209.12,1255.07,0.0,1066.57,1056.67,9.9,0.0,organic,2015,PhoenixTucson +42,2015-03-08,1.52,12545.98,8912.48,1115.21,0.0,2518.29,2513.33,4.96,0.0,organic,2015,PhoenixTucson +43,2015-03-01,1.37,14618.92,11419.13,1565.66,0.0,1634.13,1626.67,7.46,0.0,organic,2015,PhoenixTucson +44,2015-02-22,1.59,10924.58,8585.87,1454.55,0.0,884.16,866.67,17.49,0.0,organic,2015,PhoenixTucson +45,2015-02-15,1.66,10159.47,7842.64,1205.1,0.0,1111.73,1096.68,15.05,0.0,organic,2015,PhoenixTucson +46,2015-02-08,1.55,12418.02,9275.33,1356.02,0.0,1786.67,1786.67,0.0,0.0,organic,2015,PhoenixTucson +47,2015-02-01,1.18,13645.72,10810.58,2016.62,0.0,818.52,813.46,5.06,0.0,organic,2015,PhoenixTucson +48,2015-01-25,1.54,10849.4,7988.43,1728.24,0.0,1132.73,1120.0,12.73,0.0,organic,2015,PhoenixTucson +49,2015-01-18,1.36,12251.87,10248.57,1529.97,0.0,473.33,473.33,0.0,0.0,organic,2015,PhoenixTucson +50,2015-01-11,1.36,14035.18,11523.29,1632.63,0.0,879.26,876.68,2.58,0.0,organic,2015,PhoenixTucson +51,2015-01-04,1.12,17296.85,14569.66,1868.59,0.0,858.6,830.0,28.6,0.0,organic,2015,PhoenixTucson +0,2015-12-27,1.5,749.03,199.16,29.63,0.0,520.24,450.74,69.5,0.0,organic,2015,Pittsburgh +1,2015-12-20,1.55,679.51,234.43,31.59,0.0,413.49,287.87,125.62,0.0,organic,2015,Pittsburgh +2,2015-12-13,1.56,852.98,283.91,46.87,0.0,522.2,354.8,167.4,0.0,organic,2015,Pittsburgh +3,2015-12-06,1.55,1313.49,332.88,238.73,0.0,741.88,555.08,186.8,0.0,organic,2015,Pittsburgh +4,2015-11-29,1.4,1161.01,345.27,136.42,0.0,679.32,522.12,157.2,0.0,organic,2015,Pittsburgh +5,2015-11-22,1.54,1158.22,386.76,214.88,0.0,556.58,248.27,308.31,0.0,organic,2015,Pittsburgh +6,2015-11-15,1.43,1387.96,466.03,33.94,0.0,887.99,360.84,527.15,0.0,organic,2015,Pittsburgh +7,2015-11-08,1.44,1269.64,365.98,42.56,0.0,861.1,597.2,263.9,0.0,organic,2015,Pittsburgh +8,2015-11-01,1.46,1383.12,399.03,57.98,0.0,926.11,694.95,231.16,0.0,organic,2015,Pittsburgh +9,2015-10-25,1.47,1973.01,594.36,27.33,0.0,1351.32,1328.55,22.77,0.0,organic,2015,Pittsburgh +10,2015-10-18,1.45,1329.64,477.61,37.62,0.0,814.41,765.02,49.39,0.0,organic,2015,Pittsburgh +11,2015-10-11,1.45,1366.39,447.03,53.1,0.0,866.26,622.67,243.59,0.0,organic,2015,Pittsburgh +12,2015-10-04,1.19,1849.29,305.21,265.77,0.0,1278.31,996.34,281.97,0.0,organic,2015,Pittsburgh +13,2015-09-27,1.47,1151.64,361.95,30.88,0.0,758.81,385.24,373.57,0.0,organic,2015,Pittsburgh +14,2015-09-20,1.44,1513.77,668.25,61.75,0.0,783.77,223.44,560.33,0.0,organic,2015,Pittsburgh +15,2015-09-13,1.47,1390.96,529.81,46.29,0.0,814.86,631.97,182.89,0.0,organic,2015,Pittsburgh +16,2015-09-06,1.5,2278.16,657.82,162.74,0.0,1457.6,814.25,643.35,0.0,organic,2015,Pittsburgh +17,2015-08-30,1.52,2181.39,790.6,61.61,0.0,1329.18,713.13,616.05,0.0,organic,2015,Pittsburgh +18,2015-08-23,1.66,1973.39,749.11,61.43,0.0,1162.85,1083.22,79.63,0.0,organic,2015,Pittsburgh +19,2015-08-16,1.57,1531.14,677.2,34.03,0.0,819.91,426.67,393.24,0.0,organic,2015,Pittsburgh +20,2015-08-09,1.47,2156.53,464.78,6.79,0.0,1684.96,1217.54,467.42,0.0,organic,2015,Pittsburgh +21,2015-08-02,1.57,1238.66,574.11,45.73,0.0,618.82,257.53,361.29,0.0,organic,2015,Pittsburgh +22,2015-07-26,1.46,1190.83,533.17,38.93,0.0,618.73,80.85,537.88,0.0,organic,2015,Pittsburgh +23,2015-07-19,1.83,753.64,516.18,46.15,0.0,191.31,153.33,37.98,0.0,organic,2015,Pittsburgh +24,2015-07-12,1.81,1279.45,695.61,126.26,0.0,457.58,457.58,0.0,0.0,organic,2015,Pittsburgh +25,2015-07-05,1.83,1383.67,751.58,204.51,0.0,427.58,423.79,3.79,0.0,organic,2015,Pittsburgh +26,2015-06-28,1.77,1402.53,821.39,32.38,0.0,548.76,529.83,18.93,0.0,organic,2015,Pittsburgh +27,2015-06-21,1.58,1698.9,776.96,32.09,0.0,889.85,495.74,394.11,0.0,organic,2015,Pittsburgh +28,2015-06-14,1.56,1517.59,525.88,68.05,0.0,923.66,687.69,235.97,0.0,organic,2015,Pittsburgh +29,2015-06-07,1.57,1726.96,687.05,20.14,0.0,1019.77,911.62,108.15,0.0,organic,2015,Pittsburgh +30,2015-05-31,1.51,2154.53,839.69,30.05,0.0,1284.79,1106.72,178.07,0.0,organic,2015,Pittsburgh +31,2015-05-24,1.54,2254.02,856.32,71.5,0.0,1326.2,1007.5,318.7,0.0,organic,2015,Pittsburgh +32,2015-05-17,1.53,2614.93,1092.58,64.46,0.0,1457.89,1378.92,78.97,0.0,organic,2015,Pittsburgh +33,2015-05-10,1.49,2295.39,844.96,42.74,0.0,1407.69,1220.47,187.22,0.0,organic,2015,Pittsburgh +34,2015-05-03,1.49,1889.99,624.2,39.22,0.0,1226.57,995.08,231.49,0.0,organic,2015,Pittsburgh +35,2015-04-26,1.38,2284.48,720.64,50.31,0.0,1513.53,1402.62,110.91,0.0,organic,2015,Pittsburgh +36,2015-04-19,1.37,3182.2,1061.01,232.2,0.0,1888.99,1606.8,282.19,0.0,organic,2015,Pittsburgh +37,2015-04-12,1.45,3221.99,999.41,152.15,0.0,2070.43,1748.33,322.1,0.0,organic,2015,Pittsburgh +38,2015-04-05,1.35,2808.98,726.93,208.38,0.0,1873.67,1668.65,205.02,0.0,organic,2015,Pittsburgh +39,2015-03-29,1.41,2274.19,748.72,181.45,0.0,1344.02,1344.02,0.0,0.0,organic,2015,Pittsburgh +40,2015-03-22,1.47,2059.01,842.7,91.73,0.0,1124.58,1122.85,1.73,0.0,organic,2015,Pittsburgh +41,2015-03-15,1.68,1253.46,706.69,66.64,0.0,480.13,357.87,122.26,0.0,organic,2015,Pittsburgh +42,2015-03-08,1.65,2337.44,561.33,330.67,0.0,1445.44,1233.27,212.17,0.0,organic,2015,Pittsburgh +43,2015-03-01,1.63,2224.4,754.95,51.47,0.0,1417.98,1379.85,38.13,0.0,organic,2015,Pittsburgh +44,2015-02-22,1.71,1860.35,889.62,56.29,0.0,914.44,518.36,396.08,0.0,organic,2015,Pittsburgh +45,2015-02-15,1.71,1784.02,617.91,248.56,0.0,917.55,760.32,157.23,0.0,organic,2015,Pittsburgh +46,2015-02-08,1.6,2253.42,427.12,371.43,0.0,1454.87,1138.48,316.39,0.0,organic,2015,Pittsburgh +47,2015-02-01,1.77,1427.11,760.33,74.32,0.0,592.46,585.38,7.08,0.0,organic,2015,Pittsburgh +48,2015-01-25,1.7,1441.14,598.03,91.36,0.0,751.75,559.41,192.34,0.0,organic,2015,Pittsburgh +49,2015-01-18,1.55,3448.42,312.68,709.27,0.0,2426.47,257.86,2168.61,0.0,organic,2015,Pittsburgh +50,2015-01-11,1.82,1663.25,767.08,328.49,0.0,567.68,564.2,3.48,0.0,organic,2015,Pittsburgh +51,2015-01-04,1.81,1339.36,754.0,124.33,0.0,461.03,447.01,14.02,0.0,organic,2015,Pittsburgh +0,2015-12-27,1.6,32041.32,3224.07,13453.09,1672.35,13691.81,5921.08,7770.73,0.0,organic,2015,Plains +1,2015-12-20,1.69,29471.57,3393.9,12896.24,3386.0,9795.43,4937.52,4857.91,0.0,organic,2015,Plains +2,2015-12-13,1.82,24664.21,3395.15,13189.18,1592.19,6487.69,4488.01,1999.68,0.0,organic,2015,Plains +3,2015-12-06,1.92,21986.87,2915.26,13652.88,368.09,5050.64,3518.24,1532.4,0.0,organic,2015,Plains +4,2015-11-29,1.82,23344.7,3959.16,12315.78,28.42,7041.34,4404.5,2636.84,0.0,organic,2015,Plains +5,2015-11-22,1.69,28577.15,4477.93,13302.64,40.44,10756.14,5955.98,4800.16,0.0,organic,2015,Plains +6,2015-11-15,1.68,30958.65,4190.97,14235.26,26.27,12506.15,7356.62,5149.53,0.0,organic,2015,Plains +7,2015-11-08,1.73,32097.19,4531.87,14489.94,328.59,12746.79,8602.73,4144.06,0.0,organic,2015,Plains +8,2015-11-01,1.55,34437.74,3813.38,13357.17,448.11,16819.08,8910.32,7908.76,0.0,organic,2015,Plains +9,2015-10-25,1.64,30717.28,3595.24,13212.07,311.49,13598.48,7405.56,6192.92,0.0,organic,2015,Plains +10,2015-10-18,1.68,31802.25,4213.37,14243.03,31.51,13314.34,6944.31,6370.03,0.0,organic,2015,Plains +11,2015-10-11,1.82,28422.94,3143.11,15072.15,41.32,10166.36,6460.34,3706.02,0.0,organic,2015,Plains +12,2015-10-04,1.76,30507.45,2938.43,14625.55,12.12,12931.35,8437.2,4494.15,0.0,organic,2015,Plains +13,2015-09-27,1.85,28183.63,2948.96,14238.72,19.35,10976.6,8593.72,2382.88,0.0,organic,2015,Plains +14,2015-09-20,1.85,30393.35,3928.04,15101.88,45.84,11317.59,8824.73,2492.86,0.0,organic,2015,Plains +15,2015-09-13,1.87,29440.58,4265.73,14930.59,69.77,10174.49,8144.24,2030.25,0.0,organic,2015,Plains +16,2015-09-06,1.91,30307.58,5214.44,15626.82,23.99,9442.33,7806.44,1635.89,0.0,organic,2015,Plains +17,2015-08-30,1.9,34522.02,5108.15,17178.11,16.73,12219.03,9923.77,2295.26,0.0,organic,2015,Plains +18,2015-08-23,1.92,31850.38,5171.5,16543.46,14.28,10121.14,8311.71,1809.43,0.0,organic,2015,Plains +19,2015-08-16,1.88,32159.33,5368.34,15506.11,35.65,11249.23,9695.15,1554.08,0.0,organic,2015,Plains +20,2015-08-09,1.87,34667.31,5931.0,16409.94,18.94,12307.43,10591.35,1716.08,0.0,organic,2015,Plains +21,2015-08-02,1.84,32696.45,6338.67,13870.67,37.76,12449.35,10259.64,2189.71,0.0,organic,2015,Plains +22,2015-07-26,1.84,27102.7,5869.72,12085.34,61.16,9086.48,7498.39,1588.09,0.0,organic,2015,Plains +23,2015-07-19,1.85,28602.01,4969.23,14692.47,11.72,8928.59,6599.43,2329.16,0.0,organic,2015,Plains +24,2015-07-12,1.89,34274.47,4653.22,20980.13,28.11,8613.01,5262.78,3350.23,0.0,organic,2015,Plains +25,2015-07-05,1.92,40423.05,5132.41,25315.81,77.27,9897.56,7044.08,2853.48,0.0,organic,2015,Plains +26,2015-06-28,1.93,33557.37,4415.32,20984.14,7.02,8150.89,6061.76,2089.13,0.0,organic,2015,Plains +27,2015-06-21,1.88,37004.14,5625.74,21939.19,60.75,9378.46,7204.04,2174.42,0.0,organic,2015,Plains +28,2015-06-14,1.79,33795.51,4749.1,20882.01,41.97,8122.43,5857.07,2265.36,0.0,organic,2015,Plains +29,2015-06-07,1.9,30028.0,4282.27,17080.62,41.89,8623.22,6108.64,2514.58,0.0,organic,2015,Plains +30,2015-05-31,1.93,31775.42,4847.34,17449.33,53.66,9425.09,7198.51,2226.58,0.0,organic,2015,Plains +31,2015-05-24,1.92,31193.34,8773.67,13683.89,11.65,8724.13,6649.48,2074.65,0.0,organic,2015,Plains +32,2015-05-17,1.93,30302.51,4649.22,17148.75,48.82,8455.72,6285.96,2169.76,0.0,organic,2015,Plains +33,2015-05-10,1.85,32022.52,3961.71,16857.65,85.87,11117.29,8533.47,2583.82,0.0,organic,2015,Plains +34,2015-05-03,1.92,27541.24,3463.32,16891.72,18.52,7167.68,5360.43,1807.25,0.0,organic,2015,Plains +35,2015-04-26,1.93,30001.14,2749.61,17543.74,48.5,9659.29,7742.3,1916.99,0.0,organic,2015,Plains +36,2015-04-19,1.9,29227.44,3334.06,15998.87,48.37,9846.14,8530.66,1315.48,0.0,organic,2015,Plains +37,2015-04-12,1.82,31363.93,3059.06,17207.03,9.2,11088.64,8861.94,2226.7,0.0,organic,2015,Plains +38,2015-04-05,1.81,36535.72,3534.09,18648.77,48.2,14304.66,12419.92,1884.74,0.0,organic,2015,Plains +39,2015-03-29,1.85,34062.08,3489.99,17818.18,20.63,12733.28,12479.89,253.39,0.0,organic,2015,Plains +40,2015-03-22,1.8,34244.34,3811.27,19130.46,22.89,11279.72,10549.2,730.52,0.0,organic,2015,Plains +41,2015-03-15,1.67,36469.37,4427.92,14399.17,22.87,17619.41,15944.5,1674.91,0.0,organic,2015,Plains +42,2015-03-08,1.68,33434.23,3482.6,12593.96,13.73,17343.94,15943.23,1400.71,0.0,organic,2015,Plains +43,2015-03-01,1.7,36993.47,5052.36,17469.75,18.33,14453.03,13506.71,946.32,0.0,organic,2015,Plains +44,2015-02-22,1.66,40390.21,5100.04,17771.09,9.16,17509.92,16731.6,778.32,0.0,organic,2015,Plains +45,2015-02-15,1.68,39967.69,4337.72,19892.57,32.1,15705.3,14480.47,1224.83,0.0,organic,2015,Plains +46,2015-02-08,1.54,46329.16,3906.27,26987.91,32.13,15402.85,14104.27,1298.58,0.0,organic,2015,Plains +47,2015-02-01,1.67,30193.16,3904.24,14499.51,32.15,11757.26,9989.22,1768.04,0.0,organic,2015,Plains +48,2015-01-25,1.8,30207.8,3732.84,14987.92,20.69,11466.35,10403.58,1062.77,0.0,organic,2015,Plains +49,2015-01-18,1.8,29669.53,6340.18,13476.2,34.56,9818.59,8577.16,1241.43,0.0,organic,2015,Plains +50,2015-01-11,1.68,37617.95,6636.08,15284.43,4.62,15692.82,13774.1,1918.72,0.0,organic,2015,Plains +51,2015-01-04,1.69,34190.37,3874.31,14945.34,32.45,15338.27,13793.22,1545.05,0.0,organic,2015,Plains +0,2015-12-27,1.24,27118.17,1189.96,10909.14,10.05,15009.02,6705.83,8303.19,0.0,organic,2015,Portland +1,2015-12-20,1.21,25645.44,1202.15,8864.75,3.35,15575.19,5902.85,9672.34,0.0,organic,2015,Portland +2,2015-12-13,0.93,67512.97,1262.85,20963.47,3.35,45283.3,21656.83,23626.47,0.0,organic,2015,Portland +3,2015-12-06,1.66,12668.99,934.4,8211.33,0.0,3523.26,7.43,3515.83,0.0,organic,2015,Portland +4,2015-11-29,1.38,20992.27,964.58,9321.52,8.34,10697.83,55.39,10642.44,0.0,organic,2015,Portland +5,2015-11-22,1.12,57410.08,1279.51,21670.78,0.0,34459.79,81.41,34378.38,0.0,organic,2015,Portland +6,2015-11-15,1.8,12928.53,890.3,9465.69,3.32,2569.22,110.0,2459.22,0.0,organic,2015,Portland +7,2015-11-08,1.39,22300.6,1110.47,13364.66,1.66,7823.81,1115.81,6708.0,0.0,organic,2015,Portland +8,2015-11-01,0.98,62592.4,1163.61,21981.81,46.41,39400.57,7849.49,31551.08,0.0,organic,2015,Portland +9,2015-10-25,1.74,16496.39,628.45,9578.24,6.63,6283.07,36.85,6246.22,0.0,organic,2015,Portland +10,2015-10-18,1.78,17590.21,800.44,12022.04,6.64,4761.09,7.37,4753.72,0.0,organic,2015,Portland +11,2015-10-11,1.68,26547.99,780.51,15805.53,3.31,9958.64,14.73,9943.91,0.0,organic,2015,Portland +12,2015-10-04,1.57,35183.28,1489.84,22640.35,3.31,11049.78,18.38,11031.4,0.0,organic,2015,Portland +13,2015-09-27,1.72,18034.01,1045.73,10525.36,3.3,6459.62,0.0,6459.62,0.0,organic,2015,Portland +14,2015-09-20,1.76,18014.56,2052.48,9055.35,0.0,6906.73,0.0,6906.73,0.0,organic,2015,Portland +15,2015-09-13,2.07,17959.18,3092.78,10615.36,0.0,4251.04,7.34,4243.7,0.0,organic,2015,Portland +16,2015-09-06,2.16,18433.15,3225.86,12040.49,0.0,3166.8,0.0,3166.8,0.0,organic,2015,Portland +17,2015-08-30,1.37,50198.43,3242.25,35409.64,0.0,11546.54,0.0,11546.54,0.0,organic,2015,Portland +18,2015-08-23,2.21,17148.39,3696.01,12224.75,1.64,1225.99,0.0,1225.99,0.0,organic,2015,Portland +19,2015-08-16,1.73,30519.41,4315.77,19426.12,0.0,6777.52,0.0,6777.52,0.0,organic,2015,Portland +20,2015-08-09,2.02,18149.27,4930.53,10792.14,0.0,2426.6,0.0,2426.6,0.0,organic,2015,Portland +21,2015-08-02,1.94,18054.18,6605.19,10611.69,0.0,837.3,0.0,837.3,0.0,organic,2015,Portland +22,2015-07-26,1.96,23093.97,6781.43,14705.3,28.07,1579.17,0.0,1579.17,0.0,organic,2015,Portland +23,2015-07-19,1.37,55813.66,8464.13,38289.79,9.93,9049.81,0.0,9049.81,0.0,organic,2015,Portland +24,2015-07-12,1.82,24707.16,9115.52,12902.48,4.98,2684.18,0.0,2684.18,0.0,organic,2015,Portland +25,2015-07-05,1.93,24954.8,8938.08,14928.33,3.33,1085.06,0.0,1085.06,0.0,organic,2015,Portland +26,2015-06-28,1.53,41116.32,7314.21,33780.38,21.73,0.0,0.0,0.0,0.0,organic,2015,Portland +27,2015-06-21,1.53,32394.98,8095.22,23586.71,13.35,699.7,0.0,699.7,0.0,organic,2015,Portland +28,2015-06-14,1.91,24034.25,8491.5,14130.91,15.03,1396.81,0.0,1396.81,0.0,organic,2015,Portland +29,2015-06-07,1.96,26864.42,9745.48,16510.02,0.0,608.92,0.0,608.92,0.0,organic,2015,Portland +30,2015-05-31,1.5,41728.28,7282.84,34362.43,1.67,81.34,0.0,81.34,0.0,organic,2015,Portland +31,2015-05-24,1.82,22950.59,7408.52,14746.61,3.33,792.13,0.0,792.13,0.0,organic,2015,Portland +32,2015-05-17,1.68,30795.99,13615.68,14195.22,0.0,2985.09,0.0,2985.09,0.0,organic,2015,Portland +33,2015-05-10,1.64,26757.91,9687.42,13297.52,0.0,3772.97,0.0,3772.97,0.0,organic,2015,Portland +34,2015-05-03,1.54,26104.52,9002.35,11551.57,0.0,5550.6,0.0,5550.6,0.0,organic,2015,Portland +35,2015-04-26,1.27,40141.38,8483.62,21190.25,1.64,10465.87,0.0,10465.87,0.0,organic,2015,Portland +36,2015-04-19,1.57,28675.93,12834.38,12733.52,0.0,3108.03,0.0,3108.03,0.0,organic,2015,Portland +37,2015-04-12,1.32,63498.04,8217.36,41945.37,11.27,13324.04,0.0,13324.04,0.0,organic,2015,Portland +38,2015-04-05,1.76,27428.43,9037.65,17777.46,4.75,608.57,0.0,608.57,0.0,organic,2015,Portland +39,2015-03-29,1.45,59406.24,9134.72,45312.41,3.14,4955.97,3.06,4952.91,0.0,organic,2015,Portland +40,2015-03-22,1.29,62866.23,15676.37,40685.17,17.09,6487.6,12.08,6475.52,0.0,organic,2015,Portland +41,2015-03-15,1.61,25244.87,9298.84,13800.36,1.55,2144.12,0.0,2144.12,0.0,organic,2015,Portland +42,2015-03-08,1.45,60658.97,15501.22,44127.27,10.85,1019.63,0.0,1019.63,0.0,organic,2015,Portland +43,2015-03-01,1.32,30280.67,17519.03,12225.23,35.68,500.73,0.0,500.73,0.0,organic,2015,Portland +44,2015-02-22,1.38,28687.98,17377.6,9920.09,34.1,1356.19,3.33,1352.86,0.0,organic,2015,Portland +45,2015-02-15,1.51,25692.22,10884.59,10887.79,32.61,3887.23,180.0,3707.23,0.0,organic,2015,Portland +46,2015-02-08,1.23,57669.71,16202.53,32480.02,6.22,8980.94,710.0,8270.94,0.0,organic,2015,Portland +47,2015-02-01,1.2,39672.8,20129.0,12970.57,4.68,6568.55,540.0,6028.55,0.0,organic,2015,Portland +48,2015-01-25,1.35,30862.91,15946.79,10638.92,3.13,4274.07,540.0,3734.07,0.0,organic,2015,Portland +49,2015-01-18,1.24,51904.44,11894.56,30078.32,4.7,9926.86,303.33,9623.53,0.0,organic,2015,Portland +50,2015-01-11,1.22,43116.44,18893.87,19745.21,0.0,4477.36,480.0,3997.36,0.0,organic,2015,Portland +51,2015-01-04,1.28,32927.82,17580.96,11685.08,3.15,3658.63,613.33,3045.3,0.0,organic,2015,Portland +0,2015-12-27,1.74,3905.44,256.26,1936.8,437.05,1275.33,1116.34,158.99,0.0,organic,2015,RaleighGreensboro +1,2015-12-20,1.77,4400.55,309.75,2197.77,543.03,1350.0,1350.0,0.0,0.0,organic,2015,RaleighGreensboro +2,2015-12-13,1.81,3270.51,240.87,2033.23,379.06,617.35,570.0,47.35,0.0,organic,2015,RaleighGreensboro +3,2015-12-06,1.82,3494.91,146.52,2097.0,419.63,831.76,798.35,33.41,0.0,organic,2015,RaleighGreensboro +4,2015-11-29,1.78,3817.84,115.79,1898.15,481.06,1322.84,1172.56,150.28,0.0,organic,2015,RaleighGreensboro +5,2015-11-22,1.79,4163.25,141.24,2164.98,531.25,1325.78,1302.93,22.85,0.0,organic,2015,RaleighGreensboro +6,2015-11-15,1.77,4301.53,107.06,1947.83,551.42,1695.22,1567.31,127.91,0.0,organic,2015,RaleighGreensboro +7,2015-11-08,1.75,4292.52,74.28,2037.97,655.73,1524.54,1357.91,166.63,0.0,organic,2015,RaleighGreensboro +8,2015-11-01,1.65,5676.99,77.02,2249.16,707.61,2643.2,2156.74,486.46,0.0,organic,2015,RaleighGreensboro +9,2015-10-25,1.78,5657.77,32.54,2451.58,1023.16,2150.49,2102.2,48.29,0.0,organic,2015,RaleighGreensboro +10,2015-10-18,1.73,5627.1,43.28,2506.16,698.19,2379.47,2241.87,137.6,0.0,organic,2015,RaleighGreensboro +11,2015-10-11,1.59,6683.43,42.36,2450.97,861.5,3328.6,2405.52,923.08,0.0,organic,2015,RaleighGreensboro +12,2015-10-04,1.76,5592.18,28.22,2449.8,645.0,2469.16,2062.84,406.32,0.0,organic,2015,RaleighGreensboro +13,2015-09-27,1.81,6250.05,78.13,2446.9,686.6,3038.42,2796.4,242.02,0.0,organic,2015,RaleighGreensboro +14,2015-09-20,1.86,5430.92,44.6,2235.5,660.36,2490.46,2490.46,0.0,0.0,organic,2015,RaleighGreensboro +15,2015-09-13,1.94,5345.41,28.2,2870.92,683.44,1762.85,1762.85,0.0,0.0,organic,2015,RaleighGreensboro +16,2015-09-06,1.95,5552.08,73.34,2705.46,821.09,1952.19,1931.19,21.0,0.0,organic,2015,RaleighGreensboro +17,2015-08-30,1.94,6106.73,46.87,3098.11,750.91,2210.84,2132.13,78.71,0.0,organic,2015,RaleighGreensboro +18,2015-08-23,1.92,6846.72,88.77,3262.67,891.22,2604.06,2335.43,268.63,0.0,organic,2015,RaleighGreensboro +19,2015-08-16,1.9,6123.23,50.56,2851.16,899.25,2322.26,2151.8,170.46,0.0,organic,2015,RaleighGreensboro +20,2015-08-09,1.82,7429.61,50.34,3879.39,1022.13,2477.75,2344.6,133.15,0.0,organic,2015,RaleighGreensboro +21,2015-08-02,1.86,6466.04,88.22,3021.26,690.11,2666.45,2588.48,77.97,0.0,organic,2015,RaleighGreensboro +22,2015-07-26,1.77,6381.57,142.93,2831.38,791.99,2615.27,1918.31,696.96,0.0,organic,2015,RaleighGreensboro +23,2015-07-19,1.76,6069.35,93.14,2710.15,780.46,2485.6,1873.03,612.57,0.0,organic,2015,RaleighGreensboro +24,2015-07-12,1.77,6764.37,141.82,2811.84,822.95,2987.76,2357.79,629.97,0.0,organic,2015,RaleighGreensboro +25,2015-07-05,1.82,6774.43,136.82,2955.8,1021.45,2660.36,2200.97,459.39,0.0,organic,2015,RaleighGreensboro +26,2015-06-28,1.8,5676.88,145.03,2750.18,849.44,1932.23,1451.44,480.79,0.0,organic,2015,RaleighGreensboro +27,2015-06-21,1.83,5444.87,233.94,3039.41,803.22,1368.3,1007.8,360.5,0.0,organic,2015,RaleighGreensboro +28,2015-06-14,1.75,6913.18,203.17,2924.84,1010.38,2774.79,2179.92,594.87,0.0,organic,2015,RaleighGreensboro +29,2015-06-07,1.66,7277.02,158.41,2909.31,772.63,3436.67,2473.82,962.85,0.0,organic,2015,RaleighGreensboro +30,2015-05-31,1.6,9214.37,244.24,5424.93,1038.16,2507.04,2150.81,356.23,0.0,organic,2015,RaleighGreensboro +31,2015-05-24,1.36,10570.74,97.29,6165.76,1001.62,3306.07,1933.68,1372.39,0.0,organic,2015,RaleighGreensboro +32,2015-05-17,1.15,17956.34,171.41,10462.72,4562.19,2760.02,2118.11,641.91,0.0,organic,2015,RaleighGreensboro +33,2015-05-10,1.32,10626.54,168.83,5374.06,1163.17,3920.48,1981.96,1938.52,0.0,organic,2015,RaleighGreensboro +34,2015-05-03,1.35,11843.43,111.44,6282.96,1655.48,3793.55,2261.83,1531.72,0.0,organic,2015,RaleighGreensboro +35,2015-04-26,1.51,8109.67,89.77,4454.61,919.05,2646.24,1748.63,897.61,0.0,organic,2015,RaleighGreensboro +36,2015-04-19,1.68,7895.99,79.37,4244.69,1260.14,2311.79,2248.97,62.82,0.0,organic,2015,RaleighGreensboro +37,2015-04-12,1.67,6453.51,115.36,3462.03,1068.76,1807.36,1011.65,795.71,0.0,organic,2015,RaleighGreensboro +38,2015-04-05,1.96,4859.09,152.04,2540.93,930.22,1235.9,1086.58,149.32,0.0,organic,2015,RaleighGreensboro +39,2015-03-29,1.78,5373.53,389.81,2583.24,1021.05,1379.43,1363.5,15.93,0.0,organic,2015,RaleighGreensboro +40,2015-03-22,1.85,4249.61,83.02,2618.03,902.2,646.36,485.59,160.77,0.0,organic,2015,RaleighGreensboro +41,2015-03-15,1.87,3851.7,96.29,2298.83,886.27,570.31,550.86,19.45,0.0,organic,2015,RaleighGreensboro +42,2015-03-08,1.74,6539.55,86.46,2512.71,977.29,2963.09,2947.28,15.81,0.0,organic,2015,RaleighGreensboro +43,2015-03-01,1.73,5491.23,55.87,2571.34,931.25,1932.77,1814.69,118.08,0.0,organic,2015,RaleighGreensboro +44,2015-02-22,1.77,3990.91,31.72,2088.94,801.67,1068.58,1003.61,64.97,0.0,organic,2015,RaleighGreensboro +45,2015-02-15,1.69,4322.52,30.58,1862.3,712.15,1717.49,1690.1,27.39,0.0,organic,2015,RaleighGreensboro +46,2015-02-08,1.73,5749.75,56.66,2117.25,855.4,2720.44,2635.69,84.75,0.0,organic,2015,RaleighGreensboro +47,2015-02-01,1.79,4385.19,27.19,2044.97,968.1,1344.93,1330.43,14.5,0.0,organic,2015,RaleighGreensboro +48,2015-01-25,2.02,3359.58,60.84,1948.96,627.92,721.86,620.46,101.4,0.0,organic,2015,RaleighGreensboro +49,2015-01-18,1.97,3496.27,78.13,1775.25,628.28,1014.61,925.39,89.22,0.0,organic,2015,RaleighGreensboro +50,2015-01-11,1.98,3862.72,31.58,1957.67,672.88,1200.59,1195.75,4.84,0.0,organic,2015,RaleighGreensboro +51,2015-01-04,2.01,3397.0,58.22,1493.9,772.21,1072.67,993.94,78.73,0.0,organic,2015,RaleighGreensboro +0,2015-12-27,1.53,4116.38,59.01,1910.71,233.68,1912.98,1292.73,620.25,0.0,organic,2015,RichmondNorfolk +1,2015-12-20,1.67,3999.44,66.16,2449.2,215.03,1269.05,1265.11,3.94,0.0,organic,2015,RichmondNorfolk +2,2015-12-13,1.67,3565.0,85.17,2009.89,194.01,1275.93,1213.84,62.09,0.0,organic,2015,RichmondNorfolk +3,2015-12-06,1.67,3089.71,42.65,1608.75,223.9,1214.41,1060.0,154.41,0.0,organic,2015,RichmondNorfolk +4,2015-11-29,1.68,2729.66,45.91,1463.34,180.4,1040.01,773.34,266.67,0.0,organic,2015,RichmondNorfolk +5,2015-11-22,1.65,3609.47,54.55,2599.95,278.44,676.53,596.67,79.86,0.0,organic,2015,RichmondNorfolk +6,2015-11-15,1.65,3559.21,101.96,2225.93,300.45,930.87,640.0,290.87,0.0,organic,2015,RichmondNorfolk +7,2015-11-08,1.58,4199.95,96.33,2006.69,342.69,1754.24,1466.67,287.57,0.0,organic,2015,RichmondNorfolk +8,2015-11-01,1.4,4659.79,105.26,2108.83,385.95,2059.75,806.66,1253.09,0.0,organic,2015,RichmondNorfolk +9,2015-10-25,1.66,4174.55,58.25,2344.49,371.33,1400.48,1176.66,223.82,0.0,organic,2015,RichmondNorfolk +10,2015-10-18,1.63,4738.31,87.63,2410.99,385.81,1853.88,1616.67,237.21,0.0,organic,2015,RichmondNorfolk +11,2015-10-11,1.31,5694.0,34.1,2522.36,422.63,2714.91,846.67,1868.24,0.0,organic,2015,RichmondNorfolk +12,2015-10-04,1.68,4466.07,58.49,2719.94,405.8,1281.84,993.33,288.51,0.0,organic,2015,RichmondNorfolk +13,2015-09-27,1.65,4046.31,37.76,2720.03,313.05,975.47,583.33,392.14,0.0,organic,2015,RichmondNorfolk +14,2015-09-20,1.87,3201.26,69.37,2727.16,345.61,59.12,26.67,32.45,0.0,organic,2015,RichmondNorfolk +15,2015-09-13,1.84,4609.25,52.27,3412.43,414.55,730.0,730.0,0.0,0.0,organic,2015,RichmondNorfolk +16,2015-09-06,1.85,5114.38,56.23,3368.09,386.24,1303.82,1263.33,40.49,0.0,organic,2015,RichmondNorfolk +17,2015-08-30,1.8,5052.41,32.77,3282.68,393.19,1343.77,1006.67,337.1,0.0,organic,2015,RichmondNorfolk +18,2015-08-23,1.74,5916.44,98.11,3358.92,451.81,2007.6,1550.0,457.6,0.0,organic,2015,RichmondNorfolk +19,2015-08-16,1.68,5611.72,128.18,3804.14,436.52,1242.88,553.33,689.55,0.0,organic,2015,RichmondNorfolk +20,2015-08-09,1.59,7908.2,139.83,4351.68,564.15,2852.54,2290.0,562.54,0.0,organic,2015,RichmondNorfolk +21,2015-08-02,1.7,5359.81,93.71,4051.34,383.27,831.49,703.33,128.16,0.0,organic,2015,RichmondNorfolk +22,2015-07-26,1.41,6734.91,138.93,4129.59,342.54,2123.85,220.0,1903.85,0.0,organic,2015,RichmondNorfolk +23,2015-07-19,1.35,5879.03,84.51,3233.96,428.5,2132.06,296.67,1835.39,0.0,organic,2015,RichmondNorfolk +24,2015-07-12,1.28,6873.18,119.94,3413.01,413.27,2926.96,486.67,2440.29,0.0,organic,2015,RichmondNorfolk +25,2015-07-05,1.49,5999.26,77.05,3608.18,516.81,1797.22,640.0,1157.22,0.0,organic,2015,RichmondNorfolk +26,2015-06-28,1.4,6163.88,136.01,3651.1,493.2,1883.57,776.67,1106.9,0.0,organic,2015,RichmondNorfolk +27,2015-06-21,1.35,6691.69,172.38,4236.18,438.02,1845.11,570.0,1275.11,0.0,organic,2015,RichmondNorfolk +28,2015-06-14,1.33,6991.11,155.63,3425.03,452.74,2957.71,1282.62,1675.09,0.0,organic,2015,RichmondNorfolk +29,2015-06-07,1.24,9207.05,290.65,3796.02,435.65,4684.73,1820.0,2864.73,0.0,organic,2015,RichmondNorfolk +30,2015-05-31,1.13,10092.91,232.65,6403.66,431.22,3025.38,1038.61,1986.77,0.0,organic,2015,RichmondNorfolk +31,2015-05-24,1.02,12446.65,368.78,6973.85,495.62,4608.4,1688.43,2919.97,0.0,organic,2015,RichmondNorfolk +32,2015-05-17,1.01,12407.01,281.02,7695.78,1454.5,2975.71,1634.01,1341.7,0.0,organic,2015,RichmondNorfolk +33,2015-05-10,1.03,10726.99,348.51,6066.03,560.45,3752.0,1193.33,2558.67,0.0,organic,2015,RichmondNorfolk +34,2015-05-03,1.03,12425.42,426.78,6174.2,548.21,5276.23,2313.33,2962.9,0.0,organic,2015,RichmondNorfolk +35,2015-04-26,1.12,9505.74,497.79,5299.89,378.65,3329.41,1640.0,1689.41,0.0,organic,2015,RichmondNorfolk +36,2015-04-19,1.26,8170.13,422.67,4874.84,474.62,2398.0,1910.0,488.0,0.0,organic,2015,RichmondNorfolk +37,2015-04-12,1.23,6492.79,344.8,3395.88,524.9,2227.21,915.26,1311.95,0.0,organic,2015,RichmondNorfolk +38,2015-04-05,1.54,4893.26,235.1,2349.78,523.63,1784.75,1330.0,454.75,0.0,organic,2015,RichmondNorfolk +39,2015-03-29,1.6,5559.67,214.19,3073.68,486.7,1785.1,1721.22,63.88,0.0,organic,2015,RichmondNorfolk +40,2015-03-22,1.52,3345.52,169.24,2320.53,381.39,474.36,40.0,434.36,0.0,organic,2015,RichmondNorfolk +41,2015-03-15,1.57,5834.95,157.47,2458.69,516.55,2702.24,2603.33,98.91,0.0,organic,2015,RichmondNorfolk +42,2015-03-08,1.57,5746.55,131.38,2471.16,488.5,2655.51,2553.33,102.18,0.0,organic,2015,RichmondNorfolk +43,2015-03-01,1.47,4298.37,145.94,2466.7,411.51,1274.22,916.67,357.55,0.0,organic,2015,RichmondNorfolk +44,2015-02-22,1.51,4120.01,87.31,2167.08,487.95,1377.67,1206.67,171.0,0.0,organic,2015,RichmondNorfolk +45,2015-02-15,1.59,3487.35,126.73,1701.25,408.87,1250.5,1070.0,180.5,0.0,organic,2015,RichmondNorfolk +46,2015-02-08,1.55,4719.47,103.88,1872.21,444.17,2299.21,2083.33,215.88,0.0,organic,2015,RichmondNorfolk +47,2015-02-01,1.58,3916.98,83.48,2059.65,440.08,1333.77,1296.67,37.1,0.0,organic,2015,RichmondNorfolk +48,2015-01-25,1.57,3860.33,184.69,1998.19,325.29,1352.16,1002.65,349.51,0.0,organic,2015,RichmondNorfolk +49,2015-01-18,1.62,3480.66,120.23,2152.16,363.06,845.21,583.33,261.88,0.0,organic,2015,RichmondNorfolk +50,2015-01-11,1.66,2914.35,143.78,2060.44,270.92,439.21,412.81,26.4,0.0,organic,2015,RichmondNorfolk +51,2015-01-04,1.54,4212.16,238.48,1678.83,372.55,1922.3,1570.28,352.02,0.0,organic,2015,RichmondNorfolk +0,2015-12-27,1.41,4367.47,33.27,2525.8,0.0,1808.4,690.0,1118.4,0.0,organic,2015,Roanoke +1,2015-12-20,1.59,3569.54,47.01,3008.82,0.0,513.71,495.93,17.78,0.0,organic,2015,Roanoke +2,2015-12-13,1.55,3195.92,108.32,2452.48,0.0,635.12,467.11,168.01,0.0,organic,2015,Roanoke +3,2015-12-06,1.55,3016.06,61.69,2193.93,0.0,760.44,483.33,277.11,0.0,organic,2015,Roanoke +4,2015-11-29,1.61,3158.95,95.84,2175.66,0.0,887.45,390.0,497.45,0.0,organic,2015,Roanoke +5,2015-11-22,1.54,3794.44,108.15,3153.99,0.0,532.3,346.67,185.63,0.0,organic,2015,Roanoke +6,2015-11-15,1.53,3846.37,110.01,2793.73,0.0,942.63,456.67,485.96,0.0,organic,2015,Roanoke +7,2015-11-08,1.44,4632.15,111.1,2755.55,0.0,1765.5,906.67,858.83,0.0,organic,2015,Roanoke +8,2015-11-01,1.19,5784.88,96.48,2646.44,0.0,3041.96,536.67,2505.29,0.0,organic,2015,Roanoke +9,2015-10-25,1.56,4336.41,62.3,3016.52,0.0,1257.59,690.0,567.59,0.0,organic,2015,Roanoke +10,2015-10-18,1.58,5199.39,60.95,3578.07,0.0,1560.37,840.0,720.37,0.0,organic,2015,Roanoke +11,2015-10-11,1.13,8171.34,83.19,3470.24,0.0,4617.91,543.34,4074.57,0.0,organic,2015,Roanoke +12,2015-10-04,1.6,5828.18,54.08,4018.33,0.0,1755.77,583.33,1172.44,0.0,organic,2015,Roanoke +13,2015-09-27,1.67,5760.76,59.29,4263.28,0.0,1438.19,583.33,854.86,0.0,organic,2015,Roanoke +14,2015-09-20,1.85,4691.87,67.48,4246.85,0.0,377.54,350.0,27.54,0.0,organic,2015,Roanoke +15,2015-09-13,1.84,5971.62,89.37,5082.81,0.0,799.44,793.33,6.11,0.0,organic,2015,Roanoke +16,2015-09-06,1.78,7012.8,60.39,5542.16,0.0,1410.25,1090.0,320.25,0.0,organic,2015,Roanoke +17,2015-08-30,1.73,6607.42,61.62,5079.88,0.0,1465.92,760.0,705.92,0.0,organic,2015,Roanoke +18,2015-08-23,1.69,7637.57,143.25,5309.86,0.0,2184.46,1123.34,1061.12,0.0,organic,2015,Roanoke +19,2015-08-16,1.65,7244.44,115.46,5312.72,0.0,1816.26,533.33,1282.93,0.0,organic,2015,Roanoke +20,2015-08-09,1.6,7947.92,93.25,5320.38,0.0,2534.29,1270.0,1264.29,0.0,organic,2015,Roanoke +21,2015-08-02,1.7,5802.91,123.65,4829.21,0.0,850.05,333.33,516.72,0.0,organic,2015,Roanoke +22,2015-07-26,1.34,7695.34,115.02,4828.27,0.0,2752.05,53.33,2698.72,0.0,organic,2015,Roanoke +23,2015-07-19,1.19,7688.92,131.74,4316.66,0.0,3240.52,156.67,3083.85,0.0,organic,2015,Roanoke +24,2015-07-12,1.14,8970.72,125.1,4732.53,0.0,4113.09,273.33,3839.76,0.0,organic,2015,Roanoke +25,2015-07-05,1.37,7883.53,169.14,5367.15,0.0,2347.24,693.33,1653.91,0.0,organic,2015,Roanoke +26,2015-06-28,1.31,7676.74,131.93,4981.31,0.0,2563.5,813.33,1750.17,0.0,organic,2015,Roanoke +27,2015-06-21,1.33,8892.2,142.75,6373.01,0.0,2376.44,846.67,1529.77,0.0,organic,2015,Roanoke +28,2015-06-14,1.16,9840.34,128.18,5037.78,0.0,4674.38,916.67,3757.71,0.0,organic,2015,Roanoke +29,2015-06-07,1.08,13703.15,145.56,6329.81,0.0,7227.78,1443.33,5784.45,0.0,organic,2015,Roanoke +30,2015-05-31,0.98,18116.76,118.86,12165.3,0.0,5832.6,1314.97,4517.63,0.0,organic,2015,Roanoke +31,2015-05-24,0.89,22034.63,191.26,15349.07,0.0,6494.3,1124.5,5369.8,0.0,organic,2015,Roanoke +32,2015-05-17,0.92,21537.11,203.77,16312.06,0.0,5021.28,1435.36,3585.92,0.0,organic,2015,Roanoke +33,2015-05-10,0.82,21425.19,227.33,12996.7,0.0,8201.16,1230.0,6971.16,0.0,organic,2015,Roanoke +34,2015-05-03,0.88,21016.71,259.08,13301.01,0.0,7456.62,1570.0,5886.62,0.0,organic,2015,Roanoke +35,2015-04-26,0.94,15271.18,275.96,10599.98,0.0,4395.24,1243.33,3151.91,0.0,organic,2015,Roanoke +36,2015-04-19,1.05,10387.69,172.29,8811.28,0.0,1404.12,976.03,428.09,0.0,organic,2015,Roanoke +37,2015-04-12,1.03,10200.38,202.01,6608.1,0.0,3390.27,735.94,2654.33,0.0,organic,2015,Roanoke +38,2015-04-05,1.42,6849.71,92.13,5159.16,0.0,1598.42,953.33,645.09,0.0,organic,2015,Roanoke +39,2015-03-29,1.51,6479.15,125.9,5301.46,0.0,1051.79,956.67,95.12,0.0,organic,2015,Roanoke +40,2015-03-22,1.36,5490.76,68.95,4201.88,0.0,1219.93,233.33,986.6,0.0,organic,2015,Roanoke +41,2015-03-15,1.5,6392.65,76.97,4755.78,0.0,1559.9,1323.33,236.57,0.0,organic,2015,Roanoke +42,2015-03-08,1.48,6050.63,66.14,3761.84,0.0,2222.65,2096.67,125.98,0.0,organic,2015,Roanoke +43,2015-03-01,1.33,6110.51,70.22,4546.72,0.0,1493.57,873.33,620.24,0.0,organic,2015,Roanoke +44,2015-02-22,1.36,4664.67,126.76,3417.19,0.0,1120.72,860.0,260.72,0.0,organic,2015,Roanoke +45,2015-02-15,1.46,4508.41,57.87,3264.82,0.0,1185.72,1016.67,169.05,0.0,organic,2015,Roanoke +46,2015-02-08,1.44,5184.57,81.91,3221.39,0.0,1881.27,1583.33,297.94,0.0,organic,2015,Roanoke +47,2015-02-01,1.5,4941.74,150.16,3819.72,0.0,971.86,903.33,68.53,0.0,organic,2015,Roanoke +48,2015-01-25,1.47,5411.77,117.84,4133.72,0.0,1160.21,759.28,400.93,0.0,organic,2015,Roanoke +49,2015-01-18,1.48,5621.32,109.68,4464.75,0.0,1046.89,626.3,420.59,0.0,organic,2015,Roanoke +50,2015-01-11,1.47,5128.06,82.94,4065.47,0.0,979.65,806.48,173.17,0.0,organic,2015,Roanoke +51,2015-01-04,1.39,4414.29,56.21,2760.82,0.0,1597.26,1139.42,457.84,0.0,organic,2015,Roanoke +0,2015-12-27,1.72,4946.4,1142.95,3722.48,0.0,80.97,80.97,0.0,0.0,organic,2015,Sacramento +1,2015-12-20,1.68,5161.57,1124.17,3959.43,0.0,77.97,77.97,0.0,0.0,organic,2015,Sacramento +2,2015-12-13,1.68,5141.65,1171.12,3811.97,0.0,158.56,158.56,0.0,0.0,organic,2015,Sacramento +3,2015-12-06,1.43,7422.92,1835.84,4810.97,0.0,776.11,762.78,13.33,0.0,organic,2015,Sacramento +4,2015-11-29,2.04,4643.81,872.55,3592.5,0.0,178.76,112.09,66.67,0.0,organic,2015,Sacramento +5,2015-11-22,1.79,4955.07,923.67,3860.73,0.0,170.67,140.67,30.0,0.0,organic,2015,Sacramento +6,2015-11-15,1.87,4984.88,969.68,3931.5,0.0,83.7,54.81,28.89,0.0,organic,2015,Sacramento +7,2015-11-08,1.8,5951.51,1335.02,4090.76,0.0,525.73,247.95,277.78,0.0,organic,2015,Sacramento +8,2015-11-01,1.9,5479.7,1136.13,4277.28,0.0,66.29,66.29,0.0,0.0,organic,2015,Sacramento +9,2015-10-25,1.86,5859.11,1291.46,4345.56,0.0,222.09,222.09,0.0,0.0,organic,2015,Sacramento +10,2015-10-18,2.14,5469.71,1221.59,4054.63,0.0,193.49,193.49,0.0,0.0,organic,2015,Sacramento +11,2015-10-11,2.1,5232.0,1179.15,3815.69,0.0,237.16,237.16,0.0,0.0,organic,2015,Sacramento +12,2015-10-04,2.01,6005.54,1289.92,4536.12,0.0,179.5,179.5,0.0,0.0,organic,2015,Sacramento +13,2015-09-27,1.95,5472.45,1261.85,3990.21,0.0,220.39,220.39,0.0,0.0,organic,2015,Sacramento +14,2015-09-20,2.0,6595.69,1172.53,5251.78,0.0,171.38,171.38,0.0,0.0,organic,2015,Sacramento +15,2015-09-13,2.02,6405.75,1364.77,4883.81,0.0,157.17,157.17,0.0,0.0,organic,2015,Sacramento +16,2015-09-06,2.15,5975.27,1356.08,4540.83,0.0,78.36,78.36,0.0,0.0,organic,2015,Sacramento +17,2015-08-30,2.1,6389.53,1798.88,4370.66,0.0,219.99,219.99,0.0,0.0,organic,2015,Sacramento +18,2015-08-23,1.84,9578.9,2933.89,6146.39,0.0,498.62,498.62,0.0,0.0,organic,2015,Sacramento +19,2015-08-16,2.09,7357.97,2115.7,5065.13,0.0,177.14,177.14,0.0,0.0,organic,2015,Sacramento +20,2015-08-09,2.17,7260.07,1873.4,5095.95,0.0,290.72,290.72,0.0,0.0,organic,2015,Sacramento +21,2015-08-02,2.1,6833.71,2221.89,4378.88,0.0,232.94,232.94,0.0,0.0,organic,2015,Sacramento +22,2015-07-26,2.12,8182.86,2850.16,5160.65,0.0,172.05,172.05,0.0,0.0,organic,2015,Sacramento +23,2015-07-19,1.98,9560.55,3147.29,6150.55,0.0,262.71,262.71,0.0,0.0,organic,2015,Sacramento +24,2015-07-12,1.72,13720.73,5333.14,7961.62,0.0,425.97,425.97,0.0,0.0,organic,2015,Sacramento +25,2015-07-05,1.86,9756.1,4437.96,5180.96,0.0,137.18,137.18,0.0,0.0,organic,2015,Sacramento +26,2015-06-28,1.84,9219.97,4916.07,4050.11,0.0,253.79,253.79,0.0,0.0,organic,2015,Sacramento +27,2015-06-21,1.82,9753.85,5107.53,4488.96,0.0,157.36,157.36,0.0,0.0,organic,2015,Sacramento +28,2015-06-14,1.81,10339.48,4885.46,5256.1,0.0,197.92,197.92,0.0,0.0,organic,2015,Sacramento +29,2015-06-07,1.85,9557.56,4934.71,4500.75,0.0,122.1,122.1,0.0,0.0,organic,2015,Sacramento +30,2015-05-31,1.62,10430.71,5542.33,4688.66,0.0,199.72,199.72,0.0,0.0,organic,2015,Sacramento +31,2015-05-24,1.62,11399.34,6010.97,5119.6,0.0,268.77,268.77,0.0,0.0,organic,2015,Sacramento +32,2015-05-17,1.53,13045.36,7163.2,5530.28,0.0,351.88,351.88,0.0,0.0,organic,2015,Sacramento +33,2015-05-10,1.3,27835.34,13918.56,13294.66,0.0,622.12,622.12,0.0,0.0,organic,2015,Sacramento +34,2015-05-03,1.64,8315.7,4124.83,4001.1,0.0,189.77,189.77,0.0,0.0,organic,2015,Sacramento +35,2015-04-26,1.62,9637.66,5069.89,4401.41,0.0,166.36,166.36,0.0,0.0,organic,2015,Sacramento +36,2015-04-19,1.65,9164.67,4447.66,4568.21,0.0,148.8,148.8,0.0,0.0,organic,2015,Sacramento +37,2015-04-12,1.65,8205.75,4230.7,3803.44,0.0,171.61,171.61,0.0,0.0,organic,2015,Sacramento +38,2015-04-05,1.64,9013.89,4591.9,4319.15,0.0,102.84,102.84,0.0,0.0,organic,2015,Sacramento +39,2015-03-29,1.64,9959.6,5357.72,4490.5,0.0,111.38,111.38,0.0,0.0,organic,2015,Sacramento +40,2015-03-22,1.52,7875.19,4117.41,3666.37,0.0,91.41,91.41,0.0,0.0,organic,2015,Sacramento +41,2015-03-15,1.63,9075.16,4595.6,4262.4,0.0,217.16,217.16,0.0,0.0,organic,2015,Sacramento +42,2015-03-08,1.6,9666.61,4923.8,4582.74,0.0,160.07,160.07,0.0,0.0,organic,2015,Sacramento +43,2015-03-01,1.22,45355.38,25103.48,19850.03,0.0,401.87,401.87,0.0,0.0,organic,2015,Sacramento +44,2015-02-22,1.51,8785.09,5027.44,3605.45,0.0,152.2,148.87,3.33,0.0,organic,2015,Sacramento +45,2015-02-15,1.63,7436.13,3520.52,3406.08,0.0,509.53,509.53,0.0,0.0,organic,2015,Sacramento +46,2015-02-08,1.5,8676.28,3831.1,3186.51,0.0,1658.67,1658.67,0.0,0.0,organic,2015,Sacramento +47,2015-02-01,1.22,13195.65,7103.9,5624.41,0.0,467.34,467.34,0.0,0.0,organic,2015,Sacramento +48,2015-01-25,1.44,9707.59,4291.23,4741.77,0.0,674.59,674.59,0.0,0.0,organic,2015,Sacramento +49,2015-01-18,1.13,37233.34,15363.18,20986.36,0.0,883.8,883.8,0.0,0.0,organic,2015,Sacramento +50,2015-01-11,1.27,7598.26,4243.14,3033.84,0.0,321.28,321.28,0.0,0.0,organic,2015,Sacramento +51,2015-01-04,1.33,9213.49,3727.52,4327.52,0.0,1158.45,1158.45,0.0,0.0,organic,2015,Sacramento +0,2015-12-27,1.62,8704.72,1834.72,5181.54,0.0,1688.46,472.88,1215.58,0.0,organic,2015,SanDiego +1,2015-12-20,1.23,11727.34,1099.57,5048.8,0.0,5578.97,592.32,4986.65,0.0,organic,2015,SanDiego +2,2015-12-13,1.27,12242.29,1084.4,5007.42,3.24,6147.23,674.51,5472.72,0.0,organic,2015,SanDiego +3,2015-12-06,1.83,5564.87,1256.25,3763.92,0.0,544.7,541.37,3.33,0.0,organic,2015,SanDiego +4,2015-11-29,1.87,7022.99,1232.37,5300.75,0.0,489.87,489.87,0.0,0.0,organic,2015,SanDiego +5,2015-11-22,1.85,7438.22,1689.0,5341.01,0.0,408.21,397.37,10.84,0.0,organic,2015,SanDiego +6,2015-11-15,1.68,8438.39,1537.41,6399.23,0.0,501.75,430.1,71.65,0.0,organic,2015,SanDiego +7,2015-11-08,1.82,8902.22,1234.41,7001.62,0.0,666.19,499.65,166.54,0.0,organic,2015,SanDiego +8,2015-11-01,1.64,9456.39,1478.71,7160.95,0.0,816.73,775.12,41.61,0.0,organic,2015,SanDiego +9,2015-10-25,1.65,9164.19,1955.4,6641.62,0.0,567.17,561.7,5.47,0.0,organic,2015,SanDiego +10,2015-10-18,1.85,7576.11,1707.43,5314.68,0.0,554.0,554.0,0.0,0.0,organic,2015,SanDiego +11,2015-10-11,1.82,7472.6,2112.25,4869.08,0.0,491.27,491.27,0.0,0.0,organic,2015,SanDiego +12,2015-10-04,1.85,8490.07,1759.06,6195.85,0.0,535.16,535.16,0.0,0.0,organic,2015,SanDiego +13,2015-09-27,1.7,8898.69,2858.56,5619.88,0.0,420.25,420.25,0.0,0.0,organic,2015,SanDiego +14,2015-09-20,1.69,10284.23,2634.12,7404.88,0.0,245.23,245.23,0.0,0.0,organic,2015,SanDiego +15,2015-09-13,1.81,10361.87,3295.36,6467.03,0.0,599.48,596.15,3.33,0.0,organic,2015,SanDiego +16,2015-09-06,1.85,9341.22,2333.68,6614.63,0.0,392.91,392.91,0.0,0.0,organic,2015,SanDiego +17,2015-08-30,1.88,9085.45,1986.05,6676.52,0.0,422.88,422.88,0.0,0.0,organic,2015,SanDiego +18,2015-08-23,1.74,10817.27,2433.22,7936.29,0.0,447.76,447.76,0.0,0.0,organic,2015,SanDiego +19,2015-08-16,1.82,9064.11,2762.8,5555.73,0.0,745.58,745.58,0.0,0.0,organic,2015,SanDiego +20,2015-08-09,1.82,8902.03,2628.99,5592.09,0.0,680.95,680.95,0.0,0.0,organic,2015,SanDiego +21,2015-08-02,1.86,10242.52,2569.77,7080.66,0.0,592.09,592.09,0.0,0.0,organic,2015,SanDiego +22,2015-07-26,1.71,10276.01,2844.3,7142.17,0.0,289.54,289.54,0.0,0.0,organic,2015,SanDiego +23,2015-07-19,1.85,9159.44,2480.07,6332.4,0.0,346.97,346.97,0.0,0.0,organic,2015,SanDiego +24,2015-07-12,1.81,9760.46,3360.92,5927.1,0.0,472.44,472.44,0.0,0.0,organic,2015,SanDiego +25,2015-07-05,1.55,16352.08,3011.64,12801.71,0.0,538.73,538.73,0.0,0.0,organic,2015,SanDiego +26,2015-06-28,1.55,12946.65,2398.15,10206.13,0.0,342.37,342.37,0.0,0.0,organic,2015,SanDiego +27,2015-06-21,1.56,11055.46,2962.12,7601.86,0.0,491.48,491.48,0.0,0.0,organic,2015,SanDiego +28,2015-06-14,1.53,11438.64,3328.84,7539.16,3.44,567.2,567.2,0.0,0.0,organic,2015,SanDiego +29,2015-06-07,1.51,10372.71,2793.72,6690.16,0.0,888.83,888.83,0.0,0.0,organic,2015,SanDiego +30,2015-05-31,1.49,10940.85,2933.55,6895.9,0.0,1111.4,1111.4,0.0,0.0,organic,2015,SanDiego +31,2015-05-24,1.51,12044.14,2853.3,8566.51,0.0,624.33,624.33,0.0,0.0,organic,2015,SanDiego +32,2015-05-17,1.48,10914.03,2511.62,7398.74,0.0,1003.67,1003.67,0.0,0.0,organic,2015,SanDiego +33,2015-05-10,1.45,10480.68,2069.73,7045.39,0.0,1365.56,1365.56,0.0,0.0,organic,2015,SanDiego +34,2015-05-03,1.41,10506.78,2617.84,6294.57,0.0,1594.37,1594.37,0.0,0.0,organic,2015,SanDiego +35,2015-04-26,1.48,10698.67,2780.48,6603.33,0.0,1314.86,1314.86,0.0,0.0,organic,2015,SanDiego +36,2015-04-19,1.52,10267.95,2524.24,7216.36,0.0,527.35,527.35,0.0,0.0,organic,2015,SanDiego +37,2015-04-12,1.49,10665.71,3994.59,6126.03,0.0,545.09,545.09,0.0,0.0,organic,2015,SanDiego +38,2015-04-05,1.53,11171.13,4079.7,6401.32,0.0,690.11,690.11,0.0,0.0,organic,2015,SanDiego +39,2015-03-29,1.53,8962.77,3207.2,5150.91,0.0,604.66,604.66,0.0,0.0,organic,2015,SanDiego +40,2015-03-22,1.16,12951.28,8173.64,4447.33,0.0,330.31,330.31,0.0,0.0,organic,2015,SanDiego +41,2015-03-15,1.49,8349.37,7690.44,315.77,0.0,343.16,343.16,0.0,0.0,organic,2015,SanDiego +42,2015-03-08,1.48,9468.77,8439.16,375.38,0.0,654.23,654.23,0.0,0.0,organic,2015,SanDiego +43,2015-03-01,1.09,20407.13,18706.98,795.47,0.0,904.68,904.68,0.0,0.0,organic,2015,SanDiego +44,2015-02-22,1.44,11764.76,10994.31,483.78,0.0,286.67,286.67,0.0,0.0,organic,2015,SanDiego +45,2015-02-15,1.49,12775.39,11531.38,555.56,0.0,688.45,688.45,0.0,0.0,organic,2015,SanDiego +46,2015-02-08,1.29,15054.25,13016.65,926.02,0.0,1111.58,1111.58,0.0,0.0,organic,2015,SanDiego +47,2015-02-01,1.11,18623.99,16215.48,1142.06,2.89,1263.56,1263.56,0.0,0.0,organic,2015,SanDiego +48,2015-01-25,1.26,11132.08,9245.07,470.05,0.0,1416.96,1416.96,0.0,0.0,organic,2015,SanDiego +49,2015-01-18,1.29,14473.73,12300.47,580.15,0.0,1593.11,1593.11,0.0,0.0,organic,2015,SanDiego +50,2015-01-11,1.05,20089.52,18294.44,767.68,1.44,1025.96,1025.96,0.0,0.0,organic,2015,SanDiego +51,2015-01-04,1.23,19089.36,17522.46,735.22,2.87,828.81,828.81,0.0,0.0,organic,2015,SanDiego +0,2015-12-27,1.88,14081.58,792.47,13036.76,0.0,252.35,252.35,0.0,0.0,organic,2015,SanFrancisco +1,2015-12-20,1.87,13703.79,980.71,12582.57,0.0,140.51,140.51,0.0,0.0,organic,2015,SanFrancisco +2,2015-12-13,1.94,13713.65,1379.97,12152.1,0.0,181.58,181.58,0.0,0.0,organic,2015,SanFrancisco +3,2015-12-06,1.92,15144.79,1663.88,13355.31,0.0,125.6,125.6,0.0,0.0,organic,2015,SanFrancisco +4,2015-11-29,2.58,13218.02,953.12,12235.08,0.0,29.82,3.15,26.67,0.0,organic,2015,SanFrancisco +5,2015-11-22,2.04,14355.23,791.25,13499.38,0.0,64.6,37.93,26.67,0.0,organic,2015,SanFrancisco +6,2015-11-15,2.02,17078.8,1082.9,15979.71,0.0,16.19,16.19,0.0,0.0,organic,2015,SanFrancisco +7,2015-11-08,1.98,17886.78,1285.58,16543.45,0.0,57.75,51.08,6.67,0.0,organic,2015,SanFrancisco +8,2015-11-01,2.01,17582.93,1359.92,16197.47,0.0,25.54,25.54,0.0,0.0,organic,2015,SanFrancisco +9,2015-10-25,1.94,19311.21,1334.41,17960.82,0.0,15.98,15.98,0.0,0.0,organic,2015,SanFrancisco +10,2015-10-18,2.79,12642.11,961.55,11680.56,0.0,0.0,0.0,0.0,0.0,organic,2015,SanFrancisco +11,2015-10-11,2.66,14031.73,1046.84,12984.89,0.0,0.0,0.0,0.0,0.0,organic,2015,SanFrancisco +12,2015-10-04,2.59,15346.87,1418.72,13915.36,0.0,12.79,12.79,0.0,0.0,organic,2015,SanFrancisco +13,2015-09-27,2.74,11798.62,1220.59,10523.68,0.0,54.35,54.35,0.0,0.0,organic,2015,SanFrancisco +14,2015-09-20,2.79,15197.42,1209.92,13971.53,0.0,15.97,15.97,0.0,0.0,organic,2015,SanFrancisco +15,2015-09-13,2.73,14802.78,1404.23,13395.36,0.0,3.19,3.19,0.0,0.0,organic,2015,SanFrancisco +16,2015-09-06,2.73,15510.69,1413.91,14090.42,0.0,6.36,6.36,0.0,0.0,organic,2015,SanFrancisco +17,2015-08-30,2.77,15201.2,1561.91,13617.17,0.0,22.12,22.12,0.0,0.0,organic,2015,SanFrancisco +18,2015-08-23,2.71,15111.33,1808.29,13252.57,0.0,50.47,50.47,0.0,0.0,organic,2015,SanFrancisco +19,2015-08-16,2.73,15289.67,1761.18,13512.74,0.0,15.75,15.75,0.0,0.0,organic,2015,SanFrancisco +20,2015-08-09,2.72,15564.78,1802.46,13737.17,0.0,25.15,25.15,0.0,0.0,organic,2015,SanFrancisco +21,2015-08-02,2.76,13936.04,1762.59,12145.2,0.0,28.25,28.25,0.0,0.0,organic,2015,SanFrancisco +22,2015-07-26,2.75,15953.01,2892.83,13047.24,0.0,12.94,12.94,0.0,0.0,organic,2015,SanFrancisco +23,2015-07-19,2.36,19558.81,3893.65,15665.16,0.0,0.0,0.0,0.0,0.0,organic,2015,SanFrancisco +24,2015-07-12,2.09,23141.66,7913.24,15212.8,0.0,15.62,15.62,0.0,0.0,organic,2015,SanFrancisco +25,2015-07-05,1.96,23306.75,13491.33,9796.67,0.0,18.75,18.75,0.0,0.0,organic,2015,SanFrancisco +26,2015-06-28,1.96,19868.9,12195.44,7667.22,0.0,6.24,6.24,0.0,0.0,organic,2015,SanFrancisco +27,2015-06-21,1.95,23502.62,14256.0,9227.71,0.0,18.91,15.58,3.33,0.0,organic,2015,SanFrancisco +28,2015-06-14,1.95,23972.69,15257.42,8712.16,0.0,3.11,3.11,0.0,0.0,organic,2015,SanFrancisco +29,2015-06-07,1.96,22886.87,14837.87,8027.21,0.0,21.79,21.79,0.0,0.0,organic,2015,SanFrancisco +30,2015-05-31,1.54,24581.46,15942.89,8626.08,0.0,12.49,12.49,0.0,0.0,organic,2015,SanFrancisco +31,2015-05-24,1.52,29319.95,19270.32,10024.67,0.0,24.96,24.96,0.0,0.0,organic,2015,SanFrancisco +32,2015-05-17,1.53,31271.46,22521.08,8741.03,0.0,9.35,9.35,0.0,0.0,organic,2015,SanFrancisco +33,2015-05-10,1.48,33676.05,23021.28,10608.04,0.0,46.73,46.73,0.0,0.0,organic,2015,SanFrancisco +34,2015-05-03,1.55,29248.72,19043.11,10162.2,0.0,43.41,43.41,0.0,0.0,organic,2015,SanFrancisco +35,2015-04-26,1.52,31950.47,22964.23,8946.0,0.0,40.24,40.24,0.0,0.0,organic,2015,SanFrancisco +36,2015-04-19,1.55,28984.95,19780.58,9164.18,0.0,40.19,40.19,0.0,0.0,organic,2015,SanFrancisco +37,2015-04-12,1.54,28220.45,18887.66,9332.79,0.0,0.0,0.0,0.0,0.0,organic,2015,SanFrancisco +38,2015-04-05,1.55,26530.7,17104.69,9426.01,0.0,0.0,0.0,0.0,0.0,organic,2015,SanFrancisco +39,2015-03-29,1.55,28094.96,18872.86,9215.92,0.0,6.18,6.18,0.0,0.0,organic,2015,SanFrancisco +40,2015-03-22,1.34,21370.71,12997.29,8370.33,0.0,3.09,3.09,0.0,0.0,organic,2015,SanFrancisco +41,2015-03-15,1.56,21389.7,13268.66,8105.63,0.0,15.41,15.41,0.0,0.0,organic,2015,SanFrancisco +42,2015-03-08,1.56,20111.3,12933.84,7159.0,0.0,18.46,18.46,0.0,0.0,organic,2015,SanFrancisco +43,2015-03-01,1.09,49820.01,34980.14,14818.37,0.0,21.5,21.5,0.0,0.0,organic,2015,SanFrancisco +44,2015-02-22,1.39,37223.45,25492.53,11724.78,0.0,6.14,6.14,0.0,0.0,organic,2015,SanFrancisco +45,2015-02-15,1.55,24986.4,16514.7,8294.37,0.0,177.33,177.33,0.0,0.0,organic,2015,SanFrancisco +46,2015-02-08,1.35,27556.76,17561.23,9396.92,0.0,598.61,598.61,0.0,0.0,organic,2015,SanFrancisco +47,2015-02-01,1.06,57802.02,38413.44,19160.87,0.0,227.71,227.71,0.0,0.0,organic,2015,SanFrancisco +48,2015-01-25,1.34,27146.81,17038.27,9879.87,0.0,228.67,228.67,0.0,0.0,organic,2015,SanFrancisco +49,2015-01-18,1.27,41482.48,26336.41,14789.4,0.0,356.67,356.67,0.0,0.0,organic,2015,SanFrancisco +50,2015-01-11,1.12,29676.78,17907.49,11586.46,0.0,182.83,182.83,0.0,0.0,organic,2015,SanFrancisco +51,2015-01-04,1.18,22630.58,13175.57,9028.34,0.0,426.67,426.67,0.0,0.0,organic,2015,SanFrancisco +0,2015-12-27,1.51,21378.66,610.22,13103.85,4.01,7660.58,80.12,7580.46,0.0,organic,2015,Seattle +1,2015-12-20,1.55,22819.1,505.82,13425.9,12.02,8875.36,51.94,8823.42,0.0,organic,2015,Seattle +2,2015-12-13,1.03,53336.93,617.87,19731.07,34.72,32953.27,51.55,32901.72,0.0,organic,2015,Seattle +3,2015-12-06,2.06,16605.6,556.65,11750.04,14.68,4284.23,11.87,4272.36,0.0,organic,2015,Seattle +4,2015-11-29,2.06,17765.82,647.06,13403.0,34.69,3681.07,31.44,3649.63,0.0,organic,2015,Seattle +5,2015-11-22,1.14,64822.88,969.32,22035.7,51.98,41765.88,115.51,41650.37,0.0,organic,2015,Seattle +6,2015-11-15,1.5,27437.74,2049.35,11965.96,17.31,13405.12,290.22,13114.9,0.0,organic,2015,Seattle +7,2015-11-08,1.46,31602.66,7713.42,14739.72,54.55,9094.97,470.08,8624.89,0.0,organic,2015,Seattle +8,2015-11-01,1.25,55167.3,7748.21,20764.48,418.71,26235.9,9127.53,17108.37,0.0,organic,2015,Seattle +9,2015-10-25,1.74,25757.73,3749.12,11950.72,63.86,9994.03,647.47,9346.56,0.0,organic,2015,Seattle +10,2015-10-18,1.88,23132.95,4351.2,11840.73,19.98,6921.04,1027.09,5893.95,0.0,organic,2015,Seattle +11,2015-10-11,1.75,26750.05,4297.16,13215.71,11.98,9225.2,2.96,9222.24,0.0,organic,2015,Seattle +12,2015-10-04,1.73,34022.57,4207.08,19775.17,6.65,10033.67,5.91,10027.76,0.0,organic,2015,Seattle +13,2015-09-27,1.75,24607.2,4793.34,11315.26,6.64,8491.96,2.95,8489.01,0.0,organic,2015,Seattle +14,2015-09-20,1.97,17859.24,4479.19,8805.98,15.93,4558.14,2.95,4555.19,0.0,organic,2015,Seattle +15,2015-09-13,2.11,22913.05,5766.92,11752.93,6.64,5386.56,14.75,5371.81,0.0,organic,2015,Seattle +16,2015-09-06,1.99,23890.32,5475.25,11441.26,5.31,6968.5,2.95,6965.55,0.0,organic,2015,Seattle +17,2015-08-30,1.58,48176.23,5555.85,35591.33,2.66,7026.39,0.0,7026.39,0.0,organic,2015,Seattle +18,2015-08-23,1.9,34978.87,5058.04,23395.59,31.76,6493.48,0.0,6493.48,0.0,organic,2015,Seattle +19,2015-08-16,1.7,47726.72,7047.78,27537.99,2.65,13138.3,0.0,13138.3,0.0,organic,2015,Seattle +20,2015-08-09,1.96,27798.35,7894.55,14573.33,17.25,5313.22,0.0,5313.22,0.0,organic,2015,Seattle +21,2015-08-02,2.04,26756.69,8531.33,14816.24,55.81,3353.31,0.0,3353.31,0.0,organic,2015,Seattle +22,2015-07-26,2.2,27737.07,8288.45,18815.78,50.43,582.41,0.0,582.41,0.0,organic,2015,Seattle +23,2015-07-19,1.64,49484.06,7839.69,35593.5,73.11,5977.76,0.0,5977.76,0.0,organic,2015,Seattle +24,2015-07-12,2.23,25100.98,6831.25,18168.54,16.0,85.19,0.0,85.19,0.0,organic,2015,Seattle +25,2015-07-05,1.98,29929.57,8841.34,20807.76,280.47,0.0,0.0,0.0,0.0,organic,2015,Seattle +26,2015-06-28,1.71,46229.47,8112.46,37972.31,144.7,0.0,0.0,0.0,0.0,organic,2015,Seattle +27,2015-06-21,1.75,38093.47,8727.72,29192.23,91.29,82.23,0.0,82.23,0.0,organic,2015,Seattle +28,2015-06-14,2.03,31901.63,10611.58,20743.71,197.26,349.08,0.0,349.08,0.0,organic,2015,Seattle +29,2015-06-07,2.01,33404.92,10962.3,21345.94,37.39,1059.29,0.0,1059.29,0.0,organic,2015,Seattle +30,2015-05-31,1.65,53822.93,11101.07,41130.51,83.64,1507.71,0.0,1507.71,0.0,organic,2015,Seattle +31,2015-05-24,1.85,30993.39,10926.16,17449.97,33.16,2584.1,0.0,2584.1,0.0,organic,2015,Seattle +32,2015-05-17,1.81,33553.42,10837.14,18774.47,11.92,3929.89,0.0,3929.89,0.0,organic,2015,Seattle +33,2015-05-10,1.66,37079.86,9690.74,22159.83,58.17,5171.12,0.0,5171.12,0.0,organic,2015,Seattle +34,2015-05-03,1.56,37257.59,8323.36,21227.82,11.79,7694.62,14.56,7680.06,0.0,organic,2015,Seattle +35,2015-04-26,1.66,39909.48,8195.52,30041.24,74.47,1598.25,0.0,1598.25,0.0,organic,2015,Seattle +36,2015-04-19,1.76,36734.87,9788.52,24647.6,72.91,2225.84,0.0,2225.84,0.0,organic,2015,Seattle +37,2015-04-12,1.59,61024.8,8715.25,48802.16,45.41,3461.98,2.52,3459.46,0.0,organic,2015,Seattle +38,2015-04-05,1.92,29692.3,6708.14,22605.23,43.95,334.98,0.0,334.98,0.0,organic,2015,Seattle +39,2015-03-29,1.56,56106.52,8899.19,43641.28,18.03,3548.02,0.0,3548.02,0.0,organic,2015,Seattle +40,2015-03-22,1.53,51355.58,10717.1,38095.48,30.85,2512.15,0.0,2512.15,0.0,organic,2015,Seattle +41,2015-03-15,1.8,26717.98,8978.82,17520.57,15.16,203.43,0.0,203.43,0.0,organic,2015,Seattle +42,2015-03-08,1.62,47476.51,7056.73,38276.41,95.23,2048.14,0.0,2048.14,0.0,organic,2015,Seattle +43,2015-03-01,1.71,24530.11,8762.48,14933.22,226.27,608.14,0.0,608.14,0.0,organic,2015,Seattle +44,2015-02-22,1.5,35183.3,13839.32,20645.52,83.21,615.25,0.0,615.25,0.0,organic,2015,Seattle +45,2015-02-15,1.59,37469.0,11802.78,22861.04,51.25,2753.93,116.04,2637.89,0.0,organic,2015,Seattle +46,2015-02-08,1.4,54484.31,8561.32,34897.03,32.96,10993.0,586.67,10406.33,0.0,organic,2015,Seattle +47,2015-02-01,1.44,40334.59,12927.15,21460.13,35.42,5911.89,406.67,5505.22,0.0,organic,2015,Seattle +48,2015-01-25,1.7,29354.75,6876.29,17363.12,7.33,5108.01,453.33,4654.68,0.0,organic,2015,Seattle +49,2015-01-18,1.45,44616.23,6222.73,30224.67,7.34,8161.49,216.67,7944.82,0.0,organic,2015,Seattle +50,2015-01-11,1.46,46687.01,8691.73,33361.78,13.48,4620.02,223.33,4396.69,0.0,organic,2015,Seattle +51,2015-01-04,1.49,33795.91,6821.76,20720.77,1.23,6252.15,452.73,5799.42,0.0,organic,2015,Seattle +0,2015-12-27,1.71,3617.71,561.54,1202.97,306.62,1546.58,1516.55,30.03,0.0,organic,2015,SouthCarolina +1,2015-12-20,1.77,3240.71,572.06,1280.97,344.25,1043.43,1033.02,10.41,0.0,organic,2015,SouthCarolina +2,2015-12-13,1.74,3893.76,558.34,1373.19,268.34,1693.89,1601.85,92.04,0.0,organic,2015,SouthCarolina +3,2015-12-06,1.73,3775.9,574.52,1195.56,295.4,1710.42,1594.12,116.3,0.0,organic,2015,SouthCarolina +4,2015-11-29,1.71,3543.38,369.89,1185.76,348.82,1638.91,1472.43,166.48,0.0,organic,2015,SouthCarolina +5,2015-11-22,1.89,3128.95,557.77,1342.39,371.85,856.94,847.11,9.83,0.0,organic,2015,SouthCarolina +6,2015-11-15,1.82,3595.26,575.95,1273.05,373.74,1372.52,1366.03,6.49,0.0,organic,2015,SouthCarolina +7,2015-11-08,1.74,4719.1,638.13,1186.2,422.64,2472.13,2429.32,42.81,0.0,organic,2015,SouthCarolina +8,2015-11-01,1.75,4052.15,506.15,1292.31,526.49,1727.2,1626.03,101.17,0.0,organic,2015,SouthCarolina +9,2015-10-25,1.77,4663.44,600.72,1367.39,589.03,2106.3,2089.42,16.88,0.0,organic,2015,SouthCarolina +10,2015-10-18,1.84,4333.43,519.94,1511.8,500.03,1801.66,1726.19,75.47,0.0,organic,2015,SouthCarolina +11,2015-10-11,1.79,4198.66,609.99,1494.47,511.45,1582.75,1239.96,342.79,0.0,organic,2015,SouthCarolina +12,2015-10-04,1.96,3776.95,575.76,1475.82,464.13,1261.24,1192.05,69.19,0.0,organic,2015,SouthCarolina +13,2015-09-27,2.06,2725.27,509.62,1236.98,450.77,527.9,527.9,0.0,0.0,organic,2015,SouthCarolina +14,2015-09-20,1.91,3850.51,409.19,1327.79,482.3,1631.23,1623.37,7.86,0.0,organic,2015,SouthCarolina +15,2015-09-13,1.98,3338.53,510.57,1315.43,465.66,1046.87,1036.36,10.51,0.0,organic,2015,SouthCarolina +16,2015-09-06,2.0,4032.41,541.49,1732.31,545.05,1213.56,1166.16,47.4,0.0,organic,2015,SouthCarolina +17,2015-08-30,1.92,4295.83,659.34,1483.81,554.79,1597.89,1457.97,139.92,0.0,organic,2015,SouthCarolina +18,2015-08-23,1.91,4907.1,806.09,1883.44,572.65,1644.92,1308.92,336.0,0.0,organic,2015,SouthCarolina +19,2015-08-16,1.97,4371.78,751.43,1634.13,550.28,1435.94,1321.88,114.06,0.0,organic,2015,SouthCarolina +20,2015-08-09,2.0,3813.54,610.36,1768.29,661.17,773.72,707.3,66.42,0.0,organic,2015,SouthCarolina +21,2015-08-02,1.94,3856.28,636.53,1406.72,535.15,1277.88,947.22,330.66,0.0,organic,2015,SouthCarolina +22,2015-07-26,1.81,3851.22,825.68,1299.64,416.03,1309.87,775.67,534.2,0.0,organic,2015,SouthCarolina +23,2015-07-19,1.79,4076.63,634.69,1338.97,481.12,1621.85,1141.26,480.59,0.0,organic,2015,SouthCarolina +24,2015-07-12,1.84,4614.82,585.84,1449.2,538.65,2041.13,1609.25,431.88,0.0,organic,2015,SouthCarolina +25,2015-07-05,1.84,3840.59,535.36,1440.42,595.37,1269.44,909.33,360.11,0.0,organic,2015,SouthCarolina +26,2015-06-28,1.9,3772.87,686.65,1498.15,548.6,1039.47,719.34,320.13,0.0,organic,2015,SouthCarolina +27,2015-06-21,2.07,3191.86,585.04,1526.88,541.8,538.14,430.02,108.12,0.0,organic,2015,SouthCarolina +28,2015-06-14,1.99,3921.5,665.32,1470.53,598.79,1186.86,1107.37,79.49,0.0,organic,2015,SouthCarolina +29,2015-06-07,1.95,3556.7,498.69,1234.91,499.5,1323.6,1236.67,86.93,0.0,organic,2015,SouthCarolina +30,2015-05-31,2.02,3405.9,613.01,1454.84,540.75,797.3,660.8,136.5,0.0,organic,2015,SouthCarolina +31,2015-05-24,1.99,3812.69,617.31,1406.36,644.08,1144.94,1059.17,85.77,0.0,organic,2015,SouthCarolina +32,2015-05-17,1.44,5434.12,718.19,2245.09,1424.3,1046.54,944.61,101.93,0.0,organic,2015,SouthCarolina +33,2015-05-10,1.87,3783.3,822.36,1101.72,487.37,1371.85,1049.36,322.49,0.0,organic,2015,SouthCarolina +34,2015-05-03,1.92,3336.76,451.09,1266.75,750.85,868.07,862.69,5.38,0.0,organic,2015,SouthCarolina +35,2015-04-26,2.02,3545.7,684.84,1269.42,485.55,1105.89,1022.68,83.21,0.0,organic,2015,SouthCarolina +36,2015-04-19,1.87,4376.04,631.59,1637.27,592.72,1514.46,1502.4,12.06,0.0,organic,2015,SouthCarolina +37,2015-04-12,1.94,4030.76,527.44,1873.44,722.33,907.55,776.67,130.88,0.0,organic,2015,SouthCarolina +38,2015-04-05,1.97,3601.21,581.39,1475.46,517.88,1026.48,944.14,82.34,0.0,organic,2015,SouthCarolina +39,2015-03-29,1.93,3194.76,727.42,1386.26,623.33,457.75,455.03,2.72,0.0,organic,2015,SouthCarolina +40,2015-03-22,1.77,4156.05,610.35,1876.4,528.23,1141.07,1041.5,99.57,0.0,organic,2015,SouthCarolina +41,2015-03-15,1.5,5224.18,516.14,2676.3,568.85,1462.89,823.33,639.56,0.0,organic,2015,SouthCarolina +42,2015-03-08,1.53,4954.18,498.38,2462.31,536.83,1456.66,1109.39,347.27,0.0,organic,2015,SouthCarolina +43,2015-03-01,1.52,4830.76,466.91,2571.07,530.63,1262.15,870.0,392.15,0.0,organic,2015,SouthCarolina +44,2015-02-22,1.69,3614.76,484.16,1876.73,412.03,841.84,706.67,135.17,0.0,organic,2015,SouthCarolina +45,2015-02-15,1.72,3363.2,458.81,1289.81,428.31,1186.27,1170.0,16.27,0.0,organic,2015,SouthCarolina +46,2015-02-08,1.56,6072.82,475.63,2142.16,552.27,2902.76,2600.0,302.76,0.0,organic,2015,SouthCarolina +47,2015-02-01,1.66,3977.03,456.99,1272.79,503.05,1744.2,1580.0,164.2,0.0,organic,2015,SouthCarolina +48,2015-01-25,2.01,2865.92,776.54,621.95,450.46,1016.97,970.0,46.97,0.0,organic,2015,SouthCarolina +49,2015-01-18,1.93,3024.32,686.69,656.63,310.28,1370.72,1346.0,24.72,0.0,organic,2015,SouthCarolina +50,2015-01-11,2.06,2304.3,474.97,793.53,357.87,677.93,674.61,3.32,0.0,organic,2015,SouthCarolina +51,2015-01-04,1.86,3351.76,355.79,754.78,439.19,1802.0,1768.67,33.33,0.0,organic,2015,SouthCarolina +0,2015-12-27,1.39,56297.88,21950.8,3750.99,0.0,30596.09,26668.65,3927.44,0.0,organic,2015,SouthCentral +1,2015-12-20,1.41,52488.05,21127.59,3331.02,0.0,28029.44,24355.9,3673.54,0.0,organic,2015,SouthCentral +2,2015-12-13,1.43,59392.62,22665.44,4692.95,0.0,32034.23,31725.74,308.49,0.0,organic,2015,SouthCentral +3,2015-12-06,1.49,52066.09,22080.38,4496.4,0.0,25489.31,25094.13,395.18,0.0,organic,2015,SouthCentral +4,2015-11-29,1.47,48739.53,21480.33,3491.54,0.0,23767.66,21567.32,2200.34,0.0,organic,2015,SouthCentral +5,2015-11-22,1.53,49426.32,22587.08,3632.0,0.0,23207.24,23045.62,161.62,0.0,organic,2015,SouthCentral +6,2015-11-15,1.5,57245.86,25332.33,4491.84,2.84,27418.85,27000.42,418.43,0.0,organic,2015,SouthCentral +7,2015-11-08,1.51,57570.79,26586.86,4970.65,0.0,26013.28,25469.5,543.78,0.0,organic,2015,SouthCentral +8,2015-11-01,1.51,57066.49,24717.23,4952.41,0.0,27396.85,26999.58,397.27,0.0,organic,2015,SouthCentral +9,2015-10-25,1.52,65708.3,30226.86,4503.52,0.0,30977.92,30802.1,175.82,0.0,organic,2015,SouthCentral +10,2015-10-18,1.49,60543.94,30085.91,4880.71,0.0,25577.32,24530.1,1047.22,0.0,organic,2015,SouthCentral +11,2015-10-11,1.51,59217.48,26165.72,5052.77,0.0,27998.99,26778.29,1220.7,0.0,organic,2015,SouthCentral +12,2015-10-04,1.55,59719.09,24325.44,5205.26,0.0,30188.39,29923.22,265.17,0.0,organic,2015,SouthCentral +13,2015-09-27,1.53,62096.82,33019.07,5744.39,0.0,23333.36,23134.53,198.83,0.0,organic,2015,SouthCentral +14,2015-09-20,1.53,66134.27,33312.91,4392.69,0.0,28428.67,28383.81,44.86,0.0,organic,2015,SouthCentral +15,2015-09-13,1.5,70718.4,30871.61,4925.51,0.0,34921.28,34652.38,268.9,0.0,organic,2015,SouthCentral +16,2015-09-06,1.49,62392.78,31056.58,5271.1,0.0,26065.1,25665.86,399.24,0.0,organic,2015,SouthCentral +17,2015-08-30,1.33,75913.85,42626.84,5041.59,0.0,28245.42,25411.12,2834.3,0.0,organic,2015,SouthCentral +18,2015-08-23,1.39,70321.03,40616.1,6512.06,0.0,23192.87,21264.28,1928.59,0.0,organic,2015,SouthCentral +19,2015-08-16,1.45,62132.94,32498.91,7976.91,0.0,21657.12,20726.4,930.72,0.0,organic,2015,SouthCentral +20,2015-08-09,1.42,79568.82,43853.21,8143.8,0.0,27571.81,27327.57,244.24,0.0,organic,2015,SouthCentral +21,2015-08-02,1.37,59918.41,40814.07,6636.2,71.02,12397.12,12075.3,321.82,0.0,organic,2015,SouthCentral +22,2015-07-26,1.26,62027.52,47466.03,5752.63,0.0,8808.86,7114.14,1694.72,0.0,organic,2015,SouthCentral +23,2015-07-19,1.31,56107.03,41370.58,6317.71,0.0,8418.74,6211.9,2206.84,0.0,organic,2015,SouthCentral +24,2015-07-12,1.27,59760.16,42967.8,5971.21,0.0,10821.15,7288.89,3532.26,0.0,organic,2015,SouthCentral +25,2015-07-05,1.34,64364.81,45826.23,6093.92,0.0,12444.66,11980.4,464.26,0.0,organic,2015,SouthCentral +26,2015-06-28,1.35,55512.87,37684.23,5875.04,0.0,11953.6,11251.56,702.04,0.0,organic,2015,SouthCentral +27,2015-06-21,1.4,54782.92,36431.79,6686.54,0.0,11664.59,11426.87,237.72,0.0,organic,2015,SouthCentral +28,2015-06-14,1.38,51786.11,35863.0,5766.06,0.0,10157.05,10083.7,73.35,0.0,organic,2015,SouthCentral +29,2015-06-07,1.37,49534.9,34890.42,5388.51,0.0,9255.97,8464.03,791.94,0.0,organic,2015,SouthCentral +30,2015-05-31,1.41,51748.65,33589.51,4660.68,0.0,13498.46,13292.86,205.6,0.0,organic,2015,SouthCentral +31,2015-05-24,1.39,62670.56,43917.94,5442.25,0.0,13310.37,12139.04,1171.33,0.0,organic,2015,SouthCentral +32,2015-05-17,1.41,56568.67,38624.93,5554.48,0.0,12389.26,11843.79,545.47,0.0,organic,2015,SouthCentral +33,2015-05-10,1.4,56625.63,35986.16,4598.59,0.0,16040.88,14958.78,1082.1,0.0,organic,2015,SouthCentral +34,2015-05-03,1.43,42345.48,25704.97,4666.48,0.0,11974.03,11190.0,784.03,0.0,organic,2015,SouthCentral +35,2015-04-26,1.43,61953.59,38075.34,7687.89,0.0,16190.36,15665.1,525.26,0.0,organic,2015,SouthCentral +36,2015-04-19,1.39,66454.5,44632.62,5565.23,31.07,16225.58,15914.33,311.25,0.0,organic,2015,SouthCentral +37,2015-04-12,1.4,71697.82,42155.69,5686.47,36.67,23818.99,23576.67,242.32,0.0,organic,2015,SouthCentral +38,2015-04-05,1.4,76942.46,39792.84,8032.39,768.15,28349.08,28046.67,302.41,0.0,organic,2015,SouthCentral +39,2015-03-29,1.42,60007.19,28872.83,5897.44,0.0,25236.92,25143.34,93.58,0.0,organic,2015,SouthCentral +40,2015-03-22,1.37,71375.61,39985.64,7287.16,0.0,24102.81,23953.34,149.47,0.0,organic,2015,SouthCentral +41,2015-03-15,1.38,66049.13,38409.71,6529.22,0.0,21110.2,20733.33,376.87,0.0,organic,2015,SouthCentral +42,2015-03-08,1.44,56752.92,28363.69,5523.96,0.0,22865.27,22753.34,111.93,0.0,organic,2015,SouthCentral +43,2015-03-01,1.34,80536.06,40561.64,5847.24,0.0,34127.18,34003.33,123.85,0.0,organic,2015,SouthCentral +44,2015-02-22,1.37,81291.05,43057.55,6627.71,0.0,31605.79,31043.33,562.46,0.0,organic,2015,SouthCentral +45,2015-02-15,1.39,77922.66,32655.36,7467.65,0.0,37799.65,37376.67,422.98,0.0,organic,2015,SouthCentral +46,2015-02-08,1.39,65372.85,28170.54,6886.82,0.0,30315.49,29646.67,668.82,0.0,organic,2015,SouthCentral +47,2015-02-01,1.28,64156.46,33408.72,10410.41,0.0,20337.33,19943.33,394.0,0.0,organic,2015,SouthCentral +48,2015-01-25,1.37,58961.59,34211.11,8792.21,0.0,15958.27,15613.33,344.94,0.0,organic,2015,SouthCentral +49,2015-01-18,1.27,65242.77,32913.28,6344.03,0.0,25985.46,25780.0,205.46,0.0,organic,2015,SouthCentral +50,2015-01-11,1.39,53328.53,27767.97,8596.61,0.0,16963.95,16873.34,90.61,0.0,organic,2015,SouthCentral +51,2015-01-04,1.35,53494.91,24139.72,8586.46,0.0,20768.73,20622.28,146.45,0.0,organic,2015,SouthCentral +0,2015-12-27,1.7,25732.69,9112.06,5396.93,486.56,10737.14,9824.23,912.91,0.0,organic,2015,Southeast +1,2015-12-20,1.8,25412.6,11041.17,5879.54,516.51,7975.38,7873.16,102.22,0.0,organic,2015,Southeast +2,2015-12-13,1.74,24743.66,9360.81,5604.0,383.91,9394.94,8680.07,714.87,0.0,organic,2015,Southeast +3,2015-12-06,1.66,26746.71,10128.33,5808.76,431.28,10378.34,8091.5,2286.84,0.0,organic,2015,Southeast +4,2015-11-29,1.63,24450.39,7633.55,5929.83,556.13,10330.88,7563.48,2767.4,0.0,organic,2015,Southeast +5,2015-11-22,1.81,23612.0,9892.99,6161.04,574.58,6983.39,6649.37,334.02,0.0,organic,2015,Southeast +6,2015-11-15,1.75,30790.79,11283.31,5218.44,591.33,13697.71,13393.92,303.79,0.0,organic,2015,Southeast +7,2015-11-08,1.73,32091.23,10423.56,6052.24,620.92,14994.51,14059.58,934.93,0.0,organic,2015,Southeast +8,2015-11-01,1.73,29978.74,8836.49,6600.41,820.95,13720.89,12660.01,1060.88,0.0,organic,2015,Southeast +9,2015-10-25,1.78,29706.6,10168.8,7181.54,911.72,11444.54,11094.73,349.81,0.0,organic,2015,Southeast +10,2015-10-18,1.91,29054.81,9310.61,7824.11,841.73,11078.36,9871.25,1207.11,0.0,organic,2015,Southeast +11,2015-10-11,1.78,33922.49,9386.59,8347.0,819.17,15369.73,12302.74,3066.99,0.0,organic,2015,Southeast +12,2015-10-04,1.84,31299.72,9535.47,8541.06,722.63,12500.56,10505.17,1995.39,0.0,organic,2015,Southeast +13,2015-09-27,2.01,22416.55,8882.43,7230.75,736.12,5567.25,5374.98,192.27,0.0,organic,2015,Southeast +14,2015-09-20,1.92,27123.43,8457.6,7805.95,723.36,10136.52,10096.87,39.65,0.0,organic,2015,Southeast +15,2015-09-13,1.95,25470.62,8641.1,8109.19,712.41,8007.92,7672.74,335.18,0.0,organic,2015,Southeast +16,2015-09-06,1.9,30582.99,8521.29,9414.03,830.21,11817.46,11330.12,487.34,0.0,organic,2015,Southeast +17,2015-08-30,1.74,33530.11,9183.16,8692.14,802.48,14852.33,12185.97,2666.36,0.0,organic,2015,Southeast +18,2015-08-23,1.71,37578.78,10061.25,10002.25,836.47,16678.81,12973.0,3705.81,0.0,organic,2015,Southeast +19,2015-08-16,1.75,36529.07,9052.44,9070.56,836.19,17569.88,16882.57,687.31,0.0,organic,2015,Southeast +20,2015-08-09,1.9,29598.14,9939.07,8881.24,1018.58,9759.25,8916.47,842.78,0.0,organic,2015,Southeast +21,2015-08-02,1.88,28234.61,9411.45,7533.08,820.16,10469.92,8399.35,2070.57,0.0,organic,2015,Southeast +22,2015-07-26,1.67,33855.61,9842.79,6913.97,673.36,16425.49,13022.52,3402.97,0.0,organic,2015,Southeast +23,2015-07-19,1.53,35667.73,7915.19,6778.13,733.63,20240.78,14690.68,5550.1,0.0,organic,2015,Southeast +24,2015-07-12,1.72,37288.73,7724.96,6548.52,809.8,22205.45,18521.62,3683.83,0.0,organic,2015,Southeast +25,2015-07-05,1.72,27947.09,10367.86,6913.73,931.33,9734.17,6809.6,2924.57,0.0,organic,2015,Southeast +26,2015-06-28,1.74,29549.92,13344.49,7207.44,824.04,8173.95,4887.11,3286.84,0.0,organic,2015,Southeast +27,2015-06-21,1.88,25842.76,11964.63,7758.68,832.22,5287.23,4198.25,1088.98,0.0,organic,2015,Southeast +28,2015-06-14,1.87,27578.12,12628.72,6490.53,877.52,7581.35,6625.22,956.13,0.0,organic,2015,Southeast +29,2015-06-07,1.75,30089.62,13382.84,5784.58,776.94,10145.26,8480.4,1664.86,0.0,organic,2015,Southeast +30,2015-05-31,1.81,29247.9,12021.01,6624.46,808.5,9793.93,8480.37,1313.56,0.0,organic,2015,Southeast +31,2015-05-24,1.78,30206.24,11448.55,7223.77,950.98,10582.94,8430.93,2152.01,0.0,organic,2015,Southeast +32,2015-05-17,1.7,30978.21,13360.6,7486.14,2396.87,7734.6,6175.62,1558.98,0.0,organic,2015,Southeast +33,2015-05-10,1.77,30778.46,12263.83,6021.66,723.38,11769.59,10022.12,1747.47,0.0,organic,2015,Southeast +34,2015-05-03,1.7,30991.09,13621.95,6638.11,1077.87,9653.16,9247.13,406.03,0.0,organic,2015,Southeast +35,2015-04-26,1.7,33155.61,18578.82,7341.19,710.75,6524.85,6214.8,310.05,0.0,organic,2015,Southeast +36,2015-04-19,1.69,34095.71,11389.9,9302.64,879.8,12523.37,12329.29,194.08,0.0,organic,2015,Southeast +37,2015-04-12,1.82,29548.36,12145.45,11195.55,992.48,5214.88,4845.77,369.11,0.0,organic,2015,Southeast +38,2015-04-05,1.78,30801.68,11237.65,8453.37,802.8,10307.86,8803.26,1504.6,0.0,organic,2015,Southeast +39,2015-03-29,1.84,29745.23,14076.38,7149.66,865.07,7654.12,7384.28,269.84,0.0,organic,2015,Southeast +40,2015-03-22,1.73,33825.57,12359.73,9572.05,746.1,11147.69,10338.9,808.79,0.0,organic,2015,Southeast +41,2015-03-15,1.48,44030.34,11716.79,17032.1,804.88,14476.57,9653.34,4823.23,0.0,organic,2015,Southeast +42,2015-03-08,1.47,46965.06,10517.69,19351.28,802.4,16293.69,12209.65,4084.04,0.0,organic,2015,Southeast +43,2015-03-01,1.46,47299.44,9547.92,20649.03,728.08,16374.41,12383.33,3991.08,0.0,organic,2015,Southeast +44,2015-02-22,1.59,37584.04,10316.9,15076.29,586.36,11604.49,9686.67,1917.82,0.0,organic,2015,Southeast +45,2015-02-15,1.64,31775.03,9542.72,10814.64,666.44,10751.23,10040.0,711.23,0.0,organic,2015,Southeast +46,2015-02-08,1.51,50546.78,10197.75,16658.11,792.54,22898.38,20283.33,2615.05,0.0,organic,2015,Southeast +47,2015-02-01,1.6,35085.7,8698.27,9368.82,804.65,16213.96,14673.34,1540.62,0.0,organic,2015,Southeast +48,2015-01-25,1.81,23809.3,9855.11,3187.02,612.99,10154.18,9640.0,514.18,0.0,organic,2015,Southeast +49,2015-01-18,1.79,25740.0,10781.05,3489.26,498.66,10971.03,10657.51,313.52,0.0,organic,2015,Southeast +50,2015-01-11,1.83,23690.65,10166.46,4678.19,524.42,8321.58,8164.48,157.1,0.0,organic,2015,Southeast +51,2015-01-04,1.75,27365.89,9307.34,3844.81,615.28,13598.46,13061.1,537.36,0.0,organic,2015,Southeast +0,2015-12-27,1.59,1723.36,41.54,1206.17,0.0,475.65,12.85,462.8,0.0,organic,2015,Spokane +1,2015-12-20,1.56,1711.63,42.41,1048.06,0.0,621.16,0.0,621.16,0.0,organic,2015,Spokane +2,2015-12-13,1.32,2568.24,38.55,1587.44,0.0,942.25,0.0,942.25,0.0,organic,2015,Spokane +3,2015-12-06,2.09,1153.0,56.94,972.98,0.0,123.08,0.0,123.08,0.0,organic,2015,Spokane +4,2015-11-29,1.8,1180.38,42.33,825.93,0.0,312.12,0.0,312.12,0.0,organic,2015,Spokane +5,2015-11-22,1.23,3886.59,96.19,1743.54,0.0,2046.86,6.67,2040.19,0.0,organic,2015,Spokane +6,2015-11-15,1.71,1807.99,85.3,1059.08,0.0,663.61,70.0,593.61,0.0,organic,2015,Spokane +7,2015-11-08,1.73,1837.88,118.46,1392.66,0.0,326.76,16.67,310.09,0.0,organic,2015,Spokane +8,2015-11-01,1.33,3213.0,158.11,1585.47,0.0,1469.42,0.0,1469.42,0.0,organic,2015,Spokane +9,2015-10-25,1.99,1405.75,220.69,810.37,0.0,374.69,0.0,374.69,0.0,organic,2015,Spokane +10,2015-10-18,1.89,1727.27,233.83,1103.19,0.0,390.25,8.45,381.8,0.0,organic,2015,Spokane +11,2015-10-11,1.8,2180.46,242.52,1442.16,0.0,495.78,8.42,487.36,0.0,organic,2015,Spokane +12,2015-10-04,1.92,2887.52,283.25,2418.74,3.78,181.75,12.59,169.16,0.0,organic,2015,Spokane +13,2015-09-27,1.91,1992.05,333.19,1381.73,0.0,277.13,0.0,277.13,0.0,organic,2015,Spokane +14,2015-09-20,2.13,1534.35,370.04,1127.78,0.0,36.53,0.0,36.53,0.0,organic,2015,Spokane +15,2015-09-13,2.06,1843.62,374.96,1300.71,0.0,167.95,0.0,167.95,0.0,organic,2015,Spokane +16,2015-09-06,2.12,1815.62,368.32,1198.78,0.0,248.52,0.0,248.52,0.0,organic,2015,Spokane +17,2015-08-30,1.58,4317.12,415.14,3575.51,0.0,326.47,0.0,326.47,0.0,organic,2015,Spokane +18,2015-08-23,2.11,1553.92,315.82,1027.34,9.34,201.42,0.0,201.42,0.0,organic,2015,Spokane +19,2015-08-16,1.77,4058.22,435.47,2735.0,0.0,887.75,0.0,887.75,0.0,organic,2015,Spokane +20,2015-08-09,2.07,2290.54,400.3,1609.65,0.0,280.59,0.0,280.59,0.0,organic,2015,Spokane +21,2015-08-02,2.11,2184.03,331.81,1800.15,0.0,52.07,0.0,52.07,0.0,organic,2015,Spokane +22,2015-07-26,2.07,2588.12,486.58,2057.91,1.88,41.75,0.0,41.75,0.0,organic,2015,Spokane +23,2015-07-19,1.55,4216.12,480.49,3201.75,0.0,533.88,0.0,533.88,0.0,organic,2015,Spokane +24,2015-07-12,2.07,2786.45,680.6,2105.85,0.0,0.0,0.0,0.0,0.0,organic,2015,Spokane +25,2015-07-05,1.85,3162.45,799.67,2362.78,0.0,0.0,0.0,0.0,0.0,organic,2015,Spokane +26,2015-06-28,1.61,4088.37,537.84,3550.53,0.0,0.0,0.0,0.0,0.0,organic,2015,Spokane +27,2015-06-21,1.59,4436.79,872.72,3564.07,0.0,0.0,0.0,0.0,0.0,organic,2015,Spokane +28,2015-06-14,1.88,3099.58,911.46,2160.38,0.0,27.74,0.0,27.74,0.0,organic,2015,Spokane +29,2015-06-07,1.88,3143.38,899.54,2051.73,0.0,192.11,0.0,192.11,0.0,organic,2015,Spokane +30,2015-05-31,1.55,4539.36,860.47,3616.2,1.89,60.8,0.0,60.8,0.0,organic,2015,Spokane +31,2015-05-24,1.76,2882.1,951.24,1617.67,3.78,309.41,0.0,309.41,0.0,organic,2015,Spokane +32,2015-05-17,1.78,2605.01,774.37,1609.55,7.57,213.52,0.0,213.52,0.0,organic,2015,Spokane +33,2015-05-10,1.76,3166.83,900.37,1925.8,0.0,340.66,0.0,340.66,0.0,organic,2015,Spokane +34,2015-05-03,1.62,4147.44,1380.54,2400.14,3.79,362.97,0.0,362.97,0.0,organic,2015,Spokane +35,2015-04-26,1.5,4160.45,1010.05,2865.37,0.0,285.03,0.0,285.03,0.0,organic,2015,Spokane +36,2015-04-19,1.69,4029.03,1570.21,2153.19,0.0,305.63,0.0,305.63,0.0,organic,2015,Spokane +37,2015-04-12,1.58,6356.7,837.43,5183.14,0.0,336.13,106.12,230.01,0.0,organic,2015,Spokane +38,2015-04-05,1.8,2703.36,667.51,1972.05,0.0,63.8,20.05,43.75,0.0,organic,2015,Spokane +39,2015-03-29,1.55,5611.76,758.52,4642.83,0.0,210.41,0.0,210.41,0.0,organic,2015,Spokane +40,2015-03-22,1.47,6982.04,1522.43,5302.25,0.0,157.36,0.0,157.36,0.0,organic,2015,Spokane +41,2015-03-15,1.66,3237.43,1140.23,2078.6,0.0,18.6,0.0,18.6,0.0,organic,2015,Spokane +42,2015-03-08,1.55,4836.49,1044.52,3523.26,1.82,266.89,0.0,266.89,0.0,organic,2015,Spokane +43,2015-03-01,1.58,3505.54,1237.7,2113.94,7.28,146.62,0.0,146.62,0.0,organic,2015,Spokane +44,2015-02-22,1.41,4655.86,2067.41,2588.45,0.0,0.0,0.0,0.0,0.0,organic,2015,Spokane +45,2015-02-15,1.51,4449.11,1630.04,2660.43,0.0,158.64,30.0,128.64,0.0,organic,2015,Spokane +46,2015-02-08,1.43,5788.14,1103.65,3973.9,1.82,708.77,223.33,485.44,0.0,organic,2015,Spokane +47,2015-02-01,1.38,6444.84,2284.35,3738.62,0.0,421.87,220.0,201.87,0.0,organic,2015,Spokane +48,2015-01-25,1.66,3313.55,611.87,2325.24,3.65,372.79,226.67,146.12,0.0,organic,2015,Spokane +49,2015-01-18,1.44,4363.13,582.64,3132.56,0.0,647.93,146.67,501.26,0.0,organic,2015,Spokane +50,2015-01-11,1.38,4780.87,1159.37,3192.62,1.83,427.05,140.0,287.05,0.0,organic,2015,Spokane +51,2015-01-04,1.3,5782.7,723.29,4221.15,0.0,838.26,223.33,614.93,0.0,organic,2015,Spokane +0,2015-12-27,1.07,7851.73,1347.91,935.8,12.36,5555.66,214.52,5341.14,0.0,organic,2015,StLouis +1,2015-12-20,1.34,5230.35,1228.13,866.31,8.84,3127.07,47.86,3079.21,0.0,organic,2015,StLouis +2,2015-12-13,1.8,2368.84,1002.83,927.34,0.0,438.67,25.73,412.94,0.0,organic,2015,StLouis +3,2015-12-06,2.12,2339.64,733.63,1478.08,0.0,127.93,24.55,103.38,0.0,organic,2015,StLouis +4,2015-11-29,1.58,3886.94,1748.75,1098.88,0.0,1039.31,33.33,1005.98,0.0,organic,2015,StLouis +5,2015-11-22,1.35,5054.8,1866.07,1133.16,0.0,2055.57,70.0,1985.57,0.0,organic,2015,StLouis +6,2015-11-15,1.25,5712.92,1627.01,1240.67,10.7,2834.54,227.2,2607.34,0.0,organic,2015,StLouis +7,2015-11-08,1.48,4963.92,1709.66,1279.12,194.73,1780.41,388.94,1391.47,0.0,organic,2015,StLouis +8,2015-11-01,1.04,7189.48,1566.6,975.77,277.51,4369.6,603.79,3765.81,0.0,organic,2015,StLouis +9,2015-10-25,1.2,6581.8,1676.18,1349.56,227.92,3328.14,40.0,3288.14,0.0,organic,2015,StLouis +10,2015-10-18,1.26,7031.45,1817.97,1798.19,0.0,3415.29,56.67,3358.62,0.0,organic,2015,StLouis +11,2015-10-11,1.57,4180.11,1197.54,1561.3,0.0,1421.27,76.67,1344.6,0.0,organic,2015,StLouis +12,2015-10-04,1.52,5141.68,1420.04,1780.46,0.0,1941.18,54.0,1887.18,0.0,organic,2015,StLouis +13,2015-09-27,1.94,3327.1,1305.23,1606.29,0.0,415.58,40.0,375.58,0.0,organic,2015,StLouis +14,2015-09-20,1.91,4036.73,1640.48,1871.23,0.0,525.02,99.38,425.64,0.0,organic,2015,StLouis +15,2015-09-13,1.87,4096.12,1750.38,1766.6,0.0,579.14,223.62,355.52,0.0,organic,2015,StLouis +16,2015-09-06,1.96,4167.78,1926.96,1973.83,0.0,266.99,46.67,220.32,0.0,organic,2015,StLouis +17,2015-08-30,1.92,4241.75,1560.1,2046.5,0.0,635.15,84.69,550.46,0.0,organic,2015,StLouis +18,2015-08-23,1.97,4065.69,1953.8,1730.71,0.0,381.18,151.3,229.88,0.0,organic,2015,StLouis +19,2015-08-16,2.07,3522.67,1696.14,1464.36,0.0,362.17,362.17,0.0,0.0,organic,2015,StLouis +20,2015-08-09,1.97,3502.37,2208.98,822.99,0.0,470.4,470.4,0.0,0.0,organic,2015,StLouis +21,2015-08-02,1.87,3956.75,3129.57,7.16,0.0,820.02,820.02,0.0,0.0,organic,2015,StLouis +22,2015-07-26,1.91,3005.89,2170.18,19.66,0.0,816.05,816.05,0.0,0.0,organic,2015,StLouis +23,2015-07-19,1.86,3095.1,1758.23,910.36,0.0,426.51,109.17,317.34,0.0,organic,2015,StLouis +24,2015-07-12,1.92,4163.22,1501.88,2048.18,0.0,613.16,20.0,593.16,0.0,organic,2015,StLouis +25,2015-07-05,1.86,4129.23,2030.29,1664.7,0.0,434.24,30.0,404.24,0.0,organic,2015,StLouis +26,2015-06-28,2.0,3134.16,1101.75,1669.42,0.0,362.99,63.33,299.66,0.0,organic,2015,StLouis +27,2015-06-21,1.83,3485.49,2154.15,1059.48,0.0,271.86,125.2,146.66,0.0,organic,2015,StLouis +28,2015-06-14,1.85,2937.84,1911.17,826.83,0.0,199.84,92.79,107.05,0.0,organic,2015,StLouis +29,2015-06-07,1.92,3892.36,1910.2,1704.54,0.0,277.62,103.33,174.29,0.0,organic,2015,StLouis +30,2015-05-31,2.06,3762.06,1430.26,2097.71,0.0,234.09,123.33,110.76,0.0,organic,2015,StLouis +31,2015-05-24,2.04,4105.58,1591.21,2270.74,0.0,243.63,56.67,186.96,0.0,organic,2015,StLouis +32,2015-05-17,2.01,3450.38,1372.22,1813.6,0.0,264.56,116.67,147.89,0.0,organic,2015,StLouis +33,2015-05-10,2.0,3593.05,1577.96,1820.99,0.0,194.1,80.0,114.1,0.0,organic,2015,StLouis +34,2015-05-03,2.0,3240.47,1378.06,1720.88,0.0,141.53,56.67,84.86,0.0,organic,2015,StLouis +35,2015-04-26,2.03,3030.87,1096.55,1659.18,0.0,275.14,73.33,201.81,0.0,organic,2015,StLouis +36,2015-04-19,2.09,3324.7,1372.59,1894.04,0.0,58.07,6.67,51.4,0.0,organic,2015,StLouis +37,2015-04-12,2.05,3217.19,1375.39,1735.13,0.0,106.67,106.67,0.0,0.0,organic,2015,StLouis +38,2015-04-05,2.13,3420.17,1254.85,2065.32,0.0,100.0,100.0,0.0,0.0,organic,2015,StLouis +39,2015-03-29,2.09,3137.41,1054.01,2013.4,0.0,70.0,70.0,0.0,0.0,organic,2015,StLouis +40,2015-03-22,1.83,3795.21,1305.95,2489.26,0.0,0.0,0.0,0.0,0.0,organic,2015,StLouis +41,2015-03-15,1.81,3409.93,1321.89,2068.04,0.0,20.0,20.0,0.0,0.0,organic,2015,StLouis +42,2015-03-08,1.65,2261.62,1432.51,675.78,0.0,153.33,153.33,0.0,0.0,organic,2015,StLouis +43,2015-03-01,1.85,3534.37,1100.28,2330.76,0.0,103.33,103.33,0.0,0.0,organic,2015,StLouis +44,2015-02-22,1.8,3091.01,1268.18,1776.16,0.0,46.67,46.67,0.0,0.0,organic,2015,StLouis +45,2015-02-15,1.82,4234.28,1691.45,2272.83,0.0,270.0,270.0,0.0,0.0,organic,2015,StLouis +46,2015-02-08,1.89,3707.77,1601.65,1352.79,0.0,753.33,753.33,0.0,0.0,organic,2015,StLouis +47,2015-02-01,1.93,2688.02,912.08,1425.94,0.0,350.0,350.0,0.0,0.0,organic,2015,StLouis +48,2015-01-25,1.93,4131.86,1526.97,2031.56,0.0,573.33,573.33,0.0,0.0,organic,2015,StLouis +49,2015-01-18,1.92,2923.4,2410.28,213.12,0.0,300.0,300.0,0.0,0.0,organic,2015,StLouis +50,2015-01-11,1.84,3762.18,1908.7,1590.15,0.0,263.33,263.33,0.0,0.0,organic,2015,StLouis +51,2015-01-04,1.8,3597.07,1552.48,1521.26,0.0,523.33,523.33,0.0,0.0,organic,2015,StLouis +0,2015-12-27,1.54,1652.19,0.0,73.22,0.0,1578.97,1336.27,242.7,0.0,organic,2015,Syracuse +1,2015-12-20,1.53,2491.77,0.0,72.97,0.0,2418.8,2119.22,299.58,0.0,organic,2015,Syracuse +2,2015-12-13,1.53,2134.92,1.23,124.46,0.0,2009.23,1223.27,785.96,0.0,organic,2015,Syracuse +3,2015-12-06,1.56,1803.0,0.0,54.03,0.0,1748.97,1738.06,10.91,0.0,organic,2015,Syracuse +4,2015-11-29,1.59,1023.37,4.0,39.83,0.0,979.54,979.54,0.0,0.0,organic,2015,Syracuse +5,2015-11-22,1.63,1052.37,0.0,48.75,0.0,1003.62,1003.62,0.0,0.0,organic,2015,Syracuse +6,2015-11-15,1.64,1350.16,0.0,114.22,0.0,1235.94,1235.94,0.0,0.0,organic,2015,Syracuse +7,2015-11-08,1.6,1552.91,3.0,138.07,0.0,1411.84,1408.51,3.33,0.0,organic,2015,Syracuse +8,2015-11-01,1.65,1038.67,1.21,76.09,0.0,961.37,961.37,0.0,0.0,organic,2015,Syracuse +9,2015-10-25,1.6,1566.33,0.0,91.58,0.0,1474.75,1474.75,0.0,0.0,organic,2015,Syracuse +10,2015-10-18,1.61,1398.54,0.0,59.14,0.0,1339.4,1336.72,2.68,0.0,organic,2015,Syracuse +11,2015-10-11,1.57,1599.13,0.0,26.54,0.0,1572.59,1572.59,0.0,0.0,organic,2015,Syracuse +12,2015-10-04,1.64,1130.91,0.0,72.27,0.0,1058.64,1058.64,0.0,0.0,organic,2015,Syracuse +13,2015-09-27,1.72,657.42,1.21,72.36,0.0,583.85,583.85,0.0,0.0,organic,2015,Syracuse +14,2015-09-20,1.68,876.35,4.82,121.82,0.0,749.71,749.71,0.0,0.0,organic,2015,Syracuse +15,2015-09-13,1.61,1602.4,0.0,102.48,0.0,1499.92,1499.92,0.0,0.0,organic,2015,Syracuse +16,2015-09-06,1.6,2097.4,0.0,107.49,0.0,1989.91,1989.91,0.0,0.0,organic,2015,Syracuse +17,2015-08-30,1.68,940.43,1.0,56.36,0.0,883.07,883.07,0.0,0.0,organic,2015,Syracuse +18,2015-08-23,1.62,1617.91,3.0,87.09,0.0,1527.82,1527.82,0.0,0.0,organic,2015,Syracuse +19,2015-08-16,1.86,588.87,0.0,67.66,0.0,521.21,521.21,0.0,0.0,organic,2015,Syracuse +20,2015-08-09,1.66,1295.6,16.0,53.03,0.0,1226.57,1226.57,0.0,0.0,organic,2015,Syracuse +21,2015-08-02,1.98,894.87,5.0,131.08,0.0,758.79,755.46,3.33,0.0,organic,2015,Syracuse +22,2015-07-26,1.92,1069.67,55.0,96.67,0.0,918.0,911.33,6.67,0.0,organic,2015,Syracuse +23,2015-07-19,2.07,482.26,0.0,75.74,0.0,406.52,406.52,0.0,0.0,organic,2015,Syracuse +24,2015-07-12,2.05,419.98,0.0,63.42,0.0,356.56,356.56,0.0,0.0,organic,2015,Syracuse +25,2015-07-05,1.84,1014.02,1.24,64.68,0.0,948.1,948.1,0.0,0.0,organic,2015,Syracuse +26,2015-06-28,1.86,1643.24,3.73,80.85,0.0,1558.66,1536.44,22.22,0.0,organic,2015,Syracuse +27,2015-06-21,1.88,896.16,9.0,67.14,0.0,820.02,738.91,81.11,0.0,organic,2015,Syracuse +28,2015-06-14,1.91,1365.23,1.24,163.78,0.0,1200.21,1200.21,0.0,0.0,organic,2015,Syracuse +29,2015-06-07,1.77,2145.03,0.0,49.66,0.0,2095.37,2095.37,0.0,0.0,organic,2015,Syracuse +30,2015-05-31,1.81,2520.87,0.0,122.82,0.0,2398.05,2398.05,0.0,0.0,organic,2015,Syracuse +31,2015-05-24,1.8,2279.15,7.44,103.94,0.0,2167.77,2167.77,0.0,0.0,organic,2015,Syracuse +32,2015-05-17,1.74,2080.23,11.14,90.36,0.0,1978.73,1978.73,0.0,0.0,organic,2015,Syracuse +33,2015-05-10,1.85,2269.27,1.24,229.94,0.0,2038.09,2038.09,0.0,0.0,organic,2015,Syracuse +34,2015-05-03,1.84,2721.25,6.17,101.63,0.0,2613.45,2613.45,0.0,0.0,organic,2015,Syracuse +35,2015-04-26,1.77,2102.93,2.46,45.56,0.0,2054.91,2054.91,0.0,0.0,organic,2015,Syracuse +36,2015-04-19,1.83,1062.54,3.46,57.81,0.0,1001.27,1001.27,0.0,0.0,organic,2015,Syracuse +37,2015-04-12,1.71,1742.87,0.0,47.91,0.0,1694.96,1694.96,0.0,0.0,organic,2015,Syracuse +38,2015-04-05,1.76,1690.53,2.46,104.5,0.0,1583.57,1583.57,0.0,0.0,organic,2015,Syracuse +39,2015-03-29,1.82,753.78,0.0,126.65,0.0,627.13,627.13,0.0,0.0,organic,2015,Syracuse +40,2015-03-22,1.76,810.61,0.0,193.32,0.0,617.29,617.29,0.0,0.0,organic,2015,Syracuse +41,2015-03-15,1.67,846.47,0.0,134.36,0.0,712.11,712.11,0.0,0.0,organic,2015,Syracuse +42,2015-03-08,1.6,1884.54,2.47,162.95,0.0,1719.12,1719.12,0.0,0.0,organic,2015,Syracuse +43,2015-03-01,1.59,2108.82,0.0,98.86,0.0,2009.96,2009.96,0.0,0.0,organic,2015,Syracuse +44,2015-02-22,1.57,1926.71,3.71,50.55,0.0,1872.45,1872.45,0.0,0.0,organic,2015,Syracuse +45,2015-02-15,1.72,561.1,0.0,47.64,0.0,513.46,513.46,0.0,0.0,organic,2015,Syracuse +46,2015-02-08,1.65,1283.8,0.0,114.59,0.0,1169.21,1169.21,0.0,0.0,organic,2015,Syracuse +47,2015-02-01,1.65,1285.09,3.72,111.53,0.0,1169.84,1169.84,0.0,0.0,organic,2015,Syracuse +48,2015-01-25,1.77,845.05,1.24,130.95,0.0,712.86,712.86,0.0,0.0,organic,2015,Syracuse +49,2015-01-18,1.84,627.8,0.0,151.46,0.0,476.34,476.34,0.0,0.0,organic,2015,Syracuse +50,2015-01-11,1.66,762.15,1.24,195.51,0.0,565.4,565.4,0.0,0.0,organic,2015,Syracuse +51,2015-01-04,1.72,593.39,0.0,102.71,0.0,490.68,490.68,0.0,0.0,organic,2015,Syracuse +0,2015-12-27,1.63,2161.84,874.75,17.54,0.0,1269.55,1216.67,52.88,0.0,organic,2015,Tampa +1,2015-12-20,1.79,2078.74,1214.1,11.31,0.0,853.33,853.33,0.0,0.0,organic,2015,Tampa +2,2015-12-13,1.76,1844.95,947.72,25.19,0.0,872.04,872.04,0.0,0.0,organic,2015,Tampa +3,2015-12-06,1.76,1739.62,919.89,16.4,0.0,803.33,803.33,0.0,0.0,organic,2015,Tampa +4,2015-11-29,1.73,1685.8,791.5,8.85,0.0,885.45,885.45,0.0,0.0,organic,2015,Tampa +5,2015-11-22,1.78,1983.73,1113.29,63.41,0.0,807.03,797.03,10.0,0.0,organic,2015,Tampa +6,2015-11-15,1.75,2807.44,1455.17,44.49,0.0,1307.78,1304.45,3.33,0.0,organic,2015,Tampa +7,2015-11-08,1.74,1802.37,871.03,10.19,0.0,921.15,921.15,0.0,0.0,organic,2015,Tampa +8,2015-11-01,1.5,1541.99,8.66,0.0,0.0,1533.33,1530.0,3.33,0.0,organic,2015,Tampa +9,2015-10-25,1.49,1098.67,2.0,0.0,0.0,1096.67,1096.67,0.0,0.0,organic,2015,Tampa +10,2015-10-18,1.49,1162.28,1.0,1.28,0.0,1160.0,1160.0,0.0,0.0,organic,2015,Tampa +11,2015-10-11,1.5,1732.8,4.85,1.28,0.0,1726.67,1726.67,0.0,0.0,organic,2015,Tampa +12,2015-10-04,1.47,1402.83,15.38,0.0,0.0,1387.45,1387.45,0.0,0.0,organic,2015,Tampa +13,2015-09-27,1.31,930.74,7.68,0.0,0.0,923.06,923.06,0.0,0.0,organic,2015,Tampa +14,2015-09-20,1.46,1738.65,28.28,0.0,0.0,1710.37,1710.37,0.0,0.0,organic,2015,Tampa +15,2015-09-13,1.43,1254.81,9.64,5.09,0.0,1240.08,1240.08,0.0,0.0,organic,2015,Tampa +16,2015-09-06,1.49,1786.45,18.76,0.0,0.0,1767.69,1767.69,0.0,0.0,organic,2015,Tampa +17,2015-08-30,1.48,1279.51,5.79,1.26,0.0,1272.46,1272.46,0.0,0.0,organic,2015,Tampa +18,2015-08-23,1.5,998.28,7.02,1.26,0.0,990.0,990.0,0.0,0.0,organic,2015,Tampa +19,2015-08-16,1.5,1187.99,4.25,3.74,0.0,1180.0,1180.0,0.0,0.0,organic,2015,Tampa +20,2015-08-09,1.5,1250.53,4.72,2.48,0.0,1243.33,1243.33,0.0,0.0,organic,2015,Tampa +21,2015-08-02,1.5,1200.48,7.15,0.0,0.0,1193.33,1193.33,0.0,0.0,organic,2015,Tampa +22,2015-07-26,1.49,697.76,5.67,0.0,0.0,692.09,692.09,0.0,0.0,organic,2015,Tampa +23,2015-07-19,1.42,1108.9,18.76,0.0,0.0,1090.14,1090.14,0.0,0.0,organic,2015,Tampa +24,2015-07-12,1.63,2377.5,306.52,3.61,0.0,2067.37,2067.37,0.0,0.0,organic,2015,Tampa +25,2015-07-05,1.9,2108.32,1115.93,2.39,0.0,990.0,990.0,0.0,0.0,organic,2015,Tampa +26,2015-06-28,1.81,2098.65,1325.09,3.56,0.0,770.0,770.0,0.0,0.0,organic,2015,Tampa +27,2015-06-21,1.84,1346.16,915.05,16.56,0.0,414.55,414.55,0.0,0.0,organic,2015,Tampa +28,2015-06-14,1.73,2026.74,934.18,5.89,0.0,1086.67,1086.67,0.0,0.0,organic,2015,Tampa +29,2015-06-07,1.71,2275.26,972.08,9.4,0.0,1293.78,1293.78,0.0,0.0,organic,2015,Tampa +30,2015-05-31,1.72,2091.42,943.29,5.85,0.0,1142.28,1142.28,0.0,0.0,organic,2015,Tampa +31,2015-05-24,1.7,1961.33,803.88,7.03,0.0,1150.42,1150.42,0.0,0.0,organic,2015,Tampa +32,2015-05-17,1.69,1916.43,982.96,3.52,0.0,929.95,929.95,0.0,0.0,organic,2015,Tampa +33,2015-05-10,1.69,2622.05,1063.04,16.47,0.0,1542.54,1542.54,0.0,0.0,organic,2015,Tampa +34,2015-05-03,1.34,3590.4,2342.36,17.7,0.0,1230.34,1230.34,0.0,0.0,organic,2015,Tampa +35,2015-04-26,1.31,3775.87,3030.74,16.51,0.0,728.62,728.62,0.0,0.0,organic,2015,Tampa +36,2015-04-19,1.48,3118.18,907.45,22.51,0.0,2188.22,2188.22,0.0,0.0,organic,2015,Tampa +37,2015-04-12,1.69,1723.93,891.23,27.34,0.0,805.36,805.36,0.0,0.0,organic,2015,Tampa +38,2015-04-05,1.72,1998.39,922.43,5.96,0.0,1070.0,1070.0,0.0,0.0,organic,2015,Tampa +39,2015-03-29,1.73,2210.49,1045.44,8.38,0.0,1156.67,1156.67,0.0,0.0,organic,2015,Tampa +40,2015-03-22,1.68,3313.75,1190.57,13.18,0.0,2110.0,2110.0,0.0,0.0,organic,2015,Tampa +41,2015-03-15,1.68,2301.7,852.41,5.96,0.0,1443.33,1443.33,0.0,0.0,organic,2015,Tampa +42,2015-03-08,1.65,2681.85,832.54,5.98,0.0,1843.33,1843.33,0.0,0.0,organic,2015,Tampa +43,2015-03-01,1.63,2901.01,787.15,7.19,0.0,2106.67,2106.67,0.0,0.0,organic,2015,Tampa +44,2015-02-22,1.68,2650.48,965.43,8.38,0.0,1676.67,1676.67,0.0,0.0,organic,2015,Tampa +45,2015-02-15,1.75,1986.05,990.32,2.4,0.0,993.33,993.33,0.0,0.0,organic,2015,Tampa +46,2015-02-08,1.65,2953.53,883.0,7.2,0.0,2063.33,2063.33,0.0,0.0,organic,2015,Tampa +47,2015-02-01,1.68,2109.19,762.21,20.31,0.0,1326.67,1326.67,0.0,0.0,organic,2015,Tampa +48,2015-01-25,1.75,1460.04,715.42,17.95,0.0,726.67,726.67,0.0,0.0,organic,2015,Tampa +49,2015-01-18,1.73,1751.2,810.58,23.95,0.0,916.67,916.67,0.0,0.0,organic,2015,Tampa +50,2015-01-11,1.84,1258.62,814.13,44.49,0.0,400.0,400.0,0.0,0.0,organic,2015,Tampa +51,2015-01-04,1.7,1885.48,748.62,30.19,0.0,1106.67,1106.67,0.0,0.0,organic,2015,Tampa +0,2015-12-27,1.52,549787.59,89709.92,206198.62,5836.04,248043.01,142262.93,105780.08,0.0,organic,2015,TotalUS +1,2015-12-20,1.53,531478.24,93849.3,205909.13,8733.11,222986.7,130418.73,92567.97,0.0,organic,2015,TotalUS +2,2015-12-13,1.43,624300.31,91837.92,222314.6,11645.54,298502.25,149767.8,148734.45,0.0,organic,2015,TotalUS +3,2015-12-06,1.52,514112.96,90203.21,212582.74,4066.09,207260.92,108684.49,98576.43,0.0,organic,2015,TotalUS +4,2015-11-29,1.5,507830.81,79215.51,208733.32,3749.48,216132.5,91658.24,124474.26,0.0,organic,2015,TotalUS +5,2015-11-22,1.49,584276.79,95222.99,249686.75,3686.28,235680.77,99537.47,136143.3,0.0,organic,2015,TotalUS +6,2015-11-15,1.6,511347.26,109494.19,225216.4,3599.71,173036.96,120815.93,52221.03,0.0,organic,2015,TotalUS +7,2015-11-08,1.54,605197.12,167254.55,249160.89,4458.45,184323.23,124419.8,59903.43,0.0,organic,2015,TotalUS +8,2015-11-01,1.47,647789.17,113380.29,262559.59,6583.03,265266.26,139244.36,126021.9,0.0,organic,2015,TotalUS +9,2015-10-25,1.62,560830.54,109006.18,244222.97,6181.13,201420.26,116814.8,84605.46,0.0,organic,2015,TotalUS +10,2015-10-18,1.71,518034.86,108697.64,224038.49,5199.73,180099.0,101575.52,78523.48,0.0,organic,2015,TotalUS +11,2015-10-11,1.69,519892.67,93015.27,230653.61,4792.06,191431.73,101953.72,89478.01,0.0,organic,2015,TotalUS +12,2015-10-04,1.72,557392.73,95393.58,269237.06,4093.2,188668.89,106372.09,82296.8,0.0,organic,2015,TotalUS +13,2015-09-27,1.75,501814.87,114590.38,238175.26,4546.66,144502.57,81095.01,63407.56,0.0,organic,2015,TotalUS +14,2015-09-20,1.77,515240.82,126318.13,244950.88,4880.83,139090.98,91117.47,47973.51,0.0,organic,2015,TotalUS +15,2015-09-13,1.8,552059.64,133928.36,251786.63,5154.23,161190.42,108342.83,52847.59,0.0,organic,2015,TotalUS +16,2015-09-06,1.78,593797.17,132181.77,271784.99,5890.57,183939.84,122146.97,61792.87,0.0,organic,2015,TotalUS +17,2015-08-30,1.66,670005.94,150924.97,325442.96,5569.76,188068.25,113122.37,74945.88,0.0,organic,2015,TotalUS +18,2015-08-23,1.72,666276.26,176723.74,298092.6,5985.12,185474.8,119991.27,65483.53,0.0,organic,2015,TotalUS +19,2015-08-16,1.75,644689.71,150876.8,310229.77,6215.26,177367.88,107593.62,69774.26,0.0,organic,2015,TotalUS +20,2015-08-09,1.0,625259.0,170184.0,269330.0,6905.0,178838.0,126058.0,52779.0,0.0,organic,2015,TotalUS +21,2015-08-02,1.0,573873.0,164126.0,263359.0,5115.0,141271.0,93120.0,48151.0,0.0,organic,2015,TotalUS +22,2015-07-26,1.0,580826.0,169940.0,266249.0,4391.0,140244.0,71807.0,68436.0,0.0,organic,2015,TotalUS +23,2015-07-19,1.0,650389.0,159752.0,317728.0,4758.0,168149.0,81667.0,86482.0,0.0,organic,2015,TotalUS +24,2015-07-12,1.0,608845.0,178871.0,267353.0,5093.0,157526.0,80220.0,77305.0,0.0,organic,2015,TotalUS +25,2015-07-05,1.0,668233.0,205073.0,304597.0,6251.0,152309.0,88261.0,64048.0,0.0,organic,2015,TotalUS +26,2015-06-28,1.64,659947.03,192182.13,332739.27,5956.87,129068.76,80006.4,49062.36,0.0,organic,2015,TotalUS +27,2015-06-21,1.66,638192.89,202071.06,304368.47,6264.36,125489.0,76906.18,48582.82,0.0,organic,2015,TotalUS +28,2015-06-14,1.68,646098.42,203021.68,278912.22,6901.71,157262.81,106154.26,51108.55,0.0,organic,2015,TotalUS +29,2015-06-07,1.67,640448.59,200483.4,264482.87,6286.15,169196.17,109859.75,59336.42,0.0,organic,2015,TotalUS +30,2015-05-31,1.58,716942.71,205250.19,333300.63,6835.09,171556.8,117664.54,53892.26,0.0,organic,2015,TotalUS +31,2015-05-24,1.59,714266.31,234692.14,293553.99,6911.26,179108.92,116181.11,62927.81,0.0,organic,2015,TotalUS +32,2015-05-17,1.5,761972.65,246278.31,312193.09,22024.09,181477.16,120662.4,60814.76,0.0,organic,2015,TotalUS +33,2015-05-10,1.42,861671.11,251602.18,349907.52,6213.47,253947.94,127774.24,126173.7,0.0,organic,2015,TotalUS +34,2015-05-03,1.37,912681.57,323883.65,380650.64,8951.77,199195.51,119498.18,79697.33,0.0,organic,2015,TotalUS +35,2015-04-26,1.45,872239.07,321733.2,379382.1,6150.07,164973.7,113575.79,51397.91,0.0,organic,2015,TotalUS +36,2015-04-19,1.59,675907.97,215283.51,301783.5,6465.74,152375.22,113428.19,38947.03,0.0,organic,2015,TotalUS +37,2015-04-12,1.53,810018.27,202491.27,428607.3,6179.48,172740.22,117569.14,55171.08,0.0,organic,2015,TotalUS +38,2015-04-05,1.63,661842.02,197746.89,275595.72,6434.88,182064.53,131692.64,50371.89,0.0,organic,2015,TotalUS +39,2015-03-29,1.6,674551.02,193273.88,324919.62,5794.39,150563.13,113703.56,36859.57,0.0,organic,2015,TotalUS +40,2015-03-22,1.49,682640.03,237139.46,320353.82,5290.59,119856.16,83554.82,36301.34,0.0,organic,2015,TotalUS +41,2015-03-15,1.5,644584.67,235569.01,258475.58,5308.79,145231.29,109325.32,35905.97,0.0,organic,2015,TotalUS +42,2015-03-08,1.49,783913.05,253078.17,327972.28,5658.7,197203.9,169302.64,27901.26,0.0,organic,2015,TotalUS +43,2015-03-01,1.4,814484.79,361996.84,275458.57,5556.02,171473.36,148488.14,22985.22,0.0,organic,2015,TotalUS +44,2015-02-22,1.51,673446.69,272594.88,230342.87,4883.55,165625.39,133314.63,32310.76,0.0,organic,2015,TotalUS +45,2015-02-15,1.58,616177.0,207650.64,228653.33,4950.01,174923.02,140602.0,34321.02,0.0,organic,2015,TotalUS +46,2015-02-08,1.48,730874.31,215657.99,273897.84,5316.55,236001.93,179887.47,56114.46,0.0,organic,2015,TotalUS +47,2015-02-01,1.36,740896.97,302561.47,259286.44,5852.28,173196.78,129953.15,43243.63,0.0,organic,2015,TotalUS +48,2015-01-25,1.53,556368.86,207494.87,212312.02,4753.87,131808.1,95964.83,35843.27,0.0,organic,2015,TotalUS +49,2015-01-18,1.42,713120.0,254319.58,311811.01,4020.85,142968.56,101850.23,41118.33,0.0,organic,2015,TotalUS +50,2015-01-11,1.42,669528.88,270966.74,260971.6,3830.42,133760.12,106844.49,26915.63,0.0,organic,2015,TotalUS +51,2015-01-04,1.46,612910.15,233286.13,216611.2,4370.99,158641.83,115068.71,43573.12,0.0,organic,2015,TotalUS +0,2015-12-27,1.46,142710.36,29880.32,48416.71,38.63,64374.7,17464.54,46910.16,0.0,organic,2015,West +1,2015-12-20,1.45,144120.63,30114.67,45111.21,38.63,68856.12,12937.47,55918.65,0.0,organic,2015,West +2,2015-12-13,1.16,228520.16,29083.18,68810.09,67.91,130558.98,28892.2,101666.78,0.0,organic,2015,West +3,2015-12-06,1.39,139927.17,22320.01,49596.02,61.25,67949.89,3623.32,64326.57,0.0,organic,2015,West +4,2015-11-29,1.26,174210.66,22168.11,57717.17,102.49,94222.89,1722.92,92499.97,0.0,organic,2015,West +5,2015-11-22,1.29,223979.09,28451.14,77160.23,123.89,118243.83,2251.17,115992.66,0.0,organic,2015,West +6,2015-11-15,1.61,124812.43,36788.36,44774.06,71.92,43178.09,5680.18,37497.91,0.0,organic,2015,West +7,2015-11-08,1.36,201480.84,89839.79,65551.05,149.12,45940.88,5014.8,40926.08,0.0,organic,2015,West +8,2015-11-01,1.23,242525.92,37553.46,78353.97,535.26,126083.23,25674.73,100408.5,0.0,organic,2015,West +9,2015-10-25,1.59,140994.25,27321.04,49103.5,121.41,64448.3,5154.29,59294.01,0.0,organic,2015,West +10,2015-10-18,1.69,139473.83,34482.28,51718.64,65.51,53207.4,5834.58,47372.82,0.0,organic,2015,West +11,2015-10-11,1.66,143146.85,27827.61,57061.73,56.28,58201.23,2437.78,55763.45,0.0,organic,2015,West +12,2015-10-04,1.61,176416.14,27947.64,79505.2,59.03,68904.27,2908.21,65996.06,0.0,organic,2015,West +13,2015-09-27,1.65,143436.75,35384.41,51664.23,55.05,56333.06,2226.01,54107.05,0.0,organic,2015,West +14,2015-09-20,1.73,119727.18,34304.09,41159.81,32.24,44231.04,1313.87,42917.17,0.0,organic,2015,West +15,2015-09-13,1.83,135524.9,39528.09,48060.97,51.1,47884.74,4197.01,43687.73,0.0,organic,2015,West +16,2015-09-06,1.83,147088.73,42937.96,53808.76,33.63,50308.38,3184.13,47124.25,0.0,organic,2015,West +17,2015-08-30,1.54,220337.3,50269.47,112276.32,45.76,57745.75,5954.54,51791.21,0.0,organic,2015,West +18,2015-08-23,1.75,182568.08,62741.72,68168.99,86.19,51571.18,8054.58,43516.6,0.0,organic,2015,West +19,2015-08-16,1.67,214374.59,58956.38,90741.76,17.51,64658.94,6931.2,57727.74,0.0,organic,2015,West +20,2015-08-09,1.77,170475.9,66285.78,54803.47,51.19,49335.46,7937.11,41398.35,0.0,organic,2015,West +21,2015-08-02,1.81,160585.07,67553.3,54445.94,90.26,38495.57,3645.87,34849.7,0.0,organic,2015,West +22,2015-07-26,1.86,159233.08,60875.67,63812.49,130.63,34414.29,2726.04,31688.25,0.0,organic,2015,West +23,2015-07-19,1.56,227872.88,61194.97,120177.62,129.25,46371.04,3357.62,43013.42,0.0,organic,2015,West +24,2015-07-12,1.81,161657.89,64133.84,62394.38,82.03,35047.64,6307.0,28740.64,0.0,organic,2015,West +25,2015-07-05,1.71,195265.06,77241.35,71889.5,310.31,45823.9,8289.44,37534.46,0.0,organic,2015,West +26,2015-06-28,1.59,228925.49,72925.55,121231.87,210.81,34557.26,4069.12,30488.14,0.0,organic,2015,West +27,2015-06-21,1.57,214929.13,79625.61,96596.31,135.42,38571.79,5631.69,32940.1,0.0,organic,2015,West +28,2015-06-14,1.71,194492.22,79176.9,72391.43,282.49,42641.4,9416.59,33224.81,0.0,organic,2015,West +29,2015-06-07,1.74,192122.01,81830.79,74180.44,122.03,35988.75,7351.98,28636.77,0.0,organic,2015,West +30,2015-05-31,1.53,251074.96,84137.69,124169.28,115.97,42652.02,8789.9,33862.12,0.0,organic,2015,West +31,2015-05-24,1.6,203951.84,90538.0,69103.55,86.82,44223.47,7078.29,37145.18,0.0,organic,2015,West +32,2015-05-17,1.49,229340.78,106530.27,76060.75,59.03,46690.73,12622.36,34068.37,0.0,organic,2015,West +33,2015-05-10,1.47,233387.28,103400.77,77718.2,126.96,52141.35,10767.06,41374.29,0.0,organic,2015,West +34,2015-05-03,1.24,378778.68,208996.22,121444.88,242.71,48094.87,10896.11,37198.76,0.0,organic,2015,West +35,2015-04-26,1.27,389892.07,183001.34,163634.35,524.42,42731.96,9833.16,32898.8,0.0,organic,2015,West +36,2015-04-19,1.58,191660.54,81644.37,75401.95,172.53,34441.69,5925.32,28516.37,0.0,organic,2015,West +37,2015-04-12,1.5,262870.62,65226.89,148667.1,99.65,48876.98,6464.0,42412.98,0.0,organic,2015,West +38,2015-04-05,1.69,194132.3,69519.19,82145.27,78.72,42389.12,8993.07,33396.05,0.0,organic,2015,West +39,2015-03-29,1.54,263845.02,71334.94,151939.31,36.04,40534.73,6885.37,33649.36,0.0,organic,2015,West +40,2015-03-22,1.43,271984.49,94041.38,143154.95,66.85,34721.31,3743.72,30977.59,0.0,organic,2015,West +41,2015-03-15,1.41,236130.36,100362.24,106186.35,69.48,29512.29,7666.67,21845.62,0.0,organic,2015,West +42,2015-03-08,1.37,330353.76,119664.32,178258.33,176.53,32254.58,14940.27,17314.31,0.0,organic,2015,West +43,2015-03-01,1.4,218957.86,110458.55,81474.98,311.88,26712.45,12552.61,14159.84,0.0,organic,2015,West +44,2015-02-22,1.48,188334.19,87488.99,70229.26,168.9,30447.04,6976.12,23470.92,0.0,organic,2015,West +45,2015-02-15,1.58,166334.97,60976.33,72229.53,104.93,33024.18,7284.44,25739.74,0.0,organic,2015,West +46,2015-02-08,1.4,246616.27,64858.54,116792.77,65.38,64899.58,17633.33,47266.25,0.0,organic,2015,West +47,2015-02-01,1.34,216484.22,89599.59,82183.07,184.99,44516.57,11083.16,33433.41,0.0,organic,2015,West +48,2015-01-25,1.52,166494.38,61454.35,68624.86,749.3,35665.87,9756.03,25909.84,0.0,organic,2015,West +49,2015-01-18,1.33,251749.94,64328.76,147608.3,69.05,39743.83,7442.17,32301.66,0.0,organic,2015,West +50,2015-01-11,1.39,223156.55,80139.16,111395.01,63.88,31558.5,9296.76,22261.74,0.0,organic,2015,West +51,2015-01-04,1.4,187548.3,70313.71,72942.11,24.3,44268.18,10023.72,34244.46,0.0,organic,2015,West +0,2015-12-27,1.81,7155.63,1478.79,2629.64,14.1,3033.1,2855.55,177.55,0.0,organic,2015,WestTexNewMexico +1,2015-12-20,1.92,6255.19,1512.45,2407.32,11.78,2323.64,2213.72,109.92,0.0,organic,2015,WestTexNewMexico +2,2015-12-13,1.8,7836.65,2194.49,2981.01,25.97,2635.18,2598.45,36.73,0.0,organic,2015,WestTexNewMexico +3,2015-11-29,2.08,4638.1,1395.02,2238.04,61.71,943.33,943.33,0.0,0.0,organic,2015,WestTexNewMexico +4,2015-11-22,1.97,6249.43,1733.4,2873.92,30.95,1611.16,1590.0,21.16,0.0,organic,2015,WestTexNewMexico +5,2015-11-15,1.92,8175.94,1925.21,3271.43,16.72,2962.58,2946.66,15.92,0.0,organic,2015,WestTexNewMexico +6,2015-11-08,1.98,7603.07,2198.14,3139.24,26.37,2239.32,2223.34,15.98,0.0,organic,2015,WestTexNewMexico +7,2015-11-01,1.92,7296.25,1652.42,3123.83,0.0,2520.0,2520.0,0.0,0.0,organic,2015,WestTexNewMexico +8,2015-10-25,2.0,6447.44,1235.04,2895.73,0.0,2316.67,2316.67,0.0,0.0,organic,2015,WestTexNewMexico +9,2015-10-18,2.02,7664.36,1523.54,3491.3,0.0,2649.52,2606.66,42.86,0.0,organic,2015,WestTexNewMexico +10,2015-10-11,2.05,7346.43,1544.38,3601.95,0.0,2200.1,2173.33,26.77,0.0,organic,2015,WestTexNewMexico +11,2015-10-04,2.01,8059.96,1690.85,3621.73,0.0,2747.38,2723.34,24.04,0.0,organic,2015,WestTexNewMexico +12,2015-09-27,1.76,8150.95,1500.18,5237.43,0.0,1413.34,1406.67,6.67,0.0,organic,2015,WestTexNewMexico +13,2015-09-20,2.19,5023.44,896.41,2911.75,0.0,1215.28,1190.0,25.28,0.0,organic,2015,WestTexNewMexico +14,2015-09-13,1.99,6608.39,1309.78,3114.34,0.0,2184.27,1763.34,420.93,0.0,organic,2015,WestTexNewMexico +15,2015-09-06,1.78,10554.69,3494.93,3556.76,0.0,3503.0,2866.67,636.33,0.0,organic,2015,WestTexNewMexico +16,2015-08-30,1.69,11459.06,4328.13,3911.96,0.0,3218.97,2383.33,835.64,0.0,organic,2015,WestTexNewMexico +17,2015-08-23,1.61,11341.36,5070.74,3018.12,0.0,3252.5,2216.67,1035.83,0.0,organic,2015,WestTexNewMexico +18,2015-08-16,1.66,11538.97,3284.92,5434.82,0.0,2819.23,2726.66,92.57,0.0,organic,2015,WestTexNewMexico +19,2015-08-09,1.86,10167.7,3994.02,3545.8,0.0,2627.88,2516.67,111.21,0.0,organic,2015,WestTexNewMexico +20,2015-08-02,1.9,8369.4,4238.86,3463.41,0.0,667.13,596.67,70.46,0.0,organic,2015,WestTexNewMexico +21,2015-07-26,1.84,7977.11,2951.21,3851.35,0.0,1174.55,960.0,214.55,0.0,organic,2015,WestTexNewMexico +22,2015-07-19,1.74,6864.82,2502.95,3493.83,0.0,868.04,266.67,601.37,0.0,organic,2015,WestTexNewMexico +23,2015-07-12,1.96,6689.54,2449.63,3542.77,0.0,697.14,553.33,143.81,0.0,organic,2015,WestTexNewMexico +24,2015-07-05,1.58,13816.71,6430.36,4300.0,0.0,3086.35,2744.5,341.85,0.0,organic,2015,WestTexNewMexico +25,2015-06-28,1.58,11456.41,5443.3,3745.9,0.0,2267.21,1460.2,807.01,0.0,organic,2015,WestTexNewMexico +26,2015-06-21,1.66,11100.27,5294.94,4443.29,0.0,1362.04,1035.3,326.74,0.0,organic,2015,WestTexNewMexico +27,2015-06-14,1.55,13506.32,4106.03,5782.57,0.0,3617.72,2706.67,911.05,0.0,organic,2015,WestTexNewMexico +28,2015-06-07,1.48,13363.66,5337.04,4286.32,0.0,3740.3,2190.2,1550.1,0.0,organic,2015,WestTexNewMexico +29,2015-05-31,1.39,13968.18,5389.41,5289.93,0.0,3288.84,1948.63,1340.21,0.0,organic,2015,WestTexNewMexico +30,2015-05-24,1.38,14314.2,6545.88,4514.13,0.0,3254.19,1826.67,1427.52,0.0,organic,2015,WestTexNewMexico +31,2015-05-17,1.42,16514.55,7604.41,5425.94,0.0,3484.2,1936.67,1547.53,0.0,organic,2015,WestTexNewMexico +32,2015-05-10,1.43,13607.51,5881.71,4326.02,6.9,3392.88,1853.33,1539.55,0.0,organic,2015,WestTexNewMexico +33,2015-05-03,1.51,12166.64,4523.43,4781.85,0.0,2861.36,1523.33,1338.03,0.0,organic,2015,WestTexNewMexico +34,2015-04-26,1.92,19634.24,3284.15,12724.89,4.6,3620.6,2616.67,1003.93,0.0,organic,2015,WestTexNewMexico +35,2015-04-19,1.6,11075.85,3654.28,4477.34,0.0,2944.23,1770.0,1174.23,0.0,organic,2015,WestTexNewMexico +36,2015-04-12,1.66,8335.28,2470.16,3359.63,0.0,2505.49,1860.22,645.27,0.0,organic,2015,WestTexNewMexico +37,2015-04-05,1.8,9073.21,2827.97,3353.79,0.0,2891.45,2619.58,271.87,0.0,organic,2015,WestTexNewMexico +38,2015-03-29,1.77,7485.54,2193.27,3230.94,0.0,2061.33,2061.33,0.0,0.0,organic,2015,WestTexNewMexico +39,2015-03-22,1.84,7771.97,2209.54,3525.73,0.0,2036.7,2036.7,0.0,0.0,organic,2015,WestTexNewMexico +40,2015-03-15,1.82,6046.98,1732.58,2997.73,0.0,1316.67,1316.67,0.0,0.0,organic,2015,WestTexNewMexico +41,2015-03-08,1.59,10407.27,2757.69,2923.89,0.0,4725.69,4715.39,10.3,0.0,organic,2015,WestTexNewMexico +42,2015-03-01,1.64,8743.37,2206.18,2725.29,0.0,3811.9,3811.9,0.0,0.0,organic,2015,WestTexNewMexico +43,2015-02-22,1.71,8720.44,2209.31,3488.67,0.0,3022.46,3017.22,5.24,0.0,organic,2015,WestTexNewMexico +44,2015-02-15,1.7,7309.84,2095.43,2610.02,0.0,2604.39,2604.39,0.0,0.0,organic,2015,WestTexNewMexico +45,2015-02-08,1.66,9271.68,2240.97,2867.38,0.0,4163.33,4163.33,0.0,0.0,organic,2015,WestTexNewMexico +46,2015-02-01,1.77,7210.19,1634.42,3012.44,0.0,2563.33,2563.33,0.0,0.0,organic,2015,WestTexNewMexico +47,2015-01-25,1.63,7324.06,1934.46,3032.72,0.0,2356.88,2320.0,36.88,0.0,organic,2015,WestTexNewMexico +48,2015-01-18,1.71,5508.2,1793.64,2078.72,0.0,1635.84,1620.0,15.84,0.0,organic,2015,WestTexNewMexico +49,2015-01-11,1.69,6861.73,1822.28,2377.54,0.0,2661.91,2656.66,5.25,0.0,organic,2015,WestTexNewMexico +50,2015-01-04,1.64,6182.81,1561.3,2958.17,0.0,1663.34,1663.34,0.0,0.0,organic,2015,WestTexNewMexico +0,2016-12-25,1.93,1714.92,77.5,250.13,0.0,1387.29,1387.29,0.0,0.0,organic,2016,Albany +1,2016-12-18,1.86,1472.84,111.34,198.07,0.0,1163.43,1163.43,0.0,0.0,organic,2016,Albany +2,2016-12-11,1.9,1886.63,42.26,156.72,0.0,1687.65,1687.65,0.0,0.0,organic,2016,Albany +3,2016-12-04,1.97,1364.73,100.01,99.17,0.0,1165.55,1165.55,0.0,0.0,organic,2016,Albany +4,2016-11-27,1.97,1646.78,50.76,177.08,0.0,1418.94,1418.94,0.0,0.0,organic,2016,Albany +5,2016-11-20,1.93,1862.7,122.63,197.39,0.0,1542.68,1542.68,0.0,0.0,organic,2016,Albany +6,2016-11-13,2.0,2084.37,75.8,191.07,0.0,1817.5,1817.5,0.0,0.0,organic,2016,Albany +7,2016-11-06,1.93,2674.0,60.08,194.11,0.0,2419.81,2419.81,0.0,0.0,organic,2016,Albany +8,2016-10-30,1.96,1326.8,57.66,93.41,0.0,1175.73,1175.73,0.0,0.0,organic,2016,Albany +9,2016-10-23,1.86,1913.99,37.83,80.72,0.0,1795.44,1795.44,0.0,0.0,organic,2016,Albany +10,2016-10-16,1.75,1939.89,71.5,111.86,0.0,1756.53,1756.53,0.0,0.0,organic,2016,Albany +11,2016-10-09,1.75,2179.44,77.27,155.69,0.0,1946.48,1946.48,0.0,0.0,organic,2016,Albany +12,2016-10-02,1.73,2492.82,51.93,139.63,0.0,2301.26,2301.26,0.0,0.0,organic,2016,Albany +13,2016-09-25,1.68,2019.71,33.22,190.77,0.0,1795.72,1795.72,0.0,0.0,organic,2016,Albany +14,2016-09-18,1.69,2137.53,47.35,194.65,0.0,1895.53,1895.53,0.0,0.0,organic,2016,Albany +15,2016-09-11,1.68,3501.41,128.94,227.69,0.0,3144.78,3144.78,0.0,0.0,organic,2016,Albany +16,2016-09-04,1.73,2194.77,52.26,181.76,0.0,1960.75,1960.75,0.0,0.0,organic,2016,Albany +17,2016-08-28,1.66,1922.46,17.35,200.92,0.0,1704.19,1704.19,0.0,0.0,organic,2016,Albany +18,2016-08-21,1.67,1926.01,19.93,233.25,0.0,1672.83,1672.83,0.0,0.0,organic,2016,Albany +19,2016-08-14,1.72,1609.03,29.39,252.78,0.0,1326.86,1326.86,0.0,0.0,organic,2016,Albany +20,2016-08-07,1.67,1545.79,54.24,206.36,0.0,1285.19,1285.19,0.0,0.0,organic,2016,Albany +21,2016-07-31,1.43,1553.42,29.56,204.54,0.0,1319.32,1319.32,0.0,0.0,organic,2016,Albany +22,2016-07-24,1.42,1811.44,23.66,175.08,0.0,1612.7,1612.7,0.0,0.0,organic,2016,Albany +23,2016-07-17,1.57,2399.74,16.56,201.12,0.0,2182.06,2182.06,0.0,0.0,organic,2016,Albany +24,2016-07-10,1.58,2173.2,31.76,113.57,0.0,2027.87,2027.87,0.0,0.0,organic,2016,Albany +25,2016-07-03,1.43,3529.44,11.65,261.39,0.0,3256.4,3256.4,0.0,0.0,organic,2016,Albany +26,2016-06-26,1.53,1922.75,0.0,162.87,0.0,1759.88,1759.88,0.0,0.0,organic,2016,Albany +27,2016-06-19,1.45,974.27,10.6,149.57,0.0,814.1,814.1,0.0,0.0,organic,2016,Albany +28,2016-06-12,1.43,887.29,4.66,150.28,0.0,732.35,732.35,0.0,0.0,organic,2016,Albany +29,2016-06-05,1.47,1007.03,2.33,203.69,0.0,801.01,801.01,0.0,0.0,organic,2016,Albany +30,2016-05-29,1.49,1117.44,5.82,218.73,0.0,892.89,892.89,0.0,0.0,organic,2016,Albany +31,2016-05-22,1.55,1193.06,26.72,346.19,0.0,820.15,820.15,0.0,0.0,organic,2016,Albany +32,2016-05-15,1.59,1259.86,17.4,367.82,0.0,874.64,874.64,0.0,0.0,organic,2016,Albany +33,2016-05-08,1.83,2103.64,0.0,536.2,0.0,1567.44,1567.44,0.0,0.0,organic,2016,Albany +34,2016-05-01,1.78,1604.0,5.86,240.42,0.0,1357.72,1357.72,0.0,0.0,organic,2016,Albany +35,2016-04-24,1.77,2328.82,19.94,430.39,0.0,1878.49,1878.49,0.0,0.0,organic,2016,Albany +36,2016-04-17,1.82,2058.73,0.0,374.18,0.0,1684.55,1684.55,0.0,0.0,organic,2016,Albany +37,2016-04-10,1.62,2161.66,7.04,161.85,0.0,1992.77,1992.77,0.0,0.0,organic,2016,Albany +38,2016-04-03,1.56,1903.46,36.34,193.4,0.0,1673.72,1673.72,0.0,0.0,organic,2016,Albany +39,2016-03-27,1.65,1705.39,14.07,98.52,0.0,1592.8,1592.8,0.0,0.0,organic,2016,Albany +40,2016-03-20,1.76,1733.01,14.09,258.37,0.0,1460.55,1460.55,0.0,0.0,organic,2016,Albany +41,2016-03-13,1.79,1822.67,25.87,303.42,0.0,1493.38,1493.38,0.0,0.0,organic,2016,Albany +42,2016-03-06,1.92,1704.24,65.94,401.53,0.0,1236.77,1236.77,0.0,0.0,organic,2016,Albany +43,2016-02-28,1.79,1485.73,9.43,143.74,0.0,1332.56,1327.32,5.24,0.0,organic,2016,Albany +44,2016-02-21,1.79,1282.87,23.61,213.64,0.0,1045.62,1045.62,0.0,0.0,organic,2016,Albany +45,2016-02-14,1.81,1247.8,50.84,263.65,0.0,933.31,933.31,0.0,0.0,organic,2016,Albany +46,2016-02-07,1.81,1252.86,33.15,254.56,0.0,965.15,962.52,2.63,0.0,organic,2016,Albany +47,2016-01-31,1.79,1305.94,34.38,186.13,0.0,1085.43,1085.43,0.0,0.0,organic,2016,Albany +48,2016-01-24,1.83,1506.87,23.39,294.7,0.0,1188.78,1180.98,7.8,0.0,organic,2016,Albany +49,2016-01-17,1.67,1496.73,66.63,430.17,0.0,999.93,992.14,7.79,0.0,organic,2016,Albany +50,2016-01-10,1.83,1676.05,35.03,329.33,0.0,1311.69,1311.69,0.0,0.0,organic,2016,Albany +51,2016-01-03,1.75,1145.5,7.0,187.9,0.0,950.6,950.6,0.0,0.0,organic,2016,Albany +0,2016-12-25,1.76,5456.42,895.62,2981.24,0.0,1579.56,0.0,1579.56,0.0,organic,2016,Atlanta +1,2016-12-18,1.19,9420.9,824.62,2790.3,0.0,5805.98,5.58,5800.4,0.0,organic,2016,Atlanta +2,2016-12-11,1.06,13253.78,916.64,2803.26,0.0,9533.88,78.11,9455.77,0.0,organic,2016,Atlanta +3,2016-12-04,1.22,9990.29,738.64,2945.08,0.0,6306.57,20.0,6286.57,0.0,organic,2016,Atlanta +4,2016-11-27,1.41,7754.46,705.54,2515.5,0.0,4533.42,510.0,4023.42,0.0,organic,2016,Atlanta +5,2016-11-20,1.56,9756.02,917.83,3156.22,0.0,5681.97,1769.48,3912.49,0.0,organic,2016,Atlanta +6,2016-11-13,1.63,11118.24,924.89,3867.3,0.0,6326.05,2042.81,4283.24,0.0,organic,2016,Atlanta +7,2016-11-06,1.64,12410.85,1268.31,5723.98,0.0,5418.56,196.67,5221.89,0.0,organic,2016,Atlanta +8,2016-10-30,2.25,7568.41,1126.99,5373.69,0.0,1067.73,0.0,1067.73,0.0,organic,2016,Atlanta +9,2016-10-23,1.25,16790.96,979.33,5629.25,0.0,10182.38,11.25,10171.13,0.0,organic,2016,Atlanta +10,2016-10-16,1.15,17664.37,1142.04,4640.4,0.0,11881.93,47.88,11834.05,0.0,organic,2016,Atlanta +11,2016-10-09,1.07,19264.55,1672.78,4499.81,0.0,13091.96,65.12,13026.84,0.0,organic,2016,Atlanta +12,2016-10-02,2.29,7057.34,1714.94,4946.21,0.0,396.19,22.67,373.52,0.0,organic,2016,Atlanta +13,2016-09-25,2.02,7914.63,1400.26,4568.2,0.0,1946.17,83.67,1862.5,0.0,organic,2016,Atlanta +14,2016-09-18,1.91,8231.32,1392.93,4819.24,0.0,2019.15,112.67,1906.48,0.0,organic,2016,Atlanta +15,2016-09-11,1.43,13016.7,1355.94,4532.39,0.0,7128.37,1772.47,5355.9,0.0,organic,2016,Atlanta +16,2016-09-04,1.38,15106.95,1585.58,5389.1,0.0,8132.27,2064.77,6067.5,0.0,organic,2016,Atlanta +17,2016-08-28,1.14,18482.13,1480.15,4894.19,0.0,12107.79,1774.14,10333.65,0.0,organic,2016,Atlanta +18,2016-08-21,1.62,12432.9,2212.91,4513.56,0.0,5706.43,2478.87,3227.56,0.0,organic,2016,Atlanta +19,2016-08-14,1.58,13049.21,2514.22,4567.03,0.0,5967.96,1854.73,4113.23,0.0,organic,2016,Atlanta +20,2016-08-07,1.06,24308.08,2265.89,5919.17,0.0,16123.02,1331.81,14791.21,0.0,organic,2016,Atlanta +21,2016-07-31,1.62,14463.16,2799.3,5878.73,0.0,5785.13,1371.57,4413.56,0.0,organic,2016,Atlanta +22,2016-07-24,1.91,11619.75,2682.63,6193.26,0.0,2743.86,1668.45,1075.41,0.0,organic,2016,Atlanta +23,2016-07-17,1.21,16805.05,2094.03,4551.64,0.0,10159.38,1996.32,8163.06,0.0,organic,2016,Atlanta +24,2016-07-10,1.13,17311.07,2275.95,6735.0,0.0,8300.12,1524.08,6776.04,0.0,organic,2016,Atlanta +25,2016-07-03,0.85,20324.1,2065.19,6670.1,0.0,11588.81,1465.71,10123.1,0.0,organic,2016,Atlanta +26,2016-06-26,0.92,16159.03,2096.1,5307.76,0.0,8755.17,1075.61,7679.56,0.0,organic,2016,Atlanta +27,2016-06-19,0.81,16577.89,1602.07,5021.97,0.0,9953.85,588.89,9364.96,0.0,organic,2016,Atlanta +28,2016-06-12,0.97,16462.75,2079.57,5830.96,0.0,8552.22,894.77,7657.45,0.0,organic,2016,Atlanta +29,2016-06-05,1.04,12826.69,1891.62,4901.23,0.0,6033.84,950.42,5083.42,0.0,organic,2016,Atlanta +30,2016-05-29,1.35,8848.72,1866.5,4018.57,0.0,2963.65,883.61,2080.04,0.0,organic,2016,Atlanta +31,2016-05-22,1.27,11405.47,2303.59,3734.43,0.0,5367.45,1262.52,4104.93,0.0,organic,2016,Atlanta +32,2016-05-15,1.29,10861.36,1970.2,3792.08,0.0,5099.08,1442.03,3657.05,0.0,organic,2016,Atlanta +33,2016-05-08,1.42,9663.49,2105.61,3559.51,0.0,3998.37,1348.54,2649.83,0.0,organic,2016,Atlanta +34,2016-05-01,1.25,11049.83,2003.78,4136.67,0.0,4909.38,897.94,4011.44,0.0,organic,2016,Atlanta +35,2016-04-24,1.38,9858.95,2236.6,4002.17,0.0,3620.18,1418.66,2201.52,0.0,organic,2016,Atlanta +36,2016-04-17,1.36,8352.12,2435.07,3185.3,0.0,2731.75,891.93,1839.82,0.0,organic,2016,Atlanta +37,2016-04-10,1.5,7130.98,2789.35,3538.67,0.0,802.96,714.87,88.09,0.0,organic,2016,Atlanta +38,2016-04-03,1.51,9283.54,3529.36,3854.68,0.0,1899.5,993.33,906.17,0.0,organic,2016,Atlanta +39,2016-03-27,1.48,8926.81,2454.14,3700.8,0.0,2771.87,820.0,1951.87,0.0,organic,2016,Atlanta +40,2016-03-20,1.44,7435.68,2263.17,2989.88,0.0,2182.63,613.33,1569.3,0.0,organic,2016,Atlanta +41,2016-03-13,1.52,6967.87,2392.51,3420.52,0.0,1154.84,562.71,592.13,0.0,organic,2016,Atlanta +42,2016-03-06,1.66,6619.18,2601.59,3440.3,0.0,577.29,246.67,330.62,0.0,organic,2016,Atlanta +43,2016-02-28,1.78,5069.92,2039.85,2747.16,0.0,282.91,223.33,59.58,0.0,organic,2016,Atlanta +44,2016-02-21,1.74,5258.5,2034.56,2318.33,0.0,905.61,503.33,402.28,0.0,organic,2016,Atlanta +45,2016-02-14,1.59,5737.5,1825.41,2428.43,0.0,1483.66,346.67,1136.99,0.0,organic,2016,Atlanta +46,2016-02-07,1.72,5420.87,1932.23,2613.21,0.0,875.43,160.0,715.43,0.0,organic,2016,Atlanta +47,2016-01-31,1.71,6591.53,2689.11,2147.89,0.0,1754.53,1163.33,591.2,0.0,organic,2016,Atlanta +48,2016-01-24,1.65,6193.73,2193.2,2432.91,0.0,1567.62,713.33,854.29,0.0,organic,2016,Atlanta +49,2016-01-17,1.84,5227.45,2279.53,2471.83,0.0,476.09,203.33,272.76,0.0,organic,2016,Atlanta +50,2016-01-10,1.66,5614.09,2123.47,2121.26,0.0,1369.36,392.02,977.34,0.0,organic,2016,Atlanta +51,2016-01-03,1.48,7953.26,3970.66,2151.52,0.0,1831.08,1037.38,793.7,0.0,organic,2016,Atlanta +0,2016-12-25,1.83,17061.38,802.28,5202.23,232.29,10824.58,10821.11,3.47,0.0,organic,2016,BaltimoreWashington +1,2016-12-18,1.86,14030.99,968.91,5004.91,302.95,7754.22,7711.79,42.43,0.0,organic,2016,BaltimoreWashington +2,2016-12-11,1.97,16245.8,820.43,6367.66,229.66,8828.05,8822.47,5.58,0.0,organic,2016,BaltimoreWashington +3,2016-12-04,2.15,13989.25,947.03,6090.79,266.84,6684.59,6684.59,0.0,0.0,organic,2016,BaltimoreWashington +4,2016-11-27,2.17,12675.57,676.38,6554.56,239.91,5204.72,5195.78,8.94,0.0,organic,2016,BaltimoreWashington +5,2016-11-20,2.03,13147.71,639.47,6753.59,330.46,5424.19,5399.24,24.95,0.0,organic,2016,BaltimoreWashington +6,2016-11-13,2.2,11635.47,842.0,6128.37,449.44,4215.66,4209.51,6.15,0.0,organic,2016,BaltimoreWashington +7,2016-11-06,2.28,14538.3,815.52,7611.42,461.88,5649.48,5633.82,15.66,0.0,organic,2016,BaltimoreWashington +8,2016-10-30,1.85,17148.36,546.41,12485.25,681.32,3435.38,3424.06,11.32,0.0,organic,2016,BaltimoreWashington +9,2016-10-23,1.81,17434.69,368.26,12887.66,756.29,3422.48,3407.08,15.4,0.0,organic,2016,BaltimoreWashington +10,2016-10-16,1.95,16843.53,824.95,9095.02,680.3,6243.26,6226.14,17.12,0.0,organic,2016,BaltimoreWashington +11,2016-10-09,1.87,18612.87,691.87,10306.33,575.87,7038.8,7004.96,33.84,0.0,organic,2016,BaltimoreWashington +12,2016-10-02,2.15,18289.28,482.96,9803.09,330.74,7672.49,7645.4,27.09,0.0,organic,2016,BaltimoreWashington +13,2016-09-25,2.06,21533.64,538.08,10810.83,285.7,9899.03,9892.36,6.67,0.0,organic,2016,BaltimoreWashington +14,2016-09-18,2.06,22735.52,541.24,7808.25,321.42,14064.61,14046.96,17.65,0.0,organic,2016,BaltimoreWashington +15,2016-09-11,2.14,20395.74,633.05,6730.7,315.82,12716.17,12716.17,0.0,0.0,organic,2016,BaltimoreWashington +16,2016-09-04,2.03,19197.78,705.28,9032.33,432.03,9028.14,9025.34,2.8,0.0,organic,2016,BaltimoreWashington +17,2016-08-28,2.05,14070.94,1227.93,8991.09,300.67,3551.25,3534.48,16.77,0.0,organic,2016,BaltimoreWashington +18,2016-08-21,1.77,20525.55,2700.7,8409.95,466.6,8948.3,8945.51,2.79,0.0,organic,2016,BaltimoreWashington +19,2016-08-14,1.76,16889.91,2206.71,10855.76,367.06,3460.38,3443.56,16.82,0.0,organic,2016,BaltimoreWashington +20,2016-08-07,1.87,18071.5,644.21,10561.49,472.39,6393.41,6379.45,13.96,0.0,organic,2016,BaltimoreWashington +21,2016-07-31,2.02,14788.87,895.68,10096.25,495.8,3301.14,3301.14,0.0,0.0,organic,2016,BaltimoreWashington +22,2016-07-24,2.08,17266.59,739.82,9008.7,541.3,6976.77,6748.11,228.66,0.0,organic,2016,BaltimoreWashington +23,2016-07-17,1.98,21633.42,692.39,9119.83,716.33,11104.87,8595.72,2509.15,0.0,organic,2016,BaltimoreWashington +24,2016-07-10,1.96,17213.93,672.55,9092.46,535.09,6913.83,6320.31,593.52,0.0,organic,2016,BaltimoreWashington +25,2016-07-03,1.99,17234.83,888.9,9004.84,454.36,6886.73,5720.46,1166.27,0.0,organic,2016,BaltimoreWashington +26,2016-06-26,1.89,20251.16,1820.68,9002.32,427.07,9001.09,7795.71,1205.38,0.0,organic,2016,BaltimoreWashington +27,2016-06-19,1.75,16906.19,1023.05,10027.84,405.82,5449.48,4620.99,828.49,0.0,organic,2016,BaltimoreWashington +28,2016-06-12,1.73,18801.3,719.94,10078.62,381.05,7621.69,6648.57,973.12,0.0,organic,2016,BaltimoreWashington +29,2016-06-05,1.75,22921.36,642.66,9973.85,312.59,11992.26,11219.84,772.42,0.0,organic,2016,BaltimoreWashington +30,2016-05-29,1.7,23435.02,754.48,10667.23,322.07,11691.24,9420.82,2270.42,0.0,organic,2016,BaltimoreWashington +31,2016-05-22,1.87,22054.1,623.71,9582.05,278.07,11570.27,11243.91,326.36,0.0,organic,2016,BaltimoreWashington +32,2016-05-15,1.7,16935.54,684.57,8702.37,189.88,7358.72,6434.69,924.03,0.0,organic,2016,BaltimoreWashington +33,2016-05-08,1.52,21296.42,1619.89,11266.77,322.16,8087.6,6751.58,1336.02,0.0,organic,2016,BaltimoreWashington +34,2016-05-01,1.77,24200.98,1081.13,10151.03,331.51,12637.31,12286.92,350.39,0.0,organic,2016,BaltimoreWashington +35,2016-04-24,1.65,27335.53,969.19,12045.95,254.75,14065.64,13051.01,1014.63,0.0,organic,2016,BaltimoreWashington +36,2016-04-17,1.49,22368.16,2672.67,11275.8,293.07,8126.62,7622.14,504.48,0.0,organic,2016,BaltimoreWashington +37,2016-04-10,1.73,22013.07,890.84,9254.97,351.61,11515.65,9771.65,1744.0,0.0,organic,2016,BaltimoreWashington +38,2016-04-03,1.71,22270.5,648.91,9898.79,276.48,11446.32,10792.35,653.97,0.0,organic,2016,BaltimoreWashington +39,2016-03-27,1.65,17017.63,1397.56,7193.83,301.19,8125.05,7020.96,1104.09,0.0,organic,2016,BaltimoreWashington +40,2016-03-20,1.61,16332.76,1677.68,6707.4,390.33,7557.35,6172.74,1384.61,0.0,organic,2016,BaltimoreWashington +41,2016-03-13,1.54,19068.45,851.45,8994.0,281.67,8941.33,5005.66,3935.67,0.0,organic,2016,BaltimoreWashington +42,2016-03-06,1.41,21611.1,658.79,10332.37,340.33,10279.61,2023.14,8256.47,0.0,organic,2016,BaltimoreWashington +43,2016-02-28,1.62,14556.02,503.01,8253.43,308.93,5490.65,1187.22,4303.43,0.0,organic,2016,BaltimoreWashington +44,2016-02-21,1.54,18004.14,602.1,10520.33,284.63,6597.08,1978.27,4618.81,0.0,organic,2016,BaltimoreWashington +45,2016-02-14,1.82,14927.44,625.56,7940.04,269.05,6092.79,3703.26,2389.53,0.0,organic,2016,BaltimoreWashington +46,2016-02-07,1.66,17201.44,643.01,7814.15,346.1,8398.18,2034.08,6364.1,0.0,organic,2016,BaltimoreWashington +47,2016-01-31,1.47,19026.2,680.27,7178.2,385.24,10782.49,788.39,9994.1,0.0,organic,2016,BaltimoreWashington +48,2016-01-24,1.58,18287.57,719.74,5525.36,327.28,11715.19,2472.0,9243.19,0.0,organic,2016,BaltimoreWashington +49,2016-01-17,1.59,14367.76,527.87,7394.43,316.27,6129.19,910.27,5218.92,0.0,organic,2016,BaltimoreWashington +50,2016-01-10,1.37,20518.45,495.49,6973.51,401.96,12647.49,915.73,11731.76,0.0,organic,2016,BaltimoreWashington +51,2016-01-03,1.56,16106.89,581.45,6584.41,507.32,8433.71,1212.32,7221.39,0.0,organic,2016,BaltimoreWashington +0,2016-12-25,0.77,6098.96,3.0,610.89,0.0,5485.07,862.73,4622.34,0.0,organic,2016,Boise +1,2016-12-18,1.14,2610.64,6.0,406.25,0.0,2198.39,552.12,1646.27,0.0,organic,2016,Boise +2,2016-12-11,1.52,1864.49,0.0,461.87,0.0,1402.62,433.41,969.21,0.0,organic,2016,Boise +3,2016-12-04,1.48,2053.35,0.0,442.91,0.0,1610.44,405.18,1205.26,0.0,organic,2016,Boise +4,2016-11-27,1.38,2458.62,0.0,296.35,0.0,2162.27,598.45,1563.82,0.0,organic,2016,Boise +5,2016-11-20,1.46,2310.48,0.0,368.42,0.0,1942.06,490.46,1451.6,0.0,organic,2016,Boise +6,2016-11-13,1.92,1821.9,0.0,653.76,0.0,1168.14,250.0,918.14,0.0,organic,2016,Boise +7,2016-11-06,2.0,1394.87,0.0,726.7,0.0,668.17,40.0,628.17,0.0,organic,2016,Boise +8,2016-10-30,1.87,872.07,0.0,349.89,0.0,522.18,0.0,522.18,0.0,organic,2016,Boise +9,2016-10-23,1.76,1047.82,0.0,396.32,0.0,651.5,216.67,434.83,0.0,organic,2016,Boise +10,2016-10-16,1.33,2839.61,0.0,384.46,0.0,2455.15,442.87,2012.28,0.0,organic,2016,Boise +11,2016-10-09,1.5,1457.64,3.0,380.26,0.0,1074.38,290.97,783.41,0.0,organic,2016,Boise +12,2016-10-02,1.33,2674.51,0.0,409.45,0.0,2265.06,471.53,1793.53,0.0,organic,2016,Boise +13,2016-09-25,1.39,2156.51,3.0,414.32,0.0,1739.19,545.5,1193.69,0.0,organic,2016,Boise +14,2016-09-18,1.76,2138.14,4.0,815.29,0.0,1318.85,705.41,613.44,0.0,organic,2016,Boise +15,2016-09-11,1.29,3537.86,0.0,620.16,0.0,2917.7,1238.62,1679.08,0.0,organic,2016,Boise +16,2016-09-04,1.47,3100.87,0.0,1426.01,0.0,1674.86,419.32,1255.54,0.0,organic,2016,Boise +17,2016-08-28,2.24,1835.58,0.0,1508.21,0.0,327.37,311.22,16.15,0.0,organic,2016,Boise +18,2016-08-21,1.64,2485.38,0.0,1042.7,0.0,1442.68,378.42,1064.26,0.0,organic,2016,Boise +19,2016-08-14,1.87,2142.35,2.53,1243.41,0.0,896.41,335.76,560.65,0.0,organic,2016,Boise +20,2016-08-07,1.26,2649.65,0.0,547.56,0.0,2102.09,1143.84,958.25,0.0,organic,2016,Boise +21,2016-07-31,1.42,2232.59,12.65,718.35,0.0,1501.59,975.17,526.42,0.0,organic,2016,Boise +22,2016-07-24,1.92,1498.06,0.0,991.53,0.0,506.53,489.7,16.83,0.0,organic,2016,Boise +23,2016-07-17,1.54,2947.37,2.52,1238.01,0.0,1706.84,760.92,945.92,0.0,organic,2016,Boise +24,2016-07-10,1.34,4729.39,0.0,1495.25,0.0,3234.14,446.67,2787.47,0.0,organic,2016,Boise +25,2016-07-03,1.2,7238.95,0.0,1729.89,0.0,5509.06,471.67,5037.39,0.0,organic,2016,Boise +26,2016-06-26,1.26,5744.45,0.0,2173.59,0.0,3570.86,678.82,2892.04,0.0,organic,2016,Boise +27,2016-06-19,1.05,8908.04,0.0,4079.79,0.0,4828.25,2003.1,2825.15,0.0,organic,2016,Boise +28,2016-06-12,1.59,1782.87,0.0,1092.93,0.0,689.94,380.0,309.94,0.0,organic,2016,Boise +29,2016-06-05,1.65,1829.78,0.0,1431.5,0.0,398.28,373.33,24.95,0.0,organic,2016,Boise +30,2016-05-29,1.38,2206.16,5.29,1132.48,0.0,1068.39,473.33,595.06,0.0,organic,2016,Boise +31,2016-05-22,1.43,2779.2,0.0,2320.42,0.0,458.78,390.0,68.78,0.0,organic,2016,Boise +32,2016-05-15,1.55,1755.38,2.65,1152.33,0.0,600.4,360.0,240.4,0.0,organic,2016,Boise +33,2016-05-08,1.11,2481.5,0.0,835.48,0.0,1646.02,273.33,1372.69,0.0,organic,2016,Boise +34,2016-05-01,0.92,2440.13,0.0,496.28,0.0,1943.85,176.67,1767.18,0.0,organic,2016,Boise +35,2016-04-24,1.46,2907.11,1.32,2510.67,0.0,395.12,336.67,58.45,0.0,organic,2016,Boise +36,2016-04-17,1.56,1228.73,11.78,670.27,0.0,546.68,306.67,240.01,0.0,organic,2016,Boise +37,2016-04-10,1.0,3469.2,2.6,1463.35,0.0,2003.25,240.0,1763.25,0.0,organic,2016,Boise +38,2016-04-03,1.08,2909.88,15.51,772.7,0.0,2121.67,225.84,1895.83,0.0,organic,2016,Boise +39,2016-03-27,1.41,2565.18,19.24,1333.95,0.0,1211.99,353.33,858.66,0.0,organic,2016,Boise +40,2016-03-20,0.82,6092.98,14.02,1604.25,0.0,4474.71,216.67,4258.04,0.0,organic,2016,Boise +41,2016-03-13,0.95,3340.37,25.38,586.33,0.0,2728.66,96.67,2631.99,0.0,organic,2016,Boise +42,2016-03-06,1.15,1381.84,16.45,490.93,0.0,874.46,0.0,874.46,0.0,organic,2016,Boise +43,2016-02-28,1.84,566.57,45.47,514.08,0.0,7.02,0.0,7.02,0.0,organic,2016,Boise +44,2016-02-21,1.67,562.64,35.36,425.56,0.0,101.72,14.03,87.69,0.0,organic,2016,Boise +45,2016-02-14,0.87,2863.27,42.95,839.99,0.0,1980.33,204.91,1775.42,0.0,organic,2016,Boise +46,2016-02-07,0.84,2073.07,15.15,460.94,0.0,1596.98,720.0,876.98,0.0,organic,2016,Boise +47,2016-01-31,1.24,1660.38,23.98,425.27,0.0,1211.13,223.33,987.8,0.0,organic,2016,Boise +48,2016-01-24,1.77,1117.32,12.64,497.95,0.0,606.73,183.34,423.39,0.0,organic,2016,Boise +49,2016-01-17,1.37,1728.46,16.47,602.97,0.0,1109.02,153.33,955.69,0.0,organic,2016,Boise +50,2016-01-10,1.04,2373.95,36.85,684.99,0.0,1652.11,211.8,1440.31,0.0,organic,2016,Boise +51,2016-01-03,1.28,1200.13,14.03,394.08,0.0,792.02,250.0,542.02,0.0,organic,2016,Boise +0,2016-12-25,1.98,11553.3,11.89,938.02,0.0,10603.39,10593.78,9.61,0.0,organic,2016,Boston +1,2016-12-18,2.0,11811.4,30.82,1065.46,1.24,10713.88,10535.61,178.27,0.0,organic,2016,Boston +2,2016-12-11,1.88,13714.62,22.64,1093.69,0.0,12598.29,12593.46,4.83,0.0,organic,2016,Boston +3,2016-12-04,2.0,13905.77,29.69,945.52,0.0,12930.56,12893.14,37.42,0.0,organic,2016,Boston +4,2016-11-27,1.94,9786.33,29.54,907.66,0.0,8849.13,8776.1,73.03,0.0,organic,2016,Boston +5,2016-11-20,1.8,11287.83,51.47,1005.62,0.0,10230.74,10225.86,4.88,0.0,organic,2016,Boston +6,2016-11-13,1.59,9660.96,22.07,1133.09,0.0,8505.8,8505.8,0.0,0.0,organic,2016,Boston +7,2016-11-06,1.72,9755.42,62.71,1259.58,0.0,8433.13,8433.13,0.0,0.0,organic,2016,Boston +8,2016-10-30,1.49,8408.0,118.09,810.7,0.0,7479.21,7479.21,0.0,0.0,organic,2016,Boston +9,2016-10-23,1.32,8153.98,13.8,337.79,0.0,7802.39,7802.39,0.0,0.0,organic,2016,Boston +10,2016-10-16,1.43,8760.34,7.59,1123.4,0.0,7629.35,7624.43,4.92,0.0,organic,2016,Boston +11,2016-10-09,1.57,10417.82,30.12,706.39,0.0,9681.31,9676.32,4.99,0.0,organic,2016,Boston +12,2016-10-02,1.63,11208.26,11.32,771.37,0.0,10425.57,10425.57,0.0,0.0,organic,2016,Boston +13,2016-09-25,1.72,13904.53,19.88,578.33,0.0,13306.32,13296.3,10.02,0.0,organic,2016,Boston +14,2016-09-18,1.86,18371.82,8.37,704.63,0.0,17658.82,17658.82,0.0,0.0,organic,2016,Boston +15,2016-09-11,1.84,16980.59,39.64,888.2,0.0,16052.75,16052.75,0.0,0.0,organic,2016,Boston +16,2016-09-04,1.73,14518.0,15.53,754.38,0.0,13748.09,13679.87,68.22,0.0,organic,2016,Boston +17,2016-08-28,1.36,8395.34,9.48,678.64,0.0,7707.22,7653.88,53.34,0.0,organic,2016,Boston +18,2016-08-21,1.28,11414.48,32.84,677.47,0.0,10704.17,10694.49,9.68,0.0,organic,2016,Boston +19,2016-08-14,1.23,7117.91,20.93,589.79,0.0,6507.19,6502.36,4.83,0.0,organic,2016,Boston +20,2016-08-07,1.31,9580.49,18.68,535.94,0.0,9025.87,9025.87,0.0,0.0,organic,2016,Boston +21,2016-07-31,1.14,7313.26,16.14,576.55,0.0,6720.57,6710.26,10.31,0.0,organic,2016,Boston +22,2016-07-24,1.49,9837.59,3.7,666.04,0.0,9167.85,8677.91,489.94,0.0,organic,2016,Boston +23,2016-07-17,1.77,14776.98,4.69,624.09,0.0,14148.2,12690.18,1458.02,0.0,organic,2016,Boston +24,2016-07-10,1.59,12513.05,17.34,461.48,0.0,12034.23,11196.41,837.82,0.0,organic,2016,Boston +25,2016-07-03,1.61,14709.87,16.98,444.06,0.0,14248.83,12451.45,1797.38,0.0,organic,2016,Boston +26,2016-06-26,1.6,12442.73,1.22,488.12,0.0,11953.39,10365.56,1587.83,0.0,organic,2016,Boston +27,2016-06-19,1.53,11590.31,1.21,588.73,0.0,11000.37,9667.8,1332.57,0.0,organic,2016,Boston +28,2016-06-12,1.37,10051.16,2.0,571.26,0.0,9477.9,8165.95,1311.95,0.0,organic,2016,Boston +29,2016-06-05,1.49,12722.85,6.81,566.84,0.0,12149.2,10325.26,1823.94,0.0,organic,2016,Boston +30,2016-05-29,1.59,12652.15,8.02,713.52,0.0,11930.61,10705.13,1225.48,0.0,organic,2016,Boston +31,2016-05-22,1.57,18030.82,8.23,593.13,0.0,17429.46,15470.61,1958.85,0.0,organic,2016,Boston +32,2016-05-15,1.58,14776.15,6.02,549.85,0.0,14220.28,12627.58,1592.7,0.0,organic,2016,Boston +33,2016-05-08,1.58,15589.8,1.21,742.35,0.0,14846.24,12213.74,2632.5,0.0,organic,2016,Boston +34,2016-05-01,1.79,18536.65,6.03,1444.35,0.0,17086.27,15476.08,1610.19,0.0,organic,2016,Boston +35,2016-04-24,1.73,18656.87,1.0,689.29,0.0,17966.58,16196.34,1770.24,0.0,organic,2016,Boston +36,2016-04-17,1.59,12779.06,0.0,634.43,0.0,12144.63,10973.33,1171.3,0.0,organic,2016,Boston +37,2016-04-10,1.68,14563.78,2.41,548.12,0.0,14013.25,11818.63,2194.62,0.0,organic,2016,Boston +38,2016-04-03,1.73,12763.11,7.62,549.76,0.0,12205.73,10844.42,1361.31,0.0,organic,2016,Boston +39,2016-03-27,1.59,13143.32,2.41,805.16,0.0,12335.75,11614.15,721.6,0.0,organic,2016,Boston +40,2016-03-20,1.59,11665.94,7.24,760.15,0.0,10898.55,10018.46,880.09,0.0,organic,2016,Boston +41,2016-03-13,1.59,10556.46,3.62,670.92,0.0,9881.92,8439.68,1442.24,0.0,organic,2016,Boston +42,2016-03-06,1.7,10200.05,11.43,1079.31,0.0,9109.31,7203.39,1905.92,0.0,organic,2016,Boston +43,2016-02-28,1.64,11259.09,6.0,1286.52,0.0,9966.57,7968.65,1997.92,0.0,organic,2016,Boston +44,2016-02-21,1.52,9394.21,13.81,451.66,0.0,8928.74,7679.45,1249.29,0.0,organic,2016,Boston +45,2016-02-14,1.59,9526.6,9.6,711.45,0.0,8805.55,8456.29,349.26,0.0,organic,2016,Boston +46,2016-02-07,1.62,9462.0,7.59,1515.63,0.0,7938.78,7179.88,758.9,0.0,organic,2016,Boston +47,2016-01-31,1.52,8221.86,6.99,553.02,0.0,7661.85,7494.27,167.58,0.0,organic,2016,Boston +48,2016-01-24,1.46,8850.23,6.98,616.39,0.0,8226.86,8226.86,0.0,0.0,organic,2016,Boston +49,2016-01-17,1.13,9327.19,14.36,743.11,0.0,8569.72,8569.72,0.0,0.0,organic,2016,Boston +50,2016-01-10,1.32,7751.94,65.96,766.46,1.2,6918.32,6918.32,0.0,0.0,organic,2016,Boston +51,2016-01-03,1.26,7629.12,6.01,1010.59,0.0,6612.52,6612.52,0.0,0.0,organic,2016,Boston +0,2016-12-25,1.51,1098.66,1.22,264.4,0.0,833.04,806.66,26.38,0.0,organic,2016,BuffaloRochester +1,2016-12-18,1.52,1859.14,34.03,240.4,0.0,1584.71,1574.58,10.13,0.0,organic,2016,BuffaloRochester +2,2016-12-11,1.81,3303.41,24.27,516.63,0.0,2762.51,2758.46,4.05,0.0,organic,2016,BuffaloRochester +3,2016-12-04,1.88,3713.49,25.44,1091.53,0.0,2596.52,2521.8,74.72,0.0,organic,2016,BuffaloRochester +4,2016-11-27,1.76,1221.36,9.68,210.08,0.0,1001.6,940.42,61.18,0.0,organic,2016,BuffaloRochester +5,2016-11-20,1.77,3046.51,6.04,156.97,0.0,2883.5,2883.5,0.0,0.0,organic,2016,BuffaloRochester +6,2016-11-13,1.68,1146.07,20.5,247.17,0.0,878.4,878.4,0.0,0.0,organic,2016,BuffaloRochester +7,2016-11-06,1.56,1186.44,12.03,144.41,0.0,1030.0,1030.0,0.0,0.0,organic,2016,BuffaloRochester +8,2016-10-30,1.63,563.06,3.6,126.13,0.0,433.33,433.33,0.0,0.0,organic,2016,BuffaloRochester +9,2016-10-23,1.61,1079.0,20.39,221.94,0.0,836.67,836.67,0.0,0.0,organic,2016,BuffaloRochester +10,2016-10-16,1.57,1163.67,29.94,143.73,0.0,990.0,990.0,0.0,0.0,organic,2016,BuffaloRochester +11,2016-10-09,1.57,1118.55,16.74,245.14,0.0,856.67,856.67,0.0,0.0,organic,2016,BuffaloRochester +12,2016-10-02,1.55,1211.27,10.75,206.58,0.0,993.94,987.96,5.98,0.0,organic,2016,BuffaloRochester +13,2016-09-25,1.6,1855.17,33.41,184.97,0.0,1636.79,1636.79,0.0,0.0,organic,2016,BuffaloRochester +14,2016-09-18,1.52,3999.84,40.56,156.27,0.0,3803.01,3800.36,2.65,0.0,organic,2016,BuffaloRochester +15,2016-09-11,1.51,1699.25,59.65,107.66,0.0,1531.94,1529.29,2.65,0.0,organic,2016,BuffaloRochester +16,2016-09-04,1.53,5688.2,83.54,195.72,0.0,5408.94,5408.94,0.0,0.0,organic,2016,BuffaloRochester +17,2016-08-28,1.54,2908.99,23.87,329.34,0.0,2555.78,2552.45,3.33,0.0,organic,2016,BuffaloRochester +18,2016-08-21,1.51,5118.51,24.13,188.27,0.0,4906.11,4882.16,23.95,0.0,organic,2016,BuffaloRochester +19,2016-08-14,1.55,1693.25,20.33,217.67,0.0,1455.25,1455.25,0.0,0.0,organic,2016,BuffaloRochester +20,2016-08-07,1.52,4350.7,51.48,215.02,0.0,4084.2,4084.2,0.0,0.0,organic,2016,BuffaloRochester +21,2016-07-31,1.55,1764.88,49.86,252.13,0.0,1462.89,1101.23,361.66,0.0,organic,2016,BuffaloRochester +22,2016-07-24,1.62,2705.37,38.4,258.23,0.0,2408.74,1446.03,962.71,0.0,organic,2016,BuffaloRochester +23,2016-07-17,1.76,4222.14,65.33,397.75,0.0,3759.06,1881.52,1877.54,0.0,organic,2016,BuffaloRochester +24,2016-07-10,1.8,5061.84,118.66,169.83,0.0,4773.35,2552.99,2220.36,0.0,organic,2016,BuffaloRochester +25,2016-07-03,2.02,5103.66,25.27,263.51,0.0,4814.88,1055.38,3759.5,0.0,organic,2016,BuffaloRochester +26,2016-06-26,1.78,5882.19,50.53,224.97,0.0,5606.69,3173.89,2432.8,0.0,organic,2016,BuffaloRochester +27,2016-06-19,1.72,7564.6,20.44,228.15,0.0,7316.01,4115.71,3200.3,0.0,organic,2016,BuffaloRochester +28,2016-06-12,1.57,6617.16,8.36,294.25,0.0,6314.55,2595.08,3719.47,0.0,organic,2016,BuffaloRochester +29,2016-06-05,1.54,5859.34,53.71,464.99,0.0,5340.64,2677.92,2662.72,0.0,organic,2016,BuffaloRochester +30,2016-05-29,1.64,7055.5,33.37,1055.87,0.0,5966.26,1972.69,3993.57,0.0,organic,2016,BuffaloRochester +31,2016-05-22,1.55,8382.59,9.51,993.77,0.0,7379.31,4217.21,3162.1,0.0,organic,2016,BuffaloRochester +32,2016-05-15,1.46,7832.2,30.86,239.42,0.0,7561.92,5027.27,2534.65,0.0,organic,2016,BuffaloRochester +33,2016-05-08,1.56,7228.12,3.57,152.48,0.0,7072.07,3333.78,3738.29,0.0,organic,2016,BuffaloRochester +34,2016-05-01,1.58,7208.06,4.75,265.46,0.0,6937.85,3226.34,3711.51,0.0,organic,2016,BuffaloRochester +35,2016-04-24,1.55,6903.38,17.81,203.35,0.0,6682.22,3428.27,3253.95,0.0,organic,2016,BuffaloRochester +36,2016-04-17,1.76,4295.0,0.0,164.9,0.0,4130.1,602.65,3527.45,0.0,organic,2016,BuffaloRochester +37,2016-04-10,1.63,6772.32,0.0,174.71,0.0,6597.61,1835.91,4761.7,0.0,organic,2016,BuffaloRochester +38,2016-04-03,1.48,6217.4,3.55,198.02,0.0,6015.83,3321.77,2694.06,0.0,organic,2016,BuffaloRochester +39,2016-03-27,1.57,5728.61,0.0,214.06,0.0,5514.55,2237.23,3277.32,0.0,organic,2016,BuffaloRochester +40,2016-03-20,1.48,6490.21,13.26,180.62,0.0,6296.33,3454.51,2841.82,0.0,organic,2016,BuffaloRochester +41,2016-03-13,1.63,4489.99,7.1,127.46,0.0,4355.43,1186.87,3168.56,0.0,organic,2016,BuffaloRochester +42,2016-03-06,2.13,3751.88,0.0,182.17,0.0,3569.71,386.67,3183.04,0.0,organic,2016,BuffaloRochester +43,2016-02-28,1.56,6934.94,0.0,223.9,0.0,6711.04,699.31,6011.73,0.0,organic,2016,BuffaloRochester +44,2016-02-21,1.66,5329.12,0.0,279.64,0.0,5049.48,1223.64,3825.84,0.0,organic,2016,BuffaloRochester +45,2016-02-14,1.99,4577.72,0.0,246.79,0.0,4330.93,2769.87,1561.06,0.0,organic,2016,BuffaloRochester +46,2016-02-07,2.11,5017.67,0.0,223.49,0.0,4794.18,854.05,3940.13,0.0,organic,2016,BuffaloRochester +47,2016-01-31,1.81,4647.71,0.0,226.88,0.0,4420.83,2749.9,1670.93,0.0,organic,2016,BuffaloRochester +48,2016-01-24,1.49,2039.63,1.19,129.34,0.0,1909.1,1703.28,205.82,0.0,organic,2016,BuffaloRochester +49,2016-01-17,1.51,3607.37,0.0,154.52,0.0,3452.85,3138.88,313.97,0.0,organic,2016,BuffaloRochester +50,2016-01-10,1.5,4397.57,1.19,182.7,0.0,4213.68,3058.58,1155.1,0.0,organic,2016,BuffaloRochester +51,2016-01-03,1.44,5738.68,2.37,160.11,0.0,5576.2,2335.92,3240.28,0.0,organic,2016,BuffaloRochester +0,2016-12-25,1.53,132890.31,22779.87,56237.83,10.76,53861.85,43478.17,10383.68,0.0,organic,2016,California +1,2016-12-18,1.61,122728.42,18006.04,60993.65,176.75,43551.98,37872.37,5679.61,0.0,organic,2016,California +2,2016-12-11,1.64,128204.63,20010.88,59840.22,49.16,48304.37,37233.95,11070.42,0.0,organic,2016,California +3,2016-12-04,1.89,116895.28,24442.77,50935.56,10.75,41506.2,38051.1,3455.1,0.0,organic,2016,California +4,2016-11-27,2.04,111851.52,21468.08,49401.43,9.22,40972.79,34501.89,6470.9,0.0,organic,2016,California +5,2016-11-20,2.1,107587.14,18289.69,44678.81,12.3,44606.34,39260.51,5345.83,0.0,organic,2016,California +6,2016-11-13,2.13,122099.57,21825.77,51895.85,7.69,48370.26,38872.27,9497.99,0.0,organic,2016,California +7,2016-11-06,2.37,119037.25,22140.03,56357.55,0.0,40539.67,27968.55,12571.12,0.0,organic,2016,California +8,2016-10-30,2.49,96095.1,17620.85,52989.92,1.54,25482.79,17096.29,8386.5,0.0,organic,2016,California +9,2016-10-23,2.58,75897.66,9139.12,53304.49,6.17,13447.88,13409.33,38.55,0.0,organic,2016,California +10,2016-10-16,2.02,95599.25,13352.47,54624.49,7.72,27614.57,27404.48,210.09,0.0,organic,2016,California +11,2016-10-09,1.98,128966.95,15488.42,67537.91,12.36,45928.26,45197.03,731.23,0.0,organic,2016,California +12,2016-10-02,1.91,138994.56,15505.79,70707.24,21.66,52759.87,46874.86,5885.01,0.0,organic,2016,California +13,2016-09-25,1.95,123708.0,12970.52,73572.34,10.84,37154.3,32296.6,4857.7,0.0,organic,2016,California +14,2016-09-18,1.84,139322.81,19979.78,76879.66,3.11,42460.26,36711.51,5748.75,0.0,organic,2016,California +15,2016-09-11,1.55,187617.54,22135.19,97386.14,27.95,68068.26,65803.6,2264.66,0.0,organic,2016,California +16,2016-09-04,1.65,178322.37,19885.38,82532.01,0.0,75904.98,72625.37,3279.61,0.0,organic,2016,California +17,2016-08-28,1.63,175422.72,20282.39,79271.95,9.33,75859.05,74991.99,867.06,0.0,organic,2016,California +18,2016-08-21,1.53,176650.09,28268.87,67090.59,3.11,81287.52,80495.19,792.33,0.0,organic,2016,California +19,2016-08-14,1.47,208956.81,28111.21,84313.38,35.82,96496.4,88974.66,7521.74,0.0,organic,2016,California +20,2016-08-07,1.48,210038.55,22201.7,79011.43,0.0,108825.42,81490.29,27335.13,0.0,organic,2016,California +21,2016-07-31,1.56,188494.23,21895.14,83894.93,12.45,82691.71,78991.53,3700.18,0.0,organic,2016,California +22,2016-07-24,1.56,185039.68,22033.28,82329.89,26.42,80650.09,70510.95,10139.14,0.0,organic,2016,California +23,2016-07-17,1.59,192800.93,21165.43,91337.45,7.76,80290.29,80258.73,31.56,0.0,organic,2016,California +24,2016-07-10,1.51,213417.87,30506.94,89764.31,10.85,93135.77,92965.62,170.15,0.0,organic,2016,California +25,2016-07-03,1.58,209495.6,24660.35,110483.19,21.71,74330.35,72414.48,1915.87,0.0,organic,2016,California +26,2016-06-26,1.51,204392.39,34450.42,103277.2,18.59,66646.18,66565.39,80.79,0.0,organic,2016,California +27,2016-06-19,1.57,196942.94,23134.77,102745.34,35.56,71027.27,70936.33,90.94,0.0,organic,2016,California +28,2016-06-12,1.5,192533.95,24728.3,101839.43,3.07,65963.15,65924.0,39.15,0.0,organic,2016,California +29,2016-06-05,1.55,182778.37,26377.62,88667.93,7.66,67725.16,67138.56,586.6,0.0,organic,2016,California +30,2016-05-29,1.49,203163.62,22713.1,99956.65,0.0,80493.87,79986.78,507.09,0.0,organic,2016,California +31,2016-05-22,1.37,211081.29,22352.56,102703.17,4.59,86020.97,86006.72,14.25,0.0,organic,2016,California +32,2016-05-15,1.5,202641.92,26935.79,102253.41,0.0,73452.72,73429.11,23.61,0.0,organic,2016,California +33,2016-05-08,1.25,256669.13,19169.71,147864.84,0.0,89634.58,89474.61,159.97,0.0,organic,2016,California +34,2016-05-01,1.24,225346.56,16747.64,132440.93,0.0,76157.99,76042.95,115.04,0.0,organic,2016,California +35,2016-04-24,1.39,208434.9,18891.23,100137.58,3.04,89403.05,89320.2,82.85,0.0,organic,2016,California +36,2016-04-17,1.39,187358.5,17320.0,84073.76,6.08,85958.66,85340.06,618.6,0.0,organic,2016,California +37,2016-04-10,1.4,193519.09,16938.01,93768.59,0.0,82812.49,78412.84,4399.65,0.0,organic,2016,California +38,2016-04-03,1.39,206688.54,17840.63,115062.35,0.0,73785.56,63388.93,10396.63,0.0,organic,2016,California +39,2016-03-27,1.42,184634.36,14744.95,92064.48,7.58,77817.35,62300.77,15516.58,0.0,organic,2016,California +40,2016-03-20,1.46,172196.69,15752.0,89041.95,7.6,67395.14,60109.32,7285.82,0.0,organic,2016,California +41,2016-03-13,1.41,199915.92,18235.75,101106.75,0.0,80573.42,67515.24,13058.18,0.0,organic,2016,California +42,2016-03-06,1.32,198961.57,19796.42,86184.7,3.04,92977.41,92547.86,429.55,0.0,organic,2016,California +43,2016-02-28,1.28,214658.47,16583.5,95085.1,4.55,102985.32,102374.94,610.38,0.0,organic,2016,California +44,2016-02-21,1.43,161206.07,14702.41,81578.02,12.13,64913.51,62863.57,2049.94,0.0,organic,2016,California +45,2016-02-14,1.47,158522.76,11345.11,87139.61,97.12,59940.92,48968.58,10972.34,0.0,organic,2016,California +46,2016-02-07,1.38,156586.25,13085.23,84118.36,78.91,59303.75,42734.34,16569.41,0.0,organic,2016,California +47,2016-01-31,1.43,155319.35,17862.54,79184.75,124.41,58147.65,44998.95,13148.7,0.0,organic,2016,California +48,2016-01-24,1.36,154438.32,13658.82,86743.65,0.0,54035.85,17413.71,36622.14,0.0,organic,2016,California +49,2016-01-17,1.45,125541.88,16081.34,66398.85,0.0,43061.69,22825.96,20235.73,0.0,organic,2016,California +50,2016-01-10,1.33,138580.98,17520.67,60382.97,0.0,60677.34,45417.9,15259.44,0.0,organic,2016,California +51,2016-01-03,1.43,122089.29,18211.06,66433.31,0.0,37444.92,30530.14,6914.78,0.0,organic,2016,California +0,2016-12-25,1.62,6780.63,74.49,2520.97,399.49,3785.68,3479.65,306.03,0.0,organic,2016,Charlotte +1,2016-12-18,1.59,7485.47,128.87,2824.38,517.67,4014.55,3515.38,499.17,0.0,organic,2016,Charlotte +2,2016-12-11,1.68,7154.49,132.06,2651.85,459.44,3911.14,3506.84,404.3,0.0,organic,2016,Charlotte +3,2016-12-04,1.99,5851.2,93.04,2472.52,346.29,2939.35,2603.32,336.03,0.0,organic,2016,Charlotte +4,2016-11-27,2.03,6587.92,163.77,2762.34,514.03,3147.78,2766.84,380.94,0.0,organic,2016,Charlotte +5,2016-11-20,1.95,7881.12,102.42,2877.6,555.31,4345.79,3908.22,437.57,0.0,organic,2016,Charlotte +6,2016-11-13,1.94,8516.76,177.79,2996.77,615.32,4726.88,4083.07,643.81,0.0,organic,2016,Charlotte +7,2016-11-06,1.92,9664.27,208.66,3144.06,728.54,5583.01,5234.36,348.65,0.0,organic,2016,Charlotte +8,2016-10-30,1.66,10446.48,160.0,4973.04,1171.38,4142.06,3748.17,393.89,0.0,organic,2016,Charlotte +9,2016-10-23,1.64,9342.71,147.98,4509.02,811.96,3873.75,3400.36,473.39,0.0,organic,2016,Charlotte +10,2016-10-16,1.64,9444.39,162.58,4681.53,778.48,3821.8,3485.9,335.9,0.0,organic,2016,Charlotte +11,2016-10-09,1.64,10308.86,246.32,4951.79,759.62,4351.13,4276.0,75.13,0.0,organic,2016,Charlotte +12,2016-10-02,1.78,8909.48,262.02,3891.17,643.79,4112.5,4065.29,47.21,0.0,organic,2016,Charlotte +13,2016-09-25,1.8,7989.78,281.42,3611.15,676.05,3421.16,3102.27,318.89,0.0,organic,2016,Charlotte +14,2016-09-18,1.74,9074.71,240.75,3850.09,623.35,4360.52,3896.3,464.22,0.0,organic,2016,Charlotte +15,2016-09-11,1.75,9581.48,251.08,4140.55,724.15,4465.7,4326.15,139.55,0.0,organic,2016,Charlotte +16,2016-09-04,1.81,8582.19,205.09,4068.91,881.26,3426.93,3416.93,10.0,0.0,organic,2016,Charlotte +17,2016-08-28,1.78,8617.46,338.94,3830.43,738.3,3709.79,3656.46,53.33,0.0,organic,2016,Charlotte +18,2016-08-21,1.78,9642.8,457.29,3917.27,999.6,4268.64,4245.31,23.33,0.0,organic,2016,Charlotte +19,2016-08-14,1.82,9721.49,409.36,4531.35,1158.28,3622.5,3602.5,20.0,0.0,organic,2016,Charlotte +20,2016-08-07,1.65,10375.29,405.22,5999.14,1492.11,2478.82,2422.15,56.67,0.0,organic,2016,Charlotte +21,2016-07-31,1.64,8048.9,422.26,4190.77,1150.01,2285.86,2242.53,43.33,0.0,organic,2016,Charlotte +22,2016-07-24,1.62,8306.2,388.08,4288.98,1242.32,2386.82,2383.49,3.33,0.0,organic,2016,Charlotte +23,2016-07-17,1.58,7940.49,342.54,3579.56,1379.56,2638.83,2625.5,13.33,0.0,organic,2016,Charlotte +24,2016-07-10,1.81,5664.83,312.85,2726.58,991.27,1634.13,1614.13,20.0,0.0,organic,2016,Charlotte +25,2016-07-03,1.72,5662.13,278.93,2594.43,929.0,1859.77,1856.44,3.33,0.0,organic,2016,Charlotte +26,2016-06-26,1.59,7034.66,420.63,2574.75,834.61,3204.67,3198.0,6.67,0.0,organic,2016,Charlotte +27,2016-06-19,1.72,5073.77,325.22,2602.89,663.16,1482.5,1475.83,6.67,0.0,organic,2016,Charlotte +28,2016-06-12,1.76,4612.16,381.97,2418.0,726.75,1085.44,1082.11,3.33,0.0,organic,2016,Charlotte +29,2016-06-05,1.6,6062.33,343.3,2507.58,694.74,2516.71,2513.38,3.33,0.0,organic,2016,Charlotte +30,2016-05-29,1.66,5676.93,301.54,2647.47,702.09,2025.83,2015.83,10.0,0.0,organic,2016,Charlotte +31,2016-05-22,1.71,5433.16,437.48,2422.71,544.63,2028.34,2021.67,6.67,0.0,organic,2016,Charlotte +32,2016-05-15,1.69,6007.48,320.43,2628.62,554.28,2504.15,2500.82,3.33,0.0,organic,2016,Charlotte +33,2016-05-08,1.79,5581.18,299.93,3030.75,767.24,1483.26,1483.26,0.0,0.0,organic,2016,Charlotte +34,2016-05-01,1.68,5736.02,268.44,2921.35,718.82,1827.41,1827.41,0.0,0.0,organic,2016,Charlotte +35,2016-04-24,1.67,6489.79,369.98,2721.06,639.06,2759.69,2759.69,0.0,0.0,organic,2016,Charlotte +36,2016-04-17,1.77,4460.01,400.23,2383.44,505.61,1170.73,1170.73,0.0,0.0,organic,2016,Charlotte +37,2016-04-10,1.6,5734.3,351.95,2597.02,625.44,2159.89,2159.89,0.0,0.0,organic,2016,Charlotte +38,2016-04-03,1.71,5126.69,318.0,2844.01,658.9,1305.78,1305.78,0.0,0.0,organic,2016,Charlotte +39,2016-03-27,1.69,4551.61,311.44,2333.56,615.04,1291.57,1291.57,0.0,0.0,organic,2016,Charlotte +40,2016-03-20,1.57,4713.35,370.07,2022.52,490.82,1829.94,1829.94,0.0,0.0,organic,2016,Charlotte +41,2016-03-13,1.7,4131.98,280.07,2080.98,625.97,1144.96,1144.96,0.0,0.0,organic,2016,Charlotte +42,2016-03-06,1.79,4003.24,342.43,2122.95,621.19,916.67,896.67,20.0,0.0,organic,2016,Charlotte +43,2016-02-28,1.83,3584.6,290.68,2007.09,559.81,727.02,727.02,0.0,0.0,organic,2016,Charlotte +44,2016-02-21,1.81,3521.87,315.14,1836.82,556.58,813.33,813.33,0.0,0.0,organic,2016,Charlotte +45,2016-02-14,1.75,3610.52,307.68,1674.06,502.11,1126.67,1126.67,0.0,0.0,organic,2016,Charlotte +46,2016-02-07,1.82,3529.44,385.1,1740.65,640.36,763.33,763.33,0.0,0.0,organic,2016,Charlotte +47,2016-01-31,1.75,3829.49,354.19,1734.77,630.53,1110.0,1110.0,0.0,0.0,organic,2016,Charlotte +48,2016-01-24,1.76,3735.44,332.43,1649.8,603.21,1150.0,1150.0,0.0,0.0,organic,2016,Charlotte +49,2016-01-17,1.92,2997.36,469.83,1659.7,587.83,280.0,276.67,3.33,0.0,organic,2016,Charlotte +50,2016-01-10,1.77,4815.55,313.18,2207.99,842.33,1452.05,1425.34,26.71,0.0,organic,2016,Charlotte +51,2016-01-03,1.78,4284.47,749.2,1979.18,705.6,850.49,821.36,29.13,0.0,organic,2016,Charlotte +0,2016-12-25,1.34,33412.35,52.77,30236.66,0.0,3122.92,3122.92,0.0,0.0,organic,2016,Chicago +1,2016-12-18,1.34,40115.97,59.36,37133.28,0.0,2923.33,2923.33,0.0,0.0,organic,2016,Chicago +2,2016-12-11,1.32,54112.89,63.34,50779.13,0.0,3270.42,3270.42,0.0,0.0,organic,2016,Chicago +3,2016-12-04,1.71,35156.8,87.48,31941.41,0.0,3127.91,3127.91,0.0,0.0,organic,2016,Chicago +4,2016-11-27,2.3,20020.98,57.34,16648.36,0.0,3315.28,3315.28,0.0,0.0,organic,2016,Chicago +5,2016-11-20,2.3,24924.61,49.68,22005.49,0.0,2869.44,2869.44,0.0,0.0,organic,2016,Chicago +6,2016-11-13,2.25,28482.64,56.66,25011.26,0.0,3414.72,3414.72,0.0,0.0,organic,2016,Chicago +7,2016-11-06,2.24,28818.87,38.61,24966.93,0.0,3813.33,3813.33,0.0,0.0,organic,2016,Chicago +8,2016-10-30,2.23,32607.37,88.54,29520.64,0.0,2998.19,2998.19,0.0,0.0,organic,2016,Chicago +9,2016-10-23,2.2,28740.94,84.24,25376.14,0.0,3280.56,3276.12,4.44,0.0,organic,2016,Chicago +10,2016-10-16,2.11,30428.53,72.62,26383.82,0.0,3972.09,3972.09,0.0,0.0,organic,2016,Chicago +11,2016-10-09,2.04,26995.26,79.04,23403.99,0.0,3512.23,3512.23,0.0,0.0,organic,2016,Chicago +12,2016-10-02,2.05,27147.49,100.4,24049.87,0.0,2997.22,2997.22,0.0,0.0,organic,2016,Chicago +13,2016-09-25,2.05,26730.61,93.75,24273.38,0.0,2363.48,2363.48,0.0,0.0,organic,2016,Chicago +14,2016-09-18,2.06,21876.53,98.1,19190.24,0.0,2588.19,2588.19,0.0,0.0,organic,2016,Chicago +15,2016-09-11,2.07,30146.46,92.82,27851.41,0.0,2202.23,2202.23,0.0,0.0,organic,2016,Chicago +16,2016-09-04,2.08,29892.84,91.7,27757.81,0.0,2043.33,2043.33,0.0,0.0,organic,2016,Chicago +17,2016-08-28,2.09,27637.06,699.1,25426.29,0.0,1511.67,1511.67,0.0,0.0,organic,2016,Chicago +18,2016-08-21,2.08,31252.62,69.71,29470.17,0.0,1712.74,1712.74,0.0,0.0,organic,2016,Chicago +19,2016-08-14,2.09,27655.2,84.15,26189.38,0.0,1381.67,1381.67,0.0,0.0,organic,2016,Chicago +20,2016-08-07,2.13,26720.39,75.65,25684.18,0.0,960.56,960.56,0.0,0.0,organic,2016,Chicago +21,2016-07-31,2.11,28969.34,80.77,27361.91,0.0,1526.66,1526.66,0.0,0.0,organic,2016,Chicago +22,2016-07-24,1.93,24894.83,107.07,20034.42,0.0,4753.34,4753.34,0.0,0.0,organic,2016,Chicago +23,2016-07-17,1.89,26249.13,60.77,23561.14,0.0,2627.22,2627.22,0.0,0.0,organic,2016,Chicago +24,2016-07-10,2.01,12651.27,40.37,10422.02,0.0,2188.88,2184.44,4.44,0.0,organic,2016,Chicago +25,2016-07-03,1.5,15807.19,85.18,13515.35,0.0,2206.66,2206.66,0.0,0.0,organic,2016,Chicago +26,2016-06-26,1.8,27771.37,60.12,25630.13,0.0,2081.12,2081.12,0.0,0.0,organic,2016,Chicago +27,2016-06-19,1.53,37650.61,122.15,35503.46,0.0,2025.0,2025.0,0.0,0.0,organic,2016,Chicago +28,2016-06-12,1.53,40535.05,162.25,38677.24,0.0,1695.56,1695.56,0.0,0.0,organic,2016,Chicago +29,2016-06-05,1.24,42580.14,105.86,41327.69,0.0,1146.59,1146.59,0.0,0.0,organic,2016,Chicago +30,2016-05-29,1.08,65325.69,186.15,64298.18,0.0,841.36,841.36,0.0,0.0,organic,2016,Chicago +31,2016-05-22,1.33,45768.24,77.57,44459.63,0.0,1231.04,1231.04,0.0,0.0,organic,2016,Chicago +32,2016-05-15,1.61,32454.82,37.45,30432.28,0.0,1985.09,1985.09,0.0,0.0,organic,2016,Chicago +33,2016-05-08,1.62,34200.94,83.69,33146.9,0.0,970.35,970.35,0.0,0.0,organic,2016,Chicago +34,2016-05-01,1.61,31458.63,102.92,30785.77,0.0,569.94,569.94,0.0,0.0,organic,2016,Chicago +35,2016-04-24,1.63,35192.95,66.02,34696.93,0.0,430.0,430.0,0.0,0.0,organic,2016,Chicago +36,2016-04-17,1.55,25405.66,97.85,24629.54,0.0,678.27,678.27,0.0,0.0,organic,2016,Chicago +37,2016-04-10,1.68,35474.03,70.12,35212.51,0.0,191.4,191.4,0.0,0.0,organic,2016,Chicago +38,2016-04-03,1.66,35602.29,95.32,35272.75,0.0,234.22,234.22,0.0,0.0,organic,2016,Chicago +39,2016-03-27,1.5,35086.33,171.4,34565.26,0.0,349.67,349.67,0.0,0.0,organic,2016,Chicago +40,2016-03-20,1.5,32456.45,152.43,31926.73,0.0,377.29,377.29,0.0,0.0,organic,2016,Chicago +41,2016-03-13,1.5,29584.31,110.77,28997.72,0.0,475.82,475.82,0.0,0.0,organic,2016,Chicago +42,2016-03-06,1.49,36774.58,736.06,35610.75,0.0,427.77,427.77,0.0,0.0,organic,2016,Chicago +43,2016-02-28,1.6,34164.85,918.49,32243.52,0.0,1002.84,1002.84,0.0,0.0,organic,2016,Chicago +44,2016-02-21,1.55,32492.15,945.63,28552.71,0.0,2993.81,2993.81,0.0,0.0,organic,2016,Chicago +45,2016-02-14,1.58,28656.64,751.06,25968.76,0.0,1936.82,1936.82,0.0,0.0,organic,2016,Chicago +46,2016-02-07,1.6,31000.01,872.31,29897.7,0.0,230.0,230.0,0.0,0.0,organic,2016,Chicago +47,2016-01-31,1.61,28813.36,814.1,27719.26,0.0,280.0,280.0,0.0,0.0,organic,2016,Chicago +48,2016-01-24,1.62,25004.87,976.46,23728.41,0.0,300.0,300.0,0.0,0.0,organic,2016,Chicago +49,2016-01-17,1.52,25573.57,777.31,24636.26,0.0,160.0,160.0,0.0,0.0,organic,2016,Chicago +50,2016-01-10,1.62,35835.37,1437.58,34064.46,0.0,333.33,333.33,0.0,0.0,organic,2016,Chicago +51,2016-01-03,1.62,24460.46,931.2,23415.93,0.0,113.33,113.33,0.0,0.0,organic,2016,Chicago +0,2016-12-25,1.73,6592.44,235.03,5062.95,0.0,1294.46,504.22,790.24,0.0,organic,2016,CincinnatiDayton +1,2016-12-18,0.82,17920.51,216.36,4930.87,0.0,12773.28,346.06,12427.22,0.0,organic,2016,CincinnatiDayton +2,2016-12-11,0.64,27489.35,268.89,4743.81,0.0,22476.65,698.22,21778.43,0.0,organic,2016,CincinnatiDayton +3,2016-12-04,1.07,15658.75,269.53,5925.9,0.0,9463.32,201.57,9261.75,0.0,organic,2016,CincinnatiDayton +4,2016-11-27,0.79,17342.81,198.25,4476.76,0.0,12667.8,506.67,12161.13,0.0,organic,2016,CincinnatiDayton +5,2016-11-20,0.96,15570.07,333.63,5458.44,0.0,9778.0,306.09,9471.91,0.0,organic,2016,CincinnatiDayton +6,2016-11-13,1.52,9515.89,366.46,6058.31,0.0,3091.12,252.19,2838.93,0.0,organic,2016,CincinnatiDayton +7,2016-11-06,0.9,27345.45,390.75,8582.72,0.0,18371.98,673.33,17698.65,0.0,organic,2016,CincinnatiDayton +8,2016-10-30,1.52,15523.6,453.79,10104.3,0.0,4965.51,262.77,4702.74,0.0,organic,2016,CincinnatiDayton +9,2016-10-23,1.2,17064.45,488.59,7531.36,0.0,9044.5,629.95,8414.55,0.0,organic,2016,CincinnatiDayton +10,2016-10-16,1.23,16206.87,660.88,6583.77,0.0,8962.22,1830.5,7131.72,0.0,organic,2016,CincinnatiDayton +11,2016-10-09,1.51,15218.52,562.56,9696.37,0.0,4959.59,625.18,4334.41,0.0,organic,2016,CincinnatiDayton +12,2016-10-02,1.44,14975.64,458.81,8070.51,0.0,6446.32,507.31,5939.01,0.0,organic,2016,CincinnatiDayton +13,2016-09-25,1.35,16032.03,468.89,7138.63,0.0,8424.51,781.74,7642.77,0.0,organic,2016,CincinnatiDayton +14,2016-09-18,1.32,15776.76,577.58,8538.43,0.0,6660.75,736.94,5923.81,0.0,organic,2016,CincinnatiDayton +15,2016-09-11,1.13,21710.38,531.09,9471.98,0.0,11707.31,875.67,10831.64,0.0,organic,2016,CincinnatiDayton +16,2016-09-04,1.34,22075.04,535.98,10564.37,0.0,10974.69,764.46,10210.23,0.0,organic,2016,CincinnatiDayton +17,2016-08-28,0.77,34718.84,637.29,7566.11,0.0,26515.44,569.01,25946.43,0.0,organic,2016,CincinnatiDayton +18,2016-08-21,1.13,18700.24,453.45,7152.55,0.0,11094.24,1046.7,10047.54,0.0,organic,2016,CincinnatiDayton +19,2016-08-14,1.3,17063.96,581.36,8369.54,0.0,8113.06,603.49,7509.57,0.0,organic,2016,CincinnatiDayton +20,2016-08-07,1.09,22772.04,470.0,7721.78,0.0,14580.26,666.17,13914.09,0.0,organic,2016,CincinnatiDayton +21,2016-07-31,1.51,12919.17,554.23,8694.68,0.0,3670.26,1047.48,2622.78,0.0,organic,2016,CincinnatiDayton +22,2016-07-24,1.65,14589.37,538.94,10669.81,0.0,3380.62,827.26,2553.36,0.0,organic,2016,CincinnatiDayton +23,2016-07-17,1.04,22576.93,541.3,8960.19,0.0,13075.44,725.06,12350.38,0.0,organic,2016,CincinnatiDayton +24,2016-07-10,0.98,24427.23,481.08,11267.87,0.0,12678.28,862.31,11815.97,0.0,organic,2016,CincinnatiDayton +25,2016-07-03,1.05,19128.61,482.4,10370.88,0.0,8275.33,746.79,7528.54,0.0,organic,2016,CincinnatiDayton +26,2016-06-26,1.02,19243.4,482.14,9041.74,0.0,9719.52,767.81,8951.71,0.0,organic,2016,CincinnatiDayton +27,2016-06-19,1.04,21910.54,699.16,10546.16,0.0,10665.22,710.57,9954.65,0.0,organic,2016,CincinnatiDayton +28,2016-06-12,1.09,21266.49,545.86,10293.17,0.0,10427.46,691.21,9736.25,0.0,organic,2016,CincinnatiDayton +29,2016-06-05,1.2,16321.6,374.82,8709.85,0.0,7236.93,759.52,6477.41,0.0,organic,2016,CincinnatiDayton +30,2016-05-29,1.24,14695.59,459.73,8442.84,0.0,5793.02,923.63,4869.39,0.0,organic,2016,CincinnatiDayton +31,2016-05-22,1.39,14720.61,408.42,9071.13,0.0,5241.06,1062.17,4178.89,0.0,organic,2016,CincinnatiDayton +32,2016-05-15,1.4,15206.47,359.02,8892.58,0.0,5954.87,1681.91,4272.96,0.0,organic,2016,CincinnatiDayton +33,2016-05-08,1.43,14624.46,383.03,8838.78,0.0,5402.65,2905.39,2497.26,0.0,organic,2016,CincinnatiDayton +34,2016-05-01,1.13,20458.94,308.69,9102.19,0.0,11048.06,1403.0,9645.06,0.0,organic,2016,CincinnatiDayton +35,2016-04-24,1.44,15395.22,460.03,9677.47,0.0,5257.72,2457.02,2800.7,0.0,organic,2016,CincinnatiDayton +36,2016-04-17,1.4,15920.25,417.29,9447.47,0.0,6055.49,1598.28,4457.21,0.0,organic,2016,CincinnatiDayton +37,2016-04-10,1.12,16776.27,394.05,9103.31,0.0,7278.91,5473.56,1805.35,0.0,organic,2016,CincinnatiDayton +38,2016-04-03,1.3,12140.52,348.81,8344.35,0.0,3447.36,580.0,2867.36,0.0,organic,2016,CincinnatiDayton +39,2016-03-27,1.17,17750.82,347.47,9168.31,0.0,8235.04,533.33,7701.71,0.0,organic,2016,CincinnatiDayton +40,2016-03-20,1.21,16466.35,319.09,8546.86,0.0,7600.4,496.67,7103.73,0.0,organic,2016,CincinnatiDayton +41,2016-03-13,1.25,13252.99,308.89,8663.98,0.0,4280.12,540.0,3740.12,0.0,organic,2016,CincinnatiDayton +42,2016-03-06,1.34,12627.11,487.73,9078.49,0.0,3060.89,136.67,2924.22,0.0,organic,2016,CincinnatiDayton +43,2016-02-28,1.47,9125.44,414.52,8307.16,0.0,403.76,280.0,123.76,0.0,organic,2016,CincinnatiDayton +44,2016-02-21,1.33,10563.94,529.0,7783.07,0.0,2251.87,348.67,1903.2,0.0,organic,2016,CincinnatiDayton +45,2016-02-14,1.01,17338.51,545.84,9088.79,0.0,7703.88,294.41,7409.47,0.0,organic,2016,CincinnatiDayton +46,2016-02-07,1.11,14072.95,443.33,8905.29,0.0,4724.33,203.33,4521.0,0.0,organic,2016,CincinnatiDayton +47,2016-01-31,1.3,11109.1,335.93,6835.59,0.0,3937.58,166.67,3770.91,0.0,organic,2016,CincinnatiDayton +48,2016-01-24,1.42,11874.46,411.54,7551.79,0.0,3911.13,186.67,3724.46,0.0,organic,2016,CincinnatiDayton +49,2016-01-17,1.4,9955.8,573.01,7597.31,0.0,1785.48,400.0,1385.48,0.0,organic,2016,CincinnatiDayton +50,2016-01-10,1.31,13480.88,689.26,8880.64,0.0,3910.98,624.9,3286.08,0.0,organic,2016,CincinnatiDayton +51,2016-01-03,1.34,10552.84,309.8,7637.9,0.0,2605.14,363.09,2242.05,0.0,organic,2016,CincinnatiDayton +0,2016-12-25,1.75,4561.12,543.08,2287.13,0.0,1730.91,1588.03,142.88,0.0,organic,2016,Columbus +1,2016-12-18,1.64,4249.07,504.97,1858.48,0.0,1885.62,1254.08,631.54,0.0,organic,2016,Columbus +2,2016-12-11,1.02,8682.81,448.83,1413.59,0.0,6820.39,2531.27,4289.12,0.0,organic,2016,Columbus +3,2016-12-04,1.36,5338.71,485.75,1639.28,0.0,3213.68,3074.56,139.12,0.0,organic,2016,Columbus +4,2016-11-27,1.47,5503.68,494.4,1889.17,0.0,3120.11,2049.89,1070.22,0.0,organic,2016,Columbus +5,2016-11-20,1.31,7255.4,661.45,2218.41,0.0,4375.54,1467.18,2908.36,0.0,organic,2016,Columbus +6,2016-11-13,1.18,10485.95,778.65,2727.06,0.0,6980.24,1486.86,5493.38,0.0,organic,2016,Columbus +7,2016-11-06,0.89,16601.25,537.42,2897.13,0.0,13166.7,2262.47,10904.23,0.0,organic,2016,Columbus +8,2016-10-30,1.8,5890.85,712.43,2810.91,0.0,2367.51,1769.32,598.19,0.0,organic,2016,Columbus +9,2016-10-23,1.18,10574.95,673.64,3073.84,0.0,6827.47,1765.71,5061.76,0.0,organic,2016,Columbus +10,2016-10-16,1.01,16161.36,725.0,3749.33,0.0,11687.03,2823.14,8863.89,0.0,organic,2016,Columbus +11,2016-10-09,1.03,15870.0,685.82,4176.3,1.16,11006.72,2686.83,8319.89,0.0,organic,2016,Columbus +12,2016-10-02,1.77,8280.66,570.03,4396.02,0.0,3314.61,3048.2,266.41,0.0,organic,2016,Columbus +13,2016-09-25,1.3,12976.63,789.01,3352.16,0.0,8835.46,2538.99,6296.47,0.0,organic,2016,Columbus +14,2016-09-18,1.58,5525.95,769.61,2564.21,0.0,2192.13,1028.19,1163.94,0.0,organic,2016,Columbus +15,2016-09-11,1.12,9434.47,815.47,3267.61,0.0,5351.39,877.41,4473.98,0.0,organic,2016,Columbus +16,2016-09-04,1.17,11869.66,962.25,4496.2,0.0,6411.21,712.73,5698.48,0.0,organic,2016,Columbus +17,2016-08-28,1.32,10186.67,868.26,4898.92,0.0,4419.49,352.31,4067.18,0.0,organic,2016,Columbus +18,2016-08-21,1.67,7223.46,629.11,4017.95,0.0,2576.4,1129.77,1446.63,0.0,organic,2016,Columbus +19,2016-08-14,1.54,7697.63,652.47,3940.51,0.0,3104.65,602.27,2502.38,0.0,organic,2016,Columbus +20,2016-08-07,1.47,8981.41,667.31,4129.75,0.0,4184.35,501.81,3682.54,0.0,organic,2016,Columbus +21,2016-07-31,1.4,9346.26,558.77,3796.68,0.0,4990.81,1087.86,3902.95,0.0,organic,2016,Columbus +22,2016-07-24,1.58,8142.15,642.5,4610.11,0.0,2889.54,554.41,2335.13,0.0,organic,2016,Columbus +23,2016-07-17,1.2,11566.22,713.11,4467.58,0.0,6385.53,730.17,5655.36,0.0,organic,2016,Columbus +24,2016-07-10,1.0,11572.14,570.66,4290.35,0.0,6711.13,551.3,6159.83,0.0,organic,2016,Columbus +25,2016-07-03,1.02,7549.2,583.93,3321.68,0.0,3643.59,559.59,3084.0,0.0,organic,2016,Columbus +26,2016-06-26,1.1,8491.02,492.49,3910.86,0.0,4087.67,698.81,3388.86,0.0,organic,2016,Columbus +27,2016-06-19,0.99,13064.09,632.15,5496.38,36.98,6898.58,750.6,6147.98,0.0,organic,2016,Columbus +28,2016-06-12,1.3,10239.17,574.02,5539.61,40.44,4085.1,682.57,3402.53,0.0,organic,2016,Columbus +29,2016-06-05,1.43,9417.49,527.69,4916.99,50.28,3922.53,698.77,3223.76,0.0,organic,2016,Columbus +30,2016-05-29,1.39,7507.51,371.44,4348.79,54.16,2733.12,590.47,2142.65,0.0,organic,2016,Columbus +31,2016-05-22,1.31,6711.12,389.47,3323.72,18.38,2979.55,1037.65,1941.9,0.0,organic,2016,Columbus +32,2016-05-15,1.22,7017.73,346.52,3729.33,5.72,2936.16,754.84,2181.32,0.0,organic,2016,Columbus +33,2016-05-08,1.14,8467.42,372.26,4350.95,3.42,3740.79,994.3,2746.49,0.0,organic,2016,Columbus +34,2016-05-01,1.29,5872.4,358.98,3028.11,9.06,2476.25,940.31,1535.94,0.0,organic,2016,Columbus +35,2016-04-24,0.99,11874.13,1135.01,4546.77,19.1,6173.25,1169.53,5003.72,0.0,organic,2016,Columbus +36,2016-04-17,1.17,9508.72,377.86,5491.76,2.23,3636.87,689.32,2947.55,0.0,organic,2016,Columbus +37,2016-04-10,1.52,6323.62,360.23,4906.26,0.0,1057.13,550.0,507.13,0.0,organic,2016,Columbus +38,2016-04-03,1.69,5382.24,317.7,3569.14,0.0,1495.4,566.67,928.73,0.0,organic,2016,Columbus +39,2016-03-27,1.54,6663.94,272.71,4060.29,16.3,2314.64,437.39,1877.25,0.0,organic,2016,Columbus +40,2016-03-20,1.23,7457.89,315.11,3453.23,4.32,3685.23,408.25,3276.98,0.0,organic,2016,Columbus +41,2016-03-13,1.37,7157.22,376.52,3722.09,4.3,3054.31,619.05,2435.26,0.0,organic,2016,Columbus +42,2016-03-06,1.42,4854.17,387.7,3606.38,0.0,860.09,51.03,809.06,0.0,organic,2016,Columbus +43,2016-02-28,1.43,5181.52,451.27,4249.41,0.0,480.84,239.55,241.29,0.0,organic,2016,Columbus +44,2016-02-21,1.39,4382.0,590.44,2960.78,0.0,830.78,249.56,581.22,0.0,organic,2016,Columbus +45,2016-02-14,1.25,4607.55,499.91,2710.71,0.0,1396.93,210.0,1186.93,0.0,organic,2016,Columbus +46,2016-02-07,1.31,3999.51,499.69,2482.27,2.16,1015.39,161.58,853.81,0.0,organic,2016,Columbus +47,2016-01-31,1.28,4289.51,392.6,2600.03,0.0,1296.88,154.14,1142.74,0.0,organic,2016,Columbus +48,2016-01-24,0.96,6522.27,421.55,2812.84,1.09,3286.79,328.21,2958.58,0.0,organic,2016,Columbus +49,2016-01-17,1.44,5244.61,796.09,3813.38,0.0,635.14,223.04,412.1,0.0,organic,2016,Columbus +50,2016-01-10,1.37,5663.07,969.19,3558.82,0.0,1135.06,456.52,678.54,0.0,organic,2016,Columbus +51,2016-01-03,1.51,4034.88,452.44,2937.02,2.2,643.22,229.79,413.43,0.0,organic,2016,Columbus +0,2016-12-25,1.12,20099.08,4747.3,428.15,0.0,14923.63,14829.22,94.41,0.0,organic,2016,DallasFtWorth +1,2016-12-18,1.11,21071.85,5025.9,286.6,0.0,15759.35,15746.18,13.17,0.0,organic,2016,DallasFtWorth +2,2016-12-11,1.14,20619.42,4812.83,204.45,0.0,15602.14,15556.54,45.6,0.0,organic,2016,DallasFtWorth +3,2016-12-04,1.25,21047.85,6160.17,124.16,0.0,14763.52,14743.93,19.59,0.0,organic,2016,DallasFtWorth +4,2016-11-27,1.34,21312.8,5730.92,120.37,0.0,15461.51,15328.42,133.09,0.0,organic,2016,DallasFtWorth +5,2016-11-20,1.37,19634.24,5461.76,130.12,0.0,14042.36,13745.95,296.41,0.0,organic,2016,DallasFtWorth +6,2016-11-13,1.32,25020.67,7052.28,162.3,0.0,17806.09,17526.69,279.4,0.0,organic,2016,DallasFtWorth +7,2016-11-06,1.36,25468.3,7183.02,95.81,0.0,18189.47,17866.27,323.2,0.0,organic,2016,DallasFtWorth +8,2016-10-30,1.34,17098.36,4885.83,120.53,0.0,12092.0,11802.8,289.2,0.0,organic,2016,DallasFtWorth +9,2016-10-23,1.37,20091.09,10832.47,128.56,0.0,9130.06,8549.22,580.84,0.0,organic,2016,DallasFtWorth +10,2016-10-16,1.27,20504.41,11563.74,89.18,0.0,8851.49,2710.0,6141.49,0.0,organic,2016,DallasFtWorth +11,2016-10-09,1.25,28837.82,13182.39,267.34,0.0,15388.09,6930.0,8458.09,0.0,organic,2016,DallasFtWorth +12,2016-10-02,1.42,20696.52,14245.66,441.23,0.0,6009.63,5673.89,335.74,0.0,organic,2016,DallasFtWorth +13,2016-09-25,1.35,19980.31,11604.51,1486.92,0.0,6888.88,4964.64,1924.24,0.0,organic,2016,DallasFtWorth +14,2016-09-18,1.31,18329.37,7605.58,1010.05,0.0,9713.74,7228.44,2485.3,0.0,organic,2016,DallasFtWorth +15,2016-09-11,1.16,26658.47,10022.44,247.44,0.0,16388.59,16072.8,315.79,0.0,organic,2016,DallasFtWorth +16,2016-09-04,1.05,30716.5,9117.89,327.08,0.0,21271.53,21031.82,239.71,0.0,organic,2016,DallasFtWorth +17,2016-08-28,1.02,34300.17,9948.68,259.53,0.0,24091.96,23775.82,316.14,0.0,organic,2016,DallasFtWorth +18,2016-08-21,0.86,74326.53,21679.49,269.44,0.0,52377.6,51921.72,455.88,0.0,organic,2016,DallasFtWorth +19,2016-08-14,0.86,90500.74,25938.55,334.11,0.0,64228.08,62542.16,1685.92,0.0,organic,2016,DallasFtWorth +20,2016-08-07,1.12,32688.03,11017.8,424.96,0.0,21245.27,8515.91,12729.36,0.0,organic,2016,DallasFtWorth +21,2016-07-31,1.03,38209.32,11152.52,584.88,0.0,26471.92,20744.05,5727.87,0.0,organic,2016,DallasFtWorth +22,2016-07-24,0.99,35564.65,10629.22,455.42,0.0,24480.01,19642.12,4837.89,0.0,organic,2016,DallasFtWorth +23,2016-07-17,1.05,27581.91,7602.87,388.98,0.0,19590.06,12860.35,6729.71,0.0,organic,2016,DallasFtWorth +24,2016-07-10,1.04,17788.81,6584.16,491.32,0.0,10713.33,10175.25,538.08,0.0,organic,2016,DallasFtWorth +25,2016-07-03,0.99,32844.7,12757.01,1067.37,0.0,19020.32,18951.12,69.2,0.0,organic,2016,DallasFtWorth +26,2016-06-26,1.04,30776.67,11200.61,580.49,0.0,18995.57,18776.65,218.92,0.0,organic,2016,DallasFtWorth +27,2016-06-19,1.05,28277.44,10059.74,668.96,0.0,17548.74,17132.19,416.55,0.0,organic,2016,DallasFtWorth +28,2016-06-12,1.08,31272.25,11728.55,671.78,0.0,18871.92,18194.67,677.25,0.0,organic,2016,DallasFtWorth +29,2016-06-05,1.05,26357.74,9412.3,640.22,0.0,16305.22,13879.09,2426.13,0.0,organic,2016,DallasFtWorth +30,2016-05-29,1.0,27580.57,10016.93,341.12,0.0,17222.52,12248.06,4974.46,0.0,organic,2016,DallasFtWorth +31,2016-05-22,1.0,24210.7,8434.31,437.88,0.0,15338.51,11584.99,3753.52,0.0,organic,2016,DallasFtWorth +32,2016-05-15,1.06,26845.53,8541.46,830.92,0.0,17473.15,13365.82,4107.33,0.0,organic,2016,DallasFtWorth +33,2016-05-08,1.04,26837.25,8147.01,601.13,0.0,18089.11,12168.76,5920.35,0.0,organic,2016,DallasFtWorth +34,2016-05-01,1.09,21668.3,7176.13,965.49,0.0,13526.68,11158.19,2368.49,0.0,organic,2016,DallasFtWorth +35,2016-04-24,1.0,23975.47,7481.26,2070.02,0.0,14424.19,9987.35,4436.84,0.0,organic,2016,DallasFtWorth +36,2016-04-17,1.11,25616.88,9048.9,722.41,0.0,15845.57,14278.12,1567.45,0.0,organic,2016,DallasFtWorth +37,2016-04-10,1.16,20070.8,8391.02,644.18,0.0,11035.6,8238.37,2797.23,0.0,organic,2016,DallasFtWorth +38,2016-04-03,1.18,18943.3,7643.67,788.28,0.0,10511.35,8902.82,1608.53,0.0,organic,2016,DallasFtWorth +39,2016-03-27,1.25,17408.68,8355.74,658.68,0.0,8394.26,7234.13,1160.13,0.0,organic,2016,DallasFtWorth +40,2016-03-20,1.16,16850.64,7780.48,1096.46,0.0,7973.7,6471.0,1502.7,0.0,organic,2016,DallasFtWorth +41,2016-03-13,1.2,18432.74,8425.39,786.3,0.0,9221.05,7918.85,1302.2,0.0,organic,2016,DallasFtWorth +42,2016-03-06,1.15,19464.82,7164.37,560.17,0.0,11740.28,9961.79,1778.49,0.0,organic,2016,DallasFtWorth +43,2016-02-28,1.19,17889.69,7338.02,695.76,0.0,9855.91,8702.31,1153.6,0.0,organic,2016,DallasFtWorth +44,2016-02-21,1.18,17232.43,7305.62,614.56,0.0,9312.25,6311.81,3000.44,0.0,organic,2016,DallasFtWorth +45,2016-02-14,1.27,15673.4,6386.7,573.59,0.0,8713.11,7072.31,1640.8,0.0,organic,2016,DallasFtWorth +46,2016-02-07,1.27,14931.85,7123.02,778.11,0.0,7030.72,6954.58,76.14,0.0,organic,2016,DallasFtWorth +47,2016-01-31,1.36,15116.17,7396.68,626.91,1.42,7091.16,7084.49,6.67,0.0,organic,2016,DallasFtWorth +48,2016-01-24,1.35,14155.9,6168.4,453.26,0.0,7534.24,7534.24,0.0,0.0,organic,2016,DallasFtWorth +49,2016-01-17,1.25,14648.09,7988.39,617.54,0.0,6042.16,6016.61,25.55,0.0,organic,2016,DallasFtWorth +50,2016-01-10,1.34,11624.41,5332.87,389.96,0.0,5901.58,5843.94,57.64,0.0,organic,2016,DallasFtWorth +51,2016-01-03,1.26,10777.27,4802.52,397.26,0.0,5577.49,5384.85,192.64,0.0,organic,2016,DallasFtWorth +0,2016-12-25,0.93,23425.81,5412.78,884.75,75.54,17052.74,14897.14,2155.6,0.0,organic,2016,Denver +1,2016-12-18,1.47,14088.99,9935.96,1781.5,100.88,2270.65,675.88,1594.77,0.0,organic,2016,Denver +2,2016-12-11,0.98,34903.11,14092.31,1601.73,16.07,19193.0,379.52,18813.48,0.0,organic,2016,Denver +3,2016-12-04,0.85,45324.18,12165.52,1971.17,23.0,31164.49,713.02,30451.47,0.0,organic,2016,Denver +4,2016-11-27,1.34,23367.39,11121.68,1566.03,21.88,10657.8,4045.59,6612.21,0.0,organic,2016,Denver +5,2016-11-20,1.72,18310.37,14123.33,1492.69,5.76,2688.59,320.0,2368.59,0.0,organic,2016,Denver +6,2016-11-13,1.29,24113.8,8091.95,1338.55,12.7,14670.6,1493.33,13177.27,0.0,organic,2016,Denver +7,2016-11-06,1.74,13748.96,11564.81,1279.38,24.27,880.5,2.57,877.93,0.0,organic,2016,Denver +8,2016-10-30,1.81,23733.43,21484.74,2146.97,15.05,86.67,0.0,86.67,0.0,organic,2016,Denver +9,2016-10-23,1.71,19881.26,15715.08,1952.5,35.94,2177.74,0.0,2177.74,0.0,organic,2016,Denver +10,2016-10-16,1.19,20054.84,6147.83,1283.04,13.93,12610.04,572.82,12037.22,0.0,organic,2016,Denver +11,2016-10-09,1.49,19651.23,11578.91,2259.1,12.78,5800.44,4160.72,1639.72,0.0,organic,2016,Denver +12,2016-10-02,1.79,13087.01,11038.28,1697.21,15.1,336.42,100.68,235.74,0.0,organic,2016,Denver +13,2016-09-25,1.72,12327.94,9350.55,1694.55,8.12,1274.72,1191.6,83.12,0.0,organic,2016,Denver +14,2016-09-18,1.37,22036.49,10442.96,2216.61,5.8,9371.12,9071.01,300.11,0.0,organic,2016,Denver +15,2016-09-11,1.4,20741.79,10019.08,2407.87,13.89,8300.95,8044.58,256.37,0.0,organic,2016,Denver +16,2016-09-04,1.15,25026.47,8810.53,2263.32,275.18,13677.44,11408.72,2268.72,0.0,organic,2016,Denver +17,2016-08-28,1.47,11417.18,5597.07,1246.64,286.4,4287.07,3165.42,1121.65,0.0,organic,2016,Denver +18,2016-08-21,1.78,10651.36,8262.74,1735.48,15.0,638.14,439.68,198.46,0.0,organic,2016,Denver +19,2016-08-14,1.19,26657.31,8487.5,1648.45,12.68,16508.68,16302.01,206.67,0.0,organic,2016,Denver +20,2016-08-07,1.52,22282.57,12876.46,2651.64,8.06,6746.41,6538.45,207.96,0.0,organic,2016,Denver +21,2016-07-31,1.79,17691.72,14012.54,2828.69,35.64,814.85,618.46,196.39,0.0,organic,2016,Denver +22,2016-07-24,1.47,28452.22,14466.93,3103.21,53.93,10828.15,10778.15,50.0,0.0,organic,2016,Denver +23,2016-07-17,1.6,21484.6,15310.96,3457.28,20.6,2695.76,2665.76,30.0,0.0,organic,2016,Denver +24,2016-07-10,1.0,37036.32,10122.11,2278.64,18.29,24617.28,24562.35,54.93,0.0,organic,2016,Denver +25,2016-07-03,1.2,27913.57,13460.89,3315.6,58.26,11078.82,11019.0,59.82,0.0,organic,2016,Denver +26,2016-06-26,1.52,19132.38,14921.84,4022.39,76.5,111.65,94.98,16.67,0.0,organic,2016,Denver +27,2016-06-19,1.52,24524.24,20528.3,3777.61,100.4,117.93,83.67,34.26,0.0,organic,2016,Denver +28,2016-06-12,1.46,25862.04,19720.9,3959.24,29.44,2152.46,2065.9,86.56,0.0,organic,2016,Denver +29,2016-06-05,1.32,21698.87,12810.26,3097.96,21.51,5769.14,5681.6,87.54,0.0,organic,2016,Denver +30,2016-05-29,0.96,34072.77,8555.66,1938.53,22.63,23555.95,22884.59,671.36,0.0,organic,2016,Denver +31,2016-05-22,0.92,49143.63,25268.6,1852.73,33.92,21988.38,21660.14,328.24,0.0,organic,2016,Denver +32,2016-05-15,0.99,24086.48,11220.31,3023.72,23.73,9818.72,6425.59,3393.13,0.0,organic,2016,Denver +33,2016-05-08,0.7,50559.21,14280.12,6750.13,51.92,29477.04,5921.36,23555.68,0.0,organic,2016,Denver +34,2016-05-01,0.86,182067.69,85418.52,40808.35,142.93,55697.89,25142.95,30554.94,0.0,organic,2016,Denver +35,2016-04-24,0.74,229646.05,62551.8,37420.77,124.69,129548.79,121358.4,8190.39,0.0,organic,2016,Denver +36,2016-04-17,1.0,53454.29,6855.69,2138.82,28.03,44431.75,30902.1,13529.65,0.0,organic,2016,Denver +37,2016-04-10,0.94,40527.1,5150.05,1545.0,25.72,33806.33,26493.27,7313.06,0.0,organic,2016,Denver +38,2016-04-03,1.15,27248.91,6435.15,2257.4,15.61,18540.75,11673.65,6867.1,0.0,organic,2016,Denver +39,2016-03-27,1.24,30425.9,8689.45,2179.12,25.57,19531.76,659.66,18872.1,0.0,organic,2016,Denver +40,2016-03-20,0.98,36797.51,4709.48,3674.36,26.61,28387.06,1224.69,27162.37,0.0,organic,2016,Denver +41,2016-03-13,0.74,100571.11,17624.22,12791.08,53.1,70102.71,16189.63,53913.08,0.0,organic,2016,Denver +42,2016-03-06,0.66,121329.26,10700.89,10988.09,59.64,99580.64,41656.67,57923.97,0.0,organic,2016,Denver +43,2016-02-28,1.06,30084.47,4713.24,1955.11,23.17,23392.95,15001.1,8391.85,0.0,organic,2016,Denver +44,2016-02-21,1.07,33868.46,5720.97,2259.38,4.41,25883.7,15546.79,10336.91,0.0,organic,2016,Denver +45,2016-02-14,1.18,30537.03,6478.87,3527.28,27.51,20503.37,1928.78,18574.59,0.0,organic,2016,Denver +46,2016-02-07,1.08,35694.81,4205.46,3815.33,32.99,27641.03,4198.37,23442.66,0.0,organic,2016,Denver +47,2016-01-31,0.95,55371.0,6587.57,6336.15,40.64,42406.64,14951.47,27455.17,0.0,organic,2016,Denver +48,2016-01-24,0.86,45127.01,7581.4,5040.24,29.68,32475.69,15028.15,17447.54,0.0,organic,2016,Denver +49,2016-01-17,1.15,22059.78,6052.49,3670.46,23.12,12313.71,1737.61,10576.1,0.0,organic,2016,Denver +50,2016-01-10,0.77,63531.61,4369.82,10784.78,55.07,48321.94,980.62,47341.32,0.0,organic,2016,Denver +51,2016-01-03,1.05,30514.09,7003.19,4240.7,51.8,19218.4,368.17,18850.23,0.0,organic,2016,Denver +0,2016-12-25,1.46,9541.46,1008.05,7376.5,0.0,1156.91,634.1,522.81,0.0,organic,2016,Detroit +1,2016-12-18,1.5,8350.41,835.32,5733.54,0.0,1781.55,611.42,1170.13,0.0,organic,2016,Detroit +2,2016-12-11,0.89,16467.48,477.62,4371.87,0.0,11617.99,1010.4,10607.59,0.0,organic,2016,Detroit +3,2016-12-04,1.36,12252.47,529.77,4890.87,0.0,6831.83,6310.2,521.63,0.0,organic,2016,Detroit +4,2016-11-27,1.29,10119.58,366.81,4158.12,0.0,5594.65,2883.32,2711.33,0.0,organic,2016,Detroit +5,2016-11-20,1.05,15249.78,596.36,4877.64,0.0,9775.78,692.45,9083.33,0.0,organic,2016,Detroit +6,2016-11-13,1.08,22242.88,623.31,7197.29,0.0,14422.28,1054.34,13367.94,0.0,organic,2016,Detroit +7,2016-11-06,0.79,34582.48,636.73,7665.08,0.0,26280.67,1155.55,25125.12,0.0,organic,2016,Detroit +8,2016-10-30,1.77,13787.12,687.53,10103.65,0.0,2995.94,826.9,2169.04,0.0,organic,2016,Detroit +9,2016-10-23,1.06,23612.89,683.08,8487.48,0.0,14442.33,483.62,13958.71,0.0,organic,2016,Detroit +10,2016-10-16,0.88,24025.32,820.02,6757.92,0.0,16447.38,592.13,15855.25,0.0,organic,2016,Detroit +11,2016-10-09,0.91,27051.5,678.11,8511.22,0.0,17862.17,1015.23,16846.94,0.0,organic,2016,Detroit +12,2016-10-02,1.74,10476.39,788.72,7978.47,0.0,1709.2,746.49,962.71,0.0,organic,2016,Detroit +13,2016-09-25,1.08,21564.13,786.55,6839.89,0.0,13937.69,518.66,13419.03,0.0,organic,2016,Detroit +14,2016-09-18,1.37,12995.36,858.96,6615.01,0.0,5521.39,1142.74,4378.65,0.0,organic,2016,Detroit +15,2016-09-11,0.93,23933.59,1160.5,7929.35,0.0,14843.74,1302.39,13541.35,0.0,organic,2016,Detroit +16,2016-09-04,1.03,20778.46,657.1,7977.82,0.0,12143.54,748.81,11394.73,0.0,organic,2016,Detroit +17,2016-08-28,1.14,18362.63,855.97,7611.27,0.0,9895.39,854.03,9041.36,0.0,organic,2016,Detroit +18,2016-08-21,1.4,13662.27,751.81,7547.5,0.0,5362.96,802.78,4560.18,0.0,organic,2016,Detroit +19,2016-08-14,1.45,15193.49,780.76,8921.36,0.0,5491.37,830.38,4660.99,0.0,organic,2016,Detroit +20,2016-08-07,1.33,18837.12,848.8,8894.04,0.0,9094.28,768.46,8325.82,0.0,organic,2016,Detroit +21,2016-07-31,1.35,17867.29,837.85,8580.22,0.0,8449.22,969.53,7479.69,0.0,organic,2016,Detroit +22,2016-07-24,1.54,16285.84,969.22,9420.9,0.0,5895.72,690.15,5205.57,0.0,organic,2016,Detroit +23,2016-07-17,1.14,22070.24,889.59,8699.6,0.0,12481.05,1092.91,11388.14,0.0,organic,2016,Detroit +24,2016-07-10,0.98,24521.13,768.36,8606.24,0.0,15146.53,890.15,14256.38,0.0,organic,2016,Detroit +25,2016-07-03,1.05,21345.19,778.4,9330.9,0.0,11235.89,857.26,10378.63,0.0,organic,2016,Detroit +26,2016-06-26,1.26,18307.22,716.67,8879.63,0.0,8710.92,1000.2,7710.72,0.0,organic,2016,Detroit +27,2016-06-19,1.03,24427.82,879.07,9121.58,0.0,14427.17,880.0,13547.17,0.0,organic,2016,Detroit +28,2016-06-12,1.25,19250.46,822.13,8482.74,0.0,9945.59,1020.0,8925.59,0.0,organic,2016,Detroit +29,2016-06-05,0.73,38685.43,665.57,9719.56,0.0,28300.3,948.33,27351.97,0.0,organic,2016,Detroit +30,2016-05-29,1.41,19412.28,634.9,11896.25,0.0,6881.13,622.9,6258.23,0.0,organic,2016,Detroit +31,2016-05-22,0.88,24932.62,479.17,8182.24,0.0,16271.21,697.26,15573.95,0.0,organic,2016,Detroit +32,2016-05-15,1.33,14006.16,321.4,7201.35,0.0,6483.41,854.68,5628.73,0.0,organic,2016,Detroit +33,2016-05-08,1.28,16109.87,292.56,8066.75,0.0,7750.56,1453.52,6297.04,0.0,organic,2016,Detroit +34,2016-05-01,1.55,13441.92,357.55,7877.12,0.0,5207.25,927.71,4279.54,0.0,organic,2016,Detroit +35,2016-04-24,1.12,22644.96,503.71,10249.88,0.0,11891.37,2798.69,9092.68,0.0,organic,2016,Detroit +36,2016-04-17,1.19,18357.84,437.82,9782.03,0.0,8137.99,1637.54,6500.45,0.0,organic,2016,Detroit +37,2016-04-10,1.42,9110.23,757.16,6902.28,0.0,1450.79,743.33,707.46,0.0,organic,2016,Detroit +38,2016-04-03,1.27,10988.01,597.82,6688.79,0.0,3701.4,760.0,2941.4,0.0,organic,2016,Detroit +39,2016-03-27,1.31,14713.15,481.18,7529.48,0.0,6702.49,866.3,5836.19,0.0,organic,2016,Detroit +40,2016-03-20,0.95,19512.63,689.02,7061.83,0.0,11761.78,723.33,11038.45,0.0,organic,2016,Detroit +41,2016-03-13,1.26,12076.42,728.62,6293.44,0.0,5054.36,725.9,4328.46,0.0,organic,2016,Detroit +42,2016-03-06,1.45,8962.28,853.41,6477.46,0.0,1631.41,365.65,1265.76,0.0,organic,2016,Detroit +43,2016-02-28,1.45,11000.16,2183.38,7092.02,0.0,1724.76,290.0,1434.76,0.0,organic,2016,Detroit +44,2016-02-21,1.31,10640.55,2285.14,5350.58,0.0,3004.83,389.62,2615.21,0.0,organic,2016,Detroit +45,2016-02-14,1.31,10918.3,2185.23,5667.24,0.0,3065.83,346.67,2719.16,0.0,organic,2016,Detroit +46,2016-02-07,1.33,10472.65,1808.94,5778.2,0.0,2885.51,406.67,2478.84,0.0,organic,2016,Detroit +47,2016-01-31,1.46,10303.61,1820.34,5379.14,0.0,3104.13,466.67,2637.46,0.0,organic,2016,Detroit +48,2016-01-24,1.24,13050.86,1591.6,5173.38,0.0,6285.88,736.67,5549.21,0.0,organic,2016,Detroit +49,2016-01-17,1.73,10928.62,2686.57,6590.28,0.0,1651.77,455.94,1195.83,0.0,organic,2016,Detroit +50,2016-01-10,1.48,13098.8,4763.82,6356.7,0.0,1978.28,615.29,1362.99,0.0,organic,2016,Detroit +51,2016-01-03,1.57,8032.68,1673.67,5173.13,0.0,1185.88,196.67,989.21,0.0,organic,2016,Detroit +0,2016-12-25,2.04,1361.01,84.29,813.39,0.0,463.33,463.33,0.0,0.0,organic,2016,GrandRapids +1,2016-12-18,2.11,1181.37,37.91,873.33,0.0,270.13,223.33,46.8,0.0,organic,2016,GrandRapids +2,2016-12-11,1.97,1212.71,29.44,855.06,0.0,328.21,160.0,168.21,0.0,organic,2016,GrandRapids +3,2016-12-04,1.32,4005.73,232.21,3063.52,0.0,710.0,710.0,0.0,0.0,organic,2016,GrandRapids +4,2016-11-27,2.08,979.74,58.63,714.71,0.0,206.4,150.56,55.84,0.0,organic,2016,GrandRapids +5,2016-11-20,2.26,841.53,43.11,481.19,0.0,317.23,317.23,0.0,0.0,organic,2016,GrandRapids +6,2016-11-13,2.28,1284.68,69.31,822.04,0.0,393.33,393.33,0.0,0.0,organic,2016,GrandRapids +7,2016-11-06,2.17,1298.02,66.35,648.34,0.0,583.33,583.33,0.0,0.0,organic,2016,GrandRapids +8,2016-10-30,2.11,740.33,17.92,379.08,0.0,343.33,343.33,0.0,0.0,organic,2016,GrandRapids +9,2016-10-23,2.17,1243.29,104.69,743.84,0.0,394.76,373.33,21.43,0.0,organic,2016,GrandRapids +10,2016-10-16,2.07,1200.59,117.0,856.14,0.0,227.45,143.33,84.12,0.0,organic,2016,GrandRapids +11,2016-10-09,1.99,1434.77,83.91,770.3,0.0,580.56,580.56,0.0,0.0,organic,2016,GrandRapids +12,2016-10-02,2.1,1122.69,97.63,738.39,0.0,286.67,286.67,0.0,0.0,organic,2016,GrandRapids +13,2016-09-25,2.16,980.98,104.51,691.68,0.0,184.79,173.33,11.46,0.0,organic,2016,GrandRapids +14,2016-09-18,1.82,1285.58,60.51,581.74,0.0,643.33,630.0,13.33,0.0,organic,2016,GrandRapids +15,2016-09-11,1.91,1765.13,203.67,861.46,0.0,700.0,700.0,0.0,0.0,organic,2016,GrandRapids +16,2016-09-04,1.96,1782.56,436.53,784.93,0.0,561.1,526.67,34.43,0.0,organic,2016,GrandRapids +17,2016-08-28,1.8,2178.75,577.74,790.08,0.0,810.93,726.67,84.26,0.0,organic,2016,GrandRapids +18,2016-08-21,1.94,2096.45,1016.22,378.84,0.0,701.39,600.0,101.39,0.0,organic,2016,GrandRapids +19,2016-08-14,1.93,1958.5,1112.04,207.99,0.0,638.47,456.67,181.8,0.0,organic,2016,GrandRapids +20,2016-08-07,2.03,1794.39,1069.54,187.76,0.0,537.09,500.0,37.09,0.0,organic,2016,GrandRapids +21,2016-07-31,1.86,1853.41,885.09,214.99,0.0,753.33,753.33,0.0,0.0,organic,2016,GrandRapids +22,2016-07-24,1.98,1509.8,781.44,199.22,0.0,529.14,516.67,12.47,0.0,organic,2016,GrandRapids +23,2016-07-17,1.82,1222.54,345.52,308.85,0.0,568.17,513.33,54.84,0.0,organic,2016,GrandRapids +24,2016-07-10,1.73,1909.68,38.29,1293.21,0.0,578.18,546.67,31.51,0.0,organic,2016,GrandRapids +25,2016-07-03,1.8,1680.08,15.67,1297.74,0.0,366.67,366.67,0.0,0.0,organic,2016,GrandRapids +26,2016-06-26,1.38,2515.91,27.16,2001.1,0.0,487.65,440.0,47.65,0.0,organic,2016,GrandRapids +27,2016-06-19,1.67,2301.05,41.53,1883.37,0.0,376.15,330.0,46.15,0.0,organic,2016,GrandRapids +28,2016-06-12,1.51,4328.09,49.11,3699.04,0.0,579.94,556.67,23.27,0.0,organic,2016,GrandRapids +29,2016-06-05,1.28,3011.11,55.96,2281.21,0.0,673.94,526.67,147.27,0.0,organic,2016,GrandRapids +30,2016-05-29,1.69,1778.67,19.11,1245.12,0.0,514.44,486.67,27.77,0.0,organic,2016,GrandRapids +31,2016-05-22,1.75,1610.27,19.03,1178.7,0.0,412.54,380.0,32.54,0.0,organic,2016,GrandRapids +32,2016-05-15,1.6,1891.39,42.3,1296.57,0.0,552.52,537.94,14.58,0.0,organic,2016,GrandRapids +33,2016-05-08,1.56,1750.18,50.8,1364.24,0.0,335.14,335.14,0.0,0.0,organic,2016,GrandRapids +34,2016-05-01,1.36,2405.79,72.15,1721.41,0.0,612.23,604.21,8.02,0.0,organic,2016,GrandRapids +35,2016-04-24,1.47,3402.66,61.63,2746.0,0.0,595.03,595.03,0.0,0.0,organic,2016,GrandRapids +36,2016-04-17,1.57,1620.45,102.47,788.49,0.0,729.49,720.0,9.49,0.0,organic,2016,GrandRapids +37,2016-04-10,1.34,1690.4,62.14,1118.45,0.0,509.81,480.0,29.81,0.0,organic,2016,GrandRapids +38,2016-04-03,1.56,1409.23,78.55,868.21,0.0,462.47,450.0,12.47,0.0,organic,2016,GrandRapids +39,2016-03-27,1.53,1816.88,73.89,1274.17,0.0,468.82,453.33,15.49,0.0,organic,2016,GrandRapids +40,2016-03-20,1.33,4064.64,122.12,3441.44,0.0,501.08,473.33,27.75,0.0,organic,2016,GrandRapids +41,2016-03-13,1.33,1643.43,258.14,916.85,0.0,468.44,450.0,18.44,0.0,organic,2016,GrandRapids +42,2016-03-06,1.1,3976.8,351.73,3320.01,0.0,305.06,286.67,18.39,0.0,organic,2016,GrandRapids +43,2016-02-28,1.43,2981.75,1212.2,1566.22,0.0,203.33,203.33,0.0,0.0,organic,2016,GrandRapids +44,2016-02-21,1.58,2373.09,1437.69,715.4,0.0,220.0,220.0,0.0,0.0,organic,2016,GrandRapids +45,2016-02-14,1.36,2168.35,919.81,981.87,0.0,266.67,266.67,0.0,0.0,organic,2016,GrandRapids +46,2016-02-07,1.46,2112.25,1353.88,561.7,0.0,196.67,196.67,0.0,0.0,organic,2016,GrandRapids +47,2016-01-31,1.54,2267.22,1297.07,733.48,0.0,236.67,236.67,0.0,0.0,organic,2016,GrandRapids +48,2016-01-24,1.49,2363.97,1140.04,665.48,0.0,558.45,533.33,25.12,0.0,organic,2016,GrandRapids +49,2016-01-17,1.53,2099.77,1295.76,471.18,0.0,332.83,326.67,6.16,0.0,organic,2016,GrandRapids +50,2016-01-10,1.4,4134.61,2821.21,939.02,0.0,374.38,366.67,7.71,0.0,organic,2016,GrandRapids +51,2016-01-03,1.45,2625.6,1173.11,1325.82,0.0,126.67,126.67,0.0,0.0,organic,2016,GrandRapids +0,2016-12-25,1.48,95184.06,3993.87,63263.0,0.0,27927.19,22279.91,5647.28,0.0,organic,2016,GreatLakes +1,2016-12-18,1.31,112979.93,3304.98,66050.37,0.0,43624.58,18096.39,25528.19,0.0,organic,2016,GreatLakes +2,2016-12-11,1.1,167640.67,2755.84,77907.93,0.0,86976.9,22634.41,64342.49,0.0,organic,2016,GreatLakes +3,2016-12-04,1.47,117193.02,3252.52,61767.51,0.0,52172.99,31957.97,20215.02,0.0,organic,2016,GreatLakes +4,2016-11-27,1.49,96160.23,2651.36,39519.51,0.0,53989.36,23247.88,30741.48,0.0,organic,2016,GreatLakes +5,2016-11-20,1.47,115682.53,3591.69,49368.6,0.0,62722.24,20964.29,41757.95,0.0,organic,2016,GreatLakes +6,2016-11-13,1.58,123515.34,4040.88,58221.76,0.0,61252.7,21907.65,39345.05,0.0,organic,2016,GreatLakes +7,2016-11-06,1.25,175323.06,3560.85,63234.05,0.0,108528.16,25403.29,83124.87,0.0,organic,2016,GreatLakes +8,2016-10-30,1.86,112134.82,3718.89,73774.98,0.0,34640.95,19270.51,15370.44,0.0,organic,2016,GreatLakes +9,2016-10-23,1.43,139337.29,4248.0,62788.25,0.0,72301.04,19601.23,52699.81,0.0,organic,2016,GreatLakes +10,2016-10-16,1.35,147526.08,4710.92,61066.85,0.0,81748.31,25550.93,56197.38,0.0,organic,2016,GreatLakes +11,2016-10-09,1.36,146094.87,4016.81,65448.07,1.6,76628.39,24772.44,51855.95,0.0,organic,2016,GreatLakes +12,2016-10-02,1.76,105453.89,4376.33,63611.12,1.6,37464.84,22736.82,14728.02,0.0,organic,2016,GreatLakes +13,2016-09-25,1.51,130290.41,4824.69,59772.24,0.0,65693.48,20049.9,45643.58,0.0,organic,2016,GreatLakes +14,2016-09-18,1.65,94463.19,5214.46,53650.27,0.0,35598.46,16037.37,19561.09,0.0,organic,2016,GreatLakes +15,2016-09-11,1.43,135309.51,5698.83,68041.16,0.0,61569.52,16797.32,44772.2,0.0,organic,2016,GreatLakes +16,2016-09-04,1.47,139374.22,6231.1,74111.53,0.0,59031.59,13790.28,45241.31,0.0,organic,2016,GreatLakes +17,2016-08-28,1.29,151771.49,7010.98,66489.42,9.54,78261.55,11614.2,66647.35,0.0,organic,2016,GreatLakes +18,2016-08-21,1.65,119045.99,6118.03,69626.28,41.27,43260.41,18251.44,25008.97,0.0,organic,2016,GreatLakes +19,2016-08-14,1.67,116220.19,6686.26,68598.93,6.35,40928.65,14160.18,26768.47,0.0,organic,2016,GreatLakes +20,2016-08-07,1.57,126449.62,6209.59,65472.42,6.36,54761.25,14322.22,40439.03,0.0,organic,2016,GreatLakes +21,2016-07-31,1.66,116608.12,5611.64,67958.96,25.44,43012.08,20164.41,22847.67,0.0,organic,2016,GreatLakes +22,2016-07-24,1.67,112800.57,5835.96,65676.84,11.15,41276.62,23564.35,17712.27,0.0,organic,2016,GreatLakes +23,2016-07-17,1.33,139949.09,5230.59,67804.19,1.59,66912.72,16340.21,50572.51,0.0,organic,2016,GreatLakes +24,2016-07-10,1.16,130838.45,4126.55,56807.6,4.8,69899.5,15124.86,54774.64,0.0,organic,2016,GreatLakes +25,2016-07-03,1.22,110335.56,3912.39,57062.77,3.22,49357.18,17772.03,31585.15,0.0,organic,2016,GreatLakes +26,2016-06-26,1.34,129807.8,3994.35,71081.68,24.15,54707.62,20982.99,33724.63,0.0,organic,2016,GreatLakes +27,2016-06-19,1.23,160564.92,4587.03,89031.53,140.23,66806.13,17993.87,48812.26,0.0,organic,2016,GreatLakes +28,2016-06-12,1.34,152083.91,4237.01,93651.84,123.81,54071.25,17489.33,36581.92,0.0,organic,2016,GreatLakes +29,2016-06-05,1.13,170250.47,3717.47,93039.69,171.41,73321.9,18436.27,54885.63,0.0,organic,2016,GreatLakes +30,2016-05-29,1.24,161868.25,3502.16,119123.75,163.81,39078.53,15448.47,23630.06,0.0,organic,2016,GreatLakes +31,2016-05-22,1.26,141771.45,3108.88,90216.06,62.5,48384.01,14127.21,34256.8,0.0,organic,2016,GreatLakes +32,2016-05-15,1.42,119264.62,2617.15,73990.73,54.29,42602.45,18199.73,24402.72,0.0,organic,2016,GreatLakes +33,2016-05-08,1.39,123789.24,2728.52,79832.73,39.76,41188.23,17603.76,23584.47,0.0,organic,2016,GreatLakes +34,2016-05-01,1.4,121983.64,2819.59,74390.65,22.17,44751.23,17013.33,27737.9,0.0,organic,2016,GreatLakes +35,2016-04-24,1.28,150140.95,4611.56,87073.08,44.08,58412.23,19471.08,38941.15,0.0,organic,2016,GreatLakes +36,2016-04-17,1.33,122388.94,2776.24,73943.65,12.53,45656.52,18674.26,26982.26,0.0,organic,2016,GreatLakes +37,2016-04-10,1.36,119113.13,3179.07,78515.93,4.67,37413.46,18514.62,18898.84,0.0,organic,2016,GreatLakes +38,2016-04-03,1.45,103615.27,2913.03,73156.63,0.0,27545.61,9613.29,17932.32,0.0,organic,2016,GreatLakes +39,2016-03-27,1.33,122736.25,2876.58,76732.95,29.22,43097.5,9745.52,33351.98,0.0,organic,2016,GreatLakes +40,2016-03-20,1.24,131022.13,3227.12,75092.85,6.13,52696.03,11483.08,41212.95,0.0,organic,2016,GreatLakes +41,2016-03-13,1.33,106057.37,3540.99,67123.23,6.11,35387.04,11461.81,23925.23,0.0,organic,2016,GreatLakes +42,2016-03-06,1.42,98803.23,5683.54,77089.66,0.0,16030.03,6346.81,9683.22,0.0,organic,2016,GreatLakes +43,2016-02-28,1.48,99353.21,10277.19,73062.2,0.0,16013.82,7413.22,8600.6,0.0,organic,2016,GreatLakes +44,2016-02-21,1.38,100551.65,11109.56,62267.01,0.0,27175.08,10529.77,16645.31,0.0,organic,2016,GreatLakes +45,2016-02-14,1.34,100217.44,9506.17,61569.33,0.0,29141.94,9377.96,19763.98,0.0,organic,2016,GreatLakes +46,2016-02-07,1.41,94983.64,9750.65,64417.17,9.18,20806.64,6395.71,14410.93,0.0,organic,2016,GreatLakes +47,2016-01-31,1.45,89574.32,8791.51,58433.15,0.0,22349.66,6581.99,15767.67,0.0,organic,2016,GreatLakes +48,2016-01-24,1.31,102833.87,8871.32,55777.93,15.33,38169.29,9648.15,28521.14,0.0,organic,2016,GreatLakes +49,2016-01-17,1.46,91071.06,11712.29,60713.76,12.29,18632.72,8031.93,10600.79,0.0,organic,2016,GreatLakes +50,2016-01-10,1.48,112034.52,19744.83,72015.81,0.0,20273.88,9843.3,10430.58,0.0,organic,2016,GreatLakes +51,2016-01-03,1.44,83325.98,8479.65,56407.64,3.09,18435.6,5929.53,12506.07,0.0,organic,2016,GreatLakes +0,2016-12-25,1.81,8656.11,257.75,163.34,19.81,8215.21,8215.21,0.0,0.0,organic,2016,HarrisburgScranton +1,2016-12-18,1.82,6655.29,325.22,257.46,4.28,6068.33,6034.87,33.46,0.0,organic,2016,HarrisburgScranton +2,2016-12-11,1.91,6893.99,193.63,131.63,15.87,6552.86,6552.86,0.0,0.0,organic,2016,HarrisburgScranton +3,2016-12-04,2.01,5955.63,276.69,184.01,11.25,5483.68,5483.68,0.0,0.0,organic,2016,HarrisburgScranton +4,2016-11-27,2.07,5306.81,252.27,162.06,23.99,4868.49,4868.49,0.0,0.0,organic,2016,HarrisburgScranton +5,2016-11-20,1.85,6445.71,418.98,235.0,17.56,5774.17,5718.34,55.83,0.0,organic,2016,HarrisburgScranton +6,2016-11-13,1.74,3601.66,252.1,249.01,10.59,3089.96,3089.96,0.0,0.0,organic,2016,HarrisburgScranton +7,2016-11-06,1.9,5678.73,161.06,118.1,24.62,5374.95,5374.95,0.0,0.0,organic,2016,HarrisburgScranton +8,2016-10-30,1.82,4036.39,252.91,202.95,16.24,3564.29,3529.6,34.69,0.0,organic,2016,HarrisburgScranton +9,2016-10-23,1.44,3509.18,40.51,154.23,17.03,3297.41,3297.41,0.0,0.0,organic,2016,HarrisburgScranton +10,2016-10-16,1.79,5193.18,135.24,192.75,11.95,4853.24,4853.24,0.0,0.0,organic,2016,HarrisburgScranton +11,2016-10-09,1.72,4687.32,114.75,193.84,12.44,4366.29,4357.67,8.62,0.0,organic,2016,HarrisburgScranton +12,2016-10-02,1.86,4651.52,199.5,142.72,18.24,4291.06,4282.53,8.53,0.0,organic,2016,HarrisburgScranton +13,2016-09-25,1.91,6840.51,175.79,157.45,24.9,6482.37,6473.88,8.49,0.0,organic,2016,HarrisburgScranton +14,2016-09-18,2.06,9663.48,220.83,194.94,22.98,9224.73,9220.5,4.23,0.0,organic,2016,HarrisburgScranton +15,2016-09-11,2.03,9668.53,414.94,340.74,17.53,8895.32,8646.29,249.03,0.0,organic,2016,HarrisburgScranton +16,2016-09-04,1.85,7464.59,276.48,260.91,21.38,6905.82,6530.46,375.36,0.0,organic,2016,HarrisburgScranton +17,2016-08-28,1.69,3284.45,214.69,298.76,18.72,2752.28,2752.28,0.0,0.0,organic,2016,HarrisburgScranton +18,2016-08-21,1.56,7470.66,376.97,300.68,10.04,6782.97,6771.34,11.63,0.0,organic,2016,HarrisburgScranton +19,2016-08-14,1.62,3590.48,269.64,336.68,13.51,2970.65,2954.1,16.55,0.0,organic,2016,HarrisburgScranton +20,2016-08-07,1.72,6079.97,250.68,286.28,16.12,5526.89,5514.53,12.36,0.0,organic,2016,HarrisburgScranton +21,2016-07-31,1.68,5590.38,165.41,200.86,32.52,5191.59,5191.59,0.0,0.0,organic,2016,HarrisburgScranton +22,2016-07-24,1.62,5387.66,154.4,319.09,138.06,4776.11,4513.07,263.04,0.0,organic,2016,HarrisburgScranton +23,2016-07-17,2.04,12285.03,236.86,185.69,536.89,11325.59,9574.3,1751.29,0.0,organic,2016,HarrisburgScranton +24,2016-07-10,1.88,7574.45,302.48,199.16,203.97,6868.84,6723.47,145.37,0.0,organic,2016,HarrisburgScranton +25,2016-07-03,1.81,7342.95,290.67,289.24,308.49,6454.55,5908.2,546.35,0.0,organic,2016,HarrisburgScranton +26,2016-06-26,1.9,6794.88,205.15,168.16,186.94,6234.63,5439.35,795.28,0.0,organic,2016,HarrisburgScranton +27,2016-06-19,1.9,8174.73,124.31,170.04,180.1,7700.28,7112.85,587.43,0.0,organic,2016,HarrisburgScranton +28,2016-06-12,1.91,7873.7,284.07,168.49,1273.02,6148.12,5204.32,943.8,0.0,organic,2016,HarrisburgScranton +29,2016-06-05,1.59,8318.68,151.5,127.87,16.65,8022.66,7145.5,877.16,0.0,organic,2016,HarrisburgScranton +30,2016-05-29,1.75,9117.05,191.45,190.06,22.57,8712.97,7698.69,1014.28,0.0,organic,2016,HarrisburgScranton +31,2016-05-22,1.81,8511.92,402.74,145.32,20.24,7943.62,7642.22,301.4,0.0,organic,2016,HarrisburgScranton +32,2016-05-15,1.79,9086.18,328.73,146.41,21.09,8589.95,7718.25,871.7,0.0,organic,2016,HarrisburgScranton +33,2016-05-08,1.6,6605.29,169.6,177.87,17.99,6239.83,5685.23,554.6,0.0,organic,2016,HarrisburgScranton +34,2016-05-01,1.79,9184.96,291.91,165.23,9.36,8718.46,8580.77,137.69,0.0,organic,2016,HarrisburgScranton +35,2016-04-24,1.92,11095.97,179.81,254.47,10.97,10650.72,9412.78,1237.94,0.0,organic,2016,HarrisburgScranton +36,2016-04-17,1.79,8785.44,201.05,205.18,12.85,8366.36,7950.19,416.17,0.0,organic,2016,HarrisburgScranton +37,2016-04-10,1.83,6966.0,93.75,191.64,11.15,6669.46,5468.47,1200.99,0.0,organic,2016,HarrisburgScranton +38,2016-04-03,1.83,9154.93,238.58,154.46,13.18,8748.71,7752.72,995.99,0.0,organic,2016,HarrisburgScranton +39,2016-03-27,1.83,8688.2,116.04,116.04,17.93,8438.19,7986.91,451.28,0.0,organic,2016,HarrisburgScranton +40,2016-03-20,1.51,7351.07,156.14,294.15,9.6,6891.18,6110.48,780.7,0.0,organic,2016,HarrisburgScranton +41,2016-03-13,1.57,8599.69,219.32,276.6,18.01,8085.76,5850.63,2235.13,0.0,organic,2016,HarrisburgScranton +42,2016-03-06,1.58,8782.58,156.76,264.54,19.0,8342.28,3238.17,5104.11,0.0,organic,2016,HarrisburgScranton +43,2016-02-28,1.83,7183.79,169.67,204.73,23.09,6786.3,3361.73,3424.57,0.0,organic,2016,HarrisburgScranton +44,2016-02-21,1.87,5950.64,150.33,264.13,23.92,5512.26,1915.54,3596.72,0.0,organic,2016,HarrisburgScranton +45,2016-02-14,2.22,4784.79,208.23,249.04,20.39,4307.13,1530.68,2776.45,0.0,organic,2016,HarrisburgScranton +46,2016-02-07,1.91,7315.19,174.72,253.63,7.42,6879.42,2492.63,4386.79,0.0,organic,2016,HarrisburgScranton +47,2016-01-31,1.49,8501.28,86.08,186.27,15.3,8213.63,718.76,7494.87,0.0,organic,2016,HarrisburgScranton +48,2016-01-24,1.79,7830.1,100.32,193.57,13.56,7522.65,1930.55,5592.1,0.0,organic,2016,HarrisburgScranton +49,2016-01-17,2.0,4610.66,107.45,294.08,12.85,4196.28,979.0,3217.28,0.0,organic,2016,HarrisburgScranton +50,2016-01-10,1.32,7967.11,119.43,203.03,16.19,7628.46,690.25,6938.21,0.0,organic,2016,HarrisburgScranton +51,2016-01-03,1.58,7329.14,68.45,195.37,12.83,7052.49,641.68,6410.81,0.0,organic,2016,HarrisburgScranton +0,2016-12-25,2.41,8403.07,64.48,3552.13,13.72,4772.74,4456.42,316.32,0.0,organic,2016,HartfordSpringfield +1,2016-12-18,2.36,8155.56,152.23,3987.7,4.11,4011.52,3904.85,106.67,0.0,organic,2016,HartfordSpringfield +2,2016-12-11,2.54,7514.4,19.71,3180.04,10.97,4303.68,4299.87,3.81,0.0,organic,2016,HartfordSpringfield +3,2016-12-04,2.42,8036.44,103.64,3639.96,2.74,4290.1,4290.1,0.0,0.0,organic,2016,HartfordSpringfield +4,2016-11-27,2.67,7148.3,46.61,3046.39,2.74,4052.56,4006.86,45.7,0.0,organic,2016,HartfordSpringfield +5,2016-11-20,2.3,9689.09,186.96,5910.73,0.0,3591.4,3372.13,219.27,0.0,organic,2016,HartfordSpringfield +6,2016-11-13,2.68,5260.62,15.23,3074.13,20.77,2150.49,2142.8,7.69,0.0,organic,2016,HartfordSpringfield +7,2016-11-06,2.57,6674.17,73.43,3159.34,2.77,3438.63,3331.0,107.63,0.0,organic,2016,HartfordSpringfield +8,2016-10-30,2.34,4272.13,275.57,2734.41,1.38,1260.77,1080.29,180.48,0.0,organic,2016,HartfordSpringfield +9,2016-10-23,1.98,1494.63,65.87,897.05,1.38,530.33,472.82,57.51,0.0,organic,2016,HartfordSpringfield +10,2016-10-16,2.33,5131.43,35.26,3657.66,12.47,1426.04,1237.39,188.65,0.0,organic,2016,HartfordSpringfield +11,2016-10-09,2.34,6836.11,48.42,3841.72,2.77,2943.2,2854.82,88.38,0.0,organic,2016,HartfordSpringfield +12,2016-10-02,2.33,7328.91,61.79,3168.72,6.91,4091.49,3937.98,153.51,0.0,organic,2016,HartfordSpringfield +13,2016-09-25,2.34,9905.86,188.52,3116.08,13.79,6587.47,6491.72,95.75,0.0,organic,2016,HartfordSpringfield +14,2016-09-18,2.36,10644.73,83.96,3101.07,5.51,7454.19,7427.43,26.76,0.0,organic,2016,HartfordSpringfield +15,2016-09-11,2.27,12509.69,218.44,5314.04,10.99,6966.22,6847.92,118.3,0.0,organic,2016,HartfordSpringfield +16,2016-09-04,2.34,9021.82,167.34,4191.66,9.6,4653.22,4653.22,0.0,0.0,organic,2016,HartfordSpringfield +17,2016-08-28,2.23,4688.55,51.92,3719.75,0.0,916.88,833.22,83.66,0.0,organic,2016,HartfordSpringfield +18,2016-08-21,2.09,6181.23,151.97,4182.89,2.74,1843.63,1676.47,167.16,0.0,organic,2016,HartfordSpringfield +19,2016-08-14,2.19,5131.72,65.19,3573.57,9.56,1483.4,1189.0,294.4,0.0,organic,2016,HartfordSpringfield +20,2016-08-07,2.36,5402.37,35.74,3832.23,2.73,1531.67,1531.67,0.0,0.0,organic,2016,HartfordSpringfield +21,2016-07-31,2.19,5524.69,134.45,3695.32,1.36,1693.56,1693.56,0.0,0.0,organic,2016,HartfordSpringfield +22,2016-07-24,2.3,7492.17,28.58,3330.69,2.72,4130.18,4130.18,0.0,0.0,organic,2016,HartfordSpringfield +23,2016-07-17,2.39,12209.9,19.02,3863.13,8.15,8319.6,8319.6,0.0,0.0,organic,2016,HartfordSpringfield +24,2016-07-10,2.33,9578.06,202.21,3689.57,1.36,5684.92,5684.92,0.0,0.0,organic,2016,HartfordSpringfield +25,2016-07-03,2.33,9168.9,167.86,3744.45,8.12,5248.47,5248.47,0.0,0.0,organic,2016,HartfordSpringfield +26,2016-06-26,2.32,7355.55,37.86,3299.19,4.06,4014.44,4014.44,0.0,0.0,organic,2016,HartfordSpringfield +27,2016-06-19,2.31,7083.46,53.14,3159.79,0.0,3870.53,3870.53,0.0,0.0,organic,2016,HartfordSpringfield +28,2016-06-12,2.31,5799.45,121.61,3428.72,14.86,2234.26,2234.26,0.0,0.0,organic,2016,HartfordSpringfield +29,2016-06-05,2.27,7906.25,20.1,3652.17,0.0,4233.98,4219.09,14.89,0.0,organic,2016,HartfordSpringfield +30,2016-05-29,2.36,8731.75,108.44,4143.31,4.02,4475.98,4437.31,38.67,0.0,organic,2016,HartfordSpringfield +31,2016-05-22,2.36,10501.75,29.41,3535.03,0.0,6937.31,6925.43,11.88,0.0,organic,2016,HartfordSpringfield +32,2016-05-15,2.34,7461.06,22.7,3504.75,14.69,3918.92,3865.51,53.41,0.0,organic,2016,HartfordSpringfield +33,2016-05-08,2.16,8622.92,25.33,3861.42,5.33,4730.84,4470.09,260.75,0.0,organic,2016,HartfordSpringfield +34,2016-05-01,2.4,13840.67,105.24,6947.38,0.0,6788.05,6560.1,227.95,0.0,organic,2016,HartfordSpringfield +35,2016-04-24,2.24,10677.34,134.18,3140.18,1.33,7401.65,7324.71,76.94,0.0,organic,2016,HartfordSpringfield +36,2016-04-17,2.2,8121.64,79.93,3363.85,0.0,4677.86,4044.32,633.54,0.0,organic,2016,HartfordSpringfield +37,2016-04-10,2.31,8039.96,33.34,2817.51,0.0,5189.11,5144.65,44.46,0.0,organic,2016,HartfordSpringfield +38,2016-04-03,2.33,8734.54,219.02,2777.81,0.0,5737.71,5737.71,0.0,0.0,organic,2016,HartfordSpringfield +39,2016-03-27,2.18,8342.54,117.56,2754.65,0.0,5470.33,5470.33,0.0,0.0,organic,2016,HartfordSpringfield +40,2016-03-20,2.3,6407.43,160.54,3228.32,2.68,3015.89,3015.89,0.0,0.0,organic,2016,HartfordSpringfield +41,2016-03-13,2.18,6620.7,716.95,2830.9,10.72,3062.13,3050.22,11.91,0.0,organic,2016,HartfordSpringfield +42,2016-03-06,2.18,6367.65,657.42,3388.23,0.0,2322.0,2313.06,8.94,0.0,organic,2016,HartfordSpringfield +43,2016-02-28,2.28,9372.36,88.62,5929.21,0.0,3354.53,3354.53,0.0,0.0,organic,2016,HartfordSpringfield +44,2016-02-21,2.24,4735.53,127.66,2709.06,6.72,1892.09,1892.09,0.0,0.0,organic,2016,HartfordSpringfield +45,2016-02-14,2.31,4968.79,149.4,3103.78,0.0,1715.61,1697.67,17.94,0.0,organic,2016,HartfordSpringfield +46,2016-02-07,2.32,7536.3,190.13,5285.63,13.48,2047.06,1900.23,146.83,0.0,organic,2016,HartfordSpringfield +47,2016-01-31,2.27,4585.28,126.99,2375.58,16.21,2066.5,1886.38,180.12,0.0,organic,2016,HartfordSpringfield +48,2016-01-24,2.28,4508.3,98.73,2428.94,4.06,1976.57,1970.56,6.01,0.0,organic,2016,HartfordSpringfield +49,2016-01-17,2.21,3834.56,384.59,3048.31,4.06,397.6,376.53,21.07,0.0,organic,2016,HartfordSpringfield +50,2016-01-10,2.08,3984.77,149.26,2769.26,6.78,1059.47,504.66,554.81,0.0,organic,2016,HartfordSpringfield +51,2016-01-03,1.51,5895.92,95.21,4683.24,9.52,1107.95,624.6,483.35,0.0,organic,2016,HartfordSpringfield +0,2016-12-25,1.21,20826.21,10951.58,88.01,0.0,9786.62,9783.29,3.33,0.0,organic,2016,Houston +1,2016-12-18,1.0,23369.48,7508.82,48.87,0.0,15811.79,15811.79,0.0,0.0,organic,2016,Houston +2,2016-12-11,1.02,22650.75,6744.69,46.91,0.0,15859.15,15859.15,0.0,0.0,organic,2016,Houston +3,2016-12-04,1.0,23759.48,7476.0,37.13,0.0,16246.35,16243.02,3.33,0.0,organic,2016,Houston +4,2016-11-27,0.98,38114.66,11547.29,19.54,0.0,26547.83,26544.5,3.33,0.0,organic,2016,Houston +5,2016-11-20,0.99,36090.09,11095.9,37.11,0.0,24957.08,24950.41,6.67,0.0,organic,2016,Houston +6,2016-11-13,1.1,38684.7,13849.17,25.58,0.0,24809.95,24786.62,23.33,0.0,organic,2016,Houston +7,2016-11-06,1.43,34163.02,14208.05,29.52,0.0,19925.45,19912.12,13.33,0.0,organic,2016,Houston +8,2016-10-30,1.46,28128.59,18490.37,11.82,0.0,9626.4,9623.07,3.33,0.0,organic,2016,Houston +9,2016-10-23,1.43,28930.46,26196.98,31.49,0.0,2701.99,2701.99,0.0,0.0,organic,2016,Houston +10,2016-10-16,0.89,48889.9,16501.32,19.65,0.0,32368.93,32358.93,10.0,0.0,organic,2016,Houston +11,2016-10-09,0.84,41224.63,14845.83,41.19,0.0,26337.61,26330.94,6.67,0.0,organic,2016,Houston +12,2016-10-02,0.81,43340.59,14646.38,17.61,0.0,28676.6,28666.6,10.0,0.0,organic,2016,Houston +13,2016-09-25,0.87,40784.87,13792.1,93.57,0.0,26899.2,26875.87,23.33,0.0,organic,2016,Houston +14,2016-09-18,0.9,42158.24,14726.43,44.64,0.0,27387.17,27347.17,40.0,0.0,organic,2016,Houston +15,2016-09-11,0.87,47076.79,14889.88,28.98,0.0,32157.93,32087.93,70.0,0.0,organic,2016,Houston +16,2016-09-04,0.91,44369.75,13279.9,34.61,0.0,31055.24,31008.57,46.67,0.0,organic,2016,Houston +17,2016-08-28,0.91,46968.92,15291.42,28.93,0.0,31648.57,31611.9,36.67,0.0,organic,2016,Houston +18,2016-08-21,0.98,34420.5,11016.48,40.33,0.0,23363.69,23303.69,60.0,0.0,organic,2016,Houston +19,2016-08-14,1.1,31622.99,10822.39,30.59,0.0,20770.01,20700.01,70.0,0.0,organic,2016,Houston +20,2016-08-07,1.36,21560.06,11937.18,20.93,0.0,9601.95,9475.28,126.67,0.0,organic,2016,Houston +21,2016-07-31,1.45,21414.84,15274.5,20.85,0.0,6119.49,6036.16,83.33,0.0,organic,2016,Houston +22,2016-07-24,1.45,22178.66,17407.63,22.74,0.0,4748.29,4701.62,46.67,0.0,organic,2016,Houston +23,2016-07-17,1.39,20729.16,16079.93,30.3,0.0,4618.93,4578.93,40.0,0.0,organic,2016,Houston +24,2016-07-10,1.2,25644.01,14763.71,41.96,0.0,10838.34,10769.58,68.76,0.0,organic,2016,Houston +25,2016-07-03,1.29,15452.08,9887.91,49.34,0.0,5514.83,5392.05,122.78,0.0,organic,2016,Houston +26,2016-06-26,1.32,14968.56,9384.38,39.92,0.0,5544.26,4949.96,594.3,0.0,organic,2016,Houston +27,2016-06-19,1.13,17848.83,9746.5,55.2,0.0,8047.13,4002.17,4044.96,0.0,organic,2016,Houston +28,2016-06-12,1.05,19398.78,8780.1,51.55,0.0,10567.13,9910.16,656.97,0.0,organic,2016,Houston +29,2016-06-05,1.05,20914.8,9052.29,84.02,0.0,11778.49,9907.74,1870.75,0.0,organic,2016,Houston +30,2016-05-29,0.96,28717.52,12198.1,72.56,0.0,16446.86,14854.83,1592.03,0.0,organic,2016,Houston +31,2016-05-22,0.97,28571.29,10630.19,66.78,0.0,17874.32,14837.35,3036.97,0.0,organic,2016,Houston +32,2016-05-15,1.0,22900.08,7829.0,40.07,0.0,15031.01,10087.16,4943.85,0.0,organic,2016,Houston +33,2016-05-08,1.04,20458.56,7355.94,26.73,0.0,13075.89,6977.83,6098.06,0.0,organic,2016,Houston +34,2016-05-01,1.1,16297.47,5949.1,32.49,0.0,10315.88,9033.37,1282.51,0.0,organic,2016,Houston +35,2016-04-24,1.07,15724.92,5900.79,68.56,0.0,9755.57,5786.88,3968.69,0.0,organic,2016,Houston +36,2016-04-17,1.11,16685.6,5531.72,51.15,0.0,11102.73,7146.6,3956.13,0.0,organic,2016,Houston +37,2016-04-10,1.2,13926.61,6289.57,37.68,0.0,7599.36,5796.76,1802.6,0.0,organic,2016,Houston +38,2016-04-03,1.18,12965.74,6048.13,46.83,0.0,6870.78,4963.28,1907.5,0.0,organic,2016,Houston +39,2016-03-27,1.24,12911.19,5639.73,450.28,0.0,6821.18,4669.85,2151.33,0.0,organic,2016,Houston +40,2016-03-20,1.29,11260.96,5689.85,77.65,7.39,5486.07,4171.43,1314.64,0.0,organic,2016,Houston +41,2016-03-13,1.25,13002.96,7387.57,79.1,0.0,5536.29,4624.65,911.64,0.0,organic,2016,Houston +42,2016-03-06,1.17,14320.97,7377.36,60.41,0.0,6883.2,6085.81,797.39,0.0,organic,2016,Houston +43,2016-02-28,1.28,12784.14,6347.37,149.39,0.0,6287.38,6231.42,55.96,0.0,organic,2016,Houston +44,2016-02-21,1.28,13399.83,7088.11,52.61,0.0,6259.11,5175.32,1083.79,0.0,organic,2016,Houston +45,2016-02-14,1.24,14196.18,6478.08,52.39,0.0,7665.71,5084.44,2581.27,0.0,organic,2016,Houston +46,2016-02-07,1.37,12049.42,7098.05,77.31,0.0,4874.06,4146.94,727.12,0.0,organic,2016,Houston +47,2016-01-31,1.44,10657.65,7059.86,63.08,0.0,3534.71,3528.04,6.67,0.0,organic,2016,Houston +48,2016-01-24,1.38,10504.4,5289.88,111.58,0.0,5102.94,5096.27,6.67,0.0,organic,2016,Houston +49,2016-01-17,1.31,11306.09,6398.07,99.57,0.0,4808.45,4808.45,0.0,0.0,organic,2016,Houston +50,2016-01-10,1.33,10100.44,4217.68,38.32,0.0,5844.44,5837.12,7.32,0.0,organic,2016,Houston +51,2016-01-03,1.36,9643.77,4233.76,53.79,0.0,5356.22,5288.48,67.74,0.0,organic,2016,Houston +0,2016-12-25,1.62,2583.94,114.51,1052.73,0.0,1416.7,1027.03,389.67,0.0,organic,2016,Indianapolis +1,2016-12-18,1.45,3202.84,110.89,1166.65,0.0,1925.3,704.82,1220.48,0.0,organic,2016,Indianapolis +2,2016-12-11,1.09,6248.59,112.62,1368.33,0.0,4767.64,881.26,3886.38,0.0,organic,2016,Indianapolis +3,2016-12-04,1.63,3346.65,143.41,1277.96,0.0,1925.28,631.05,1294.23,0.0,organic,2016,Indianapolis +4,2016-11-27,1.66,2862.28,120.71,984.33,0.0,1757.24,614.85,1142.39,0.0,organic,2016,Indianapolis +5,2016-11-20,1.59,3377.88,149.77,1228.83,0.0,1999.28,883.13,1116.15,0.0,organic,2016,Indianapolis +6,2016-11-13,1.71,3392.09,202.52,1130.18,0.0,2059.39,1034.83,1024.56,0.0,organic,2016,Indianapolis +7,2016-11-06,1.81,4057.85,203.83,1663.45,0.0,2190.57,1264.44,926.13,0.0,organic,2016,Indianapolis +8,2016-10-30,2.1,3125.55,150.44,1634.81,0.0,1340.3,1054.45,285.85,0.0,organic,2016,Indianapolis +9,2016-10-23,1.58,3929.64,145.73,1419.02,0.0,2364.89,581.97,1782.92,0.0,organic,2016,Indianapolis +10,2016-10-16,1.48,3492.62,161.89,1522.71,0.0,1808.02,737.01,1071.01,0.0,organic,2016,Indianapolis +11,2016-10-09,1.48,3479.15,133.02,1800.96,0.0,1545.17,677.65,867.52,0.0,organic,2016,Indianapolis +12,2016-10-02,1.9,2988.84,149.34,1570.51,0.0,1268.99,842.78,426.21,0.0,organic,2016,Indianapolis +13,2016-09-25,1.97,3007.07,177.86,1376.52,0.0,1452.69,793.58,659.11,0.0,organic,2016,Indianapolis +14,2016-09-18,1.96,2874.38,242.62,1484.61,0.0,1147.15,514.7,632.45,0.0,organic,2016,Indianapolis +15,2016-09-11,1.59,4864.91,425.0,1395.3,0.0,3044.61,1494.93,1549.68,0.0,organic,2016,Indianapolis +16,2016-09-04,1.56,5235.64,714.79,1827.78,0.0,2693.07,1221.61,1471.46,0.0,organic,2016,Indianapolis +17,2016-08-28,1.25,6033.01,528.46,1507.87,0.0,3996.68,1002.92,2993.76,0.0,organic,2016,Indianapolis +18,2016-08-21,1.59,4533.5,454.13,1589.22,0.0,2490.15,1321.24,1168.91,0.0,organic,2016,Indianapolis +19,2016-08-14,1.67,4592.37,390.91,1704.93,0.0,2496.53,1353.5,1143.03,0.0,organic,2016,Indianapolis +20,2016-08-07,1.7,4430.65,466.83,1188.49,0.0,2775.33,1296.76,1478.57,0.0,organic,2016,Indianapolis +21,2016-07-31,1.8,3264.33,303.49,1335.23,0.0,1625.61,1386.67,238.94,0.0,organic,2016,Indianapolis +22,2016-07-24,1.71,3652.3,368.81,1438.47,0.0,1845.02,1444.45,400.57,0.0,organic,2016,Indianapolis +23,2016-07-17,1.19,5015.85,440.56,1496.9,0.0,3078.39,1304.59,1773.8,0.0,organic,2016,Indianapolis +24,2016-07-10,1.11,5370.5,429.9,1722.68,0.0,3217.92,1233.2,1984.72,0.0,organic,2016,Indianapolis +25,2016-07-03,1.39,4245.31,432.92,1678.17,0.0,2134.22,1171.51,962.71,0.0,organic,2016,Indianapolis +26,2016-06-26,1.39,4164.06,414.49,1463.24,0.0,2286.33,1288.33,998.0,0.0,organic,2016,Indianapolis +27,2016-06-19,1.37,4509.52,248.19,1839.21,0.0,2422.12,1186.19,1235.93,0.0,organic,2016,Indianapolis +28,2016-06-12,1.34,4358.39,183.1,1784.76,0.0,2390.53,1032.78,1357.75,0.0,organic,2016,Indianapolis +29,2016-06-05,1.25,3998.08,141.1,1769.38,0.0,2087.6,1003.89,1083.71,0.0,organic,2016,Indianapolis +30,2016-05-29,1.33,4126.64,166.85,1890.42,0.0,2069.37,1428.58,640.79,0.0,organic,2016,Indianapolis +31,2016-05-22,1.36,3722.4,106.92,1841.73,0.0,1773.75,864.81,908.94,0.0,organic,2016,Indianapolis +32,2016-05-15,1.26,4772.79,72.55,1915.81,0.0,2784.43,1416.26,1368.17,0.0,organic,2016,Indianapolis +33,2016-05-08,1.3,3820.07,120.0,1964.14,26.94,1708.99,772.63,936.36,0.0,organic,2016,Indianapolis +34,2016-05-01,1.38,4413.98,144.42,1825.03,0.0,2444.53,1424.01,1020.52,0.0,organic,2016,Indianapolis +35,2016-04-24,1.27,4243.55,131.5,1812.03,0.0,2300.02,1236.12,1063.9,0.0,organic,2016,Indianapolis +36,2016-04-17,1.36,4133.9,105.66,1517.28,2.39,2508.57,1540.29,968.28,0.0,organic,2016,Indianapolis +37,2016-04-10,1.15,3566.21,91.87,1291.12,0.0,2183.22,970.46,1212.76,0.0,organic,2016,Indianapolis +38,2016-04-03,1.54,2278.47,105.56,1178.62,0.0,994.29,650.0,344.29,0.0,organic,2016,Indianapolis +39,2016-03-27,1.4,3215.76,101.0,1477.5,0.0,1637.26,663.33,973.93,0.0,organic,2016,Indianapolis +40,2016-03-20,1.26,3222.83,124.06,1194.0,0.0,1904.77,856.67,1048.1,0.0,organic,2016,Indianapolis +41,2016-03-13,1.39,2555.93,134.82,1110.28,0.0,1310.83,813.33,497.5,0.0,organic,2016,Indianapolis +42,2016-03-06,1.48,1831.89,250.68,1046.17,0.0,535.04,260.13,274.91,0.0,organic,2016,Indianapolis +43,2016-02-28,1.6,1901.93,347.96,1077.57,0.0,476.4,433.33,43.07,0.0,organic,2016,Indianapolis +44,2016-02-21,1.53,2235.13,320.85,1193.27,0.0,721.01,470.0,251.01,0.0,organic,2016,Indianapolis +45,2016-02-14,1.24,3182.4,368.91,1277.17,0.0,1536.32,590.0,946.32,0.0,organic,2016,Indianapolis +46,2016-02-07,1.37,3025.26,363.35,1459.7,3.32,1198.89,533.33,665.56,0.0,organic,2016,Indianapolis +47,2016-01-31,1.38,2450.94,281.67,1119.38,0.0,1049.89,516.67,533.22,0.0,organic,2016,Indianapolis +48,2016-01-24,1.13,3585.33,334.99,1406.09,9.92,1834.33,553.33,1281.0,0.0,organic,2016,Indianapolis +49,2016-01-17,1.51,2169.25,315.5,1240.35,8.83,604.57,283.33,321.24,0.0,organic,2016,Indianapolis +50,2016-01-10,1.51,2816.92,458.88,1268.87,0.0,1089.17,646.67,442.5,0.0,organic,2016,Indianapolis +51,2016-01-03,1.53,2057.45,229.67,1187.16,0.0,640.62,304.07,336.55,0.0,organic,2016,Indianapolis +0,2016-12-25,1.27,3439.46,259.84,79.86,11.92,3087.84,1003.33,2084.51,0.0,organic,2016,Jacksonville +1,2016-12-18,1.27,2966.96,257.99,57.07,2.38,2649.52,596.67,2052.85,0.0,organic,2016,Jacksonville +2,2016-12-11,1.34,4102.26,346.19,35.57,4.74,3715.76,1173.33,2542.43,0.0,organic,2016,Jacksonville +3,2016-12-04,1.35,3690.99,286.08,33.1,10.64,3361.17,836.66,2524.51,0.0,organic,2016,Jacksonville +4,2016-11-27,1.43,3212.61,287.21,55.43,18.87,2851.1,1016.67,1834.43,0.0,organic,2016,Jacksonville +5,2016-11-20,1.49,4653.39,400.69,88.39,5.89,4158.42,1536.67,2621.75,0.0,organic,2016,Jacksonville +6,2016-11-13,1.47,4890.43,446.05,65.91,11.77,4366.7,1503.33,2863.37,0.0,organic,2016,Jacksonville +7,2016-11-06,1.43,3789.61,312.69,69.36,4.7,3402.86,650.0,2752.86,0.0,organic,2016,Jacksonville +8,2016-10-30,1.41,4355.53,450.59,133.77,3.52,3767.65,250.0,3517.65,0.0,organic,2016,Jacksonville +9,2016-10-23,1.4,2998.64,352.97,95.3,1.18,2549.19,0.0,2549.19,0.0,organic,2016,Jacksonville +10,2016-10-16,1.36,3022.99,435.32,83.76,5.9,2498.01,166.67,2331.34,0.0,organic,2016,Jacksonville +11,2016-10-09,1.98,2187.6,1278.95,60.28,1.18,847.19,180.0,667.19,0.0,organic,2016,Jacksonville +12,2016-10-02,2.24,1990.61,1454.6,92.32,8.28,435.41,390.0,45.41,0.0,organic,2016,Jacksonville +13,2016-09-25,1.46,4250.85,803.21,73.13,0.0,3374.51,860.0,2514.51,0.0,organic,2016,Jacksonville +14,2016-09-18,1.36,5115.54,690.53,77.79,3.54,4343.68,713.33,3630.35,0.0,organic,2016,Jacksonville +15,2016-09-11,1.87,2614.82,1225.28,71.87,3.53,1314.14,923.33,390.81,0.0,organic,2016,Jacksonville +16,2016-09-04,1.87,2670.47,1152.74,97.73,0.0,1420.0,1416.67,3.33,0.0,organic,2016,Jacksonville +17,2016-08-28,1.73,2400.5,750.69,90.6,5.88,1553.33,1550.0,3.33,0.0,organic,2016,Jacksonville +18,2016-08-21,2.0,3378.48,1860.99,108.09,9.4,1400.0,1370.0,30.0,0.0,organic,2016,Jacksonville +19,2016-08-14,2.1,3471.82,2096.45,184.98,23.72,1166.67,1156.67,10.0,0.0,organic,2016,Jacksonville +20,2016-08-07,2.01,4141.49,2307.13,134.95,62.74,1636.67,1620.0,16.67,0.0,organic,2016,Jacksonville +21,2016-07-31,1.92,3706.68,1943.32,112.23,37.8,1613.33,1593.33,20.0,0.0,organic,2016,Jacksonville +22,2016-07-24,2.17,4109.11,2932.78,193.15,33.18,950.0,940.0,10.0,0.0,organic,2016,Jacksonville +23,2016-07-17,2.11,3794.69,2538.4,191.36,41.6,1023.33,1023.33,0.0,0.0,organic,2016,Jacksonville +24,2016-07-10,1.68,3843.3,1452.19,79.88,8.35,2302.88,2302.88,0.0,0.0,organic,2016,Jacksonville +25,2016-07-03,1.26,6402.23,1794.82,126.06,8.4,4472.95,4472.95,0.0,0.0,organic,2016,Jacksonville +26,2016-06-26,1.72,3794.29,2437.58,118.08,25.3,1213.33,1213.33,0.0,0.0,organic,2016,Jacksonville +27,2016-06-19,1.71,3747.81,2375.35,118.56,20.57,1233.33,1233.33,0.0,0.0,organic,2016,Jacksonville +28,2016-06-12,1.73,3772.07,2461.73,117.05,9.96,1183.33,1183.33,0.0,0.0,organic,2016,Jacksonville +29,2016-06-05,1.64,3604.28,1979.42,135.7,2.49,1486.67,1486.67,0.0,0.0,organic,2016,Jacksonville +30,2016-05-29,1.63,4110.96,2183.27,164.4,9.96,1753.33,1753.33,0.0,0.0,organic,2016,Jacksonville +31,2016-05-22,1.66,3862.88,2130.3,142.19,13.72,1576.67,1576.67,0.0,0.0,organic,2016,Jacksonville +32,2016-05-15,1.76,3079.43,2042.3,140.46,0.0,896.67,896.67,0.0,0.0,organic,2016,Jacksonville +33,2016-05-08,1.7,3174.26,1850.51,155.45,4.97,1163.33,1163.33,0.0,0.0,organic,2016,Jacksonville +34,2016-05-01,1.65,3584.65,2476.8,224.15,13.7,870.0,870.0,0.0,0.0,organic,2016,Jacksonville +35,2016-04-24,1.64,3650.65,1906.63,95.77,14.92,1633.33,1633.33,0.0,0.0,organic,2016,Jacksonville +36,2016-04-17,1.73,3452.46,2174.85,170.16,7.45,1100.0,1100.0,0.0,0.0,organic,2016,Jacksonville +37,2016-04-10,1.62,3379.11,1917.91,102.98,14.89,1343.33,1343.33,0.0,0.0,organic,2016,Jacksonville +38,2016-04-03,1.66,3632.75,2203.04,123.98,12.4,1293.33,1293.33,0.0,0.0,organic,2016,Jacksonville +39,2016-03-27,1.73,2778.43,1827.82,131.27,26.01,793.33,793.33,0.0,0.0,organic,2016,Jacksonville +40,2016-03-20,1.58,3783.94,2000.1,119.76,7.41,1656.67,1656.67,0.0,0.0,organic,2016,Jacksonville +41,2016-03-13,1.7,3152.41,2038.98,126.9,9.86,976.67,976.67,0.0,0.0,organic,2016,Jacksonville +42,2016-03-06,1.83,2650.6,1984.85,111.88,17.21,536.66,533.33,3.33,0.0,organic,2016,Jacksonville +43,2016-02-28,1.8,2362.13,1675.73,82.21,20.86,583.33,583.33,0.0,0.0,organic,2016,Jacksonville +44,2016-02-21,1.76,2679.98,1793.68,76.87,6.1,803.33,803.33,0.0,0.0,organic,2016,Jacksonville +45,2016-02-14,1.73,2550.87,1696.11,51.32,13.44,790.0,790.0,0.0,0.0,organic,2016,Jacksonville +46,2016-02-07,1.7,2292.78,1370.93,59.67,12.18,850.0,850.0,0.0,0.0,organic,2016,Jacksonville +47,2016-01-31,1.74,2697.3,1724.8,84.91,10.92,876.67,876.67,0.0,0.0,organic,2016,Jacksonville +48,2016-01-24,1.66,2934.24,1638.49,59.38,9.7,1226.67,1226.67,0.0,0.0,organic,2016,Jacksonville +49,2016-01-17,1.8,2613.23,1828.5,113.83,10.9,660.0,660.0,0.0,0.0,organic,2016,Jacksonville +50,2016-01-10,1.76,2737.65,1732.15,78.13,24.04,903.33,903.33,0.0,0.0,organic,2016,Jacksonville +51,2016-01-03,1.51,5893.02,4852.89,163.43,16.7,860.0,860.0,0.0,0.0,organic,2016,Jacksonville +0,2016-12-25,1.35,9519.43,1090.88,2506.87,0.0,5921.68,5810.1,111.58,0.0,organic,2016,LasVegas +1,2016-12-18,1.42,7232.71,913.95,2218.81,0.0,4099.95,4088.72,11.23,0.0,organic,2016,LasVegas +2,2016-12-11,1.76,6257.58,750.54,2889.92,0.0,2617.12,2584.81,32.31,0.0,organic,2016,LasVegas +3,2016-12-04,2.17,4786.42,937.63,2371.9,0.0,1476.89,1360.79,116.1,0.0,organic,2016,LasVegas +4,2016-11-27,1.74,6539.69,838.75,2060.12,0.0,3640.82,3634.77,6.05,0.0,organic,2016,LasVegas +5,2016-11-20,1.83,6717.05,885.91,2371.08,0.0,3460.06,3460.06,0.0,0.0,organic,2016,LasVegas +6,2016-11-13,1.51,11117.12,1608.57,3103.52,0.0,6405.03,6353.31,51.72,0.0,organic,2016,LasVegas +7,2016-11-06,1.94,6815.62,1815.17,3164.88,0.0,1835.57,1827.56,8.01,0.0,organic,2016,LasVegas +8,2016-10-30,2.76,3238.28,378.75,2652.66,0.0,206.87,177.79,29.08,0.0,organic,2016,LasVegas +9,2016-10-23,2.3,2988.4,267.02,2457.1,0.0,264.28,264.28,0.0,0.0,organic,2016,LasVegas +10,2016-10-16,2.85,4317.31,707.37,2855.9,0.0,754.04,732.85,21.19,0.0,organic,2016,LasVegas +11,2016-10-09,2.09,5771.2,1016.77,2518.91,0.0,2235.52,2219.25,16.27,0.0,organic,2016,LasVegas +12,2016-10-02,3.03,3714.71,296.71,2699.8,0.0,718.2,718.2,0.0,0.0,organic,2016,LasVegas +13,2016-09-25,2.91,4103.97,409.65,2810.06,0.0,884.26,884.26,0.0,0.0,organic,2016,LasVegas +14,2016-09-18,2.04,6494.77,1493.45,2657.83,0.0,2343.49,2279.81,63.68,0.0,organic,2016,LasVegas +15,2016-09-11,2.2,7662.66,2324.12,3252.22,0.0,2086.32,613.88,1472.44,0.0,organic,2016,LasVegas +16,2016-09-04,2.02,9266.73,2868.88,3199.25,0.0,3198.6,709.82,2488.78,0.0,organic,2016,LasVegas +17,2016-08-28,2.02,8132.79,2503.68,2823.44,0.0,2805.67,411.15,2394.52,0.0,organic,2016,LasVegas +18,2016-08-21,1.99,8861.21,2876.49,2719.84,0.0,3264.88,458.25,2806.63,0.0,organic,2016,LasVegas +19,2016-08-14,2.14,8267.22,2592.15,2647.51,0.0,3027.56,455.36,2572.2,0.0,organic,2016,LasVegas +20,2016-08-07,2.16,9591.2,3176.01,3095.01,0.0,3320.18,348.25,2971.93,0.0,organic,2016,LasVegas +21,2016-07-31,2.27,9953.15,2964.22,3659.42,0.0,3329.51,420.58,2908.93,0.0,organic,2016,LasVegas +22,2016-07-24,2.3,10298.23,3346.0,3970.45,0.0,2981.78,591.78,2390.0,0.0,organic,2016,LasVegas +23,2016-07-17,2.25,10784.6,3690.4,3871.61,0.0,3222.59,766.55,2456.04,0.0,organic,2016,LasVegas +24,2016-07-10,1.9,13234.04,4462.78,4630.0,0.0,4141.26,676.76,3464.5,0.0,organic,2016,LasVegas +25,2016-07-03,1.59,15607.26,5586.02,5478.16,0.0,4543.08,438.23,4104.85,0.0,organic,2016,LasVegas +26,2016-06-26,1.56,13868.58,4663.99,5947.35,0.0,3257.24,669.63,2587.61,0.0,organic,2016,LasVegas +27,2016-06-19,1.52,13092.1,5180.03,6593.84,0.0,1318.23,563.36,754.87,0.0,organic,2016,LasVegas +28,2016-06-12,1.42,14204.88,7218.45,5873.68,0.0,1112.75,470.15,642.6,0.0,organic,2016,LasVegas +29,2016-06-05,1.41,14224.73,5353.51,6571.59,0.0,2299.63,765.05,1534.58,0.0,organic,2016,LasVegas +30,2016-05-29,1.35,22983.35,3737.94,16569.88,0.0,2675.53,695.76,1979.77,0.0,organic,2016,LasVegas +31,2016-05-22,1.38,17710.51,4850.71,8099.11,0.0,4760.69,496.56,4264.13,0.0,organic,2016,LasVegas +32,2016-05-15,1.2,28101.68,6186.61,15446.24,0.0,6468.83,433.09,6035.74,0.0,organic,2016,LasVegas +33,2016-05-08,1.31,13681.17,4543.59,5592.9,0.0,3544.68,416.67,3128.01,0.0,organic,2016,LasVegas +34,2016-05-01,1.51,13228.93,4463.69,6588.39,0.0,2176.85,786.59,1390.26,0.0,organic,2016,LasVegas +35,2016-04-24,1.36,19698.45,2546.13,13800.58,0.0,3351.74,744.93,2606.81,0.0,organic,2016,LasVegas +36,2016-04-17,1.34,20001.54,2830.14,13556.57,0.0,3614.83,347.32,3267.51,0.0,organic,2016,LasVegas +37,2016-04-10,1.22,13473.17,3233.23,4726.02,0.0,5513.92,4028.39,1485.53,0.0,organic,2016,LasVegas +38,2016-04-03,1.25,12425.65,3094.18,4671.88,0.0,4659.59,3985.21,674.38,0.0,organic,2016,LasVegas +39,2016-03-27,1.41,10187.56,3062.51,4885.53,0.0,2239.52,1906.43,333.09,0.0,organic,2016,LasVegas +40,2016-03-20,1.35,9463.68,3101.56,4112.47,0.0,2249.65,2185.92,63.73,0.0,organic,2016,LasVegas +41,2016-03-13,1.33,9530.49,1955.94,4330.59,0.0,3243.96,3192.97,50.99,0.0,organic,2016,LasVegas +42,2016-03-06,1.3,11858.2,2926.28,3544.22,0.0,5387.7,5100.95,286.75,0.0,organic,2016,LasVegas +43,2016-02-28,1.29,10997.51,2077.08,3518.48,0.0,5401.95,5374.07,27.88,0.0,organic,2016,LasVegas +44,2016-02-21,1.44,8237.96,1481.86,3293.97,0.0,3462.13,2833.52,628.61,0.0,organic,2016,LasVegas +45,2016-02-14,1.28,9595.71,1481.93,3314.57,0.0,4799.21,3443.29,1355.92,0.0,organic,2016,LasVegas +46,2016-02-07,1.41,7720.32,1466.84,2881.87,0.0,3371.61,2968.56,403.05,0.0,organic,2016,LasVegas +47,2016-01-31,1.68,6797.74,1776.21,3076.64,0.0,1944.89,1880.81,64.08,0.0,organic,2016,LasVegas +48,2016-01-24,1.47,9297.5,1706.27,4796.37,0.0,2794.86,2788.43,6.43,0.0,organic,2016,LasVegas +49,2016-01-17,1.47,8854.46,2067.07,4156.83,0.0,2630.56,2611.22,19.34,0.0,organic,2016,LasVegas +50,2016-01-10,1.41,8480.1,1630.03,3858.64,0.0,2991.43,2984.97,6.46,0.0,organic,2016,LasVegas +51,2016-01-03,1.69,7552.52,1709.77,3384.63,0.0,2458.12,2435.48,22.64,0.0,organic,2016,LasVegas +0,2016-12-25,1.17,81458.1,11324.9,25698.37,0.0,44434.83,37064.95,7369.88,0.0,organic,2016,LosAngeles +1,2016-12-18,1.29,75362.42,8328.2,30745.08,101.67,36187.47,31983.42,4204.05,0.0,organic,2016,LosAngeles +2,2016-12-11,1.31,77692.93,8725.85,29110.77,45.38,39810.93,31526.04,8284.89,0.0,organic,2016,LosAngeles +3,2016-12-04,1.52,68500.56,9917.23,25081.27,10.96,33491.1,30856.88,2634.22,0.0,organic,2016,LosAngeles +4,2016-11-27,1.64,63734.67,7949.89,22176.16,6.27,33602.35,28969.13,4633.22,0.0,organic,2016,LosAngeles +5,2016-11-20,1.67,60249.61,6503.09,18671.5,9.41,35065.61,30815.31,4250.3,0.0,organic,2016,LosAngeles +6,2016-11-13,1.7,66733.93,8552.62,21195.25,7.84,36978.22,29706.65,7271.57,0.0,organic,2016,LosAngeles +7,2016-11-06,1.94,64388.86,9018.29,23288.44,0.0,32082.13,21367.19,10714.94,0.0,organic,2016,LosAngeles +8,2016-10-30,2.1,48849.52,9327.57,19918.58,1.57,19601.8,11425.53,8176.27,0.0,organic,2016,LosAngeles +9,2016-10-23,2.44,35647.66,5614.53,22373.4,0.0,7659.73,7620.35,39.38,0.0,organic,2016,LosAngeles +10,2016-10-16,1.85,56666.92,8637.11,27140.31,0.0,20889.5,20720.21,169.29,0.0,organic,2016,LosAngeles +11,2016-10-09,1.58,72073.73,10127.13,23301.08,12.66,38632.86,38000.26,632.6,0.0,organic,2016,LosAngeles +12,2016-10-02,1.52,76112.99,10357.01,22863.79,3.17,42889.02,37434.0,5455.02,0.0,organic,2016,LosAngeles +13,2016-09-25,1.62,62154.36,7132.44,25173.2,0.0,29848.72,25361.07,4487.65,0.0,organic,2016,LosAngeles +14,2016-09-18,1.47,74445.93,13098.28,24958.57,0.0,36389.08,31194.03,5195.05,0.0,organic,2016,LosAngeles +15,2016-09-11,1.2,109755.53,14941.57,36981.61,23.87,57808.48,56410.52,1397.96,0.0,organic,2016,LosAngeles +16,2016-09-04,1.29,106844.47,13910.17,28437.88,0.0,64496.42,62061.45,2434.97,0.0,organic,2016,LosAngeles +17,2016-08-28,1.26,104270.76,14056.73,25916.53,6.38,64291.12,63624.45,666.67,0.0,organic,2016,LosAngeles +18,2016-08-21,1.19,114354.69,19567.47,23068.15,3.2,71715.87,71174.26,541.61,0.0,organic,2016,LosAngeles +19,2016-08-14,1.2,131165.91,18708.27,27837.86,28.79,84590.99,79648.93,4942.06,0.0,organic,2016,LosAngeles +20,2016-08-07,1.14,130613.45,13657.37,25621.52,0.0,91334.56,72770.01,18564.55,0.0,organic,2016,LosAngeles +21,2016-07-31,1.21,115313.85,14654.26,28278.26,1.6,72379.73,70166.73,2213.0,0.0,organic,2016,LosAngeles +22,2016-07-24,1.21,111080.96,14249.95,27897.64,20.74,68912.63,61674.03,7238.6,0.0,organic,2016,LosAngeles +23,2016-07-17,1.23,114343.02,14443.34,30091.66,3.18,69804.84,69782.74,22.1,0.0,organic,2016,LosAngeles +24,2016-07-10,1.15,125690.61,21301.03,27011.26,9.53,77368.79,77225.89,142.9,0.0,organic,2016,LosAngeles +25,2016-07-03,1.23,116296.31,16982.26,37943.18,6.32,61364.55,59745.31,1619.24,0.0,organic,2016,LosAngeles +26,2016-06-26,1.18,112304.11,23280.48,34516.17,6.31,54501.15,54443.32,57.83,0.0,organic,2016,LosAngeles +27,2016-06-19,1.23,110087.71,15800.4,36039.49,11.01,58236.81,58189.62,47.19,0.0,organic,2016,LosAngeles +28,2016-06-12,1.15,106514.62,16790.67,34443.11,0.0,55280.84,55248.05,32.79,0.0,organic,2016,LosAngeles +29,2016-06-05,1.18,99717.99,17642.18,26736.0,7.74,55332.07,54949.32,382.75,0.0,organic,2016,LosAngeles +30,2016-05-29,1.11,111714.45,14878.34,30381.74,0.0,66454.37,66031.6,422.77,0.0,organic,2016,LosAngeles +31,2016-05-22,0.98,115978.52,14507.68,32012.84,0.0,69458.0,69453.71,4.29,0.0,organic,2016,LosAngeles +32,2016-05-15,1.14,108031.14,15403.16,30675.2,0.0,61952.78,61935.64,17.14,0.0,organic,2016,LosAngeles +33,2016-05-08,1.13,119123.05,11723.12,34690.14,0.0,72709.79,72600.22,109.57,0.0,organic,2016,LosAngeles +34,2016-05-01,1.11,102002.62,9913.94,29545.47,0.0,62543.21,62529.52,13.69,0.0,organic,2016,LosAngeles +35,2016-04-24,1.04,117010.57,11729.01,31942.24,0.0,73339.32,73262.37,76.95,0.0,organic,2016,LosAngeles +36,2016-04-17,1.01,106228.91,10528.54,24399.57,0.0,71300.8,70842.07,458.73,0.0,organic,2016,LosAngeles +37,2016-04-10,1.05,108798.33,10479.16,31798.45,0.0,66520.72,63788.0,2732.72,0.0,organic,2016,LosAngeles +38,2016-04-03,1.08,117966.34,11577.05,45515.68,0.0,60873.61,53603.7,7269.91,0.0,organic,2016,LosAngeles +39,2016-03-27,1.07,104358.7,8848.36,30213.25,3.07,65294.02,53904.69,11389.33,0.0,organic,2016,LosAngeles +40,2016-03-20,1.1,96605.4,9650.76,29926.72,3.07,57024.85,51792.12,5232.73,0.0,organic,2016,LosAngeles +41,2016-03-13,1.09,117245.31,11588.48,37583.32,0.0,68073.51,59198.13,8875.38,0.0,organic,2016,LosAngeles +42,2016-03-06,0.96,115143.8,10846.95,27074.16,3.07,77219.62,76838.15,381.47,0.0,organic,2016,LosAngeles +43,2016-02-28,0.96,128489.58,10893.74,32404.81,4.61,85186.42,84672.69,513.73,0.0,organic,2016,LosAngeles +44,2016-02-21,1.07,91664.08,9483.06,27925.49,7.69,54247.84,53008.59,1239.25,0.0,organic,2016,LosAngeles +45,2016-02-14,1.09,89422.16,7138.11,29178.56,90.94,53014.55,45117.48,7897.07,0.0,organic,2016,LosAngeles +46,2016-02-07,1.07,80943.91,7720.21,22562.0,37.04,50624.66,38739.27,11885.39,0.0,organic,2016,LosAngeles +47,2016-01-31,1.02,81433.73,9874.87,21594.16,80.34,49884.36,39705.53,10178.83,0.0,organic,2016,LosAngeles +48,2016-01-24,1.06,79706.09,8070.14,27332.04,0.0,44303.91,14074.29,30229.62,0.0,organic,2016,LosAngeles +49,2016-01-17,1.18,65863.8,10218.02,19372.67,0.0,36273.11,19708.1,16565.01,0.0,organic,2016,LosAngeles +50,2016-01-10,1.08,80027.43,11524.93,17132.02,0.0,51370.48,41151.84,10218.64,0.0,organic,2016,LosAngeles +51,2016-01-03,1.15,60896.62,11697.8,18392.56,0.0,30806.26,26300.54,4505.72,0.0,organic,2016,LosAngeles +0,2016-12-25,1.53,1619.79,16.42,910.47,0.0,692.9,406.67,286.23,0.0,organic,2016,Louisville +1,2016-12-18,1.23,2237.49,2.53,928.65,0.0,1306.31,433.33,872.98,0.0,organic,2016,Louisville +2,2016-12-11,1.16,1887.69,0.0,710.07,0.0,1177.62,363.34,814.28,0.0,organic,2016,Louisville +3,2016-12-04,1.28,2391.74,4.0,997.83,0.0,1389.91,396.67,993.24,0.0,organic,2016,Louisville +4,2016-11-27,1.26,3129.1,1.25,987.17,0.0,2140.68,566.67,1574.01,0.0,organic,2016,Louisville +5,2016-11-20,0.93,4880.21,6.76,1278.83,0.0,3594.62,613.33,2981.29,0.0,organic,2016,Louisville +6,2016-11-13,0.94,4559.57,0.0,1210.46,0.0,3349.11,410.56,2938.55,0.0,organic,2016,Louisville +7,2016-11-06,1.17,4143.28,0.0,1735.86,0.0,2407.42,343.34,2064.08,0.0,organic,2016,Louisville +8,2016-10-30,1.82,2038.12,1.27,1696.28,0.0,340.57,196.67,143.9,0.0,organic,2016,Louisville +9,2016-10-23,1.03,3422.91,5.11,1408.29,0.0,2009.51,126.67,1882.84,0.0,organic,2016,Louisville +10,2016-10-16,1.24,2470.03,12.88,1256.9,0.0,1200.25,170.0,1030.25,0.0,organic,2016,Louisville +11,2016-10-09,1.08,4017.83,0.0,1676.0,0.0,2341.83,273.33,2068.5,0.0,organic,2016,Louisville +12,2016-10-02,1.87,1610.43,4.0,1353.25,0.0,253.18,226.67,26.51,0.0,organic,2016,Louisville +13,2016-09-25,1.81,1727.77,0.0,1385.64,0.0,342.13,263.34,78.79,0.0,organic,2016,Louisville +14,2016-09-18,1.31,2194.01,5.22,1254.23,0.0,934.56,80.0,854.56,0.0,organic,2016,Louisville +15,2016-09-11,1.07,3778.51,1.31,1380.08,0.0,2397.12,310.0,2087.12,0.0,organic,2016,Louisville +16,2016-09-04,1.04,4804.36,1.31,1791.76,0.0,3011.29,353.33,2657.96,0.0,organic,2016,Louisville +17,2016-08-28,1.23,3998.13,7.91,2027.99,0.0,1962.23,460.0,1502.23,0.0,organic,2016,Louisville +18,2016-08-21,1.53,3132.72,18.62,2366.87,0.0,747.23,443.33,303.9,0.0,organic,2016,Louisville +19,2016-08-14,1.59,3017.94,0.0,2276.44,0.0,741.5,300.0,441.5,0.0,organic,2016,Louisville +20,2016-08-07,1.32,3614.21,1.33,1449.64,0.0,2163.24,866.67,1296.57,0.0,organic,2016,Louisville +21,2016-07-31,1.3,3887.95,2.68,1677.47,0.0,2207.8,676.67,1531.13,0.0,organic,2016,Louisville +22,2016-07-24,1.8,2109.9,2.68,1508.95,0.0,598.27,336.67,261.6,0.0,organic,2016,Louisville +23,2016-07-17,1.26,2918.73,6.67,1366.68,0.0,1545.38,210.0,1335.38,0.0,organic,2016,Louisville +24,2016-07-10,1.25,3026.31,5.33,1700.78,0.0,1320.2,166.67,1153.53,0.0,organic,2016,Louisville +25,2016-07-03,1.05,3479.9,0.0,1644.42,0.0,1835.48,133.33,1702.15,0.0,organic,2016,Louisville +26,2016-06-26,1.24,3244.63,0.0,1754.77,0.0,1489.86,123.33,1366.53,0.0,organic,2016,Louisville +27,2016-06-19,0.85,5739.09,3.0,2053.24,0.0,3682.85,150.0,3532.85,0.0,organic,2016,Louisville +28,2016-06-12,1.31,3592.49,0.0,2215.36,0.0,1377.13,160.0,1217.13,0.0,organic,2016,Louisville +29,2016-06-05,1.19,3028.17,0.0,1339.64,0.0,1688.53,111.23,1577.3,0.0,organic,2016,Louisville +30,2016-05-29,1.5,1972.92,0.0,1239.21,0.0,733.71,203.33,530.38,0.0,organic,2016,Louisville +31,2016-05-22,1.28,2178.13,0.0,1117.21,0.0,1060.92,190.0,870.92,0.0,organic,2016,Louisville +32,2016-05-15,1.48,2477.92,0.0,1268.34,0.0,1209.58,357.89,851.69,0.0,organic,2016,Louisville +33,2016-05-08,1.47,1825.53,1.25,1161.26,0.0,663.02,115.48,547.54,0.0,organic,2016,Louisville +34,2016-05-01,1.35,2389.94,4.98,1190.05,0.0,1194.91,324.22,870.69,0.0,organic,2016,Louisville +35,2016-04-24,1.22,2986.31,15.89,1609.69,0.0,1360.73,339.17,1021.56,0.0,organic,2016,Louisville +36,2016-04-17,1.4,2863.95,0.0,2212.64,0.0,651.31,280.0,371.31,0.0,organic,2016,Louisville +37,2016-04-10,1.41,1886.22,4.9,1398.03,0.0,483.29,123.33,359.96,0.0,organic,2016,Louisville +38,2016-04-03,1.43,1682.3,4.88,1207.03,0.0,470.39,103.33,367.06,0.0,organic,2016,Louisville +39,2016-03-27,1.32,2136.97,4.86,1423.45,0.0,708.66,116.67,591.99,0.0,organic,2016,Louisville +40,2016-03-20,1.51,1883.74,0.0,1585.02,0.0,298.72,166.67,132.05,0.0,organic,2016,Louisville +41,2016-03-13,1.08,3691.76,0.0,1890.63,0.0,1801.13,200.0,1601.13,0.0,organic,2016,Louisville +42,2016-03-06,0.96,3033.63,23.01,1555.04,0.0,1455.58,70.0,1385.58,0.0,organic,2016,Louisville +43,2016-02-28,1.69,1081.74,15.76,1009.82,0.0,56.16,40.0,16.16,0.0,organic,2016,Louisville +44,2016-02-21,1.64,897.77,27.95,646.39,0.0,223.43,53.33,170.1,0.0,organic,2016,Louisville +45,2016-02-14,1.72,1023.51,31.66,831.75,0.0,160.1,16.67,143.43,0.0,organic,2016,Louisville +46,2016-02-07,1.59,1259.46,7.32,890.84,0.0,361.3,83.33,277.97,0.0,organic,2016,Louisville +47,2016-01-31,1.55,1293.69,6.12,781.54,0.0,506.03,186.67,319.36,0.0,organic,2016,Louisville +48,2016-01-24,1.49,1929.38,24.57,1229.56,0.0,675.25,216.67,458.58,0.0,organic,2016,Louisville +49,2016-01-17,1.85,1241.24,67.79,1037.86,0.0,135.59,0.0,135.59,0.0,organic,2016,Louisville +50,2016-01-10,1.68,1460.66,44.55,1039.39,0.0,376.72,0.0,376.72,0.0,organic,2016,Louisville +51,2016-01-03,1.74,1057.26,19.87,858.22,0.0,179.17,6.67,172.5,0.0,organic,2016,Louisville +0,2016-12-25,1.17,3329.28,18.38,24.23,0.0,3286.67,3286.67,0.0,0.0,organic,2016,MiamiFtLauderdale +1,2016-12-18,1.17,4166.56,3.7,16.19,0.0,4146.67,4146.67,0.0,0.0,organic,2016,MiamiFtLauderdale +2,2016-12-11,1.37,3471.8,13.41,28.39,0.0,3430.0,3430.0,0.0,0.0,organic,2016,MiamiFtLauderdale +3,2016-12-04,1.52,4028.26,2.0,16.26,0.0,4010.0,4010.0,0.0,0.0,organic,2016,MiamiFtLauderdale +4,2016-11-27,1.6,2084.95,15.57,2.71,0.0,2066.67,2036.67,30.0,0.0,organic,2016,MiamiFtLauderdale +5,2016-11-20,1.6,2157.46,6.44,17.68,0.0,2133.34,2113.34,20.0,0.0,organic,2016,MiamiFtLauderdale +6,2016-11-13,1.55,3847.1,6.81,13.62,0.0,3826.67,3800.0,26.67,0.0,organic,2016,MiamiFtLauderdale +7,2016-11-06,1.64,3297.5,10.89,29.95,0.0,3256.66,3243.33,13.33,0.0,organic,2016,MiamiFtLauderdale +8,2016-10-30,1.58,385.55,8.13,47.42,0.0,330.0,330.0,0.0,0.0,organic,2016,MiamiFtLauderdale +9,2016-10-23,1.58,542.85,8.14,81.38,0.0,453.33,450.0,3.33,0.0,organic,2016,MiamiFtLauderdale +10,2016-10-16,1.52,991.33,9.5,40.72,0.0,941.11,941.11,0.0,0.0,organic,2016,MiamiFtLauderdale +11,2016-10-09,1.45,1613.43,8.14,35.29,0.0,1570.0,1566.67,3.33,0.0,organic,2016,MiamiFtLauderdale +12,2016-10-02,1.49,472.82,10.5,18.99,0.0,443.33,440.0,3.33,0.0,organic,2016,MiamiFtLauderdale +13,2016-09-25,1.43,1041.31,16.55,20.32,0.0,1004.44,987.77,16.67,0.0,organic,2016,MiamiFtLauderdale +14,2016-09-18,1.36,3632.29,40.75,14.88,0.0,3576.66,3533.33,43.33,0.0,organic,2016,MiamiFtLauderdale +15,2016-09-11,1.36,3994.86,52.56,25.63,0.0,3916.67,3893.34,23.33,0.0,organic,2016,MiamiFtLauderdale +16,2016-09-04,1.36,6149.19,59.27,49.92,0.0,6040.0,5986.67,53.33,0.0,organic,2016,MiamiFtLauderdale +17,2016-08-28,1.36,3603.58,37.94,38.97,0.0,3526.67,3496.67,30.0,0.0,organic,2016,MiamiFtLauderdale +18,2016-08-21,1.34,5381.19,38.45,22.74,0.0,5320.0,5260.0,60.0,0.0,organic,2016,MiamiFtLauderdale +19,2016-08-14,1.34,6720.9,4.99,42.58,0.0,6673.33,6613.33,60.0,0.0,organic,2016,MiamiFtLauderdale +20,2016-08-07,1.33,3513.86,13.23,3.97,0.0,3496.66,3433.33,63.33,0.0,organic,2016,MiamiFtLauderdale +21,2016-07-31,1.22,4361.66,2.63,22.36,0.0,4336.67,4260.0,76.67,0.0,organic,2016,MiamiFtLauderdale +22,2016-07-24,1.19,6019.75,1.31,11.77,0.0,6006.67,5980.0,26.67,0.0,organic,2016,MiamiFtLauderdale +23,2016-07-17,1.33,4714.49,495.47,39.01,0.0,4180.01,4153.34,26.67,0.0,organic,2016,MiamiFtLauderdale +24,2016-07-10,1.49,4918.83,1223.55,28.48,0.0,3666.8,3616.8,50.0,0.0,organic,2016,MiamiFtLauderdale +25,2016-07-03,1.24,6525.8,1109.37,55.4,0.0,5361.03,5321.03,40.0,0.0,organic,2016,MiamiFtLauderdale +26,2016-06-26,1.39,4836.08,1526.49,62.92,0.0,3246.67,3226.67,20.0,0.0,organic,2016,MiamiFtLauderdale +27,2016-06-19,1.29,5180.22,977.06,48.63,0.0,4154.53,4144.53,10.0,0.0,organic,2016,MiamiFtLauderdale +28,2016-06-12,1.3,4524.0,948.33,25.68,0.0,3549.99,3536.66,13.33,0.0,organic,2016,MiamiFtLauderdale +29,2016-06-05,1.29,4859.13,952.74,6.39,0.0,3900.0,3880.0,20.0,0.0,organic,2016,MiamiFtLauderdale +30,2016-05-29,1.27,5931.42,851.52,16.57,0.0,5063.33,5043.33,20.0,0.0,organic,2016,MiamiFtLauderdale +31,2016-05-22,1.4,5366.43,843.16,33.27,0.0,4490.0,4486.67,3.33,0.0,organic,2016,MiamiFtLauderdale +32,2016-05-15,1.42,6346.82,757.35,34.54,0.0,5554.93,5548.26,6.67,0.0,organic,2016,MiamiFtLauderdale +33,2016-05-08,1.48,4317.01,932.93,14.08,0.0,3370.0,3363.33,6.67,0.0,organic,2016,MiamiFtLauderdale +34,2016-05-01,1.43,4107.48,667.74,6.41,0.0,3433.33,3430.0,3.33,0.0,organic,2016,MiamiFtLauderdale +35,2016-04-24,1.39,6498.57,1393.96,52.58,0.0,5052.03,5048.7,3.33,0.0,organic,2016,MiamiFtLauderdale +36,2016-04-17,1.57,2548.55,1072.9,11.55,0.0,1464.1,1464.1,0.0,0.0,organic,2016,MiamiFtLauderdale +37,2016-04-10,1.33,4177.97,1229.11,6.42,0.0,2942.44,2939.11,3.33,0.0,organic,2016,MiamiFtLauderdale +38,2016-04-03,1.32,4136.14,1191.05,18.01,0.0,2927.08,2923.75,3.33,0.0,organic,2016,MiamiFtLauderdale +39,2016-03-27,1.33,3982.06,1196.76,7.73,0.0,2777.57,2777.57,0.0,0.0,organic,2016,MiamiFtLauderdale +40,2016-03-20,1.33,3445.84,1044.24,11.6,0.0,2390.0,2390.0,0.0,0.0,organic,2016,MiamiFtLauderdale +41,2016-03-13,1.3,3678.06,935.58,9.03,0.0,2733.45,2726.78,6.67,0.0,organic,2016,MiamiFtLauderdale +42,2016-03-06,1.49,2403.4,980.58,7.75,0.0,1415.07,1401.74,13.33,0.0,organic,2016,MiamiFtLauderdale +43,2016-02-28,1.51,2199.14,845.57,11.64,0.0,1341.93,1305.26,36.67,0.0,organic,2016,MiamiFtLauderdale +44,2016-02-21,1.4,2774.54,726.48,2.58,0.0,2045.48,2042.15,3.33,0.0,organic,2016,MiamiFtLauderdale +45,2016-02-14,1.45,3336.03,1074.21,5.16,0.0,2256.66,2253.33,3.33,0.0,organic,2016,MiamiFtLauderdale +46,2016-02-07,1.44,3152.51,950.9,11.61,0.0,2190.0,2186.67,3.33,0.0,organic,2016,MiamiFtLauderdale +47,2016-01-31,1.54,1844.79,804.36,0.0,0.0,1040.43,1040.43,0.0,0.0,organic,2016,MiamiFtLauderdale +48,2016-01-24,1.42,3020.48,843.92,9.03,0.0,2167.53,2167.53,0.0,0.0,organic,2016,MiamiFtLauderdale +49,2016-01-17,1.49,2528.26,903.01,6.46,0.0,1618.79,1613.05,5.74,0.0,organic,2016,MiamiFtLauderdale +50,2016-01-10,1.52,4664.6,2068.15,32.27,0.0,2564.18,1341.37,1222.81,0.0,organic,2016,MiamiFtLauderdale +51,2016-01-03,1.24,15211.54,7202.5,76.06,0.0,7932.98,4887.58,3045.4,0.0,organic,2016,MiamiFtLauderdale +0,2016-12-25,1.68,72923.61,2716.25,30275.52,1628.46,38303.38,35684.99,2618.39,0.0,organic,2016,Midsouth +1,2016-12-18,1.46,77030.91,2684.3,29491.7,1695.12,43159.79,28795.8,14363.99,0.0,organic,2016,Midsouth +2,2016-12-11,1.46,86740.86,2260.62,30602.77,1559.35,52318.12,30817.33,21500.79,0.0,organic,2016,Midsouth +3,2016-12-04,1.59,83334.43,2355.76,31758.1,1320.46,47900.11,25168.71,22731.4,0.0,organic,2016,Midsouth +4,2016-11-27,1.7,86492.45,2136.81,31954.82,1694.84,50705.98,30998.32,19707.66,0.0,organic,2016,Midsouth +5,2016-11-20,1.46,113766.24,2098.8,35783.89,2138.95,73744.6,37946.97,35797.63,0.0,organic,2016,Midsouth +6,2016-11-13,1.53,106921.43,2504.28,37374.61,2201.69,64840.85,31432.23,33408.62,0.0,organic,2016,Midsouth +7,2016-11-06,1.48,134399.76,2602.81,46417.2,2433.05,82946.7,41924.85,41021.85,0.0,organic,2016,Midsouth +8,2016-10-30,1.78,97718.73,2087.74,57325.02,3894.51,34411.46,29295.75,5115.71,0.0,organic,2016,Midsouth +9,2016-10-23,1.37,125288.5,1801.17,52241.33,3232.49,68013.51,29612.36,38401.15,0.0,organic,2016,Midsouth +10,2016-10-16,1.49,111504.63,2607.62,47017.46,3100.01,58779.54,34376.07,24403.47,0.0,organic,2016,Midsouth +11,2016-10-09,1.34,136026.05,2819.48,50603.79,3177.77,79425.01,38449.53,40975.48,0.0,organic,2016,Midsouth +12,2016-10-02,1.86,89438.27,2371.95,47496.95,2342.29,37227.08,33589.15,3637.93,0.0,organic,2016,Midsouth +13,2016-09-25,1.74,107211.26,2302.63,47284.79,2195.54,55428.3,41196.46,14231.84,0.0,organic,2016,Midsouth +14,2016-09-18,1.74,108615.07,2300.06,45951.61,2199.06,58164.34,46367.63,11796.71,0.0,organic,2016,Midsouth +15,2016-09-11,1.5,140233.78,2524.78,45647.58,2429.03,89632.39,55646.68,33985.71,0.0,organic,2016,Midsouth +16,2016-09-04,1.52,139031.27,2643.48,52375.95,2926.09,81085.75,45683.66,35402.09,0.0,organic,2016,Midsouth +17,2016-08-28,1.51,121291.96,3600.52,49796.26,2525.75,65369.43,36632.95,28736.48,0.0,organic,2016,Midsouth +18,2016-08-21,1.65,122874.61,5502.21,51927.71,3270.04,62174.65,46959.29,15215.36,0.0,organic,2016,Midsouth +19,2016-08-14,1.62,112079.18,5109.11,54891.79,3514.77,48563.51,32201.94,16361.57,0.0,organic,2016,Midsouth +20,2016-08-07,1.49,134739.2,3361.9,61854.47,5109.87,64412.96,33686.14,30726.82,0.0,organic,2016,Midsouth +21,2016-07-31,1.56,113650.17,4140.74,54282.79,4197.48,51029.16,32863.37,18165.79,0.0,organic,2016,Midsouth +22,2016-07-24,1.75,103128.79,3832.04,54656.68,5019.61,39620.46,32405.39,7215.07,0.0,organic,2016,Midsouth +23,2016-07-17,1.59,118719.38,3707.88,49191.43,4810.24,61009.83,36568.73,24441.1,0.0,organic,2016,Midsouth +24,2016-07-10,1.6,105955.43,3422.52,52485.19,3438.89,46608.83,28960.77,17648.06,0.0,organic,2016,Midsouth +25,2016-07-03,1.52,106192.85,3151.7,49420.99,3476.87,50143.29,27090.98,23052.31,0.0,organic,2016,Midsouth +26,2016-06-26,1.51,106015.19,4531.56,46700.52,3113.92,51669.19,29798.55,21870.64,0.0,organic,2016,Midsouth +27,2016-06-19,1.36,112443.19,3446.9,49675.69,2822.9,56497.7,26422.55,30075.15,0.0,organic,2016,Midsouth +28,2016-06-12,1.46,112023.04,3277.1,51346.96,2683.28,54715.7,31064.03,23651.67,0.0,organic,2016,Midsouth +29,2016-06-05,1.37,121790.25,2930.32,48335.37,2415.53,68109.03,38824.18,29284.85,0.0,organic,2016,Midsouth +30,2016-05-29,1.46,110144.07,3480.08,49135.01,2383.67,55145.31,34549.61,20595.7,0.0,organic,2016,Midsouth +31,2016-05-22,1.37,109558.94,3602.18,44760.46,1981.25,59215.05,35153.47,24061.58,0.0,organic,2016,Midsouth +32,2016-05-15,1.48,96681.58,3216.13,48296.01,2055.04,43114.4,28449.43,14664.97,0.0,organic,2016,Midsouth +33,2016-05-08,1.39,103093.15,4623.07,50399.91,2604.83,45465.34,25178.32,20287.02,0.0,organic,2016,Midsouth +34,2016-05-01,1.55,97128.22,3562.55,47499.55,2559.25,43506.87,33707.03,9799.84,0.0,organic,2016,Midsouth +35,2016-04-24,1.5,104046.63,3821.26,49622.46,2134.91,48468.0,36585.43,11882.57,0.0,organic,2016,Midsouth +36,2016-04-17,1.22,126949.67,5761.44,64793.81,2005.02,54389.4,28323.2,26066.2,0.0,organic,2016,Midsouth +37,2016-04-10,1.18,143035.65,3698.97,67804.99,2131.31,69400.38,45422.41,23977.97,0.0,organic,2016,Midsouth +38,2016-04-03,1.58,81780.18,3501.88,43194.1,2339.96,32744.24,22985.45,9758.79,0.0,organic,2016,Midsouth +39,2016-03-27,1.4,86908.34,3794.33,38012.06,2132.07,42969.88,24397.42,18572.46,0.0,organic,2016,Midsouth +40,2016-03-20,1.37,81394.4,4674.16,36286.99,1909.17,38524.08,21286.24,17237.84,0.0,organic,2016,Midsouth +41,2016-03-13,1.4,91287.93,3388.4,46780.43,2001.92,39117.18,21173.39,17943.79,0.0,organic,2016,Midsouth +42,2016-03-06,1.44,82249.97,3310.73,48133.42,2104.76,28701.06,11159.01,17542.05,0.0,organic,2016,Midsouth +43,2016-02-28,1.58,60098.19,2835.2,36495.81,1921.79,18845.39,11789.84,7055.55,0.0,organic,2016,Midsouth +44,2016-02-21,1.57,59602.55,3095.81,35011.1,2035.98,19459.66,11889.39,7570.27,0.0,organic,2016,Midsouth +45,2016-02-14,1.52,66026.03,2939.06,32755.22,1927.84,28403.91,16485.43,11918.48,0.0,organic,2016,Midsouth +46,2016-02-07,1.52,70234.9,2936.84,33647.52,2422.38,31228.16,14107.98,17120.18,0.0,organic,2016,Midsouth +47,2016-01-31,1.47,71803.09,3066.15,32965.47,2377.52,33393.95,11815.33,21578.62,0.0,organic,2016,Midsouth +48,2016-01-24,1.54,72219.0,2773.18,31751.72,2076.27,35617.83,18577.2,17040.63,0.0,organic,2016,Midsouth +49,2016-01-17,1.59,57822.5,2953.94,32174.82,2107.95,20585.79,10016.96,10568.83,0.0,organic,2016,Midsouth +50,2016-01-10,1.46,76440.12,2702.76,34243.57,2813.96,36679.83,12285.03,24394.8,0.0,organic,2016,Midsouth +51,2016-01-03,1.54,64689.53,3536.36,30191.49,2855.33,28106.35,12080.23,16026.12,0.0,organic,2016,Midsouth +0,2016-12-25,1.5,3223.64,173.43,2567.94,0.0,482.27,31.11,451.16,0.0,organic,2016,Nashville +1,2016-12-18,1.05,4534.36,209.22,2077.44,0.0,2247.7,27.22,2220.48,0.0,organic,2016,Nashville +2,2016-12-11,1.02,5039.91,224.05,2060.34,0.0,2755.52,73.89,2681.63,0.0,organic,2016,Nashville +3,2016-12-04,0.83,8502.78,242.52,2547.81,0.0,5712.45,77.78,5634.67,0.0,organic,2016,Nashville +4,2016-11-27,1.44,5824.66,259.17,2894.42,0.0,2671.07,198.34,2472.73,0.0,organic,2016,Nashville +5,2016-11-20,0.8,14848.98,244.84,3494.58,0.0,11109.56,1253.89,9855.67,0.0,organic,2016,Nashville +6,2016-11-13,0.98,11863.79,349.22,3637.6,0.0,7876.97,767.22,7109.75,0.0,organic,2016,Nashville +7,2016-11-06,0.88,14545.51,391.89,5050.9,0.0,9102.72,35.55,9067.17,0.0,organic,2016,Nashville +8,2016-10-30,1.68,6293.04,294.8,5438.31,0.0,559.93,38.89,521.04,0.0,organic,2016,Nashville +9,2016-10-23,0.82,13219.08,282.64,3978.36,0.0,8958.08,58.33,8899.75,0.0,organic,2016,Nashville +10,2016-10-16,1.05,8007.21,386.64,3596.89,0.0,4023.68,58.37,3965.31,0.0,organic,2016,Nashville +11,2016-10-09,0.68,16638.93,494.24,3792.05,0.0,12352.64,108.98,12243.66,0.0,organic,2016,Nashville +12,2016-10-02,1.74,4636.33,546.56,3826.74,0.0,263.03,31.11,231.92,0.0,organic,2016,Nashville +13,2016-09-25,1.72,4411.99,501.43,3532.36,0.0,378.2,33.89,344.31,0.0,organic,2016,Nashville +14,2016-09-18,1.5,6309.42,477.36,3478.97,0.0,2353.09,1242.78,1110.31,0.0,organic,2016,Nashville +15,2016-09-11,0.93,14786.96,553.66,3278.67,0.0,10954.63,2812.11,8142.52,0.0,organic,2016,Nashville +16,2016-09-04,0.93,16110.05,534.7,4442.83,0.0,11132.52,2177.78,8954.74,0.0,organic,2016,Nashville +17,2016-08-28,1.3,9481.1,474.37,4139.64,0.0,4867.09,2013.33,2853.76,0.0,organic,2016,Nashville +18,2016-08-21,1.48,9322.85,643.33,4627.09,0.0,4052.43,2242.22,1810.21,0.0,organic,2016,Nashville +19,2016-08-14,1.48,9978.31,899.71,4522.42,0.0,4556.18,2277.22,2278.96,0.0,organic,2016,Nashville +20,2016-08-07,1.19,13685.61,777.34,5234.61,0.0,7673.66,1804.44,5869.22,0.0,organic,2016,Nashville +21,2016-07-31,1.11,12337.37,1053.15,4460.9,0.0,6823.32,881.97,5941.35,0.0,organic,2016,Nashville +22,2016-07-24,1.77,7162.2,958.62,4955.19,0.0,1248.39,51.96,1196.43,0.0,organic,2016,Nashville +23,2016-07-17,1.2,11534.1,891.11,4624.57,0.0,6018.42,350.09,5668.33,0.0,organic,2016,Nashville +24,2016-07-10,1.35,10013.26,728.76,5646.02,0.0,3638.48,137.63,3500.85,0.0,organic,2016,Nashville +25,2016-07-03,0.89,15605.42,615.59,5239.37,0.0,9750.46,431.4,9319.06,0.0,organic,2016,Nashville +26,2016-06-26,1.18,9785.03,698.25,4749.78,0.0,4337.0,82.22,4254.78,0.0,organic,2016,Nashville +27,2016-06-19,0.86,14368.37,729.63,4863.8,0.0,8774.94,648.89,8126.05,0.0,organic,2016,Nashville +28,2016-06-12,1.31,11428.18,832.28,5730.39,0.0,4865.51,2030.0,2835.51,0.0,organic,2016,Nashville +29,2016-06-05,1.08,13135.08,740.89,4637.83,0.0,7756.36,2111.61,5644.75,0.0,organic,2016,Nashville +30,2016-05-29,1.16,11609.26,845.21,5055.04,0.0,5709.01,1665.11,4043.9,0.0,organic,2016,Nashville +31,2016-05-22,1.16,11734.73,1043.67,4484.55,0.0,6206.51,1970.0,4236.51,0.0,organic,2016,Nashville +32,2016-05-15,1.26,14199.98,734.0,5261.02,0.0,8204.96,2141.29,6063.67,0.0,organic,2016,Nashville +33,2016-05-08,0.94,16049.96,812.45,4914.71,0.0,10322.8,1743.56,8579.24,0.0,organic,2016,Nashville +34,2016-05-01,1.45,8547.72,715.39,4309.09,0.0,3523.24,1476.65,2046.59,0.0,organic,2016,Nashville +35,2016-04-24,1.18,11773.05,895.92,4774.86,0.0,6102.27,1964.58,4137.69,0.0,organic,2016,Nashville +36,2016-04-17,0.86,28242.04,912.8,14896.94,0.0,12432.3,1533.45,10898.85,0.0,organic,2016,Nashville +37,2016-04-10,0.85,30449.23,873.84,16913.74,0.0,12661.65,3908.02,8753.63,0.0,organic,2016,Nashville +38,2016-04-03,1.59,6681.85,1157.97,4117.09,0.0,1406.79,303.33,1103.46,0.0,organic,2016,Nashville +39,2016-03-27,1.46,7913.84,795.99,4082.73,0.0,3035.12,1350.0,1685.12,0.0,organic,2016,Nashville +40,2016-03-20,1.53,6926.91,821.77,3668.29,0.0,2436.85,1823.33,613.52,0.0,organic,2016,Nashville +41,2016-03-13,1.32,12819.92,705.97,7430.23,0.0,4683.72,2220.0,2463.72,0.0,organic,2016,Nashville +42,2016-03-06,1.32,11949.2,840.04,7515.12,0.0,3594.04,1416.67,2177.37,0.0,organic,2016,Nashville +43,2016-02-28,1.53,5288.17,645.58,3099.19,0.0,1543.4,1530.0,13.4,0.0,organic,2016,Nashville +44,2016-02-21,1.49,4856.96,753.3,2433.22,0.0,1670.44,1363.33,307.11,0.0,organic,2016,Nashville +45,2016-02-14,1.42,5590.9,593.08,2791.92,0.0,2205.9,1606.67,599.23,0.0,organic,2016,Nashville +46,2016-02-07,1.4,5805.78,579.26,2809.35,0.0,2417.17,1650.0,767.17,0.0,organic,2016,Nashville +47,2016-01-31,1.39,5767.66,750.04,2879.87,0.0,2137.75,973.33,1164.42,0.0,organic,2016,Nashville +48,2016-01-24,1.37,6554.54,572.06,3389.83,0.0,2592.65,1536.67,1055.98,0.0,organic,2016,Nashville +49,2016-01-17,1.51,5750.49,699.54,3333.92,0.0,1717.03,1190.0,527.03,0.0,organic,2016,Nashville +50,2016-01-10,1.53,4746.74,684.01,2558.51,0.0,1504.22,594.98,909.24,0.0,organic,2016,Nashville +51,2016-01-03,1.42,5741.19,939.13,2479.3,0.0,2322.76,1508.21,814.55,0.0,organic,2016,Nashville +0,2016-12-25,1.41,3918.94,82.22,23.47,0.0,3813.25,3050.41,762.84,0.0,organic,2016,NewOrleansMobile +1,2016-12-18,1.43,2560.46,77.12,0.0,0.0,2483.34,1755.41,727.93,0.0,organic,2016,NewOrleansMobile +2,2016-12-11,1.51,2516.58,104.97,5.83,0.0,2405.78,1660.41,745.37,0.0,organic,2016,NewOrleansMobile +3,2016-12-04,1.55,2945.91,102.91,5.82,0.0,2837.18,2061.25,775.93,0.0,organic,2016,NewOrleansMobile +4,2016-11-27,1.48,2425.61,104.69,0.0,0.0,2320.92,1277.5,1043.42,0.0,organic,2016,NewOrleansMobile +5,2016-11-20,1.55,3713.49,73.61,0.0,0.0,3639.88,2620.83,1019.05,0.0,organic,2016,NewOrleansMobile +6,2016-11-13,1.51,5038.15,99.79,0.0,0.0,4938.36,3940.83,997.53,0.0,organic,2016,NewOrleansMobile +7,2016-11-06,1.66,3968.96,118.44,11.64,0.0,3838.88,2595.42,1243.46,0.0,organic,2016,NewOrleansMobile +8,2016-10-30,1.59,3649.01,166.24,0.0,0.0,3482.77,2030.42,1452.35,0.0,organic,2016,NewOrleansMobile +9,2016-10-23,1.51,2300.83,32.05,0.0,0.0,2268.78,1339.17,929.61,0.0,organic,2016,NewOrleansMobile +10,2016-10-16,1.68,2886.0,302.83,17.47,0.0,2565.7,2056.67,509.03,0.0,organic,2016,NewOrleansMobile +11,2016-10-09,1.91,994.05,311.56,2.91,0.0,679.58,659.58,20.0,0.0,organic,2016,NewOrleansMobile +12,2016-10-02,1.72,1263.25,144.78,0.0,0.0,1118.47,1071.8,46.67,0.0,organic,2016,NewOrleansMobile +13,2016-09-25,1.5,3382.35,147.67,0.0,0.0,3234.68,2107.71,1126.97,0.0,organic,2016,NewOrleansMobile +14,2016-09-18,1.4,3088.88,191.13,0.0,0.0,2897.75,1481.31,1416.44,0.0,organic,2016,NewOrleansMobile +15,2016-09-11,1.42,3703.61,169.04,26.08,0.0,3508.49,3481.82,26.67,0.0,organic,2016,NewOrleansMobile +16,2016-09-04,1.52,4206.78,257.09,23.18,0.0,3926.51,3883.18,43.33,0.0,organic,2016,NewOrleansMobile +17,2016-08-28,1.49,3743.27,184.5,0.0,0.0,3558.77,3515.44,43.33,0.0,organic,2016,NewOrleansMobile +18,2016-08-21,1.56,3603.85,394.77,5.73,0.0,3203.35,3140.02,63.33,0.0,organic,2016,NewOrleansMobile +19,2016-08-14,1.55,5197.45,610.77,0.0,0.0,4586.68,4436.68,150.0,0.0,organic,2016,NewOrleansMobile +20,2016-08-07,1.55,4968.45,682.45,0.0,0.0,4286.0,4159.33,126.67,0.0,organic,2016,NewOrleansMobile +21,2016-07-31,1.41,5187.23,553.48,5.7,0.0,4628.05,4514.72,113.33,0.0,organic,2016,NewOrleansMobile +22,2016-07-24,1.41,4106.49,588.36,0.0,0.0,3518.13,3458.13,60.0,0.0,organic,2016,NewOrleansMobile +23,2016-07-17,1.34,5190.83,686.39,0.0,0.0,4504.44,4437.77,66.67,0.0,organic,2016,NewOrleansMobile +24,2016-07-10,1.3,4258.8,554.26,0.0,0.0,3704.54,3677.87,26.67,0.0,organic,2016,NewOrleansMobile +25,2016-07-03,1.18,3290.05,421.33,11.44,0.0,2857.28,2830.61,26.67,0.0,organic,2016,NewOrleansMobile +26,2016-06-26,1.3,4842.27,700.43,0.0,0.0,4141.84,4118.51,23.33,0.0,organic,2016,NewOrleansMobile +27,2016-06-19,1.25,4623.06,507.64,5.73,0.0,4109.69,4093.02,16.67,0.0,organic,2016,NewOrleansMobile +28,2016-06-12,1.73,1325.91,882.85,0.0,0.0,443.06,423.06,20.0,0.0,organic,2016,NewOrleansMobile +29,2016-06-05,1.68,1388.5,737.02,0.0,0.0,651.48,641.48,10.0,0.0,organic,2016,NewOrleansMobile +30,2016-05-29,1.8,1035.0,693.0,0.0,0.0,342.0,338.67,3.33,0.0,organic,2016,NewOrleansMobile +31,2016-05-22,1.58,1581.74,564.95,5.8,0.0,1010.99,1007.66,3.33,0.0,organic,2016,NewOrleansMobile +32,2016-05-15,1.44,3075.57,442.01,0.0,0.0,2633.56,2616.89,16.67,0.0,organic,2016,NewOrleansMobile +33,2016-05-08,1.47,4828.24,950.41,14.58,0.0,3863.25,3856.58,6.67,0.0,organic,2016,NewOrleansMobile +34,2016-05-01,1.44,5262.04,824.56,29.24,0.0,4408.24,4391.57,16.67,0.0,organic,2016,NewOrleansMobile +35,2016-04-24,1.44,4462.14,662.35,20.6,0.0,3779.19,3772.52,6.67,0.0,organic,2016,NewOrleansMobile +36,2016-04-17,1.45,3885.61,655.5,8.88,0.0,3221.23,3221.23,0.0,0.0,organic,2016,NewOrleansMobile +37,2016-04-10,1.27,4008.89,622.48,20.85,0.0,3365.56,3365.56,0.0,0.0,organic,2016,NewOrleansMobile +38,2016-04-03,1.31,3140.08,633.59,5.99,0.0,2500.5,2500.5,0.0,0.0,organic,2016,NewOrleansMobile +39,2016-03-27,1.26,3468.78,516.41,9.02,0.0,2943.35,2943.35,0.0,0.0,organic,2016,NewOrleansMobile +40,2016-03-20,1.26,3553.39,648.58,3.02,0.0,2901.79,2901.79,0.0,0.0,organic,2016,NewOrleansMobile +41,2016-03-13,1.27,4261.47,617.29,24.21,0.0,3619.97,3619.97,0.0,0.0,organic,2016,NewOrleansMobile +42,2016-03-06,1.37,2612.54,493.68,6.06,0.0,2112.8,2112.8,0.0,0.0,organic,2016,NewOrleansMobile +43,2016-02-28,1.44,2807.6,580.02,3.03,0.0,2224.55,2224.55,0.0,0.0,organic,2016,NewOrleansMobile +44,2016-02-21,1.54,2500.35,636.08,0.0,0.0,1864.27,1864.27,0.0,0.0,organic,2016,NewOrleansMobile +45,2016-02-14,1.46,3416.04,549.33,0.0,0.0,2866.71,2863.38,3.33,0.0,organic,2016,NewOrleansMobile +46,2016-02-07,1.41,2672.99,305.99,0.0,0.0,2367.0,2367.0,0.0,0.0,organic,2016,NewOrleansMobile +47,2016-01-31,1.43,3211.24,623.49,18.16,0.0,2569.59,2569.59,0.0,0.0,organic,2016,NewOrleansMobile +48,2016-01-24,1.34,3903.11,502.84,0.0,0.0,3400.27,3400.27,0.0,0.0,organic,2016,NewOrleansMobile +49,2016-01-17,1.48,3180.64,679.91,8.99,0.0,2491.74,2491.74,0.0,0.0,organic,2016,NewOrleansMobile +50,2016-01-10,1.52,2774.1,407.39,5.95,0.0,2360.76,2360.76,0.0,0.0,organic,2016,NewOrleansMobile +51,2016-01-03,1.52,2906.1,755.24,2.95,0.0,2147.91,2147.91,0.0,0.0,organic,2016,NewOrleansMobile +0,2016-12-25,2.17,37438.54,5592.11,15901.97,772.3,15172.16,14698.51,473.65,0.0,organic,2016,NewYork +1,2016-12-18,1.99,51329.63,11645.06,22852.9,190.58,16641.09,16086.71,554.38,0.0,organic,2016,NewYork +2,2016-12-11,2.22,32658.97,4690.69,13912.48,529.46,13526.34,13521.37,4.97,0.0,organic,2016,NewYork +3,2016-12-04,2.04,45383.62,9061.96,24011.42,482.15,11828.09,11823.1,4.99,0.0,organic,2016,NewYork +4,2016-11-27,2.38,29117.76,4165.67,14257.49,238.38,10456.22,10376.02,80.2,0.0,organic,2016,NewYork +5,2016-11-20,2.04,48364.4,8938.23,28672.82,195.41,10557.94,10325.31,232.63,0.0,organic,2016,NewYork +6,2016-11-13,2.65,28406.0,3701.02,19604.7,96.86,5003.42,4922.27,81.15,0.0,organic,2016,NewYork +7,2016-11-06,2.46,25247.34,3242.75,19599.49,138.68,2266.42,2220.62,45.8,0.0,organic,2016,NewYork +8,2016-10-30,2.25,25450.53,5223.58,18866.35,57.57,1303.03,777.54,525.49,0.0,organic,2016,NewYork +9,2016-10-23,2.1,8442.79,1932.33,4815.3,33.45,1661.71,1661.71,0.0,0.0,organic,2016,NewYork +10,2016-10-16,2.33,17837.78,3985.49,11359.44,88.68,2404.17,1942.38,461.79,0.0,organic,2016,NewYork +11,2016-10-09,2.3,26463.29,4174.98,11904.61,791.44,9592.26,9213.05,379.21,0.0,organic,2016,NewYork +12,2016-10-02,2.41,35543.08,3506.59,11530.82,1515.94,18989.73,18656.77,332.96,0.0,organic,2016,NewYork +13,2016-09-25,2.34,31716.46,3786.22,10296.42,600.95,17032.87,16887.13,145.74,0.0,organic,2016,NewYork +14,2016-09-18,2.36,45701.82,4207.74,13327.73,1497.47,26668.88,26583.76,85.12,0.0,organic,2016,NewYork +15,2016-09-11,2.06,70119.57,9238.71,31314.62,492.41,29073.83,28384.19,689.64,0.0,organic,2016,NewYork +16,2016-09-04,2.15,45204.38,5169.75,18565.29,545.15,20924.19,20924.19,0.0,0.0,organic,2016,NewYork +17,2016-08-28,2.32,19375.8,3097.46,12760.69,1275.9,2241.75,2179.4,62.35,0.0,organic,2016,NewYork +18,2016-08-21,2.16,30583.43,5398.13,16529.22,1352.08,7304.0,6945.73,358.27,0.0,organic,2016,NewYork +19,2016-08-14,2.27,25308.77,5199.06,15226.51,1468.34,3414.86,3059.85,355.01,0.0,organic,2016,NewYork +20,2016-08-07,2.37,27155.2,4520.35,16430.44,1881.12,4323.29,4249.64,73.65,0.0,organic,2016,NewYork +21,2016-07-31,2.41,24047.65,3526.76,14455.51,1723.03,4342.35,4337.46,4.89,0.0,organic,2016,NewYork +22,2016-07-24,2.32,29300.63,3376.77,15393.58,2405.74,8124.54,7608.87,515.67,0.0,organic,2016,NewYork +23,2016-07-17,2.4,55607.08,4034.86,16488.14,2929.81,32154.27,31257.04,897.23,0.0,organic,2016,NewYork +24,2016-07-10,2.33,50300.29,4834.52,19429.86,2346.9,23689.01,23056.33,632.68,0.0,organic,2016,NewYork +25,2016-07-03,2.28,46314.26,4225.62,20280.75,1935.42,19872.47,19365.45,507.02,0.0,organic,2016,NewYork +26,2016-06-26,2.23,38645.77,3521.45,14622.04,389.08,20113.2,18563.31,1549.89,0.0,organic,2016,NewYork +27,2016-06-19,2.26,37403.19,3233.43,14646.75,174.74,19348.27,18633.3,714.97,0.0,organic,2016,NewYork +28,2016-06-12,1.94,28758.83,3909.23,14358.57,177.64,10313.39,9034.74,1278.65,0.0,organic,2016,NewYork +29,2016-06-05,2.15,31807.14,2285.37,11252.42,322.21,17947.14,16812.3,1134.84,0.0,organic,2016,NewYork +30,2016-05-29,2.15,34505.47,4303.03,13793.1,2706.92,13702.42,11496.63,2205.79,0.0,organic,2016,NewYork +31,2016-05-22,2.01,44794.06,5435.81,21065.01,2695.05,15598.19,15280.12,318.07,0.0,organic,2016,NewYork +32,2016-05-15,2.02,34788.28,4328.47,15961.11,2631.05,11867.65,11026.93,840.72,0.0,organic,2016,NewYork +33,2016-05-08,2.0,39638.67,3876.06,11969.29,2361.39,21431.93,20040.27,1391.66,0.0,organic,2016,NewYork +34,2016-05-01,2.16,54477.59,5556.25,17185.85,2672.11,29063.38,27008.79,2054.59,0.0,organic,2016,NewYork +35,2016-04-24,2.11,50334.94,4483.15,15498.3,2803.92,27549.57,27093.07,456.5,0.0,organic,2016,NewYork +36,2016-04-17,1.98,40280.96,4725.66,18018.14,2509.18,15027.98,13176.01,1851.97,0.0,organic,2016,NewYork +37,2016-04-10,2.2,30461.39,3080.48,11181.09,2403.64,13796.18,12723.77,1072.41,0.0,organic,2016,NewYork +38,2016-04-03,2.08,47308.85,5327.82,16420.01,2448.53,23112.49,21876.59,1235.9,0.0,organic,2016,NewYork +39,2016-03-27,2.12,35908.78,2964.23,12312.76,2498.94,18132.85,17606.09,526.76,0.0,organic,2016,NewYork +40,2016-03-20,1.92,31916.68,5059.5,14570.79,2250.46,10035.93,9224.95,810.98,0.0,organic,2016,NewYork +41,2016-03-13,1.96,33409.96,7270.09,12040.43,2080.55,12018.89,10528.46,1490.43,0.0,organic,2016,NewYork +42,2016-03-06,1.86,41547.14,8104.1,16993.79,2071.16,14378.09,9996.91,4381.18,0.0,organic,2016,NewYork +43,2016-02-28,1.96,32608.62,4923.95,13005.25,1706.3,12973.12,9947.04,3026.08,0.0,organic,2016,NewYork +44,2016-02-21,1.9,26230.35,5043.6,10101.04,1489.17,9596.54,5209.49,4387.05,0.0,organic,2016,NewYork +45,2016-02-14,2.11,28290.46,4689.2,9473.43,1200.23,12927.6,10463.68,2463.92,0.0,organic,2016,NewYork +46,2016-02-07,1.95,30482.41,4811.67,9963.04,1515.57,14192.13,8387.82,5804.31,0.0,organic,2016,NewYork +47,2016-01-31,1.83,24749.38,2126.26,7493.14,1235.89,13894.09,3842.94,10051.15,0.0,organic,2016,NewYork +48,2016-01-24,2.09,28121.46,2289.5,9484.63,2221.2,14126.13,7033.2,7092.93,0.0,organic,2016,NewYork +49,2016-01-17,1.93,20475.96,4864.18,8524.31,1706.77,5380.7,1491.62,3889.08,0.0,organic,2016,NewYork +50,2016-01-10,1.54,34629.36,3897.84,11770.29,1689.1,17272.13,401.91,16870.22,0.0,organic,2016,NewYork +51,2016-01-03,1.61,21072.22,1302.29,4127.37,1756.97,13885.59,869.14,13016.45,0.0,organic,2016,NewYork +0,2016-12-25,2.0,109788.24,8251.79,26476.86,716.82,74342.77,73179.47,1163.3,0.0,organic,2016,Northeast +1,2016-12-18,1.94,113583.14,14615.66,33603.36,164.23,65199.89,63812.2,1387.69,0.0,organic,2016,Northeast +2,2016-12-11,2.01,106002.64,6300.57,23536.31,484.17,75681.59,75224.35,457.24,0.0,organic,2016,Northeast +3,2016-12-04,2.0,117562.6,11973.84,36254.74,401.31,68932.71,68362.84,569.87,0.0,organic,2016,Northeast +4,2016-11-27,2.13,85024.33,6088.63,22961.43,229.94,55744.33,55092.33,652.0,0.0,organic,2016,Northeast +5,2016-11-20,1.93,119375.15,13475.67,40040.38,185.9,65673.2,64603.48,1069.72,0.0,organic,2016,Northeast +6,2016-11-13,2.13,82987.85,6112.25,27856.49,111.26,48907.85,48445.6,462.25,0.0,organic,2016,Northeast +7,2016-11-06,2.07,89099.08,5608.51,26861.46,140.68,56488.43,55962.01,526.42,0.0,organic,2016,Northeast +8,2016-10-30,1.96,72130.37,7965.62,26563.78,67.48,37533.49,36379.22,1154.27,0.0,organic,2016,Northeast +9,2016-10-23,1.7,57081.84,3797.54,9176.22,43.5,44064.58,43496.72,567.86,0.0,organic,2016,Northeast +10,2016-10-16,1.86,73430.26,5942.36,21092.43,93.89,46301.58,45250.04,1051.54,0.0,organic,2016,Northeast +11,2016-10-09,1.91,87711.53,6424.06,21881.85,699.85,58705.77,57685.94,1019.83,0.0,organic,2016,Northeast +12,2016-10-02,1.99,100529.39,5768.29,20282.07,1326.0,73153.03,72212.14,940.89,0.0,organic,2016,Northeast +13,2016-09-25,1.96,111261.71,6168.57,19760.7,558.5,84773.94,84053.56,720.38,0.0,organic,2016,Northeast +14,2016-09-18,2.04,137076.37,6843.75,22066.52,1272.87,106893.23,106402.46,490.77,0.0,organic,2016,Northeast +15,2016-09-11,1.95,165386.89,12483.37,42591.1,429.8,109882.62,108494.91,1387.71,0.0,organic,2016,Northeast +16,2016-09-04,1.92,128284.46,8635.35,30659.29,537.03,88452.79,87987.89,464.9,0.0,organic,2016,Northeast +17,2016-08-28,1.84,71636.65,4850.25,24189.84,1136.25,41460.31,41025.5,434.81,0.0,organic,2016,Northeast +18,2016-08-21,1.75,106119.98,7701.71,29626.17,1174.63,67617.47,66877.32,740.15,0.0,organic,2016,Northeast +19,2016-08-14,1.85,76276.8,7745.48,27894.37,1324.71,39312.24,38367.69,944.55,0.0,organic,2016,Northeast +20,2016-08-07,1.88,87942.88,6862.76,28661.46,1614.0,50804.66,50509.0,295.66,0.0,organic,2016,Northeast +21,2016-07-31,1.87,73835.93,5541.31,26016.6,1541.33,40736.69,40157.15,579.54,0.0,organic,2016,Northeast +22,2016-07-24,1.89,88923.85,5082.1,26745.37,2320.66,54775.72,51249.16,3526.56,0.0,organic,2016,Northeast +23,2016-07-17,2.07,149636.3,6081.81,28783.38,3117.39,111653.72,101869.15,9784.57,0.0,organic,2016,Northeast +24,2016-07-10,1.99,131639.67,7293.52,31729.48,2223.61,90393.06,83325.05,7068.01,0.0,organic,2016,Northeast +25,2016-07-03,1.86,152428.41,6218.3,33938.57,1960.35,110311.19,98420.14,11891.05,0.0,organic,2016,Northeast +26,2016-06-26,1.91,115923.75,5040.13,25774.91,533.88,84574.83,74389.86,10184.97,0.0,organic,2016,Northeast +27,2016-06-19,1.9,116678.91,4676.97,25454.23,332.09,86215.62,75420.09,10795.53,0.0,organic,2016,Northeast +28,2016-06-12,1.71,93841.12,6582.57,25151.17,1518.0,60589.38,48533.11,12056.27,0.0,organic,2016,Northeast +29,2016-06-05,1.79,102940.66,3880.45,22467.68,330.84,76261.69,64789.53,11472.16,0.0,organic,2016,Northeast +30,2016-05-29,1.87,111097.01,6196.59,27663.4,2315.53,74921.49,61555.62,13365.87,0.0,organic,2016,Northeast +31,2016-05-22,1.81,134280.15,7554.76,34676.98,2269.99,89778.42,80740.1,9038.32,0.0,organic,2016,Northeast +32,2016-05-15,1.79,112278.17,5714.39,26314.99,2397.2,77851.59,67997.52,9854.07,0.0,organic,2016,Northeast +33,2016-05-08,1.78,123022.55,5189.53,23717.51,2043.91,92071.6,76581.12,15490.48,0.0,organic,2016,Northeast +34,2016-05-01,1.94,151476.61,8435.32,33077.84,2206.77,107756.68,95608.27,12148.41,0.0,organic,2016,Northeast +35,2016-04-24,1.9,151219.06,7150.7,24966.54,2442.94,116658.88,103152.4,13506.48,0.0,organic,2016,Northeast +36,2016-04-17,1.84,119446.75,6852.49,28274.04,2138.19,82182.03,68444.04,13737.99,0.0,organic,2016,Northeast +37,2016-04-10,1.88,114275.61,4209.39,19961.97,2037.2,88067.05,70435.19,17631.86,0.0,organic,2016,Northeast +38,2016-04-03,1.88,124627.43,7547.6,25271.64,2014.62,89793.57,79549.51,10244.06,0.0,organic,2016,Northeast +39,2016-03-27,1.85,114767.54,4081.0,20857.17,2136.08,87693.29,77619.07,10074.22,0.0,organic,2016,Northeast +40,2016-03-20,1.75,104018.17,6688.35,25202.39,1881.07,70246.36,60347.7,9898.66,0.0,organic,2016,Northeast +41,2016-03-13,1.75,103718.78,10673.61,21146.55,1754.74,70143.88,53467.97,16675.91,0.0,organic,2016,Northeast +42,2016-03-06,1.79,113859.82,12252.89,30534.74,1756.58,69315.61,41426.65,27888.96,0.0,organic,2016,Northeast +43,2016-02-28,1.8,109507.5,6651.21,28375.04,1434.03,73047.22,45277.19,27770.03,0.0,organic,2016,Northeast +44,2016-02-21,1.77,87442.77,6874.34,18295.13,1275.22,60998.08,36591.35,24406.73,0.0,organic,2016,Northeast +45,2016-02-14,1.95,83662.7,7156.24,19172.81,1054.63,56279.02,44768.7,11510.32,0.0,organic,2016,Northeast +46,2016-02-07,1.9,96595.25,7260.63,23222.81,1329.99,64781.82,38548.58,26233.24,0.0,organic,2016,Northeast +47,2016-01-31,1.73,87698.15,3604.81,14831.14,1124.05,68138.15,34162.83,33975.32,0.0,organic,2016,Northeast +48,2016-01-24,1.82,89368.59,3749.98,17193.46,1928.6,66496.55,42409.9,24086.65,0.0,organic,2016,Northeast +49,2016-01-17,1.67,76290.32,7831.76,17800.16,1500.23,49158.17,33936.45,15221.72,0.0,organic,2016,Northeast +50,2016-01-10,1.52,99539.08,5988.87,21064.16,1435.67,71050.38,31297.1,39753.28,0.0,organic,2016,Northeast +51,2016-01-03,1.54,79900.43,2251.54,13966.15,1510.98,62171.76,27554.77,34616.99,0.0,organic,2016,Northeast +0,2016-12-25,1.9,10968.74,9.92,301.24,0.0,10657.58,10657.58,0.0,0.0,organic,2016,NorthernNewEngland +1,2016-12-18,1.95,7450.03,6.19,215.35,0.0,7228.49,7228.49,0.0,0.0,organic,2016,NorthernNewEngland +2,2016-12-11,1.85,10526.21,6.16,172.36,0.0,10347.69,10347.69,0.0,0.0,organic,2016,NorthernNewEngland +3,2016-12-04,1.96,8741.54,15.93,159.27,0.0,8566.34,8566.34,0.0,0.0,organic,2016,NorthernNewEngland +4,2016-11-27,1.84,8724.65,46.37,226.99,0.0,8451.29,8451.29,0.0,0.0,organic,2016,NorthernNewEngland +5,2016-11-20,1.81,9539.41,20.66,244.29,0.0,9274.46,9274.46,0.0,0.0,organic,2016,NorthernNewEngland +6,2016-11-13,1.79,10725.45,3.64,231.57,0.0,10490.24,10490.24,0.0,0.0,organic,2016,NorthernNewEngland +7,2016-11-06,1.84,12574.7,6.06,335.57,0.0,12233.07,12233.07,0.0,0.0,organic,2016,NorthernNewEngland +8,2016-10-30,1.65,7404.92,1.21,180.56,0.0,7223.15,7223.15,0.0,0.0,organic,2016,NorthernNewEngland +9,2016-10-23,1.75,11324.45,0.0,153.88,0.0,11170.57,11170.57,0.0,0.0,organic,2016,NorthernNewEngland +10,2016-10-16,1.49,8965.14,3.64,202.56,0.0,8758.94,8758.94,0.0,0.0,organic,2016,NorthernNewEngland +11,2016-10-09,1.56,10289.97,0.0,123.95,0.0,10166.02,10166.02,0.0,0.0,organic,2016,NorthernNewEngland +12,2016-10-02,1.58,12400.93,0.0,173.16,0.0,12227.77,12227.77,0.0,0.0,organic,2016,NorthernNewEngland +13,2016-09-25,1.51,14401.06,2.45,320.87,0.0,14077.74,14077.74,0.0,0.0,organic,2016,NorthernNewEngland +14,2016-09-18,1.66,11836.41,0.0,227.63,0.0,11608.78,11608.78,0.0,0.0,organic,2016,NorthernNewEngland +15,2016-09-11,1.65,17561.31,6.18,270.9,0.0,17284.23,17284.23,0.0,0.0,organic,2016,NorthernNewEngland +16,2016-09-04,1.58,13039.44,1.0,231.39,0.0,12807.05,12807.05,0.0,0.0,organic,2016,NorthernNewEngland +17,2016-08-28,1.51,8866.2,1.25,235.2,0.0,8629.75,8629.75,0.0,0.0,organic,2016,NorthernNewEngland +18,2016-08-21,1.43,11826.44,2.54,240.06,0.0,11583.84,11583.84,0.0,0.0,organic,2016,NorthernNewEngland +19,2016-08-14,1.4,8519.17,1.28,310.54,0.0,8207.35,8207.35,0.0,0.0,organic,2016,NorthernNewEngland +20,2016-08-07,1.28,5685.2,1.28,245.36,0.0,5438.56,5438.56,0.0,0.0,organic,2016,NorthernNewEngland +21,2016-07-31,1.1,4845.69,0.0,214.28,0.0,4631.41,4631.41,0.0,0.0,organic,2016,NorthernNewEngland +22,2016-07-24,1.13,5882.29,0.0,287.29,0.0,5595.0,5589.25,5.75,0.0,organic,2016,NorthernNewEngland +23,2016-07-17,1.47,12521.46,0.0,199.58,0.0,12321.88,12321.88,0.0,0.0,organic,2016,NorthernNewEngland +24,2016-07-10,1.45,14482.73,5.19,145.3,0.0,14332.24,14332.24,0.0,0.0,organic,2016,NorthernNewEngland +25,2016-07-03,1.33,29132.17,1.3,335.95,0.0,28794.92,28794.92,0.0,0.0,organic,2016,NorthernNewEngland +26,2016-06-26,1.46,12472.06,1.3,149.6,0.0,12321.16,12321.16,0.0,0.0,organic,2016,NorthernNewEngland +27,2016-06-19,1.42,10848.56,3.88,144.87,0.0,10699.81,10699.81,0.0,0.0,organic,2016,NorthernNewEngland +28,2016-06-12,0.99,4574.17,0.0,105.39,0.0,4468.78,4468.78,0.0,0.0,organic,2016,NorthernNewEngland +29,2016-06-05,1.04,5130.06,0.0,184.17,0.0,4945.89,4945.89,0.0,0.0,organic,2016,NorthernNewEngland +30,2016-05-29,1.19,4901.16,2.54,353.15,0.0,4545.47,4545.47,0.0,0.0,organic,2016,NorthernNewEngland +31,2016-05-22,1.26,7645.75,3.81,249.99,0.0,7391.95,7391.95,0.0,0.0,organic,2016,NorthernNewEngland +32,2016-05-15,1.22,5778.15,0.0,220.55,0.0,5557.6,5557.6,0.0,0.0,organic,2016,NorthernNewEngland +33,2016-05-08,1.63,11801.47,0.0,298.93,0.0,11502.54,11502.54,0.0,0.0,organic,2016,NorthernNewEngland +34,2016-05-01,1.62,11626.48,0.0,128.33,0.0,11498.15,11498.15,0.0,0.0,organic,2016,NorthernNewEngland +35,2016-04-24,1.69,13226.51,1.27,356.71,0.0,12868.53,12868.53,0.0,0.0,organic,2016,NorthernNewEngland +36,2016-04-17,1.6,12342.22,0.0,263.91,0.0,12078.31,12078.31,0.0,0.0,organic,2016,NorthernNewEngland +37,2016-04-10,1.5,13624.67,3.8,276.42,0.0,13344.45,13344.45,0.0,0.0,organic,2016,NorthernNewEngland +38,2016-04-03,1.61,8175.69,0.0,215.36,0.0,7960.33,7960.33,0.0,0.0,organic,2016,NorthernNewEngland +39,2016-03-27,1.61,12855.46,11.39,307.53,0.0,12536.54,12536.54,0.0,0.0,organic,2016,NorthernNewEngland +40,2016-03-20,1.67,11336.93,5.06,423.79,0.0,10908.08,10908.08,0.0,0.0,organic,2016,NorthernNewEngland +41,2016-03-13,1.63,10985.53,5.05,222.41,0.0,10758.07,10758.07,0.0,0.0,organic,2016,NorthernNewEngland +42,2016-03-06,1.68,10184.27,8.83,442.78,0.0,9732.66,9732.66,0.0,0.0,organic,2016,NorthernNewEngland +43,2016-02-28,1.64,9920.46,1.26,357.43,0.0,9561.77,9558.44,3.33,0.0,organic,2016,NorthernNewEngland +44,2016-02-21,1.64,9227.72,1.26,174.6,0.0,9051.86,9051.86,0.0,0.0,organic,2016,NorthernNewEngland +45,2016-02-14,1.66,10158.92,5.01,169.07,0.0,9984.84,9984.84,0.0,0.0,organic,2016,NorthernNewEngland +46,2016-02-07,1.67,9790.85,6.24,200.89,0.0,9583.72,9583.72,0.0,0.0,organic,2016,NorthernNewEngland +47,2016-01-31,1.65,9140.79,2.48,154.07,0.0,8984.24,8984.24,0.0,0.0,organic,2016,NorthernNewEngland +48,2016-01-24,1.67,11214.42,12.37,210.23,0.0,10991.82,10991.82,0.0,0.0,organic,2016,NorthernNewEngland +49,2016-01-17,1.55,10459.56,6.15,248.53,0.0,10204.88,10204.88,0.0,0.0,organic,2016,NorthernNewEngland +50,2016-01-10,1.66,10525.16,15.92,246.12,0.0,10263.12,10259.79,3.33,0.0,organic,2016,NorthernNewEngland +51,2016-01-03,1.63,8936.72,13.4,248.57,0.0,8674.75,8674.75,0.0,0.0,organic,2016,NorthernNewEngland +0,2016-12-25,1.27,5601.65,475.04,37.97,0.0,5088.64,2863.33,2225.31,0.0,organic,2016,Orlando +1,2016-12-18,1.26,5670.99,457.64,50.66,0.0,5162.69,3026.67,2136.02,0.0,organic,2016,Orlando +2,2016-12-11,1.4,5860.1,519.9,32.88,0.0,5307.32,2820.0,2487.32,0.0,organic,2016,Orlando +3,2016-12-04,1.46,5320.93,529.26,41.71,0.0,4749.96,2106.67,2643.29,0.0,organic,2016,Orlando +4,2016-11-27,1.47,4543.09,470.21,40.42,0.0,4032.46,1926.67,2105.79,0.0,organic,2016,Orlando +5,2016-11-20,1.53,5481.72,603.21,44.54,0.0,4833.97,2076.66,2757.31,0.0,organic,2016,Orlando +6,2016-11-13,1.53,6791.4,691.45,47.12,0.0,6052.83,3136.67,2916.16,0.0,organic,2016,Orlando +7,2016-11-06,1.56,6077.14,850.75,90.48,0.0,5135.91,1776.66,3359.25,0.0,organic,2016,Orlando +8,2016-10-30,1.56,3758.96,692.43,201.48,0.0,2865.05,303.33,2561.72,0.0,organic,2016,Orlando +9,2016-10-23,1.5,4025.09,740.65,53.73,0.0,3230.71,10.0,3220.71,0.0,organic,2016,Orlando +10,2016-10-16,1.44,2930.31,478.48,51.31,0.0,2400.52,533.33,1867.19,0.0,organic,2016,Orlando +11,2016-10-09,2.0,3382.0,1877.6,136.29,0.0,1368.11,686.67,681.44,0.0,organic,2016,Orlando +12,2016-10-02,2.3,3772.67,2847.79,212.49,0.0,712.39,706.67,5.72,0.0,organic,2016,Orlando +13,2016-09-25,2.03,3985.23,2263.93,179.85,0.0,1541.45,1010.0,531.45,0.0,organic,2016,Orlando +14,2016-09-18,1.4,7833.25,1163.62,72.32,0.0,6597.31,2156.67,4440.64,0.0,organic,2016,Orlando +15,2016-09-11,1.47,7565.44,1321.86,108.37,0.0,6135.21,2990.0,3145.21,0.0,organic,2016,Orlando +16,2016-09-04,1.85,6266.14,2496.83,245.98,0.0,3523.33,3500.0,23.33,0.0,organic,2016,Orlando +17,2016-08-28,1.8,6294.99,2353.65,141.34,0.0,3800.0,3756.67,43.33,0.0,organic,2016,Orlando +18,2016-08-21,1.85,6359.75,2642.82,176.93,0.0,3540.0,3503.33,36.67,0.0,organic,2016,Orlando +19,2016-08-14,1.88,6737.38,3004.19,159.86,0.0,3573.33,3530.0,43.33,0.0,organic,2016,Orlando +20,2016-08-07,1.9,6740.73,3067.98,186.09,0.0,3486.66,3453.33,33.33,0.0,organic,2016,Orlando +21,2016-07-31,1.84,7013.82,3289.24,134.58,0.0,3590.0,3543.33,46.67,0.0,organic,2016,Orlando +22,2016-07-24,1.81,8411.92,3787.14,211.45,0.0,4413.33,4380.0,33.33,0.0,organic,2016,Orlando +23,2016-07-17,1.9,6345.68,3281.75,175.52,0.0,2888.41,2875.08,13.33,0.0,organic,2016,Orlando +24,2016-07-10,1.53,9912.51,2719.12,221.76,0.0,6971.63,6941.63,30.0,0.0,organic,2016,Orlando +25,2016-07-03,1.32,9029.86,2606.85,228.87,0.0,6194.14,6170.81,23.33,0.0,organic,2016,Orlando +26,2016-06-26,1.64,6955.34,3803.59,275.09,0.0,2876.66,2863.33,13.33,0.0,organic,2016,Orlando +27,2016-06-19,1.51,6725.85,2669.06,340.13,0.0,3716.66,3703.33,13.33,0.0,organic,2016,Orlando +28,2016-06-12,1.58,6084.04,3022.56,154.81,0.0,2906.67,2880.0,26.67,0.0,organic,2016,Orlando +29,2016-06-05,1.51,6376.64,2654.77,135.2,0.0,3586.67,3570.0,16.67,0.0,organic,2016,Orlando +30,2016-05-29,1.47,7278.69,2743.46,98.57,0.0,4436.66,4433.33,3.33,0.0,organic,2016,Orlando +31,2016-05-22,1.59,6642.88,2685.64,132.93,0.0,3824.31,3824.31,0.0,0.0,organic,2016,Orlando +32,2016-05-15,1.64,5418.84,2354.87,122.94,0.0,2941.03,2941.03,0.0,0.0,organic,2016,Orlando +33,2016-05-08,1.68,5598.49,2770.42,153.63,0.0,2674.44,2674.44,0.0,0.0,organic,2016,Orlando +34,2016-05-01,1.6,5699.71,2123.26,145.2,0.0,3431.25,3431.25,0.0,0.0,organic,2016,Orlando +35,2016-04-24,1.61,6013.98,2375.0,98.26,0.0,3540.72,3540.72,0.0,0.0,organic,2016,Orlando +36,2016-04-17,1.64,5604.81,2538.97,159.88,0.0,2905.96,2905.96,0.0,0.0,organic,2016,Orlando +37,2016-04-10,1.51,5190.56,2427.51,124.35,0.0,2638.7,2638.7,0.0,0.0,organic,2016,Orlando +38,2016-04-03,1.56,5754.88,2988.39,132.34,0.0,2634.15,2634.15,0.0,0.0,organic,2016,Orlando +39,2016-03-27,1.6,5298.14,2980.74,110.73,0.0,2206.67,2206.67,0.0,0.0,organic,2016,Orlando +40,2016-03-20,1.57,4356.15,2282.29,101.75,0.0,1972.11,1972.11,0.0,0.0,organic,2016,Orlando +41,2016-03-13,1.52,5651.13,2735.12,99.34,0.0,2816.67,2816.67,0.0,0.0,organic,2016,Orlando +42,2016-03-06,1.74,3787.95,2526.85,84.0,0.0,1177.1,1167.1,10.0,0.0,organic,2016,Orlando +43,2016-02-28,1.78,4143.52,2916.41,110.0,0.0,1117.11,1110.44,6.67,0.0,organic,2016,Orlando +44,2016-02-21,1.67,3724.91,2172.08,61.97,0.0,1490.86,1487.53,3.33,0.0,organic,2016,Orlando +45,2016-02-14,1.69,4079.97,2474.96,47.52,0.0,1557.49,1557.49,0.0,0.0,organic,2016,Orlando +46,2016-02-07,1.7,3886.64,2384.31,72.33,0.0,1430.0,1430.0,0.0,0.0,organic,2016,Orlando +47,2016-01-31,1.76,4059.35,2811.38,67.97,0.0,1180.0,1173.33,6.67,0.0,organic,2016,Orlando +48,2016-01-24,1.59,4767.81,2300.07,57.74,0.0,2410.0,2410.0,0.0,0.0,organic,2016,Orlando +49,2016-01-17,1.77,3490.69,2447.83,72.86,0.0,970.0,966.67,3.33,0.0,organic,2016,Orlando +50,2016-01-10,1.75,3858.1,2417.89,59.89,0.0,1380.32,1363.33,16.99,0.0,organic,2016,Orlando +51,2016-01-03,1.33,9387.91,5709.17,99.1,0.0,3579.64,1436.67,2142.97,0.0,organic,2016,Orlando +0,2016-12-25,1.9,11376.97,981.62,3177.51,14.99,7202.85,7053.99,148.86,0.0,organic,2016,Philadelphia +1,2016-12-18,1.87,10810.89,1455.03,4382.02,0.0,4973.84,4794.78,179.06,0.0,organic,2016,Philadelphia +2,2016-12-11,2.04,8663.02,565.46,2881.29,2.24,5214.03,5214.03,0.0,0.0,organic,2016,Philadelphia +3,2016-12-04,2.01,10385.65,1178.8,5084.48,3.02,4119.35,4119.35,0.0,0.0,organic,2016,Philadelphia +4,2016-11-27,2.18,7896.69,704.84,3572.69,8.71,3610.45,3509.75,100.7,0.0,organic,2016,Philadelphia +5,2016-11-20,1.9,11621.1,1865.39,4781.58,14.16,4959.97,4760.38,199.59,0.0,organic,2016,Philadelphia +6,2016-11-13,2.45,6285.53,930.03,3349.54,3.21,2002.75,1991.38,11.37,0.0,organic,2016,Philadelphia +7,2016-11-06,2.32,7734.59,869.13,2632.06,0.0,4233.4,4214.36,19.04,0.0,organic,2016,Philadelphia +8,2016-10-30,2.39,6531.71,1020.47,3824.37,0.0,1686.87,1633.31,53.56,0.0,organic,2016,Philadelphia +9,2016-10-23,2.06,4580.38,677.26,2325.75,0.0,1577.37,1554.47,22.9,0.0,organic,2016,Philadelphia +10,2016-10-16,2.26,6276.25,824.21,2624.61,0.0,2827.43,2717.14,110.29,0.0,organic,2016,Philadelphia +11,2016-10-09,2.17,6701.46,868.09,2914.68,4.43,2914.26,2785.45,128.81,0.0,organic,2016,Philadelphia +12,2016-10-02,2.23,6865.93,854.63,2658.82,0.0,3352.48,3228.07,124.41,0.0,organic,2016,Philadelphia +13,2016-09-25,2.24,9520.79,781.53,3274.9,19.27,5445.09,5418.7,26.39,0.0,organic,2016,Philadelphia +14,2016-09-18,2.18,12536.03,765.26,2809.14,0.0,8961.63,8856.74,104.89,0.0,organic,2016,Philadelphia +15,2016-09-11,2.08,15403.19,1346.13,4722.13,8.32,9326.61,9244.65,81.96,0.0,organic,2016,Philadelphia +16,2016-09-04,2.04,12126.24,1240.26,4534.3,39.48,6312.2,6312.2,0.0,0.0,organic,2016,Philadelphia +17,2016-08-28,2.06,6321.4,573.3,3403.23,22.57,2322.3,2289.1,33.2,0.0,organic,2016,Philadelphia +18,2016-08-21,1.87,10605.21,882.35,4181.99,6.88,5533.99,5365.02,168.97,0.0,organic,2016,Philadelphia +19,2016-08-14,2.06,6968.81,863.2,3718.14,15.52,2371.95,2239.5,132.45,0.0,organic,2016,Philadelphia +20,2016-08-07,2.04,9269.42,729.49,3821.28,3.83,4714.82,4646.5,68.32,0.0,organic,2016,Philadelphia +21,2016-07-31,2.2,7431.86,666.13,3284.48,14.18,3467.07,3467.07,0.0,0.0,organic,2016,Philadelphia +22,2016-07-24,2.07,7958.25,625.46,3547.92,16.71,3768.16,3586.76,181.4,0.0,organic,2016,Philadelphia +23,2016-07-17,2.16,13247.34,855.59,4251.85,20.67,8119.23,6665.17,1454.06,0.0,organic,2016,Philadelphia +24,2016-07-10,2.15,10301.6,1248.06,4556.18,24.96,4472.4,4062.63,409.77,0.0,organic,2016,Philadelphia +25,2016-07-03,2.16,10437.32,1027.88,4846.32,15.16,4547.96,3592.18,955.78,0.0,organic,2016,Philadelphia +26,2016-06-26,2.16,9455.24,579.85,3964.58,28.53,4882.28,3661.8,1220.48,0.0,organic,2016,Philadelphia +27,2016-06-19,2.19,10778.24,594.97,4220.84,0.0,5962.43,5110.25,852.18,0.0,organic,2016,Philadelphia +28,2016-06-12,1.85,9058.23,938.76,4044.17,0.0,4075.3,3296.9,778.4,0.0,organic,2016,Philadelphia +29,2016-06-05,1.91,9901.74,401.54,3388.66,12.55,6098.99,5183.48,915.51,0.0,organic,2016,Philadelphia +30,2016-05-29,2.07,10738.68,622.97,3962.86,5.06,6147.79,5229.58,918.21,0.0,organic,2016,Philadelphia +31,2016-05-22,1.97,11516.4,750.67,4399.1,8.71,6357.92,6250.8,107.12,0.0,organic,2016,Philadelphia +32,2016-05-15,1.98,10923.26,548.92,3732.27,166.38,6475.69,5472.24,1003.45,0.0,organic,2016,Philadelphia +33,2016-05-08,1.86,8514.81,479.64,3608.21,7.17,4419.79,3417.39,1002.4,0.0,organic,2016,Philadelphia +34,2016-05-01,1.87,13101.38,1713.54,3814.81,2.26,7570.77,7400.31,170.46,0.0,organic,2016,Philadelphia +35,2016-04-24,1.9,14651.93,1686.52,3105.84,13.98,9845.59,9178.66,666.93,0.0,organic,2016,Philadelphia +36,2016-04-17,1.89,11963.98,933.49,3820.05,12.75,7197.69,6601.7,595.99,0.0,organic,2016,Philadelphia +37,2016-04-10,1.95,10787.78,459.39,2809.86,12.84,7505.69,5674.23,1831.46,0.0,organic,2016,Philadelphia +38,2016-04-03,1.81,13620.12,831.22,3207.79,8.42,9572.69,8652.98,919.71,0.0,organic,2016,Philadelphia +39,2016-03-27,1.95,10596.57,465.92,2658.75,17.11,7454.79,6054.65,1400.14,0.0,organic,2016,Philadelphia +40,2016-03-20,1.75,8420.43,745.29,3110.02,14.54,4550.58,3437.89,1112.69,0.0,organic,2016,Philadelphia +41,2016-03-13,1.59,11340.53,2152.69,2872.73,0.0,6315.11,2743.79,3571.32,0.0,organic,2016,Philadelphia +42,2016-03-06,1.53,16463.5,2516.88,5105.39,9.8,8831.43,1462.75,7368.68,0.0,organic,2016,Philadelphia +43,2016-02-28,1.62,13804.29,1136.49,4947.8,3.7,7716.3,2276.27,5440.03,0.0,organic,2016,Philadelphia +44,2016-02-21,1.79,9168.4,715.85,2560.31,6.19,5886.05,1527.14,4358.91,0.0,organic,2016,Philadelphia +45,2016-02-14,2.07,5952.62,686.01,2615.97,23.18,2627.46,1144.04,1483.42,0.0,organic,2016,Philadelphia +46,2016-02-07,1.86,9387.43,793.09,2576.33,10.97,6007.04,1132.99,4874.05,0.0,organic,2016,Philadelphia +47,2016-01-31,1.53,11396.43,438.65,1843.31,18.4,9096.07,230.01,8866.06,0.0,organic,2016,Philadelphia +48,2016-01-24,1.81,11722.26,372.43,2325.54,5.97,9018.32,1264.47,7753.85,0.0,organic,2016,Philadelphia +49,2016-01-17,1.68,8382.56,805.42,1997.8,33.34,5546.0,565.36,4980.64,0.0,organic,2016,Philadelphia +50,2016-01-10,1.37,13336.18,457.95,2759.72,8.54,10109.97,114.0,9995.97,0.0,organic,2016,Philadelphia +51,2016-01-03,1.53,8788.89,150.18,1457.84,0.0,7180.87,169.85,7011.02,0.0,organic,2016,Philadelphia +0,2016-12-25,1.85,8657.87,2182.46,3344.01,0.0,3131.4,3116.68,14.72,0.0,organic,2016,PhoenixTucson +1,2016-12-18,1.83,6977.44,1652.6,2712.82,0.0,2612.02,2609.34,2.68,0.0,organic,2016,PhoenixTucson +2,2016-12-11,1.83,8087.23,1880.06,3240.23,0.0,2966.94,2915.48,51.46,0.0,organic,2016,PhoenixTucson +3,2016-12-04,1.96,7009.95,2315.4,3214.55,0.0,1480.0,1469.13,10.87,0.0,organic,2016,PhoenixTucson +4,2016-11-27,2.01,6470.08,2026.07,2529.2,0.0,1914.81,1848.75,66.06,0.0,organic,2016,PhoenixTucson +5,2016-11-20,2.01,8076.24,2129.66,3053.09,0.0,2893.49,2789.23,104.26,0.0,organic,2016,PhoenixTucson +6,2016-11-13,1.86,11446.65,3176.7,3129.58,0.0,5140.37,4928.5,211.87,0.0,organic,2016,PhoenixTucson +7,2016-11-06,2.35,8304.78,3221.4,3921.27,0.0,1162.11,1048.78,113.33,0.0,organic,2016,PhoenixTucson +8,2016-10-30,2.62,5394.03,1436.7,3458.84,0.0,498.49,485.16,13.33,0.0,organic,2016,PhoenixTucson +9,2016-10-23,2.22,6017.53,2044.02,2692.05,0.0,1281.46,1219.25,62.21,0.0,organic,2016,PhoenixTucson +10,2016-10-16,2.04,8551.32,2904.44,3741.95,0.0,1904.93,1845.51,59.42,0.0,organic,2016,PhoenixTucson +11,2016-10-09,2.4,5962.78,1749.69,2997.36,0.0,1215.73,1109.07,106.66,0.0,organic,2016,PhoenixTucson +12,2016-10-02,2.62,5380.03,1149.6,3519.69,0.0,710.74,488.84,221.9,0.0,organic,2016,PhoenixTucson +13,2016-09-25,2.47,5578.01,1536.63,3147.8,0.0,893.58,843.36,50.22,0.0,organic,2016,PhoenixTucson +14,2016-09-18,2.13,7887.03,2974.46,3091.3,0.0,1821.27,1494.69,326.58,0.0,organic,2016,PhoenixTucson +15,2016-09-11,2.16,8839.2,3683.6,3191.71,0.0,1963.89,584.05,1379.84,0.0,organic,2016,PhoenixTucson +16,2016-09-04,2.15,8914.06,3684.64,3163.97,0.0,2065.45,561.55,1503.9,0.0,organic,2016,PhoenixTucson +17,2016-08-28,2.18,8525.59,3373.56,3328.41,0.0,1823.62,443.1,1380.52,0.0,organic,2016,PhoenixTucson +18,2016-08-21,2.08,9183.92,4111.69,2936.92,0.0,2135.31,523.78,1611.53,0.0,organic,2016,PhoenixTucson +19,2016-08-14,2.13,9220.95,3417.54,3561.51,0.0,2241.9,580.64,1661.26,0.0,organic,2016,PhoenixTucson +20,2016-08-07,2.13,9649.24,3640.62,3890.21,0.0,2118.41,434.11,1684.3,0.0,organic,2016,PhoenixTucson +21,2016-07-31,2.19,10363.16,4126.75,3944.27,0.0,2292.14,472.12,1820.02,0.0,organic,2016,PhoenixTucson +22,2016-07-24,2.08,11457.48,4721.06,4139.87,0.0,2596.55,462.43,2134.12,0.0,organic,2016,PhoenixTucson +23,2016-07-17,1.77,14216.44,6636.6,4590.54,0.0,2989.3,432.21,2557.09,0.0,organic,2016,PhoenixTucson +24,2016-07-10,1.82,13993.22,6134.5,4632.45,0.0,3226.27,420.59,2805.68,0.0,organic,2016,PhoenixTucson +25,2016-07-03,1.65,14055.26,6214.62,4300.63,0.0,3540.01,454.43,3085.58,0.0,organic,2016,PhoenixTucson +26,2016-06-26,1.66,13866.31,6127.86,4823.04,0.0,2915.41,647.76,2267.65,0.0,organic,2016,PhoenixTucson +27,2016-06-19,1.69,17096.49,5593.38,9679.7,0.0,1823.41,483.99,1339.42,0.0,organic,2016,PhoenixTucson +28,2016-06-12,1.51,14349.12,7296.89,5158.97,0.0,1893.26,1184.94,708.32,0.0,organic,2016,PhoenixTucson +29,2016-06-05,1.52,12699.87,5651.13,4638.32,0.0,2410.42,574.04,1836.38,0.0,organic,2016,PhoenixTucson +30,2016-05-29,1.47,19187.81,5317.34,11017.55,0.0,2852.92,415.23,2437.69,0.0,organic,2016,PhoenixTucson +31,2016-05-22,1.52,14664.1,5249.23,6143.97,0.0,3270.9,304.08,2966.82,0.0,organic,2016,PhoenixTucson +32,2016-05-15,1.37,23075.45,6930.33,11799.94,0.0,4345.18,418.79,3926.39,0.0,organic,2016,PhoenixTucson +33,2016-05-08,1.41,14187.6,6946.84,3839.13,0.0,3401.63,524.29,2877.34,0.0,organic,2016,PhoenixTucson +34,2016-05-01,1.3,19517.25,10862.94,3558.85,0.0,5095.46,1555.11,3540.35,0.0,organic,2016,PhoenixTucson +35,2016-04-24,1.39,33498.69,19534.98,9311.09,0.0,4652.62,1072.85,3579.77,0.0,organic,2016,PhoenixTucson +36,2016-04-17,1.53,18395.17,7150.42,8259.32,0.0,2985.43,729.14,2256.29,0.0,organic,2016,PhoenixTucson +37,2016-04-10,1.38,13919.54,6553.28,2194.66,0.0,5171.6,4130.9,1040.7,0.0,organic,2016,PhoenixTucson +38,2016-04-03,1.25,13281.61,7693.54,1683.6,0.0,3904.47,3146.03,758.44,0.0,organic,2016,PhoenixTucson +39,2016-03-27,1.54,11321.14,6596.67,2100.78,0.0,2623.69,2259.37,364.32,0.0,organic,2016,PhoenixTucson +40,2016-03-20,1.57,10097.84,5963.86,1870.27,0.0,2263.71,2071.02,192.69,0.0,organic,2016,PhoenixTucson +41,2016-03-13,1.47,11203.89,5809.9,1767.78,0.0,3626.21,3586.51,39.7,0.0,organic,2016,PhoenixTucson +42,2016-03-06,1.48,12436.96,5686.84,1413.65,0.0,5336.47,4871.62,464.85,0.0,organic,2016,PhoenixTucson +43,2016-02-28,1.52,10666.36,5123.85,1445.2,0.0,4097.31,3987.65,109.66,0.0,organic,2016,PhoenixTucson +44,2016-02-21,1.63,9223.0,4295.76,1488.34,0.0,3438.9,2820.83,618.07,0.0,organic,2016,PhoenixTucson +45,2016-02-14,1.34,12060.32,6179.97,1601.26,0.0,4279.09,3026.98,1252.11,0.0,organic,2016,PhoenixTucson +46,2016-02-07,1.6,9473.34,5808.71,991.9,0.0,2672.73,2400.51,272.22,0.0,organic,2016,PhoenixTucson +47,2016-01-31,1.53,8134.79,5035.0,1072.8,0.0,2026.99,1949.17,77.82,0.0,organic,2016,PhoenixTucson +48,2016-01-24,1.61,9059.12,5138.33,1669.21,0.0,2251.58,2187.87,63.71,0.0,organic,2016,PhoenixTucson +49,2016-01-17,1.46,10926.61,6758.37,1863.82,0.0,2304.42,2242.02,62.4,0.0,organic,2016,PhoenixTucson +50,2016-01-10,1.35,13145.55,7104.3,1765.35,0.0,4275.9,4178.82,97.08,0.0,organic,2016,PhoenixTucson +51,2016-01-03,1.61,10650.66,6889.43,1037.3,0.0,2723.93,2618.9,105.03,0.0,organic,2016,PhoenixTucson +0,2016-12-25,1.48,7784.0,708.23,3.45,0.0,7072.32,6823.42,248.9,0.0,organic,2016,Pittsburgh +1,2016-12-18,1.48,6429.27,693.2,13.9,0.0,5722.17,5309.07,413.1,0.0,organic,2016,Pittsburgh +2,2016-12-11,1.52,7774.07,755.9,17.46,0.0,7000.71,6515.79,484.92,0.0,organic,2016,Pittsburgh +3,2016-12-04,1.53,7908.69,893.1,8.76,0.0,7006.83,6547.63,459.2,0.0,organic,2016,Pittsburgh +4,2016-11-27,1.53,6723.98,659.82,7.02,1.75,6055.39,5637.63,417.76,0.0,organic,2016,Pittsburgh +5,2016-11-20,1.53,7498.33,832.11,17.59,0.0,6648.63,6228.15,420.48,0.0,organic,2016,Pittsburgh +6,2016-11-13,1.53,7864.22,873.29,7.04,0.0,6983.89,6548.0,435.89,0.0,organic,2016,Pittsburgh +7,2016-11-06,1.53,8022.27,891.35,73.99,0.0,7056.93,6634.74,422.19,0.0,organic,2016,Pittsburgh +8,2016-10-30,1.54,8707.36,949.37,59.89,0.0,7698.1,7249.13,448.97,0.0,organic,2016,Pittsburgh +9,2016-10-23,1.52,8896.5,1009.65,87.95,0.0,7798.9,7224.88,574.02,0.0,organic,2016,Pittsburgh +10,2016-10-16,1.53,9213.3,968.87,133.4,0.0,8111.03,7685.88,425.15,0.0,organic,2016,Pittsburgh +11,2016-10-09,1.51,9599.33,1003.35,103.31,0.0,8492.67,7951.79,540.88,0.0,organic,2016,Pittsburgh +12,2016-10-02,1.53,10005.59,796.0,104.74,0.0,9104.85,8682.57,422.28,0.0,organic,2016,Pittsburgh +13,2016-09-25,1.53,8814.22,1032.78,128.66,0.0,7652.78,7151.55,501.23,0.0,organic,2016,Pittsburgh +14,2016-09-18,1.51,7587.7,1152.56,156.79,0.0,6278.35,5973.05,305.3,0.0,organic,2016,Pittsburgh +15,2016-09-11,1.49,6094.84,1073.85,114.5,0.0,4906.49,4522.54,383.95,0.0,organic,2016,Pittsburgh +16,2016-09-04,1.53,5272.87,927.16,127.76,0.0,4217.95,4183.42,34.53,0.0,organic,2016,Pittsburgh +17,2016-08-28,1.52,4650.34,713.43,225.29,0.0,3711.62,3503.01,208.61,0.0,organic,2016,Pittsburgh +18,2016-08-21,1.54,5441.24,740.86,169.85,0.0,4530.53,4522.98,7.55,0.0,organic,2016,Pittsburgh +19,2016-08-14,1.54,5960.37,915.85,207.84,0.0,4836.68,4671.46,165.22,0.0,organic,2016,Pittsburgh +20,2016-08-07,1.54,5082.89,860.51,174.79,0.0,4047.59,3939.28,108.31,0.0,organic,2016,Pittsburgh +21,2016-07-31,1.49,6155.8,844.08,245.9,3.35,5062.47,5062.47,0.0,0.0,organic,2016,Pittsburgh +22,2016-07-24,1.46,5495.34,657.46,163.95,0.0,4673.93,4666.96,6.97,0.0,organic,2016,Pittsburgh +23,2016-07-17,1.44,5896.38,608.4,197.45,0.0,5090.53,5069.15,21.38,0.0,organic,2016,Pittsburgh +24,2016-07-10,1.49,2672.71,332.96,537.09,0.0,1802.66,1698.55,104.11,0.0,organic,2016,Pittsburgh +25,2016-07-03,1.47,3486.32,252.15,525.74,0.0,2708.43,2617.74,90.69,0.0,organic,2016,Pittsburgh +26,2016-06-26,1.48,5570.89,544.91,256.53,0.0,4769.45,4769.45,0.0,0.0,organic,2016,Pittsburgh +27,2016-06-19,1.43,7345.74,566.12,211.67,11.76,6556.19,6552.46,3.73,0.0,organic,2016,Pittsburgh +28,2016-06-12,1.47,5885.34,690.44,177.87,32.19,4984.84,4905.79,79.05,0.0,organic,2016,Pittsburgh +29,2016-06-05,1.49,5639.69,840.97,200.55,6.74,4591.43,4576.45,14.98,0.0,organic,2016,Pittsburgh +30,2016-05-29,1.49,7189.09,1007.26,247.63,6.69,5927.51,5927.51,0.0,0.0,organic,2016,Pittsburgh +31,2016-05-22,1.42,1978.61,378.44,149.65,31.59,1418.93,1418.93,0.0,0.0,organic,2016,Pittsburgh +32,2016-05-15,1.41,2139.33,181.27,240.6,14.83,1702.63,1702.63,0.0,0.0,organic,2016,Pittsburgh +33,2016-05-08,1.31,2124.35,238.56,388.88,35.95,1460.96,1460.96,0.0,0.0,organic,2016,Pittsburgh +34,2016-05-01,1.42,2119.08,139.29,268.86,16.2,1694.73,1694.73,0.0,0.0,organic,2016,Pittsburgh +35,2016-04-24,1.48,1541.74,139.63,154.07,56.17,1191.87,1188.3,3.57,0.0,organic,2016,Pittsburgh +36,2016-04-17,1.48,1614.86,88.32,322.96,3.18,1200.4,1200.4,0.0,0.0,organic,2016,Pittsburgh +37,2016-04-10,1.35,1159.5,91.5,301.33,0.0,766.67,766.67,0.0,0.0,organic,2016,Pittsburgh +38,2016-04-03,1.43,1015.29,99.42,322.24,0.0,593.63,590.15,3.48,0.0,organic,2016,Pittsburgh +39,2016-03-27,1.18,1702.84,96.59,220.18,26.36,1359.71,1356.26,3.45,0.0,organic,2016,Pittsburgh +40,2016-03-20,1.2,1237.02,69.07,145.82,12.28,1009.85,975.74,34.11,0.0,organic,2016,Pittsburgh +41,2016-03-13,1.15,1479.81,108.61,84.13,9.18,1277.89,1274.49,3.4,0.0,organic,2016,Pittsburgh +42,2016-03-06,1.37,867.18,136.29,127.11,4.59,599.19,588.98,10.21,0.0,organic,2016,Pittsburgh +43,2016-02-28,1.54,879.94,135.49,275.59,0.0,468.86,386.84,82.02,0.0,organic,2016,Pittsburgh +44,2016-02-21,1.33,1256.47,314.49,32.43,0.0,909.55,614.42,295.13,0.0,organic,2016,Pittsburgh +45,2016-02-14,1.38,1238.86,195.98,164.87,0.0,878.01,687.9,190.11,0.0,organic,2016,Pittsburgh +46,2016-02-07,1.45,992.32,161.37,191.14,0.0,639.81,538.85,100.96,0.0,organic,2016,Pittsburgh +47,2016-01-31,1.3,1241.84,292.1,137.37,0.0,812.37,749.21,63.16,0.0,organic,2016,Pittsburgh +48,2016-01-24,1.16,1940.08,235.54,132.09,0.0,1572.45,1526.47,45.98,0.0,organic,2016,Pittsburgh +49,2016-01-17,1.45,1219.69,454.04,41.71,0.0,723.94,559.94,164.0,0.0,organic,2016,Pittsburgh +50,2016-01-10,1.4,1314.78,373.66,21.03,0.0,920.09,815.85,104.24,0.0,organic,2016,Pittsburgh +51,2016-01-03,1.44,911.96,291.99,13.05,0.0,606.92,461.92,145.0,0.0,organic,2016,Pittsburgh +0,2016-12-25,1.55,43291.45,4246.91,12543.71,637.94,25862.89,19475.27,6387.62,0.0,organic,2016,Plains +1,2016-12-18,1.6,41255.97,4281.68,11382.93,2389.77,23201.59,16449.77,6751.82,0.0,organic,2016,Plains +2,2016-12-11,1.71,43540.93,3861.81,12345.81,3684.29,23649.02,16668.21,6980.81,0.0,organic,2016,Plains +3,2016-12-04,1.7,43160.92,5015.99,12919.27,876.17,24349.49,14907.37,9442.12,0.0,organic,2016,Plains +4,2016-11-27,1.69,45636.25,4255.17,11988.69,1072.74,28319.65,16698.74,11620.91,0.0,organic,2016,Plains +5,2016-11-20,1.63,50911.0,4070.4,12446.98,1059.21,33334.41,20022.54,13311.87,0.0,organic,2016,Plains +6,2016-11-13,1.74,51861.03,5110.61,13801.36,826.87,32122.19,23130.88,8991.31,0.0,organic,2016,Plains +7,2016-11-06,1.76,43201.25,5866.3,10066.67,1872.81,25395.47,18106.52,7288.95,0.0,organic,2016,Plains +8,2016-10-30,1.8,33702.09,3145.29,10032.23,1058.94,19465.63,14282.84,5182.79,0.0,organic,2016,Plains +9,2016-10-23,1.55,36280.49,4398.82,9250.93,505.12,22125.62,12964.05,9161.57,0.0,organic,2016,Plains +10,2016-10-16,1.67,33832.86,5295.41,5664.25,1040.32,21832.88,16796.31,5036.57,0.0,organic,2016,Plains +11,2016-10-09,1.55,45120.49,2685.64,10631.11,606.81,31196.93,18265.83,12931.1,0.0,organic,2016,Plains +12,2016-10-02,1.76,47384.06,2804.71,18186.33,649.6,25743.42,13418.55,12324.87,0.0,organic,2016,Plains +13,2016-09-25,1.87,44993.62,4312.89,19596.71,1090.56,19993.46,11441.45,8552.01,0.0,organic,2016,Plains +14,2016-09-18,1.78,43823.87,4329.93,18800.51,334.33,20359.1,8413.42,11945.68,0.0,organic,2016,Plains +15,2016-09-11,1.86,46267.04,3553.09,23352.95,77.93,19283.07,8714.08,10568.99,0.0,organic,2016,Plains +16,2016-09-04,1.76,52999.19,5375.86,23930.05,230.55,23462.73,9984.63,13478.1,0.0,organic,2016,Plains +17,2016-08-28,1.67,54112.35,5905.64,22226.82,309.42,25670.47,9529.41,16141.06,0.0,organic,2016,Plains +18,2016-08-21,1.8,51545.86,7264.64,21638.51,525.6,22117.11,12589.18,9527.93,0.0,organic,2016,Plains +19,2016-08-14,1.82,53866.63,5829.03,22762.76,4411.5,20863.34,10714.01,10149.33,0.0,organic,2016,Plains +20,2016-08-07,1.81,52811.38,5184.94,21425.91,2732.05,23468.48,14422.61,9045.87,0.0,organic,2016,Plains +21,2016-07-31,1.72,53685.87,4040.29,21221.96,2115.7,26307.92,16898.32,9409.6,0.0,organic,2016,Plains +22,2016-07-24,1.63,56114.01,4090.81,23351.98,78.91,28592.31,19205.27,9387.04,0.0,organic,2016,Plains +23,2016-07-17,1.76,46645.35,3982.86,22440.03,886.04,19336.42,13280.84,6055.58,0.0,organic,2016,Plains +24,2016-07-10,1.7,48278.48,3311.13,21765.75,5489.97,17711.63,9276.63,8435.0,0.0,organic,2016,Plains +25,2016-07-03,1.63,50608.69,3410.77,21334.93,5331.39,20531.6,11798.14,8733.46,0.0,organic,2016,Plains +26,2016-06-26,1.63,52284.1,5251.61,22040.06,1998.21,22994.22,16106.91,6887.31,0.0,organic,2016,Plains +27,2016-06-19,1.63,57957.05,6103.01,24050.77,7860.59,19942.68,14701.78,5240.9,0.0,organic,2016,Plains +28,2016-06-12,1.63,51075.07,5529.79,22175.76,2574.67,20794.85,16998.34,3796.51,0.0,organic,2016,Plains +29,2016-06-05,1.68,54947.33,5202.16,26660.75,3345.5,19738.92,14844.01,4894.91,0.0,organic,2016,Plains +30,2016-05-29,1.76,40907.26,4923.5,24223.73,1387.7,10372.33,7022.27,3350.06,0.0,organic,2016,Plains +31,2016-05-22,1.63,53325.35,7055.8,25456.08,10288.36,10525.11,6942.43,3582.68,0.0,organic,2016,Plains +32,2016-05-15,1.65,47778.34,5526.42,23572.79,2753.86,15925.27,9033.29,6891.98,0.0,organic,2016,Plains +33,2016-05-08,1.58,54825.59,5399.74,23826.5,11269.89,14329.46,8338.82,5990.64,0.0,organic,2016,Plains +34,2016-05-01,1.59,42077.45,4211.65,22094.2,1260.73,14510.87,8629.29,5881.58,0.0,organic,2016,Plains +35,2016-04-24,1.29,61993.61,4954.72,21249.79,3329.15,32459.95,16741.92,15718.03,0.0,organic,2016,Plains +36,2016-04-17,1.57,42572.64,4095.59,21297.04,3141.27,14038.74,7726.44,6312.3,0.0,organic,2016,Plains +37,2016-04-10,1.36,57602.01,4047.05,22065.88,7333.68,24155.4,7182.87,16972.53,0.0,organic,2016,Plains +38,2016-04-03,1.45,46543.64,4227.34,20886.24,3760.1,17669.96,5264.47,12405.49,0.0,organic,2016,Plains +39,2016-03-27,1.45,47440.66,6443.92,19972.56,2998.54,18025.64,5362.6,12663.04,0.0,organic,2016,Plains +40,2016-03-20,1.44,48042.77,4101.49,18882.56,5028.75,20029.97,6578.46,13451.51,0.0,organic,2016,Plains +41,2016-03-13,1.54,41060.75,4494.19,19232.48,2392.43,14941.65,6083.37,8858.28,0.0,organic,2016,Plains +42,2016-03-06,1.76,35593.76,4824.81,18331.73,1348.12,11089.1,6599.18,4489.92,0.0,organic,2016,Plains +43,2016-02-28,1.39,51756.47,5743.88,20482.8,6482.18,19047.61,8049.71,10997.9,0.0,organic,2016,Plains +44,2016-02-21,1.34,51258.32,3340.91,19357.61,4679.89,23879.91,8502.6,15377.31,0.0,organic,2016,Plains +45,2016-02-14,1.68,36769.77,4150.81,17198.57,3353.47,12066.92,7771.32,4295.6,0.0,organic,2016,Plains +46,2016-02-07,1.57,37624.17,3285.43,17837.59,3581.64,12919.51,8836.54,4082.97,0.0,organic,2016,Plains +47,2016-01-31,1.55,40874.22,3229.22,17774.39,1427.09,18443.52,9100.27,9343.25,0.0,organic,2016,Plains +48,2016-01-24,1.33,56919.22,4015.88,16269.58,8256.41,28377.35,11379.03,16998.32,0.0,organic,2016,Plains +49,2016-01-17,1.47,50053.55,4041.42,17676.25,8951.95,19383.93,10322.62,9061.31,0.0,organic,2016,Plains +50,2016-01-10,1.63,41956.88,5395.24,14899.65,3836.61,17825.38,11957.58,5867.8,0.0,organic,2016,Plains +51,2016-01-03,1.5,38955.86,3092.05,15012.16,2689.51,18162.14,7903.68,10258.46,0.0,organic,2016,Plains +0,2016-12-25,0.68,72161.05,2888.38,7043.82,9.89,62218.96,638.89,61580.07,0.0,organic,2016,Portland +1,2016-12-18,0.99,35326.04,4212.58,3819.72,1.65,27292.09,1071.64,26220.45,0.0,organic,2016,Portland +2,2016-12-11,1.45,19755.49,3529.3,3218.07,6.6,13001.52,167.67,12833.85,0.0,organic,2016,Portland +3,2016-12-04,1.46,26063.62,3404.28,4487.52,9.9,18161.92,232.94,17928.98,0.0,organic,2016,Portland +4,2016-11-27,1.39,26868.47,2771.15,3371.02,8.24,20718.06,129.82,20588.24,0.0,organic,2016,Portland +5,2016-11-20,1.41,31252.69,2457.09,4595.01,6.58,24194.01,775.81,23418.2,0.0,organic,2016,Portland +6,2016-11-13,2.16,18792.52,2802.1,8416.39,4.94,7569.09,704.21,6864.88,0.0,organic,2016,Portland +7,2016-11-06,1.79,25232.75,3622.93,7495.74,5.0,14109.08,344.46,13764.62,0.0,organic,2016,Portland +8,2016-10-30,2.55,7136.88,1910.88,4597.68,0.83,627.49,172.25,455.24,0.0,organic,2016,Portland +9,2016-10-23,2.1,7817.32,1806.98,3687.61,18.33,2304.4,386.26,1918.14,0.0,organic,2016,Portland +10,2016-10-16,1.4,26243.63,3780.79,4114.77,4.99,18343.08,2640.17,15702.91,0.0,organic,2016,Portland +11,2016-10-09,1.39,18266.3,2824.29,2772.33,3.32,12666.36,527.54,12138.82,0.0,organic,2016,Portland +12,2016-10-02,1.21,26444.58,2843.4,2404.44,0.0,21196.74,2390.71,18806.03,0.0,organic,2016,Portland +13,2016-09-25,1.57,15562.86,2981.79,2886.82,0.0,9694.25,4026.13,5668.12,0.0,organic,2016,Portland +14,2016-09-18,1.46,24816.08,4166.39,3430.99,0.0,17218.7,9866.38,7352.32,0.0,organic,2016,Portland +15,2016-09-11,1.22,43084.05,4820.4,5901.42,0.0,32362.23,6677.17,25685.06,0.0,organic,2016,Portland +16,2016-09-04,1.34,38353.11,4754.59,13713.44,0.0,19885.08,872.7,19012.38,0.0,organic,2016,Portland +17,2016-08-28,2.06,21628.4,5636.6,15479.57,0.0,512.23,259.04,253.19,0.0,organic,2016,Portland +18,2016-08-21,1.67,25714.0,4776.31,9485.6,4.93,11447.16,2931.29,8515.87,0.0,organic,2016,Portland +19,2016-08-14,1.74,29526.94,6587.02,11769.92,0.0,11170.0,3625.75,7544.25,0.0,organic,2016,Portland +20,2016-08-07,1.58,28823.92,5514.1,9962.34,0.0,13347.48,3073.59,10273.89,0.0,organic,2016,Portland +21,2016-07-31,1.64,30036.81,5706.06,11094.56,0.0,13236.19,6847.84,6388.35,0.0,organic,2016,Portland +22,2016-07-24,2.25,20483.39,5280.24,13778.08,9.85,1415.22,1037.71,377.51,0.0,organic,2016,Portland +23,2016-07-17,1.86,29018.17,4204.19,15792.98,26.31,8994.69,113.33,8881.36,0.0,organic,2016,Portland +24,2016-07-10,1.66,27248.92,5420.57,11123.92,19.77,10684.66,130.33,10554.33,0.0,organic,2016,Portland +25,2016-07-03,1.33,45380.46,6123.5,12522.6,0.0,26734.36,66.32,26668.04,0.0,organic,2016,Portland +26,2016-06-26,1.42,36278.04,5889.72,17271.7,25.16,13091.46,109.42,12982.04,0.0,organic,2016,Portland +27,2016-06-19,1.23,49843.09,7923.86,26690.89,18.5,15209.84,1979.12,13230.72,0.0,organic,2016,Portland +28,2016-06-12,1.67,25140.3,6921.86,15536.84,15.11,2666.49,273.21,2393.28,0.0,organic,2016,Portland +29,2016-06-05,1.66,29171.54,7923.13,20355.75,11.77,880.89,90.0,790.89,0.0,organic,2016,Portland +30,2016-05-29,1.44,34897.73,2627.86,21156.45,0.0,11113.42,150.0,10963.42,0.0,organic,2016,Portland +31,2016-05-22,1.22,56942.79,1810.73,32672.86,6.71,22452.49,123.33,22329.16,0.0,organic,2016,Portland +32,2016-05-15,1.61,28745.81,1973.0,24271.37,3.34,2498.1,96.67,2401.43,0.0,organic,2016,Portland +33,2016-05-08,1.19,40105.0,2072.37,19665.9,3.33,18363.4,103.33,18260.07,0.0,organic,2016,Portland +34,2016-05-01,1.03,44515.8,2158.92,14037.95,0.0,28318.93,98.87,28220.06,0.0,organic,2016,Portland +35,2016-04-24,1.39,38186.89,1874.95,29434.07,3.32,6874.55,199.01,6675.54,0.0,organic,2016,Portland +36,2016-04-17,1.64,19825.05,2203.92,14267.41,1.66,3352.06,92.83,3259.23,0.0,organic,2016,Portland +37,2016-04-10,0.96,81224.11,2125.86,32426.84,0.0,46671.41,321.89,46349.52,0.0,organic,2016,Portland +38,2016-04-03,1.3,35447.47,2240.51,16386.67,4.95,16815.34,296.84,16518.5,0.0,organic,2016,Portland +39,2016-03-27,1.33,30826.41,1420.43,16074.89,1.65,13329.44,88.94,13240.5,0.0,organic,2016,Portland +40,2016-03-20,0.87,96171.26,1402.83,26703.78,0.0,68064.65,257.53,67807.12,0.0,organic,2016,Portland +41,2016-03-13,1.13,38889.87,1465.55,10758.3,0.0,26666.02,35.88,26630.14,0.0,organic,2016,Portland +42,2016-03-06,1.29,29351.99,1471.92,11528.98,1.64,16349.45,0.0,16349.45,0.0,organic,2016,Portland +43,2016-02-28,1.89,12313.5,1352.06,10793.68,1.65,166.11,25.62,140.49,0.0,organic,2016,Portland +44,2016-02-21,1.76,13209.42,786.08,9953.75,4.96,2464.63,190.9,2273.73,0.0,organic,2016,Portland +45,2016-02-14,0.9,63682.51,1154.71,18425.48,3.31,44099.01,1433.94,42665.07,0.0,organic,2016,Portland +46,2016-02-07,1.12,30022.42,1306.98,12257.79,0.0,16457.65,12385.21,4072.44,0.0,organic,2016,Portland +47,2016-01-31,1.35,24571.97,1049.79,9316.87,13.32,14191.99,42.55,14149.44,0.0,organic,2016,Portland +48,2016-01-24,1.6,17724.75,1555.39,8077.81,15.01,8076.54,0.0,8076.54,0.0,organic,2016,Portland +49,2016-01-17,1.22,29446.62,1345.36,11419.3,0.0,16681.96,27.85,16654.11,0.0,organic,2016,Portland +50,2016-01-10,1.25,30581.35,1551.96,12122.49,15.05,16891.85,22.3,16869.55,0.0,organic,2016,Portland +51,2016-01-03,1.44,28250.84,2016.38,10072.33,6.69,16155.44,133.87,16021.57,0.0,organic,2016,Portland +0,2016-12-25,1.6,8198.42,169.38,3060.27,369.81,4598.96,4526.08,72.88,0.0,organic,2016,RaleighGreensboro +1,2016-12-18,1.6,6604.78,209.88,2560.94,291.87,3542.09,3393.19,148.9,0.0,organic,2016,RaleighGreensboro +2,2016-12-11,1.63,7685.91,129.38,3172.14,298.96,4085.43,3332.94,752.49,0.0,organic,2016,RaleighGreensboro +3,2016-12-04,2.01,7632.36,154.37,2819.23,259.21,4399.55,4028.71,370.84,0.0,organic,2016,RaleighGreensboro +4,2016-11-27,2.01,9854.3,194.1,2960.92,331.04,6368.24,5708.72,659.52,0.0,organic,2016,RaleighGreensboro +5,2016-11-20,1.87,12021.69,145.29,3001.66,444.56,8430.18,7327.79,1102.39,0.0,organic,2016,RaleighGreensboro +6,2016-11-13,1.85,10276.83,180.62,3018.43,418.35,6659.43,5476.23,1183.2,0.0,organic,2016,RaleighGreensboro +7,2016-11-06,1.85,13651.72,181.02,3574.45,446.81,9449.44,8399.24,1050.2,0.0,organic,2016,RaleighGreensboro +8,2016-10-30,1.83,13196.5,181.18,5746.73,603.36,6665.23,6482.54,182.69,0.0,organic,2016,RaleighGreensboro +9,2016-10-23,1.69,14742.89,171.92,6245.22,615.01,7710.74,6163.44,1547.3,0.0,organic,2016,RaleighGreensboro +10,2016-10-16,1.69,13121.67,168.46,5344.14,579.87,7029.2,6432.51,596.69,0.0,organic,2016,RaleighGreensboro +11,2016-10-09,1.65,14282.79,252.46,6045.5,665.88,7318.95,6449.47,869.48,0.0,organic,2016,RaleighGreensboro +12,2016-10-02,1.87,10464.63,190.0,4744.03,452.15,5078.45,4848.48,229.97,0.0,organic,2016,RaleighGreensboro +13,2016-09-25,1.81,12807.68,226.31,4839.49,424.31,7317.57,6302.22,1015.35,0.0,organic,2016,RaleighGreensboro +14,2016-09-18,1.85,12131.33,209.13,5138.18,450.72,6333.3,5827.18,506.12,0.0,organic,2016,RaleighGreensboro +15,2016-09-11,1.77,15909.84,217.23,5379.34,518.49,9794.78,8919.3,875.48,0.0,organic,2016,RaleighGreensboro +16,2016-09-04,1.83,14951.65,202.29,5615.18,591.32,8542.86,7280.01,1262.85,0.0,organic,2016,RaleighGreensboro +17,2016-08-28,1.79,14753.18,433.33,5340.54,561.53,8417.78,6859.91,1557.87,0.0,organic,2016,RaleighGreensboro +18,2016-08-21,1.83,15042.9,392.74,5555.08,665.32,8429.76,7972.64,457.12,0.0,organic,2016,RaleighGreensboro +19,2016-08-14,1.84,11554.22,265.19,5472.76,699.26,5117.01,4511.11,605.9,0.0,organic,2016,RaleighGreensboro +20,2016-08-07,1.65,15800.5,278.7,9029.94,1380.46,5111.4,3957.56,1153.84,0.0,organic,2016,RaleighGreensboro +21,2016-07-31,1.68,15250.82,326.34,7146.4,1131.55,6646.53,6307.47,339.06,0.0,organic,2016,RaleighGreensboro +22,2016-07-24,1.72,15012.57,285.28,6934.87,1420.55,6371.87,5946.47,425.4,0.0,organic,2016,RaleighGreensboro +23,2016-07-17,1.76,12786.12,340.07,4953.1,1036.51,6456.44,5924.3,532.14,0.0,organic,2016,RaleighGreensboro +24,2016-07-10,1.87,10162.11,331.62,3715.44,647.37,5467.68,5254.34,213.34,0.0,organic,2016,RaleighGreensboro +25,2016-07-03,1.88,9151.31,241.13,3230.39,722.22,4957.57,4771.44,186.13,0.0,organic,2016,RaleighGreensboro +26,2016-06-26,1.72,9221.49,262.57,3228.8,598.52,5131.6,4326.78,804.82,0.0,organic,2016,RaleighGreensboro +27,2016-06-19,1.78,8904.41,250.6,3228.2,590.05,4835.56,4322.81,512.75,0.0,organic,2016,RaleighGreensboro +28,2016-06-12,1.7,9781.95,229.34,3677.21,468.7,5406.7,4380.13,1026.57,0.0,organic,2016,RaleighGreensboro +29,2016-06-05,1.58,10195.92,222.38,4199.73,464.78,5309.03,4237.68,1071.35,0.0,organic,2016,RaleighGreensboro +30,2016-05-29,1.8,8580.11,235.45,3673.93,404.27,4266.46,3765.03,501.43,0.0,organic,2016,RaleighGreensboro +31,2016-05-22,1.33,8390.24,197.54,3105.84,338.68,4748.18,3330.0,1418.18,0.0,organic,2016,RaleighGreensboro +32,2016-05-15,1.66,6628.06,281.92,3879.17,441.75,2025.22,1946.67,78.55,0.0,organic,2016,RaleighGreensboro +33,2016-05-08,1.65,6930.97,322.96,3842.19,492.76,2273.06,2044.82,228.24,0.0,organic,2016,RaleighGreensboro +34,2016-05-01,1.59,6514.47,228.79,3675.04,494.23,2116.41,1923.15,193.26,0.0,organic,2016,RaleighGreensboro +35,2016-04-24,1.61,5854.3,157.49,3368.46,437.29,1891.06,1791.35,99.71,0.0,organic,2016,RaleighGreensboro +36,2016-04-17,1.49,6440.23,211.2,2959.0,321.24,2948.79,2501.42,447.37,0.0,organic,2016,RaleighGreensboro +37,2016-04-10,1.33,7370.7,170.25,2878.73,336.06,3985.66,3421.08,564.58,0.0,organic,2016,RaleighGreensboro +38,2016-04-03,1.73,4879.21,157.92,3254.39,392.31,1074.59,850.0,224.59,0.0,organic,2016,RaleighGreensboro +39,2016-03-27,1.43,5902.81,137.26,2547.68,330.32,2887.55,2230.0,657.55,0.0,organic,2016,RaleighGreensboro +40,2016-03-20,1.42,5259.38,191.84,2696.92,326.8,2043.82,1020.0,1023.82,0.0,organic,2016,RaleighGreensboro +41,2016-03-13,1.54,5341.4,264.15,2611.43,314.31,2151.51,1780.0,371.51,0.0,organic,2016,RaleighGreensboro +42,2016-03-06,1.79,3720.67,155.88,2740.17,376.34,448.28,443.33,4.95,0.0,organic,2016,RaleighGreensboro +43,2016-02-28,1.71,4245.43,231.06,2720.09,362.68,931.6,901.61,29.99,0.0,organic,2016,RaleighGreensboro +44,2016-02-21,1.76,3564.84,211.91,2287.77,382.96,682.2,660.0,22.2,0.0,organic,2016,RaleighGreensboro +45,2016-02-14,1.59,4235.48,183.68,1987.42,397.71,1666.67,1297.39,369.28,0.0,organic,2016,RaleighGreensboro +46,2016-02-07,1.54,5562.26,215.41,2621.54,515.02,2210.29,1280.7,929.59,0.0,organic,2016,RaleighGreensboro +47,2016-01-31,1.56,5730.24,188.11,2631.57,447.6,2462.96,1821.85,641.11,0.0,organic,2016,RaleighGreensboro +48,2016-01-24,1.59,5276.31,113.48,2235.52,416.47,2510.84,2409.12,101.72,0.0,organic,2016,RaleighGreensboro +49,2016-01-17,1.66,4137.6,147.2,2088.92,436.7,1464.78,1260.66,204.12,0.0,organic,2016,RaleighGreensboro +50,2016-01-10,1.59,6504.77,144.97,3048.57,533.83,2777.4,2217.35,560.05,0.0,organic,2016,RaleighGreensboro +51,2016-01-03,1.68,4884.82,156.67,2420.08,558.31,1749.76,1386.15,363.61,0.0,organic,2016,RaleighGreensboro +0,2016-12-25,1.66,5233.93,501.16,2272.02,151.72,2309.03,2309.03,0.0,0.0,organic,2016,RichmondNorfolk +1,2016-12-18,1.61,5227.98,373.13,2227.6,179.75,2447.5,2381.39,66.11,0.0,organic,2016,RichmondNorfolk +2,2016-12-11,1.58,6376.59,311.28,2645.87,170.46,3248.98,2668.42,580.56,0.0,organic,2016,RichmondNorfolk +3,2016-12-04,1.3,7132.62,262.63,2320.11,116.19,4433.69,1641.97,2791.72,0.0,organic,2016,RichmondNorfolk +4,2016-11-27,1.27,6626.94,297.36,1879.28,170.95,4279.35,1538.56,2740.79,0.0,organic,2016,RichmondNorfolk +5,2016-11-20,1.1,8894.34,320.57,1919.85,253.34,6400.58,1854.79,4545.79,0.0,organic,2016,RichmondNorfolk +6,2016-11-13,1.61,7529.46,275.42,2721.84,217.94,4314.26,2456.8,1857.46,0.0,organic,2016,RichmondNorfolk +7,2016-11-06,1.16,12920.67,354.11,3333.15,224.52,9008.89,3285.65,5723.24,0.0,organic,2016,RichmondNorfolk +8,2016-10-30,1.76,6706.92,211.94,3878.06,348.87,2268.05,2042.4,225.65,0.0,organic,2016,RichmondNorfolk +9,2016-10-23,1.16,12154.78,141.64,4350.3,358.26,7304.58,1949.05,5355.53,0.0,organic,2016,RichmondNorfolk +10,2016-10-16,1.39,8473.82,202.21,3729.03,293.8,4248.78,2083.75,2165.03,0.0,organic,2016,RichmondNorfolk +11,2016-10-09,1.25,10827.2,291.08,3653.4,402.77,6479.95,3082.61,3397.34,0.0,organic,2016,RichmondNorfolk +12,2016-10-02,1.79,6425.0,62.65,3661.23,301.15,2399.97,2195.03,204.94,0.0,organic,2016,RichmondNorfolk +13,2016-09-25,1.54,10037.87,105.92,3806.68,234.22,5891.05,3344.31,2546.74,0.0,organic,2016,RichmondNorfolk +14,2016-09-18,1.52,9705.5,109.45,3995.57,251.49,5348.99,3302.03,2046.96,0.0,organic,2016,RichmondNorfolk +15,2016-09-11,1.24,10718.92,95.49,3700.54,275.86,6647.03,3156.59,3490.44,0.0,organic,2016,RichmondNorfolk +16,2016-09-04,1.29,10685.82,130.62,4206.95,327.14,6021.11,2581.02,3440.09,0.0,organic,2016,RichmondNorfolk +17,2016-08-28,1.32,9356.4,106.71,3821.0,345.29,5083.4,2639.19,2444.21,0.0,organic,2016,RichmondNorfolk +18,2016-08-21,1.56,9072.92,101.74,4189.33,363.87,4417.98,2669.12,1748.86,0.0,organic,2016,RichmondNorfolk +19,2016-08-14,1.43,9194.34,131.7,3711.8,406.21,4944.63,2673.87,2270.76,0.0,organic,2016,RichmondNorfolk +20,2016-08-07,1.33,11384.29,180.17,4064.21,535.69,6604.22,2870.47,3733.75,0.0,organic,2016,RichmondNorfolk +21,2016-07-31,1.39,8573.51,181.07,3715.62,360.94,4315.88,2698.99,1616.89,0.0,organic,2016,RichmondNorfolk +22,2016-07-24,1.44,8316.29,76.6,3877.35,585.62,3776.72,2544.01,1232.71,0.0,organic,2016,RichmondNorfolk +23,2016-07-17,1.5,9628.02,161.18,4390.15,500.26,4576.43,2761.53,1814.9,0.0,organic,2016,RichmondNorfolk +24,2016-07-10,1.41,8691.34,190.48,4922.65,464.29,3113.92,1823.97,1289.95,0.0,organic,2016,RichmondNorfolk +25,2016-07-03,1.44,7492.18,199.81,4533.08,419.71,2339.58,1563.39,776.19,0.0,organic,2016,RichmondNorfolk +26,2016-06-26,1.19,9200.04,343.51,4176.52,391.47,4288.54,1732.8,2555.74,0.0,organic,2016,RichmondNorfolk +27,2016-06-19,1.2,9147.53,131.97,4497.75,420.11,4097.7,1913.09,2184.61,0.0,organic,2016,RichmondNorfolk +28,2016-06-12,1.16,9568.18,131.67,4168.66,395.0,4872.85,1665.78,3207.07,0.0,organic,2016,RichmondNorfolk +29,2016-06-05,0.95,11300.16,135.15,4707.45,240.14,6217.42,1741.4,4476.02,0.0,organic,2016,RichmondNorfolk +30,2016-05-29,1.05,11411.49,151.89,5283.51,242.3,5733.79,2428.0,3305.79,0.0,organic,2016,RichmondNorfolk +31,2016-05-22,1.03,11131.05,231.2,4605.85,232.4,6061.6,2186.4,3875.2,0.0,organic,2016,RichmondNorfolk +32,2016-05-15,1.37,8522.69,193.62,5552.32,298.24,2478.51,2022.44,456.07,0.0,organic,2016,RichmondNorfolk +33,2016-05-08,1.36,9008.52,209.07,5266.48,341.25,3191.72,2301.65,890.07,0.0,organic,2016,RichmondNorfolk +34,2016-05-01,1.37,8833.79,250.93,4755.75,276.15,3550.96,2973.38,577.58,0.0,organic,2016,RichmondNorfolk +35,2016-04-24,1.41,8668.48,299.63,4036.64,174.99,4157.22,3520.3,636.92,0.0,organic,2016,RichmondNorfolk +36,2016-04-17,1.19,9118.19,253.12,3546.14,205.14,5113.79,3257.15,1856.64,0.0,organic,2016,RichmondNorfolk +37,2016-04-10,0.93,11987.87,255.69,3842.56,200.47,7689.15,5416.4,2272.75,0.0,organic,2016,RichmondNorfolk +38,2016-04-03,1.35,6699.78,156.2,3417.08,317.2,2809.3,1480.5,1328.8,0.0,organic,2016,RichmondNorfolk +39,2016-03-27,1.14,9029.13,184.98,3008.88,224.62,5610.65,2487.03,3123.62,0.0,organic,2016,RichmondNorfolk +40,2016-03-20,1.0,8346.57,308.39,2675.89,164.39,5197.9,1653.33,3544.57,0.0,organic,2016,RichmondNorfolk +41,2016-03-13,1.23,6650.92,269.77,2965.04,245.79,3170.32,1382.53,1787.79,0.0,organic,2016,RichmondNorfolk +42,2016-03-06,1.54,4091.44,240.75,2554.83,209.61,1086.25,1079.58,6.67,0.0,organic,2016,RichmondNorfolk +43,2016-02-28,1.41,4791.05,173.5,2677.83,174.69,1765.03,1441.25,323.78,0.0,organic,2016,RichmondNorfolk +44,2016-02-21,1.48,3525.02,140.98,1961.84,223.42,1198.78,998.29,200.49,0.0,organic,2016,RichmondNorfolk +45,2016-02-14,1.29,5510.43,177.82,2574.21,212.43,2545.97,1288.89,1257.08,0.0,organic,2016,RichmondNorfolk +46,2016-02-07,1.34,4905.87,133.45,2540.32,283.58,1948.52,1045.61,902.91,0.0,organic,2016,RichmondNorfolk +47,2016-01-31,1.35,5520.68,170.11,2962.04,284.31,2104.22,791.72,1312.5,0.0,organic,2016,RichmondNorfolk +48,2016-01-24,1.45,5064.84,114.05,2524.5,192.46,2233.83,1789.47,444.36,0.0,organic,2016,RichmondNorfolk +49,2016-01-17,1.4,4173.42,69.79,2273.91,253.58,1576.14,1033.7,542.44,0.0,organic,2016,RichmondNorfolk +50,2016-01-10,1.35,6424.72,126.55,2778.08,279.11,3240.98,1466.98,1774.0,0.0,organic,2016,RichmondNorfolk +51,2016-01-03,1.45,5094.68,110.92,2315.25,326.87,2341.64,1223.21,1118.43,0.0,organic,2016,RichmondNorfolk +0,2016-12-25,1.68,3911.18,179.82,2219.18,0.0,1512.18,1475.63,36.55,0.0,organic,2016,Roanoke +1,2016-12-18,1.5,4814.51,181.63,2715.1,0.0,1917.78,1624.65,293.13,0.0,organic,2016,Roanoke +2,2016-12-11,1.39,6116.62,87.29,2532.32,0.0,3497.01,1788.59,1708.42,0.0,organic,2016,Roanoke +3,2016-12-04,1.16,7012.95,70.96,2425.5,0.0,4516.49,836.89,3679.6,0.0,organic,2016,Roanoke +4,2016-11-27,1.1,6187.92,18.25,1877.65,0.0,4292.02,1074.78,3217.24,0.0,organic,2016,Roanoke +5,2016-11-20,0.98,9215.63,75.81,2398.24,0.0,6741.58,1186.12,5555.46,0.0,organic,2016,Roanoke +6,2016-11-13,1.17,9499.5,65.3,2932.56,0.0,6501.64,1297.2,5204.44,0.0,organic,2016,Roanoke +7,2016-11-06,0.96,13847.12,54.93,3558.24,0.0,10233.95,2179.94,8054.01,0.0,organic,2016,Roanoke +8,2016-10-30,1.77,6335.66,52.16,4203.61,0.0,2079.89,1422.05,657.84,0.0,organic,2016,Roanoke +9,2016-10-23,0.97,12376.43,89.04,3435.89,0.0,8851.5,1475.32,7376.18,0.0,organic,2016,Roanoke +10,2016-10-16,1.15,8323.19,52.4,3016.27,0.0,5254.52,1582.01,3672.51,0.0,organic,2016,Roanoke +11,2016-10-09,1.02,12750.65,51.05,3881.16,0.0,8818.44,2235.63,6582.81,0.0,organic,2016,Roanoke +12,2016-10-02,1.69,5791.95,59.6,3548.88,0.0,2183.47,1603.26,580.21,0.0,organic,2016,Roanoke +13,2016-09-25,1.34,10226.36,50.67,3432.88,0.0,6742.81,2183.45,4559.36,0.0,organic,2016,Roanoke +14,2016-09-18,1.52,8239.74,58.18,3901.06,0.0,4280.5,1893.28,2387.22,0.0,organic,2016,Roanoke +15,2016-09-11,1.08,12126.14,100.69,3898.72,0.0,8126.73,1658.8,6467.93,0.0,organic,2016,Roanoke +16,2016-09-04,1.15,11844.17,97.77,3795.93,0.0,7950.47,1605.04,6345.43,0.0,organic,2016,Roanoke +17,2016-08-28,1.05,11054.8,66.5,3677.43,0.0,7310.87,1541.06,5769.81,0.0,organic,2016,Roanoke +18,2016-08-21,1.41,9794.48,77.71,3840.44,0.0,5876.33,1489.85,4386.48,0.0,organic,2016,Roanoke +19,2016-08-14,1.26,9274.44,100.12,3811.78,0.0,5362.54,1314.48,4048.06,0.0,organic,2016,Roanoke +20,2016-08-07,1.19,11490.52,108.73,3845.83,0.0,7535.96,1416.94,6119.02,0.0,organic,2016,Roanoke +21,2016-07-31,1.2,8671.66,222.38,3754.04,0.0,4695.24,1543.88,3151.36,0.0,organic,2016,Roanoke +22,2016-07-24,1.51,7005.43,149.8,4086.11,0.0,2769.52,1330.89,1438.63,0.0,organic,2016,Roanoke +23,2016-07-17,1.49,7945.23,127.28,4064.76,0.0,3753.19,1521.13,2232.06,0.0,organic,2016,Roanoke +24,2016-07-10,1.33,9499.39,118.72,5339.53,0.0,4041.14,1340.85,2700.29,0.0,organic,2016,Roanoke +25,2016-07-03,1.52,7064.25,118.52,4615.38,0.0,2330.35,949.9,1380.45,0.0,organic,2016,Roanoke +26,2016-06-26,1.19,9043.11,72.94,3824.71,0.0,5145.46,1193.98,3951.48,0.0,organic,2016,Roanoke +27,2016-06-19,1.18,9331.05,156.67,4049.96,0.0,5124.42,1223.8,3900.62,0.0,organic,2016,Roanoke +28,2016-06-12,1.21,10823.6,77.0,4286.07,0.0,6460.53,1063.06,5397.47,0.0,organic,2016,Roanoke +29,2016-06-05,0.89,11777.82,112.51,3494.77,0.0,8170.54,1051.97,7118.57,0.0,organic,2016,Roanoke +30,2016-05-29,0.96,9933.8,172.53,4014.81,0.0,5746.46,1341.27,4405.19,0.0,organic,2016,Roanoke +31,2016-05-22,0.79,12266.68,222.72,3750.64,0.0,8293.32,1445.87,6847.45,0.0,organic,2016,Roanoke +32,2016-05-15,1.35,6897.54,83.19,4760.89,0.0,2053.46,1488.5,564.96,0.0,organic,2016,Roanoke +33,2016-05-08,1.36,7229.48,68.12,4191.0,0.0,2970.36,1395.08,1575.28,0.0,organic,2016,Roanoke +34,2016-05-01,1.35,6667.12,159.26,3652.08,0.0,2855.78,2042.63,813.15,0.0,organic,2016,Roanoke +35,2016-04-24,1.4,6973.42,132.24,3781.88,0.0,3059.3,1995.38,1063.92,0.0,organic,2016,Roanoke +36,2016-04-17,1.06,8814.87,126.61,3595.39,0.0,5092.87,1717.21,3375.66,0.0,organic,2016,Roanoke +37,2016-04-10,0.81,14080.32,100.61,4237.88,0.0,9741.83,5961.78,3780.05,0.0,organic,2016,Roanoke +38,2016-04-03,1.31,6828.81,111.34,3216.69,0.0,3500.78,1129.29,2371.49,0.0,organic,2016,Roanoke +39,2016-03-27,0.99,9949.85,154.48,3073.28,0.0,6722.09,1330.24,5391.85,0.0,organic,2016,Roanoke +40,2016-03-20,0.94,9084.56,233.87,2971.4,0.0,5879.29,1031.73,4847.56,0.0,organic,2016,Roanoke +41,2016-03-13,1.22,7169.41,102.82,3612.57,0.0,3454.02,917.94,2536.08,0.0,organic,2016,Roanoke +42,2016-03-06,1.55,3800.32,78.11,3156.52,0.0,565.69,558.14,7.55,0.0,organic,2016,Roanoke +43,2016-02-28,1.29,4884.11,102.18,3439.18,0.0,1342.75,759.17,583.58,0.0,organic,2016,Roanoke +44,2016-02-21,1.38,4281.11,111.37,3060.73,0.0,1109.01,637.88,471.13,0.0,organic,2016,Roanoke +45,2016-02-14,1.21,6559.49,107.13,2986.26,0.0,3466.1,755.11,2710.99,0.0,organic,2016,Roanoke +46,2016-02-07,1.29,5897.89,80.15,3366.4,0.0,2451.34,657.14,1794.2,0.0,organic,2016,Roanoke +47,2016-01-31,1.33,6019.01,98.48,3346.91,0.0,2573.62,794.41,1779.21,0.0,organic,2016,Roanoke +48,2016-01-24,1.55,4774.87,98.48,2996.95,0.0,1679.44,849.15,830.29,0.0,organic,2016,Roanoke +49,2016-01-17,1.37,4509.76,130.27,2593.49,0.0,1786.0,622.12,1163.88,0.0,organic,2016,Roanoke +50,2016-01-10,1.28,6018.32,89.38,2637.76,0.0,3291.18,801.81,2489.37,0.0,organic,2016,Roanoke +51,2016-01-03,1.24,5024.11,81.06,2303.95,0.0,2639.1,476.28,2162.82,0.0,organic,2016,Roanoke +0,2016-12-25,2.41,4567.83,1449.65,2867.8,2.68,247.7,247.7,0.0,0.0,organic,2016,Sacramento +1,2016-12-18,2.36,3768.98,1376.52,2177.8,0.0,214.66,214.66,0.0,0.0,organic,2016,Sacramento +2,2016-12-11,2.46,3874.86,1283.52,2305.73,0.0,285.61,285.61,0.0,0.0,organic,2016,Sacramento +3,2016-12-04,2.52,4384.51,1687.59,2234.55,0.0,462.37,462.37,0.0,0.0,organic,2016,Sacramento +4,2016-11-27,2.61,4143.89,1531.72,2161.72,2.66,447.79,432.62,15.17,0.0,organic,2016,Sacramento +5,2016-11-20,2.54,5413.97,1621.47,2602.34,2.66,1187.5,1128.05,59.45,0.0,organic,2016,Sacramento +6,2016-11-13,2.65,6026.15,1981.78,3036.85,0.0,1007.52,998.68,8.84,0.0,organic,2016,Sacramento +7,2016-11-06,2.82,5372.3,1769.57,3105.69,0.0,497.04,493.71,3.33,0.0,organic,2016,Sacramento +8,2016-10-30,2.44,5676.57,1550.22,3615.86,0.0,510.49,510.49,0.0,0.0,organic,2016,Sacramento +9,2016-10-23,2.23,5525.46,1044.35,3807.61,5.34,668.16,668.16,0.0,0.0,organic,2016,Sacramento +10,2016-10-16,2.13,4315.59,1299.88,2582.51,0.0,433.2,433.2,0.0,0.0,organic,2016,Sacramento +11,2016-10-09,2.39,5634.61,1178.65,4135.76,0.0,320.2,320.2,0.0,0.0,organic,2016,Sacramento +12,2016-10-02,2.33,6408.53,1399.51,4712.45,7.96,288.61,268.61,20.0,0.0,organic,2016,Sacramento +13,2016-09-25,2.18,6758.91,1733.09,4758.69,9.29,257.84,251.17,6.67,0.0,organic,2016,Sacramento +14,2016-09-18,2.17,7095.5,1674.83,5064.47,2.65,353.55,343.55,10.0,0.0,organic,2016,Sacramento +15,2016-09-11,2.19,7223.46,1512.68,5358.04,3.98,348.76,345.43,3.33,0.0,organic,2016,Sacramento +16,2016-09-04,2.19,6913.79,1311.6,5222.39,0.0,379.8,379.8,0.0,0.0,organic,2016,Sacramento +17,2016-08-28,2.23,6918.81,1196.98,5359.18,2.66,359.99,359.99,0.0,0.0,organic,2016,Sacramento +18,2016-08-21,2.19,6172.17,1455.86,4408.45,0.0,307.86,307.86,0.0,0.0,organic,2016,Sacramento +19,2016-08-14,1.96,7490.34,1651.39,5561.63,0.0,277.32,277.32,0.0,0.0,organic,2016,Sacramento +20,2016-08-07,2.2,7923.11,1615.94,5967.25,0.0,339.92,316.59,23.33,0.0,organic,2016,Sacramento +21,2016-07-31,2.19,7426.56,1534.01,5582.08,2.66,307.81,307.81,0.0,0.0,organic,2016,Sacramento +22,2016-07-24,2.15,7348.62,1607.42,5412.41,2.66,326.13,326.13,0.0,0.0,organic,2016,Sacramento +23,2016-07-17,2.14,7715.38,1596.88,5807.8,0.0,310.7,310.7,0.0,0.0,organic,2016,Sacramento +24,2016-07-10,2.13,8347.48,1784.58,6221.27,0.0,341.63,341.63,0.0,0.0,organic,2016,Sacramento +25,2016-07-03,2.13,9057.29,1931.88,6761.58,0.0,363.83,363.83,0.0,0.0,organic,2016,Sacramento +26,2016-06-26,1.79,9617.62,2537.74,6488.42,0.0,591.46,591.46,0.0,0.0,organic,2016,Sacramento +27,2016-06-19,2.13,7417.31,1496.2,5679.56,0.0,241.55,241.55,0.0,0.0,organic,2016,Sacramento +28,2016-06-12,2.11,7608.58,1478.16,5966.52,0.0,163.9,163.9,0.0,0.0,organic,2016,Sacramento +29,2016-06-05,2.08,8123.66,1423.81,6372.3,0.0,327.55,327.55,0.0,0.0,organic,2016,Sacramento +30,2016-05-29,1.99,9333.72,1748.33,7197.21,0.0,388.18,388.18,0.0,0.0,organic,2016,Sacramento +31,2016-05-22,2.01,8439.22,1744.81,6492.36,0.0,202.05,202.05,0.0,0.0,organic,2016,Sacramento +32,2016-05-15,1.72,11673.76,3732.91,7340.87,0.0,599.98,599.98,0.0,0.0,organic,2016,Sacramento +33,2016-05-08,1.4,12962.2,1851.63,10971.67,0.0,138.9,138.9,0.0,0.0,organic,2016,Sacramento +34,2016-05-01,1.41,13056.72,1777.72,10850.42,0.0,428.58,428.58,0.0,0.0,organic,2016,Sacramento +35,2016-04-24,2.01,8840.73,1726.1,6795.19,0.0,319.44,319.44,0.0,0.0,organic,2016,Sacramento +36,2016-04-17,1.95,8477.64,1585.91,6479.19,0.0,412.54,412.54,0.0,0.0,organic,2016,Sacramento +37,2016-04-10,2.05,7871.28,1570.39,5977.15,0.0,323.74,323.74,0.0,0.0,organic,2016,Sacramento +38,2016-04-03,2.03,8108.18,1317.74,6587.37,0.0,203.07,203.07,0.0,0.0,organic,2016,Sacramento +39,2016-03-27,2.07,7588.03,1210.19,6043.13,0.0,334.71,331.38,3.33,0.0,organic,2016,Sacramento +40,2016-03-20,1.96,7688.54,1124.36,6330.38,0.0,233.8,233.8,0.0,0.0,organic,2016,Sacramento +41,2016-03-13,2.04,7402.74,1313.23,5918.66,0.0,170.85,170.85,0.0,0.0,organic,2016,Sacramento +42,2016-03-06,1.88,9728.1,1979.45,7072.14,0.0,676.51,676.51,0.0,0.0,organic,2016,Sacramento +43,2016-02-28,2.01,7998.27,1156.04,6504.7,0.0,337.53,334.2,3.33,0.0,organic,2016,Sacramento +44,2016-02-21,2.04,6818.11,1000.93,5572.52,0.0,244.66,241.33,3.33,0.0,organic,2016,Sacramento +45,2016-02-14,1.98,7588.38,1013.96,6423.04,0.0,151.38,148.47,2.91,0.0,organic,2016,Sacramento +46,2016-02-07,1.72,8361.61,1176.14,6908.66,0.0,276.81,276.81,0.0,0.0,organic,2016,Sacramento +47,2016-01-31,1.73,9768.28,1966.28,7082.01,0.0,719.99,719.99,0.0,0.0,organic,2016,Sacramento +48,2016-01-24,1.73,7361.79,1130.66,5939.57,0.0,291.56,291.56,0.0,0.0,organic,2016,Sacramento +49,2016-01-17,1.72,6880.85,1153.85,5593.51,0.0,133.49,133.49,0.0,0.0,organic,2016,Sacramento +50,2016-01-10,1.68,6929.96,1251.06,5380.3,0.0,298.6,298.6,0.0,0.0,organic,2016,Sacramento +51,2016-01-03,1.68,7911.16,1317.55,6361.92,0.0,231.69,231.69,0.0,0.0,organic,2016,Sacramento +0,2016-12-25,1.43,12022.95,715.07,7537.57,0.0,3770.31,540.0,3230.31,0.0,organic,2016,SanDiego +1,2016-12-18,1.63,12212.22,829.17,9348.28,52.46,1982.31,403.33,1578.98,0.0,organic,2016,SanDiego +2,2016-12-11,1.49,14513.56,1070.01,9924.91,4.76,3513.88,526.67,2987.21,0.0,organic,2016,SanDiego +3,2016-12-04,2.06,9419.21,1464.73,6546.16,0.0,1408.32,540.0,868.32,0.0,organic,2016,SanDiego +4,2016-11-27,2.12,10271.6,865.46,7228.46,0.0,2177.68,380.0,1797.68,0.0,organic,2016,SanDiego +5,2016-11-20,2.22,8535.78,747.96,6107.03,0.0,1680.79,720.0,960.79,0.0,organic,2016,SanDiego +6,2016-11-13,2.1,10261.69,914.13,6460.16,0.0,2887.4,830.0,2057.4,0.0,organic,2016,SanDiego +7,2016-11-06,2.51,11300.17,1168.91,7700.03,0.0,2431.23,497.84,1933.39,0.0,organic,2016,SanDiego +8,2016-10-30,2.74,8933.54,1854.17,6533.7,0.0,545.67,545.67,0.0,0.0,organic,2016,SanDiego +9,2016-10-23,2.73,8533.85,653.46,6987.25,0.0,893.14,893.14,0.0,0.0,organic,2016,SanDiego +10,2016-10-16,2.28,11256.86,1073.78,9006.32,0.0,1176.76,1176.76,0.0,0.0,organic,2016,SanDiego +11,2016-10-09,2.22,10499.71,908.41,7917.99,0.0,1673.31,1673.31,0.0,0.0,organic,2016,SanDiego +12,2016-10-02,1.99,12215.92,980.57,7576.82,0.0,3658.53,3658.53,0.0,0.0,organic,2016,SanDiego +13,2016-09-25,2.35,9831.47,734.45,8359.4,0.0,737.62,737.62,0.0,0.0,organic,2016,SanDiego +14,2016-09-18,2.15,10274.36,1289.86,8195.56,0.0,788.94,756.43,32.51,0.0,organic,2016,SanDiego +15,2016-09-11,1.59,18422.92,2500.57,13057.42,0.0,2864.93,1950.17,914.76,0.0,organic,2016,SanDiego +16,2016-09-04,1.79,15730.69,2161.04,8451.98,0.0,5117.67,4219.46,898.21,0.0,organic,2016,SanDiego +17,2016-08-28,1.89,14359.34,2605.56,8258.88,0.0,3494.9,3283.42,211.48,0.0,organic,2016,SanDiego +18,2016-08-21,1.92,12240.19,3470.29,6774.71,0.0,1995.19,1757.47,237.72,0.0,organic,2016,SanDiego +19,2016-08-14,1.91,15584.89,3489.41,8753.2,4.95,3337.33,511.95,2825.38,0.0,organic,2016,SanDiego +20,2016-08-07,1.48,20143.55,1971.6,7907.1,0.0,10264.85,524.4,9740.45,0.0,organic,2016,SanDiego +21,2016-07-31,1.97,13275.24,1816.69,9171.8,6.61,2280.14,657.38,1622.76,0.0,organic,2016,SanDiego +22,2016-07-24,1.69,17192.77,2125.18,9589.68,3.3,5474.61,2202.85,3271.76,0.0,organic,2016,SanDiego +23,2016-07-17,1.91,14864.69,1579.48,10303.62,0.0,2981.59,2981.59,0.0,0.0,organic,2016,SanDiego +24,2016-07-10,1.43,20997.51,2752.28,8317.59,0.0,9927.64,9927.64,0.0,0.0,organic,2016,SanDiego +25,2016-07-03,1.49,21506.43,1895.27,11972.74,0.0,7638.42,7634.78,3.64,0.0,organic,2016,SanDiego +26,2016-06-26,1.52,20209.95,3158.64,11338.76,0.0,5712.55,5690.76,21.79,0.0,organic,2016,SanDiego +27,2016-06-19,1.46,20841.07,2114.63,11018.3,4.87,7703.27,7696.06,7.21,0.0,organic,2016,SanDiego +28,2016-06-12,1.45,18898.31,2863.86,11757.61,3.23,4273.61,4270.02,3.59,0.0,organic,2016,SanDiego +29,2016-06-05,1.52,17431.92,3340.24,8893.38,0.0,5198.3,5022.86,175.44,0.0,organic,2016,SanDiego +30,2016-05-29,1.44,18843.84,2154.42,9998.92,0.0,6690.5,6601.22,89.28,0.0,organic,2016,SanDiego +31,2016-05-22,1.15,21361.58,2091.2,10494.08,4.81,8771.49,8771.49,0.0,0.0,organic,2016,SanDiego +32,2016-05-15,1.53,16392.02,2107.1,9617.74,0.0,4667.18,4667.18,0.0,0.0,organic,2016,SanDiego +33,2016-05-08,1.37,22751.54,1313.14,11595.98,0.0,9842.42,9788.41,54.01,0.0,organic,2016,SanDiego +34,2016-05-01,1.37,17211.18,1184.83,9050.03,0.0,6976.32,6870.3,106.02,0.0,organic,2016,SanDiego +35,2016-04-24,1.22,19360.95,1677.44,9129.99,3.17,8550.35,8543.3,7.05,0.0,organic,2016,SanDiego +36,2016-04-17,1.29,16158.77,1367.99,8462.25,6.32,6322.21,6287.11,35.1,0.0,organic,2016,SanDiego +37,2016-04-10,1.23,19988.34,1574.7,9821.03,0.0,8592.61,6862.17,1730.44,0.0,organic,2016,SanDiego +38,2016-04-03,1.25,21630.01,1640.08,13036.06,0.0,6953.87,3636.46,3317.41,0.0,organic,2016,SanDiego +39,2016-03-27,1.35,16902.98,1329.74,9842.92,4.76,5725.56,1289.57,4435.99,0.0,organic,2016,SanDiego +40,2016-03-20,1.4,14926.04,1809.37,8607.36,3.21,4506.1,2285.38,2220.72,0.0,organic,2016,SanDiego +41,2016-03-13,1.38,20836.85,1821.51,12902.73,0.0,6112.61,1609.13,4503.48,0.0,organic,2016,SanDiego +42,2016-03-06,1.21,18148.41,1836.96,8499.93,0.0,7811.52,7772.41,39.11,0.0,organic,2016,SanDiego +43,2016-02-28,1.12,24693.33,1620.83,10119.81,0.0,12952.69,12878.1,74.59,0.0,organic,2016,SanDiego +44,2016-02-21,1.25,16903.84,1307.06,8403.84,4.79,7188.15,6474.65,713.5,0.0,organic,2016,SanDiego +45,2016-02-14,1.42,14114.3,667.06,9489.39,7.99,3949.86,670.13,3279.73,0.0,organic,2016,SanDiego +46,2016-02-07,1.32,13419.01,883.53,7162.51,12.78,5360.19,311.44,5048.75,0.0,organic,2016,SanDiego +47,2016-01-31,1.4,11694.11,1123.3,7131.28,12.78,3426.75,444.06,2982.69,0.0,organic,2016,SanDiego +48,2016-01-24,1.31,15316.04,1368.36,8300.29,0.0,5647.39,756.65,4890.74,0.0,organic,2016,SanDiego +49,2016-01-17,1.46,12118.57,1919.4,5839.47,0.0,4359.7,710.23,3649.47,0.0,organic,2016,SanDiego +50,2016-01-10,1.32,12435.43,1414.85,5266.26,0.0,5754.32,515.58,5238.74,0.0,organic,2016,SanDiego +51,2016-01-03,1.41,10975.51,1991.55,5916.03,0.0,3067.93,614.85,2453.08,0.0,organic,2016,SanDiego +0,2016-12-25,2.56,16169.17,5599.25,8335.16,0.0,2234.76,2234.76,0.0,0.0,organic,2016,SanFrancisco +1,2016-12-18,2.57,14537.83,4731.38,7497.35,0.0,2309.1,2309.1,0.0,0.0,organic,2016,SanFrancisco +2,2016-12-11,2.67,16323.32,5669.42,7627.83,0.0,3026.07,3026.07,0.0,0.0,organic,2016,SanFrancisco +3,2016-12-04,2.67,17934.25,7263.87,7440.44,0.0,3229.94,3217.12,12.82,0.0,organic,2016,SanFrancisco +4,2016-11-27,2.88,17864.74,7103.0,8383.87,0.0,2377.87,2292.98,84.89,0.0,organic,2016,SanFrancisco +5,2016-11-20,2.94,17436.41,5926.88,7823.25,0.0,3686.28,3620.25,66.03,0.0,organic,2016,SanFrancisco +6,2016-11-13,2.99,18930.4,6204.65,9341.41,0.0,3384.34,3337.67,46.67,0.0,organic,2016,SanFrancisco +7,2016-11-06,3.12,19043.8,5898.49,10039.34,0.0,3105.97,3079.3,26.67,0.0,organic,2016,SanFrancisco +8,2016-10-30,3.25,16700.94,2325.93,11142.85,0.0,3232.16,3232.16,0.0,0.0,organic,2016,SanFrancisco +9,2016-10-23,2.93,11252.48,522.51,7911.64,0.0,2818.33,2818.33,0.0,0.0,organic,2016,SanFrancisco +10,2016-10-16,2.34,9048.18,696.18,5316.66,0.0,3035.34,3035.34,0.0,0.0,organic,2016,SanFrancisco +11,2016-10-09,2.72,20761.25,1173.39,16842.78,0.0,2745.08,2717.31,27.77,0.0,organic,2016,SanFrancisco +12,2016-10-02,2.64,22501.25,915.83,18642.6,8.81,2934.01,2890.68,43.33,0.0,organic,2016,SanFrancisco +13,2016-09-25,2.35,21280.92,1004.39,17080.28,0.0,3196.25,3172.92,23.33,0.0,organic,2016,SanFrancisco +14,2016-09-18,2.39,23514.36,1244.2,20050.91,0.0,2219.25,2165.92,53.33,0.0,organic,2016,SanFrancisco +15,2016-09-11,2.37,24473.19,1085.31,20414.18,0.0,2973.7,2947.03,26.67,0.0,organic,2016,SanFrancisco +16,2016-09-04,2.38,24494.11,808.89,20860.73,0.0,2824.49,2771.16,53.33,0.0,organic,2016,SanFrancisco +17,2016-08-28,2.38,24143.51,879.59,20543.36,0.0,2720.56,2703.89,16.67,0.0,organic,2016,SanFrancisco +18,2016-08-21,2.37,20261.0,1618.49,16299.31,0.0,2343.2,2303.2,40.0,0.0,organic,2016,SanFrancisco +19,2016-08-14,2.02,25520.8,1769.21,21501.96,0.0,2249.63,2209.63,40.0,0.0,organic,2016,SanFrancisco +20,2016-08-07,2.33,24605.38,2253.95,19463.2,0.0,2888.23,2861.56,26.67,0.0,organic,2016,SanFrancisco +21,2016-07-31,2.29,23597.78,1680.88,20024.9,1.43,1890.57,1877.24,13.33,0.0,organic,2016,SanFrancisco +22,2016-07-24,2.37,22083.85,1599.49,18771.61,0.0,1712.75,1709.42,3.33,0.0,organic,2016,SanFrancisco +23,2016-07-17,2.3,26284.24,1394.27,22261.46,4.27,2624.24,2614.24,10.0,0.0,organic,2016,SanFrancisco +24,2016-07-10,2.32,29064.21,1759.68,25145.42,0.0,2159.11,2149.11,10.0,0.0,organic,2016,SanFrancisco +25,2016-07-03,2.31,29071.11,1423.41,25739.18,14.19,1894.33,1884.33,10.0,0.0,organic,2016,SanFrancisco +26,2016-06-26,2.21,29535.82,2214.42,25310.53,2.84,2008.03,2004.7,3.33,0.0,organic,2016,SanFrancisco +27,2016-06-19,2.31,26991.7,1610.48,23719.15,0.0,1662.07,1658.74,3.33,0.0,organic,2016,SanFrancisco +28,2016-06-12,2.25,27349.15,1204.96,24024.21,0.0,2119.98,2116.65,3.33,0.0,organic,2016,SanFrancisco +29,2016-06-05,2.3,26850.91,1444.73,23217.46,0.0,2188.72,2182.05,6.67,0.0,organic,2016,SanFrancisco +30,2016-05-29,2.34,28707.18,1397.86,25119.52,0.0,2189.8,2186.47,3.33,0.0,organic,2016,SanFrancisco +31,2016-05-22,2.34,30292.77,1453.65,27106.36,0.0,1732.76,1722.76,10.0,0.0,organic,2016,SanFrancisco +32,2016-05-15,2.27,31308.71,1845.91,27742.47,0.0,1720.33,1713.66,6.67,0.0,organic,2016,SanFrancisco +33,2016-05-08,1.32,51985.57,1609.98,48288.21,0.0,2087.38,2087.38,0.0,0.0,organic,2016,SanFrancisco +34,2016-05-01,1.33,47035.36,1480.41,43790.32,0.0,1764.63,1764.63,0.0,0.0,organic,2016,SanFrancisco +35,2016-04-24,2.21,29693.75,1506.58,26093.43,0.0,2093.74,2093.74,0.0,0.0,organic,2016,SanFrancisco +36,2016-04-17,2.33,25486.1,1308.2,22553.45,0.0,1624.45,1624.45,0.0,0.0,organic,2016,SanFrancisco +37,2016-04-10,2.33,25141.16,1173.24,22169.11,0.0,1798.81,1798.81,0.0,0.0,organic,2016,SanFrancisco +38,2016-04-03,2.3,24055.14,1124.32,21364.15,0.0,1566.67,1566.67,0.0,0.0,organic,2016,SanFrancisco +39,2016-03-27,2.23,25593.44,1256.99,22352.86,0.0,1983.59,1983.59,0.0,0.0,organic,2016,SanFrancisco +40,2016-03-20,2.33,24714.55,1130.34,21871.99,0.0,1712.22,1712.22,0.0,0.0,organic,2016,SanFrancisco +41,2016-03-13,2.27,25229.74,1352.64,22132.15,0.0,1744.95,1744.95,0.0,0.0,organic,2016,SanFrancisco +42,2016-03-06,2.31,24869.6,1787.24,22321.65,0.0,760.71,760.71,0.0,0.0,organic,2016,SanFrancisco +43,2016-02-28,2.29,24175.21,1143.86,23000.07,0.0,31.28,31.28,0.0,0.0,organic,2016,SanFrancisco +44,2016-02-21,2.38,21256.64,1145.81,20051.14,0.0,59.69,53.02,6.67,0.0,organic,2016,SanFrancisco +45,2016-02-14,2.37,21276.09,1014.44,20230.54,0.0,31.11,31.11,0.0,0.0,organic,2016,SanFrancisco +46,2016-02-07,1.93,26088.82,1240.75,24785.95,0.0,62.12,62.12,0.0,0.0,organic,2016,SanFrancisco +47,2016-01-31,2.3,23630.61,1637.6,21868.98,0.0,124.03,86.82,37.21,0.0,organic,2016,SanFrancisco +48,2016-01-24,1.89,24292.32,1127.37,22922.9,0.0,242.05,127.23,114.82,0.0,organic,2016,SanFrancisco +49,2016-01-17,1.95,18983.23,1127.33,17731.64,0.0,124.26,105.62,18.64,0.0,organic,2016,SanFrancisco +50,2016-01-10,1.93,17568.19,1183.68,16067.37,0.0,317.14,233.19,83.95,0.0,organic,2016,SanFrancisco +51,2016-01-03,1.93,18894.27,1153.15,17249.32,0.0,491.8,382.86,108.94,0.0,organic,2016,SanFrancisco +0,2016-12-25,0.81,80324.51,353.45,15255.56,2.62,64712.88,548.41,64164.47,0.0,organic,2016,Seattle +1,2016-12-18,1.08,46216.41,373.65,10784.3,1.31,35057.15,443.67,34613.48,0.0,organic,2016,Seattle +2,2016-12-11,1.54,26530.99,382.04,8657.16,1.31,17490.48,555.46,16935.02,0.0,organic,2016,Seattle +3,2016-12-04,1.45,38898.52,442.32,10207.77,15.7,28232.73,534.52,27698.21,0.0,organic,2016,Seattle +4,2016-11-27,1.53,36545.5,321.68,9807.21,26.11,26390.5,322.68,26067.82,0.0,organic,2016,Seattle +5,2016-11-20,1.59,40278.71,385.45,10855.78,3.92,29033.56,735.87,28297.69,0.0,organic,2016,Seattle +6,2016-11-13,2.28,28907.25,541.62,18490.5,41.96,9833.17,801.11,9032.06,0.0,organic,2016,Seattle +7,2016-11-06,1.69,35103.94,503.78,10960.26,41.92,23597.98,600.56,22997.42,0.0,organic,2016,Seattle +8,2016-10-30,2.73,13588.39,794.44,11345.97,23.56,1424.42,600.6,823.82,0.0,organic,2016,Seattle +9,2016-10-23,2.24,15072.28,793.82,10958.22,69.99,3250.25,688.18,2562.07,0.0,organic,2016,Seattle +10,2016-10-16,1.59,33108.57,835.37,10706.93,10.46,21555.81,3017.8,18538.01,0.0,organic,2016,Seattle +11,2016-10-09,1.73,23673.82,689.95,9161.72,0.0,13822.15,4318.59,9503.56,0.0,organic,2016,Seattle +12,2016-10-02,1.45,35306.91,1498.12,7937.3,9.12,25862.37,3661.9,22200.47,0.0,organic,2016,Seattle +13,2016-09-25,1.69,29440.75,3798.76,7157.62,105.3,18379.07,4761.1,13617.97,0.0,organic,2016,Seattle +14,2016-09-18,1.59,35004.7,5284.83,5003.17,259.37,24457.33,8769.31,15688.02,0.0,organic,2016,Seattle +15,2016-09-11,1.39,41227.8,5095.82,7772.47,34.94,28324.57,6270.0,22054.57,0.0,organic,2016,Seattle +16,2016-09-04,2.09,22006.58,6158.94,13584.95,81.34,2181.35,664.36,1516.99,0.0,organic,2016,Seattle +17,2016-08-28,2.24,18871.59,5595.5,12638.28,31.08,606.73,532.98,73.75,0.0,organic,2016,Seattle +18,2016-08-21,1.83,30611.93,5087.77,14464.37,55.62,11004.17,10937.33,66.84,0.0,organic,2016,Seattle +19,2016-08-14,2.19,28185.87,5345.6,20681.63,82.66,2075.98,1609.59,466.39,0.0,organic,2016,Seattle +20,2016-08-07,1.81,31464.7,4368.95,14319.95,56.74,12719.06,4920.92,7798.14,0.0,organic,2016,Seattle +21,2016-07-31,1.34,48248.63,3816.63,12705.33,38.64,31688.03,2455.73,29232.3,0.0,organic,2016,Seattle +22,2016-07-24,1.95,28351.54,2911.49,18679.58,77.4,6683.07,295.02,6388.05,0.0,organic,2016,Seattle +23,2016-07-17,2.11,30480.39,1924.24,25560.94,35.13,2960.08,363.33,2596.75,0.0,organic,2016,Seattle +24,2016-07-10,1.8,37406.41,1364.66,25562.94,40.41,10438.4,277.67,10160.73,0.0,organic,2016,Seattle +25,2016-07-03,1.65,45009.96,1082.01,27564.89,56.6,16306.46,342.52,15963.94,0.0,organic,2016,Seattle +26,2016-06-26,1.74,41165.72,813.21,32449.11,68.65,7834.75,196.26,7638.49,0.0,organic,2016,Seattle +27,2016-06-19,1.75,40879.73,1015.37,38691.88,35.72,1136.76,332.71,804.05,0.0,organic,2016,Seattle +28,2016-06-12,1.87,30958.84,655.0,26109.16,51.95,4142.73,359.21,3783.52,0.0,organic,2016,Seattle +29,2016-06-05,1.76,40948.65,625.84,39556.57,21.31,744.93,272.96,471.97,0.0,organic,2016,Seattle +30,2016-05-29,1.62,39722.85,625.03,30792.23,27.93,8277.66,478.03,7799.63,0.0,organic,2016,Seattle +31,2016-05-22,1.55,53707.4,631.72,36746.36,18.54,16310.78,262.85,16047.93,0.0,organic,2016,Seattle +32,2016-05-15,1.71,42825.14,739.57,32468.52,22.47,9594.58,233.22,9361.36,0.0,organic,2016,Seattle +33,2016-05-08,1.2,54996.33,637.12,24402.5,31.65,29925.06,291.79,29633.27,0.0,organic,2016,Seattle +34,2016-05-01,1.25,54382.38,490.82,27880.71,167.12,25843.73,280.71,25563.02,0.0,organic,2016,Seattle +35,2016-04-24,1.31,63398.87,667.33,41604.03,11.87,21115.64,435.55,20680.09,0.0,organic,2016,Seattle +36,2016-04-17,1.51,36396.95,573.14,18659.47,19.73,17144.61,367.57,16777.04,0.0,organic,2016,Seattle +37,2016-04-10,0.89,112486.22,608.37,27403.46,10.49,84463.9,5360.97,79102.93,0.0,organic,2016,Seattle +38,2016-04-03,1.27,49342.12,614.81,24201.33,50.91,24475.07,968.39,23506.68,0.0,organic,2016,Seattle +39,2016-03-27,1.55,36606.53,454.87,20878.24,5.23,15268.19,443.54,14824.65,0.0,organic,2016,Seattle +40,2016-03-20,0.98,87462.26,474.08,24602.2,55.0,62330.98,7575.05,54755.93,0.0,organic,2016,Seattle +41,2016-03-13,1.18,51451.83,409.24,15023.6,41.84,35977.15,10152.23,25824.92,0.0,organic,2016,Seattle +42,2016-03-06,1.22,39782.0,583.7,17846.08,14.43,21337.79,521.41,20816.38,0.0,organic,2016,Seattle +43,2016-02-28,1.46,37727.89,800.13,26050.81,44.6,10832.35,2036.03,8796.32,0.0,organic,2016,Seattle +44,2016-02-21,1.41,29590.91,362.25,14316.01,34.15,14878.5,1207.09,13671.41,0.0,organic,2016,Seattle +45,2016-02-14,0.98,71534.03,455.72,20258.99,40.95,50778.37,1904.23,48874.14,0.0,organic,2016,Seattle +46,2016-02-07,1.26,33199.26,557.91,13292.78,29.22,19319.35,7549.44,11769.91,0.0,organic,2016,Seattle +47,2016-01-31,1.36,33959.31,434.84,14514.53,6.65,19003.29,4026.28,14977.01,0.0,organic,2016,Seattle +48,2016-01-24,1.47,26516.63,681.3,11791.04,63.93,13980.36,244.19,13736.17,0.0,organic,2016,Seattle +49,2016-01-17,1.26,42107.7,560.56,15954.79,6.67,25585.68,163.14,25422.54,0.0,organic,2016,Seattle +50,2016-01-10,1.29,37193.3,649.31,16547.56,6.67,19989.76,48.94,19940.82,0.0,organic,2016,Seattle +51,2016-01-03,1.58,24767.95,577.02,12634.37,12.01,11544.55,14.83,11529.72,0.0,organic,2016,Seattle +0,2016-12-25,1.59,6491.55,293.57,2329.01,197.27,3671.7,2797.68,874.02,0.0,organic,2016,SouthCarolina +1,2016-12-18,1.5,7408.4,280.88,2148.75,219.66,4759.11,3481.51,1277.6,0.0,organic,2016,SouthCarolina +2,2016-12-11,1.49,7688.78,345.23,2113.81,168.62,5061.12,3096.76,1964.36,0.0,organic,2016,SouthCarolina +3,2016-12-04,1.69,7030.03,219.6,2204.44,147.21,4458.78,2942.11,1516.67,0.0,organic,2016,SouthCarolina +4,2016-11-27,1.77,7063.85,316.98,2281.53,185.48,4279.86,3086.57,1193.29,0.0,organic,2016,SouthCarolina +5,2016-11-20,1.7,10629.43,354.35,2489.89,289.94,7495.25,5563.87,1931.38,0.0,organic,2016,SouthCarolina +6,2016-11-13,1.73,10613.01,402.68,2599.6,303.63,7307.1,5617.42,1689.68,0.0,organic,2016,SouthCarolina +7,2016-11-06,1.67,10649.94,405.62,2900.88,362.16,6981.28,4928.77,2052.51,0.0,organic,2016,SouthCarolina +8,2016-10-30,1.73,8600.52,392.92,3718.26,417.02,4072.32,2907.25,1165.07,0.0,organic,2016,SouthCarolina +9,2016-10-23,1.4,11386.72,428.52,3328.29,276.86,7353.05,3788.85,3564.2,0.0,organic,2016,SouthCarolina +10,2016-10-16,1.55,9365.29,499.96,3550.68,292.27,5022.38,2933.76,2088.62,0.0,organic,2016,SouthCarolina +11,2016-10-09,1.6,8734.25,614.22,2496.72,312.54,5310.77,4261.03,1049.74,0.0,organic,2016,SouthCarolina +12,2016-10-02,1.87,8341.95,761.23,3710.83,378.8,3491.09,3318.47,172.62,0.0,organic,2016,SouthCarolina +13,2016-09-25,1.81,7733.79,632.05,3622.72,306.81,3172.21,2172.34,999.87,0.0,organic,2016,SouthCarolina +14,2016-09-18,1.66,9465.99,479.32,3496.18,354.07,5136.42,3837.2,1299.22,0.0,organic,2016,SouthCarolina +15,2016-09-11,1.6,12458.37,757.79,3868.48,309.62,7522.48,6648.44,874.04,0.0,organic,2016,SouthCarolina +16,2016-09-04,1.6,11353.45,752.61,3665.9,323.68,6611.26,5534.06,1077.2,0.0,organic,2016,SouthCarolina +17,2016-08-28,1.51,12471.57,784.67,3574.06,406.28,7706.56,6005.61,1700.95,0.0,organic,2016,SouthCarolina +18,2016-08-21,1.6,12593.77,985.59,3391.77,482.81,7733.6,7072.24,661.36,0.0,organic,2016,SouthCarolina +19,2016-08-14,1.61,13377.37,1080.09,3792.29,542.8,7962.19,6868.73,1093.46,0.0,organic,2016,SouthCarolina +20,2016-08-07,1.42,15987.24,1102.24,4761.4,703.64,9419.96,6147.56,3272.4,0.0,organic,2016,SouthCarolina +21,2016-07-31,1.58,12518.72,1306.7,3927.4,705.01,6579.61,6131.73,447.88,0.0,organic,2016,SouthCarolina +22,2016-07-24,1.58,11277.34,1178.49,3580.75,616.78,5901.32,5785.79,115.53,0.0,organic,2016,SouthCarolina +23,2016-07-17,1.32,13916.21,1024.5,3135.0,681.36,9075.35,6516.71,2558.64,0.0,organic,2016,SouthCarolina +24,2016-07-10,1.35,11611.02,827.79,3202.8,616.92,6963.51,4928.87,2034.64,0.0,organic,2016,SouthCarolina +25,2016-07-03,1.23,11068.68,908.7,3010.9,683.06,6466.02,4096.13,2369.89,0.0,organic,2016,SouthCarolina +26,2016-06-26,1.24,12445.56,1132.67,2938.21,603.44,7771.24,5690.33,2080.91,0.0,organic,2016,SouthCarolina +27,2016-06-19,1.21,8957.97,681.83,2877.65,480.84,4917.65,2757.33,2160.32,0.0,organic,2016,SouthCarolina +28,2016-06-12,1.31,9826.29,998.33,2919.7,423.27,5484.99,3877.37,1607.62,0.0,organic,2016,SouthCarolina +29,2016-06-05,1.31,10467.48,968.26,2877.64,374.97,6246.61,5142.68,1103.93,0.0,organic,2016,SouthCarolina +30,2016-05-29,1.41,9383.7,1076.48,2749.91,274.37,5282.94,4732.74,550.2,0.0,organic,2016,SouthCarolina +31,2016-05-22,1.45,9809.46,1000.77,2448.67,335.66,6024.36,5214.09,810.27,0.0,organic,2016,SouthCarolina +32,2016-05-15,1.48,9990.1,752.91,2472.08,271.64,6493.47,6020.41,473.06,0.0,organic,2016,SouthCarolina +33,2016-05-08,1.55,6899.7,671.93,2359.84,315.47,3552.46,3150.91,401.55,0.0,organic,2016,SouthCarolina +34,2016-05-01,1.44,8528.01,669.32,2362.52,282.41,5213.76,4433.86,779.9,0.0,organic,2016,SouthCarolina +35,2016-04-24,1.49,9294.82,711.94,2575.64,247.25,5759.99,5536.75,223.24,0.0,organic,2016,SouthCarolina +36,2016-04-17,1.47,8123.8,812.04,2592.81,324.57,4394.38,3937.03,457.35,0.0,organic,2016,SouthCarolina +37,2016-04-10,1.34,8212.07,631.03,2514.18,391.29,4675.57,4667.29,8.28,0.0,organic,2016,SouthCarolina +38,2016-04-03,1.37,7335.37,738.12,2285.2,298.23,4013.82,3948.93,64.89,0.0,organic,2016,SouthCarolina +39,2016-03-27,1.41,7001.06,778.61,2339.58,242.07,3640.8,3388.69,252.11,0.0,organic,2016,SouthCarolina +40,2016-03-20,1.36,7098.91,714.51,1976.73,323.65,4084.02,3922.98,161.04,0.0,organic,2016,SouthCarolina +41,2016-03-13,1.45,6135.77,859.12,2022.42,293.0,2961.23,2922.43,38.8,0.0,organic,2016,SouthCarolina +42,2016-03-06,1.56,5255.59,716.32,1990.61,254.86,2293.8,2267.22,26.58,0.0,organic,2016,SouthCarolina +43,2016-02-28,1.67,4454.16,619.3,1867.21,306.69,1660.96,1645.23,15.73,0.0,organic,2016,SouthCarolina +44,2016-02-21,1.58,4752.84,669.98,1631.47,242.52,2208.87,2121.77,87.1,0.0,organic,2016,SouthCarolina +45,2016-02-14,1.55,4901.72,646.76,1624.04,248.73,2382.19,2178.3,203.89,0.0,organic,2016,SouthCarolina +46,2016-02-07,1.61,4661.03,573.69,1792.04,364.71,1930.59,1801.35,129.24,0.0,organic,2016,SouthCarolina +47,2016-01-31,1.54,5545.65,786.83,1594.15,249.42,2915.25,2786.72,128.53,0.0,organic,2016,SouthCarolina +48,2016-01-24,1.5,5939.18,693.16,1335.95,362.17,3547.9,3458.63,89.27,0.0,organic,2016,SouthCarolina +49,2016-01-17,1.66,4600.84,844.33,1613.53,323.18,1819.8,1799.92,19.88,0.0,organic,2016,SouthCarolina +50,2016-01-10,1.6,6107.02,691.1,2094.93,360.62,2960.37,2748.16,212.21,0.0,organic,2016,SouthCarolina +51,2016-01-03,1.58,5893.4,1241.89,1675.45,420.04,2556.02,2435.41,120.61,0.0,organic,2016,SouthCarolina +0,2016-12-25,1.21,94378.68,28632.23,4227.39,0.0,61519.06,59525.98,1993.08,0.0,organic,2016,SouthCentral +1,2016-12-18,1.1,100860.88,23988.1,4296.17,0.0,72576.61,67763.58,4813.03,0.0,organic,2016,SouthCentral +2,2016-12-11,1.12,101938.87,22116.71,3578.88,0.0,76243.28,69391.18,6852.1,0.0,organic,2016,SouthCentral +3,2016-12-04,1.21,100639.79,26102.51,2981.43,8.77,71547.08,70185.18,1361.9,0.0,organic,2016,SouthCentral +4,2016-11-27,1.18,122037.93,31680.35,2782.97,0.0,87574.61,84151.11,3423.5,0.0,organic,2016,SouthCentral +5,2016-11-20,1.22,120110.49,31129.0,2922.52,0.0,86058.97,83113.68,2945.29,0.0,organic,2016,SouthCentral +6,2016-11-13,1.24,144227.54,38610.17,4360.85,0.0,101256.52,92828.0,8428.52,0.0,organic,2016,SouthCentral +7,2016-11-06,1.44,132275.3,39761.02,4435.09,5.94,88073.25,83278.46,4794.79,0.0,organic,2016,SouthCentral +8,2016-10-30,1.48,94332.98,41423.95,4092.33,5.96,48810.74,47513.43,1297.31,0.0,organic,2016,SouthCentral +9,2016-10-23,1.41,104747.96,67813.29,3524.97,2.98,33406.72,29443.08,3963.64,0.0,organic,2016,SouthCentral +10,2016-10-16,1.09,144647.08,53252.15,4007.89,0.0,87387.04,68709.98,18677.06,0.0,organic,2016,SouthCentral +11,2016-10-09,1.09,150647.8,54851.54,4379.24,0.0,91417.02,66104.4,25312.62,0.0,organic,2016,SouthCentral +12,2016-10-02,1.14,131064.76,57006.38,4790.65,0.0,69267.73,66393.37,2874.36,0.0,organic,2016,SouthCentral +13,2016-09-25,1.15,131608.43,50298.52,6985.47,8.87,74315.57,65470.7,8844.87,0.0,organic,2016,SouthCentral +14,2016-09-18,1.14,129652.83,42581.23,5505.14,0.0,81566.46,73194.34,8372.12,0.0,organic,2016,SouthCentral +15,2016-09-11,1.07,164162.25,47884.79,4446.52,0.0,111830.94,105704.69,6126.25,0.0,organic,2016,SouthCentral +16,2016-09-04,1.08,169684.45,43288.51,5218.47,0.0,121177.47,115963.68,5213.79,0.0,organic,2016,SouthCentral +17,2016-08-28,1.04,180003.45,48259.41,4469.44,8.79,127265.81,120903.43,6362.38,0.0,organic,2016,SouthCentral +18,2016-08-21,0.97,247621.32,67192.31,4365.3,0.0,176063.71,170028.41,6035.3,0.0,organic,2016,SouthCentral +19,2016-08-14,0.98,278711.99,76071.17,5041.32,0.0,197599.5,189805.15,7794.35,0.0,organic,2016,SouthCentral +20,2016-08-07,1.26,138004.86,44893.49,5386.67,0.0,87724.7,52854.44,34870.26,0.0,organic,2016,SouthCentral +21,2016-07-31,1.22,142770.97,51129.16,5389.19,0.0,86252.62,72360.02,13892.6,0.0,organic,2016,SouthCentral +22,2016-07-24,1.21,136429.31,53040.76,6134.35,0.0,77254.2,65513.34,11740.86,0.0,organic,2016,SouthCentral +23,2016-07-17,1.21,118903.02,44998.45,6759.41,0.0,67145.16,47727.73,19417.43,0.0,organic,2016,SouthCentral +24,2016-07-10,1.18,106469.22,40521.68,7584.26,0.0,58363.28,54171.61,4191.67,0.0,organic,2016,SouthCentral +25,2016-07-03,1.13,111340.2,45145.4,8701.71,0.0,57493.09,55392.77,2100.32,0.0,organic,2016,SouthCentral +26,2016-06-26,1.17,114148.17,40284.96,7267.68,0.0,66595.53,61928.4,4667.13,0.0,organic,2016,SouthCentral +27,2016-06-19,1.14,113554.54,39133.12,7833.94,0.0,66587.48,56430.45,10157.03,0.0,organic,2016,SouthCentral +28,2016-06-12,1.11,120789.79,40677.24,7936.51,359.3,71816.74,63793.15,8023.59,0.0,organic,2016,SouthCentral +29,2016-06-05,1.1,117920.36,36488.57,7670.66,417.29,73343.84,59332.91,14010.93,0.0,organic,2016,SouthCentral +30,2016-05-29,1.07,144179.65,43253.38,13727.01,4019.29,83179.97,65946.52,17233.45,0.0,organic,2016,SouthCentral +31,2016-05-22,1.05,130641.29,37426.79,9630.79,231.79,83351.92,66161.0,17190.92,0.0,organic,2016,SouthCentral +32,2016-05-15,1.11,128078.72,32418.44,15000.26,249.18,80410.84,59811.01,20599.83,0.0,organic,2016,SouthCentral +33,2016-05-08,1.07,133142.97,30976.28,8774.75,4649.03,88742.91,59018.15,29724.76,0.0,organic,2016,SouthCentral +34,2016-05-01,1.13,113305.24,26730.12,12090.39,6307.41,68177.32,57465.21,10712.11,0.0,organic,2016,SouthCentral +35,2016-04-24,1.11,110395.86,27167.11,16727.91,39.84,66461.0,46304.57,20156.43,0.0,organic,2016,SouthCentral +36,2016-04-17,1.15,118580.72,29955.06,15129.88,17.07,73478.71,56962.55,16516.16,0.0,organic,2016,SouthCentral +37,2016-04-10,1.21,91639.0,29757.15,7403.82,8.52,54469.51,41421.13,13048.38,0.0,organic,2016,SouthCentral +38,2016-04-03,1.22,86545.27,28336.55,5964.03,2.83,52241.86,41885.1,10356.76,0.0,organic,2016,SouthCentral +39,2016-03-27,1.25,84351.3,29009.17,6132.83,8.49,49200.81,39989.57,9211.24,0.0,organic,2016,SouthCentral +40,2016-03-20,1.23,79411.38,27908.44,6978.58,11.26,44513.1,35287.48,9225.62,0.0,organic,2016,SouthCentral +41,2016-03-13,1.24,86860.92,33069.76,7254.38,0.0,46536.78,39531.89,7004.89,0.0,organic,2016,SouthCentral +42,2016-03-06,1.21,86686.51,29748.62,5654.56,0.0,51283.33,40850.8,10432.53,0.0,organic,2016,SouthCentral +43,2016-02-28,1.24,89262.56,28679.61,6947.04,2.79,53633.12,38914.83,14718.29,0.0,organic,2016,SouthCentral +44,2016-02-21,1.28,78298.97,29083.62,6554.46,208.92,42451.97,32726.25,9725.72,0.0,organic,2016,SouthCentral +45,2016-02-14,1.31,75226.48,25976.29,6077.93,0.0,43172.26,33318.79,9853.47,0.0,organic,2016,SouthCentral +46,2016-02-07,1.35,69236.98,28638.16,4956.5,0.0,35642.32,33200.13,2442.19,0.0,organic,2016,SouthCentral +47,2016-01-31,1.41,69115.72,29502.87,4582.19,2.77,35027.89,34397.13,630.76,0.0,organic,2016,SouthCentral +48,2016-01-24,1.35,70767.77,23737.39,5747.06,0.0,41283.32,39836.86,1446.46,0.0,organic,2016,SouthCentral +49,2016-01-17,1.33,67598.5,29157.6,5671.95,5.56,32763.39,32475.79,287.6,0.0,organic,2016,SouthCentral +50,2016-01-10,1.38,63163.21,20245.33,5601.24,0.0,37316.64,36780.47,536.17,0.0,organic,2016,SouthCentral +51,2016-01-03,1.38,56538.34,18543.16,4853.37,0.0,33141.81,32138.91,1002.9,0.0,organic,2016,SouthCentral +0,2016-12-25,1.41,46895.78,3551.01,9031.23,279.29,34034.25,18333.61,15700.64,0.0,organic,2016,Southeast +1,2016-12-18,1.26,54712.86,3375.85,8448.31,315.77,42572.93,19398.71,23174.22,0.0,organic,2016,Southeast +2,2016-12-11,1.29,59141.95,3862.37,8401.47,274.59,46603.52,17767.54,28835.98,0.0,organic,2016,Southeast +3,2016-12-04,1.44,51799.91,3464.51,9245.68,237.32,38852.4,15786.96,23065.44,0.0,organic,2016,Southeast +4,2016-11-27,1.55,46032.7,3303.62,8282.1,310.14,34136.84,17052.87,17083.97,0.0,organic,2016,Southeast +5,2016-11-20,1.58,61264.14,4165.72,9695.14,419.65,46983.63,25312.29,21671.34,0.0,organic,2016,Southeast +6,2016-11-13,1.58,71470.8,4473.42,11409.19,450.22,55137.97,31103.86,24034.11,0.0,organic,2016,Southeast +7,2016-11-06,1.62,63877.72,5389.94,14873.28,507.85,43106.65,17305.32,25801.33,0.0,organic,2016,Southeast +8,2016-10-30,1.75,44666.0,5090.29,15508.61,572.47,23494.63,5220.39,18274.24,0.0,organic,2016,Southeast +9,2016-10-23,1.36,59238.63,4865.35,14703.84,419.27,39250.17,5363.63,33886.54,0.0,organic,2016,Southeast +10,2016-10-16,1.35,56442.73,5174.56,13534.89,432.89,37300.39,7119.54,30180.85,0.0,organic,2016,Southeast +11,2016-10-09,1.44,57606.91,10690.56,12322.68,416.0,34177.67,9681.13,24496.54,0.0,organic,2016,Southeast +12,2016-10-02,2.13,38668.06,14243.0,15259.97,519.91,8645.18,7049.22,1595.96,0.0,organic,2016,Southeast +13,2016-09-25,1.81,41398.38,7769.08,14549.87,420.84,18658.59,7449.41,11209.18,0.0,organic,2016,Southeast +14,2016-09-18,1.58,57792.45,6072.82,14168.25,485.37,37066.01,19189.74,17876.27,0.0,organic,2016,Southeast +15,2016-09-11,1.5,67246.01,7453.03,14078.39,439.29,45275.3,30666.03,14609.27,0.0,organic,2016,Southeast +16,2016-09-04,1.54,67309.14,9207.65,15349.22,431.84,42320.43,31577.01,10743.42,0.0,organic,2016,Southeast +17,2016-08-28,1.41,68341.93,8134.62,14259.48,625.61,45322.22,27669.13,17653.09,0.0,organic,2016,Southeast +18,2016-08-21,1.65,64499.62,11946.01,13428.48,712.1,38413.03,32410.75,6002.28,0.0,organic,2016,Southeast +19,2016-08-14,1.63,70790.98,13080.44,14578.13,820.66,42311.75,34013.16,8298.59,0.0,organic,2016,Southeast +20,2016-08-07,1.39,84966.16,13026.73,17547.61,1150.44,53241.38,27465.39,25775.99,0.0,organic,2016,Southeast +21,2016-07-31,1.62,67427.23,13672.33,15899.54,1036.72,36818.64,29716.26,7102.38,0.0,organic,2016,Southeast +22,2016-07-24,1.67,68443.21,15723.85,15761.64,968.77,35988.95,33725.71,2263.24,0.0,organic,2016,Southeast +23,2016-07-17,1.45,71665.65,15952.32,12582.02,1043.27,42088.04,27168.06,14919.98,0.0,organic,2016,Southeast +24,2016-07-10,1.4,80274.62,16115.35,16079.41,930.51,47149.35,35176.48,11972.87,0.0,organic,2016,Southeast +25,2016-07-03,1.16,87258.97,15707.89,15614.27,956.86,54979.95,38190.18,16789.77,0.0,organic,2016,Southeast +26,2016-06-26,1.31,71367.79,20353.71,13495.03,848.58,36670.47,22878.16,13792.31,0.0,organic,2016,Southeast +27,2016-06-19,1.22,68218.09,15584.56,13257.71,654.68,38721.14,23160.93,15560.21,0.0,organic,2016,Southeast +28,2016-06-12,1.31,69103.23,17831.12,14124.16,609.14,36538.81,24093.3,12445.51,0.0,organic,2016,Southeast +29,2016-06-05,1.31,66438.8,15346.73,12348.32,498.96,38244.79,29937.29,8307.5,0.0,organic,2016,Southeast +30,2016-05-29,1.41,64136.98,16063.33,11346.0,407.65,36320.0,32373.57,3946.43,0.0,organic,2016,Southeast +31,2016-05-22,1.44,63165.58,15850.58,10455.82,422.78,36436.4,29566.47,6869.93,0.0,organic,2016,Southeast +32,2016-05-15,1.44,63876.47,14100.94,10954.62,341.16,38479.75,32194.5,6285.25,0.0,organic,2016,Southeast +33,2016-05-08,1.53,52129.42,14799.32,10278.09,401.59,26650.42,22526.26,4124.16,0.0,organic,2016,Southeast +34,2016-05-01,1.44,57064.62,13485.35,11528.17,382.13,31668.97,24950.21,6718.76,0.0,organic,2016,Southeast +35,2016-04-24,1.47,60780.65,14874.14,11223.24,354.59,34328.68,30773.57,3555.11,0.0,organic,2016,Southeast +36,2016-04-17,1.48,54241.93,16280.57,11390.63,403.64,26167.09,22303.0,3864.09,0.0,organic,2016,Southeast +37,2016-04-10,1.44,54667.44,16629.6,11242.96,507.98,26286.9,25822.92,463.98,0.0,organic,2016,Southeast +38,2016-04-03,1.49,54364.05,19782.19,10472.82,395.68,23713.36,21956.66,1756.7,0.0,organic,2016,Southeast +39,2016-03-27,1.48,51791.11,16772.51,10589.54,353.44,24075.62,20453.56,3622.06,0.0,organic,2016,Southeast +40,2016-03-20,1.46,49153.27,15483.39,8830.51,452.71,24386.66,21785.79,2600.87,0.0,organic,2016,Southeast +41,2016-03-13,1.45,49979.08,15658.78,9937.59,397.83,23984.88,22968.5,1016.38,0.0,organic,2016,Southeast +42,2016-03-06,1.61,40036.61,15966.97,9880.53,364.48,13824.63,13251.15,573.48,0.0,organic,2016,Southeast +43,2016-02-28,1.66,36570.56,15059.75,8583.7,436.81,12490.3,12288.18,202.12,0.0,organic,2016,Southeast +44,2016-02-21,1.61,37375.96,13880.19,7471.45,356.11,15668.21,14899.84,768.37,0.0,organic,2016,Southeast +45,2016-02-14,1.57,39730.5,14094.73,7433.77,388.89,17813.11,15792.13,2020.98,0.0,organic,2016,Southeast +46,2016-02-07,1.61,36963.31,13154.94,7667.79,504.48,15636.1,14354.53,1281.57,0.0,organic,2016,Southeast +47,2016-01-31,1.63,41361.94,16328.26,6860.8,379.04,17793.84,16603.66,1190.18,0.0,organic,2016,Southeast +48,2016-01-24,1.55,45545.02,13968.03,7078.75,524.35,23973.89,22489.24,1484.65,0.0,organic,2016,Southeast +49,2016-01-17,1.69,36802.17,15333.29,7545.64,459.04,13464.2,12976.16,488.04,0.0,organic,2016,Southeast +50,2016-01-10,1.64,41864.22,15773.34,7657.9,565.69,17867.29,14426.01,3441.28,0.0,organic,2016,Southeast +51,2016-01-03,1.32,86759.88,39315.96,8067.87,579.95,38796.1,19654.52,19141.58,0.0,organic,2016,Southeast +0,2016-12-25,0.89,5333.76,24.44,1081.6,0.0,4227.72,23.76,4203.96,0.0,organic,2016,Spokane +1,2016-12-18,1.03,3288.85,18.32,761.26,0.0,2509.27,15.83,2493.44,0.0,organic,2016,Spokane +2,2016-12-11,1.38,2137.62,10.17,598.15,0.0,1529.3,31.65,1497.65,0.0,organic,2016,Spokane +3,2016-12-04,1.48,2645.69,12.19,713.24,0.0,1920.26,7.9,1912.36,0.0,organic,2016,Spokane +4,2016-11-27,1.33,3169.8,38.57,645.56,0.0,2485.67,23.68,2461.99,0.0,organic,2016,Spokane +5,2016-11-20,1.67,2832.01,64.86,835.13,0.0,1932.02,106.67,1825.35,0.0,organic,2016,Spokane +6,2016-11-13,2.35,1795.08,38.49,1229.53,1.01,526.05,43.33,482.72,0.0,organic,2016,Spokane +7,2016-11-06,2.02,1894.26,14.17,965.27,0.0,914.82,26.67,888.15,0.0,organic,2016,Spokane +8,2016-10-30,2.89,1043.41,105.07,907.25,3.03,28.06,0.0,28.06,0.0,organic,2016,Spokane +9,2016-10-23,2.23,1253.5,48.21,938.03,5.02,262.24,0.0,262.24,0.0,organic,2016,Spokane +10,2016-10-16,1.83,2160.64,99.83,918.48,11.98,1130.35,4.44,1125.91,0.0,organic,2016,Spokane +11,2016-10-09,2.26,1792.53,123.09,853.68,192.57,623.19,123.53,499.66,0.0,organic,2016,Spokane +12,2016-10-02,1.64,2386.34,155.78,710.62,0.0,1519.94,144.76,1375.18,0.0,organic,2016,Spokane +13,2016-09-25,2.27,1737.7,299.91,912.38,0.0,525.41,54.5,470.91,0.0,organic,2016,Spokane +14,2016-09-18,1.51,2714.12,549.78,263.49,0.0,1900.85,360.0,1540.85,0.0,organic,2016,Spokane +15,2016-09-11,1.53,3194.19,837.77,386.27,0.0,1970.15,638.38,1331.77,0.0,organic,2016,Spokane +16,2016-09-04,1.93,2088.07,645.19,996.54,0.0,446.34,22.53,423.81,0.0,organic,2016,Spokane +17,2016-08-28,2.51,1227.21,511.39,670.96,0.0,44.86,44.86,0.0,0.0,organic,2016,Spokane +18,2016-08-21,1.95,2086.53,706.36,614.47,0.0,765.7,765.7,0.0,0.0,organic,2016,Spokane +19,2016-08-14,2.25,1921.43,622.77,1072.24,0.0,226.42,99.45,126.97,0.0,organic,2016,Spokane +20,2016-08-07,1.64,2329.01,326.15,709.21,0.0,1293.65,456.15,837.5,0.0,organic,2016,Spokane +21,2016-07-31,1.31,2994.48,375.9,563.84,0.0,2054.74,192.05,1862.69,0.0,organic,2016,Spokane +22,2016-07-24,2.16,1760.07,286.36,1281.97,0.0,191.74,7.37,184.37,0.0,organic,2016,Spokane +23,2016-07-17,2.32,2469.93,632.92,1787.23,0.0,49.78,44.48,5.3,0.0,organic,2016,Spokane +24,2016-07-10,2.23,2122.86,531.25,1459.49,0.0,132.12,0.0,132.12,0.0,organic,2016,Spokane +25,2016-07-03,1.69,3136.55,403.35,1599.9,0.0,1133.3,7.51,1125.79,0.0,organic,2016,Spokane +26,2016-06-26,1.76,3011.21,411.5,2059.45,0.0,540.26,22.65,517.61,0.0,organic,2016,Spokane +27,2016-06-19,1.75,2952.0,348.81,2595.61,0.0,7.58,7.58,0.0,0.0,organic,2016,Spokane +28,2016-06-12,1.89,2299.99,167.27,1853.94,0.0,278.78,0.0,278.78,0.0,organic,2016,Spokane +29,2016-06-05,1.91,2807.95,99.46,2655.67,1.99,50.83,0.0,50.83,0.0,organic,2016,Spokane +30,2016-05-29,1.64,2979.01,117.12,2253.12,0.0,608.77,0.0,608.77,0.0,organic,2016,Spokane +31,2016-05-22,1.49,3894.15,81.14,3124.78,0.0,688.23,0.0,688.23,0.0,organic,2016,Spokane +32,2016-05-15,1.61,3399.86,77.0,2582.47,0.0,740.39,0.0,740.39,0.0,organic,2016,Spokane +33,2016-05-08,1.41,3542.46,72.84,2025.86,0.0,1443.76,0.0,1443.76,0.0,organic,2016,Spokane +34,2016-05-01,1.27,3665.51,29.45,1749.21,0.0,1886.85,0.0,1886.85,0.0,organic,2016,Spokane +35,2016-04-24,1.46,4611.55,148.77,4237.89,1.96,222.93,0.0,222.93,0.0,organic,2016,Spokane +36,2016-04-17,1.14,3374.83,79.92,1329.4,0.0,1965.51,0.0,1965.51,0.0,organic,2016,Spokane +37,2016-04-10,0.85,8577.23,93.08,1966.33,0.0,6517.82,0.0,6517.82,0.0,organic,2016,Spokane +38,2016-04-03,1.33,4149.98,100.29,2792.8,0.0,1256.89,19.29,1237.6,0.0,organic,2016,Spokane +39,2016-03-27,1.45,2927.32,59.51,1996.63,1.92,869.26,0.0,869.26,0.0,organic,2016,Spokane +40,2016-03-20,1.08,4726.65,88.02,1757.48,0.0,2881.15,441.53,2439.62,0.0,organic,2016,Spokane +41,2016-03-13,1.28,4036.93,51.54,1563.44,0.0,2421.95,237.26,2184.69,0.0,organic,2016,Spokane +42,2016-03-06,1.31,3669.4,78.16,2007.44,5.72,1578.08,0.0,1578.08,0.0,organic,2016,Spokane +43,2016-02-28,1.69,4992.2,316.43,3736.21,55.28,884.28,0.0,884.28,0.0,organic,2016,Spokane +44,2016-02-21,1.42,3066.64,17.18,1515.29,0.0,1534.17,0.0,1534.17,0.0,organic,2016,Spokane +45,2016-02-14,0.98,5990.65,64.99,1798.79,0.0,4126.87,146.55,3980.32,0.0,organic,2016,Spokane +46,2016-02-07,1.22,3042.3,59.36,1319.25,0.0,1663.69,234.02,1429.67,0.0,organic,2016,Spokane +47,2016-01-31,1.42,2705.96,49.87,1306.09,0.0,1350.0,0.0,1350.0,0.0,organic,2016,Spokane +48,2016-01-24,1.52,1955.39,53.78,951.21,5.76,944.64,0.0,944.64,0.0,organic,2016,Spokane +49,2016-01-17,1.19,3476.19,40.41,1459.95,3.85,1971.98,0.0,1971.98,0.0,organic,2016,Spokane +50,2016-01-10,1.2,3528.15,44.29,1435.6,3.85,2044.41,0.0,2044.41,0.0,organic,2016,Spokane +51,2016-01-03,1.69,2401.84,75.14,1380.5,0.0,946.2,0.0,946.2,0.0,organic,2016,Spokane +0,2016-12-25,1.36,4173.63,1490.35,349.44,0.0,2333.84,1183.98,1149.86,0.0,organic,2016,StLouis +1,2016-12-18,1.35,5402.48,2019.34,548.82,0.0,2834.32,730.0,2104.32,0.0,organic,2016,StLouis +2,2016-12-11,1.53,5358.18,1761.25,573.98,0.0,3022.95,947.22,2075.73,0.0,organic,2016,StLouis +3,2016-12-04,1.43,5860.55,1873.62,421.89,0.0,3565.04,563.33,3001.71,0.0,organic,2016,StLouis +4,2016-11-27,1.14,9149.56,1662.91,372.34,0.0,7114.31,1130.0,5984.31,0.0,organic,2016,StLouis +5,2016-11-20,1.04,10510.27,1377.36,537.0,0.0,8595.91,1375.01,7220.9,0.0,organic,2016,StLouis +6,2016-11-13,1.49,6840.22,1944.42,545.57,0.0,4350.23,1526.66,2823.57,0.0,organic,2016,StLouis +7,2016-11-06,1.29,7312.47,2297.63,404.07,0.0,4610.77,895.0,3715.77,0.0,organic,2016,StLouis +8,2016-10-30,1.0,6655.57,800.43,637.41,0.0,5217.73,420.0,4797.73,0.0,organic,2016,StLouis +9,2016-10-23,1.12,10673.47,2556.24,835.53,0.0,7281.7,197.22,7084.48,0.0,organic,2016,StLouis +10,2016-10-16,1.6,8973.5,2383.54,1980.2,0.0,4609.76,836.11,3773.65,0.0,organic,2016,StLouis +11,2016-10-09,1.23,8098.83,320.93,1234.08,0.0,6543.82,1153.33,5390.49,0.0,organic,2016,StLouis +12,2016-10-02,1.23,6734.06,572.55,704.25,0.0,5457.26,892.77,4564.49,0.0,organic,2016,StLouis +13,2016-09-25,1.5,5873.36,1707.38,708.57,0.0,3457.41,1017.25,2440.16,0.0,organic,2016,StLouis +14,2016-09-18,1.54,6740.24,2418.28,838.57,0.0,3483.39,711.99,2771.4,0.0,organic,2016,StLouis +15,2016-09-11,1.52,4993.15,1134.32,1259.36,0.0,2599.47,55.38,2544.09,0.0,organic,2016,StLouis +16,2016-09-04,1.06,8505.41,2817.65,568.62,0.0,5119.14,55.48,5063.66,0.0,organic,2016,StLouis +17,2016-08-28,1.04,10875.76,2752.04,1084.38,23.57,7015.77,550.24,6465.53,0.0,organic,2016,StLouis +18,2016-08-21,1.88,8616.4,3154.25,2593.44,70.63,2798.08,2788.08,10.0,0.0,organic,2016,StLouis +19,2016-08-14,1.97,7008.59,2390.91,2720.52,16.27,1880.89,1526.11,354.78,0.0,organic,2016,StLouis +20,2016-08-07,1.77,8063.78,2307.37,2240.62,21.65,3494.14,3490.81,3.33,0.0,organic,2016,StLouis +21,2016-07-31,1.57,9269.91,2001.3,1662.32,52.23,5554.06,5547.39,6.67,0.0,organic,2016,StLouis +22,2016-07-24,1.69,7057.4,1567.5,1835.55,7.19,3647.16,3647.16,0.0,0.0,organic,2016,StLouis +23,2016-07-17,2.0,5499.33,1440.8,2535.31,0.0,1523.22,1523.22,0.0,0.0,organic,2016,StLouis +24,2016-07-10,1.74,5055.17,423.98,1915.03,0.0,2716.16,2716.16,0.0,0.0,organic,2016,StLouis +25,2016-07-03,1.75,4788.38,398.73,1834.52,8.94,2546.19,2546.19,0.0,0.0,organic,2016,StLouis +26,2016-06-26,1.74,7231.64,1646.65,1916.95,21.42,3646.62,3646.62,0.0,0.0,organic,2016,StLouis +27,2016-06-19,1.83,7924.1,2678.04,2060.17,8.9,3176.99,3176.99,0.0,0.0,organic,2016,StLouis +28,2016-06-12,1.72,8338.7,2197.91,2158.0,1.77,3981.02,3957.44,23.58,0.0,organic,2016,StLouis +29,2016-06-05,1.96,7048.29,2336.22,2701.21,0.0,2010.86,2010.86,0.0,0.0,organic,2016,StLouis +30,2016-05-29,2.2,4151.27,2177.62,1738.92,3.52,231.21,218.09,13.12,0.0,organic,2016,StLouis +31,2016-05-22,2.03,5259.2,2152.85,2715.23,3.51,387.61,304.62,82.99,0.0,organic,2016,StLouis +32,2016-05-15,1.69,6797.21,2767.39,1279.65,0.0,2750.17,315.53,2434.64,0.0,organic,2016,StLouis +33,2016-05-08,1.47,5666.7,1939.42,608.58,0.0,3118.7,155.45,2963.25,0.0,organic,2016,StLouis +34,2016-05-01,1.3,5153.05,1408.4,528.99,0.0,3215.66,0.0,3215.66,0.0,organic,2016,StLouis +35,2016-04-24,0.69,12272.56,1593.69,510.56,5.23,10163.08,7.74,10155.34,0.0,organic,2016,StLouis +36,2016-04-17,1.21,4042.51,1101.45,422.83,0.0,2518.23,0.0,2518.23,0.0,organic,2016,StLouis +37,2016-04-10,0.58,14137.4,668.77,489.85,0.0,12978.78,61.76,12917.02,0.0,organic,2016,StLouis +38,2016-04-03,0.75,10883.38,1433.66,498.14,5.21,8946.37,11.57,8934.8,0.0,organic,2016,StLouis +39,2016-03-27,0.88,11880.74,2743.43,473.79,0.0,8663.52,26.47,8637.05,0.0,organic,2016,StLouis +40,2016-03-20,0.9,12334.46,1490.01,578.29,0.0,10266.16,199.63,10066.53,0.0,organic,2016,StLouis +41,2016-03-13,1.1,7739.62,1855.25,429.47,1.74,5453.16,66.9,5386.26,0.0,organic,2016,StLouis +42,2016-03-06,1.82,4095.43,1975.45,548.25,1.74,1569.99,20.0,1549.99,0.0,organic,2016,StLouis +43,2016-02-28,0.9,11358.36,2968.08,629.17,0.0,7761.11,20.0,7741.11,0.0,organic,2016,StLouis +44,2016-02-21,0.82,12382.8,1078.6,801.1,3.49,10499.61,20.55,10479.06,0.0,organic,2016,StLouis +45,2016-02-14,1.71,4744.15,1732.47,659.07,0.0,2352.61,41.1,2311.51,0.0,organic,2016,StLouis +46,2016-02-07,1.63,4026.22,1245.18,640.98,0.0,2140.06,23.89,2116.17,0.0,organic,2016,StLouis +47,2016-01-31,0.91,8047.41,1065.99,618.9,0.0,6362.52,28.36,6334.16,0.0,organic,2016,StLouis +48,2016-01-24,0.68,15106.42,1490.93,595.22,5.27,13015.0,66.82,12948.18,0.0,organic,2016,StLouis +49,2016-01-17,0.98,8688.58,1669.28,655.91,0.0,6363.39,396.29,5967.1,0.0,organic,2016,StLouis +50,2016-01-10,1.42,6987.04,2159.08,669.21,0.0,4158.75,926.19,3232.56,0.0,organic,2016,StLouis +51,2016-01-03,0.86,10026.13,1303.08,932.82,5.29,7784.94,83.92,7701.02,0.0,organic,2016,StLouis +0,2016-12-25,1.69,1016.97,113.18,147.13,0.0,756.66,756.66,0.0,0.0,organic,2016,Syracuse +1,2016-12-18,1.63,1106.24,11.28,106.56,0.0,988.4,988.4,0.0,0.0,organic,2016,Syracuse +2,2016-12-11,1.77,1584.0,0.0,171.2,0.0,1412.8,1391.97,20.83,0.0,organic,2016,Syracuse +3,2016-12-04,1.83,1687.32,0.0,186.86,0.0,1500.46,1471.39,29.07,0.0,organic,2016,Syracuse +4,2016-11-27,1.86,775.8,0.0,101.8,0.0,674.0,674.0,0.0,0.0,organic,2016,Syracuse +5,2016-11-20,1.77,1573.28,3.71,39.58,0.0,1529.99,1529.99,0.0,0.0,organic,2016,Syracuse +6,2016-11-13,1.81,892.02,0.0,67.8,0.0,824.22,824.22,0.0,0.0,organic,2016,Syracuse +7,2016-11-06,1.7,1141.59,1.0,105.72,0.0,1034.87,1034.87,0.0,0.0,organic,2016,Syracuse +8,2016-10-30,1.73,667.95,4.91,57.64,0.0,605.4,605.4,0.0,0.0,organic,2016,Syracuse +9,2016-10-23,1.69,961.36,0.0,37.97,0.0,923.39,923.39,0.0,0.0,organic,2016,Syracuse +10,2016-10-16,1.61,795.95,0.0,50.17,0.0,745.78,745.78,0.0,0.0,organic,2016,Syracuse +11,2016-10-09,1.6,1007.51,0.0,68.44,0.0,939.07,939.07,0.0,0.0,organic,2016,Syracuse +12,2016-10-02,1.59,1233.27,0.0,76.93,0.0,1156.34,1156.34,0.0,0.0,organic,2016,Syracuse +13,2016-09-25,1.6,1233.92,0.0,97.67,0.0,1136.25,1136.25,0.0,0.0,organic,2016,Syracuse +14,2016-09-18,1.51,1953.97,8.88,69.6,0.0,1875.49,1875.49,0.0,0.0,organic,2016,Syracuse +15,2016-09-11,1.54,1614.87,6.1,95.22,0.0,1513.55,1513.55,0.0,0.0,organic,2016,Syracuse +16,2016-09-04,1.56,1844.23,10.97,107.31,0.0,1725.95,1725.95,0.0,0.0,organic,2016,Syracuse +17,2016-08-28,1.54,1739.66,6.1,184.31,0.0,1549.25,1549.25,0.0,0.0,organic,2016,Syracuse +18,2016-08-21,1.53,2472.9,7.34,157.78,0.0,2307.78,2307.78,0.0,0.0,organic,2016,Syracuse +19,2016-08-14,1.53,1391.44,12.41,124.07,0.0,1254.96,1254.96,0.0,0.0,organic,2016,Syracuse +20,2016-08-07,1.54,2292.45,7.46,172.85,0.0,2112.14,2112.14,0.0,0.0,organic,2016,Syracuse +21,2016-07-31,1.41,1491.19,7.47,99.66,0.0,1384.06,1283.71,100.35,0.0,organic,2016,Syracuse +22,2016-07-24,1.45,1934.1,3.74,159.63,0.0,1770.73,1393.82,376.91,0.0,organic,2016,Syracuse +23,2016-07-17,1.6,2561.43,0.0,188.49,0.0,2372.94,1618.42,754.52,0.0,organic,2016,Syracuse +24,2016-07-10,1.64,2872.1,0.0,51.22,0.0,2820.88,2024.16,796.72,0.0,organic,2016,Syracuse +25,2016-07-03,1.68,2948.8,0.0,111.26,0.0,2837.54,1715.2,1122.34,0.0,organic,2016,Syracuse +26,2016-06-26,1.68,2132.15,0.0,103.7,0.0,2028.45,1317.67,710.78,0.0,organic,2016,Syracuse +27,2016-06-19,1.71,2581.34,0.0,116.16,0.0,2465.18,1246.65,1218.53,0.0,organic,2016,Syracuse +28,2016-06-12,1.49,2790.56,0.0,134.1,0.0,2656.46,1384.44,1272.02,0.0,organic,2016,Syracuse +29,2016-06-05,1.42,3058.43,0.0,106.83,0.0,2951.6,1899.83,1051.77,0.0,organic,2016,Syracuse +30,2016-05-29,1.55,2913.64,0.0,328.12,0.0,2585.52,1246.03,1339.49,0.0,organic,2016,Syracuse +31,2016-05-22,1.45,3696.52,0.0,380.34,0.0,3316.18,2410.89,905.29,0.0,organic,2016,Syracuse +32,2016-05-15,1.45,3438.24,1.24,162.57,0.0,3274.43,2427.81,846.62,0.0,organic,2016,Syracuse +33,2016-05-08,1.56,4156.13,0.0,168.54,0.0,3987.59,2181.06,1806.53,0.0,organic,2016,Syracuse +34,2016-05-01,1.54,3118.81,0.0,113.94,0.0,3004.87,1874.19,1130.68,0.0,organic,2016,Syracuse +35,2016-04-24,1.63,3752.94,0.0,232.87,0.0,3520.07,1805.18,1714.89,0.0,organic,2016,Syracuse +36,2016-04-17,1.71,2326.56,0.0,145.04,0.0,2181.52,889.55,1291.97,0.0,organic,2016,Syracuse +37,2016-04-10,1.59,3412.46,0.0,155.06,0.0,3257.4,1440.82,1816.58,0.0,organic,2016,Syracuse +38,2016-04-03,1.46,2724.46,0.0,75.68,0.0,2648.78,1686.54,962.24,0.0,organic,2016,Syracuse +39,2016-03-27,1.57,2668.42,0.0,103.24,0.0,2565.18,1290.54,1274.64,0.0,organic,2016,Syracuse +40,2016-03-20,1.54,3134.02,0.0,142.95,0.0,2991.07,1678.97,1312.1,0.0,organic,2016,Syracuse +41,2016-03-13,1.66,2357.86,0.0,154.45,0.0,2203.41,889.72,1313.69,0.0,organic,2016,Syracuse +42,2016-03-06,2.09,2090.95,0.0,225.45,0.0,1865.5,520.25,1345.25,0.0,organic,2016,Syracuse +43,2016-02-28,1.62,3092.98,0.0,94.74,0.0,2998.24,856.96,2141.28,0.0,organic,2016,Syracuse +44,2016-02-21,1.71,2389.56,0.0,68.66,0.0,2320.9,900.51,1420.39,0.0,organic,2016,Syracuse +45,2016-02-14,1.96,1909.55,0.0,141.31,0.0,1768.24,1309.94,458.3,0.0,organic,2016,Syracuse +46,2016-02-07,2.06,3082.71,1.25,172.76,0.0,2908.7,797.23,2111.47,0.0,organic,2016,Syracuse +47,2016-01-31,1.98,1871.93,0.0,155.32,0.0,1716.61,642.19,1074.42,0.0,organic,2016,Syracuse +48,2016-01-24,1.64,809.41,1.25,113.89,0.0,694.27,691.49,2.78,0.0,organic,2016,Syracuse +49,2016-01-17,1.53,1478.04,6.25,226.16,0.0,1245.63,1192.88,52.75,0.0,organic,2016,Syracuse +50,2016-01-10,1.54,1708.27,0.0,138.34,0.0,1569.93,1240.35,329.58,0.0,organic,2016,Syracuse +51,2016-01-03,1.46,1621.21,1.24,72.14,0.0,1547.83,845.74,702.09,0.0,organic,2016,Syracuse +0,2016-12-25,1.21,6117.58,254.26,25.3,0.0,5838.02,3800.0,2038.02,0.0,organic,2016,Tampa +1,2016-12-18,1.22,6281.56,317.02,46.96,0.0,5917.58,3796.67,2120.91,0.0,organic,2016,Tampa +2,2016-12-11,1.37,5795.54,317.18,16.63,0.0,5461.73,3273.33,2188.4,0.0,organic,2016,Tampa +3,2016-12-04,1.45,4668.39,306.82,50.0,0.0,4311.57,2263.33,2048.24,0.0,organic,2016,Tampa +4,2016-11-27,1.47,4523.75,283.6,34.68,0.0,4205.47,2350.0,1855.47,0.0,organic,2016,Tampa +5,2016-11-20,1.5,5122.16,351.78,41.08,0.0,4729.3,2454.44,2274.86,0.0,organic,2016,Tampa +6,2016-11-13,1.49,6531.96,324.69,41.39,0.0,6165.88,3823.33,2342.55,0.0,organic,2016,Tampa +7,2016-11-06,1.52,5424.32,459.01,41.49,0.0,4923.82,2370.0,2553.82,0.0,organic,2016,Tampa +8,2016-10-30,1.47,3023.03,433.89,62.36,0.0,2526.78,200.0,2326.78,0.0,organic,2016,Tampa +9,2016-10-23,1.49,3701.46,623.9,89.87,0.0,2987.69,130.0,2857.69,0.0,organic,2016,Tampa +10,2016-10-16,1.4,3226.62,362.82,40.67,0.0,2823.13,913.33,1909.8,0.0,organic,2016,Tampa +11,2016-10-09,1.58,4094.16,1007.71,152.41,0.0,2934.04,1006.67,1927.37,0.0,organic,2016,Tampa +12,2016-10-02,2.29,3413.45,2573.39,180.06,0.0,660.0,650.0,10.0,0.0,organic,2016,Tampa +13,2016-09-25,1.51,1011.16,18.38,119.45,0.0,873.33,860.0,13.33,0.0,organic,2016,Tampa +14,2016-09-18,1.35,3704.63,28.2,13.1,0.0,3663.33,3636.66,26.67,0.0,organic,2016,Tampa +15,2016-09-11,1.35,4541.09,19.99,44.43,0.0,4476.67,4446.67,30.0,0.0,organic,2016,Tampa +16,2016-09-04,1.37,4643.21,77.63,45.58,0.0,4520.0,4450.0,70.0,0.0,organic,2016,Tampa +17,2016-08-28,1.39,3938.37,114.1,60.94,0.0,3763.33,3723.33,40.0,0.0,organic,2016,Tampa +18,2016-08-21,1.36,4345.97,50.16,65.81,0.0,4230.0,4170.0,60.0,0.0,organic,2016,Tampa +19,2016-08-14,1.35,4996.87,49.87,70.34,0.0,4876.66,4803.33,73.33,0.0,organic,2016,Tampa +20,2016-08-07,1.35,3996.71,11.44,41.94,0.0,3943.33,3883.33,60.0,0.0,organic,2016,Tampa +21,2016-07-31,1.24,4221.4,22.71,82.02,0.0,4116.67,4060.0,56.67,0.0,organic,2016,Tampa +22,2016-07-24,1.2,5350.17,12.25,31.26,0.0,5306.66,5283.33,23.33,0.0,organic,2016,Tampa +23,2016-07-17,1.44,4063.4,733.1,56.96,0.0,3273.34,3236.67,36.67,0.0,organic,2016,Tampa +24,2016-07-10,1.44,8568.93,1771.15,195.18,0.0,6602.6,6592.6,10.0,0.0,organic,2016,Tampa +25,2016-07-03,1.3,7873.96,2021.72,150.93,0.0,5701.31,5661.31,40.0,0.0,organic,2016,Tampa +26,2016-06-26,1.5,5867.74,2331.84,142.57,0.0,3393.33,3370.0,23.33,0.0,organic,2016,Tampa +27,2016-06-19,1.36,6441.8,1760.0,128.46,0.0,4553.34,4526.67,26.67,0.0,organic,2016,Tampa +28,2016-06-12,1.42,5150.78,1653.86,56.92,0.0,3440.0,3390.0,50.0,0.0,organic,2016,Tampa +29,2016-06-05,1.36,5554.46,1429.71,24.75,0.0,4100.0,4050.0,50.0,0.0,organic,2016,Tampa +30,2016-05-29,1.33,6565.11,1464.91,23.53,0.0,5076.67,5070.0,6.67,0.0,organic,2016,Tampa +31,2016-05-22,1.46,5378.15,1261.03,60.05,0.0,4057.07,4057.07,0.0,0.0,organic,2016,Tampa +32,2016-05-15,1.5,5009.34,1207.48,64.79,0.0,3737.07,3737.07,0.0,0.0,organic,2016,Tampa +33,2016-05-08,1.51,4029.84,1011.79,74.29,0.0,2943.76,2940.43,3.33,0.0,organic,2016,Tampa +34,2016-05-01,1.49,4800.24,1054.0,66.24,0.0,3680.0,3680.0,0.0,0.0,organic,2016,Tampa +35,2016-04-24,1.47,4904.86,1134.14,66.8,0.0,3703.92,3703.92,0.0,0.0,organic,2016,Tampa +36,2016-04-17,1.47,4785.64,1179.41,62.26,0.0,3543.97,3543.97,0.0,0.0,organic,2016,Tampa +37,2016-04-10,1.31,5511.75,1520.71,56.5,0.0,3934.54,3934.54,0.0,0.0,organic,2016,Tampa +38,2016-04-03,1.37,5314.1,1777.75,65.22,0.0,3471.13,3471.13,0.0,0.0,organic,2016,Tampa +39,2016-03-27,1.33,4340.06,1260.59,31.56,0.0,3047.91,3047.91,0.0,0.0,organic,2016,Tampa +40,2016-03-20,1.34,3651.32,1089.18,45.04,0.0,2517.1,2517.1,0.0,0.0,organic,2016,Tampa +41,2016-03-13,1.28,4671.11,1128.81,26.89,0.0,3515.41,3515.41,0.0,0.0,organic,2016,Tampa +42,2016-03-06,1.5,2873.92,1202.81,44.19,0.0,1626.92,1610.25,16.67,0.0,organic,2016,Tampa +43,2016-02-28,1.55,3176.67,1372.98,28.19,0.0,1775.5,1772.17,3.33,0.0,organic,2016,Tampa +44,2016-02-21,1.46,2652.11,860.22,24.51,0.0,1767.38,1764.05,3.33,0.0,organic,2016,Tampa +45,2016-02-14,1.48,3302.62,1163.01,29.61,0.0,2110.0,2110.0,0.0,0.0,organic,2016,Tampa +46,2016-02-07,1.49,3031.31,1128.33,16.05,0.0,1886.93,1886.93,0.0,0.0,organic,2016,Tampa +47,2016-01-31,1.6,3198.3,1598.53,35.88,0.0,1563.89,1563.89,0.0,0.0,organic,2016,Tampa +48,2016-01-24,1.44,3907.4,1147.09,39.51,0.0,2720.8,2717.47,3.33,0.0,organic,2016,Tampa +49,2016-01-17,1.59,2951.32,1442.08,35.91,0.0,1473.33,1473.33,0.0,0.0,organic,2016,Tampa +50,2016-01-10,1.6,3428.28,1487.74,16.13,0.0,1924.41,1770.0,154.41,0.0,organic,2016,Tampa +51,2016-01-03,1.08,11446.01,3979.05,125.64,0.0,7341.32,1630.0,5711.32,0.0,organic,2016,Tampa +0,2016-12-25,1.34,914035.42,93875.25,250138.66,3415.27,566606.24,330909.02,235697.22,0.0,organic,2016,TotalUS +1,2016-12-18,1.43,797042.27,97661.23,248598.14,4926.76,445856.14,279458.24,166397.9,0.0,organic,2016,TotalUS +2,2016-12-11,1.42,856795.63,93027.82,248303.87,6116.44,509347.5,293760.79,215586.71,0.0,organic,2016,TotalUS +3,2016-12-04,1.56,832767.55,106472.53,242055.86,2918.28,481320.88,284858.65,196462.23,0.0,organic,2016,TotalUS +4,2016-11-27,1.64,761675.87,100240.54,198874.09,3381.69,459179.55,292770.32,166409.23,0.0,organic,2016,TotalUS +5,2016-11-20,1.63,860320.59,110737.55,233518.72,3847.05,512217.27,319112.58,193104.69,0.0,organic,2016,TotalUS +6,2016-11-13,1.7,863948.15,110018.79,257268.83,3669.98,492990.55,322666.23,170324.32,0.0,organic,2016,TotalUS +7,2016-11-06,1.68,897671.29,117317.9,266018.89,5049.63,509284.87,284638.32,224646.55,0.0,organic,2016,TotalUS +8,2016-10-30,1.93,647723.55,123815.8,279842.5,5661.78,238403.47,180631.31,57772.16,0.0,organic,2016,TotalUS +9,2016-10-23,1.63,699763.35,131203.12,241758.21,4363.02,322439.0,168962.6,153476.4,0.0,organic,2016,TotalUS +10,2016-10-16,1.5,815859.49,114303.56,243788.95,4732.27,453034.71,250864.4,202170.31,0.0,organic,2016,TotalUS +11,2016-10-09,1.52,878367.41,127092.78,266687.47,5103.42,479483.74,289726.54,189757.2,0.0,organic,2016,TotalUS +12,2016-10-02,1.71,790926.03,131467.24,272293.48,4904.25,382261.06,282727.98,99533.08,0.0,organic,2016,TotalUS +13,2016-09-25,1.69,808891.94,119993.58,272553.74,4407.75,411936.87,289496.36,122440.51,0.0,organic,2016,TotalUS +14,2016-09-18,1.67,871627.58,127014.67,266648.5,4597.27,473367.14,359599.26,113767.88,0.0,organic,2016,TotalUS +15,2016-09-11,1.52,1103488.85,144991.21,334671.53,3481.85,620344.26,438024.44,182319.82,0.0,organic,2016,TotalUS +16,2016-09-04,1.54,1052088.77,137842.79,344378.75,4653.04,565214.19,415589.66,149624.53,0.0,organic,2016,TotalUS +17,2016-08-28,1.49,948530.88,135742.77,316907.28,5110.77,490770.06,345580.78,145189.28,0.0,organic,2016,TotalUS +18,2016-08-21,1.51,1033169.7,177591.96,308314.91,5831.02,541431.81,458921.84,82509.97,0.0,organic,2016,TotalUS +19,2016-08-14,1.48,1093287.79,186697.3,341463.72,10231.17,554895.6,459261.24,95634.36,0.0,organic,2016,TotalUS +20,2016-08-07,1.55,1012237.01,151179.99,332421.63,10707.18,517928.21,313872.28,204055.93,0.0,organic,2016,TotalUS +21,2016-07-31,1.58,946087.81,156417.33,328942.12,9035.27,451693.09,320652.23,131040.86,0.0,organic,2016,TotalUS +22,2016-07-24,1.65,919489.84,159151.31,343780.56,8612.44,407945.53,329530.26,78415.27,0.0,organic,2016,TotalUS +23,2016-07-17,1.63,1018118.27,152828.51,359772.18,9957.61,495559.97,346531.83,149028.14,0.0,organic,2016,TotalUS +24,2016-07-10,1.51,1043428.53,152994.7,355101.22,12180.53,523152.08,379451.98,143700.1,0.0,organic,2016,TotalUS +25,2016-07-03,1.47,1073595.37,159903.0,381527.15,11897.11,520268.11,350794.25,169473.86,0.0,organic,2016,TotalUS +26,2016-06-26,1.5,1007378.78,171054.38,391129.07,6763.46,438431.87,310467.62,127964.25,0.0,organic,2016,TotalUS +27,2016-06-19,1.45,1071066.66,166983.45,445194.49,12052.84,446835.88,302393.63,144442.25,0.0,organic,2016,TotalUS +28,2016-06-12,1.45,975275.55,176286.36,403561.49,8626.89,386800.81,279246.87,107553.94,0.0,organic,2016,TotalUS +29,2016-06-05,1.43,1012717.93,152105.91,410451.71,7817.11,442343.2,310881.84,131461.36,0.0,organic,2016,TotalUS +30,2016-05-29,1.41,1085152.56,137449.41,468311.32,13698.09,465693.74,349592.45,116101.29,0.0,organic,2016,TotalUS +31,2016-05-22,1.36,1165715.01,166883.21,455336.56,15807.85,527687.39,370815.25,156872.14,0.0,organic,2016,TotalUS +32,2016-05-15,1.45,1023252.17,146037.3,437584.52,8120.53,431509.82,309561.79,121948.03,0.0,organic,2016,TotalUS +33,2016-05-08,1.3,1137940.78,132225.28,443777.31,26765.78,535172.41,319417.49,215754.92,0.0,organic,2016,TotalUS +34,2016-05-01,1.28,1317867.0,238992.91,484383.87,22276.6,572213.62,368709.06,203504.56,0.0,organic,2016,TotalUS +35,2016-04-24,1.25,1475457.53,225429.09,524511.95,8687.81,716828.68,555986.43,160842.25,0.0,organic,2016,TotalUS +36,2016-04-17,1.38,1022217.32,115155.65,388081.34,7878.94,511101.39,352484.76,158616.63,0.0,organic,2016,TotalUS +37,2016-04-10,1.26,1179603.03,108747.34,400281.85,12154.73,658419.11,368458.82,289960.29,0.0,organic,2016,TotalUS +38,2016-04-03,1.44,930722.39,119283.9,371845.6,8628.68,430964.21,289504.38,141459.83,0.0,organic,2016,TotalUS +39,2016-03-27,1.44,900644.79,112620.05,338194.18,7738.95,442091.61,263938.32,178153.29,0.0,organic,2016,TotalUS +40,2016-03-20,1.27,1045450.41,105069.07,352698.21,9425.64,578257.49,252881.52,325375.97,0.0,organic,2016,TotalUS +41,2016-03-13,1.29,1023655.87,132040.04,346341.46,6709.65,538564.72,282353.48,256211.24,0.0,organic,2016,TotalUS +42,2016-03-06,1.28,1012415.85,127184.88,351951.65,5698.2,527581.12,309561.6,218019.52,0.0,organic,2016,TotalUS +43,2016-02-28,1.44,845011.63,110120.49,347488.78,10423.3,376979.06,277995.45,98983.61,0.0,organic,2016,TotalUS +44,2016-02-21,1.45,738856.92,104135.94,281188.89,8629.03,344903.06,223281.18,121621.88,0.0,organic,2016,TotalUS +45,2016-02-14,1.37,852463.31,102897.63,306235.69,6955.69,436374.3,201936.87,234437.43,0.0,organic,2016,TotalUS +46,2016-02-07,1.44,758795.1,101408.79,290813.54,8028.75,358544.02,210519.67,148024.35,0.0,organic,2016,TotalUS +47,2016-01-31,1.43,772077.2,108929.21,269687.52,5515.91,387944.56,204288.83,183655.73,0.0,organic,2016,TotalUS +48,2016-01-24,1.41,776964.55,99316.69,270980.88,12933.97,393733.01,204859.71,188873.3,0.0,organic,2016,TotalUS +49,2016-01-17,1.44,695341.42,115992.81,266824.72,13106.29,299417.6,150719.73,148697.87,0.0,organic,2016,TotalUS +50,2016-01-10,1.35,828670.59,113867.63,287590.19,8771.79,418440.98,183115.43,235325.55,0.0,organic,2016,TotalUS +51,2016-01-03,1.43,704100.5,124799.63,246580.95,7749.4,324970.52,150967.35,174003.17,0.0,organic,2016,TotalUS +0,2016-12-25,0.91,318683.18,19703.32,48083.12,142.0,250754.74,58951.54,191803.2,0.0,organic,2016,West +1,2016-12-18,1.23,173890.1,27404.62,34331.66,185.11,111968.71,27269.38,84699.33,0.0,organic,2016,West +2,2016-12-11,1.34,163585.07,31859.03,32090.48,64.88,99570.68,24023.81,75546.87,0.0,organic,2016,West +3,2016-12-04,1.31,202181.56,29864.64,36193.58,63.49,136059.85,20438.49,115621.36,0.0,organic,2016,West +4,2016-11-27,1.52,168440.43,28656.52,31983.14,64.8,107735.97,31027.16,76708.81,0.0,organic,2016,West +5,2016-11-20,1.66,171623.92,33916.58,38582.41,31.05,99093.88,27888.84,71205.04,0.0,organic,2016,West +6,2016-11-13,1.81,160864.58,27341.41,52348.72,72.26,81102.19,34945.74,46156.45,0.0,organic,2016,West +7,2016-11-06,1.84,140457.87,32388.45,43773.59,89.29,64206.54,14689.35,49517.19,0.0,organic,2016,West +8,2016-10-30,2.16,96943.41,42763.18,39555.64,60.88,14563.71,11572.83,2990.88,0.0,organic,2016,West +9,2016-10-23,1.92,101890.97,35139.81,36768.19,153.5,29829.47,15072.18,14757.29,0.0,organic,2016,West +10,2016-10-16,1.56,152876.61,23968.08,36780.7,57.44,92070.39,25657.03,66413.36,0.0,organic,2016,West +11,2016-10-09,1.68,126192.84,30116.28,33882.82,189.03,62004.71,29570.26,32434.45,0.0,organic,2016,West +12,2016-10-02,1.59,139393.05,29390.8,31959.14,43.19,77999.92,20453.89,57546.03,0.0,organic,2016,West +13,2016-09-25,1.78,118420.15,31346.67,31031.61,122.6,55919.27,27538.32,28380.95,0.0,organic,2016,West +14,2016-09-18,1.59,160880.99,39692.64,29626.54,302.54,91259.27,53282.81,37976.46,0.0,organic,2016,West +15,2016-09-11,1.48,197265.79,43258.13,39127.68,77.84,114802.14,46197.11,68605.03,0.0,organic,2016,West +16,2016-09-04,1.61,177083.68,42575.46,60202.23,527.53,73778.46,37977.13,35801.33,0.0,organic,2016,West +17,2016-08-28,1.92,125950.35,37698.95,56204.07,486.07,31561.26,23214.22,8347.04,0.0,organic,2016,West +18,2016-08-21,1.82,144812.23,43598.18,50611.87,104.26,50497.92,31310.25,19187.67,0.0,organic,2016,West +19,2016-08-14,1.75,176385.1,44064.59,63383.04,117.36,68820.11,51024.36,17795.75,0.0,organic,2016,West +20,2016-08-07,1.7,177284.38,49438.88,53061.67,94.46,74689.37,39122.15,35567.22,0.0,organic,2016,West +21,2016-07-31,1.65,189615.28,50386.72,54278.15,106.15,84844.26,29501.17,55343.09,0.0,organic,2016,West +22,2016-07-24,1.88,168610.5,49512.52,69123.8,186.93,49787.25,33356.15,16431.1,0.0,organic,2016,West +23,2016-07-17,1.85,179798.46,51709.18,80874.26,91.31,47123.71,23318.33,23805.38,0.0,organic,2016,West +24,2016-07-10,1.54,226554.8,47697.0,78885.22,81.91,99890.67,60450.95,39439.72,0.0,organic,2016,West +25,2016-07-03,1.47,245935.09,57696.2,84970.72,146.71,103121.46,29715.52,73405.94,0.0,organic,2016,West +26,2016-06-26,1.56,213439.57,57147.64,101491.99,226.13,54573.81,17817.37,36756.44,0.0,organic,2016,West +27,2016-06-19,1.49,244706.99,70317.09,133145.27,206.8,41037.83,17327.6,23710.23,0.0,organic,2016,West +28,2016-06-12,1.6,183825.41,73423.24,87335.68,755.62,22310.87,11351.58,10959.29,0.0,organic,2016,West +29,2016-06-05,1.58,195651.71,58162.59,111261.31,629.91,25597.9,17579.09,8018.81,0.0,organic,2016,West +30,2016-05-29,1.37,249655.68,37317.27,123135.77,3020.45,86182.19,52709.61,33472.58,0.0,organic,2016,West +31,2016-05-22,1.27,321890.92,69931.66,137437.19,546.57,113975.5,52117.86,61857.64,0.0,organic,2016,West +32,2016-05-15,1.39,252652.39,55508.03,137201.71,269.8,59672.85,20447.22,39225.63,0.0,organic,2016,West +33,2016-05-08,1.08,291268.76,49339.11,99082.98,5756.76,137089.91,20696.46,116393.45,0.0,organic,2016,West +34,2016-05-01,1.01,509484.65,163000.7,151262.14,9538.16,185683.65,55292.78,130390.87,0.0,organic,2016,West +35,2016-04-24,1.01,628445.85,143958.38,213511.34,339.25,270636.88,213637.25,56999.63,0.0,organic,2016,West +36,2016-04-17,1.31,250678.16,32114.27,89178.52,155.12,129230.25,64711.23,64519.02,0.0,organic,2016,West +37,2016-04-10,0.99,405751.04,30288.09,99517.71,131.37,275813.87,81246.82,194567.05,0.0,organic,2016,West +38,2016-04-03,1.27,226558.02,35134.68,77837.8,115.48,113470.06,44860.97,68609.09,0.0,organic,2016,West +39,2016-03-27,1.39,208015.17,34897.61,73832.59,73.54,99211.43,24069.73,75141.7,0.0,organic,2016,West +40,2016-03-20,0.99,380211.61,27234.11,92382.38,128.95,260466.17,36003.44,224462.73,0.0,organic,2016,West +41,2016-03-13,1.0,344775.17,42978.57,73760.05,156.62,227879.93,60151.34,167728.59,0.0,organic,2016,West +42,2016-03-06,0.96,356224.38,35600.89,76142.32,121.22,244359.95,97380.11,146979.84,0.0,organic,2016,West +43,2016-02-28,1.42,183804.74,24290.16,78457.11,141.15,80916.32,51887.57,29028.75,0.0,organic,2016,West +44,2016-02-21,1.37,163120.64,22049.09,50654.13,60.78,90356.64,45278.4,45078.24,0.0,organic,2016,West +45,2016-02-14,1.07,292307.61,27729.22,74888.46,133.74,189556.19,25453.95,164102.24,0.0,organic,2016,West +46,2016-02-07,1.22,196570.63,23296.91,54945.8,102.18,118225.74,52341.87,65883.87,0.0,organic,2016,West +47,2016-01-31,1.23,216330.45,26543.86,55055.64,81.03,134649.92,46628.66,88021.26,0.0,organic,2016,West +48,2016-01-24,1.27,184872.75,28542.09,50418.71,133.0,105778.95,43105.63,62673.32,0.0,organic,2016,West +49,2016-01-17,1.27,190161.43,28881.17,58843.29,69.26,102367.71,20133.83,82233.88,0.0,organic,2016,West +50,2016-01-10,1.09,255091.59,26496.6,71724.89,119.85,156750.25,21108.02,135642.23,0.0,organic,2016,West +51,2016-01-03,1.41,171841.15,31369.85,51648.96,110.53,88711.81,15175.56,73536.25,0.0,organic,2016,West +0,2016-12-25,1.31,17382.2,1381.72,3099.16,20.05,12881.27,12843.07,38.2,0.0,organic,2016,WestTexNewMexico +1,2016-12-18,1.34,11406.5,945.89,2571.83,31.47,7857.31,7819.17,38.14,0.0,organic,2016,WestTexNewMexico +2,2016-12-11,1.54,13227.83,790.03,3777.96,60.01,8599.83,8510.92,88.91,0.0,organic,2016,WestTexNewMexico +3,2016-12-04,1.82,9895.04,819.39,2435.34,19.99,6620.32,6533.87,86.45,0.0,organic,2016,WestTexNewMexico +4,2016-11-27,1.72,9783.93,1014.39,2423.56,0.0,6345.98,6307.59,38.39,0.0,organic,2016,WestTexNewMexico +5,2016-11-20,1.75,11140.07,1377.62,3897.77,2.85,5861.83,5848.5,13.33,0.0,organic,2016,WestTexNewMexico +6,2016-11-13,1.59,14666.55,1302.11,3840.13,11.41,9512.9,9443.44,69.46,0.0,organic,2016,WestTexNewMexico +7,2016-11-06,2.01,8433.01,1281.15,5281.54,8.56,1861.76,1804.65,57.11,0.0,organic,2016,WestTexNewMexico +8,2016-10-30,2.57,5647.48,593.81,4865.11,8.56,180.0,176.67,3.33,0.0,organic,2016,WestTexNewMexico +9,2016-10-23,2.27,4582.72,758.61,3479.36,11.41,333.34,333.34,0.0,0.0,organic,2016,WestTexNewMexico +10,2016-10-16,2.93,5373.88,901.06,3284.87,8.55,1179.4,1146.07,33.33,0.0,organic,2016,WestTexNewMexico +11,2016-10-09,2.35,6223.98,1319.88,2864.97,8.55,2030.58,1993.91,36.67,0.0,organic,2016,WestTexNewMexico +12,2016-10-02,2.79,5562.0,790.45,3627.36,14.25,1129.94,1116.94,13.0,0.0,organic,2016,WestTexNewMexico +13,2016-09-25,2.83,4984.76,652.27,3047.02,8.54,1276.93,1231.67,45.26,0.0,organic,2016,WestTexNewMexico +14,2016-09-18,1.77,10726.53,1561.83,2483.57,5.69,6675.44,6399.23,276.21,0.0,organic,2016,WestTexNewMexico +15,2016-09-11,1.87,13156.18,2037.56,3390.26,0.0,7728.36,5526.32,2202.04,0.0,organic,2016,WestTexNewMexico +16,2016-09-04,1.82,14809.52,3062.97,3324.14,0.0,8422.41,4847.6,3574.81,0.0,organic,2016,WestTexNewMexico +17,2016-08-28,1.69,13652.91,2630.75,2321.75,11.34,8689.07,5137.77,3551.3,0.0,organic,2016,WestTexNewMexico +18,2016-08-21,1.76,15357.93,3349.0,3122.34,17.0,8869.59,4720.0,4149.59,0.0,organic,2016,WestTexNewMexico +19,2016-08-14,1.72,16857.19,3292.5,2737.61,16.99,10810.09,6816.67,3993.42,0.0,organic,2016,WestTexNewMexico +20,2016-08-07,1.78,17562.46,3788.5,2995.35,22.63,10755.98,6086.67,4669.31,0.0,organic,2016,WestTexNewMexico +21,2016-07-31,1.84,16389.34,3381.02,3234.02,28.27,9746.03,5696.67,4049.36,0.0,organic,2016,WestTexNewMexico +22,2016-07-24,1.99,16025.11,3853.35,4310.26,8.49,7853.01,3647.77,4205.24,0.0,organic,2016,WestTexNewMexico +23,2016-07-17,1.89,20129.64,4933.26,4562.27,0.0,10634.11,5736.67,4897.44,0.0,organic,2016,WestTexNewMexico +24,2016-07-10,1.65,23418.88,5754.48,5221.55,0.0,12442.85,5753.33,6689.52,0.0,organic,2016,WestTexNewMexico +25,2016-07-03,1.43,22964.25,6310.64,5419.26,8.52,11225.83,3343.33,7882.5,0.0,organic,2016,WestTexNewMexico +26,2016-06-26,1.38,21667.76,5547.63,6169.07,14.21,9936.85,4803.33,5133.52,0.0,organic,2016,WestTexNewMexico +27,2016-06-19,1.37,18402.19,6836.26,6446.18,14.24,5105.51,2193.34,2912.17,0.0,organic,2016,WestTexNewMexico +28,2016-06-12,1.36,19518.92,8202.09,5855.07,1465.64,3996.12,2191.79,1804.33,0.0,organic,2016,WestTexNewMexico +29,2016-06-05,1.29,24167.8,6253.6,7313.37,1359.7,9241.13,5613.33,3627.8,0.0,organic,2016,WestTexNewMexico +30,2016-05-29,1.35,47067.58,4805.12,25176.83,7675.68,9409.95,6003.34,3406.61,0.0,organic,2016,WestTexNewMexico +31,2016-05-22,1.36,30983.48,6703.59,12464.46,999.34,10816.09,4708.3,6107.79,0.0,organic,2016,WestTexNewMexico +32,2016-05-15,1.25,50809.3,6329.81,28751.94,572.18,15155.37,5948.7,9206.67,0.0,organic,2016,WestTexNewMexico +33,2016-05-08,1.1,41244.99,4759.58,9207.54,14337.18,12940.69,7111.59,5829.1,0.0,organic,2016,WestTexNewMexico +34,2016-05-01,1.09,52358.11,5422.01,17237.12,21948.79,7750.19,5167.45,2582.74,0.0,organic,2016,WestTexNewMexico +35,2016-04-24,1.36,38767.82,2907.01,25699.0,262.86,9898.95,5774.63,4124.32,0.0,organic,2016,WestTexNewMexico +36,2016-04-17,1.36,37885.9,2655.44,25121.02,177.35,9932.09,5036.29,4895.8,0.0,organic,2016,WestTexNewMexico +37,2016-04-10,1.31,21561.29,3204.95,7746.53,111.55,10498.26,8558.96,1939.3,0.0,organic,2016,WestTexNewMexico +38,2016-04-03,1.29,20698.7,2278.61,6800.76,58.05,11561.28,10538.62,1022.66,0.0,organic,2016,WestTexNewMexico +39,2016-03-27,1.41,17528.02,2983.3,6722.24,53.08,7769.4,7268.06,501.34,0.0,organic,2016,WestTexNewMexico +40,2016-03-20,1.47,15705.35,2731.96,6730.01,52.95,6190.43,6185.08,5.35,0.0,organic,2016,WestTexNewMexico +41,2016-03-13,1.3,18611.51,1716.44,8405.31,60.03,8429.73,8365.7,64.03,0.0,organic,2016,WestTexNewMexico +42,2016-03-06,1.32,18916.59,2653.06,5464.63,14.37,10784.53,10704.67,79.86,0.0,organic,2016,WestTexNewMexico +43,2016-02-28,1.36,16034.56,2064.7,5044.66,7.17,8918.03,8879.53,38.5,0.0,organic,2016,WestTexNewMexico +44,2016-02-21,1.48,14413.74,1308.04,4865.24,4.77,8235.69,7090.72,1144.97,0.0,organic,2016,WestTexNewMexico +45,2016-02-14,1.39,15805.58,1483.39,4975.83,38.02,9308.34,6330.13,2978.21,0.0,organic,2016,WestTexNewMexico +46,2016-02-07,1.49,13712.44,1451.0,4199.43,37.92,8024.09,7913.5,110.59,0.0,organic,2016,WestTexNewMexico +47,2016-01-31,1.64,11626.56,1618.9,4032.03,2.34,5973.29,5957.67,15.62,0.0,organic,2016,WestTexNewMexico +48,2016-01-24,1.47,12171.04,1554.09,4656.41,9.36,5951.18,5852.36,98.82,0.0,organic,2016,WestTexNewMexico +49,2016-01-17,1.45,13237.48,1912.6,4779.17,25.72,6519.99,6447.25,72.74,0.0,organic,2016,WestTexNewMexico +50,2016-01-10,1.37,12647.9,1591.6,4070.29,23.41,6962.6,6780.56,182.04,0.0,organic,2016,WestTexNewMexico +51,2016-01-03,1.58,9667.05,1820.39,2783.11,16.41,5047.14,4651.16,395.98,0.0,organic,2016,WestTexNewMexico +0,2017-12-31,1.46,3463.85,18.12,198.16,0.0,3247.57,3247.57,0.0,0.0,organic,2017,Albany +1,2017-12-24,1.58,3694.13,31.68,327.39,0.0,3335.06,3335.06,0.0,0.0,organic,2017,Albany +2,2017-12-17,1.43,3513.77,37.46,209.3,0.0,3267.01,3267.01,0.0,0.0,organic,2017,Albany +3,2017-12-10,1.45,3779.98,18.04,262.14,0.0,3499.8,3499.8,0.0,0.0,organic,2017,Albany +4,2017-12-03,1.44,3577.04,118.55,306.55,0.0,3151.94,3151.94,0.0,0.0,organic,2017,Albany +5,2017-11-26,1.57,2841.29,27.75,182.15,0.0,2631.39,2631.39,0.0,0.0,organic,2017,Albany +6,2017-11-19,1.75,2506.38,0.0,252.98,0.0,2253.4,2250.07,3.33,0.0,organic,2017,Albany +7,2017-11-12,1.71,2664.62,0.0,245.71,0.0,2418.91,2418.91,0.0,0.0,organic,2017,Albany +8,2017-11-05,1.5,3425.86,3.56,64.14,0.0,3358.16,3358.16,0.0,0.0,organic,2017,Albany +9,2017-10-29,1.38,5583.79,12.99,180.62,0.0,5390.18,5390.18,0.0,0.0,organic,2017,Albany +10,2017-10-22,1.49,4337.67,3.52,268.83,0.0,4065.32,4061.99,3.33,0.0,organic,2017,Albany +11,2017-10-15,1.47,4522.84,18.71,237.43,0.0,4266.7,4266.7,0.0,0.0,organic,2017,Albany +12,2017-10-08,1.4,5229.43,23.15,341.52,0.0,4864.76,4864.76,0.0,0.0,organic,2017,Albany +13,2017-10-01,1.59,3423.95,31.2,150.24,0.0,3242.51,3242.51,0.0,0.0,organic,2017,Albany +14,2017-09-24,1.42,3627.18,56.82,95.31,0.0,3475.05,3475.05,0.0,0.0,organic,2017,Albany +15,2017-09-17,1.55,3431.2,30.32,215.1,0.0,3185.78,3185.78,0.0,0.0,organic,2017,Albany +16,2017-09-10,1.78,3139.84,45.5,196.27,0.0,2898.07,2894.74,3.33,0.0,organic,2017,Albany +17,2017-09-03,2.0,2022.0,112.42,254.49,0.0,1655.09,1655.09,0.0,0.0,organic,2017,Albany +18,2017-08-27,1.91,2525.28,44.15,210.54,0.0,2270.59,2270.59,0.0,0.0,organic,2017,Albany +19,2017-08-20,1.86,2584.08,61.21,143.82,0.0,2379.05,2379.05,0.0,0.0,organic,2017,Albany +20,2017-08-13,1.9,2259.92,42.86,207.29,0.0,2009.77,2009.77,0.0,0.0,organic,2017,Albany +21,2017-08-06,1.98,2576.49,39.31,331.89,0.0,2205.29,2205.29,0.0,0.0,organic,2017,Albany +22,2017-07-30,1.67,2503.82,55.26,92.99,0.0,2355.57,2355.57,0.0,0.0,organic,2017,Albany +23,2017-07-23,1.42,4233.61,93.39,93.39,0.0,4046.83,4046.83,0.0,0.0,organic,2017,Albany +24,2017-07-16,1.87,2889.03,155.1,274.95,0.0,2458.98,2458.98,0.0,0.0,organic,2017,Albany +25,2017-07-09,2.0,1883.1,38.06,187.9,0.0,1657.14,1657.14,0.0,0.0,organic,2017,Albany +26,2017-07-02,2.03,2268.86,59.41,278.04,0.0,1931.41,1931.41,0.0,0.0,organic,2017,Albany +27,2017-06-25,2.13,2898.81,142.46,295.6,0.0,2460.75,2460.75,0.0,0.0,organic,2017,Albany +28,2017-06-18,2.03,3185.1,366.52,266.88,0.0,2551.7,2551.7,0.0,0.0,organic,2017,Albany +29,2017-06-11,2.04,2719.24,21.33,248.87,0.0,2449.04,2449.04,0.0,0.0,organic,2017,Albany +30,2017-06-04,1.63,3771.39,54.47,352.85,0.0,3364.07,3364.07,0.0,0.0,organic,2017,Albany +31,2017-05-28,1.87,3365.45,11.93,344.88,0.0,3008.64,3008.64,0.0,0.0,organic,2017,Albany +32,2017-05-21,1.84,3184.37,20.33,385.05,0.0,2778.99,2778.99,0.0,0.0,organic,2017,Albany +33,2017-05-14,1.57,4270.28,44.12,450.74,0.0,3775.42,3775.42,0.0,0.0,organic,2017,Albany +34,2017-05-07,1.79,2897.23,89.53,315.14,0.0,2492.56,2492.56,0.0,0.0,organic,2017,Albany +35,2017-04-30,1.74,3046.63,388.81,280.28,0.0,2377.54,2377.54,0.0,0.0,organic,2017,Albany +36,2017-04-23,1.92,2087.6,110.25,182.56,0.0,1794.79,1794.79,0.0,0.0,organic,2017,Albany +37,2017-04-16,1.85,2886.48,265.82,203.84,0.0,2416.82,2416.82,0.0,0.0,organic,2017,Albany +38,2017-04-09,1.92,2209.82,159.65,189.67,0.0,1860.5,1860.5,0.0,0.0,organic,2017,Albany +39,2017-04-02,1.86,3492.87,885.46,362.37,0.0,2245.04,2245.04,0.0,0.0,organic,2017,Albany +40,2017-03-26,2.02,2250.22,166.49,263.32,0.0,1820.41,1820.41,0.0,0.0,organic,2017,Albany +41,2017-03-19,1.87,2763.38,503.14,175.98,0.0,2084.26,2084.26,0.0,0.0,organic,2017,Albany +42,2017-03-12,1.97,2001.95,123.51,206.64,0.0,1671.8,1671.8,0.0,0.0,organic,2017,Albany +43,2017-03-05,1.84,2228.14,241.0,208.79,0.0,1778.35,1778.35,0.0,0.0,organic,2017,Albany +44,2017-02-26,1.71,2185.96,508.31,240.1,0.0,1437.55,1437.55,0.0,0.0,organic,2017,Albany +45,2017-02-19,1.67,2523.56,1049.5,141.41,0.0,1332.65,1332.65,0.0,0.0,organic,2017,Albany +46,2017-02-12,1.78,1806.4,119.52,170.57,0.0,1516.31,1516.31,0.0,0.0,organic,2017,Albany +47,2017-02-05,1.72,1753.35,26.75,223.33,0.0,1503.27,1503.27,0.0,0.0,organic,2017,Albany +48,2017-01-29,1.86,1795.81,32.53,123.14,0.0,1640.14,1640.14,0.0,0.0,organic,2017,Albany +49,2017-01-22,1.82,1897.07,78.83,128.24,0.0,1690.0,1690.0,0.0,0.0,organic,2017,Albany +50,2017-01-15,1.84,1982.65,82.3,328.02,0.0,1572.33,1572.33,0.0,0.0,organic,2017,Albany +51,2017-01-08,1.94,2229.52,63.46,478.31,0.0,1687.75,1687.75,0.0,0.0,organic,2017,Albany +52,2017-01-01,1.87,1376.7,71.65,192.63,0.0,1112.42,1112.42,0.0,0.0,organic,2017,Albany +0,2017-12-31,1.28,17217.91,331.16,3474.3,0.0,13412.45,11486.03,1926.42,0.0,organic,2017,Atlanta +1,2017-12-24,1.59,15311.1,443.44,4328.48,0.0,10539.18,9273.56,1265.62,0.0,organic,2017,Atlanta +2,2017-12-17,1.59,11548.46,343.83,3504.07,0.0,7700.56,5440.12,2260.44,0.0,organic,2017,Atlanta +3,2017-12-10,1.63,13300.51,332.1,3555.77,0.0,9412.64,5748.61,3664.03,0.0,organic,2017,Atlanta +4,2017-12-03,1.62,10609.29,380.9,3883.18,0.0,6345.21,5731.0,614.21,0.0,organic,2017,Atlanta +5,2017-11-26,1.66,11834.89,344.14,3863.03,0.0,7627.72,6495.07,1132.65,0.0,organic,2017,Atlanta +6,2017-11-19,1.62,10393.69,186.36,4241.25,0.0,5966.08,5612.89,353.19,0.0,organic,2017,Atlanta +7,2017-11-12,1.8,12115.78,199.47,4259.52,0.0,7656.79,6474.29,1182.5,0.0,organic,2017,Atlanta +8,2017-11-05,1.86,11588.38,447.38,3686.33,0.0,7454.67,5330.44,2124.23,0.0,organic,2017,Atlanta +9,2017-10-29,2.04,15731.26,319.28,3788.49,0.0,11623.49,5403.29,6220.2,0.0,organic,2017,Atlanta +10,2017-10-22,2.06,14351.98,390.46,4323.24,0.0,9638.28,5432.51,4205.77,0.0,organic,2017,Atlanta +11,2017-10-15,2.23,11405.18,344.76,4738.94,0.0,6321.48,5368.04,953.44,0.0,organic,2017,Atlanta +12,2017-10-08,2.55,12275.61,371.26,4535.92,0.0,7368.43,6809.48,558.95,0.0,organic,2017,Atlanta +13,2017-10-01,2.75,13557.58,543.85,4724.38,0.0,8289.35,4856.11,3433.24,0.0,organic,2017,Atlanta +14,2017-09-24,2.56,18912.3,507.34,5068.56,0.0,13336.4,4252.99,9083.41,0.0,organic,2017,Atlanta +15,2017-09-17,2.54,17292.22,521.38,5064.08,0.0,11706.76,4932.3,6774.46,0.0,organic,2017,Atlanta +16,2017-09-10,2.59,13955.66,599.45,5931.44,0.0,7424.77,4617.04,2807.73,0.0,organic,2017,Atlanta +17,2017-09-03,2.59,17990.83,538.17,5588.7,0.0,11863.96,3850.84,8013.12,0.0,organic,2017,Atlanta +18,2017-08-27,2.59,13910.32,639.25,6918.13,0.0,6352.94,2356.85,3996.09,0.0,organic,2017,Atlanta +19,2017-08-20,2.18,17338.42,587.96,6921.22,0.0,9829.24,8159.53,1669.71,0.0,organic,2017,Atlanta +20,2017-08-13,2.14,14533.65,516.53,5399.86,0.0,8617.26,8579.26,38.0,0.0,organic,2017,Atlanta +21,2017-08-06,1.97,13998.62,451.86,5641.82,0.0,7904.94,5936.32,1968.62,0.0,organic,2017,Atlanta +22,2017-07-30,1.78,15501.08,431.93,6137.14,0.0,8932.01,4879.96,4052.05,0.0,organic,2017,Atlanta +23,2017-07-23,1.85,17588.07,609.88,7547.2,0.0,9430.99,4594.8,4836.19,0.0,organic,2017,Atlanta +24,2017-07-16,1.89,14396.43,471.9,7657.36,0.0,6267.17,2880.81,3386.36,0.0,organic,2017,Atlanta +25,2017-07-09,1.61,22122.61,564.97,10263.73,0.0,11293.91,4751.26,6542.65,0.0,organic,2017,Atlanta +26,2017-07-02,1.53,23108.17,674.17,9001.27,0.0,13432.73,3832.88,9599.85,0.0,organic,2017,Atlanta +27,2017-06-25,1.31,30581.47,607.94,7832.9,0.0,22140.63,4645.5,17495.13,0.0,organic,2017,Atlanta +28,2017-06-18,1.49,23485.92,852.47,9300.22,0.0,13333.23,4532.28,8800.95,0.0,organic,2017,Atlanta +29,2017-06-11,1.06,33969.35,1251.33,6518.33,0.0,26199.69,4281.35,21918.34,0.0,organic,2017,Atlanta +30,2017-06-04,1.44,20445.39,1464.32,5926.88,0.0,13054.19,2610.58,10443.61,0.0,organic,2017,Atlanta +31,2017-05-28,1.59,19501.92,1301.7,6521.28,0.0,11678.94,979.75,10699.19,0.0,organic,2017,Atlanta +32,2017-05-21,1.38,21857.76,1307.02,7474.67,0.0,13076.07,1010.73,12065.34,0.0,organic,2017,Atlanta +33,2017-05-14,1.46,15466.97,988.48,7007.8,0.0,7470.69,239.81,7230.88,0.0,organic,2017,Atlanta +34,2017-05-07,1.37,18229.58,338.98,7980.14,0.0,9910.46,238.99,9671.47,0.0,organic,2017,Atlanta +35,2017-04-30,1.59,15041.91,1487.72,7556.77,0.0,5997.42,194.73,5802.69,0.0,organic,2017,Atlanta +36,2017-04-23,1.63,13269.05,1704.94,7073.78,0.0,4490.33,147.22,4343.11,0.0,organic,2017,Atlanta +37,2017-04-16,1.27,16411.1,1593.09,7034.18,0.0,7783.83,278.87,7504.96,0.0,organic,2017,Atlanta +38,2017-04-09,0.91,24438.67,1358.59,5782.33,0.0,17297.75,1629.46,15668.29,0.0,organic,2017,Atlanta +39,2017-04-02,1.26,16943.34,1252.51,6359.96,0.0,9330.87,636.1,8694.77,0.0,organic,2017,Atlanta +40,2017-03-26,1.27,16209.23,1653.21,5804.09,0.0,8751.93,146.67,8605.26,0.0,organic,2017,Atlanta +41,2017-03-19,1.23,11754.42,1756.42,4656.72,0.0,5341.28,125.41,5215.87,0.0,organic,2017,Atlanta +42,2017-03-12,0.9,18563.32,2140.74,4782.95,0.0,11639.63,189.89,11449.74,0.0,organic,2017,Atlanta +43,2017-03-05,0.62,32292.39,2078.48,4175.17,0.0,26038.74,342.28,25696.46,0.0,organic,2017,Atlanta +44,2017-02-26,0.64,24322.77,1111.31,3495.28,0.0,19716.18,150.0,19566.18,0.0,organic,2017,Atlanta +45,2017-02-19,1.06,11866.71,1388.4,3401.6,0.0,7076.71,85.62,6991.09,0.0,organic,2017,Atlanta +46,2017-02-12,1.07,11072.75,1085.35,4061.87,0.0,5925.53,200.31,5725.22,0.0,organic,2017,Atlanta +47,2017-02-05,1.28,9685.15,1418.26,4208.97,0.0,4057.92,35.71,4022.21,0.0,organic,2017,Atlanta +48,2017-01-29,1.53,7330.86,1102.57,4181.73,0.0,2046.56,5.58,2040.98,0.0,organic,2017,Atlanta +49,2017-01-22,1.62,7484.99,1121.56,4738.82,0.0,1624.61,2.79,1621.82,0.0,organic,2017,Atlanta +50,2017-01-15,1.62,6291.29,1129.49,3582.5,0.0,1579.3,0.0,1579.3,0.0,organic,2017,Atlanta +51,2017-01-08,1.74,8244.17,1456.0,5316.57,0.0,1471.6,0.0,1471.6,0.0,organic,2017,Atlanta +52,2017-01-01,1.81,5342.85,956.73,2862.95,0.0,1523.17,5.55,1517.62,0.0,organic,2017,Atlanta +0,2017-12-31,1.53,40942.37,1177.45,7959.34,122.36,31683.22,31680.42,2.8,0.0,organic,2017,BaltimoreWashington +1,2017-12-24,1.56,35540.32,919.11,5886.28,89.47,28645.46,28639.86,5.6,0.0,organic,2017,BaltimoreWashington +2,2017-12-17,1.58,34581.64,1256.76,7053.3,50.28,26221.3,26217.97,3.33,0.0,organic,2017,BaltimoreWashington +3,2017-12-10,1.51,41451.11,1979.76,6934.12,73.99,32463.24,32436.83,26.41,0.0,organic,2017,BaltimoreWashington +4,2017-12-03,1.58,38753.69,1415.83,7869.09,76.35,29392.42,29382.7,9.72,0.0,organic,2017,BaltimoreWashington +5,2017-11-26,1.69,31688.93,882.64,6845.96,64.4,23895.93,23890.38,5.55,0.0,organic,2017,BaltimoreWashington +6,2017-11-19,1.8,28942.29,839.81,7176.02,74.84,20851.62,20843.85,7.77,0.0,organic,2017,BaltimoreWashington +7,2017-11-12,1.81,33641.31,823.07,7144.26,105.89,25568.09,25558.09,10.0,0.0,organic,2017,BaltimoreWashington +8,2017-11-05,1.84,35881.7,1134.54,8053.87,75.7,26617.59,26614.26,3.33,0.0,organic,2017,BaltimoreWashington +9,2017-10-29,1.81,37155.43,986.73,9121.99,99.38,26947.33,26934.0,13.33,0.0,organic,2017,BaltimoreWashington +10,2017-10-22,1.64,47486.93,815.38,10255.4,71.21,36344.94,36343.5,1.44,0.0,organic,2017,BaltimoreWashington +11,2017-10-15,1.6,56559.22,939.94,8821.8,68.85,46728.63,46728.63,0.0,0.0,organic,2017,BaltimoreWashington +12,2017-10-08,1.5,67233.45,2811.23,6844.1,80.66,57497.46,57494.13,3.33,0.0,organic,2017,BaltimoreWashington +13,2017-10-01,1.62,48973.13,2863.92,5844.08,56.27,40208.86,40203.04,5.82,0.0,organic,2017,BaltimoreWashington +14,2017-09-24,1.53,62464.93,2666.66,6252.03,94.49,53451.75,53451.75,0.0,0.0,organic,2017,BaltimoreWashington +15,2017-09-17,1.54,59452.63,2003.4,8036.61,72.28,49340.34,49340.34,0.0,0.0,organic,2017,BaltimoreWashington +16,2017-09-10,1.59,63283.62,2319.29,8702.11,102.72,52159.5,52159.5,0.0,0.0,organic,2017,BaltimoreWashington +17,2017-09-03,1.68,58736.24,4534.0,8344.86,134.23,45723.15,45723.15,0.0,0.0,organic,2017,BaltimoreWashington +18,2017-08-27,1.82,41523.58,4097.95,8674.09,66.86,28684.68,28684.68,0.0,0.0,organic,2017,BaltimoreWashington +19,2017-08-20,1.75,39133.75,924.94,8272.68,114.95,29821.18,29816.74,4.44,0.0,organic,2017,BaltimoreWashington +20,2017-08-13,1.66,40536.12,1099.85,6739.42,161.91,32534.94,32534.94,0.0,0.0,organic,2017,BaltimoreWashington +21,2017-08-06,1.65,41701.43,1372.7,10746.78,148.14,29433.81,29420.48,13.33,0.0,organic,2017,BaltimoreWashington +22,2017-07-30,1.6,41846.93,1117.3,8371.18,115.39,32243.06,32243.06,0.0,0.0,organic,2017,BaltimoreWashington +23,2017-07-23,1.51,50322.79,763.36,8833.15,131.28,40595.0,40588.34,6.66,0.0,organic,2017,BaltimoreWashington +24,2017-07-16,1.57,37981.09,845.67,4835.57,168.13,32131.72,32131.72,0.0,0.0,organic,2017,BaltimoreWashington +25,2017-07-09,2.26,18665.31,1270.14,7508.32,197.39,9689.46,9685.02,4.44,0.0,organic,2017,BaltimoreWashington +26,2017-07-02,2.2,23687.44,1028.08,12582.81,209.44,9867.11,9863.78,3.33,0.0,organic,2017,BaltimoreWashington +27,2017-06-25,2.21,22445.91,792.09,11005.95,179.93,10467.94,10461.28,6.66,0.0,organic,2017,BaltimoreWashington +28,2017-06-18,2.2,22845.26,963.89,11778.12,141.79,9961.46,9958.13,3.33,0.0,organic,2017,BaltimoreWashington +29,2017-06-11,2.17,23607.15,1138.12,11797.51,140.2,10531.32,10531.32,0.0,0.0,organic,2017,BaltimoreWashington +30,2017-06-04,2.15,26345.64,1029.51,13920.73,217.02,11178.38,11174.92,3.46,0.0,organic,2017,BaltimoreWashington +31,2017-05-28,2.18,24730.84,1009.57,13030.82,180.99,10509.46,10503.91,5.55,0.0,organic,2017,BaltimoreWashington +32,2017-05-21,2.2,23209.1,1034.75,10982.81,206.24,10985.3,10985.3,0.0,0.0,organic,2017,BaltimoreWashington +33,2017-05-14,2.11,25181.71,1025.83,12713.64,262.83,11179.41,11171.14,8.27,0.0,organic,2017,BaltimoreWashington +34,2017-05-07,2.13,21753.01,964.17,9975.92,229.32,10583.6,10561.56,22.04,0.0,organic,2017,BaltimoreWashington +35,2017-04-30,2.15,25696.88,1412.92,11979.18,192.69,12112.09,12103.86,8.23,0.0,organic,2017,BaltimoreWashington +36,2017-04-23,2.14,24138.64,809.43,11476.21,188.34,11664.66,11661.91,2.75,0.0,organic,2017,BaltimoreWashington +37,2017-04-16,1.96,24454.71,1248.3,11853.83,398.85,10953.73,10925.78,27.95,0.0,organic,2017,BaltimoreWashington +38,2017-04-09,1.89,19114.94,854.07,10375.8,269.66,7615.41,7604.51,10.9,0.0,organic,2017,BaltimoreWashington +39,2017-04-02,1.97,23194.42,1558.12,11581.01,275.8,9779.49,9768.59,10.9,0.0,organic,2017,BaltimoreWashington +40,2017-03-26,1.97,20770.15,1316.49,9686.16,333.08,9434.42,9418.09,16.33,0.0,organic,2017,BaltimoreWashington +41,2017-03-19,2.06,18537.54,1109.47,7239.15,227.38,9961.54,9943.79,17.75,0.0,organic,2017,BaltimoreWashington +42,2017-03-12,2.12,17418.01,1146.72,6980.5,270.77,9020.02,8997.94,22.08,0.0,organic,2017,BaltimoreWashington +43,2017-03-05,1.97,18082.67,1280.17,8000.14,234.64,8567.72,8562.17,5.55,0.0,organic,2017,BaltimoreWashington +44,2017-02-26,1.93,16773.14,1273.89,7291.17,302.05,7906.03,7897.78,8.25,0.0,organic,2017,BaltimoreWashington +45,2017-02-19,1.81,21623.61,1775.21,10428.06,261.83,9158.51,9074.7,83.81,0.0,organic,2017,BaltimoreWashington +46,2017-02-12,1.85,18596.41,1309.1,7233.7,244.98,9808.63,9707.07,101.56,0.0,organic,2017,BaltimoreWashington +47,2017-02-05,1.85,17974.51,1373.51,6610.53,202.88,9787.59,9782.06,5.53,0.0,organic,2017,BaltimoreWashington +48,2017-01-29,1.85,17293.49,1050.68,7816.85,330.58,8095.38,8090.55,4.83,0.0,organic,2017,BaltimoreWashington +49,2017-01-22,1.85,18486.41,1219.26,8061.11,345.66,8860.38,8826.54,33.84,0.0,organic,2017,BaltimoreWashington +50,2017-01-15,1.82,20759.34,1359.33,8445.66,294.96,10659.39,10651.09,8.3,0.0,organic,2017,BaltimoreWashington +51,2017-01-08,1.85,17989.43,1325.19,7679.48,444.8,8539.96,8534.42,5.54,0.0,organic,2017,BaltimoreWashington +52,2017-01-01,1.92,13901.46,1420.47,6298.07,325.44,5857.48,5857.48,0.0,0.0,organic,2017,BaltimoreWashington +0,2017-12-31,1.72,2017.17,78.28,646.17,0.0,1292.72,213.18,1079.54,0.0,organic,2017,Boise +1,2017-12-24,1.44,3029.24,60.22,650.35,0.0,2318.67,388.73,1929.94,0.0,organic,2017,Boise +2,2017-12-17,1.79,1797.04,28.34,552.03,0.0,1216.67,264.39,952.28,0.0,organic,2017,Boise +3,2017-12-10,1.76,2237.32,52.94,566.03,0.0,1618.35,463.07,1155.28,0.0,organic,2017,Boise +4,2017-12-03,1.77,1829.41,35.28,386.74,0.0,1407.39,351.95,1055.44,0.0,organic,2017,Boise +5,2017-11-26,1.47,2741.2,49.58,619.73,0.0,2071.89,402.45,1661.79,7.65,organic,2017,Boise +6,2017-11-19,1.85,1863.13,55.94,538.92,0.0,1268.27,46.42,1221.85,0.0,organic,2017,Boise +7,2017-11-12,1.88,1869.21,46.66,484.39,0.0,1338.16,356.27,981.89,0.0,organic,2017,Boise +8,2017-11-05,2.33,1886.42,45.0,504.52,0.0,1336.9,383.32,953.58,0.0,organic,2017,Boise +9,2017-10-29,2.34,1962.54,51.96,511.36,0.0,1399.22,382.29,1016.93,0.0,organic,2017,Boise +10,2017-10-22,2.41,1631.8,41.07,543.46,0.0,1047.27,127.12,915.59,4.56,organic,2017,Boise +11,2017-10-15,2.62,1563.12,34.16,523.33,0.0,1005.63,119.61,886.02,0.0,organic,2017,Boise +12,2017-10-08,2.78,1655.56,62.55,573.83,0.0,1019.18,96.57,922.61,0.0,organic,2017,Boise +13,2017-10-01,2.79,1373.11,58.19,473.62,0.0,841.3,40.17,801.13,0.0,organic,2017,Boise +14,2017-09-24,2.64,1411.83,63.68,535.14,0.0,813.01,75.19,737.82,0.0,organic,2017,Boise +15,2017-09-17,2.65,1491.87,67.41,563.56,0.0,860.9,152.33,707.07,1.5,organic,2017,Boise +16,2017-09-10,2.63,1600.11,75.82,540.2,0.0,984.09,174.77,809.32,0.0,organic,2017,Boise +17,2017-09-03,2.71,1855.43,110.15,617.9,0.0,1127.38,133.37,994.01,0.0,organic,2017,Boise +18,2017-08-27,2.75,1643.45,110.96,503.61,0.0,1028.88,199.13,829.75,0.0,organic,2017,Boise +19,2017-08-20,2.62,1661.6,107.75,622.57,0.0,931.28,90.24,841.04,0.0,organic,2017,Boise +20,2017-08-13,2.32,1816.79,71.06,602.73,0.0,1143.0,186.3,956.7,0.0,organic,2017,Boise +21,2017-08-06,2.21,2091.16,81.09,596.86,0.0,1413.21,470.88,942.33,0.0,organic,2017,Boise +22,2017-07-30,2.21,2033.48,51.75,721.8,0.0,1259.93,408.51,851.42,0.0,organic,2017,Boise +23,2017-07-23,2.23,2197.65,52.24,545.95,0.0,1599.46,481.59,1117.87,0.0,organic,2017,Boise +24,2017-07-16,2.26,2647.32,74.38,680.06,0.0,1892.88,440.28,1452.6,0.0,organic,2017,Boise +25,2017-07-09,1.58,3526.39,60.34,767.31,0.0,2698.74,504.14,2194.6,0.0,organic,2017,Boise +26,2017-07-02,1.92,2765.03,41.84,1111.25,0.0,1611.94,539.92,1072.02,0.0,organic,2017,Boise +27,2017-06-25,2.09,2373.02,53.4,935.18,0.0,1384.44,575.45,808.99,0.0,organic,2017,Boise +28,2017-06-18,1.55,3263.02,48.02,744.9,0.0,2470.1,473.75,1996.35,0.0,organic,2017,Boise +29,2017-06-11,1.27,4375.53,24.54,636.65,0.0,3714.34,558.63,3155.71,0.0,organic,2017,Boise +30,2017-06-04,1.27,4579.54,72.25,651.54,0.0,3855.75,635.33,3220.42,0.0,organic,2017,Boise +31,2017-05-28,1.22,4468.0,14.44,683.93,0.0,3769.63,608.14,3161.49,0.0,organic,2017,Boise +32,2017-05-21,1.27,3897.02,15.84,659.85,0.0,3221.33,557.73,2663.6,0.0,organic,2017,Boise +33,2017-05-14,1.27,4103.97,7.94,681.17,0.0,3414.86,527.77,2887.09,0.0,organic,2017,Boise +34,2017-05-07,1.17,4483.61,11.97,634.33,0.0,3837.31,387.11,3450.2,0.0,organic,2017,Boise +35,2017-04-30,1.22,3943.0,19.93,603.23,0.0,3319.84,496.34,2823.5,0.0,organic,2017,Boise +36,2017-04-23,1.23,3316.33,11.93,570.15,0.0,2734.25,340.94,2393.31,0.0,organic,2017,Boise +37,2017-04-16,1.23,3493.39,35.67,568.06,0.0,2889.66,374.5,2515.16,0.0,organic,2017,Boise +38,2017-04-09,1.18,3514.61,17.11,526.49,0.0,2971.01,370.0,2601.01,0.0,organic,2017,Boise +39,2017-04-02,0.82,4767.59,17.05,676.67,0.0,4073.87,300.0,3773.87,0.0,organic,2017,Boise +40,2017-03-26,0.81,4448.99,9.09,541.44,0.0,3898.46,233.33,3665.13,0.0,organic,2017,Boise +41,2017-03-19,1.25,2665.45,6.42,539.13,0.0,2119.9,454.72,1665.18,0.0,organic,2017,Boise +42,2017-03-12,1.16,2918.06,7.57,483.13,0.0,2427.36,240.87,2186.49,0.0,organic,2017,Boise +43,2017-03-05,0.72,4667.26,19.04,603.63,0.0,4044.59,171.7,3872.89,0.0,organic,2017,Boise +44,2017-02-26,1.15,2949.49,21.41,393.39,0.0,2534.69,659.44,1875.25,0.0,organic,2017,Boise +45,2017-02-19,1.65,2104.05,11.28,403.6,0.0,1689.17,1166.92,522.25,0.0,organic,2017,Boise +46,2017-02-12,1.58,2375.9,20.27,426.9,0.0,1928.73,1244.86,683.87,0.0,organic,2017,Boise +47,2017-02-05,0.95,3143.96,20.03,321.73,0.0,2802.2,679.58,2122.62,0.0,organic,2017,Boise +48,2017-01-29,1.06,3212.37,15.2,452.12,0.0,2745.05,623.74,2121.31,0.0,organic,2017,Boise +49,2017-01-22,1.06,3083.38,3.0,450.57,0.0,2629.81,639.29,1990.52,0.0,organic,2017,Boise +50,2017-01-15,1.06,3071.87,0.0,457.07,0.0,2614.8,508.41,2106.39,0.0,organic,2017,Boise +51,2017-01-08,1.04,4137.35,3.0,585.08,0.0,3549.27,632.37,2916.9,0.0,organic,2017,Boise +52,2017-01-01,1.05,2823.82,0.0,368.63,0.0,2455.19,577.91,1877.28,0.0,organic,2017,Boise +0,2017-12-31,1.86,25275.08,9.19,2796.62,0.0,22469.27,20109.15,2360.12,0.0,organic,2017,Boston +1,2017-12-24,1.83,25639.14,29.37,1723.76,0.0,23886.01,23597.12,288.89,0.0,organic,2017,Boston +2,2017-12-17,1.82,24904.99,12.88,1538.66,0.0,23353.45,19173.91,4179.54,0.0,organic,2017,Boston +3,2017-12-10,1.74,26314.71,14.46,1541.99,0.0,24758.26,19905.51,4852.75,0.0,organic,2017,Boston +4,2017-12-03,1.88,21338.43,39.81,1355.4,0.0,19943.22,18266.31,1676.91,0.0,organic,2017,Boston +5,2017-11-26,1.81,21588.38,28.43,1098.3,0.0,20461.65,19514.31,947.34,0.0,organic,2017,Boston +6,2017-11-19,1.81,26149.55,3.65,1261.2,0.0,24884.7,21415.53,3469.17,0.0,organic,2017,Boston +7,2017-11-12,1.87,26148.28,24.04,1429.61,0.0,24694.63,21304.78,3389.85,0.0,organic,2017,Boston +8,2017-11-05,1.95,28626.61,14.81,1535.06,3.7,27073.04,25996.99,1076.05,0.0,organic,2017,Boston +9,2017-10-29,1.83,34011.21,7.41,1225.55,0.0,32778.25,32401.82,376.43,0.0,organic,2017,Boston +10,2017-10-22,1.58,34913.38,16.66,1569.42,0.0,33327.3,33327.3,0.0,0.0,organic,2017,Boston +11,2017-10-15,1.6,37877.39,14.85,1420.26,0.0,36442.28,36442.28,0.0,0.0,organic,2017,Boston +12,2017-10-08,1.56,30044.2,15.95,1103.1,0.0,28925.15,28907.37,17.78,0.0,organic,2017,Boston +13,2017-10-01,1.61,26718.67,17.83,1127.52,0.0,25573.32,25559.99,13.33,0.0,organic,2017,Boston +14,2017-09-24,1.56,31132.88,51.41,952.51,0.0,30128.96,30124.52,4.44,0.0,organic,2017,Boston +15,2017-09-17,1.56,31066.35,7.65,1268.05,0.0,29790.65,29698.52,92.13,0.0,organic,2017,Boston +16,2017-09-10,1.74,25480.22,20.49,1076.33,0.0,24383.4,23213.93,1169.47,0.0,organic,2017,Boston +17,2017-09-03,1.76,22577.26,26.71,866.01,0.0,21684.54,20203.75,1480.79,0.0,organic,2017,Boston +18,2017-08-27,1.75,22339.0,18.23,1150.07,0.0,21170.7,20161.43,1009.27,0.0,organic,2017,Boston +19,2017-08-20,1.72,22954.83,10.07,1256.79,0.0,21687.97,18683.96,3004.01,0.0,organic,2017,Boston +20,2017-08-13,1.77,18946.53,9.07,1183.44,0.0,17754.02,15759.1,1994.92,0.0,organic,2017,Boston +21,2017-08-06,1.61,22037.86,7.5,1198.39,0.0,20831.97,16162.53,4669.44,0.0,organic,2017,Boston +22,2017-07-30,1.61,23890.76,7.0,1303.51,0.0,22580.25,17924.17,4656.08,0.0,organic,2017,Boston +23,2017-07-23,1.59,28957.04,6.86,1165.51,0.0,27784.67,23227.03,4557.64,0.0,organic,2017,Boston +24,2017-07-16,1.61,25501.3,18.95,1315.56,0.0,24166.79,22172.13,1994.66,0.0,organic,2017,Boston +25,2017-07-09,2.17,20152.69,9.43,1693.69,0.0,18449.57,16339.33,2110.24,0.0,organic,2017,Boston +26,2017-07-02,2.13,19686.52,8.01,1676.54,0.0,18001.97,16435.44,1566.53,0.0,organic,2017,Boston +27,2017-06-25,2.13,22051.39,12.39,1891.69,0.0,20147.31,18533.64,1613.67,0.0,organic,2017,Boston +28,2017-06-18,2.12,23277.63,16.6,1617.23,0.0,21643.8,19934.14,1709.66,0.0,organic,2017,Boston +29,2017-06-11,2.07,20437.87,9.81,1490.22,0.0,18937.84,17150.28,1787.56,0.0,organic,2017,Boston +30,2017-06-04,2.04,22924.67,12.27,1676.05,0.0,21236.35,19576.46,1659.89,0.0,organic,2017,Boston +31,2017-05-28,2.04,20860.14,20.57,1658.97,0.0,19180.6,17542.21,1638.39,0.0,organic,2017,Boston +32,2017-05-21,1.92,22165.79,19.5,1408.91,0.0,20737.38,18624.83,2112.55,0.0,organic,2017,Boston +33,2017-05-14,1.99,21115.24,60.91,1839.22,0.0,19215.11,16626.66,2588.45,0.0,organic,2017,Boston +34,2017-05-07,1.98,21056.26,82.39,1772.56,0.0,19201.31,16567.99,2633.32,0.0,organic,2017,Boston +35,2017-04-30,2.02,17863.55,85.6,2341.26,0.0,15436.69,14866.04,570.65,0.0,organic,2017,Boston +36,2017-04-23,1.88,17773.38,138.28,1028.1,0.0,16607.0,14864.78,1742.22,0.0,organic,2017,Boston +37,2017-04-16,2.0,17641.48,67.56,1173.89,0.0,16400.03,14424.78,1975.25,0.0,organic,2017,Boston +38,2017-04-09,2.0,17032.99,64.98,1219.33,0.0,15748.68,13774.14,1974.54,0.0,organic,2017,Boston +39,2017-04-02,2.0,16320.74,80.78,1392.51,0.0,14847.45,14307.53,539.92,0.0,organic,2017,Boston +40,2017-03-26,2.02,17307.58,182.23,1192.32,0.0,15933.03,14681.31,1251.72,0.0,organic,2017,Boston +41,2017-03-19,2.06,18134.67,154.68,1066.04,0.0,16913.95,15509.92,1404.03,0.0,organic,2017,Boston +42,2017-03-12,2.09,18294.75,138.51,1200.03,0.0,16956.21,15584.72,1371.49,0.0,organic,2017,Boston +43,2017-03-05,1.72,19270.33,100.43,1266.07,0.0,17903.83,17340.58,563.25,0.0,organic,2017,Boston +44,2017-02-26,2.01,14572.36,13.18,1274.78,0.0,13284.4,12821.72,462.68,0.0,organic,2017,Boston +45,2017-02-19,2.06,16177.04,13.98,1014.64,0.0,15148.42,12903.42,2245.0,0.0,organic,2017,Boston +46,2017-02-12,1.95,17727.36,13.45,1111.3,13.52,16589.09,15419.88,1169.21,0.0,organic,2017,Boston +47,2017-02-05,1.63,22249.09,7.16,2644.02,38.21,19559.7,16906.1,2653.6,0.0,organic,2017,Boston +48,2017-01-29,1.9,15270.59,8.37,1127.0,0.0,14135.22,13878.77,256.45,0.0,organic,2017,Boston +49,2017-01-22,1.93,15417.31,9.6,969.46,0.0,14438.25,14438.25,0.0,0.0,organic,2017,Boston +50,2017-01-15,1.88,17012.28,12.3,1315.1,0.0,15684.88,15554.34,130.54,0.0,organic,2017,Boston +51,2017-01-08,1.95,17555.2,8.39,1134.04,0.0,16412.77,15137.23,1275.54,0.0,organic,2017,Boston +52,2017-01-01,2.06,13438.22,14.8,2181.53,0.0,11241.89,10636.25,605.64,0.0,organic,2017,Boston +0,2017-12-31,1.15,10568.46,176.5,82.85,0.0,10309.11,5004.55,5304.56,0.0,organic,2017,BuffaloRochester +1,2017-12-24,1.15,11025.86,233.3,65.48,0.0,10727.08,9439.56,1287.52,0.0,organic,2017,BuffaloRochester +2,2017-12-17,1.15,10784.73,196.04,131.48,0.0,10457.21,3560.34,6896.87,0.0,organic,2017,BuffaloRochester +3,2017-12-10,1.14,11143.68,198.52,70.96,0.0,10874.2,3941.51,6932.69,0.0,organic,2017,BuffaloRochester +4,2017-12-03,1.18,7575.49,101.72,39.09,0.0,7434.68,3655.67,3779.01,0.0,organic,2017,BuffaloRochester +5,2017-11-26,1.26,5280.35,216.85,57.94,0.0,5005.56,4509.48,496.08,0.0,organic,2017,BuffaloRochester +6,2017-11-19,1.42,7519.34,256.84,68.85,0.0,7193.65,3938.44,3255.21,0.0,organic,2017,BuffaloRochester +7,2017-11-12,1.39,12395.75,250.66,105.43,0.0,12039.66,6031.35,6008.31,0.0,organic,2017,BuffaloRochester +8,2017-11-05,1.36,12253.81,175.18,92.84,0.0,11985.79,10351.66,1634.13,0.0,organic,2017,BuffaloRochester +9,2017-10-29,1.35,12759.88,216.82,114.69,0.0,12428.37,12428.37,0.0,0.0,organic,2017,BuffaloRochester +10,2017-10-22,1.35,10115.95,231.39,135.86,0.0,9748.7,9744.26,4.44,0.0,organic,2017,BuffaloRochester +11,2017-10-15,1.33,12929.64,158.88,153.55,0.0,12617.21,12617.21,0.0,0.0,organic,2017,BuffaloRochester +12,2017-10-08,1.34,15466.92,324.2,148.9,0.0,14993.82,14993.82,0.0,0.0,organic,2017,BuffaloRochester +13,2017-10-01,1.39,11486.81,277.8,111.48,0.0,11097.53,11092.17,5.36,0.0,organic,2017,BuffaloRochester +14,2017-09-24,1.4,10081.25,277.5,133.65,0.0,9670.1,9642.01,28.09,0.0,organic,2017,BuffaloRochester +15,2017-09-17,1.47,7698.45,274.35,139.9,0.0,7284.2,6095.36,1188.84,0.0,organic,2017,BuffaloRochester +16,2017-09-10,1.8,4946.72,408.05,156.35,0.0,4382.32,1514.57,2867.75,0.0,organic,2017,BuffaloRochester +17,2017-09-03,1.41,11172.15,367.3,160.21,0.0,10644.64,7804.08,2840.56,0.0,organic,2017,BuffaloRochester +18,2017-08-27,1.37,11184.42,193.45,181.75,0.0,10809.22,9102.12,1707.1,0.0,organic,2017,BuffaloRochester +19,2017-08-20,1.46,8235.56,74.71,227.91,0.0,7932.94,2469.77,5463.17,0.0,organic,2017,BuffaloRochester +20,2017-08-13,1.27,10212.38,4.73,416.02,0.0,9791.63,5319.01,4472.62,0.0,organic,2017,BuffaloRochester +21,2017-08-06,1.34,12705.61,0.0,311.73,0.0,12393.88,3181.99,9211.89,0.0,organic,2017,BuffaloRochester +22,2017-07-30,1.44,10708.99,9.99,451.17,0.0,10247.83,1433.47,8814.36,0.0,organic,2017,BuffaloRochester +23,2017-07-23,1.28,14116.97,5.9,427.39,0.0,13683.68,4223.34,9460.34,0.0,organic,2017,BuffaloRochester +24,2017-07-16,1.26,12764.97,4.78,446.42,0.0,12313.77,7111.69,5202.08,0.0,organic,2017,BuffaloRochester +25,2017-07-09,2.55,5369.52,5.98,393.2,0.0,4970.34,731.11,4239.23,0.0,organic,2017,BuffaloRochester +26,2017-07-02,2.57,4270.32,4.02,473.35,0.0,3792.95,486.66,3306.29,0.0,organic,2017,BuffaloRochester +27,2017-06-25,2.57,5228.11,15.56,439.88,0.0,4772.67,636.66,4136.01,0.0,organic,2017,BuffaloRochester +28,2017-06-18,2.54,5445.57,28.33,544.31,0.0,4872.93,830.0,4042.93,0.0,organic,2017,BuffaloRochester +29,2017-06-11,2.46,5165.43,4.78,644.84,0.0,4515.81,1073.33,3442.48,0.0,organic,2017,BuffaloRochester +30,2017-06-04,2.51,5425.35,3.59,491.51,0.0,4930.25,948.34,3981.91,0.0,organic,2017,BuffaloRochester +31,2017-05-28,2.19,5712.13,0.0,711.28,0.0,5000.85,980.0,4020.85,0.0,organic,2017,BuffaloRochester +32,2017-05-21,2.16,4934.21,7.22,843.74,0.0,4083.25,1050.0,3033.25,0.0,organic,2017,BuffaloRochester +33,2017-05-14,2.16,5945.03,0.0,548.13,0.0,5396.9,1203.33,4193.57,0.0,organic,2017,BuffaloRochester +34,2017-05-07,2.19,7609.96,0.0,650.65,0.0,6959.31,1219.99,5739.32,0.0,organic,2017,BuffaloRochester +35,2017-04-30,2.16,3630.0,2.43,508.2,0.0,3119.37,900.0,2219.37,0.0,organic,2017,BuffaloRochester +36,2017-04-23,2.14,5924.92,7.26,384.65,0.0,5533.01,1181.11,4351.9,0.0,organic,2017,BuffaloRochester +37,2017-04-16,2.14,5987.27,8.55,525.64,0.0,5453.08,1313.33,4139.75,0.0,organic,2017,BuffaloRochester +38,2017-04-09,2.17,5013.5,0.0,547.15,0.0,4466.35,1003.33,3463.02,0.0,organic,2017,BuffaloRochester +39,2017-04-02,2.09,3337.9,1.22,923.99,0.0,2412.69,1180.0,1232.69,0.0,organic,2017,BuffaloRochester +40,2017-03-26,2.16,4486.25,0.0,451.29,0.0,4034.96,738.89,3296.07,0.0,organic,2017,BuffaloRochester +41,2017-03-19,2.05,3614.79,2.44,292.72,0.0,3319.63,973.33,2346.3,0.0,organic,2017,BuffaloRochester +42,2017-03-12,2.05,2414.64,0.0,286.14,0.0,2128.5,636.67,1491.83,0.0,organic,2017,BuffaloRochester +43,2017-03-05,1.89,3184.47,9.77,1404.91,0.0,1769.79,910.0,859.79,0.0,organic,2017,BuffaloRochester +44,2017-02-26,1.93,2099.67,4.86,606.04,0.0,1488.77,966.18,522.59,0.0,organic,2017,BuffaloRochester +45,2017-02-19,1.98,4832.94,0.0,1112.32,0.0,3720.62,1261.01,2459.61,0.0,organic,2017,BuffaloRochester +46,2017-02-12,1.81,3594.59,0.0,369.57,0.0,3225.02,1950.9,1274.12,0.0,organic,2017,BuffaloRochester +47,2017-02-05,1.81,5750.39,6.11,258.24,0.0,5486.04,3200.6,2285.44,0.0,organic,2017,BuffaloRochester +48,2017-01-29,1.61,2348.77,2.44,347.33,0.0,1999.0,1829.7,169.3,0.0,organic,2017,BuffaloRochester +49,2017-01-22,1.5,2590.39,8.54,139.02,0.0,2442.83,2440.12,2.71,0.0,organic,2017,BuffaloRochester +50,2017-01-15,1.58,4158.47,7.31,184.83,0.0,3966.33,3416.66,549.67,0.0,organic,2017,BuffaloRochester +51,2017-01-08,1.73,3247.37,13.4,175.02,0.0,3058.95,2000.75,1058.2,0.0,organic,2017,BuffaloRochester +52,2017-01-01,1.64,3425.49,8.52,320.56,0.0,3096.41,2585.1,511.31,0.0,organic,2017,BuffaloRochester +0,2017-12-31,1.71,160039.02,46373.36,55040.01,0.0,58625.65,58526.97,98.68,0.0,organic,2017,California +1,2017-12-24,1.82,138506.44,25276.34,58176.83,0.0,55053.27,54984.78,68.49,0.0,organic,2017,California +2,2017-12-17,1.75,126089.01,24044.07,55284.97,0.0,46759.97,46698.32,61.65,0.0,organic,2017,California +3,2017-12-10,1.89,125853.18,31270.64,46280.63,0.0,48301.91,48263.46,38.45,0.0,organic,2017,California +4,2017-12-03,1.81,125973.2,23983.71,47847.46,0.0,54142.03,54089.5,52.53,0.0,organic,2017,California +5,2017-11-26,2.0,115472.08,23310.44,47380.19,0.0,44781.45,44756.79,24.66,0.0,organic,2017,California +6,2017-11-19,1.98,122170.14,25968.52,47146.26,0.0,49055.36,49022.35,33.01,0.0,organic,2017,California +7,2017-11-12,1.99,122017.93,29124.07,43952.88,1.59,48939.39,48885.5,53.89,0.0,organic,2017,California +8,2017-11-05,1.76,145735.09,27876.4,67331.86,0.0,50526.83,50478.71,48.12,0.0,organic,2017,California +9,2017-10-29,2.01,129602.47,29243.35,48086.52,0.0,52272.6,52247.85,24.75,0.0,organic,2017,California +10,2017-10-22,2.0,132184.44,27492.71,48684.87,0.0,56006.86,55961.39,45.47,0.0,organic,2017,California +11,2017-10-15,2.1,115255.48,25513.54,44390.25,0.0,45351.69,45271.06,80.63,0.0,organic,2017,California +12,2017-10-08,2.17,124505.87,26222.41,53539.49,0.0,44743.97,44692.13,51.84,0.0,organic,2017,California +13,2017-10-01,2.08,132771.77,31036.76,59948.6,0.0,41786.41,41755.45,30.96,0.0,organic,2017,California +14,2017-09-24,2.05,138458.82,34599.22,63107.77,1.57,40750.26,40700.41,49.85,0.0,organic,2017,California +15,2017-09-17,2.18,152064.59,48806.34,66114.77,0.0,37143.48,37121.28,22.2,0.0,organic,2017,California +16,2017-09-10,2.2,140337.35,40795.15,62854.16,0.0,36688.04,36679.32,8.72,0.0,organic,2017,California +17,2017-09-03,2.09,142391.81,33578.96,64298.99,0.0,44513.86,44484.97,28.89,0.0,organic,2017,California +18,2017-08-27,2.54,121293.43,31149.69,48281.23,0.0,41862.51,41815.14,47.37,0.0,organic,2017,California +19,2017-08-20,2.37,140365.99,28993.37,44771.32,1.57,66599.73,66546.4,53.33,0.0,organic,2017,California +20,2017-08-13,2.21,139016.53,27834.92,44902.56,0.0,66279.05,66110.1,168.95,0.0,organic,2017,California +21,2017-08-06,2.18,118098.82,18668.32,42686.77,0.0,56743.73,55680.44,1063.29,0.0,organic,2017,California +22,2017-07-30,2.14,113903.29,15243.52,40785.21,0.0,57874.56,57767.34,107.22,0.0,organic,2017,California +23,2017-07-23,2.17,128480.81,20884.31,52053.33,4.67,55538.5,55471.46,67.04,0.0,organic,2017,California +24,2017-07-16,2.14,127255.55,18861.09,52718.44,9.36,55666.66,55588.67,77.99,0.0,organic,2017,California +25,2017-07-09,1.62,169101.22,18593.36,54586.32,4.68,95916.86,95826.72,90.14,0.0,organic,2017,California +26,2017-07-02,1.73,163970.9,20969.94,58901.69,9.35,84089.92,83873.31,216.61,0.0,organic,2017,California +27,2017-06-25,1.66,167931.62,23367.89,53252.13,0.0,91311.6,89270.67,2040.93,0.0,organic,2017,California +28,2017-06-18,1.78,181725.85,32417.62,60616.15,0.0,88692.08,82117.33,6574.75,0.0,organic,2017,California +29,2017-06-11,1.79,179141.21,32283.4,64309.03,6.18,82542.6,82388.73,153.87,0.0,organic,2017,California +30,2017-06-04,1.64,206419.24,31578.61,80018.8,12.42,94809.41,94661.56,147.85,0.0,organic,2017,California +31,2017-05-28,1.76,197588.64,31705.67,68967.28,12.52,96903.17,96713.71,189.46,0.0,organic,2017,California +32,2017-05-21,1.78,183083.69,28908.03,67866.42,7.8,86301.44,86037.36,264.08,0.0,organic,2017,California +33,2017-05-14,1.76,167406.47,29347.26,61178.45,7.82,76872.94,75429.92,1443.02,0.0,organic,2017,California +34,2017-05-07,1.59,211442.68,27955.44,80576.31,1.61,102909.32,102120.45,788.87,0.0,organic,2017,California +35,2017-04-30,1.61,199903.62,29040.03,67606.93,7.79,103248.87,99212.47,4036.4,0.0,organic,2017,California +36,2017-04-23,1.6,197179.76,28028.44,69003.58,4.7,100143.04,86815.31,13327.73,0.0,organic,2017,California +37,2017-04-16,1.67,194263.4,28602.39,68759.01,7.85,96894.15,87693.86,9200.29,0.0,organic,2017,California +38,2017-04-09,1.63,186112.1,30319.27,66541.46,7.86,89243.51,82024.66,7218.85,0.0,organic,2017,California +39,2017-04-02,1.64,191988.18,31381.85,69457.56,17.3,91131.47,87215.5,3915.97,0.0,organic,2017,California +40,2017-03-26,1.7,194052.77,34618.57,71542.71,7.86,87883.63,84717.09,3166.54,0.0,organic,2017,California +41,2017-03-19,1.57,209591.02,25435.01,81224.16,39.25,102892.6,81019.63,21872.97,0.0,organic,2017,California +42,2017-03-12,1.53,210400.75,26372.8,73288.71,9.46,110729.78,96032.09,14697.69,0.0,organic,2017,California +43,2017-03-05,1.45,220712.33,28613.88,65742.41,6.34,126349.7,89588.54,36761.16,0.0,organic,2017,California +44,2017-02-26,1.34,215699.08,26443.61,69371.98,3.16,119880.33,102260.68,17619.65,0.0,organic,2017,California +45,2017-02-19,1.5,183797.3,27932.48,71026.47,3.16,84835.19,83854.04,981.15,0.0,organic,2017,California +46,2017-02-12,1.54,151754.58,27367.52,55812.63,20.18,68554.25,66789.82,1764.43,0.0,organic,2017,California +47,2017-02-05,1.36,169739.8,37220.31,82017.4,9.46,50492.63,49406.12,1086.51,0.0,organic,2017,California +48,2017-01-29,1.44,165225.54,30958.58,65973.06,23.2,68270.7,52928.72,15341.98,0.0,organic,2017,California +49,2017-01-22,1.53,136422.97,28034.89,54342.56,6.18,54039.34,49913.43,4125.91,0.0,organic,2017,California +50,2017-01-15,1.66,142739.21,27811.48,58090.25,3.08,56834.4,55364.11,1470.29,0.0,organic,2017,California +51,2017-01-08,1.5,177777.4,33563.39,69671.75,4.62,74537.64,69842.47,4695.17,0.0,organic,2017,California +52,2017-01-01,1.46,164137.04,31267.65,65430.27,6.16,67432.96,50963.98,16468.98,0.0,organic,2017,California +0,2017-12-31,1.71,11939.07,34.71,5197.49,198.71,6508.16,6416.36,91.8,0.0,organic,2017,Charlotte +1,2017-12-24,1.83,9064.06,6.59,3987.42,214.4,4855.65,4855.65,0.0,0.0,organic,2017,Charlotte +2,2017-12-17,1.86,9678.6,1.2,4729.56,227.56,4720.28,4720.28,0.0,0.0,organic,2017,Charlotte +3,2017-12-10,1.91,10004.14,4.18,4292.94,202.41,5504.61,5497.94,6.67,0.0,organic,2017,Charlotte +4,2017-12-03,1.9,9558.48,20.01,4864.47,210.73,4463.27,4270.85,192.42,0.0,organic,2017,Charlotte +5,2017-11-26,2.11,8485.97,21.02,3663.49,157.71,4643.75,4345.21,298.54,0.0,organic,2017,Charlotte +6,2017-11-19,2.13,7918.52,7.04,3853.79,131.39,3926.3,3802.47,123.83,0.0,organic,2017,Charlotte +7,2017-11-12,2.15,9048.5,16.49,3865.41,176.72,4989.88,4734.38,255.5,0.0,organic,2017,Charlotte +8,2017-11-05,2.22,9818.51,31.39,4550.54,194.47,5042.11,4819.49,222.62,0.0,organic,2017,Charlotte +9,2017-10-29,2.02,11245.23,43.32,3776.83,160.97,7264.11,7117.43,146.68,0.0,organic,2017,Charlotte +10,2017-10-22,2.08,11569.34,36.2,4320.47,181.26,7031.41,6886.3,145.11,0.0,organic,2017,Charlotte +11,2017-10-15,2.38,10195.59,64.0,3476.86,161.46,6493.27,6320.51,172.76,0.0,organic,2017,Charlotte +12,2017-10-08,2.67,9398.69,30.6,3911.27,130.82,5326.0,5147.98,178.02,0.0,organic,2017,Charlotte +13,2017-10-01,2.82,8276.33,12.62,4182.38,174.37,3906.96,3656.44,250.52,0.0,organic,2017,Charlotte +14,2017-09-24,2.55,10375.19,22.31,4284.88,118.25,5949.75,5560.32,389.43,0.0,organic,2017,Charlotte +15,2017-09-17,2.77,8821.08,22.96,4305.79,157.1,4335.23,4168.73,166.5,0.0,organic,2017,Charlotte +16,2017-09-10,2.8,10286.63,68.51,4094.41,222.11,5901.6,5892.22,9.38,0.0,organic,2017,Charlotte +17,2017-09-03,2.82,10311.34,17.76,4696.17,241.64,5355.77,5203.28,152.49,0.0,organic,2017,Charlotte +18,2017-08-27,2.83,9801.89,66.38,4585.79,175.49,4974.23,4970.9,3.33,0.0,organic,2017,Charlotte +19,2017-08-20,2.48,10482.69,92.36,4682.08,200.75,5507.5,5500.83,6.67,0.0,organic,2017,Charlotte +20,2017-08-13,2.35,10438.1,33.0,4739.09,242.97,5423.04,5418.6,4.44,0.0,organic,2017,Charlotte +21,2017-08-06,2.36,10271.22,28.61,4983.56,251.04,5008.01,5008.01,0.0,0.0,organic,2017,Charlotte +22,2017-07-30,2.07,8475.83,26.63,5054.68,322.23,3072.29,3072.29,0.0,0.0,organic,2017,Charlotte +23,2017-07-23,2.0,9135.63,22.63,5297.61,390.71,3424.68,3424.68,0.0,0.0,organic,2017,Charlotte +24,2017-07-16,1.99,9447.15,12.59,5361.39,376.53,3696.64,3693.31,3.33,0.0,organic,2017,Charlotte +25,2017-07-09,2.06,8788.78,5.97,5370.27,348.47,3064.07,3064.07,0.0,0.0,organic,2017,Charlotte +26,2017-07-02,2.09,8194.26,46.21,5110.55,372.35,2665.15,2660.71,4.44,0.0,organic,2017,Charlotte +27,2017-06-25,1.99,9404.14,31.85,5152.64,283.56,3936.09,3926.09,10.0,0.0,organic,2017,Charlotte +28,2017-06-18,2.03,8381.65,79.72,4880.33,337.19,3084.41,3081.08,3.33,0.0,organic,2017,Charlotte +29,2017-06-11,2.15,9586.49,285.37,4582.85,302.45,4415.82,4415.82,0.0,0.0,organic,2017,Charlotte +30,2017-06-04,2.47,7061.26,295.98,4783.78,342.96,1638.54,1638.54,0.0,0.0,organic,2017,Charlotte +31,2017-05-28,2.5,8254.68,313.55,5326.85,398.1,2216.18,1790.08,426.1,0.0,organic,2017,Charlotte +32,2017-05-21,2.48,7285.09,256.65,4833.23,438.64,1756.57,1582.88,173.69,0.0,organic,2017,Charlotte +33,2017-05-14,2.21,9005.08,420.54,6462.38,585.26,1536.9,1270.05,266.85,0.0,organic,2017,Charlotte +34,2017-05-07,2.31,8083.68,146.19,5186.8,414.39,2336.3,1777.58,558.72,0.0,organic,2017,Charlotte +35,2017-04-30,2.53,7230.2,290.78,4784.56,413.52,1741.34,1614.86,126.48,0.0,organic,2017,Charlotte +36,2017-04-23,2.58,7040.71,280.54,4591.39,403.0,1765.78,1765.78,0.0,0.0,organic,2017,Charlotte +37,2017-04-16,2.05,8797.77,300.02,6234.75,655.14,1607.86,1600.21,7.65,0.0,organic,2017,Charlotte +38,2017-04-09,2.02,8814.73,247.84,5759.67,705.1,2102.12,1909.12,193.0,0.0,organic,2017,Charlotte +39,2017-04-02,1.95,10320.1,277.75,6849.46,639.44,2553.45,1828.88,724.57,0.0,organic,2017,Charlotte +40,2017-03-26,2.01,8724.0,276.46,5908.44,559.41,1979.69,1581.58,398.11,0.0,organic,2017,Charlotte +41,2017-03-19,1.96,6033.09,290.05,4578.97,555.66,608.41,270.25,338.16,0.0,organic,2017,Charlotte +42,2017-03-12,1.86,7142.45,226.55,4485.51,589.46,1840.93,1840.93,0.0,0.0,organic,2017,Charlotte +43,2017-03-05,1.78,6959.35,330.49,3724.34,436.66,2467.86,2274.31,193.55,0.0,organic,2017,Charlotte +44,2017-02-26,1.7,8500.37,220.32,3918.45,541.98,3819.62,3466.92,352.7,0.0,organic,2017,Charlotte +45,2017-02-19,1.67,9418.55,299.88,4076.97,598.59,4443.11,4295.31,147.8,0.0,organic,2017,Charlotte +46,2017-02-12,1.63,9089.66,148.37,4040.19,418.86,4482.24,4319.92,162.32,0.0,organic,2017,Charlotte +47,2017-02-05,1.62,8473.46,140.61,3540.95,461.31,4330.59,4075.6,254.99,0.0,organic,2017,Charlotte +48,2017-01-29,1.5,10053.43,131.99,4705.7,520.72,4695.02,4139.08,555.94,0.0,organic,2017,Charlotte +49,2017-01-22,1.48,8443.85,92.31,3486.55,448.82,4416.17,3971.5,444.67,0.0,organic,2017,Charlotte +50,2017-01-15,1.5,10672.07,148.64,4643.38,570.26,5309.79,4702.52,607.27,0.0,organic,2017,Charlotte +51,2017-01-08,1.49,11737.62,235.17,4456.81,620.22,6425.42,5971.02,454.4,0.0,organic,2017,Charlotte +52,2017-01-01,1.7,7225.07,120.83,3134.68,489.12,3480.44,3126.49,353.95,0.0,organic,2017,Charlotte +0,2017-12-31,1.79,26040.03,142.0,16241.0,0.0,9657.03,9650.37,6.66,0.0,organic,2017,Chicago +1,2017-12-24,1.81,32444.19,324.23,21629.94,0.0,10490.02,10483.35,6.67,0.0,organic,2017,Chicago +2,2017-12-17,1.39,44435.16,946.46,21147.93,0.0,22340.77,22340.77,0.0,0.0,organic,2017,Chicago +3,2017-12-10,1.65,40734.03,180.13,30865.75,0.0,9688.15,9681.49,6.66,0.0,organic,2017,Chicago +4,2017-12-03,1.75,32233.21,21.79,24946.69,0.0,7264.73,7209.18,55.55,0.0,organic,2017,Chicago +5,2017-11-26,1.73,28513.37,35.72,19019.1,0.0,9458.55,9427.44,31.11,0.0,organic,2017,Chicago +6,2017-11-19,1.79,27898.67,29.29,20559.98,0.0,7309.4,7291.62,17.78,0.0,organic,2017,Chicago +7,2017-11-12,2.06,32924.34,24.78,25147.1,0.0,7752.46,7733.57,18.89,0.0,organic,2017,Chicago +8,2017-11-05,1.95,41108.47,24.68,31160.28,0.0,9923.51,9915.74,7.77,0.0,organic,2017,Chicago +9,2017-10-29,2.06,35333.89,29.29,28053.8,0.0,7250.8,7239.69,11.11,0.0,organic,2017,Chicago +10,2017-10-22,2.1,33775.92,38.23,23237.19,0.0,10500.5,10491.61,8.89,0.0,organic,2017,Chicago +11,2017-10-15,1.9,42271.67,24.19,30172.08,0.0,12075.4,12070.96,4.44,0.0,organic,2017,Chicago +12,2017-10-08,1.8,44054.7,50.6,31925.41,0.0,12078.69,12070.92,7.77,0.0,organic,2017,Chicago +13,2017-10-01,1.84,31903.97,61.05,25186.76,0.0,6656.16,6656.16,0.0,0.0,organic,2017,Chicago +14,2017-09-24,1.92,33346.53,110.63,25900.41,0.0,7335.49,7331.05,4.44,0.0,organic,2017,Chicago +15,2017-09-17,2.13,28047.95,123.84,20717.47,0.0,7206.64,7206.64,0.0,0.0,organic,2017,Chicago +16,2017-09-10,1.96,26481.45,245.66,17923.99,0.0,8311.8,8311.8,0.0,0.0,organic,2017,Chicago +17,2017-09-03,2.05,20131.27,107.44,11896.8,0.0,8127.03,8127.03,0.0,0.0,organic,2017,Chicago +18,2017-08-27,2.11,26530.32,91.53,18593.95,0.0,7844.84,7844.84,0.0,0.0,organic,2017,Chicago +19,2017-08-20,1.71,13896.65,51.92,5013.57,0.0,8831.16,8824.49,6.67,0.0,organic,2017,Chicago +20,2017-08-13,1.69,17452.06,65.48,6949.79,0.0,10436.79,10433.46,3.33,0.0,organic,2017,Chicago +21,2017-08-06,1.74,13741.86,38.53,7883.0,0.0,5820.33,5820.33,0.0,0.0,organic,2017,Chicago +22,2017-07-30,1.9,39043.11,93.55,31700.84,0.0,7248.72,7248.72,0.0,0.0,organic,2017,Chicago +23,2017-07-23,1.88,36591.27,87.93,31152.43,0.0,5350.91,5350.91,0.0,0.0,organic,2017,Chicago +24,2017-07-16,1.83,43700.57,84.45,35396.03,0.0,8192.12,8192.12,0.0,0.0,organic,2017,Chicago +25,2017-07-09,1.99,34529.39,101.56,33439.5,0.0,988.33,988.33,0.0,0.0,organic,2017,Chicago +26,2017-07-02,1.98,34696.48,88.99,33041.8,0.0,1565.69,1565.69,0.0,0.0,organic,2017,Chicago +27,2017-06-25,1.98,34223.93,151.52,33077.68,0.0,994.73,991.4,3.33,0.0,organic,2017,Chicago +28,2017-06-18,1.98,36015.84,47.8,34824.05,0.0,1143.99,1143.99,0.0,0.0,organic,2017,Chicago +29,2017-06-11,1.96,44859.81,68.64,42911.11,0.0,1880.06,1880.06,0.0,0.0,organic,2017,Chicago +30,2017-06-04,1.94,46993.63,41.82,43896.68,0.0,3055.13,3050.69,4.44,0.0,organic,2017,Chicago +31,2017-05-28,1.93,48877.42,61.8,43856.32,0.0,4959.3,4959.3,0.0,0.0,organic,2017,Chicago +32,2017-05-21,1.94,44591.86,34.84,40715.22,0.0,3841.8,3841.8,0.0,0.0,organic,2017,Chicago +33,2017-05-14,1.93,40490.25,71.71,36510.68,0.0,3907.86,3907.86,0.0,0.0,organic,2017,Chicago +34,2017-05-07,1.95,42798.67,42.84,39979.02,0.0,2776.81,2776.81,0.0,0.0,organic,2017,Chicago +35,2017-04-30,1.97,46274.23,39.74,44553.79,0.0,1680.7,1680.7,0.0,0.0,organic,2017,Chicago +36,2017-04-23,1.67,50574.88,144.02,46354.05,0.0,4076.81,4072.37,4.44,0.0,organic,2017,Chicago +37,2017-04-16,1.74,68194.97,189.55,63660.83,0.0,4344.59,4344.59,0.0,0.0,organic,2017,Chicago +38,2017-04-09,1.95,57024.53,298.8,53040.02,0.0,3685.71,3685.71,0.0,0.0,organic,2017,Chicago +39,2017-04-02,1.94,56046.88,538.54,51259.58,0.0,4248.76,4248.76,0.0,0.0,organic,2017,Chicago +40,2017-03-26,1.67,48330.46,1252.26,43428.38,0.0,3649.82,3645.38,4.44,0.0,organic,2017,Chicago +41,2017-03-19,1.68,45989.07,1720.14,40737.11,0.0,3531.82,3527.38,4.44,0.0,organic,2017,Chicago +42,2017-03-12,1.93,33185.31,262.35,29577.44,0.0,3345.52,3345.52,0.0,0.0,organic,2017,Chicago +43,2017-03-05,1.64,47884.05,444.51,42428.17,0.0,5011.37,5011.37,0.0,0.0,organic,2017,Chicago +44,2017-02-26,1.69,46602.16,799.29,37768.66,0.0,8034.21,8029.77,4.44,0.0,organic,2017,Chicago +45,2017-02-19,1.6,36645.7,324.96,28155.69,0.0,8165.05,8165.05,0.0,0.0,organic,2017,Chicago +46,2017-02-12,1.53,35870.49,49.0,32792.61,0.0,3028.88,3028.88,0.0,0.0,organic,2017,Chicago +47,2017-02-05,1.49,42439.11,82.09,39288.55,0.0,3068.47,3068.47,0.0,0.0,organic,2017,Chicago +48,2017-01-29,1.51,44735.4,87.33,40554.73,0.0,4093.34,4088.9,4.44,0.0,organic,2017,Chicago +49,2017-01-22,1.51,47561.03,52.69,43587.09,0.0,3921.25,3921.25,0.0,0.0,organic,2017,Chicago +50,2017-01-15,1.85,38542.5,78.31,34378.08,0.0,4086.11,4086.11,0.0,0.0,organic,2017,Chicago +51,2017-01-08,1.81,28099.34,70.76,23893.31,0.0,4135.27,4135.27,0.0,0.0,organic,2017,Chicago +52,2017-01-01,1.34,36915.87,36.67,34076.57,0.0,2802.63,2802.63,0.0,0.0,organic,2017,Chicago +0,2017-12-31,1.36,14495.2,483.32,4217.86,0.0,9794.02,7802.06,1991.96,0.0,organic,2017,CincinnatiDayton +1,2017-12-24,1.73,13218.13,444.01,5455.3,0.0,7318.82,3411.75,3907.07,0.0,organic,2017,CincinnatiDayton +2,2017-12-17,1.73,9465.99,371.48,4597.17,0.0,4497.34,2324.92,2172.42,0.0,organic,2017,CincinnatiDayton +3,2017-12-10,1.69,8238.78,253.36,4171.8,0.0,3813.62,2864.13,949.49,0.0,organic,2017,CincinnatiDayton +4,2017-12-03,1.72,6856.14,184.1,3716.8,0.0,2955.24,2570.98,384.26,0.0,organic,2017,CincinnatiDayton +5,2017-11-26,1.69,8466.46,133.12,2991.52,0.0,5341.82,3958.95,1382.87,0.0,organic,2017,CincinnatiDayton +6,2017-11-19,1.66,7514.34,293.63,3450.25,0.0,3770.46,3342.66,427.8,0.0,organic,2017,CincinnatiDayton +7,2017-11-12,1.67,12271.52,203.73,3368.13,0.0,8699.66,5085.49,3614.17,0.0,organic,2017,CincinnatiDayton +8,2017-11-05,1.92,13199.3,194.06,2940.82,0.0,10064.42,3749.04,6315.38,0.0,organic,2017,CincinnatiDayton +9,2017-10-29,1.87,12170.52,171.76,3285.31,0.0,8713.45,3873.14,4840.31,0.0,organic,2017,CincinnatiDayton +10,2017-10-22,1.86,14482.57,265.15,3671.03,0.0,10546.39,5671.95,4874.44,0.0,organic,2017,CincinnatiDayton +11,2017-10-15,1.81,10382.51,258.44,4239.94,0.0,5884.13,5540.93,343.2,0.0,organic,2017,CincinnatiDayton +12,2017-10-08,1.94,8459.92,246.84,4265.5,0.0,3947.58,3897.2,50.38,0.0,organic,2017,CincinnatiDayton +13,2017-10-01,2.01,12767.55,398.22,4418.33,0.0,7940.18,6126.77,1813.41,0.0,organic,2017,CincinnatiDayton +14,2017-09-24,2.2,16058.2,351.12,3638.62,0.0,12068.46,2048.66,10019.8,0.0,organic,2017,CincinnatiDayton +15,2017-09-17,2.14,11956.98,294.89,3982.86,0.0,7679.23,2517.66,5161.57,0.0,organic,2017,CincinnatiDayton +16,2017-09-10,2.15,9883.59,313.75,4230.58,0.0,5339.26,2166.91,3172.35,0.0,organic,2017,CincinnatiDayton +17,2017-09-03,2.17,13962.6,341.19,3270.17,0.0,10351.24,2220.07,8131.17,0.0,organic,2017,CincinnatiDayton +18,2017-08-27,1.95,11994.71,270.33,3292.5,0.0,8389.08,2503.08,5886.0,0.0,organic,2017,CincinnatiDayton +19,2017-08-20,1.92,8698.91,249.33,3687.59,0.0,4705.0,1706.12,2998.88,0.0,organic,2017,CincinnatiDayton +20,2017-08-13,1.97,7797.08,219.37,4075.78,0.0,3432.91,2701.68,731.23,0.0,organic,2017,CincinnatiDayton +21,2017-08-06,2.06,10853.28,221.48,4752.99,0.0,5808.95,3807.57,2001.38,0.0,organic,2017,CincinnatiDayton +22,2017-07-30,1.85,14874.38,286.35,6566.23,0.0,7882.3,2278.78,5603.52,0.0,organic,2017,CincinnatiDayton +23,2017-07-23,1.82,26748.23,364.87,11735.45,0.0,14543.55,1647.58,12895.97,0.0,organic,2017,CincinnatiDayton +24,2017-07-16,1.82,22784.26,201.83,5849.35,0.0,16507.04,2066.65,14440.39,0.0,organic,2017,CincinnatiDayton +25,2017-07-09,1.29,21313.42,172.45,4678.2,0.0,16462.77,250.82,16211.95,0.0,organic,2017,CincinnatiDayton +26,2017-07-02,1.28,27470.57,201.06,4916.62,0.0,22352.89,718.47,21634.42,0.0,organic,2017,CincinnatiDayton +27,2017-06-25,1.46,18586.45,235.62,4991.16,0.0,13359.67,467.15,12892.52,0.0,organic,2017,CincinnatiDayton +28,2017-06-18,1.55,18169.69,342.79,8331.42,0.0,9495.48,182.36,9313.12,0.0,organic,2017,CincinnatiDayton +29,2017-06-11,0.77,42520.88,297.52,5882.5,0.0,36340.86,495.81,35845.05,0.0,organic,2017,CincinnatiDayton +30,2017-06-04,1.65,12883.22,307.24,4899.81,0.0,7676.17,829.24,6846.93,0.0,organic,2017,CincinnatiDayton +31,2017-05-28,1.78,12161.37,325.7,4912.89,0.0,6922.78,975.95,5946.83,0.0,organic,2017,CincinnatiDayton +32,2017-05-21,1.66,14138.36,257.41,5819.7,0.0,8061.25,1103.03,6958.22,0.0,organic,2017,CincinnatiDayton +33,2017-05-14,1.41,22296.61,239.72,5966.79,0.0,16090.1,802.37,15287.73,0.0,organic,2017,CincinnatiDayton +34,2017-05-07,1.48,19989.19,287.34,7274.84,0.0,12427.01,925.23,11501.78,0.0,organic,2017,CincinnatiDayton +35,2017-04-30,1.66,13924.31,243.48,4877.17,0.0,8803.66,882.46,7921.2,0.0,organic,2017,CincinnatiDayton +36,2017-04-23,1.92,8616.1,195.2,4322.55,0.0,4098.35,1158.88,2939.47,0.0,organic,2017,CincinnatiDayton +37,2017-04-16,0.98,19269.21,290.18,4390.45,0.0,14588.58,1115.74,13472.84,0.0,organic,2017,CincinnatiDayton +38,2017-04-09,0.86,24184.04,252.45,4493.92,0.0,19437.67,1003.96,18433.71,0.0,organic,2017,CincinnatiDayton +39,2017-04-02,0.83,25025.0,303.25,4768.12,0.0,19953.63,996.03,18957.6,0.0,organic,2017,CincinnatiDayton +40,2017-03-26,1.04,24050.02,244.52,4884.24,0.0,18921.26,958.19,17963.07,0.0,organic,2017,CincinnatiDayton +41,2017-03-19,1.68,9218.04,303.46,6026.24,0.0,2888.34,1116.44,1771.9,0.0,organic,2017,CincinnatiDayton +42,2017-03-12,0.64,29680.14,325.53,5300.47,0.0,24054.14,687.41,23366.73,0.0,organic,2017,CincinnatiDayton +43,2017-03-05,0.44,64057.04,223.84,4748.88,0.0,59084.32,638.68,58445.64,0.0,organic,2017,CincinnatiDayton +44,2017-02-26,0.49,44024.03,252.79,4472.68,0.0,39298.56,600.0,38698.56,0.0,organic,2017,CincinnatiDayton +45,2017-02-19,0.51,41987.86,225.44,5734.39,0.0,36028.03,473.98,35554.05,0.0,organic,2017,CincinnatiDayton +46,2017-02-12,0.64,26706.48,287.17,6528.34,0.0,19890.97,487.26,19403.71,0.0,organic,2017,CincinnatiDayton +47,2017-02-05,0.57,25068.02,198.33,4655.41,0.0,20214.28,458.06,19756.22,0.0,organic,2017,CincinnatiDayton +48,2017-01-29,0.8,15828.0,241.14,4263.69,0.0,11323.17,446.01,10877.16,0.0,organic,2017,CincinnatiDayton +49,2017-01-22,1.58,7209.5,235.68,4884.31,0.0,2089.51,694.68,1394.83,0.0,organic,2017,CincinnatiDayton +50,2017-01-15,1.88,6349.77,364.39,5229.29,0.0,756.09,715.87,40.22,0.0,organic,2017,CincinnatiDayton +51,2017-01-08,1.07,12346.01,323.43,6801.77,0.0,5220.81,654.36,4566.45,0.0,organic,2017,CincinnatiDayton +52,2017-01-01,1.23,10798.25,351.72,8558.19,0.0,1888.34,293.33,1595.01,0.0,organic,2017,CincinnatiDayton +0,2017-12-31,1.14,15852.37,446.28,1042.43,0.0,14363.66,13142.03,1221.63,0.0,organic,2017,Columbus +1,2017-12-24,1.54,7093.59,348.31,1173.86,0.0,5571.42,4651.63,919.79,0.0,organic,2017,Columbus +2,2017-12-17,1.56,6639.05,410.79,1349.75,1.15,4877.36,3876.26,1001.1,0.0,organic,2017,Columbus +3,2017-12-10,1.52,6603.57,423.48,1207.97,0.0,4972.12,4523.96,448.16,0.0,organic,2017,Columbus +4,2017-12-03,1.54,6026.57,412.51,1265.18,0.0,4348.88,4313.54,35.34,0.0,organic,2017,Columbus +5,2017-11-26,1.54,7737.55,427.63,1500.8,0.0,5809.12,5052.8,756.32,0.0,organic,2017,Columbus +6,2017-11-19,1.47,7723.38,538.89,1545.36,0.0,5639.13,5289.74,349.39,0.0,organic,2017,Columbus +7,2017-11-12,1.53,8438.61,590.03,1463.98,0.0,6384.6,6057.45,327.15,0.0,organic,2017,Columbus +8,2017-11-05,1.67,7478.89,569.29,1069.47,0.0,5840.13,5688.86,151.27,0.0,organic,2017,Columbus +9,2017-10-29,1.73,9202.76,549.86,1472.16,0.0,7180.74,6422.28,758.46,0.0,organic,2017,Columbus +10,2017-10-22,1.68,12206.22,546.93,1829.34,0.0,9829.95,8496.54,1333.41,0.0,organic,2017,Columbus +11,2017-10-15,1.78,10715.93,583.8,1787.74,0.0,8344.39,7285.43,1058.96,0.0,organic,2017,Columbus +12,2017-10-08,1.89,9142.31,583.62,1941.13,0.0,6617.56,6597.37,20.19,0.0,organic,2017,Columbus +13,2017-10-01,1.91,9352.24,599.9,2055.8,0.0,6696.54,6061.17,635.37,0.0,organic,2017,Columbus +14,2017-09-24,2.22,10488.79,571.88,1881.72,0.0,8035.19,4142.07,3893.12,0.0,organic,2017,Columbus +15,2017-09-17,2.03,7548.1,655.57,1881.57,0.0,5010.96,4019.43,991.53,0.0,organic,2017,Columbus +16,2017-09-10,2.13,7365.42,647.46,2091.71,0.0,4626.25,3489.47,1136.78,0.0,organic,2017,Columbus +17,2017-09-03,2.1,9058.74,525.02,1736.52,0.0,6797.2,4338.58,2458.62,0.0,organic,2017,Columbus +18,2017-08-27,1.87,7110.89,547.67,1241.77,0.0,5321.45,4030.1,1291.35,0.0,organic,2017,Columbus +19,2017-08-20,1.8,7563.59,580.62,1815.88,0.0,5167.09,4049.02,1118.07,0.0,organic,2017,Columbus +20,2017-08-13,1.73,7525.56,745.58,2180.18,0.0,4599.8,4463.86,135.94,0.0,organic,2017,Columbus +21,2017-08-06,1.72,7587.69,559.74,1980.71,0.0,5047.24,4024.59,1022.65,0.0,organic,2017,Columbus +22,2017-07-30,1.61,9033.15,639.15,2112.71,0.0,6281.29,4054.92,2226.37,0.0,organic,2017,Columbus +23,2017-07-23,1.73,12071.52,506.35,3600.62,0.0,7964.55,2960.83,5003.72,0.0,organic,2017,Columbus +24,2017-07-16,1.69,10483.39,693.51,3253.63,0.0,6444.01,3221.18,3222.83,0.0,organic,2017,Columbus +25,2017-07-09,1.38,9167.98,584.28,2285.45,0.0,6298.25,1024.34,5273.91,0.0,organic,2017,Columbus +26,2017-07-02,1.46,8676.42,477.25,1907.85,0.0,6291.32,1828.76,4462.56,0.0,organic,2017,Columbus +27,2017-06-25,1.28,6043.34,327.31,1745.64,0.0,3970.39,418.74,3551.65,0.0,organic,2017,Columbus +28,2017-06-18,1.14,8654.94,463.9,2943.06,0.0,5247.98,784.38,4463.6,0.0,organic,2017,Columbus +29,2017-06-11,0.83,21264.93,596.81,3255.0,0.0,17413.12,1650.58,15762.54,0.0,organic,2017,Columbus +30,2017-06-04,1.44,10383.54,726.95,3262.43,0.0,6394.16,2168.35,4225.81,0.0,organic,2017,Columbus +31,2017-05-28,1.51,12422.96,644.63,3161.32,0.0,8617.01,2471.99,6145.02,0.0,organic,2017,Columbus +32,2017-05-21,1.44,9530.25,641.47,3255.48,0.0,5633.3,1630.95,4002.35,0.0,organic,2017,Columbus +33,2017-05-14,1.64,8117.63,665.81,3417.68,0.0,4034.14,2226.47,1807.67,0.0,organic,2017,Columbus +34,2017-05-07,1.61,9940.47,695.6,3430.4,0.0,5814.47,1994.78,3819.69,0.0,organic,2017,Columbus +35,2017-04-30,1.7,10632.86,784.09,3774.05,0.0,6074.72,2554.07,3520.65,0.0,organic,2017,Columbus +36,2017-04-23,1.63,7379.24,710.33,2797.09,0.0,3871.82,2811.5,1060.32,0.0,organic,2017,Columbus +37,2017-04-16,1.03,14081.94,763.69,2797.15,0.0,10521.1,2641.36,7879.74,0.0,organic,2017,Columbus +38,2017-04-09,0.97,13309.12,757.42,3086.88,0.0,9464.82,2634.32,6830.5,0.0,organic,2017,Columbus +39,2017-04-02,1.39,9701.51,801.09,3979.66,0.0,4920.76,2329.41,2591.35,0.0,organic,2017,Columbus +40,2017-03-26,0.72,22560.01,631.67,3717.06,0.0,18211.28,2514.95,15696.33,0.0,organic,2017,Columbus +41,2017-03-19,1.5,7892.34,695.09,3641.0,0.0,3556.25,2434.3,1121.95,0.0,organic,2017,Columbus +42,2017-03-12,0.83,17118.8,656.68,3678.24,0.0,12783.88,2148.56,10635.32,0.0,organic,2017,Columbus +43,2017-03-05,0.52,32113.68,702.06,3007.87,0.0,28403.75,1850.64,26553.11,0.0,organic,2017,Columbus +44,2017-02-26,0.66,19772.8,658.91,3386.42,0.0,15727.47,1483.15,14244.32,0.0,organic,2017,Columbus +45,2017-02-19,0.74,17517.85,682.11,3152.62,0.0,13683.12,1933.01,11750.11,0.0,organic,2017,Columbus +46,2017-02-12,1.0,10853.5,750.39,2489.67,0.0,7613.44,1835.85,5777.59,0.0,organic,2017,Columbus +47,2017-02-05,0.98,10382.58,688.17,2992.09,0.0,6702.32,1755.71,4946.61,0.0,organic,2017,Columbus +48,2017-01-29,1.49,6971.41,801.47,3370.23,0.0,2799.71,2039.28,760.43,0.0,organic,2017,Columbus +49,2017-01-22,0.94,11258.65,627.36,2305.21,0.0,8326.08,2082.68,6243.4,0.0,organic,2017,Columbus +50,2017-01-15,1.73,5148.98,626.06,2307.26,0.0,2215.66,2172.89,42.77,0.0,organic,2017,Columbus +51,2017-01-08,1.56,4991.69,579.67,2132.29,0.0,2279.73,2139.81,139.92,0.0,organic,2017,Columbus +52,2017-01-01,1.58,5948.66,772.98,2724.28,0.0,2451.4,2273.79,177.61,0.0,organic,2017,Columbus +0,2017-12-31,1.48,21181.05,3745.98,326.83,0.0,17108.24,15338.34,1769.9,0.0,organic,2017,DallasFtWorth +1,2017-12-24,1.44,24924.27,4617.3,479.07,0.0,19827.9,19024.19,803.71,0.0,organic,2017,DallasFtWorth +2,2017-12-17,1.41,20247.87,3363.72,338.36,0.0,16545.79,16349.13,196.66,0.0,organic,2017,DallasFtWorth +3,2017-12-10,1.53,16639.95,3195.45,333.74,0.0,13110.76,9916.06,3194.7,0.0,organic,2017,DallasFtWorth +4,2017-12-03,1.66,18538.92,4177.1,330.35,0.0,14031.47,10610.18,3421.29,0.0,organic,2017,DallasFtWorth +5,2017-11-26,1.65,15521.5,3562.36,249.22,0.0,11709.92,11661.84,48.08,0.0,organic,2017,DallasFtWorth +6,2017-11-19,1.63,21044.41,5229.44,295.54,0.0,15519.43,15488.25,31.18,0.0,organic,2017,DallasFtWorth +7,2017-11-12,1.7,20245.58,5898.74,416.95,0.0,13929.89,13895.16,34.73,0.0,organic,2017,DallasFtWorth +8,2017-11-05,1.64,18268.65,4533.05,324.41,0.0,13411.19,13307.8,103.39,0.0,organic,2017,DallasFtWorth +9,2017-10-29,1.67,20558.95,4525.31,322.02,0.0,15711.62,15694.95,16.67,0.0,organic,2017,DallasFtWorth +10,2017-10-22,1.69,19214.84,3989.78,395.07,0.0,14829.99,14806.66,23.33,0.0,organic,2017,DallasFtWorth +11,2017-10-15,1.71,21260.97,5297.31,449.51,0.0,15514.15,15504.15,10.0,0.0,organic,2017,DallasFtWorth +12,2017-10-08,1.73,19807.92,5943.03,470.54,0.0,13394.35,13391.02,3.33,0.0,organic,2017,DallasFtWorth +13,2017-10-01,1.7,21220.62,5442.96,387.86,0.0,15389.8,15386.47,3.33,0.0,organic,2017,DallasFtWorth +14,2017-09-24,1.68,21508.67,5819.22,535.85,0.0,15153.6,15146.93,6.67,0.0,organic,2017,DallasFtWorth +15,2017-09-17,1.79,20021.49,6047.16,554.4,0.0,13419.93,13403.27,16.66,0.0,organic,2017,DallasFtWorth +16,2017-09-10,1.81,24831.19,8554.15,657.97,0.0,15619.07,15605.74,13.33,0.0,organic,2017,DallasFtWorth +17,2017-09-03,1.81,23372.37,8362.93,686.97,0.0,14322.47,14294.15,28.32,0.0,organic,2017,DallasFtWorth +18,2017-08-27,1.9,20709.86,7685.44,483.04,0.0,12541.38,12421.38,120.0,0.0,organic,2017,DallasFtWorth +19,2017-08-20,1.8,21150.35,7818.39,694.46,0.0,12637.5,12022.52,614.98,0.0,organic,2017,DallasFtWorth +20,2017-08-13,1.68,18826.43,5364.59,322.73,0.0,13139.11,13044.16,94.95,0.0,organic,2017,DallasFtWorth +21,2017-08-06,1.63,21766.05,6944.17,440.45,0.0,14381.43,14378.1,3.33,0.0,organic,2017,DallasFtWorth +22,2017-07-30,1.62,20300.0,7498.76,747.2,0.0,12054.04,12034.04,20.0,0.0,organic,2017,DallasFtWorth +23,2017-07-23,1.57,21376.74,11038.45,468.58,0.0,9869.71,9851.49,18.22,0.0,organic,2017,DallasFtWorth +24,2017-07-16,1.49,24811.57,6649.58,451.46,0.0,17710.53,17684.5,26.03,0.0,organic,2017,DallasFtWorth +25,2017-07-09,1.06,39591.12,8288.59,577.48,0.0,30725.05,30660.35,64.7,0.0,organic,2017,DallasFtWorth +26,2017-07-02,1.02,32953.66,8791.93,475.31,0.0,23686.42,23602.46,83.96,0.0,organic,2017,DallasFtWorth +27,2017-06-25,1.33,24915.38,13719.82,845.15,0.0,10350.41,10240.83,109.58,0.0,organic,2017,DallasFtWorth +28,2017-06-18,1.44,26885.4,9426.95,1997.32,0.0,15461.13,15370.96,90.17,0.0,organic,2017,DallasFtWorth +29,2017-06-11,1.35,28393.54,7249.87,2371.12,0.0,18772.55,18632.17,140.38,0.0,organic,2017,DallasFtWorth +30,2017-06-04,1.08,42392.08,6369.58,4490.33,0.0,31532.17,31403.21,128.96,0.0,organic,2017,DallasFtWorth +31,2017-05-28,1.13,42244.7,5642.86,6595.91,0.0,30005.93,29825.13,180.8,0.0,organic,2017,DallasFtWorth +32,2017-05-21,1.46,28683.15,5639.42,4903.99,0.0,18139.74,18036.96,102.78,0.0,organic,2017,DallasFtWorth +33,2017-05-14,1.45,28735.11,5498.44,4103.53,0.0,19133.14,18976.42,156.72,0.0,organic,2017,DallasFtWorth +34,2017-05-07,1.35,26262.54,5808.0,3693.92,0.0,16760.62,16631.95,128.67,0.0,organic,2017,DallasFtWorth +35,2017-04-30,1.28,27768.13,11119.74,1806.22,0.0,14842.17,14724.98,117.19,0.0,organic,2017,DallasFtWorth +36,2017-04-23,1.34,21958.14,10749.84,560.7,0.0,10647.6,10470.54,177.06,0.0,organic,2017,DallasFtWorth +37,2017-04-16,1.12,33122.75,9397.49,707.69,0.0,23017.57,22882.31,135.26,0.0,organic,2017,DallasFtWorth +38,2017-04-09,1.24,26121.58,11723.26,530.28,0.0,13868.04,13741.99,126.05,0.0,organic,2017,DallasFtWorth +39,2017-04-02,1.41,23747.19,12593.83,1272.81,0.0,9880.55,9589.23,291.32,0.0,organic,2017,DallasFtWorth +40,2017-03-26,1.14,29627.87,9799.96,501.54,0.0,19326.37,19181.98,144.39,0.0,organic,2017,DallasFtWorth +41,2017-03-19,1.1,26679.37,8489.39,509.47,0.0,17680.51,17453.88,226.63,0.0,organic,2017,DallasFtWorth +42,2017-03-12,1.11,25049.48,8206.31,408.03,0.0,16435.14,16288.26,146.88,0.0,organic,2017,DallasFtWorth +43,2017-03-05,1.04,26417.4,8206.79,345.9,0.0,17864.71,17695.65,169.06,0.0,organic,2017,DallasFtWorth +44,2017-02-26,1.05,28944.94,7437.63,210.19,0.0,21297.12,21167.36,129.76,0.0,organic,2017,DallasFtWorth +45,2017-02-19,1.17,20393.29,7619.05,231.61,0.0,12542.63,12433.39,109.24,0.0,organic,2017,DallasFtWorth +46,2017-02-12,1.35,16249.95,9431.22,235.18,0.0,6583.55,6468.83,114.72,0.0,organic,2017,DallasFtWorth +47,2017-02-05,1.3,17169.39,7770.9,205.02,0.0,9193.47,9148.87,44.6,0.0,organic,2017,DallasFtWorth +48,2017-01-29,1.16,23208.81,9611.35,639.38,0.0,12958.08,12862.31,95.77,0.0,organic,2017,DallasFtWorth +49,2017-01-22,1.03,29547.04,6279.44,1204.4,0.0,22063.2,21974.04,89.16,0.0,organic,2017,DallasFtWorth +50,2017-01-15,1.04,19472.79,3979.48,1535.52,0.0,13957.79,13871.35,86.44,0.0,organic,2017,DallasFtWorth +51,2017-01-08,1.02,24031.65,4931.0,1063.86,0.0,18036.79,17898.83,137.96,0.0,organic,2017,DallasFtWorth +52,2017-01-01,1.06,15669.84,4110.67,312.11,0.0,11247.06,11137.36,109.7,0.0,organic,2017,DallasFtWorth +0,2017-12-31,1.48,17906.71,4400.94,482.72,12.67,13010.38,12128.68,881.7,0.0,organic,2017,Denver +1,2017-12-24,1.61,29466.81,6227.29,528.01,30.11,22681.4,22304.32,377.08,0.0,organic,2017,Denver +2,2017-12-17,1.46,34524.05,5039.43,435.39,42.84,29006.39,28941.3,65.09,0.0,organic,2017,Denver +3,2017-12-10,1.67,24471.73,4093.04,451.74,49.81,19877.14,19803.55,73.59,0.0,organic,2017,Denver +4,2017-12-03,1.79,23854.79,4565.3,367.5,16.23,18905.76,18830.06,75.7,0.0,organic,2017,Denver +5,2017-11-26,2.01,17421.87,4744.62,393.21,85.58,12198.46,11998.0,200.46,0.0,organic,2017,Denver +6,2017-11-19,2.01,17640.41,4506.5,340.39,16.1,12777.42,12689.75,87.67,0.0,organic,2017,Denver +7,2017-11-12,1.99,16859.85,4294.35,411.81,20.71,12132.98,12014.56,118.42,0.0,organic,2017,Denver +8,2017-11-05,2.05,15794.46,4139.0,411.73,35.75,11207.98,11030.88,177.1,0.0,organic,2017,Denver +9,2017-10-29,2.01,16981.94,4980.49,572.15,26.58,11402.72,11256.31,146.41,0.0,organic,2017,Denver +10,2017-10-22,1.64,27024.28,5719.08,906.97,75.1,20323.13,20034.56,288.57,0.0,organic,2017,Denver +11,2017-10-15,1.55,38937.28,11990.11,1114.77,85.48,25746.92,24092.69,1654.23,0.0,organic,2017,Denver +12,2017-10-08,1.97,22719.75,7350.34,484.37,30.99,14854.05,14714.76,139.29,0.0,organic,2017,Denver +13,2017-10-01,1.93,10632.88,3685.08,235.65,11.49,6700.66,6690.16,10.5,0.0,organic,2017,Denver +14,2017-09-24,1.69,6554.93,3286.51,244.17,17.19,3007.06,3000.4,6.66,0.0,organic,2017,Denver +15,2017-09-17,2.02,22029.46,6551.62,478.17,20.59,14979.08,14966.06,13.02,0.0,organic,2017,Denver +16,2017-09-10,2.06,23548.78,6045.36,524.69,38.87,16939.86,16816.35,123.51,0.0,organic,2017,Denver +17,2017-09-03,2.02,17939.8,5319.9,499.64,20.53,12099.73,12016.22,83.51,0.0,organic,2017,Denver +18,2017-08-27,2.16,20575.0,5403.05,507.0,21.6,14643.35,14579.72,63.63,0.0,organic,2017,Denver +19,2017-08-20,2.11,17338.59,5178.4,520.11,40.88,11599.2,11414.96,184.24,0.0,organic,2017,Denver +20,2017-08-13,2.08,22375.66,7525.31,864.59,58.85,13926.91,13825.94,100.97,0.0,organic,2017,Denver +21,2017-08-06,1.95,19766.0,9900.68,1086.26,46.34,8732.72,8703.01,29.71,0.0,organic,2017,Denver +22,2017-07-30,1.83,21925.58,8612.69,1388.86,54.11,11869.92,11787.29,82.63,0.0,organic,2017,Denver +23,2017-07-23,1.83,16147.91,8533.77,3419.39,214.84,3979.91,3899.04,78.36,2.51,organic,2017,Denver +24,2017-07-16,1.83,7653.26,3638.11,1154.29,99.49,2761.37,1215.02,1546.35,0.0,organic,2017,Denver +25,2017-07-09,1.94,14908.74,12539.43,1475.09,80.56,813.66,90.25,723.41,0.0,organic,2017,Denver +26,2017-07-02,1.44,25731.81,11850.59,2544.28,61.31,11275.63,551.17,10724.46,0.0,organic,2017,Denver +27,2017-06-25,1.17,25446.92,4521.58,3679.04,27.25,17219.05,3967.53,13251.52,0.0,organic,2017,Denver +28,2017-06-18,1.25,28462.96,8640.24,2043.28,54.52,17724.92,7228.37,10496.55,0.0,organic,2017,Denver +29,2017-06-11,1.97,18916.24,16512.7,1809.94,103.26,490.34,225.56,264.78,0.0,organic,2017,Denver +30,2017-06-04,1.97,15024.27,13420.3,1057.12,45.52,501.33,460.24,41.09,0.0,organic,2017,Denver +31,2017-05-28,1.69,28877.5,25873.17,2438.11,165.37,400.85,303.23,97.62,0.0,organic,2017,Denver +32,2017-05-21,1.38,35664.49,25044.47,4244.27,82.46,6293.29,5217.41,1075.88,0.0,organic,2017,Denver +33,2017-05-14,0.74,162499.64,22355.83,7368.08,139.39,132636.34,91421.75,41214.59,0.0,organic,2017,Denver +34,2017-05-07,0.9,145594.19,32779.19,13318.7,213.66,99282.64,45109.17,54173.47,0.0,organic,2017,Denver +35,2017-04-30,1.24,42857.03,24513.67,3402.45,97.18,14843.73,14722.9,120.83,0.0,organic,2017,Denver +36,2017-04-23,0.9,62384.23,12793.11,2126.24,69.71,47395.17,47195.08,200.09,0.0,organic,2017,Denver +37,2017-04-16,0.96,67666.31,16051.02,2802.3,111.53,48701.46,43314.95,5386.51,0.0,organic,2017,Denver +38,2017-04-09,0.89,65820.33,11793.22,2019.38,76.45,51931.28,47908.39,4022.89,0.0,organic,2017,Denver +39,2017-04-02,0.84,68627.92,9309.72,2010.11,57.73,57250.36,56838.79,411.57,0.0,organic,2017,Denver +40,2017-03-26,0.85,67657.35,10129.43,1677.51,36.31,55814.1,55592.7,221.4,0.0,organic,2017,Denver +41,2017-03-19,0.89,50646.59,9086.75,1631.51,24.46,39903.87,39619.64,284.23,0.0,organic,2017,Denver +42,2017-03-12,0.98,52575.07,14682.3,2307.67,33.7,35551.4,35069.92,481.48,0.0,organic,2017,Denver +43,2017-03-05,0.94,62976.43,23363.47,3586.2,23.18,36003.58,34708.32,1295.26,0.0,organic,2017,Denver +44,2017-02-26,0.78,64041.86,12233.34,2065.58,39.34,49703.6,26967.75,22735.85,0.0,organic,2017,Denver +45,2017-02-19,1.16,34290.67,10979.36,1473.29,19.8,21818.22,581.42,21236.8,0.0,organic,2017,Denver +46,2017-02-12,1.44,24782.08,15109.73,2067.75,16.06,7588.54,224.16,7364.38,0.0,organic,2017,Denver +47,2017-02-05,1.38,17713.66,9065.62,1335.07,20.82,7292.15,105.6,7186.55,0.0,organic,2017,Denver +48,2017-01-29,1.49,18341.33,13842.27,3182.83,13.72,1302.51,1226.26,76.25,0.0,organic,2017,Denver +49,2017-01-22,0.98,29282.55,12519.74,5289.45,11.43,11461.93,8840.51,2621.42,0.0,organic,2017,Denver +50,2017-01-15,0.73,50686.37,18780.82,3010.21,270.75,28624.59,15918.63,12705.96,0.0,organic,2017,Denver +51,2017-01-08,0.8,39403.42,8720.61,1639.28,53.69,28989.84,3473.4,25516.44,0.0,organic,2017,Denver +52,2017-01-01,0.91,21449.37,4103.45,775.73,5.71,16564.48,3485.79,13078.69,0.0,organic,2017,Denver +0,2017-12-31,1.05,32775.71,398.15,2116.14,0.0,30261.42,27997.42,2264.0,0.0,organic,2017,Detroit +1,2017-12-24,1.37,18289.06,389.59,2494.02,0.0,15321.76,12812.55,2509.21,0.0,organic,2017,Detroit +2,2017-12-17,1.41,17065.4,403.25,2548.98,0.0,13982.9,10946.08,3036.82,0.0,organic,2017,Detroit +3,2017-12-10,1.39,13710.63,435.76,2561.62,0.0,10540.47,9555.71,984.76,0.0,organic,2017,Detroit +4,2017-12-03,1.39,12104.37,403.08,2628.08,0.0,9035.92,8940.1,95.82,0.0,organic,2017,Detroit +5,2017-11-26,1.43,16341.09,367.39,2814.71,0.0,13046.39,11436.44,1609.95,0.0,organic,2017,Detroit +6,2017-11-19,1.37,16074.67,597.62,3005.22,0.0,12415.57,11976.59,438.98,0.0,organic,2017,Detroit +7,2017-11-12,1.42,17851.73,718.59,2938.26,0.0,14154.71,13814.96,339.75,0.0,organic,2017,Detroit +8,2017-11-05,1.58,17353.24,518.9,2512.04,0.0,14161.72,13656.25,505.47,0.0,organic,2017,Detroit +9,2017-10-29,1.65,20995.71,425.08,2658.53,0.0,17818.87,15086.1,2732.77,0.0,organic,2017,Detroit +10,2017-10-22,1.61,21512.97,619.98,3460.25,0.0,17396.8,14598.78,2798.02,0.0,organic,2017,Detroit +11,2017-10-15,1.69,20776.71,468.5,3770.8,0.0,16510.2,14535.56,1974.64,0.0,organic,2017,Detroit +12,2017-10-08,1.82,18553.99,552.98,3869.45,1.42,14053.35,14007.66,45.69,0.0,organic,2017,Detroit +13,2017-10-01,1.75,21753.6,503.84,3596.4,0.0,17535.94,15555.28,1980.66,0.0,organic,2017,Detroit +14,2017-09-24,2.08,24482.08,556.01,3536.55,0.0,20251.77,11223.57,9028.2,0.0,organic,2017,Detroit +15,2017-09-17,1.85,17461.53,432.3,3502.18,0.0,13499.2,11092.84,2406.36,0.0,organic,2017,Detroit +16,2017-09-10,1.88,19288.09,434.78,4007.28,0.0,14773.96,11927.03,2846.93,0.0,organic,2017,Detroit +17,2017-09-03,1.87,21749.1,500.27,2793.67,0.0,18394.08,12468.55,5925.53,0.0,organic,2017,Detroit +18,2017-08-27,1.64,18415.34,391.46,2392.09,0.0,15616.38,12233.06,3383.32,0.0,organic,2017,Detroit +19,2017-08-20,1.59,20129.12,544.7,3347.81,0.0,16161.9,12819.22,3342.68,0.0,organic,2017,Detroit +20,2017-08-13,1.54,14499.51,515.41,3457.64,0.0,10526.46,10115.55,410.91,0.0,organic,2017,Detroit +21,2017-08-06,1.68,16059.55,572.57,3106.62,0.0,12380.36,10690.06,1690.3,0.0,organic,2017,Detroit +22,2017-07-30,1.61,17991.86,507.0,3352.6,0.0,14132.26,9913.45,4218.81,0.0,organic,2017,Detroit +23,2017-07-23,1.74,25193.5,603.58,5510.26,0.0,19079.66,10022.12,9057.54,0.0,organic,2017,Detroit +24,2017-07-16,1.6,22729.11,666.92,4375.81,0.0,17553.37,10835.66,6717.71,0.0,organic,2017,Detroit +25,2017-07-09,1.47,17724.08,532.88,5228.33,0.0,11962.87,547.4,11415.47,0.0,organic,2017,Detroit +26,2017-07-02,1.44,19735.7,435.47,3969.82,0.0,15330.41,343.28,14987.13,0.0,organic,2017,Detroit +27,2017-06-25,1.39,13598.83,478.09,2992.04,0.0,10128.7,544.59,9584.11,0.0,organic,2017,Detroit +28,2017-06-18,1.51,15236.21,595.05,4884.46,0.0,9756.7,318.68,9438.02,0.0,organic,2017,Detroit +29,2017-06-11,0.92,38355.38,447.96,4744.42,0.0,33163.0,646.06,32516.94,0.0,organic,2017,Detroit +30,2017-06-04,1.75,14124.57,512.91,4770.64,0.0,8841.02,920.66,7920.36,0.0,organic,2017,Detroit +31,2017-05-28,1.64,18393.5,529.19,4739.85,0.0,13124.46,1096.93,12027.53,0.0,organic,2017,Detroit +32,2017-05-21,1.5,13731.02,551.01,4582.26,0.0,8597.75,1342.9,7254.85,0.0,organic,2017,Detroit +33,2017-05-14,1.76,10857.83,531.77,5473.59,0.0,4852.47,1319.32,3533.15,0.0,organic,2017,Detroit +34,2017-05-07,1.81,14463.73,649.49,5629.42,0.0,8184.82,441.48,7743.34,0.0,organic,2017,Detroit +35,2017-04-30,1.83,14530.73,582.47,5993.76,0.0,7954.5,816.2,7138.3,0.0,organic,2017,Detroit +36,2017-04-23,1.79,7897.74,568.15,3906.41,0.0,3423.18,1277.78,2145.4,0.0,organic,2017,Detroit +37,2017-04-16,0.93,31258.52,670.37,5647.18,0.0,24940.97,966.3,23974.67,0.0,organic,2017,Detroit +38,2017-04-09,0.9,23252.59,719.48,5138.49,0.0,17394.62,1008.83,16385.79,0.0,organic,2017,Detroit +39,2017-04-02,1.46,11266.02,576.56,4786.73,0.0,5902.73,1028.7,4874.03,0.0,organic,2017,Detroit +40,2017-03-26,0.65,42853.44,645.5,5540.45,0.0,36667.49,637.66,36029.83,0.0,organic,2017,Detroit +41,2017-03-19,1.32,11873.88,729.36,6016.85,0.0,5127.67,669.69,4457.98,0.0,organic,2017,Detroit +42,2017-03-12,0.7,27596.38,765.67,5012.62,0.0,21818.09,749.43,21068.66,0.0,organic,2017,Detroit +43,2017-03-05,0.48,50890.73,717.57,4138.84,0.0,46034.32,1385.06,44649.26,0.0,organic,2017,Detroit +44,2017-02-26,0.57,35282.6,620.57,4638.48,0.0,30023.55,826.39,29197.16,0.0,organic,2017,Detroit +45,2017-02-19,0.57,38386.57,822.08,5987.89,0.0,31576.6,1150.99,30425.61,0.0,organic,2017,Detroit +46,2017-02-12,0.82,18985.89,766.98,5919.64,0.0,12299.27,1146.24,11153.03,0.0,organic,2017,Detroit +47,2017-02-05,0.85,16174.94,741.19,4326.69,0.0,11107.06,681.27,10425.79,0.0,organic,2017,Detroit +48,2017-01-29,1.54,7850.52,724.05,4667.55,0.0,2458.92,770.05,1688.87,0.0,organic,2017,Detroit +49,2017-01-22,0.77,19452.17,645.63,4104.58,0.0,14701.96,1331.38,13370.58,0.0,organic,2017,Detroit +50,2017-01-15,1.88,7875.36,790.85,6131.31,0.0,953.2,937.88,15.32,0.0,organic,2017,Detroit +51,2017-01-08,1.74,8156.07,751.53,5747.86,0.0,1656.68,973.89,682.79,0.0,organic,2017,Detroit +52,2017-01-01,1.77,7545.82,593.56,6565.28,0.0,386.98,280.0,106.98,0.0,organic,2017,Detroit +0,2017-12-31,1.28,6792.67,9.88,770.79,0.0,6012.0,5991.42,20.58,0.0,organic,2017,GrandRapids +1,2017-12-24,1.3,7774.3,32.77,1067.24,0.0,6674.29,6660.04,14.25,0.0,organic,2017,GrandRapids +2,2017-12-17,1.28,6777.66,25.76,782.74,0.0,5969.16,5965.83,3.33,0.0,organic,2017,GrandRapids +3,2017-12-10,1.29,6253.08,0.0,729.87,0.0,5523.21,5523.21,0.0,0.0,organic,2017,GrandRapids +4,2017-12-03,1.31,6184.48,14.31,758.19,0.0,5411.98,5411.98,0.0,0.0,organic,2017,GrandRapids +5,2017-11-26,1.3,6128.58,17.36,766.58,0.0,5344.64,5344.64,0.0,0.0,organic,2017,GrandRapids +6,2017-11-19,1.27,6745.48,14.35,611.5,0.0,6119.63,6119.63,0.0,0.0,organic,2017,GrandRapids +7,2017-11-12,1.43,8507.18,37.26,1159.39,0.0,7310.53,7303.86,6.67,0.0,organic,2017,GrandRapids +8,2017-11-05,1.52,9469.28,44.32,3069.6,0.0,6355.36,6355.36,0.0,0.0,organic,2017,GrandRapids +9,2017-10-29,1.32,7724.84,61.38,540.98,0.0,7122.48,7122.48,0.0,0.0,organic,2017,GrandRapids +10,2017-10-22,1.32,9171.48,15.63,686.14,0.0,8469.71,8469.71,0.0,0.0,organic,2017,GrandRapids +11,2017-10-15,1.41,8400.56,15.56,724.41,0.0,7660.59,7660.59,0.0,0.0,organic,2017,GrandRapids +12,2017-10-08,1.51,8806.63,42.25,1218.07,0.0,7546.31,7546.31,0.0,0.0,organic,2017,GrandRapids +13,2017-10-01,1.44,12551.82,42.11,3419.13,0.0,9090.58,9090.58,0.0,0.0,organic,2017,GrandRapids +14,2017-09-24,1.46,8043.21,30.76,978.6,0.0,7033.85,7033.85,0.0,0.0,organic,2017,GrandRapids +15,2017-09-17,1.4,8378.17,44.49,818.97,0.0,7514.71,7514.71,0.0,0.0,organic,2017,GrandRapids +16,2017-09-10,1.4,8021.16,156.05,1074.4,0.0,6790.71,6756.95,33.76,0.0,organic,2017,GrandRapids +17,2017-09-03,1.26,9273.64,124.6,825.16,0.0,8323.88,8305.42,18.46,0.0,organic,2017,GrandRapids +18,2017-08-27,1.21,8060.54,28.94,493.34,0.0,7538.26,7516.82,21.44,0.0,organic,2017,GrandRapids +19,2017-08-20,1.13,7502.05,23.42,35.82,0.0,7442.81,7421.38,21.43,0.0,organic,2017,GrandRapids +20,2017-08-13,1.18,7534.9,39.88,347.91,0.0,7147.11,7131.83,15.28,0.0,organic,2017,GrandRapids +21,2017-08-06,1.29,5285.73,6.89,825.81,0.0,4453.03,4408.61,44.42,0.0,organic,2017,GrandRapids +22,2017-07-30,1.33,8233.05,4.15,1376.64,0.0,6852.26,6772.4,79.86,0.0,organic,2017,GrandRapids +23,2017-07-23,1.27,6483.93,4.15,667.54,0.0,5812.24,5767.7,44.54,0.0,organic,2017,GrandRapids +24,2017-07-16,1.32,9058.79,2.84,1252.4,0.0,7788.89,7785.74,3.15,0.0,organic,2017,GrandRapids +25,2017-07-09,2.19,3521.61,32.08,3300.43,0.0,189.1,6.2,182.9,0.0,organic,2017,GrandRapids +26,2017-07-02,1.97,4460.37,34.02,4237.33,0.0,189.02,6.3,182.72,0.0,organic,2017,GrandRapids +27,2017-06-25,2.73,1034.32,7.12,891.16,0.0,136.04,6.33,129.71,0.0,organic,2017,GrandRapids +28,2017-06-18,2.62,1314.24,18.58,1057.49,0.0,238.17,12.7,225.47,0.0,organic,2017,GrandRapids +29,2017-06-11,2.39,1312.01,0.0,939.89,0.0,372.12,85.56,286.56,0.0,organic,2017,GrandRapids +30,2017-06-04,2.33,1389.65,2.87,903.88,0.0,482.9,326.67,156.23,0.0,organic,2017,GrandRapids +31,2017-05-28,2.44,1388.02,2.91,943.6,0.0,441.51,418.89,22.62,0.0,organic,2017,GrandRapids +32,2017-05-21,2.34,1678.36,10.21,1091.48,0.0,576.67,576.67,0.0,0.0,organic,2017,GrandRapids +33,2017-05-14,2.11,1569.19,0.0,1013.74,0.0,555.45,555.45,0.0,0.0,organic,2017,GrandRapids +34,2017-05-07,2.32,845.11,0.0,738.66,0.0,106.45,86.67,19.78,0.0,organic,2017,GrandRapids +35,2017-04-30,2.21,1451.76,2.97,1052.37,0.0,396.42,370.0,26.42,0.0,organic,2017,GrandRapids +36,2017-04-23,2.13,2101.46,17.88,1363.66,0.0,719.92,716.61,3.31,0.0,organic,2017,GrandRapids +37,2017-04-16,2.19,2246.07,23.98,1581.33,0.0,640.76,574.98,65.78,0.0,organic,2017,GrandRapids +38,2017-04-09,2.0,2038.99,43.45,1224.09,0.0,771.45,599.98,171.47,0.0,organic,2017,GrandRapids +39,2017-04-02,2.07,1908.86,41.85,1182.37,0.0,684.64,614.88,69.76,0.0,organic,2017,GrandRapids +40,2017-03-26,2.05,2136.8,5.92,1421.21,0.0,709.67,561.78,147.89,0.0,organic,2017,GrandRapids +41,2017-03-19,2.05,2395.16,27.77,1593.25,0.0,774.14,689.51,84.63,0.0,organic,2017,GrandRapids +42,2017-03-12,1.94,4146.49,39.1,2890.46,0.0,1216.93,1163.95,52.98,0.0,organic,2017,GrandRapids +43,2017-03-05,1.33,13181.24,127.32,10247.49,0.0,2806.43,2806.43,0.0,0.0,organic,2017,GrandRapids +44,2017-02-26,1.57,7915.2,49.12,4221.38,0.0,3644.7,3560.5,84.2,0.0,organic,2017,GrandRapids +45,2017-02-19,1.64,1862.24,22.53,1036.23,0.0,803.48,803.48,0.0,0.0,organic,2017,GrandRapids +46,2017-02-12,1.27,4273.25,93.8,3515.56,0.0,663.89,663.89,0.0,0.0,organic,2017,GrandRapids +47,2017-02-05,1.7,1112.77,54.67,688.31,0.0,369.79,369.79,0.0,0.0,organic,2017,GrandRapids +48,2017-01-29,1.67,1626.47,47.74,1079.73,0.0,499.0,386.67,112.33,0.0,organic,2017,GrandRapids +49,2017-01-22,1.52,2693.59,65.96,2010.96,0.0,616.67,616.67,0.0,0.0,organic,2017,GrandRapids +50,2017-01-15,1.75,1427.36,60.33,973.7,0.0,393.33,393.33,0.0,0.0,organic,2017,GrandRapids +51,2017-01-08,1.52,2650.61,108.05,1992.56,0.0,550.0,550.0,0.0,0.0,organic,2017,GrandRapids +52,2017-01-01,1.79,1095.77,84.21,738.23,0.0,273.33,263.33,10.0,0.0,organic,2017,GrandRapids +0,2017-12-31,1.29,202521.83,4187.69,34761.26,0.0,163456.23,140923.52,22532.71,0.0,organic,2017,GreatLakes +1,2017-12-24,1.5,170025.26,3530.25,45287.61,0.0,121004.11,98594.58,22409.53,0.0,organic,2017,GreatLakes +2,2017-12-17,1.42,161673.33,4205.91,42009.63,1.63,114913.95,96928.45,17985.5,0.0,organic,2017,GreatLakes +3,2017-12-10,1.49,148882.83,3001.05,51148.46,0.0,94204.9,82525.77,11679.13,0.0,organic,2017,GreatLakes +4,2017-12-03,1.52,139934.06,2808.31,45409.34,0.0,91390.14,82843.58,8546.56,0.0,organic,2017,GreatLakes +5,2017-11-26,1.52,141104.31,2599.3,37369.95,0.0,100572.12,89060.03,11512.09,0.0,organic,2017,GreatLakes +6,2017-11-19,1.53,133203.19,3394.42,39866.7,0.0,89472.15,82838.51,6633.64,0.0,organic,2017,GreatLakes +7,2017-11-12,1.64,159071.48,3624.05,45966.15,0.0,109173.25,96907.0,12266.25,0.0,organic,2017,GreatLakes +8,2017-11-05,1.69,169816.92,3261.8,53829.19,0.0,112234.63,98907.59,13327.04,0.0,organic,2017,GreatLakes +9,2017-10-29,1.7,176815.66,3060.61,48813.2,0.0,124638.82,107070.18,17568.64,0.0,organic,2017,GreatLakes +10,2017-10-22,1.68,190579.53,3616.94,45789.71,0.0,140986.71,121946.19,19040.52,0.0,organic,2017,GreatLakes +11,2017-10-15,1.68,197529.4,3318.61,54525.35,0.0,139481.99,126855.79,12626.2,0.0,organic,2017,GreatLakes +12,2017-10-08,1.7,191866.1,3603.46,56237.45,1.62,131818.51,124355.02,7463.49,0.0,organic,2017,GreatLakes +13,2017-10-01,1.72,180253.26,3467.06,52244.98,0.0,124087.1,109113.0,14974.1,0.0,organic,2017,GreatLakes +14,2017-09-24,1.89,179687.73,3756.3,48823.74,0.0,126611.68,84494.08,42117.6,0.0,organic,2017,GreatLakes +15,2017-09-17,1.84,151888.89,3588.06,43683.43,0.0,104460.38,81696.7,22763.68,0.0,organic,2017,GreatLakes +16,2017-09-10,1.82,148357.84,3861.68,42215.34,0.0,102115.35,81205.15,20910.2,0.0,organic,2017,GreatLakes +17,2017-09-03,1.82,157087.22,3819.64,33363.97,12.96,119674.06,86092.86,33581.2,0.0,organic,2017,GreatLakes +18,2017-08-27,1.73,150638.77,3141.89,41060.13,32.22,106294.09,83337.67,22956.42,0.0,organic,2017,GreatLakes +19,2017-08-20,1.6,133248.29,3356.9,26728.65,4.85,102918.29,83092.11,19826.18,0.0,organic,2017,GreatLakes +20,2017-08-13,1.54,129785.91,3726.68,29839.21,8.09,96034.06,86209.28,9824.78,0.0,organic,2017,GreatLakes +21,2017-08-06,1.65,125026.87,3724.58,32794.35,4.87,88319.69,67919.34,20400.35,0.0,organic,2017,GreatLakes +22,2017-07-30,1.65,178141.22,3482.46,65083.8,0.0,109284.6,76778.61,32505.99,0.0,organic,2017,GreatLakes +23,2017-07-23,1.68,208558.03,3639.54,80400.82,4.82,124204.92,72148.53,52056.39,0.0,organic,2017,GreatLakes +24,2017-07-16,1.64,209543.04,4180.21,76793.36,0.0,124683.37,79403.55,45279.82,0.0,organic,2017,GreatLakes +25,2017-07-09,1.62,153380.48,3853.72,70843.63,0.0,78683.13,14008.38,64674.75,0.0,organic,2017,GreatLakes +26,2017-07-02,1.58,169966.3,3073.22,71442.71,0.0,95450.37,20059.86,75390.51,0.0,organic,2017,GreatLakes +27,2017-06-25,1.59,130430.6,2504.36,60395.45,3.23,67527.56,10039.5,57488.06,0.0,organic,2017,GreatLakes +28,2017-06-18,1.56,148060.59,3126.38,73192.35,0.0,71741.86,11087.54,60654.32,0.0,organic,2017,GreatLakes +29,2017-06-11,1.13,261363.34,3502.12,79186.28,4.83,178670.11,16845.36,161824.75,0.0,organic,2017,GreatLakes +30,2017-06-04,1.69,156456.85,4036.03,78626.62,4.84,73789.36,27335.55,46453.81,0.0,organic,2017,GreatLakes +31,2017-05-28,1.72,160659.8,3907.75,78127.32,0.0,78624.73,32403.8,46220.93,0.0,organic,2017,GreatLakes +32,2017-05-21,1.59,150790.27,3228.65,74837.07,0.0,72724.55,26525.38,46199.17,0.0,organic,2017,GreatLakes +33,2017-05-14,1.68,143791.21,3379.52,73032.43,0.0,67379.26,29130.71,38248.55,0.0,organic,2017,GreatLakes +34,2017-05-07,1.74,146983.33,3712.17,80827.19,1.64,62442.33,21373.63,41068.7,0.0,organic,2017,GreatLakes +35,2017-04-30,1.84,142607.19,3777.12,84783.68,0.0,54046.39,23231.28,30815.11,0.0,organic,2017,GreatLakes +36,2017-04-23,1.71,134773.11,3619.94,81050.43,9.87,50092.87,35704.48,14388.39,0.0,organic,2017,GreatLakes +37,2017-04-16,1.36,221705.72,4259.78,103729.98,3.32,113712.64,35865.04,77847.6,0.0,organic,2017,GreatLakes +38,2017-04-09,1.36,201552.43,4791.02,90048.62,0.0,106712.79,28412.98,78299.81,0.0,organic,2017,GreatLakes +39,2017-04-02,1.51,179232.9,4631.4,90013.63,0.0,84587.87,30833.38,53754.49,0.0,organic,2017,GreatLakes +40,2017-03-26,1.08,244035.03,4955.2,80775.44,0.0,158304.39,30051.74,128252.65,0.0,organic,2017,GreatLakes +41,2017-03-19,1.55,137494.38,5897.6,78592.68,0.0,53004.1,26849.16,26154.94,0.0,organic,2017,GreatLakes +42,2017-03-12,1.08,206958.43,4366.07,65744.45,0.0,136847.91,26522.69,110325.22,0.0,organic,2017,GreatLakes +43,2017-03-05,0.83,318890.26,4497.87,85819.87,0.0,228572.52,30235.13,198337.39,0.0,organic,2017,GreatLakes +44,2017-02-26,0.94,253169.88,4551.23,80014.82,0.0,168603.83,31222.06,137381.77,0.0,organic,2017,GreatLakes +45,2017-02-19,0.9,226000.27,4432.89,66308.19,0.0,155259.19,29892.25,125366.94,0.0,organic,2017,GreatLakes +46,2017-02-12,1.08,162213.86,5063.86,68691.1,0.0,88458.9,23146.58,65312.32,0.0,organic,2017,GreatLakes +47,2017-02-05,1.14,149650.5,4548.46,70014.08,0.0,75087.96,20170.52,54917.44,0.0,organic,2017,GreatLakes +48,2017-01-29,1.35,129565.39,4443.31,72888.67,0.0,52233.41,24074.61,28158.8,0.0,organic,2017,GreatLakes +49,2017-01-22,1.19,155334.45,3657.79,74068.65,0.0,77608.01,27302.29,50305.72,0.0,organic,2017,GreatLakes +50,2017-01-15,1.7,103487.72,4370.03,67260.09,0.0,31857.6,25703.71,6153.89,0.0,organic,2017,GreatLakes +51,2017-01-08,1.55,100134.77,4237.93,57604.54,0.0,38292.3,28785.23,9507.07,0.0,organic,2017,GreatLakes +52,2017-01-01,1.44,104153.91,4104.86,69800.29,0.0,30248.76,23593.03,6655.73,0.0,organic,2017,GreatLakes +0,2017-12-31,1.45,18857.67,138.52,209.27,0.0,18509.88,18504.9,4.98,0.0,organic,2017,HarrisburgScranton +1,2017-12-24,1.46,19059.5,181.5,240.0,0.0,18638.0,18638.0,0.0,0.0,organic,2017,HarrisburgScranton +2,2017-12-17,1.46,16946.1,380.06,287.28,5.95,16272.81,16269.48,3.33,0.0,organic,2017,HarrisburgScranton +3,2017-12-10,1.41,20516.2,237.25,282.59,9.3,19987.06,19982.08,4.98,0.0,organic,2017,HarrisburgScranton +4,2017-12-03,1.46,18106.96,450.89,329.58,5.97,17320.52,17313.92,6.6,0.0,organic,2017,HarrisburgScranton +5,2017-11-26,1.51,15356.02,212.81,235.13,10.19,14897.89,14897.89,0.0,0.0,organic,2017,HarrisburgScranton +6,2017-11-19,1.62,14161.9,176.4,275.71,9.39,13700.4,13700.4,0.0,0.0,organic,2017,HarrisburgScranton +7,2017-11-12,1.56,19100.44,204.09,163.45,6.77,18726.13,18711.27,14.86,0.0,organic,2017,HarrisburgScranton +8,2017-11-05,1.61,18723.45,256.08,154.47,5.48,18307.42,18300.82,6.6,0.0,organic,2017,HarrisburgScranton +9,2017-10-29,1.63,16675.63,215.06,156.06,20.15,16284.36,16284.36,0.0,0.0,organic,2017,HarrisburgScranton +10,2017-10-22,1.48,21532.06,189.7,237.13,6.16,21099.07,21090.84,8.23,0.0,organic,2017,HarrisburgScranton +11,2017-10-15,1.51,21547.51,252.22,166.17,11.8,21117.32,21109.08,8.24,0.0,organic,2017,HarrisburgScranton +12,2017-10-08,1.44,25995.93,236.33,183.12,12.04,25564.44,25562.8,1.64,0.0,organic,2017,HarrisburgScranton +13,2017-10-01,1.5,22744.08,259.99,164.27,6.71,22313.11,22313.11,0.0,0.0,organic,2017,HarrisburgScranton +14,2017-09-24,1.47,23810.69,312.15,164.21,17.19,23317.14,23317.14,0.0,0.0,organic,2017,HarrisburgScranton +15,2017-09-17,1.51,20994.85,298.41,248.18,18.48,20429.78,20429.78,0.0,0.0,organic,2017,HarrisburgScranton +16,2017-09-10,1.51,24664.15,322.83,178.36,7.37,24155.59,24150.68,4.91,0.0,organic,2017,HarrisburgScranton +17,2017-09-03,1.72,16442.23,388.23,311.47,17.81,15724.72,15724.72,0.0,0.0,organic,2017,HarrisburgScranton +18,2017-08-27,1.73,13886.69,234.25,194.66,7.64,13450.14,13450.14,0.0,0.0,organic,2017,HarrisburgScranton +19,2017-08-20,1.68,15105.0,634.38,206.66,23.45,14240.51,14240.51,0.0,0.0,organic,2017,HarrisburgScranton +20,2017-08-13,1.69,14483.05,285.14,243.13,18.13,13936.65,13936.65,0.0,0.0,organic,2017,HarrisburgScranton +21,2017-08-06,1.63,13641.1,253.23,179.45,5.72,13202.7,13199.48,3.22,0.0,organic,2017,HarrisburgScranton +22,2017-07-30,1.59,14096.72,231.38,177.87,9.09,13678.38,13673.94,4.44,0.0,organic,2017,HarrisburgScranton +23,2017-07-23,1.43,21137.13,231.9,221.59,23.38,20660.26,20656.93,3.33,0.0,organic,2017,HarrisburgScranton +24,2017-07-16,1.56,17319.13,184.6,186.95,15.81,16931.77,16931.77,0.0,0.0,organic,2017,HarrisburgScranton +25,2017-07-09,2.23,7164.96,176.35,213.93,14.78,6759.9,6759.9,0.0,0.0,organic,2017,HarrisburgScranton +26,2017-07-02,2.15,9015.26,377.25,265.88,35.67,8336.46,8336.46,0.0,0.0,organic,2017,HarrisburgScranton +27,2017-06-25,2.15,9529.65,249.04,283.16,21.12,8976.33,8976.33,0.0,0.0,organic,2017,HarrisburgScranton +28,2017-06-18,2.09,11104.31,1032.72,569.08,18.3,9484.21,9460.14,24.07,0.0,organic,2017,HarrisburgScranton +29,2017-06-11,2.27,12229.0,395.39,228.26,1254.41,10350.94,10298.77,52.17,0.0,organic,2017,HarrisburgScranton +30,2017-06-04,2.04,11171.92,863.87,269.83,16.96,10021.26,9961.14,60.12,0.0,organic,2017,HarrisburgScranton +31,2017-05-28,2.19,9934.41,442.85,290.99,15.52,9185.05,9185.05,0.0,0.0,organic,2017,HarrisburgScranton +32,2017-05-21,2.18,8942.44,274.75,237.52,9.12,8421.05,8421.05,0.0,0.0,organic,2017,HarrisburgScranton +33,2017-05-14,2.13,10398.91,282.24,444.34,11.48,9660.85,9660.85,0.0,0.0,organic,2017,HarrisburgScranton +34,2017-05-07,2.08,10754.06,306.07,273.03,8.13,10166.83,10166.83,0.0,0.0,organic,2017,HarrisburgScranton +35,2017-04-30,2.01,10347.85,1004.16,300.86,11.54,9031.29,9031.29,0.0,0.0,organic,2017,HarrisburgScranton +36,2017-04-23,2.01,9509.86,356.73,464.86,9.12,8679.15,8679.15,0.0,0.0,organic,2017,HarrisburgScranton +37,2017-04-16,1.99,11419.61,928.33,819.5,14.65,9657.13,9625.01,32.12,0.0,organic,2017,HarrisburgScranton +38,2017-04-09,2.06,9053.38,364.44,440.96,13.91,8234.07,8234.07,0.0,0.0,organic,2017,HarrisburgScranton +39,2017-04-02,1.95,9170.1,888.85,665.19,9.27,7606.79,7606.79,0.0,0.0,organic,2017,HarrisburgScranton +40,2017-03-26,1.91,10043.21,388.01,323.58,10.75,9320.87,9320.87,0.0,0.0,organic,2017,HarrisburgScranton +41,2017-03-19,1.93,10371.35,790.16,573.23,17.94,8990.02,8982.04,7.98,0.0,organic,2017,HarrisburgScranton +42,2017-03-12,2.21,7789.5,476.63,345.2,19.42,6948.25,6948.25,0.0,0.0,organic,2017,HarrisburgScranton +43,2017-03-05,1.97,9363.96,948.51,600.43,9.31,7805.71,7793.62,12.09,0.0,organic,2017,HarrisburgScranton +44,2017-02-26,1.84,8615.54,618.55,655.92,14.64,7326.43,7322.43,4.0,0.0,organic,2017,HarrisburgScranton +45,2017-02-19,1.62,13264.69,3590.54,2202.3,10.47,7461.38,7429.08,32.3,0.0,organic,2017,HarrisburgScranton +46,2017-02-12,1.81,9010.53,414.62,205.85,11.55,8378.51,8333.9,44.61,0.0,organic,2017,HarrisburgScranton +47,2017-02-05,1.83,8210.15,362.18,140.49,6.18,7701.3,7677.16,24.14,0.0,organic,2017,HarrisburgScranton +48,2017-01-29,1.72,9254.53,364.78,195.77,10.16,8683.82,8622.95,60.87,0.0,organic,2017,HarrisburgScranton +49,2017-01-22,1.76,8360.08,356.74,139.44,16.83,7847.07,7826.68,20.39,0.0,organic,2017,HarrisburgScranton +50,2017-01-15,1.88,8630.41,308.39,178.54,9.18,8134.3,8134.3,0.0,0.0,organic,2017,HarrisburgScranton +51,2017-01-08,1.95,7366.35,403.32,226.87,8.73,6727.43,6723.31,4.12,0.0,organic,2017,HarrisburgScranton +52,2017-01-01,1.93,5456.54,255.89,189.26,6.76,5004.63,5004.63,0.0,0.0,organic,2017,HarrisburgScranton +0,2017-12-31,1.9,15471.76,59.88,6811.37,0.0,8600.51,8600.51,0.0,0.0,organic,2017,HartfordSpringfield +1,2017-12-24,1.99,12641.31,448.53,3902.18,0.0,8290.6,8290.6,0.0,0.0,organic,2017,HartfordSpringfield +2,2017-12-17,1.93,12068.26,183.22,3070.56,0.0,8814.48,8784.92,29.56,0.0,organic,2017,HartfordSpringfield +3,2017-12-10,1.81,13690.78,77.91,3133.36,5.58,10473.93,10446.04,27.89,0.0,organic,2017,HartfordSpringfield +4,2017-12-03,1.83,14089.35,288.44,5155.12,1.39,8644.4,8644.4,0.0,0.0,organic,2017,HartfordSpringfield +5,2017-11-26,1.9,11541.99,31.69,2682.97,0.0,8827.33,8827.33,0.0,0.0,organic,2017,HartfordSpringfield +6,2017-11-19,2.09,11380.2,34.59,2619.92,1.4,8724.29,8724.29,0.0,0.0,organic,2017,HartfordSpringfield +7,2017-11-12,2.09,12486.38,36.11,2880.01,1.41,9568.85,9531.31,37.54,0.0,organic,2017,HartfordSpringfield +8,2017-11-05,2.17,12289.27,26.7,3106.6,2.81,9153.16,9090.71,62.45,0.0,organic,2017,HartfordSpringfield +9,2017-10-29,1.98,13649.88,45.05,2689.0,0.0,10915.83,10867.33,48.5,0.0,organic,2017,HartfordSpringfield +10,2017-10-22,1.53,21441.78,35.03,2862.72,1.41,18542.62,18475.42,67.2,0.0,organic,2017,HartfordSpringfield +11,2017-10-15,1.81,16619.7,60.56,2147.55,4.22,14407.37,14397.99,9.38,0.0,organic,2017,HartfordSpringfield +12,2017-10-08,1.93,17346.22,52.43,3324.46,7.0,13962.33,13882.94,79.39,0.0,organic,2017,HartfordSpringfield +13,2017-10-01,2.06,13827.7,72.05,3318.15,1.41,10436.09,10434.53,1.56,0.0,organic,2017,HartfordSpringfield +14,2017-09-24,1.82,19611.69,122.01,3577.52,0.0,15912.16,15912.16,0.0,0.0,organic,2017,HartfordSpringfield +15,2017-09-17,1.96,18572.79,68.7,4275.95,11.18,14216.96,14216.96,0.0,0.0,organic,2017,HartfordSpringfield +16,2017-09-10,2.08,18016.66,87.47,3878.36,1.4,14049.43,14049.43,0.0,0.0,organic,2017,HartfordSpringfield +17,2017-09-03,2.21,14956.0,142.56,3792.69,0.0,11020.75,11020.75,0.0,0.0,organic,2017,HartfordSpringfield +18,2017-08-27,2.4,13994.9,74.89,4981.75,2.77,8935.49,8935.49,0.0,0.0,organic,2017,HartfordSpringfield +19,2017-08-20,2.19,16040.58,333.17,6341.29,2.76,9363.36,9363.36,0.0,0.0,organic,2017,HartfordSpringfield +20,2017-08-13,2.26,13330.73,83.87,4346.49,0.0,8900.37,8889.63,10.74,0.0,organic,2017,HartfordSpringfield +21,2017-08-06,2.11,13548.81,37.14,4371.88,0.0,9139.79,9127.56,12.23,0.0,organic,2017,HartfordSpringfield +22,2017-07-30,2.1,13864.42,72.64,4282.77,2.74,9506.27,9501.7,4.57,0.0,organic,2017,HartfordSpringfield +23,2017-07-23,1.95,17461.66,97.2,4468.49,8.21,12887.76,12887.76,0.0,0.0,organic,2017,HartfordSpringfield +24,2017-07-16,1.94,15128.14,308.21,4236.13,1.38,10582.42,10582.42,0.0,0.0,organic,2017,HartfordSpringfield +25,2017-07-09,2.67,11842.55,43.92,4563.44,8.23,7226.96,7226.96,0.0,0.0,organic,2017,HartfordSpringfield +26,2017-07-02,2.67,11745.45,120.76,5069.38,35.68,6519.63,6515.82,3.81,0.0,organic,2017,HartfordSpringfield +27,2017-06-25,2.61,12883.38,64.48,5815.43,16.46,6987.01,6987.01,0.0,0.0,organic,2017,HartfordSpringfield +28,2017-06-18,2.14,23752.11,549.98,14022.37,6.86,9172.9,8418.57,754.33,0.0,organic,2017,HartfordSpringfield +29,2017-06-11,2.62,13040.76,89.07,4953.62,13.7,7984.37,7752.18,232.19,0.0,organic,2017,HartfordSpringfield +30,2017-06-04,2.5,14985.11,340.2,6314.32,0.0,8330.59,8242.95,87.64,0.0,organic,2017,HartfordSpringfield +31,2017-05-28,2.67,12930.59,148.98,4613.7,57.94,8109.97,8109.97,0.0,0.0,organic,2017,HartfordSpringfield +32,2017-05-21,2.62,12234.45,107.67,4361.38,12.42,7752.98,7752.98,0.0,0.0,organic,2017,HartfordSpringfield +33,2017-05-14,2.58,12456.71,310.12,4316.89,4.13,7825.57,7825.57,0.0,0.0,organic,2017,HartfordSpringfield +34,2017-05-07,2.51,15173.18,198.47,7086.04,2.76,7885.91,7885.91,0.0,0.0,organic,2017,HartfordSpringfield +35,2017-04-30,2.25,18568.03,477.36,10235.91,15.13,7839.63,7839.63,0.0,0.0,organic,2017,HartfordSpringfield +36,2017-04-23,2.49,13284.59,44.18,6007.49,4.14,7228.78,7224.94,3.84,0.0,organic,2017,HartfordSpringfield +37,2017-04-16,2.0,26638.93,997.33,18975.35,5.51,6660.74,6618.65,42.09,0.0,organic,2017,HartfordSpringfield +38,2017-04-09,2.6,11045.91,198.37,4395.88,12.4,6439.26,6439.26,0.0,0.0,organic,2017,HartfordSpringfield +39,2017-04-02,2.42,13121.84,495.0,6057.25,0.0,6569.59,6538.95,30.64,0.0,organic,2017,HartfordSpringfield +40,2017-03-26,2.48,13053.93,173.46,6545.48,0.0,6334.99,6005.87,329.12,0.0,organic,2017,HartfordSpringfield +41,2017-03-19,2.04,24796.8,604.48,17563.18,45.65,6583.49,6460.53,122.96,0.0,organic,2017,HartfordSpringfield +42,2017-03-12,2.57,13395.7,109.82,5604.12,1.4,7680.36,7680.36,0.0,0.0,organic,2017,HartfordSpringfield +43,2017-03-05,2.17,13783.11,255.27,7325.0,4.19,6198.65,6179.25,19.4,0.0,organic,2017,HartfordSpringfield +44,2017-02-26,2.18,13475.25,208.52,7176.67,1.39,6088.67,5968.56,120.11,0.0,organic,2017,HartfordSpringfield +45,2017-02-19,1.56,39978.99,849.87,32225.71,0.0,6903.41,6224.38,679.03,0.0,organic,2017,HartfordSpringfield +46,2017-02-12,2.35,9386.83,45.3,3547.5,12.36,5781.67,5751.16,30.51,0.0,organic,2017,HartfordSpringfield +47,2017-02-05,1.79,14825.89,94.97,7579.97,23.39,7127.56,6806.51,321.05,0.0,organic,2017,HartfordSpringfield +48,2017-01-29,2.43,9412.37,96.15,3494.43,9.62,5812.17,5602.31,209.86,0.0,organic,2017,HartfordSpringfield +49,2017-01-22,2.44,9583.77,101.61,3410.7,9.61,6061.85,6038.97,22.88,0.0,organic,2017,HartfordSpringfield +50,2017-01-15,2.43,11203.27,119.46,4601.08,6.87,6475.86,6277.53,198.33,0.0,organic,2017,HartfordSpringfield +51,2017-01-08,2.43,9880.58,38.45,4063.04,17.85,5761.24,5593.41,167.83,0.0,organic,2017,HartfordSpringfield +52,2017-01-01,2.44,11977.13,152.32,7697.1,12.35,4115.36,3947.64,167.72,0.0,organic,2017,HartfordSpringfield +0,2017-12-31,1.36,25590.34,9524.47,114.02,0.0,15951.85,15635.18,316.67,0.0,organic,2017,Houston +1,2017-12-24,1.55,26781.7,6743.83,136.22,0.0,19901.65,19811.65,90.0,0.0,organic,2017,Houston +2,2017-12-17,1.53,27626.41,6972.28,66.92,0.0,20587.21,20577.21,10.0,0.0,organic,2017,Houston +3,2017-12-10,1.51,26414.51,6333.93,118.99,0.0,19961.59,19911.59,50.0,0.0,organic,2017,Houston +4,2017-12-03,1.56,25457.57,7042.76,178.32,0.0,18236.49,18166.49,70.0,0.0,organic,2017,Houston +5,2017-11-26,1.56,20411.15,4935.65,26.45,0.0,15449.05,15429.05,20.0,0.0,organic,2017,Houston +6,2017-11-19,1.56,24963.18,5928.62,75.49,0.0,18959.07,18955.74,3.33,0.0,organic,2017,Houston +7,2017-11-12,1.68,25301.84,6158.94,57.13,0.0,19085.77,19085.77,0.0,0.0,organic,2017,Houston +8,2017-11-05,1.82,20153.54,5256.51,49.26,0.0,14847.77,14847.77,0.0,0.0,organic,2017,Houston +9,2017-10-29,1.82,22367.66,5552.59,163.01,0.0,16652.06,16652.06,0.0,0.0,organic,2017,Houston +10,2017-10-22,1.82,23190.15,5592.53,28.86,0.0,17568.76,17568.76,0.0,0.0,organic,2017,Houston +11,2017-10-15,1.82,27406.16,7026.42,70.66,0.0,20309.08,20309.08,0.0,0.0,organic,2017,Houston +12,2017-10-08,1.84,23699.39,7124.21,56.18,0.0,16519.0,16519.0,0.0,0.0,organic,2017,Houston +13,2017-10-01,1.89,23587.7,11150.15,8.31,0.0,12429.24,12429.24,0.0,0.0,organic,2017,Houston +14,2017-09-24,1.91,28280.43,17784.07,43.62,0.0,10452.74,10449.41,3.33,0.0,organic,2017,Houston +15,2017-09-17,1.92,23279.61,21890.54,64.81,0.0,1324.26,1320.93,3.33,0.0,organic,2017,Houston +16,2017-09-10,1.8,12934.91,6537.25,20.37,0.0,6377.29,6377.29,0.0,0.0,organic,2017,Houston +17,2017-09-03,1.85,16832.81,6566.3,58.92,0.0,10207.59,10207.59,0.0,0.0,organic,2017,Houston +18,2017-08-27,1.89,31276.86,11013.0,67.22,0.0,20196.64,20189.98,6.66,0.0,organic,2017,Houston +19,2017-08-20,1.57,18983.06,6268.52,28.56,0.0,12685.98,12565.99,119.99,0.0,organic,2017,Houston +20,2017-08-13,1.39,26155.98,7796.25,22.34,0.0,18337.39,18327.39,10.0,0.0,organic,2017,Houston +21,2017-08-06,1.4,37755.61,10486.19,21.84,0.0,27247.58,27247.58,0.0,0.0,organic,2017,Houston +22,2017-07-30,1.41,34238.08,9681.29,11.89,0.0,24544.9,24541.57,3.33,0.0,organic,2017,Houston +23,2017-07-23,1.41,40100.89,11852.73,26.26,0.0,28221.9,28221.9,0.0,0.0,organic,2017,Houston +24,2017-07-16,1.41,33582.24,9407.53,87.45,0.0,24087.26,24087.26,0.0,0.0,organic,2017,Houston +25,2017-07-09,1.08,45385.29,9747.26,15.97,0.0,35622.06,35612.06,10.0,0.0,organic,2017,Houston +26,2017-07-02,1.21,46201.44,11775.69,189.83,0.0,34235.92,34210.39,25.53,0.0,organic,2017,Houston +27,2017-06-25,1.3,34868.96,10016.43,33.98,0.0,24818.55,24814.11,4.44,0.0,organic,2017,Houston +28,2017-06-18,1.03,42161.02,9790.57,82.0,0.0,32288.45,32199.56,88.89,0.0,organic,2017,Houston +29,2017-06-11,1.02,55725.32,12374.58,31.98,0.0,43318.76,43269.9,48.86,0.0,organic,2017,Houston +30,2017-06-04,1.11,50502.11,10986.31,40.1,0.0,39475.7,39413.32,62.38,0.0,organic,2017,Houston +31,2017-05-28,1.19,44588.87,11166.37,16.15,0.0,33406.35,33339.07,67.28,0.0,organic,2017,Houston +32,2017-05-21,1.39,37108.49,10501.86,12.01,0.0,26594.62,26523.44,71.18,0.0,organic,2017,Houston +33,2017-05-14,1.39,33955.6,10106.86,14.14,0.0,23834.6,23749.3,85.3,0.0,organic,2017,Houston +34,2017-05-07,1.25,36724.25,10306.19,14.17,0.0,26403.89,25913.73,490.16,0.0,organic,2017,Houston +35,2017-04-30,1.18,28118.39,9703.57,38.49,0.0,18376.33,10563.19,7813.14,0.0,organic,2017,Houston +36,2017-04-23,0.91,43226.49,9114.27,69.06,0.0,34043.16,13678.27,20364.89,0.0,organic,2017,Houston +37,2017-04-16,0.88,60261.72,11936.8,133.14,0.0,48191.78,48107.57,84.21,0.0,organic,2017,Houston +38,2017-04-09,0.93,40655.85,9013.96,1885.24,0.0,29756.65,27845.57,1911.08,0.0,organic,2017,Houston +39,2017-04-02,0.92,52873.83,13047.37,55.35,0.0,39771.11,39629.89,141.22,0.0,organic,2017,Houston +40,2017-03-26,0.9,61552.96,14157.0,134.96,0.0,47261.0,47189.51,71.49,0.0,organic,2017,Houston +41,2017-03-19,0.87,50886.04,10922.3,38.53,0.0,39925.21,39122.96,802.25,0.0,organic,2017,Houston +42,2017-03-12,0.92,52810.48,13678.39,40.61,0.0,39091.48,18616.19,20475.29,0.0,organic,2017,Houston +43,2017-03-05,0.92,38739.84,9392.3,44.43,0.0,29303.11,25806.88,3496.23,0.0,organic,2017,Houston +44,2017-02-26,0.91,43969.52,10310.15,22.14,0.0,33637.23,33637.23,0.0,0.0,organic,2017,Houston +45,2017-02-19,0.89,41481.08,8836.46,167.97,0.0,32476.65,32476.65,0.0,0.0,organic,2017,Houston +46,2017-02-12,0.92,33984.51,8043.9,57.63,1.99,25880.99,25880.99,0.0,0.0,organic,2017,Houston +47,2017-02-05,0.93,30857.91,7458.6,18.05,0.0,23381.26,23381.26,0.0,0.0,organic,2017,Houston +48,2017-01-29,0.93,33928.66,7985.23,303.14,0.0,25640.29,25640.29,0.0,0.0,organic,2017,Houston +49,2017-01-22,0.94,35076.15,8152.04,748.06,0.0,26176.05,26176.05,0.0,0.0,organic,2017,Houston +50,2017-01-15,0.95,30698.94,8281.17,13.75,0.0,22404.02,22397.35,6.67,0.0,organic,2017,Houston +51,2017-01-08,1.07,20116.95,9041.57,47.04,0.0,11028.34,11028.34,0.0,0.0,organic,2017,Houston +52,2017-01-01,1.4,10109.46,7550.89,58.71,0.0,2499.86,2499.86,0.0,0.0,organic,2017,Houston +0,2017-12-31,1.45,9437.04,200.76,1231.56,0.0,8004.72,5566.32,2438.4,0.0,organic,2017,Indianapolis +1,2017-12-24,1.4,8639.49,184.79,1688.99,0.0,6753.22,5043.12,1710.1,0.0,organic,2017,Indianapolis +2,2017-12-17,1.38,8332.81,203.03,1370.79,0.0,6714.99,4720.6,1994.39,0.0,organic,2017,Indianapolis +3,2017-12-10,1.42,7090.03,119.59,1112.3,0.0,5846.62,3869.19,1977.43,0.0,organic,2017,Indianapolis +4,2017-12-03,1.42,8244.23,186.51,1155.5,0.0,6891.74,5247.5,1644.24,0.0,organic,2017,Indianapolis +5,2017-11-26,1.44,7481.64,138.61,1004.78,0.0,6296.03,5150.91,1145.12,0.0,organic,2017,Indianapolis +6,2017-11-19,1.42,6294.98,96.95,999.16,0.0,5158.34,3917.63,1240.71,0.0,organic,2017,Indianapolis +7,2017-11-12,1.49,8255.79,186.3,1175.14,0.0,6861.81,4912.09,1949.72,0.0,organic,2017,Indianapolis +8,2017-11-05,1.48,7741.56,141.41,794.48,0.0,6773.19,5320.5,1452.69,0.0,organic,2017,Indianapolis +9,2017-10-29,1.54,6531.55,143.58,1167.86,0.0,5191.42,3953.63,1237.79,0.0,organic,2017,Indianapolis +10,2017-10-22,1.48,9007.77,129.36,1196.31,0.0,7682.1,5690.13,1991.97,0.0,organic,2017,Indianapolis +11,2017-10-15,1.57,10795.73,166.96,1439.7,0.0,9171.38,7466.67,1704.71,0.0,organic,2017,Indianapolis +12,2017-10-08,1.69,8449.91,201.29,1298.56,0.0,6936.73,5440.34,1496.39,0.0,organic,2017,Indianapolis +13,2017-10-01,1.68,7780.31,154.85,1188.01,0.0,6376.61,4453.01,1923.6,0.0,organic,2017,Indianapolis +14,2017-09-24,1.75,7918.96,147.27,1288.65,0.0,6459.71,3930.37,2529.34,0.0,organic,2017,Indianapolis +15,2017-09-17,1.73,8437.05,125.46,1242.04,0.0,7066.78,4410.62,2656.16,0.0,organic,2017,Indianapolis +16,2017-09-10,1.69,8687.85,136.58,1330.54,0.0,7212.8,4741.31,2471.49,0.0,organic,2017,Indianapolis +17,2017-09-03,1.73,8777.48,127.0,1069.32,0.0,7536.91,4241.52,3295.39,0.0,organic,2017,Indianapolis +18,2017-08-27,1.62,8228.93,106.71,1378.46,0.0,6743.76,4350.93,2392.83,0.0,organic,2017,Indianapolis +19,2017-08-20,1.64,8548.97,101.9,1173.7,0.0,7257.6,3982.21,3275.39,0.0,organic,2017,Indianapolis +20,2017-08-13,1.41,8976.09,139.95,1290.13,0.0,7523.68,5339.72,2183.96,0.0,organic,2017,Indianapolis +21,2017-08-06,1.45,8573.19,132.01,1644.3,0.0,6770.01,3840.62,2929.39,0.0,organic,2017,Indianapolis +22,2017-07-30,1.49,9743.5,91.93,1707.14,0.0,7917.13,3929.12,3988.01,0.0,organic,2017,Indianapolis +23,2017-07-23,1.6,10430.79,102.46,2950.41,0.0,7360.84,2825.97,4534.87,0.0,organic,2017,Indianapolis +24,2017-07-16,1.48,10838.58,120.61,3149.03,0.0,6713.33,4037.21,2676.12,0.0,organic,2017,Indianapolis +25,2017-07-09,1.38,6897.96,74.91,1186.42,0.0,5636.63,374.39,5262.24,0.0,organic,2017,Indianapolis +26,2017-07-02,1.51,8181.42,137.4,1251.58,0.0,6792.44,959.33,5833.11,0.0,organic,2017,Indianapolis +27,2017-06-25,1.34,7437.23,92.84,1210.57,0.0,6133.82,415.55,5718.27,0.0,organic,2017,Indianapolis +28,2017-06-18,1.27,9207.8,135.37,1892.44,0.0,7179.99,421.08,6758.91,0.0,organic,2017,Indianapolis +29,2017-06-11,0.84,15511.39,100.36,1100.69,0.0,14310.34,652.77,13657.57,0.0,organic,2017,Indianapolis +30,2017-06-04,1.25,8668.35,152.13,1385.07,0.0,7131.15,1178.64,5952.51,0.0,organic,2017,Indianapolis +31,2017-05-28,1.52,5391.5,153.14,1467.48,0.0,3770.88,1800.43,1970.45,0.0,organic,2017,Indianapolis +32,2017-05-21,0.92,8759.49,76.82,1259.86,0.0,7422.81,2038.26,5384.55,0.0,organic,2017,Indianapolis +33,2017-05-14,1.65,4231.54,128.17,1389.05,0.0,2714.32,1694.89,1019.43,0.0,organic,2017,Indianapolis +34,2017-05-07,1.7,4734.57,137.53,2384.2,0.0,2212.84,423.62,1789.22,0.0,organic,2017,Indianapolis +35,2017-04-30,1.77,2897.1,169.14,1505.98,0.0,1221.98,851.69,370.29,0.0,organic,2017,Indianapolis +36,2017-04-23,1.62,4590.91,174.77,1385.03,0.0,3031.11,2357.22,673.89,0.0,organic,2017,Indianapolis +37,2017-04-16,1.35,6451.24,226.81,1575.87,0.0,4648.56,1685.0,2963.56,0.0,organic,2017,Indianapolis +38,2017-04-09,1.06,7728.45,301.9,1339.32,0.0,6087.23,1287.81,4799.42,0.0,organic,2017,Indianapolis +39,2017-04-02,1.37,5834.51,98.64,1459.63,0.0,4276.24,1778.32,2497.92,0.0,organic,2017,Indianapolis +40,2017-03-26,1.02,7706.59,107.76,1489.93,0.0,6108.9,1398.21,4710.69,0.0,organic,2017,Indianapolis +41,2017-03-19,1.49,4239.49,131.29,1404.03,0.0,2704.17,1463.76,1240.41,0.0,organic,2017,Indianapolis +42,2017-03-12,0.93,8510.89,156.05,1233.41,0.0,7121.43,1404.44,5716.99,0.0,organic,2017,Indianapolis +43,2017-03-05,1.35,4647.85,96.65,1207.83,0.0,3343.37,1370.19,1973.18,0.0,organic,2017,Indianapolis +44,2017-02-26,0.9,6549.33,107.56,1165.45,0.0,5276.32,972.23,4304.09,0.0,organic,2017,Indianapolis +45,2017-02-19,1.24,4037.72,111.0,1233.6,0.0,2693.12,1370.45,1322.67,0.0,organic,2017,Indianapolis +46,2017-02-12,1.15,4313.04,785.28,1389.26,0.0,2138.5,1268.81,869.69,0.0,organic,2017,Indianapolis +47,2017-02-05,1.35,3551.43,568.01,1410.33,0.0,1573.09,959.37,613.72,0.0,organic,2017,Indianapolis +48,2017-01-29,1.04,5571.99,222.81,1495.17,0.0,3854.01,1209.49,2644.52,0.0,organic,2017,Indianapolis +49,2017-01-22,0.84,7308.25,139.19,1459.2,0.0,5709.86,1493.79,4216.07,0.0,organic,2017,Indianapolis +50,2017-01-15,1.31,4021.54,168.82,1536.1,0.0,2316.62,1279.52,1037.1,0.0,organic,2017,Indianapolis +51,2017-01-08,1.6,2916.96,189.89,1297.6,0.0,1429.47,1278.26,151.21,0.0,organic,2017,Indianapolis +52,2017-01-01,1.76,1956.0,147.29,1025.37,0.0,783.34,614.99,168.35,0.0,organic,2017,Indianapolis +0,2017-12-31,1.65,2023.95,44.23,496.69,5.06,1477.97,1431.11,46.86,0.0,organic,2017,Jacksonville +1,2017-12-24,1.87,3639.23,80.45,643.63,3.77,2911.38,1784.19,1127.19,0.0,organic,2017,Jacksonville +2,2017-12-17,1.61,2498.65,48.7,519.43,2.5,1928.02,1901.37,26.65,0.0,organic,2017,Jacksonville +3,2017-12-10,1.59,2646.13,56.22,439.38,2.48,2148.05,2146.67,1.38,0.0,organic,2017,Jacksonville +4,2017-12-03,1.8,2407.14,85.7,576.66,2.45,1742.33,1448.88,293.45,0.0,organic,2017,Jacksonville +5,2017-11-26,1.87,2926.9,64.58,550.77,1.22,2310.33,1527.77,782.56,0.0,organic,2017,Jacksonville +6,2017-11-19,1.94,3405.61,82.69,757.57,3.65,2561.7,1519.99,1041.71,0.0,organic,2017,Jacksonville +7,2017-11-12,1.89,2438.21,66.6,547.37,2.42,1821.82,1792.22,29.6,0.0,organic,2017,Jacksonville +8,2017-11-05,2.04,4224.3,115.85,890.62,2.41,3215.42,1938.89,1276.53,0.0,organic,2017,Jacksonville +9,2017-10-29,2.16,2726.34,102.22,748.02,4.81,1871.29,758.89,1112.4,0.0,organic,2017,Jacksonville +10,2017-10-22,2.02,2596.43,67.32,531.36,7.21,1990.54,1812.23,178.31,0.0,organic,2017,Jacksonville +11,2017-10-15,2.55,1421.74,60.21,546.72,4.82,809.99,806.66,3.33,0.0,organic,2017,Jacksonville +12,2017-10-08,2.31,1841.09,54.21,463.78,8.43,1314.67,1314.67,0.0,0.0,organic,2017,Jacksonville +13,2017-10-01,2.99,2819.87,174.13,703.73,12.01,1930.0,1736.97,193.03,0.0,organic,2017,Jacksonville +14,2017-09-24,2.57,5040.98,187.28,1310.93,0.0,3542.77,1314.76,2228.01,0.0,organic,2017,Jacksonville +15,2017-09-17,2.58,3993.7,226.97,907.87,0.0,2858.86,786.67,2072.19,0.0,organic,2017,Jacksonville +16,2017-09-10,2.35,4093.34,195.54,665.8,0.0,3232.0,2181.65,1050.35,0.0,organic,2017,Jacksonville +17,2017-09-03,2.42,3200.72,195.87,675.34,4.81,2324.7,2289.98,34.72,0.0,organic,2017,Jacksonville +18,2017-08-27,2.45,3332.02,332.58,1007.3,0.0,1992.14,1988.81,3.33,0.0,organic,2017,Jacksonville +19,2017-08-20,2.48,2855.78,302.4,1483.2,2.4,1067.78,1067.78,0.0,0.0,organic,2017,Jacksonville +20,2017-08-13,2.0,1764.35,87.99,447.2,3.62,1225.54,1222.21,3.33,0.0,organic,2017,Jacksonville +21,2017-08-06,2.09,1552.26,83.93,489.38,1.18,977.77,977.77,0.0,0.0,organic,2017,Jacksonville +22,2017-07-30,1.78,2426.94,114.54,511.3,0.0,1801.1,1784.43,16.67,0.0,organic,2017,Jacksonville +23,2017-07-23,2.04,1971.67,121.1,583.91,0.0,1266.66,1266.66,0.0,0.0,organic,2017,Jacksonville +24,2017-07-16,2.11,1646.15,73.93,553.26,1.19,1017.77,1014.44,3.33,0.0,organic,2017,Jacksonville +25,2017-07-09,2.06,2988.47,166.12,1342.09,3.59,1476.67,1476.67,0.0,0.0,organic,2017,Jacksonville +26,2017-07-02,2.25,4778.95,435.04,2975.76,3.6,1364.55,1357.88,6.67,0.0,organic,2017,Jacksonville +27,2017-06-25,2.25,4087.75,512.79,2421.93,0.0,1153.03,1149.69,3.34,0.0,organic,2017,Jacksonville +28,2017-06-18,2.23,4177.79,551.12,2353.13,2.42,1271.12,1269.44,1.68,0.0,organic,2017,Jacksonville +29,2017-06-11,2.12,2568.09,984.87,251.09,3.66,1328.47,1328.47,0.0,0.0,organic,2017,Jacksonville +30,2017-06-04,2.2,4409.48,1263.85,126.02,7.27,3012.34,3012.34,0.0,0.0,organic,2017,Jacksonville +31,2017-05-28,2.09,5786.49,1322.11,165.26,6.12,4293.0,4070.95,222.05,0.0,organic,2017,Jacksonville +32,2017-05-21,2.07,5056.03,1260.8,146.98,8.72,3639.53,3252.01,387.52,0.0,organic,2017,Jacksonville +33,2017-05-14,2.22,4709.07,3021.33,242.81,8.76,1436.17,1433.39,2.78,0.0,organic,2017,Jacksonville +34,2017-05-07,1.75,3987.53,1182.72,158.85,2.5,2643.46,620.0,2023.46,0.0,organic,2017,Jacksonville +35,2017-04-30,2.07,2473.97,1050.08,127.02,0.0,1296.87,525.55,771.32,0.0,organic,2017,Jacksonville +36,2017-04-23,1.72,4125.63,2785.0,291.37,6.31,1042.95,1023.33,19.62,0.0,organic,2017,Jacksonville +37,2017-04-16,2.07,3193.74,736.16,214.13,11.4,2232.05,593.33,1638.72,0.0,organic,2017,Jacksonville +38,2017-04-09,2.07,2942.87,1083.93,337.22,12.68,1509.04,424.4,1084.64,0.0,organic,2017,Jacksonville +39,2017-04-02,1.43,6642.01,780.86,168.87,7.62,5684.66,3139.11,2545.55,0.0,organic,2017,Jacksonville +40,2017-03-26,1.47,4455.27,682.39,192.24,10.18,3570.46,1867.31,1703.15,0.0,organic,2017,Jacksonville +41,2017-03-19,1.58,3608.19,581.24,106.6,5.08,2915.27,568.89,2346.38,0.0,organic,2017,Jacksonville +42,2017-03-12,1.7,3349.83,635.64,115.92,5.1,2593.17,345.56,2247.61,0.0,organic,2017,Jacksonville +43,2017-03-05,1.67,2930.17,854.82,95.83,1.28,1978.24,141.11,1837.13,0.0,organic,2017,Jacksonville +44,2017-02-26,1.68,3160.21,749.78,118.04,0.0,2292.39,323.54,1968.85,0.0,organic,2017,Jacksonville +45,2017-02-19,1.74,3179.09,857.14,147.79,1.27,2172.89,1136.68,1036.21,0.0,organic,2017,Jacksonville +46,2017-02-12,1.48,4296.53,757.2,137.22,0.0,3402.11,2528.9,873.21,0.0,organic,2017,Jacksonville +47,2017-02-05,1.72,3417.56,913.99,112.02,6.36,2385.19,464.44,1920.75,0.0,organic,2017,Jacksonville +48,2017-01-29,1.39,3608.79,238.27,58.03,16.05,3296.44,432.22,2864.22,0.0,organic,2017,Jacksonville +49,2017-01-22,1.23,4964.5,296.3,67.34,20.81,4580.05,1396.67,3183.38,0.0,organic,2017,Jacksonville +50,2017-01-15,1.25,4618.57,338.85,97.16,14.57,4167.99,1172.22,2995.77,0.0,organic,2017,Jacksonville +51,2017-01-08,1.26,4079.99,325.5,108.5,0.0,3645.99,1050.0,2595.99,0.0,organic,2017,Jacksonville +52,2017-01-01,1.24,3707.67,245.43,38.31,2.39,3421.54,910.0,2511.54,0.0,organic,2017,Jacksonville +0,2017-12-31,1.55,9413.05,1479.66,1733.93,0.0,6199.46,6190.31,9.15,0.0,organic,2017,LasVegas +1,2017-12-24,1.89,8393.5,1385.31,1425.12,0.0,5583.07,5555.33,27.74,0.0,organic,2017,LasVegas +2,2017-12-17,1.94,7541.05,1104.72,1479.8,0.0,4956.53,4932.2,24.33,0.0,organic,2017,LasVegas +3,2017-12-10,1.68,8602.41,1318.35,1602.11,0.0,5681.95,5651.78,30.17,0.0,organic,2017,LasVegas +4,2017-12-03,1.56,8048.35,1471.55,1226.52,0.0,5350.28,5330.41,19.87,0.0,organic,2017,LasVegas +5,2017-11-26,1.95,6599.52,1613.28,1302.68,0.0,3683.56,3683.56,0.0,0.0,organic,2017,LasVegas +6,2017-11-19,1.95,7753.84,1387.57,1452.61,0.0,4913.66,4894.09,19.57,0.0,organic,2017,LasVegas +7,2017-11-12,1.79,8252.87,1320.88,1398.84,0.0,5533.15,5504.25,28.9,0.0,organic,2017,LasVegas +8,2017-11-05,1.83,7034.87,1540.11,1637.33,0.0,3857.43,3852.92,4.51,0.0,organic,2017,LasVegas +9,2017-10-29,1.93,7138.49,1136.5,1084.34,0.0,4917.65,4908.26,9.39,0.0,organic,2017,LasVegas +10,2017-10-22,1.83,7131.28,1255.39,358.12,0.0,5517.77,5486.54,31.23,0.0,organic,2017,LasVegas +11,2017-10-15,1.99,6132.37,1113.04,173.88,0.0,4845.45,4780.24,65.21,0.0,organic,2017,LasVegas +12,2017-10-08,2.25,6511.51,1223.09,194.14,0.0,5094.28,5038.49,55.79,0.0,organic,2017,LasVegas +13,2017-10-01,2.24,5291.89,1055.34,115.35,0.0,4121.2,4037.32,83.88,0.0,organic,2017,LasVegas +14,2017-09-24,2.25,5491.29,1048.15,145.0,0.0,4298.14,4281.47,16.67,0.0,organic,2017,LasVegas +15,2017-09-17,2.39,5487.1,1148.88,131.26,0.0,4206.96,4200.29,6.67,0.0,organic,2017,LasVegas +16,2017-09-10,2.59,6984.87,1027.67,1970.77,0.0,3986.43,3968.34,18.09,0.0,organic,2017,LasVegas +17,2017-09-03,2.64,6091.55,905.07,1999.56,0.0,3186.92,3120.9,66.02,0.0,organic,2017,LasVegas +18,2017-08-27,2.47,10410.14,1804.67,2506.22,0.0,6099.25,6061.61,37.64,0.0,organic,2017,LasVegas +19,2017-08-20,2.43,7716.25,1214.19,2783.49,0.0,3718.57,3699.15,19.42,0.0,organic,2017,LasVegas +20,2017-08-13,2.05,6042.06,913.51,2538.57,0.0,2589.98,2520.14,69.84,0.0,organic,2017,LasVegas +21,2017-08-06,1.74,10124.07,1959.22,2514.13,0.0,5650.72,5623.09,27.63,0.0,organic,2017,LasVegas +22,2017-07-30,1.72,10422.68,1859.58,2464.2,0.0,6098.9,6056.82,42.08,0.0,organic,2017,LasVegas +23,2017-07-23,1.89,8527.21,1379.57,2862.27,0.0,4285.37,4248.87,36.5,0.0,organic,2017,LasVegas +24,2017-07-16,1.89,8618.45,1296.04,2815.04,0.0,4507.37,4443.63,63.74,0.0,organic,2017,LasVegas +25,2017-07-09,1.82,11229.95,1693.33,4245.64,0.0,5290.98,4986.88,304.1,0.0,organic,2017,LasVegas +26,2017-07-02,1.73,11015.7,1952.02,2930.62,0.0,6133.06,4359.15,1773.91,0.0,organic,2017,LasVegas +27,2017-06-25,1.67,10909.04,1963.82,3093.37,0.0,5851.85,2404.38,3447.47,0.0,organic,2017,LasVegas +28,2017-06-18,1.76,10353.67,1706.85,3322.38,0.0,5324.44,1909.65,3414.79,0.0,organic,2017,LasVegas +29,2017-06-11,1.74,11473.1,2058.67,2749.59,0.0,6664.84,2823.89,3840.95,0.0,organic,2017,LasVegas +30,2017-06-04,1.72,13517.21,2283.25,2943.11,0.0,8290.85,4071.86,4218.99,0.0,organic,2017,LasVegas +31,2017-05-28,1.74,9789.43,1872.87,2730.95,1.28,5184.33,943.54,4240.79,0.0,organic,2017,LasVegas +32,2017-05-21,1.95,8671.15,2887.66,3339.62,0.0,2443.87,753.66,1690.21,0.0,organic,2017,LasVegas +33,2017-05-14,1.89,8090.29,3039.0,2852.86,0.0,2198.43,560.0,1638.43,0.0,organic,2017,LasVegas +34,2017-05-07,2.03,8314.41,2767.64,3687.6,0.0,1859.17,389.78,1469.39,0.0,organic,2017,LasVegas +35,2017-04-30,1.98,7545.18,1049.39,4429.33,2.58,2063.88,437.22,1626.66,0.0,organic,2017,LasVegas +36,2017-04-23,1.67,9911.75,1121.34,5184.26,0.0,3606.15,888.21,2717.94,0.0,organic,2017,LasVegas +37,2017-04-16,1.32,14406.27,1471.8,3773.11,0.0,9161.36,8550.64,610.72,0.0,organic,2017,LasVegas +38,2017-04-09,1.24,17575.92,1623.51,3932.58,0.0,12019.83,11935.27,84.56,0.0,organic,2017,LasVegas +39,2017-04-02,1.19,17183.94,1691.21,3619.37,0.0,11873.36,11740.27,133.09,0.0,organic,2017,LasVegas +40,2017-03-26,1.21,17776.08,1879.08,4266.97,0.0,11630.03,11468.09,161.94,0.0,organic,2017,LasVegas +41,2017-03-19,1.27,17048.64,2548.8,4383.36,0.0,10116.48,7885.12,2231.36,0.0,organic,2017,LasVegas +42,2017-03-12,1.16,21402.16,2478.71,4691.98,0.0,14231.47,13805.95,425.52,0.0,organic,2017,LasVegas +43,2017-03-05,1.01,20701.89,2110.61,5897.56,0.0,12693.72,12277.2,416.52,0.0,organic,2017,LasVegas +44,2017-02-26,1.09,25937.71,2174.39,9684.7,0.0,14078.62,13934.92,143.7,0.0,organic,2017,LasVegas +45,2017-02-19,1.15,17954.08,1900.85,3776.59,0.0,12276.64,11577.52,699.12,0.0,organic,2017,LasVegas +46,2017-02-12,1.18,21977.83,2228.74,5528.66,2.66,14217.77,14188.24,29.53,0.0,organic,2017,LasVegas +47,2017-02-05,1.23,17104.45,1662.7,4924.57,0.0,10517.18,10505.41,11.77,0.0,organic,2017,LasVegas +48,2017-01-29,1.31,11638.55,1129.81,3211.73,9.28,7287.73,7258.26,29.47,0.0,organic,2017,LasVegas +49,2017-01-22,1.34,10312.75,1117.76,3189.79,0.0,6005.2,5992.65,12.55,0.0,organic,2017,LasVegas +50,2017-01-15,1.39,9442.83,941.79,2918.63,0.0,5582.41,5582.41,0.0,0.0,organic,2017,LasVegas +51,2017-01-08,1.22,10641.19,1287.54,2376.07,0.0,6977.58,6938.25,39.33,0.0,organic,2017,LasVegas +52,2017-01-01,1.36,9563.83,997.48,2950.94,0.0,5615.41,5478.55,136.86,0.0,organic,2017,LasVegas +0,2017-12-31,1.74,78872.75,15369.81,20722.83,0.0,42780.11,42693.41,86.7,0.0,organic,2017,LosAngeles +1,2017-12-24,1.8,69804.27,8580.98,24465.55,0.0,36757.74,36706.18,51.56,0.0,organic,2017,LosAngeles +2,2017-12-17,1.7,64716.36,9069.25,24736.13,0.0,30910.98,30852.65,58.33,0.0,organic,2017,LosAngeles +3,2017-12-10,1.78,69862.39,15944.09,19669.57,0.0,34248.73,34216.92,31.81,0.0,organic,2017,LosAngeles +4,2017-12-03,1.77,71010.03,7976.44,23155.32,0.0,39878.27,39864.21,14.06,0.0,organic,2017,LosAngeles +5,2017-11-26,2.01,59523.55,6444.55,21218.64,0.0,31860.36,31835.6,24.76,0.0,organic,2017,LosAngeles +6,2017-11-19,1.99,61451.23,6477.51,19956.35,0.0,35017.37,35003.39,13.98,0.0,organic,2017,LosAngeles +7,2017-11-12,1.98,62337.67,8390.23,17805.25,0.0,36142.19,36097.73,44.46,0.0,organic,2017,LosAngeles +8,2017-11-05,1.72,73723.79,7315.42,31324.47,0.0,35083.9,35048.65,35.25,0.0,organic,2017,LosAngeles +9,2017-10-29,1.99,67050.78,8078.35,19540.98,0.0,39431.45,39411.01,20.44,0.0,organic,2017,LosAngeles +10,2017-10-22,1.99,68637.55,7845.81,20466.32,0.0,40325.42,40286.28,39.14,0.0,organic,2017,LosAngeles +11,2017-10-15,2.12,57490.8,6151.13,16592.03,0.0,34747.64,34691.59,56.05,0.0,organic,2017,LosAngeles +12,2017-10-08,2.28,59194.04,5549.94,22828.93,0.0,30815.17,30769.51,45.66,0.0,organic,2017,LosAngeles +13,2017-10-01,2.1,65405.61,8450.82,26774.86,0.0,30179.93,30158.69,21.24,0.0,organic,2017,LosAngeles +14,2017-09-24,2.03,73696.3,12051.52,29225.85,1.59,32417.34,32377.02,40.32,0.0,organic,2017,LosAngeles +15,2017-09-17,2.32,64855.01,12786.21,24889.5,0.0,27179.3,27160.25,19.05,0.0,organic,2017,LosAngeles +16,2017-09-10,2.32,64680.12,11202.9,25484.11,0.0,27993.11,27987.79,5.32,0.0,organic,2017,LosAngeles +17,2017-09-03,2.11,70419.78,10621.24,27740.88,0.0,32057.66,32041.66,16.0,0.0,organic,2017,LosAngeles +18,2017-08-27,2.37,63222.41,11685.86,20166.84,0.0,31369.71,31337.34,32.37,0.0,organic,2017,LosAngeles +19,2017-08-20,2.16,75146.55,10649.2,18026.76,0.0,46470.59,46450.59,20.0,0.0,organic,2017,LosAngeles +20,2017-08-13,2.04,72817.55,10764.58,16810.19,0.0,45242.78,45097.35,145.43,0.0,organic,2017,LosAngeles +21,2017-08-06,2.1,67080.63,9064.57,19027.84,0.0,38988.22,38021.3,966.92,0.0,organic,2017,LosAngeles +22,2017-07-30,2.1,67790.94,9903.04,18850.52,0.0,39037.38,39001.29,36.09,0.0,organic,2017,LosAngeles +23,2017-07-23,2.07,70179.47,9095.61,24077.08,0.0,37006.78,36988.35,18.43,0.0,organic,2017,LosAngeles +24,2017-07-16,2.02,75021.72,10041.65,24449.24,0.0,40530.83,40510.47,20.36,0.0,organic,2017,LosAngeles +25,2017-07-09,1.42,120562.92,11868.34,28851.85,0.0,79842.73,79833.93,8.8,0.0,organic,2017,LosAngeles +26,2017-07-02,1.46,109111.93,11056.28,28190.18,0.0,69865.47,69737.02,128.45,0.0,organic,2017,LosAngeles +27,2017-06-25,1.37,109872.63,10376.87,24717.88,0.0,74777.88,72884.61,1893.27,0.0,organic,2017,LosAngeles +28,2017-06-18,1.37,108808.01,11413.1,24268.07,0.0,73126.84,66783.78,6343.06,0.0,organic,2017,LosAngeles +29,2017-06-11,1.35,106703.23,11619.31,25530.21,0.0,69553.71,69461.64,92.07,0.0,organic,2017,LosAngeles +30,2017-06-04,1.28,128923.07,12603.26,37820.46,0.0,78499.35,78481.95,17.4,0.0,organic,2017,LosAngeles +31,2017-05-28,1.37,122886.52,11731.8,29593.14,0.0,81561.58,81486.37,75.21,0.0,organic,2017,LosAngeles +32,2017-05-21,1.42,114120.43,10947.18,30522.45,0.0,72650.8,72518.58,132.22,0.0,organic,2017,LosAngeles +33,2017-05-14,1.4,105965.36,11688.57,28601.28,0.0,65675.51,64377.29,1298.22,0.0,organic,2017,LosAngeles +34,2017-05-07,1.31,137484.97,12550.12,38336.01,0.0,86598.84,86014.32,584.52,0.0,organic,2017,LosAngeles +35,2017-04-30,1.25,127255.45,10894.08,29816.95,1.59,86542.83,83579.29,2963.54,0.0,organic,2017,LosAngeles +36,2017-04-23,1.25,127222.31,12241.09,29711.25,0.0,85269.97,75004.87,10265.1,0.0,organic,2017,LosAngeles +37,2017-04-16,1.31,122876.89,10922.54,28994.48,1.6,82958.27,76233.25,6725.02,0.0,organic,2017,LosAngeles +38,2017-04-09,1.3,118305.22,13906.18,29159.75,6.4,75232.89,70010.1,5222.79,0.0,organic,2017,LosAngeles +39,2017-04-02,1.3,122384.82,13732.06,30991.3,17.58,77643.88,74785.28,2858.6,0.0,organic,2017,LosAngeles +40,2017-03-26,1.33,125710.73,17237.4,32193.35,7.96,76272.02,73831.31,2440.71,0.0,organic,2017,LosAngeles +41,2017-03-19,1.25,135636.51,11812.81,38905.35,19.1,84899.25,69061.91,15837.34,0.0,organic,2017,LosAngeles +42,2017-03-12,1.19,143848.91,12242.8,37476.71,1.6,94127.8,83175.87,10951.93,0.0,organic,2017,LosAngeles +43,2017-03-05,1.07,146065.71,12954.25,28009.38,6.45,105095.63,77383.56,27712.07,0.0,organic,2017,LosAngeles +44,2017-02-26,1.05,143520.74,12328.78,30665.47,3.2,100523.29,87365.6,13157.69,0.0,organic,2017,LosAngeles +45,2017-02-19,1.19,115734.75,13178.37,33656.51,1.61,68898.26,68066.56,831.7,0.0,organic,2017,LosAngeles +46,2017-02-12,1.17,95227.6,12496.33,24567.22,10.99,58153.06,56547.41,1605.65,0.0,organic,2017,LosAngeles +47,2017-02-05,1.19,91687.96,15626.93,34864.22,0.0,41196.81,40279.83,916.98,0.0,organic,2017,LosAngeles +48,2017-01-29,1.09,99597.27,16192.49,29310.8,1.56,54092.42,42914.14,11178.28,0.0,organic,2017,LosAngeles +49,2017-01-22,1.27,77418.61,10912.94,21788.2,3.12,44714.35,41824.67,2889.68,0.0,organic,2017,LosAngeles +50,2017-01-15,1.3,86845.72,13881.57,25602.56,3.12,47358.47,46301.47,1057.0,0.0,organic,2017,LosAngeles +51,2017-01-08,1.19,112953.28,18961.66,33123.81,3.12,60864.69,57800.85,3063.84,0.0,organic,2017,LosAngeles +52,2017-01-01,1.07,99950.32,15830.84,28951.76,1.56,55166.16,43159.57,12006.59,0.0,organic,2017,LosAngeles +0,2017-12-31,1.16,5828.21,1.27,755.49,0.0,5071.45,3623.32,1448.13,0.0,organic,2017,Louisville +1,2017-12-24,1.58,3976.73,0.0,977.13,0.0,2999.6,1340.39,1659.21,0.0,organic,2017,Louisville +2,2017-12-17,1.57,3861.18,1.0,851.14,0.0,3009.04,1284.9,1724.14,0.0,organic,2017,Louisville +3,2017-12-10,1.54,2491.03,0.0,723.86,0.0,1767.17,1109.76,657.41,0.0,organic,2017,Louisville +4,2017-12-03,1.59,2597.34,0.0,941.51,0.0,1655.83,964.23,691.6,0.0,organic,2017,Louisville +5,2017-11-26,1.63,2510.26,0.0,930.33,0.0,1579.93,1182.6,397.33,0.0,organic,2017,Louisville +6,2017-11-19,1.62,2317.4,9.09,901.48,0.0,1406.83,1070.55,336.28,0.0,organic,2017,Louisville +7,2017-11-12,1.69,2717.83,1.3,944.43,0.0,1772.1,1111.38,660.72,0.0,organic,2017,Louisville +8,2017-11-05,1.7,3013.74,5.18,756.67,0.0,2251.89,1658.64,593.25,0.0,organic,2017,Louisville +9,2017-10-29,1.84,3691.45,1.3,740.67,0.0,2949.48,1739.58,1209.9,0.0,organic,2017,Louisville +10,2017-10-22,1.82,4195.97,9.09,1048.94,0.0,3137.94,1733.01,1404.93,0.0,organic,2017,Louisville +11,2017-10-15,1.88,3665.19,2.59,1120.58,0.0,2542.02,1647.11,894.91,0.0,organic,2017,Louisville +12,2017-10-08,2.15,3097.7,1.29,1195.97,0.0,1900.44,1173.79,726.65,0.0,organic,2017,Louisville +13,2017-10-01,2.29,3102.3,0.0,999.73,0.0,2102.57,1289.23,813.34,0.0,organic,2017,Louisville +14,2017-09-24,2.21,4156.59,2.59,1074.42,0.0,3079.58,1064.51,2015.07,0.0,organic,2017,Louisville +15,2017-09-17,2.12,3779.04,9.05,993.21,0.0,2776.78,713.34,2063.44,0.0,organic,2017,Louisville +16,2017-09-10,2.0,3517.63,2.58,948.75,0.0,2566.3,1066.09,1500.21,0.0,organic,2017,Louisville +17,2017-09-03,1.98,3581.73,7.74,1116.53,0.0,2457.46,835.36,1622.1,0.0,organic,2017,Louisville +18,2017-08-27,1.9,3628.25,1.28,973.22,0.0,2653.75,1313.78,1339.97,0.0,organic,2017,Louisville +19,2017-08-20,1.86,3115.79,0.0,1114.13,0.0,2001.66,971.97,1029.69,0.0,organic,2017,Louisville +20,2017-08-13,1.67,2741.48,0.0,1252.59,0.0,1488.89,1102.05,386.84,0.0,organic,2017,Louisville +21,2017-08-06,1.73,3557.1,0.0,1226.78,0.0,2330.32,729.74,1600.58,0.0,organic,2017,Louisville +22,2017-07-30,1.56,4666.42,0.0,1153.38,0.0,3513.04,1403.33,2109.71,0.0,organic,2017,Louisville +23,2017-07-23,1.6,5061.01,0.0,1441.91,0.0,3619.1,868.53,2750.57,0.0,organic,2017,Louisville +24,2017-07-16,1.55,4638.85,0.0,1527.56,0.0,3111.29,924.38,2186.91,0.0,organic,2017,Louisville +25,2017-07-09,1.61,2453.16,0.0,1551.16,0.0,902.0,11.67,890.33,0.0,organic,2017,Louisville +26,2017-07-02,1.26,5513.09,0.0,1338.51,0.0,4174.58,30.22,4144.36,0.0,organic,2017,Louisville +27,2017-06-25,1.45,4520.86,0.0,1490.94,0.0,3029.92,10.0,3019.92,0.0,organic,2017,Louisville +28,2017-06-18,1.19,4866.2,0.0,1421.83,0.0,3444.37,6.67,3437.7,0.0,organic,2017,Louisville +29,2017-06-11,1.0,6507.2,0.0,1633.09,0.0,4874.11,50.0,4824.11,0.0,organic,2017,Louisville +30,2017-06-04,1.34,4417.78,0.0,1505.75,0.0,2912.03,457.22,2454.81,0.0,organic,2017,Louisville +31,2017-05-28,1.32,4451.69,0.0,1185.02,0.0,3266.67,763.33,2503.34,0.0,organic,2017,Louisville +32,2017-05-21,1.29,4745.15,0.0,1200.84,0.0,3544.31,577.77,2966.54,0.0,organic,2017,Louisville +33,2017-05-14,1.15,5721.61,0.0,1188.69,0.0,4532.92,620.55,3912.37,0.0,organic,2017,Louisville +34,2017-05-07,1.48,3514.92,0.0,1570.14,0.0,1944.78,445.56,1499.22,0.0,organic,2017,Louisville +35,2017-04-30,1.4,5166.23,0.0,1639.61,0.0,3526.62,234.45,3292.17,0.0,organic,2017,Louisville +36,2017-04-23,1.59,3343.82,0.0,1507.19,0.0,1836.63,336.67,1499.96,0.0,organic,2017,Louisville +37,2017-04-16,1.34,4904.41,5.55,1947.76,0.0,2951.1,752.22,2198.88,0.0,organic,2017,Louisville +38,2017-04-09,1.91,2026.06,0.0,1553.23,0.0,472.83,325.56,147.27,0.0,organic,2017,Louisville +39,2017-04-02,1.38,3166.23,0.0,1676.19,0.0,1490.04,390.0,1100.04,0.0,organic,2017,Louisville +40,2017-03-26,0.74,6459.97,15.0,1354.56,0.0,5090.41,385.56,4704.85,0.0,organic,2017,Louisville +41,2017-03-19,0.95,4433.03,15.67,1395.21,0.0,3022.15,372.23,2649.92,0.0,organic,2017,Louisville +42,2017-03-12,0.65,7708.22,6.28,1361.74,0.0,6340.2,273.33,6066.87,0.0,organic,2017,Louisville +43,2017-03-05,0.56,9801.7,9.25,1302.28,0.0,8490.17,306.66,8183.51,0.0,organic,2017,Louisville +44,2017-02-26,0.77,5481.89,12.0,1257.03,0.0,4212.86,402.22,3810.64,0.0,organic,2017,Louisville +45,2017-02-19,0.56,10571.3,0.0,1277.78,0.0,9293.52,287.77,9005.75,0.0,organic,2017,Louisville +46,2017-02-12,0.8,5288.74,4.0,1259.97,0.0,4024.77,313.33,3711.44,0.0,organic,2017,Louisville +47,2017-02-05,1.36,2108.66,0.0,991.67,0.0,1116.99,441.11,675.88,0.0,organic,2017,Louisville +48,2017-01-29,1.45,1469.92,0.0,938.08,0.0,531.84,193.33,338.51,0.0,organic,2017,Louisville +49,2017-01-22,1.31,2097.61,0.0,1006.17,0.0,1091.44,536.66,554.78,0.0,organic,2017,Louisville +50,2017-01-15,1.6,1959.1,13.85,1318.58,0.0,626.67,626.67,0.0,0.0,organic,2017,Louisville +51,2017-01-08,1.55,1822.94,0.0,1157.89,0.0,665.05,656.66,8.39,0.0,organic,2017,Louisville +52,2017-01-01,1.59,1913.69,5.04,1395.31,0.0,513.34,513.34,0.0,0.0,organic,2017,Louisville +0,2017-12-31,1.48,6518.64,24.84,333.44,0.0,6160.36,6147.77,12.59,0.0,organic,2017,MiamiFtLauderdale +1,2017-12-24,1.59,8462.86,88.73,720.93,0.0,7653.2,6896.84,756.36,0.0,organic,2017,MiamiFtLauderdale +2,2017-12-17,1.59,8486.81,232.71,636.22,0.0,7617.88,7027.76,590.12,0.0,organic,2017,MiamiFtLauderdale +3,2017-12-10,1.48,5325.8,31.72,265.21,0.0,5028.87,5024.43,4.44,0.0,organic,2017,MiamiFtLauderdale +4,2017-12-03,1.58,5302.15,50.56,397.82,0.0,4853.77,4836.67,17.1,0.0,organic,2017,MiamiFtLauderdale +5,2017-11-26,1.67,6302.07,96.13,606.44,0.0,5599.5,5128.9,470.6,0.0,organic,2017,MiamiFtLauderdale +6,2017-11-19,1.63,5873.34,61.31,490.32,0.0,5321.71,5227.78,93.93,0.0,organic,2017,MiamiFtLauderdale +7,2017-11-12,1.94,6563.71,126.7,908.55,0.0,5528.46,4652.23,876.23,0.0,organic,2017,MiamiFtLauderdale +8,2017-11-05,1.96,6103.24,64.69,911.14,0.0,5127.41,4226.66,900.75,0.0,organic,2017,MiamiFtLauderdale +9,2017-10-29,1.84,5595.86,32.98,424.67,0.0,5138.21,4908.88,229.33,0.0,organic,2017,MiamiFtLauderdale +10,2017-10-22,2.19,4842.31,139.07,728.38,0.0,3974.86,3068.61,906.25,0.0,organic,2017,MiamiFtLauderdale +11,2017-10-15,2.62,1100.1,24.83,384.79,0.0,690.48,657.77,32.71,0.0,organic,2017,MiamiFtLauderdale +12,2017-10-08,1.97,3758.3,98.7,435.16,0.0,3224.44,3221.11,3.33,0.0,organic,2017,MiamiFtLauderdale +13,2017-10-01,2.09,2975.53,33.26,445.6,0.0,2496.67,2496.67,0.0,0.0,organic,2017,MiamiFtLauderdale +14,2017-09-24,1.9,2978.57,29.29,319.28,0.0,2630.0,2630.0,0.0,0.0,organic,2017,MiamiFtLauderdale +15,2017-09-17,1.76,1306.18,44.29,15.22,0.0,1246.67,1246.67,0.0,0.0,organic,2017,MiamiFtLauderdale +16,2017-09-10,1.74,3299.73,30.31,8.31,0.0,3261.11,3257.78,3.33,0.0,organic,2017,MiamiFtLauderdale +17,2017-09-03,1.67,2647.99,36.32,2.78,0.0,2608.89,2602.23,6.66,0.0,organic,2017,MiamiFtLauderdale +18,2017-08-27,1.55,3393.39,15.07,2.77,0.0,3375.55,3375.55,0.0,0.0,organic,2017,MiamiFtLauderdale +19,2017-08-20,1.48,4569.66,25.5,20.83,0.0,4523.33,4523.33,0.0,0.0,organic,2017,MiamiFtLauderdale +20,2017-08-13,1.47,4136.64,16.34,29.2,0.0,4091.1,4087.77,3.33,0.0,organic,2017,MiamiFtLauderdale +21,2017-08-06,1.5,4140.12,11.67,44.02,0.0,4084.43,4073.33,11.1,0.0,organic,2017,MiamiFtLauderdale +22,2017-07-30,1.38,4635.79,10.67,17.35,0.0,4607.77,4607.77,0.0,0.0,organic,2017,MiamiFtLauderdale +23,2017-07-23,1.41,4954.86,22.07,27.4,0.0,4905.39,4902.06,3.33,0.0,organic,2017,MiamiFtLauderdale +24,2017-07-16,1.44,5473.09,6.65,14.62,0.0,5451.82,5448.49,3.33,0.0,organic,2017,MiamiFtLauderdale +25,2017-07-09,1.76,4404.15,89.08,521.03,0.0,3794.04,3790.71,3.33,0.0,organic,2017,MiamiFtLauderdale +26,2017-07-02,1.92,6241.89,267.85,1709.97,0.0,4264.07,4257.4,6.67,0.0,organic,2017,MiamiFtLauderdale +27,2017-06-25,2.02,5274.97,325.3,1885.23,0.0,3064.44,3061.11,3.33,0.0,organic,2017,MiamiFtLauderdale +28,2017-06-18,1.88,6480.65,304.94,1510.72,0.0,4664.99,4664.99,0.0,0.0,organic,2017,MiamiFtLauderdale +29,2017-06-11,1.89,6104.29,837.58,250.77,0.0,5015.94,5015.94,0.0,0.0,organic,2017,MiamiFtLauderdale +30,2017-06-04,1.97,5428.05,1070.87,139.61,0.0,4217.57,4215.74,1.83,0.0,organic,2017,MiamiFtLauderdale +31,2017-05-28,1.88,6000.97,1096.73,86.78,0.0,4817.46,4815.63,1.83,0.0,organic,2017,MiamiFtLauderdale +32,2017-05-21,1.58,6177.03,515.52,81.14,0.0,5580.37,4806.82,773.55,0.0,organic,2017,MiamiFtLauderdale +33,2017-05-14,1.42,5883.23,279.85,84.9,0.0,5518.48,3846.67,1671.81,0.0,organic,2017,MiamiFtLauderdale +34,2017-05-07,2.08,3542.87,838.16,73.77,0.0,2630.94,1937.78,693.16,0.0,organic,2017,MiamiFtLauderdale +35,2017-04-30,2.4,3477.7,1154.19,62.02,0.0,2261.49,2250.0,11.49,0.0,organic,2017,MiamiFtLauderdale +36,2017-04-23,2.36,4011.49,1362.77,71.28,0.0,2577.44,2540.0,37.44,0.0,organic,2017,MiamiFtLauderdale +37,2017-04-16,2.81,3197.36,738.26,69.63,0.0,2389.47,1481.11,908.36,0.0,organic,2017,MiamiFtLauderdale +38,2017-04-09,2.32,3748.67,317.51,25.8,0.0,3405.36,1365.56,2039.8,0.0,organic,2017,MiamiFtLauderdale +39,2017-04-02,2.03,4159.55,545.88,36.18,0.0,3577.49,1622.22,1955.27,0.0,organic,2017,MiamiFtLauderdale +40,2017-03-26,1.74,5830.75,1352.29,124.61,0.0,4353.85,4250.0,103.85,0.0,organic,2017,MiamiFtLauderdale +41,2017-03-19,2.59,2427.94,1223.8,96.36,0.0,1107.78,1107.78,0.0,0.0,organic,2017,MiamiFtLauderdale +42,2017-03-12,3.05,2068.26,1043.83,77.36,0.0,947.07,926.67,20.4,0.0,organic,2017,MiamiFtLauderdale +43,2017-03-05,2.47,3583.84,1073.79,128.96,0.0,2381.09,1372.22,1008.87,0.0,organic,2017,MiamiFtLauderdale +44,2017-02-26,2.43,3101.87,1208.16,65.84,0.0,1827.87,1188.89,638.98,0.0,organic,2017,MiamiFtLauderdale +45,2017-02-19,1.65,5304.44,846.14,49.2,0.0,4409.1,3646.67,762.43,0.0,organic,2017,MiamiFtLauderdale +46,2017-02-12,1.29,5966.83,295.27,8.03,0.0,5663.53,4157.77,1505.76,0.0,organic,2017,MiamiFtLauderdale +47,2017-02-05,1.41,3626.55,398.22,4.01,0.0,3224.32,1155.56,2068.76,0.0,organic,2017,MiamiFtLauderdale +48,2017-01-29,1.23,4472.77,255.33,8.07,0.0,4209.37,2085.56,2123.81,0.0,organic,2017,MiamiFtLauderdale +49,2017-01-22,1.19,5887.98,221.91,12.1,0.0,5653.97,3727.78,1926.19,0.0,organic,2017,MiamiFtLauderdale +50,2017-01-15,1.19,7707.31,297.27,12.11,0.0,7397.93,5116.66,2281.27,0.0,organic,2017,MiamiFtLauderdale +51,2017-01-08,1.23,6214.43,421.41,6.73,0.0,5786.29,3260.0,2526.29,0.0,organic,2017,MiamiFtLauderdale +52,2017-01-01,1.21,5253.5,290.61,20.17,0.0,4942.72,1970.0,2972.72,0.0,organic,2017,MiamiFtLauderdale +0,2017-12-31,1.6,152399.77,2528.46,37771.11,861.76,111238.44,102542.42,8696.02,0.0,organic,2017,Midsouth +1,2017-12-24,1.67,131240.16,2543.96,33564.26,712.1,94419.84,86520.12,7899.72,0.0,organic,2017,Midsouth +2,2017-12-17,1.66,129898.85,2761.68,34831.02,640.04,91666.11,80649.5,11016.61,0.0,organic,2017,Midsouth +3,2017-12-10,1.61,140885.3,3274.32,33387.67,675.89,103547.42,97646.59,5900.83,0.0,organic,2017,Midsouth +4,2017-12-03,1.66,131588.67,2948.0,38442.38,759.91,89438.38,85848.62,3589.76,0.0,organic,2017,Midsouth +5,2017-11-26,1.75,117915.02,2273.75,31229.01,553.57,83858.69,80658.79,3199.9,0.0,organic,2017,Midsouth +6,2017-11-19,1.82,108987.74,2266.66,33847.74,487.56,72385.78,70589.95,1795.83,0.0,organic,2017,Midsouth +7,2017-11-12,1.82,131020.52,2436.31,32888.12,627.22,95065.94,89571.58,5494.36,0.0,organic,2017,Midsouth +8,2017-11-05,1.85,137573.44,3560.76,36025.34,677.79,97301.09,91436.08,5865.01,0.0,organic,2017,Midsouth +9,2017-10-29,1.8,156848.8,2448.54,34603.78,619.38,119177.1,110757.39,8419.71,0.0,organic,2017,Midsouth +10,2017-10-22,1.8,168429.18,2401.85,39858.54,607.05,125561.74,115932.33,9629.41,0.0,organic,2017,Midsouth +11,2017-10-15,1.84,174355.0,2928.11,35554.07,556.45,135316.37,127686.14,7630.23,0.0,organic,2017,Midsouth +12,2017-10-08,1.87,176218.89,4376.74,35185.02,566.08,136087.82,131997.28,4090.54,0.0,organic,2017,Midsouth +13,2017-10-01,1.99,149030.87,4351.29,33501.74,592.25,110585.59,101954.05,8631.54,0.0,organic,2017,Midsouth +14,2017-09-24,1.91,176556.11,4036.4,34545.41,517.42,137448.65,115927.2,21521.45,0.0,organic,2017,Midsouth +15,2017-09-17,1.93,158623.92,3307.02,36351.09,628.33,118337.48,102794.03,15543.45,0.0,organic,2017,Midsouth +16,2017-09-10,2.03,168953.84,4000.03,37302.61,622.28,127028.92,112342.72,14686.2,0.0,organic,2017,Midsouth +17,2017-09-03,2.13,167349.41,6815.74,41002.21,840.59,118690.87,100375.43,18315.44,0.0,organic,2017,Midsouth +18,2017-08-27,2.17,141033.09,6349.61,41161.57,688.15,92833.76,81240.44,11593.32,0.0,organic,2017,Midsouth +19,2017-08-20,2.02,138392.0,3383.69,40533.0,660.73,93811.48,84138.69,9672.79,0.0,organic,2017,Midsouth +20,2017-08-13,1.85,129688.16,2791.66,38100.0,837.16,87959.34,85427.32,2532.02,0.0,organic,2017,Midsouth +21,2017-08-06,1.88,147783.08,3190.54,45905.95,871.79,97806.05,86645.75,11160.3,0.0,organic,2017,Midsouth +22,2017-07-30,1.68,143256.61,3072.11,44213.86,991.22,94976.86,80259.26,14717.6,0.0,organic,2017,Midsouth +23,2017-07-23,1.57,176562.15,2368.63,49706.22,1106.94,123369.31,103897.97,19471.34,0.0,organic,2017,Midsouth +24,2017-07-16,1.69,140880.73,2458.19,44872.35,1239.5,92310.69,78625.54,13685.15,0.0,organic,2017,Midsouth +25,2017-07-09,1.88,109427.64,3114.64,50540.83,1282.83,54489.34,35708.96,18780.38,0.0,organic,2017,Midsouth +26,2017-07-02,1.78,120458.72,2774.67,52195.81,1321.72,64166.52,34038.53,30127.99,0.0,organic,2017,Midsouth +27,2017-06-25,1.75,125035.1,2567.52,50700.82,1147.57,70619.19,38193.8,32425.39,0.0,organic,2017,Midsouth +28,2017-06-18,1.73,127794.36,3304.26,56369.25,1270.6,66850.25,36430.85,30419.4,0.0,organic,2017,Midsouth +29,2017-06-11,1.61,150302.38,3919.7,51398.57,1205.25,93778.86,45391.71,48387.15,0.0,organic,2017,Midsouth +30,2017-06-04,1.85,127811.15,3976.74,55615.87,1415.12,66803.42,33346.76,33456.66,0.0,organic,2017,Midsouth +31,2017-05-28,1.91,129046.19,4061.5,52094.56,1610.71,71279.42,36140.3,35139.12,0.0,organic,2017,Midsouth +32,2017-05-21,1.9,116849.77,3719.26,48346.59,1603.39,63180.53,35445.81,27734.72,0.0,organic,2017,Midsouth +33,2017-05-14,1.76,133422.58,3776.69,55201.16,1954.5,72490.23,38041.51,34448.72,0.0,organic,2017,Midsouth +34,2017-05-07,1.96,111062.12,2964.11,48570.73,1704.61,57822.67,35661.6,22161.07,0.0,organic,2017,Midsouth +35,2017-04-30,1.96,117715.93,4131.4,51699.07,1538.54,60346.92,36527.33,23819.59,0.0,organic,2017,Midsouth +36,2017-04-23,2.03,107165.19,3840.93,50473.85,1386.8,51463.61,36180.97,15282.64,0.0,organic,2017,Midsouth +37,2017-04-16,1.68,132011.04,4340.81,57599.11,2526.06,67545.06,39490.55,28054.51,0.0,organic,2017,Midsouth +38,2017-04-09,1.5,137962.99,3866.01,54710.71,2285.58,77100.69,34323.06,42777.63,0.0,organic,2017,Midsouth +39,2017-04-02,1.67,129499.97,4585.96,58475.37,2227.82,64210.82,36145.43,28065.39,0.0,organic,2017,Midsouth +40,2017-03-26,1.41,139274.81,4177.03,50392.67,2224.98,82480.13,31877.73,50602.4,0.0,organic,2017,Midsouth +41,2017-03-19,1.59,97030.81,3900.08,42658.05,1814.98,48657.7,28803.38,19854.32,0.0,organic,2017,Midsouth +42,2017-03-12,1.35,121869.61,3840.57,42071.43,1856.19,74101.42,34491.91,39609.51,0.0,organic,2017,Midsouth +43,2017-03-05,1.02,156551.27,4471.53,38267.49,1457.66,112354.59,31239.27,81115.32,0.0,organic,2017,Midsouth +44,2017-02-26,1.12,139908.49,3921.76,41022.31,1849.73,93114.69,33735.94,59378.75,0.0,organic,2017,Midsouth +45,2017-02-19,1.14,148184.85,4325.51,48328.21,1888.62,93642.51,32456.16,61186.35,0.0,organic,2017,Midsouth +46,2017-02-12,1.21,129193.22,3448.61,41590.11,1599.36,82555.14,35082.56,47472.58,0.0,organic,2017,Midsouth +47,2017-02-05,1.49,101147.78,3676.77,42152.81,1526.21,53791.99,39453.34,14338.65,0.0,organic,2017,Midsouth +48,2017-01-29,1.54,95499.48,3428.23,45235.31,2048.59,44787.35,33303.24,11484.11,0.0,organic,2017,Midsouth +49,2017-01-22,1.49,96918.39,2981.29,38351.15,1985.43,53600.52,39758.09,13842.43,0.0,organic,2017,Midsouth +50,2017-01-15,1.67,88279.56,3414.04,43794.8,2191.38,38879.34,37053.18,1826.16,0.0,organic,2017,Midsouth +51,2017-01-08,1.61,90503.81,3638.19,41242.82,2265.14,43357.66,40878.78,2478.88,0.0,organic,2017,Midsouth +52,2017-01-01,1.72,72287.79,3353.64,36090.72,1813.6,31029.83,29203.33,1826.5,0.0,organic,2017,Midsouth +0,2017-12-31,1.52,7098.52,51.97,1535.55,0.0,5511.0,3056.04,2454.96,0.0,organic,2017,Nashville +1,2017-12-24,1.56,7151.34,70.46,2170.79,0.0,4910.09,3146.85,1763.24,0.0,organic,2017,Nashville +2,2017-12-17,1.62,6706.15,41.87,1898.54,0.0,4765.74,2612.39,2153.35,0.0,organic,2017,Nashville +3,2017-12-10,1.59,5477.32,19.21,1730.07,0.0,3728.04,2376.7,1351.34,0.0,organic,2017,Nashville +4,2017-12-03,1.59,4984.55,49.22,1937.45,0.0,2997.88,2230.29,767.59,0.0,organic,2017,Nashville +5,2017-11-26,1.57,5631.95,50.44,1862.68,0.0,3718.83,2667.33,1051.5,0.0,organic,2017,Nashville +6,2017-11-19,1.61,5134.74,51.28,2032.17,0.0,3051.29,2376.14,675.15,0.0,organic,2017,Nashville +7,2017-11-12,1.74,5833.9,58.43,1861.34,0.0,3914.13,2233.49,1680.64,0.0,organic,2017,Nashville +8,2017-11-05,1.71,6330.44,72.89,1957.67,0.0,4299.88,3131.99,1167.89,0.0,organic,2017,Nashville +9,2017-10-29,1.76,7350.15,75.61,2571.96,0.0,4702.58,2957.01,1745.57,0.0,organic,2017,Nashville +10,2017-10-22,1.78,8715.84,57.76,3126.34,0.0,5531.74,2340.14,3191.6,0.0,organic,2017,Nashville +11,2017-10-15,1.96,7545.78,67.23,2947.41,0.0,4531.14,2567.53,1963.61,0.0,organic,2017,Nashville +12,2017-10-08,2.17,7071.72,60.89,2903.35,0.0,4107.48,2453.39,1654.09,0.0,organic,2017,Nashville +13,2017-10-01,2.22,8229.65,88.65,2826.04,0.0,5314.96,3217.15,2097.81,0.0,organic,2017,Nashville +14,2017-09-24,2.24,8917.5,104.37,2500.14,0.0,6312.99,1601.56,4711.43,0.0,organic,2017,Nashville +15,2017-09-17,2.19,8579.11,117.04,2557.35,0.0,5904.72,1778.3,4126.42,0.0,organic,2017,Nashville +16,2017-09-10,2.15,9103.32,94.38,2782.28,0.0,6226.66,2482.62,3744.04,0.0,organic,2017,Nashville +17,2017-09-03,2.04,8629.45,166.84,2919.13,0.0,5543.48,1630.5,3912.98,0.0,organic,2017,Nashville +18,2017-08-27,1.89,9333.46,120.56,2952.01,0.0,6260.89,3247.47,3013.42,0.0,organic,2017,Nashville +19,2017-08-20,1.84,7240.0,80.4,2884.69,0.0,4274.91,1925.0,2349.91,0.0,organic,2017,Nashville +20,2017-08-13,1.61,4739.29,25.2,2387.12,0.0,2326.97,1738.89,588.08,0.0,organic,2017,Nashville +21,2017-08-06,1.54,8077.28,71.27,2677.74,0.0,5328.27,2337.43,2990.84,0.0,organic,2017,Nashville +22,2017-07-30,1.5,8654.39,54.78,2881.16,0.0,5718.45,2457.58,3260.87,0.0,organic,2017,Nashville +23,2017-07-23,1.43,11898.47,39.23,3771.3,0.0,8087.94,3353.33,4734.61,0.0,organic,2017,Nashville +24,2017-07-16,1.54,8490.45,52.6,3594.22,0.0,4843.63,1707.77,3135.86,0.0,organic,2017,Nashville +25,2017-07-09,1.49,6879.0,103.67,3658.81,0.0,3116.52,1833.89,1282.63,0.0,organic,2017,Nashville +26,2017-07-02,1.2,12497.92,163.03,3207.0,0.0,9127.89,1961.11,7166.78,0.0,organic,2017,Nashville +27,2017-06-25,1.27,11077.27,94.3,2957.15,0.0,8025.82,2124.45,5901.37,0.0,organic,2017,Nashville +28,2017-06-18,1.16,12361.79,146.66,3631.53,0.0,8583.6,2083.51,6500.09,0.0,organic,2017,Nashville +29,2017-06-11,1.15,13829.49,380.62,3321.97,0.0,10126.9,1731.86,8395.04,0.0,organic,2017,Nashville +30,2017-06-04,1.14,10578.11,350.07,3197.16,0.0,7030.88,502.43,6528.45,0.0,organic,2017,Nashville +31,2017-05-28,1.16,8676.66,435.62,2257.51,0.0,5983.53,341.21,5642.32,0.0,organic,2017,Nashville +32,2017-05-21,1.2,9281.83,358.52,2467.74,0.0,6455.57,591.22,5864.35,0.0,organic,2017,Nashville +33,2017-05-14,0.87,16265.74,556.49,2648.6,0.0,13060.65,213.03,12847.62,0.0,organic,2017,Nashville +34,2017-05-07,1.22,6216.76,191.24,2221.64,0.0,3803.88,216.57,3587.31,0.0,organic,2017,Nashville +35,2017-04-30,1.14,11100.24,387.36,2926.48,0.0,7786.4,192.66,7593.74,0.0,organic,2017,Nashville +36,2017-04-23,1.43,7063.97,582.27,3204.62,0.0,3277.08,157.88,3119.2,0.0,organic,2017,Nashville +37,2017-04-16,1.14,8448.33,475.47,3049.63,0.0,4923.23,248.29,4674.94,0.0,organic,2017,Nashville +38,2017-04-09,1.53,5340.95,572.93,2987.08,0.0,1780.94,1123.08,657.86,0.0,organic,2017,Nashville +39,2017-04-02,1.17,6336.78,419.42,2523.62,0.0,3393.74,490.19,2903.55,0.0,organic,2017,Nashville +40,2017-03-26,0.77,9755.34,422.08,1987.08,0.0,7346.18,218.01,7128.17,0.0,organic,2017,Nashville +41,2017-03-19,0.92,5986.47,340.95,2019.05,0.0,3626.47,97.78,3528.69,0.0,organic,2017,Nashville +42,2017-03-12,0.61,11558.79,523.31,1918.64,0.0,9116.84,66.66,9050.18,0.0,organic,2017,Nashville +43,2017-03-05,0.51,17135.45,481.81,1790.33,0.0,14863.31,122.78,14740.53,0.0,organic,2017,Nashville +44,2017-02-26,0.68,10920.78,329.8,2415.49,0.0,8175.49,115.0,8060.49,0.0,organic,2017,Nashville +45,2017-02-19,0.67,13534.67,284.78,2310.55,0.0,10939.34,120.01,10819.33,0.0,organic,2017,Nashville +46,2017-02-12,0.66,13802.0,337.21,2693.07,0.0,10771.72,196.14,10575.58,0.0,organic,2017,Nashville +47,2017-02-05,1.16,4305.56,338.27,2130.07,0.0,1837.22,56.67,1780.55,0.0,organic,2017,Nashville +48,2017-01-29,1.41,3254.87,296.39,1977.1,0.0,981.38,78.33,903.05,0.0,organic,2017,Nashville +49,2017-01-22,0.86,6627.34,172.58,2287.61,0.0,4167.15,57.77,4109.38,0.0,organic,2017,Nashville +50,2017-01-15,1.54,2962.13,238.89,2018.46,0.0,704.78,73.89,630.89,0.0,organic,2017,Nashville +51,2017-01-08,1.53,3165.75,209.0,2389.04,0.0,567.71,62.22,505.49,0.0,organic,2017,Nashville +52,2017-01-01,1.53,3749.48,210.85,3088.93,0.0,449.7,62.22,387.48,0.0,organic,2017,Nashville +0,2017-12-31,1.44,5341.14,214.92,115.16,0.0,5011.06,4876.66,134.4,0.0,organic,2017,NewOrleansMobile +1,2017-12-24,1.45,5574.96,123.5,54.36,0.0,5397.1,5116.66,280.44,0.0,organic,2017,NewOrleansMobile +2,2017-12-17,1.37,5789.43,69.75,79.68,0.0,5640.0,5633.33,6.67,0.0,organic,2017,NewOrleansMobile +3,2017-12-10,1.4,5488.94,141.27,47.66,0.0,5300.01,5293.34,6.67,0.0,organic,2017,NewOrleansMobile +4,2017-12-03,1.46,5649.91,85.78,149.33,0.0,5414.8,5225.55,189.25,0.0,organic,2017,NewOrleansMobile +5,2017-11-26,1.44,4941.8,87.3,65.02,0.0,4789.48,4548.89,240.59,0.0,organic,2017,NewOrleansMobile +6,2017-11-19,1.49,6681.63,78.99,209.01,0.0,6393.63,6092.22,301.41,0.0,organic,2017,NewOrleansMobile +7,2017-11-12,1.64,5811.87,80.51,111.76,0.0,5619.6,5588.9,30.7,0.0,organic,2017,NewOrleansMobile +8,2017-11-05,1.7,5876.27,110.32,92.85,0.0,5673.1,5123.32,549.78,0.0,organic,2017,NewOrleansMobile +9,2017-10-29,1.7,6088.13,89.32,154.0,0.0,5844.81,5561.11,283.7,0.0,organic,2017,NewOrleansMobile +10,2017-10-22,1.6,3456.59,83.45,125.29,0.0,3247.85,3234.45,13.4,0.0,organic,2017,NewOrleansMobile +11,2017-10-15,1.55,2172.93,252.53,100.4,0.0,1820.0,1816.67,3.33,0.0,organic,2017,NewOrleansMobile +12,2017-10-08,1.69,2402.71,208.27,73.21,0.0,2121.23,2111.23,10.0,0.0,organic,2017,NewOrleansMobile +13,2017-10-01,1.97,3769.02,207.39,135.26,0.0,3426.37,3269.44,156.93,0.0,organic,2017,NewOrleansMobile +14,2017-09-24,1.89,6852.14,155.62,218.47,0.0,6478.05,5656.66,821.39,0.0,organic,2017,NewOrleansMobile +15,2017-09-17,1.89,6311.86,313.42,179.09,0.0,5819.35,5023.34,796.01,0.0,organic,2017,NewOrleansMobile +16,2017-09-10,1.63,6601.76,248.6,125.76,0.0,6227.4,5804.52,422.88,0.0,organic,2017,NewOrleansMobile +17,2017-09-03,1.5,7148.98,222.83,202.3,0.0,6723.85,6707.19,16.66,0.0,organic,2017,NewOrleansMobile +18,2017-08-27,1.5,7632.07,162.94,337.52,0.0,7131.61,7128.28,3.33,0.0,organic,2017,NewOrleansMobile +19,2017-08-20,1.35,6866.21,252.01,296.52,0.0,6317.68,6314.35,3.33,0.0,organic,2017,NewOrleansMobile +20,2017-08-13,1.2,8220.25,164.92,93.1,0.0,7962.23,7945.56,16.67,0.0,organic,2017,NewOrleansMobile +21,2017-08-06,1.18,6994.5,128.76,71.31,0.0,6794.43,6781.1,13.33,0.0,organic,2017,NewOrleansMobile +22,2017-07-30,1.25,5816.2,228.57,118.74,0.0,5468.89,5458.89,10.0,0.0,organic,2017,NewOrleansMobile +23,2017-07-23,1.28,2327.42,102.75,55.78,0.0,2168.89,2162.22,6.67,0.0,organic,2017,NewOrleansMobile +24,2017-07-16,1.23,5447.12,157.91,128.12,0.0,5161.09,5157.76,3.33,0.0,organic,2017,NewOrleansMobile +25,2017-07-09,1.76,1942.28,103.74,367.42,0.0,1471.12,1461.12,10.0,0.0,organic,2017,NewOrleansMobile +26,2017-07-02,1.89,2700.26,183.02,838.35,0.0,1678.89,1662.22,16.67,0.0,organic,2017,NewOrleansMobile +27,2017-06-25,1.91,1282.64,64.99,472.65,0.0,745.0,738.34,6.66,0.0,organic,2017,NewOrleansMobile +28,2017-06-18,2.32,936.69,103.46,679.9,0.0,153.33,150.0,3.33,0.0,organic,2017,NewOrleansMobile +29,2017-06-11,2.19,515.01,399.62,5.92,0.0,109.47,106.14,3.33,0.0,organic,2017,NewOrleansMobile +30,2017-06-04,2.12,1179.16,417.01,0.0,0.0,762.15,762.15,0.0,0.0,organic,2017,NewOrleansMobile +31,2017-05-28,1.88,2367.07,367.18,0.0,0.0,1999.89,1694.74,305.15,0.0,organic,2017,NewOrleansMobile +32,2017-05-21,2.1,1834.44,536.85,23.86,0.0,1273.73,1094.78,178.95,0.0,organic,2017,NewOrleansMobile +33,2017-05-14,1.96,1745.63,900.99,0.0,0.0,844.64,744.97,99.67,0.0,organic,2017,NewOrleansMobile +34,2017-05-07,1.57,3722.76,353.11,0.0,0.0,3369.65,2418.72,950.93,0.0,organic,2017,NewOrleansMobile +35,2017-04-30,1.95,634.09,228.39,24.04,0.0,381.66,381.66,0.0,0.0,organic,2017,NewOrleansMobile +36,2017-04-23,1.74,2924.36,295.32,12.1,0.0,2616.94,2616.94,0.0,0.0,organic,2017,NewOrleansMobile +37,2017-04-16,1.63,4994.04,213.2,0.0,0.0,4780.84,4280.0,500.84,0.0,organic,2017,NewOrleansMobile +38,2017-04-09,1.63,5498.31,281.91,0.0,0.0,5216.4,4707.5,508.9,0.0,organic,2017,NewOrleansMobile +39,2017-04-02,1.55,6540.24,293.79,0.0,0.0,6246.45,5484.77,761.68,0.0,organic,2017,NewOrleansMobile +40,2017-03-26,1.6,3838.3,233.24,0.0,0.0,3605.06,3380.0,225.06,0.0,organic,2017,NewOrleansMobile +41,2017-03-19,1.44,1517.2,83.52,0.0,0.0,1433.68,904.02,529.66,0.0,organic,2017,NewOrleansMobile +42,2017-03-12,1.45,3782.27,369.23,0.0,0.0,3413.04,2461.53,951.51,0.0,organic,2017,NewOrleansMobile +43,2017-03-05,1.45,4348.91,429.04,0.0,0.0,3919.87,3487.08,432.79,0.0,organic,2017,NewOrleansMobile +44,2017-02-26,1.33,5744.81,151.65,6.32,0.0,5586.84,5155.23,431.61,0.0,organic,2017,NewOrleansMobile +45,2017-02-19,1.33,5160.37,139.21,0.0,0.0,5021.16,4830.72,190.44,0.0,organic,2017,NewOrleansMobile +46,2017-02-12,1.33,6425.79,254.69,0.0,0.0,6171.1,5927.54,243.56,0.0,organic,2017,NewOrleansMobile +47,2017-02-05,1.35,3381.82,326.31,6.26,0.0,3049.25,1874.51,1174.74,0.0,organic,2017,NewOrleansMobile +48,2017-01-29,1.3,2939.28,129.28,0.0,0.0,2810.0,1861.27,948.73,0.0,organic,2017,NewOrleansMobile +49,2017-01-22,1.31,4028.29,190.38,5.98,0.0,3831.93,2815.27,1016.66,0.0,organic,2017,NewOrleansMobile +50,2017-01-15,1.3,3873.46,101.17,11.9,0.0,3760.39,2775.42,984.97,0.0,organic,2017,NewOrleansMobile +51,2017-01-08,1.26,5077.97,189.58,0.0,0.0,4888.39,3309.59,1578.8,0.0,organic,2017,NewOrleansMobile +52,2017-01-01,1.3,2818.22,125.73,11.78,0.0,2680.71,1947.5,733.21,0.0,organic,2017,NewOrleansMobile +0,2017-12-31,1.83,69777.3,6476.19,16996.47,134.7,46169.94,46167.94,2.0,0.0,organic,2017,NewYork +1,2017-12-24,1.85,74779.73,9007.76,20286.73,241.8,45243.44,45130.97,112.47,0.0,organic,2017,NewYork +2,2017-12-17,1.84,75462.11,7786.02,22015.68,96.31,45564.1,44572.56,991.54,0.0,organic,2017,NewYork +3,2017-12-10,1.79,79929.45,8727.63,19910.92,102.93,51187.97,50816.5,371.47,0.0,organic,2017,NewYork +4,2017-12-03,1.81,95299.69,14732.14,35839.64,73.33,44654.58,43868.01,786.57,0.0,organic,2017,NewYork +5,2017-11-26,2.02,63156.0,5280.67,14350.39,178.15,43346.79,43299.16,47.63,0.0,organic,2017,NewYork +6,2017-11-19,2.07,68466.86,5986.02,16315.77,101.81,46063.26,46015.76,47.5,0.0,organic,2017,NewYork +7,2017-11-12,2.05,74312.9,5949.51,17740.19,170.06,50453.14,50266.64,186.5,0.0,organic,2017,NewYork +8,2017-11-05,2.05,71500.85,5539.92,17479.3,118.99,48362.64,48214.28,148.36,0.0,organic,2017,NewYork +9,2017-10-29,2.11,70881.96,5301.96,19352.26,84.57,46143.17,46069.13,74.04,0.0,organic,2017,NewYork +10,2017-10-22,2.08,70272.82,5760.74,17860.14,73.28,46578.66,46411.29,167.37,0.0,organic,2017,NewYork +11,2017-10-15,2.09,69241.11,6708.76,14018.78,100.55,48413.02,48265.51,147.51,0.0,organic,2017,NewYork +12,2017-10-08,2.06,67166.62,6353.85,16664.55,133.03,44015.19,43893.94,121.25,0.0,organic,2017,NewYork +13,2017-10-01,2.04,63623.43,5060.7,14782.9,90.07,43689.76,43667.44,22.32,0.0,organic,2017,NewYork +14,2017-09-24,2.06,70365.19,5244.89,22378.4,77.37,42664.53,42664.53,0.0,0.0,organic,2017,NewYork +15,2017-09-17,2.08,70931.23,4879.35,23574.9,12.3,42464.68,42464.68,0.0,0.0,organic,2017,NewYork +16,2017-09-10,2.07,90178.82,5734.05,28471.55,57.34,55915.88,55915.88,0.0,0.0,organic,2017,NewYork +17,2017-09-03,2.14,82176.04,8610.72,29307.53,233.62,44024.17,44024.17,0.0,0.0,organic,2017,NewYork +18,2017-08-27,2.13,73865.51,4774.28,24947.05,93.05,44051.13,44051.13,0.0,0.0,organic,2017,NewYork +19,2017-08-20,1.85,107274.72,11650.4,43213.82,149.8,52260.7,52260.7,0.0,0.0,organic,2017,NewYork +20,2017-08-13,2.07,73309.74,4392.15,21953.83,234.58,46729.18,46723.25,5.93,0.0,organic,2017,NewYork +21,2017-08-06,1.91,72075.29,3899.19,18435.36,158.28,49582.46,49486.44,96.02,0.0,organic,2017,NewYork +22,2017-07-30,1.88,71035.9,3407.72,17677.84,285.56,49664.78,49656.41,8.37,0.0,organic,2017,NewYork +23,2017-07-23,1.85,87888.29,5573.31,20491.42,1314.87,60508.69,60473.16,35.53,0.0,organic,2017,NewYork +24,2017-07-16,1.79,80280.09,7856.39,19545.1,2330.29,50548.31,50548.31,0.0,0.0,organic,2017,NewYork +25,2017-07-09,2.48,59563.6,3895.32,21115.87,1931.13,32621.28,32621.28,0.0,0.0,organic,2017,NewYork +26,2017-07-02,2.44,63800.15,5739.89,25934.55,1805.76,30319.95,30319.95,0.0,0.0,organic,2017,NewYork +27,2017-06-25,2.36,68542.66,5993.84,27972.54,1229.15,33347.13,33342.24,4.89,0.0,organic,2017,NewYork +28,2017-06-18,1.91,166308.13,32342.06,94247.03,277.54,39441.5,38126.3,1315.2,0.0,organic,2017,NewYork +29,2017-06-11,2.39,81679.26,9032.28,33481.66,685.11,38480.21,37772.25,707.96,0.0,organic,2017,NewYork +30,2017-06-04,2.06,112812.77,17822.91,52648.14,1178.91,41162.81,39892.76,1270.05,0.0,organic,2017,NewYork +31,2017-05-28,2.38,76002.26,6137.98,30135.14,629.9,39099.24,38971.17,128.07,0.0,organic,2017,NewYork +32,2017-05-21,2.39,70663.57,6849.35,27571.04,1575.09,34668.09,34668.09,0.0,0.0,organic,2017,NewYork +33,2017-05-14,2.41,71188.47,6758.27,25947.46,2033.18,36449.56,36449.56,0.0,0.0,organic,2017,NewYork +34,2017-05-07,2.34,88625.27,8039.83,35366.86,1665.22,43553.36,43553.36,0.0,0.0,organic,2017,NewYork +35,2017-04-30,1.9,156250.72,32215.02,82983.52,1917.45,39134.73,39134.73,0.0,0.0,organic,2017,NewYork +36,2017-04-23,2.23,73975.31,6752.28,33878.47,1022.4,32322.16,32297.7,24.46,0.0,organic,2017,NewYork +37,2017-04-16,1.9,126408.2,21906.82,72571.32,210.54,31719.52,31327.58,391.94,0.0,organic,2017,NewYork +38,2017-04-09,2.22,69388.43,8494.69,34731.6,166.09,25996.05,25956.87,39.18,0.0,organic,2017,NewYork +39,2017-04-02,1.86,140039.98,28190.77,80969.6,128.39,30751.22,30716.93,34.29,0.0,organic,2017,NewYork +40,2017-03-26,2.18,87897.32,12071.11,41311.15,90.5,34424.56,34341.53,83.03,0.0,organic,2017,NewYork +41,2017-03-19,1.86,147248.57,30270.92,85793.31,114.28,31070.06,30832.74,237.32,0.0,organic,2017,NewYork +42,2017-03-12,2.26,93328.69,9962.52,40186.45,162.33,43017.39,43017.39,0.0,0.0,organic,2017,NewYork +43,2017-03-05,1.81,121542.09,20888.73,66846.19,235.43,33571.74,33382.77,188.97,0.0,organic,2017,NewYork +44,2017-02-26,1.77,91212.34,14208.53,48448.61,164.07,28391.13,28122.96,268.17,0.0,organic,2017,NewYork +45,2017-02-19,1.36,420410.54,100285.03,288953.97,366.3,30805.24,29223.4,1581.84,0.0,organic,2017,NewYork +46,2017-02-12,1.98,59839.16,7402.11,22697.49,514.41,29225.15,28971.43,253.72,0.0,organic,2017,NewYork +47,2017-02-05,2.03,58560.14,7829.32,20623.8,197.9,29909.12,29581.48,327.64,0.0,organic,2017,NewYork +48,2017-01-29,2.08,46602.16,6492.22,19169.83,74.51,20865.6,20510.68,354.92,0.0,organic,2017,NewYork +49,2017-01-22,2.05,49056.11,6679.14,21232.95,1039.74,20104.28,19821.48,282.8,0.0,organic,2017,NewYork +50,2017-01-15,2.09,42233.25,6002.05,18195.1,117.02,17919.08,17791.92,127.16,0.0,organic,2017,NewYork +51,2017-01-08,2.15,42755.8,6642.33,18205.31,338.5,17569.66,17103.64,466.02,0.0,organic,2017,NewYork +52,2017-01-01,2.06,39260.55,6071.7,20105.65,1025.49,12057.71,11934.77,122.94,0.0,organic,2017,NewYork +0,2017-12-31,1.66,229313.64,11281.04,33549.86,122.83,184359.91,170878.67,13481.24,0.0,organic,2017,Northeast +1,2017-12-24,1.67,237711.39,14885.87,33389.98,221.35,189214.19,186448.83,2765.36,0.0,organic,2017,Northeast +2,2017-12-17,1.66,222261.39,13706.54,34143.68,94.76,174316.41,155391.08,18925.33,0.0,organic,2017,Northeast +3,2017-12-10,1.6,251595.19,16117.35,32493.29,108.86,202875.69,182493.69,20382.0,0.0,organic,2017,Northeast +4,2017-12-03,1.67,247242.48,23973.38,52395.33,86.28,170787.49,160329.49,10458.0,0.0,organic,2017,Northeast +5,2017-11-26,1.77,190028.7,9276.35,23321.1,181.54,157249.71,155444.42,1805.29,0.0,organic,2017,Northeast +6,2017-11-19,1.84,204565.99,10459.16,25861.92,114.95,168129.96,157175.48,10954.48,0.0,organic,2017,Northeast +7,2017-11-12,1.81,231677.48,11004.36,27532.26,161.34,192979.52,176295.77,16683.75,0.0,organic,2017,Northeast +8,2017-11-05,1.82,239371.8,10655.06,27191.48,115.51,201409.75,193133.43,8276.32,0.0,organic,2017,Northeast +9,2017-10-29,1.76,264941.06,10127.06,29797.6,100.29,224916.11,218668.73,6247.38,0.0,organic,2017,Northeast +10,2017-10-22,1.68,264208.2,10671.96,29448.03,99.41,223988.8,223697.53,291.27,0.0,organic,2017,Northeast +11,2017-10-15,1.7,269123.79,12497.35,23859.81,117.29,232649.34,232373.13,276.21,0.0,organic,2017,Northeast +12,2017-10-08,1.64,275572.0,11078.6,25362.38,131.65,238999.37,238752.11,247.26,0.0,organic,2017,Northeast +13,2017-10-01,1.7,236097.14,9408.76,23215.19,79.66,203393.53,203353.59,39.94,0.0,organic,2017,Northeast +14,2017-09-24,1.68,255258.55,9811.16,31012.0,108.75,214326.64,214282.33,44.31,0.0,organic,2017,Northeast +15,2017-09-17,1.74,238274.56,9146.68,34141.63,44.41,194941.84,193019.04,1922.8,0.0,organic,2017,Northeast +16,2017-09-10,1.85,244428.88,10454.25,38728.87,60.38,195185.38,188367.7,6817.68,0.0,organic,2017,Northeast +17,2017-09-03,1.92,223548.33,15489.31,42399.85,207.82,165451.35,157440.62,8010.73,0.0,organic,2017,Northeast +18,2017-08-27,1.89,215129.8,8766.1,36924.09,98.22,169341.39,164863.42,4477.97,0.0,organic,2017,Northeast +19,2017-08-20,1.79,251156.79,19480.79,58086.37,153.0,173436.63,158281.96,15154.67,0.0,organic,2017,Northeast +20,2017-08-13,1.85,200716.07,7031.08,35496.01,220.3,157968.68,146634.24,11334.44,0.0,organic,2017,Northeast +21,2017-08-06,1.74,216000.77,6369.3,31343.15,143.23,178145.09,152573.08,25572.01,0.0,organic,2017,Northeast +22,2017-07-30,1.74,214612.36,5868.8,30074.75,259.43,178409.38,153830.81,24578.57,0.0,organic,2017,Northeast +23,2017-07-23,1.63,272856.18,8003.45,34071.85,1137.51,229643.37,203830.16,25813.21,0.0,organic,2017,Northeast +24,2017-07-16,1.66,240537.76,12309.73,34479.02,2085.77,191663.24,178777.51,12885.73,0.0,organic,2017,Northeast +25,2017-07-09,2.31,160288.02,6638.91,35153.51,1626.85,116868.75,104841.75,12027.0,0.0,organic,2017,Northeast +26,2017-07-02,2.29,170194.95,8951.42,43472.34,1596.01,116175.18,106878.45,9296.73,0.0,organic,2017,Northeast +27,2017-06-25,2.26,181964.19,8675.31,45535.71,1086.85,126666.32,115565.9,11100.42,0.0,organic,2017,Northeast +28,2017-06-18,1.98,307563.37,45284.06,123914.52,265.91,138098.88,124213.2,13885.68,0.0,organic,2017,Northeast +29,2017-06-11,2.26,191985.27,13018.96,48648.68,1883.32,128434.31,116899.45,11534.86,0.0,organic,2017,Northeast +30,2017-06-04,2.0,251838.53,28716.42,70360.01,1020.12,151741.98,139084.38,12657.6,0.0,organic,2017,Northeast +31,2017-05-28,2.18,194487.92,11400.57,47209.92,636.96,135240.47,124037.53,11202.94,0.0,organic,2017,Northeast +32,2017-05-21,2.15,186553.95,10974.59,44591.68,1425.74,129561.94,120158.47,9403.47,0.0,organic,2017,Northeast +33,2017-05-14,2.09,202280.64,11814.11,42990.28,1781.11,145695.14,132557.14,13138.0,0.0,organic,2017,Northeast +34,2017-05-07,2.16,205224.24,12708.77,53525.73,1500.31,137489.43,121185.9,16303.53,0.0,organic,2017,Northeast +35,2017-04-30,1.91,278038.48,45273.02,109485.34,1714.65,121565.47,116115.13,5450.34,0.0,organic,2017,Northeast +36,2017-04-23,2.09,180814.14,11464.72,46927.45,879.96,121542.01,109123.48,12418.53,0.0,organic,2017,Northeast +37,2017-04-16,1.91,265298.41,35022.89,105350.43,204.47,124720.62,112364.58,12356.04,0.0,organic,2017,Northeast +38,2017-04-09,2.12,171036.27,14746.97,48734.61,165.24,107389.45,96848.27,10541.18,0.0,organic,2017,Northeast +39,2017-04-02,1.89,256548.81,43055.81,107196.78,121.64,106174.58,102577.8,3596.78,0.0,organic,2017,Northeast +40,2017-03-26,2.1,191466.91,18318.35,55899.67,86.39,117162.5,107372.46,9790.04,0.0,organic,2017,Northeast +41,2017-03-19,1.88,276084.84,45037.68,116111.93,163.76,114771.47,106097.64,8673.83,0.0,organic,2017,Northeast +42,2017-03-12,2.18,186709.79,14633.01,52057.46,172.06,119847.26,113186.39,6660.87,0.0,organic,2017,Northeast +43,2017-03-05,1.8,225597.13,29927.87,86086.11,205.84,109377.31,105641.33,3735.98,0.0,organic,2017,Northeast +44,2017-02-26,1.82,182655.98,22185.72,70918.22,161.59,89390.45,86833.66,2556.79,0.0,organic,2017,Northeast +45,2017-02-19,1.43,592952.35,127051.75,363472.25,322.56,102105.79,91672.29,10433.5,0.0,organic,2017,Northeast +46,2017-02-12,1.91,153268.97,11370.64,34465.58,496.01,106936.74,102275.82,4660.92,0.0,organic,2017,Northeast +47,2017-02-05,1.81,160843.63,11663.51,37623.06,244.75,111312.31,101921.32,9390.99,0.0,organic,2017,Northeast +48,2017-01-29,1.93,132820.76,10226.18,29196.51,90.66,93307.41,91291.73,2015.68,0.0,organic,2017,Northeast +49,2017-01-22,1.93,135079.52,10781.15,31238.0,886.21,92174.16,91298.2,875.96,0.0,organic,2017,Northeast +50,2017-01-15,1.94,134840.81,9284.34,31877.36,128.08,93551.03,91994.71,1556.32,0.0,organic,2017,Northeast +51,2017-01-08,1.99,132079.47,10600.01,29899.55,310.93,91268.98,86129.69,5139.29,0.0,organic,2017,Northeast +52,2017-01-01,2.0,115256.09,9132.13,36276.39,923.53,68924.04,65447.53,3476.51,0.0,organic,2017,Northeast +0,2017-12-31,1.76,20129.5,0.0,200.68,0.0,19928.82,19925.49,3.33,0.0,organic,2017,NorthernNewEngland +1,2017-12-24,1.76,25227.4,0.0,463.23,0.0,24764.17,24764.17,0.0,0.0,organic,2017,NorthernNewEngland +2,2017-12-17,1.72,18551.6,3.54,288.78,0.0,18259.28,18259.28,0.0,0.0,organic,2017,NorthernNewEngland +3,2017-12-10,1.67,23958.64,0.0,285.78,0.0,23672.86,23672.86,0.0,0.0,organic,2017,NorthernNewEngland +4,2017-12-03,1.71,18891.8,0.0,390.0,0.0,18501.8,18273.13,228.67,0.0,organic,2017,NorthernNewEngland +5,2017-11-26,1.75,22376.94,1.74,219.85,0.0,22155.35,22155.35,0.0,0.0,organic,2017,NorthernNewEngland +6,2017-11-19,1.78,21545.16,0.0,203.01,0.0,21342.15,21284.8,57.35,0.0,organic,2017,NorthernNewEngland +7,2017-11-12,1.8,19234.13,5.12,317.19,0.0,18911.82,18525.27,386.55,0.0,organic,2017,NorthernNewEngland +8,2017-11-05,1.84,24687.17,0.0,148.57,0.0,24538.6,20317.99,4220.61,0.0,organic,2017,NorthernNewEngland +9,2017-10-29,1.57,39048.27,1.67,177.53,0.0,38869.07,32627.56,6241.51,0.0,organic,2017,NorthernNewEngland +10,2017-10-22,1.7,22671.89,0.0,308.14,0.0,22363.75,22363.75,0.0,0.0,organic,2017,NorthernNewEngland +11,2017-10-15,1.64,23800.97,0.0,202.17,0.0,23598.8,23598.8,0.0,0.0,organic,2017,NorthernNewEngland +12,2017-10-08,1.52,21089.7,10.89,194.84,0.0,20883.97,20879.53,4.44,0.0,organic,2017,NorthernNewEngland +13,2017-10-01,1.56,18317.19,10.88,163.19,0.0,18143.12,18143.12,0.0,0.0,organic,2017,NorthernNewEngland +14,2017-09-24,1.57,16661.59,1.21,105.02,0.0,16555.36,16555.36,0.0,0.0,organic,2017,NorthernNewEngland +15,2017-09-17,1.54,15649.28,5.62,147.09,0.0,15496.57,15496.57,0.0,0.0,organic,2017,NorthernNewEngland +16,2017-09-10,1.68,16452.15,4.84,169.28,0.0,16278.03,16278.03,0.0,0.0,organic,2017,NorthernNewEngland +17,2017-09-03,1.69,13062.41,2.43,168.63,0.0,12891.35,12891.35,0.0,0.0,organic,2017,NorthernNewEngland +18,2017-08-27,1.69,18480.95,3.0,172.15,0.0,18305.8,18305.8,0.0,0.0,organic,2017,NorthernNewEngland +19,2017-08-20,1.68,17812.78,11.35,258.45,0.0,17542.98,17542.98,0.0,0.0,organic,2017,NorthernNewEngland +20,2017-08-13,1.69,13218.86,13.62,246.35,0.0,12958.89,12958.89,0.0,0.0,organic,2017,NorthernNewEngland +21,2017-08-06,1.68,16939.38,6.0,281.35,0.0,16652.03,16652.03,0.0,0.0,organic,2017,NorthernNewEngland +22,2017-07-30,1.68,18527.51,15.95,259.16,0.0,18252.4,18252.4,0.0,0.0,organic,2017,NorthernNewEngland +23,2017-07-23,1.59,20654.13,14.18,254.59,0.0,20385.36,20385.36,0.0,0.0,organic,2017,NorthernNewEngland +24,2017-07-16,1.66,20254.68,10.56,397.21,0.0,19846.91,19846.91,0.0,0.0,organic,2017,NorthernNewEngland +25,2017-07-09,1.85,13592.4,3.94,277.31,0.0,13311.15,13311.15,0.0,0.0,organic,2017,NorthernNewEngland +26,2017-07-02,1.91,16665.54,7.31,469.07,0.0,16189.16,16189.16,0.0,0.0,organic,2017,NorthernNewEngland +27,2017-06-25,1.93,21227.79,7.83,428.22,0.0,20791.74,20791.74,0.0,0.0,organic,2017,NorthernNewEngland +28,2017-06-18,1.92,20003.65,14.31,370.78,0.0,19618.56,19618.56,0.0,0.0,organic,2017,NorthernNewEngland +29,2017-06-11,1.83,15591.67,2.59,304.24,0.0,15284.84,15284.84,0.0,0.0,organic,2017,NorthernNewEngland +30,2017-06-04,1.48,25490.92,0.0,295.05,0.0,25195.87,25195.87,0.0,0.0,organic,2017,NorthernNewEngland +31,2017-05-28,1.67,18289.39,12.99,299.98,0.0,17976.42,17976.42,0.0,0.0,organic,2017,NorthernNewEngland +32,2017-05-21,1.59,20571.46,7.77,299.22,0.0,20264.47,20264.47,0.0,0.0,organic,2017,NorthernNewEngland +33,2017-05-14,1.4,26964.27,10.3,614.37,0.0,26339.6,26339.6,0.0,0.0,organic,2017,NorthernNewEngland +34,2017-05-07,1.57,13580.31,29.67,398.54,0.0,13152.1,13152.1,0.0,0.0,organic,2017,NorthernNewEngland +35,2017-04-30,1.62,14208.82,97.08,229.93,0.0,13881.81,13881.81,0.0,0.0,organic,2017,NorthernNewEngland +36,2017-04-23,1.68,13175.0,103.25,164.43,0.0,12907.32,12907.32,0.0,0.0,organic,2017,NorthernNewEngland +37,2017-04-16,1.82,15495.62,87.32,240.12,0.0,15168.18,15168.18,0.0,0.0,organic,2017,NorthernNewEngland +38,2017-04-09,1.75,12052.63,90.05,237.99,0.0,11724.59,11724.59,0.0,0.0,organic,2017,NorthernNewEngland +39,2017-04-02,1.82,13640.21,128.73,364.3,0.0,13147.18,13147.18,0.0,0.0,organic,2017,NorthernNewEngland +40,2017-03-26,1.85,14479.04,126.1,228.24,0.0,14124.7,14124.7,0.0,0.0,organic,2017,NorthernNewEngland +41,2017-03-19,1.86,16064.02,168.09,170.68,0.0,15725.25,15725.25,0.0,0.0,organic,2017,NorthernNewEngland +42,2017-03-12,1.87,14773.91,119.61,198.91,0.0,14455.39,14455.39,0.0,0.0,organic,2017,NorthernNewEngland +43,2017-03-05,1.66,15016.27,76.78,269.38,0.0,14670.11,14670.11,0.0,0.0,organic,2017,NorthernNewEngland +44,2017-02-26,1.85,12277.49,10.34,263.6,0.0,12003.55,12003.55,0.0,0.0,organic,2017,NorthernNewEngland +45,2017-02-19,1.88,11527.69,2.6,221.4,0.0,11303.69,11303.69,0.0,0.0,organic,2017,NorthernNewEngland +46,2017-02-12,1.8,13474.78,2.56,325.75,0.0,13146.47,13146.47,0.0,0.0,organic,2017,NorthernNewEngland +47,2017-02-05,1.6,10860.38,1.31,304.11,0.0,10554.96,10554.96,0.0,0.0,organic,2017,NorthernNewEngland +48,2017-01-29,1.84,12789.12,3.82,333.23,0.0,12452.07,12452.07,0.0,0.0,organic,2017,NorthernNewEngland +49,2017-01-22,1.89,13492.85,2.54,185.06,0.0,13305.25,13305.25,0.0,0.0,organic,2017,NorthernNewEngland +50,2017-01-15,1.77,10857.24,0.0,197.94,0.0,10659.3,10659.3,0.0,0.0,organic,2017,NorthernNewEngland +51,2017-01-08,1.86,12777.93,3.76,254.54,0.0,12519.63,12519.63,0.0,0.0,organic,2017,NorthernNewEngland +52,2017-01-01,1.91,9214.09,6.23,130.87,0.0,9076.99,9076.99,0.0,0.0,organic,2017,NorthernNewEngland +0,2017-12-31,1.82,6063.44,164.98,1018.93,0.0,4879.53,4136.67,742.86,0.0,organic,2017,Orlando +1,2017-12-24,1.79,8232.75,172.8,1280.57,0.0,6779.38,5538.88,1240.5,0.0,organic,2017,Orlando +2,2017-12-17,1.6,5835.48,111.2,704.26,0.0,5020.02,4869.99,150.03,0.0,organic,2017,Orlando +3,2017-12-10,1.6,5703.21,93.53,721.9,0.0,4887.78,4884.45,3.33,0.0,organic,2017,Orlando +4,2017-12-03,1.67,4483.68,133.97,710.54,0.0,3639.17,3623.61,15.56,0.0,organic,2017,Orlando +5,2017-11-26,1.65,4800.66,87.84,727.01,0.0,3985.81,3975.55,10.26,0.0,organic,2017,Orlando +6,2017-11-19,1.8,6044.64,231.33,1063.87,0.0,4749.44,4072.72,676.72,0.0,organic,2017,Orlando +7,2017-11-12,1.88,5376.58,147.41,871.4,0.0,4357.77,4351.1,6.67,0.0,organic,2017,Orlando +8,2017-11-05,2.01,7634.15,248.29,1434.28,0.0,5951.58,4501.1,1450.48,0.0,organic,2017,Orlando +9,2017-10-29,2.01,6466.78,179.61,1219.5,0.0,5067.67,3897.77,1169.9,0.0,organic,2017,Orlando +10,2017-10-22,2.29,7965.85,318.97,1675.81,0.0,5971.07,4053.33,1917.74,0.0,organic,2017,Orlando +11,2017-10-15,2.87,3824.55,175.45,1228.12,0.0,2420.98,1696.66,724.32,0.0,organic,2017,Orlando +12,2017-10-08,2.27,4734.25,198.53,1046.76,0.0,3488.96,3378.88,110.08,0.0,organic,2017,Orlando +13,2017-10-01,2.35,8517.29,239.14,1618.07,0.0,6660.08,5291.11,1368.97,0.0,organic,2017,Orlando +14,2017-09-24,2.31,7564.56,496.68,1531.43,0.0,5536.45,4451.92,1084.53,0.0,organic,2017,Orlando +15,2017-09-17,2.65,5500.41,486.39,1590.78,0.0,3423.24,1720.22,1703.02,0.0,organic,2017,Orlando +16,2017-09-10,2.12,5927.43,250.97,826.99,0.0,4849.47,4658.17,191.3,0.0,organic,2017,Orlando +17,2017-09-03,2.45,5470.24,439.16,1794.3,0.0,3236.78,2042.89,1193.89,0.0,organic,2017,Orlando +18,2017-08-27,2.3,6882.52,589.98,3095.69,0.0,3196.85,3196.85,0.0,0.0,organic,2017,Orlando +19,2017-08-20,2.21,8464.73,807.9,1910.94,0.0,5745.89,5739.22,6.67,0.0,organic,2017,Orlando +20,2017-08-13,2.12,6193.38,767.0,1410.92,0.0,4015.46,4008.79,6.67,0.0,organic,2017,Orlando +21,2017-08-06,1.82,4035.77,115.65,823.15,0.0,3096.97,3096.97,0.0,0.0,organic,2017,Orlando +22,2017-07-30,1.69,4640.87,104.79,712.46,0.0,3823.62,3816.96,6.66,0.0,organic,2017,Orlando +23,2017-07-23,1.79,4731.7,89.48,833.81,0.0,3808.41,3808.41,0.0,0.0,organic,2017,Orlando +24,2017-07-16,1.86,4968.49,191.79,1118.94,0.0,3657.76,3651.1,6.66,0.0,organic,2017,Orlando +25,2017-07-09,1.9,5505.07,262.72,1460.13,0.0,3782.22,3778.89,3.33,0.0,organic,2017,Orlando +26,2017-07-02,2.17,8059.1,811.06,4168.04,0.0,3080.0,3080.0,0.0,0.0,organic,2017,Orlando +27,2017-06-25,2.18,7422.56,780.55,3949.02,0.0,2692.99,2689.66,3.33,0.0,organic,2017,Orlando +28,2017-06-18,2.15,7071.15,768.44,3446.35,0.0,2856.36,2853.03,3.33,0.0,organic,2017,Orlando +29,2017-06-11,1.97,5784.5,1583.21,333.85,0.0,3867.44,3867.44,0.0,0.0,organic,2017,Orlando +30,2017-06-04,2.1,6966.83,2155.29,172.57,0.0,4638.97,4638.97,0.0,0.0,organic,2017,Orlando +31,2017-05-28,1.8,8624.25,1830.55,174.17,0.0,6619.53,4830.7,1788.83,0.0,organic,2017,Orlando +32,2017-05-21,1.8,8800.59,1981.17,258.64,0.0,6560.78,5043.23,1517.55,0.0,organic,2017,Orlando +33,2017-05-14,2.06,7139.37,3870.2,219.06,0.0,3050.11,2911.43,138.68,0.0,organic,2017,Orlando +34,2017-05-07,1.57,6683.62,781.71,145.14,0.0,5756.77,2633.33,3123.44,0.0,organic,2017,Orlando +35,2017-04-30,2.38,4681.64,2188.24,289.11,0.0,2204.29,1853.34,350.95,0.0,organic,2017,Orlando +36,2017-04-23,1.94,7206.63,3447.75,394.43,0.0,3364.45,3364.45,0.0,0.0,organic,2017,Orlando +37,2017-04-16,2.83,4269.84,2090.78,266.25,0.0,1912.81,1508.89,403.92,0.0,organic,2017,Orlando +38,2017-04-09,2.31,4434.71,1570.06,215.36,0.0,2649.29,1034.11,1615.18,0.0,organic,2017,Orlando +39,2017-04-02,1.8,7480.22,1901.68,218.15,0.0,5360.39,4305.28,1055.11,0.0,organic,2017,Orlando +40,2017-03-26,1.54,8166.97,1228.48,140.26,0.0,6798.23,4407.59,2390.64,0.0,organic,2017,Orlando +41,2017-03-19,2.06,4382.2,1487.35,118.26,0.0,2776.59,1185.55,1591.04,0.0,organic,2017,Orlando +42,2017-03-12,2.2,3740.93,1292.48,144.78,0.0,2303.67,761.11,1542.56,0.0,organic,2017,Orlando +43,2017-03-05,2.28,4320.91,1879.14,207.53,0.0,2234.24,968.89,1265.35,0.0,organic,2017,Orlando +44,2017-02-26,2.08,4818.73,1562.36,107.79,0.0,3148.58,1042.22,2106.36,0.0,organic,2017,Orlando +45,2017-02-19,1.81,5205.8,1560.07,150.65,0.0,3495.08,1844.03,1651.05,0.0,organic,2017,Orlando +46,2017-02-12,1.49,6127.62,1199.5,62.28,0.0,4865.84,3905.76,960.08,0.0,organic,2017,Orlando +47,2017-02-05,1.95,4611.95,1715.85,210.43,0.0,2685.67,1271.11,1414.56,0.0,organic,2017,Orlando +48,2017-01-29,1.47,6055.75,580.6,63.11,0.0,5412.04,1900.01,3512.03,0.0,organic,2017,Orlando +49,2017-01-22,1.26,6741.5,527.11,78.21,0.0,6136.18,3583.33,2552.85,0.0,organic,2017,Orlando +50,2017-01-15,1.26,7323.72,539.1,112.35,0.0,6672.27,3426.67,3245.6,0.0,organic,2017,Orlando +51,2017-01-08,1.26,6429.15,521.24,35.6,0.0,5872.31,2883.33,2988.98,0.0,organic,2017,Orlando +52,2017-01-01,1.28,5686.95,558.15,26.59,0.0,5102.21,2530.0,2572.21,0.0,organic,2017,Orlando +0,2017-12-31,1.6,21941.34,1822.05,2761.23,4.91,17353.15,17347.57,5.58,0.0,organic,2017,Philadelphia +1,2017-12-24,1.6,23574.9,2183.15,3355.58,8.85,18027.32,17975.35,51.97,0.0,organic,2017,Philadelphia +2,2017-12-17,1.59,22003.42,2266.91,3684.26,3.49,16048.76,16034.48,14.28,0.0,organic,2017,Philadelphia +3,2017-12-10,1.5,28947.42,3846.15,4443.9,2.31,20655.06,20578.56,76.5,0.0,organic,2017,Philadelphia +4,2017-12-03,1.63,25940.77,3952.63,6132.01,11.61,15844.52,15814.32,30.2,0.0,organic,2017,Philadelphia +5,2017-11-26,1.72,18106.84,1488.01,2809.22,10.36,13799.25,13787.81,11.44,0.0,organic,2017,Philadelphia +6,2017-11-19,1.75,19663.06,1425.46,2936.37,12.49,15288.74,15274.35,14.39,0.0,organic,2017,Philadelphia +7,2017-11-12,1.7,26266.81,1980.93,3165.97,3.73,21116.18,21066.24,49.94,0.0,organic,2017,Philadelphia +8,2017-11-05,1.7,27824.19,1836.45,3409.48,0.0,22578.26,22517.97,60.29,0.0,organic,2017,Philadelphia +9,2017-10-29,1.73,27732.82,1757.98,4800.42,5.22,21169.2,21134.75,34.45,0.0,organic,2017,Philadelphia +10,2017-10-22,1.65,32004.79,1948.97,4354.97,24.34,25676.51,25637.91,38.6,0.0,organic,2017,Philadelphia +11,2017-10-15,1.69,31850.15,2588.95,3517.12,10.51,25733.57,25669.23,64.34,0.0,organic,2017,Philadelphia +12,2017-10-08,1.58,35985.8,2204.3,2935.05,6.15,30840.3,30809.89,30.41,0.0,organic,2017,Philadelphia +13,2017-10-01,1.61,32035.84,1696.86,3087.3,0.0,27251.68,27251.68,0.0,0.0,organic,2017,Philadelphia +14,2017-09-24,1.57,34499.29,1640.43,3883.65,28.78,28946.43,28946.43,0.0,0.0,organic,2017,Philadelphia +15,2017-09-17,1.62,30696.16,1230.31,4224.35,5.17,25236.33,25236.33,0.0,0.0,organic,2017,Philadelphia +16,2017-09-10,1.67,34277.44,1551.8,5487.54,5.95,27232.15,27232.15,0.0,0.0,organic,2017,Philadelphia +17,2017-09-03,1.85,27086.89,2163.23,5781.12,4.81,19137.73,19137.73,0.0,0.0,organic,2017,Philadelphia +18,2017-08-27,1.92,22152.02,1564.81,4602.16,12.86,15972.19,15972.19,0.0,0.0,organic,2017,Philadelphia +19,2017-08-20,1.74,28797.58,4535.82,7007.77,4.61,17249.38,17249.38,0.0,0.0,organic,2017,Philadelphia +20,2017-08-13,1.79,22362.31,1014.45,4880.17,11.82,16455.87,16455.87,0.0,0.0,organic,2017,Philadelphia +21,2017-08-06,1.78,20197.15,875.54,4130.82,3.69,15187.1,15176.81,10.29,0.0,organic,2017,Philadelphia +22,2017-07-30,1.74,21425.41,689.81,4317.72,6.13,16411.75,16411.75,0.0,0.0,organic,2017,Philadelphia +23,2017-07-23,1.59,28255.5,998.55,5290.65,7.86,21958.44,21952.74,5.7,0.0,organic,2017,Philadelphia +24,2017-07-16,1.63,25573.07,2091.63,6078.08,27.59,17375.77,17372.44,3.33,0.0,organic,2017,Philadelphia +25,2017-07-09,2.36,10675.62,968.76,4706.74,5.89,4994.23,4994.23,0.0,0.0,organic,2017,Philadelphia +26,2017-07-02,2.33,13643.23,1162.18,6156.45,7.31,6317.29,6275.92,41.37,0.0,organic,2017,Philadelphia +27,2017-06-25,2.22,14667.26,1527.5,6647.85,4.84,6487.07,6487.07,0.0,0.0,organic,2017,Philadelphia +28,2017-06-18,1.89,29588.66,8254.77,14019.73,11.83,7302.33,7014.14,288.19,0.0,organic,2017,Philadelphia +29,2017-06-11,2.24,18043.1,2738.47,6522.48,41.75,8740.4,8565.76,174.64,0.0,organic,2017,Philadelphia +30,2017-06-04,2.01,21652.97,5098.14,8574.42,6.96,7973.45,7734.66,238.79,0.0,organic,2017,Philadelphia +31,2017-05-28,2.22,15955.26,2251.74,6632.02,7.74,7063.76,7043.24,20.52,0.0,organic,2017,Philadelphia +32,2017-05-21,2.25,16900.89,2303.24,7258.39,0.0,7339.26,7339.26,0.0,0.0,organic,2017,Philadelphia +33,2017-05-14,2.29,17466.93,2785.9,6672.5,19.57,7988.96,7988.96,0.0,0.0,organic,2017,Philadelphia +34,2017-05-07,2.25,16765.51,2383.48,6793.53,18.88,7569.62,7569.62,0.0,0.0,organic,2017,Philadelphia +35,2017-04-30,1.93,23613.28,6569.77,9746.86,10.04,7286.61,7286.61,0.0,0.0,organic,2017,Philadelphia +36,2017-04-23,2.17,15607.14,2318.43,5746.83,0.0,7541.88,7535.14,6.74,0.0,organic,2017,Philadelphia +37,2017-04-16,1.9,25766.73,6434.9,11652.22,11.63,7667.98,7475.66,192.32,0.0,organic,2017,Philadelphia +38,2017-04-09,2.23,15498.84,2748.22,6194.36,3.38,6552.88,6505.53,47.35,0.0,organic,2017,Philadelphia +39,2017-04-02,1.88,23939.58,7379.43,10469.59,7.13,6083.43,6059.69,23.74,0.0,organic,2017,Philadelphia +40,2017-03-26,2.18,16770.93,3649.96,6356.03,2.05,6762.89,6681.85,81.04,0.0,organic,2017,Philadelphia +41,2017-03-19,1.82,25480.51,7444.63,11899.72,5.53,6130.63,5945.91,184.72,0.0,organic,2017,Philadelphia +42,2017-03-12,2.33,14160.84,2593.91,5686.31,15.17,5865.45,5865.45,0.0,0.0,organic,2017,Philadelphia +43,2017-03-05,1.76,22547.41,6022.07,9870.34,2.21,6652.79,6421.62,231.17,0.0,organic,2017,Philadelphia +44,2017-02-26,1.68,20993.1,4201.48,11005.43,10.86,5775.33,5678.14,97.19,0.0,organic,2017,Philadelphia +45,2017-02-19,1.38,64262.13,16636.2,41845.91,6.29,5773.73,5710.82,62.91,0.0,organic,2017,Philadelphia +46,2017-02-12,1.91,12382.57,1625.07,4126.39,0.0,6631.11,6540.08,91.03,0.0,organic,2017,Philadelphia +47,2017-02-05,1.86,11862.24,1770.92,3440.94,8.1,6642.28,6544.18,98.1,0.0,organic,2017,Philadelphia +48,2017-01-29,1.9,11574.88,1374.83,3255.7,9.02,6935.33,6844.43,90.9,0.0,organic,2017,Philadelphia +49,2017-01-22,2.0,10199.77,1524.38,3321.89,13.78,5339.72,5279.57,60.15,0.0,organic,2017,Philadelphia +50,2017-01-15,2.0,11538.53,1218.57,3918.11,15.5,6386.35,6361.46,24.89,0.0,organic,2017,Philadelphia +51,2017-01-08,2.04,10230.13,1445.86,3282.72,8.16,5493.39,5425.61,67.78,0.0,organic,2017,Philadelphia +52,2017-01-01,1.98,8600.66,1221.92,3644.99,5.08,3728.67,3703.42,25.25,0.0,organic,2017,Philadelphia +0,2017-12-31,1.71,14463.88,3000.73,2311.39,0.0,9151.76,9148.43,3.33,0.0,organic,2017,PhoenixTucson +1,2017-12-24,1.61,18364.96,5479.83,2129.93,0.0,10755.2,10741.33,13.87,0.0,organic,2017,PhoenixTucson +2,2017-12-17,1.45,17033.74,7127.47,2595.38,0.0,7310.89,7301.65,9.24,0.0,organic,2017,PhoenixTucson +3,2017-12-10,1.8,10964.1,1884.55,1989.33,0.0,7090.22,7076.98,13.24,0.0,organic,2017,PhoenixTucson +4,2017-12-03,1.83,10324.49,1850.85,1949.93,0.0,6523.71,6523.71,0.0,0.0,organic,2017,PhoenixTucson +5,2017-11-26,1.87,11120.24,2272.35,2038.36,0.0,6809.53,6809.53,0.0,0.0,organic,2017,PhoenixTucson +6,2017-11-19,1.9,12057.89,2224.57,2164.09,0.0,7669.23,7651.82,17.41,0.0,organic,2017,PhoenixTucson +7,2017-11-12,1.9,12462.54,2436.77,1918.4,0.0,8107.37,8096.02,11.35,0.0,organic,2017,PhoenixTucson +8,2017-11-05,1.93,10290.71,2207.93,1811.7,0.0,6271.08,6267.02,4.06,0.0,organic,2017,PhoenixTucson +9,2017-10-29,1.89,12481.54,2450.25,1503.06,0.0,8528.23,8522.17,6.06,0.0,organic,2017,PhoenixTucson +10,2017-10-22,1.79,10952.31,2184.07,508.22,0.0,8260.02,8254.52,5.5,0.0,organic,2017,PhoenixTucson +11,2017-10-15,1.77,10197.11,2370.22,101.99,0.0,7724.9,7703.01,21.89,0.0,organic,2017,PhoenixTucson +12,2017-10-08,1.78,11837.2,2749.91,124.43,0.0,8962.86,8921.88,40.98,0.0,organic,2017,PhoenixTucson +13,2017-10-01,1.8,11071.7,2624.47,142.4,0.0,8304.83,8270.68,34.15,0.0,organic,2017,PhoenixTucson +14,2017-09-24,1.81,12410.32,3328.26,270.47,0.0,8811.59,8808.26,3.33,0.0,organic,2017,PhoenixTucson +15,2017-09-17,1.82,12009.4,3712.48,307.14,0.0,7989.78,7976.99,12.79,0.0,organic,2017,PhoenixTucson +16,2017-09-10,1.85,11906.54,3667.46,633.24,0.0,7605.84,7554.42,51.42,0.0,organic,2017,PhoenixTucson +17,2017-09-03,1.86,11276.86,3334.5,787.62,0.0,7154.74,7097.64,57.1,0.0,organic,2017,PhoenixTucson +18,2017-08-27,2.0,16505.49,5358.19,2591.23,0.0,8556.07,8501.9,54.17,0.0,organic,2017,PhoenixTucson +19,2017-08-20,2.19,11021.67,2571.39,4024.95,0.0,4425.33,4373.91,51.42,0.0,organic,2017,PhoenixTucson +20,2017-08-13,2.01,9894.67,1907.11,3464.06,0.0,4523.5,4431.26,92.24,0.0,organic,2017,PhoenixTucson +21,2017-08-06,1.84,10737.76,2862.01,2743.0,0.0,5132.75,5095.53,37.22,0.0,organic,2017,PhoenixTucson +22,2017-07-30,1.9,10625.79,2777.53,3021.23,0.0,4827.03,4821.85,5.18,0.0,organic,2017,PhoenixTucson +23,2017-07-23,2.04,10327.71,2881.74,3345.03,0.0,4100.94,4090.02,10.92,0.0,organic,2017,PhoenixTucson +24,2017-07-16,2.06,10160.75,1986.97,3845.18,0.0,4328.6,3929.06,399.54,0.0,organic,2017,PhoenixTucson +25,2017-07-09,1.84,11854.84,2378.75,4376.29,0.0,5099.8,2688.05,2411.75,0.0,organic,2017,PhoenixTucson +26,2017-07-02,2.02,10239.04,3244.01,3587.62,0.0,3407.41,1813.81,1593.6,0.0,organic,2017,PhoenixTucson +27,2017-06-25,1.94,9483.22,3115.66,3197.41,0.0,3170.15,1028.61,2141.54,0.0,organic,2017,PhoenixTucson +28,2017-06-18,1.97,9720.05,3206.8,3475.47,0.0,3037.78,1052.43,1985.35,0.0,organic,2017,PhoenixTucson +29,2017-06-11,1.94,10265.31,3437.29,3283.35,0.0,3544.67,1695.24,1849.43,0.0,organic,2017,PhoenixTucson +30,2017-06-04,1.88,11693.79,3852.69,3456.64,0.0,4384.46,1035.19,3349.27,0.0,organic,2017,PhoenixTucson +31,2017-05-28,1.94,9976.29,3632.08,3316.0,0.0,3028.21,729.36,2298.85,0.0,organic,2017,PhoenixTucson +32,2017-05-21,2.06,9126.2,4146.42,3679.99,0.0,1299.79,381.04,918.75,0.0,organic,2017,PhoenixTucson +33,2017-05-14,1.78,10801.99,4909.91,4204.5,0.0,1687.58,561.58,1126.0,0.0,organic,2017,PhoenixTucson +34,2017-05-07,1.82,12366.01,4943.78,4878.07,0.0,2544.16,693.23,1850.93,0.0,organic,2017,PhoenixTucson +35,2017-04-30,1.87,10199.4,2979.75,5256.95,0.0,1962.7,700.97,1261.73,0.0,organic,2017,PhoenixTucson +36,2017-04-23,1.67,13678.61,3557.81,6186.19,0.0,3934.61,1470.08,2464.53,0.0,organic,2017,PhoenixTucson +37,2017-04-16,1.51,16022.22,3513.65,5291.51,0.0,7217.06,6768.0,449.06,0.0,organic,2017,PhoenixTucson +38,2017-04-09,1.39,16825.54,3717.74,4797.4,0.0,8310.4,8212.43,97.97,0.0,organic,2017,PhoenixTucson +39,2017-04-02,1.38,16511.26,3853.09,4420.79,0.0,8237.38,8098.05,139.33,0.0,organic,2017,PhoenixTucson +40,2017-03-26,1.37,20102.19,4708.54,5221.26,0.0,10172.39,9863.66,308.73,0.0,organic,2017,PhoenixTucson +41,2017-03-19,1.35,19557.62,5590.86,4605.78,0.0,9360.98,7775.63,1585.35,0.0,organic,2017,PhoenixTucson +42,2017-03-12,1.38,17655.67,4464.31,4728.74,2.29,8460.33,8211.04,249.29,0.0,organic,2017,PhoenixTucson +43,2017-03-05,1.42,16463.74,3983.63,4431.24,0.0,8048.87,7854.53,194.34,0.0,organic,2017,PhoenixTucson +44,2017-02-26,1.22,25773.92,5457.84,8709.92,0.0,11606.16,11557.93,48.23,0.0,organic,2017,PhoenixTucson +45,2017-02-19,1.28,17934.06,4394.0,4602.73,0.0,8937.33,8929.66,7.67,0.0,organic,2017,PhoenixTucson +46,2017-02-12,1.46,21516.41,4277.79,8117.59,0.0,9121.03,9084.73,36.3,0.0,organic,2017,PhoenixTucson +47,2017-02-05,1.23,18884.1,5981.39,5129.05,0.0,7773.66,7773.66,0.0,0.0,organic,2017,PhoenixTucson +48,2017-01-29,1.49,14419.22,4218.73,4389.86,0.0,5810.63,5789.71,20.92,0.0,organic,2017,PhoenixTucson +49,2017-01-22,1.59,10333.37,2433.61,3905.32,0.0,3994.44,3964.66,29.78,0.0,organic,2017,PhoenixTucson +50,2017-01-15,1.49,11582.83,3008.72,3123.32,0.0,5450.79,5443.7,7.09,0.0,organic,2017,PhoenixTucson +51,2017-01-08,1.4,13244.8,3667.93,4389.06,0.0,5187.81,5140.05,47.76,0.0,organic,2017,PhoenixTucson +52,2017-01-01,1.88,7740.98,2155.99,3030.64,1.2,2553.15,2547.83,5.32,0.0,organic,2017,PhoenixTucson +0,2017-12-31,1.4,10651.96,941.87,13.2,0.0,9696.89,9696.89,0.0,0.0,organic,2017,Pittsburgh +1,2017-12-24,1.37,10465.03,851.72,4.96,0.0,9608.35,9608.35,0.0,0.0,organic,2017,Pittsburgh +2,2017-12-17,1.37,9321.92,935.25,5.12,0.0,8381.55,8378.22,3.33,0.0,organic,2017,Pittsburgh +3,2017-12-10,1.39,9389.3,923.14,34.45,0.0,8431.71,8431.71,0.0,0.0,organic,2017,Pittsburgh +4,2017-12-03,1.36,12342.47,1017.69,52.82,0.0,11271.96,11265.3,6.66,0.0,organic,2017,Pittsburgh +5,2017-11-26,1.37,9578.39,965.14,10.53,0.0,8602.72,8596.05,6.67,0.0,organic,2017,Pittsburgh +6,2017-11-19,1.44,10579.74,1176.5,31.85,0.0,9371.39,9371.39,0.0,0.0,organic,2017,Pittsburgh +7,2017-11-12,1.45,11369.3,1130.66,17.72,0.0,10220.92,10217.59,3.33,0.0,organic,2017,Pittsburgh +8,2017-11-05,1.43,11678.95,1191.23,12.41,0.0,10475.31,10463.09,12.22,0.0,organic,2017,Pittsburgh +9,2017-10-29,1.43,11438.37,1095.47,26.46,0.0,10316.44,10309.77,6.67,0.0,organic,2017,Pittsburgh +10,2017-10-22,1.43,11539.28,1240.6,10.63,0.0,10288.05,10281.38,6.67,0.0,organic,2017,Pittsburgh +11,2017-10-15,1.39,13004.97,1168.25,81.55,0.0,11755.17,11748.5,6.67,0.0,organic,2017,Pittsburgh +12,2017-10-08,1.35,15900.88,1108.27,24.83,0.0,14767.78,14761.11,6.67,0.0,organic,2017,Pittsburgh +13,2017-10-01,1.4,11819.12,969.51,35.45,0.0,10814.16,10814.16,0.0,0.0,organic,2017,Pittsburgh +14,2017-09-24,1.42,11807.12,1175.34,44.45,0.0,10587.33,10584.0,3.33,0.0,organic,2017,Pittsburgh +15,2017-09-17,1.43,10257.52,1124.54,21.22,0.0,9111.76,9111.76,0.0,0.0,organic,2017,Pittsburgh +16,2017-09-10,1.48,9267.69,1076.06,21.1,0.0,8170.53,8167.2,3.33,0.0,organic,2017,Pittsburgh +17,2017-09-03,1.5,8523.79,1233.77,22.88,0.0,7267.14,7267.14,0.0,0.0,organic,2017,Pittsburgh +18,2017-08-27,1.49,8397.14,1179.67,24.47,0.0,7193.0,7193.0,0.0,0.0,organic,2017,Pittsburgh +19,2017-08-20,1.47,8511.04,990.99,14.06,0.0,7505.99,7502.66,3.33,0.0,organic,2017,Pittsburgh +20,2017-08-13,1.44,9150.32,833.85,36.67,0.0,8279.8,8273.14,6.66,0.0,organic,2017,Pittsburgh +21,2017-08-06,1.43,10179.13,861.22,28.71,0.0,9289.2,9289.2,0.0,0.0,organic,2017,Pittsburgh +22,2017-07-30,1.43,10125.12,945.2,16.88,0.0,9163.04,9156.37,6.67,0.0,organic,2017,Pittsburgh +23,2017-07-23,1.28,11391.33,388.46,22.35,0.0,10980.52,10980.52,0.0,0.0,organic,2017,Pittsburgh +24,2017-07-16,1.42,8571.31,533.67,8.53,0.0,8029.11,8029.11,0.0,0.0,organic,2017,Pittsburgh +25,2017-07-09,1.58,7955.6,965.46,11.98,0.0,6978.16,6974.83,3.33,0.0,organic,2017,Pittsburgh +26,2017-07-02,1.58,8002.38,865.57,36.1,0.0,7100.71,7094.05,6.66,0.0,organic,2017,Pittsburgh +27,2017-06-25,1.54,2406.34,165.75,0.0,0.0,2240.59,2226.75,13.84,0.0,organic,2017,Pittsburgh +28,2017-06-18,1.56,2644.9,225.97,110.98,0.0,2307.95,2304.62,3.33,0.0,organic,2017,Pittsburgh +29,2017-06-11,1.57,3490.48,261.56,0.0,0.0,3228.92,3228.92,0.0,0.0,organic,2017,Pittsburgh +30,2017-06-04,1.55,8901.94,1034.11,27.95,0.0,7839.88,7839.88,0.0,0.0,organic,2017,Pittsburgh +31,2017-05-28,1.54,6743.84,963.37,8.77,0.0,5771.7,5740.5,31.2,0.0,organic,2017,Pittsburgh +32,2017-05-21,1.52,2858.31,403.32,3.54,0.0,2451.45,2372.83,78.62,0.0,organic,2017,Pittsburgh +33,2017-05-14,1.49,4101.47,803.09,5.34,0.0,3293.04,2743.0,550.04,0.0,organic,2017,Pittsburgh +34,2017-05-07,1.51,7538.29,937.13,25.33,0.0,6575.83,5972.78,603.05,0.0,organic,2017,Pittsburgh +35,2017-04-30,1.49,9892.96,902.11,3.64,0.0,8987.21,8233.14,754.07,0.0,organic,2017,Pittsburgh +36,2017-04-23,1.51,11740.75,1047.28,9.11,0.0,10684.36,10000.34,684.02,0.0,organic,2017,Pittsburgh +37,2017-04-16,1.51,12174.58,981.59,14.6,0.0,11178.39,10521.57,656.82,0.0,organic,2017,Pittsburgh +38,2017-04-09,1.51,9893.97,923.93,5.47,0.0,8964.57,8364.69,599.88,0.0,organic,2017,Pittsburgh +39,2017-04-02,1.51,9751.92,805.98,5.46,0.0,8940.48,8410.84,529.64,0.0,organic,2017,Pittsburgh +40,2017-03-26,1.5,10049.14,822.59,3.61,0.0,9222.94,8681.76,541.18,0.0,organic,2017,Pittsburgh +41,2017-03-19,1.47,9927.4,800.41,22.38,0.0,9104.61,8530.84,573.77,0.0,organic,2017,Pittsburgh +42,2017-03-12,1.45,9954.06,783.84,13.6,3.4,9153.22,8571.34,581.88,0.0,organic,2017,Pittsburgh +43,2017-03-05,1.43,6643.48,817.44,29.79,0.0,5796.25,5282.48,513.77,0.0,organic,2017,Pittsburgh +44,2017-02-26,1.41,3584.79,844.97,9.94,0.0,2729.88,2247.72,482.16,0.0,organic,2017,Pittsburgh +45,2017-02-19,1.45,8805.28,828.39,3.24,0.0,7973.65,7456.43,517.22,0.0,organic,2017,Pittsburgh +46,2017-02-12,1.41,8934.28,719.78,1.64,0.0,8212.86,7777.5,435.36,0.0,organic,2017,Pittsburgh +47,2017-02-05,1.4,7367.61,683.24,15.93,0.0,6668.44,6350.32,318.12,0.0,organic,2017,Pittsburgh +48,2017-01-29,1.43,8952.16,940.32,19.9,0.0,7991.94,7464.93,527.01,0.0,organic,2017,Pittsburgh +49,2017-01-22,1.4,8828.82,768.82,5.01,0.0,8054.99,7606.17,448.82,0.0,organic,2017,Pittsburgh +50,2017-01-15,1.47,7911.58,935.06,25.23,0.0,6951.29,6577.57,373.72,0.0,organic,2017,Pittsburgh +51,2017-01-08,1.45,8985.72,901.71,23.73,0.0,8060.28,7578.16,482.12,0.0,organic,2017,Pittsburgh +52,2017-01-01,1.5,9725.08,953.37,23.92,0.0,8747.79,8432.66,315.13,0.0,organic,2017,Pittsburgh +0,2017-12-31,1.63,62228.22,3018.47,15029.08,38.91,44141.76,32311.88,11829.88,0.0,organic,2017,Plains +1,2017-12-24,1.73,53663.33,2437.98,17137.62,29.27,34058.46,22547.68,11499.94,10.84,organic,2017,Plains +2,2017-12-17,1.67,57922.35,1958.11,17379.12,58.63,38520.68,27431.38,11089.3,0.0,organic,2017,Plains +3,2017-12-10,1.7,54723.29,1965.71,15750.0,9.73,36976.92,25074.28,11902.64,0.0,organic,2017,Plains +4,2017-12-03,1.76,47265.24,2087.77,14952.84,24.23,30200.4,18480.79,11719.61,0.0,organic,2017,Plains +5,2017-11-26,1.78,47738.89,1912.15,12604.73,7.28,33214.73,21333.07,11881.66,0.0,organic,2017,Plains +6,2017-11-19,1.8,48924.81,2835.23,14769.82,48.37,31260.69,19421.6,11839.09,0.0,organic,2017,Plains +7,2017-11-12,1.89,51340.54,937.33,18192.0,169.54,32041.67,19440.3,12601.37,0.0,organic,2017,Plains +8,2017-11-05,1.89,48099.91,1006.07,13421.84,70.09,33601.91,23095.17,10506.74,0.0,organic,2017,Plains +9,2017-10-29,1.88,49301.56,995.63,11209.3,273.81,36822.82,25519.81,11303.01,0.0,organic,2017,Plains +10,2017-10-22,1.96,56614.23,1352.09,14045.55,375.42,40841.17,26362.82,14478.35,0.0,organic,2017,Plains +11,2017-10-15,2.07,53711.04,1119.87,14609.29,414.22,37562.6,26290.94,11271.66,0.0,organic,2017,Plains +12,2017-10-08,2.02,60256.56,1701.98,14818.4,366.66,43369.52,34313.95,9055.57,0.0,organic,2017,Plains +13,2017-10-01,2.09,60186.09,1616.73,15507.7,1134.3,41901.3,32057.02,9844.28,0.0,organic,2017,Plains +14,2017-09-24,2.13,49093.24,1296.19,15708.29,379.9,31704.85,22812.27,8884.57,8.01,organic,2017,Plains +15,2017-09-17,2.12,54502.39,1296.96,16452.09,60.03,36688.72,20458.94,16229.78,0.0,organic,2017,Plains +16,2017-09-10,2.09,56583.1,1504.55,16919.57,24.03,38117.92,19391.33,18726.59,0.0,organic,2017,Plains +17,2017-09-03,2.12,54026.99,1395.08,19190.49,973.47,32467.95,20082.79,12385.16,0.0,organic,2017,Plains +18,2017-08-27,2.01,60468.47,1074.2,22609.26,1121.4,35663.61,25961.28,9697.03,5.3,organic,2017,Plains +19,2017-08-20,1.92,64189.39,1398.68,24463.43,114.98,38212.3,28827.29,9385.01,0.0,organic,2017,Plains +20,2017-08-13,1.8,68831.83,1263.24,22638.51,57.32,44867.19,33840.62,11026.57,0.0,organic,2017,Plains +21,2017-08-06,1.8,68525.6,2462.31,18938.49,31.05,47093.75,34485.91,12607.84,0.0,organic,2017,Plains +22,2017-07-30,1.73,59314.22,1456.22,16781.86,45.32,41030.82,31277.63,9753.19,0.0,organic,2017,Plains +23,2017-07-23,1.72,55116.84,2277.34,15728.39,16.57,37094.54,27524.59,9569.95,0.0,organic,2017,Plains +24,2017-07-16,1.82,64457.41,3175.66,24288.09,28.46,36912.55,25384.46,11528.09,0.0,organic,2017,Plains +25,2017-07-09,1.62,63609.57,2420.11,23093.17,61.27,38035.02,18331.46,19703.56,0.0,organic,2017,Plains +26,2017-07-02,1.55,59145.56,1399.43,20993.46,54.01,36698.66,17049.24,19649.42,0.0,organic,2017,Plains +27,2017-06-25,1.56,65066.62,3136.16,19656.54,112.27,42161.65,18213.76,23947.89,0.0,organic,2017,Plains +28,2017-06-18,1.56,79491.78,4541.23,31669.43,267.93,43013.19,20340.83,22672.36,0.0,organic,2017,Plains +29,2017-06-11,1.63,71995.22,7271.57,21569.39,118.23,43036.03,20516.93,22519.1,0.0,organic,2017,Plains +30,2017-06-04,1.62,73160.65,4101.74,21665.84,57.86,47335.21,25286.63,22048.58,0.0,organic,2017,Plains +31,2017-05-28,1.63,71551.35,3682.02,22151.54,194.47,45523.32,24299.08,21224.24,0.0,organic,2017,Plains +32,2017-05-21,1.57,85984.55,4614.96,33738.22,778.72,46852.65,22566.48,24286.17,0.0,organic,2017,Plains +33,2017-05-14,1.62,69358.17,3417.56,21230.05,251.83,44458.73,22549.94,21908.79,0.0,organic,2017,Plains +34,2017-05-07,1.58,68236.34,2467.03,20644.8,375.91,44748.6,23886.0,20862.6,0.0,organic,2017,Plains +35,2017-04-30,1.8,69732.89,2391.99,29776.85,1470.12,36093.93,19268.73,16825.2,0.0,organic,2017,Plains +36,2017-04-23,1.67,70584.97,4057.02,23962.95,307.19,42257.81,26018.54,16239.27,0.0,organic,2017,Plains +37,2017-04-16,1.59,85609.54,5166.93,24157.5,1783.22,54501.89,29033.98,25467.91,0.0,organic,2017,Plains +38,2017-04-09,1.56,82376.37,5699.93,20029.5,5924.48,50722.46,20695.25,30027.21,0.0,organic,2017,Plains +39,2017-04-02,1.55,81276.27,5032.45,22665.95,855.1,52722.77,21004.95,31717.82,0.0,organic,2017,Plains +40,2017-03-26,1.51,81982.77,5449.39,23565.89,1102.12,51865.37,21163.88,30701.49,0.0,organic,2017,Plains +41,2017-03-19,1.54,75867.95,5693.04,23743.93,952.64,45478.34,19921.39,25556.95,0.0,organic,2017,Plains +42,2017-03-12,1.5,71708.81,5373.18,23302.63,769.18,42263.82,18086.4,24177.42,0.0,organic,2017,Plains +43,2017-03-05,1.39,79590.74,6729.74,25452.37,464.44,46944.19,19928.87,27015.32,0.0,organic,2017,Plains +44,2017-02-26,1.39,76034.02,6058.09,24558.45,1293.32,44124.16,20679.02,23445.14,0.0,organic,2017,Plains +45,2017-02-19,1.5,55912.77,4415.63,17174.19,755.8,33567.15,18926.25,14640.9,0.0,organic,2017,Plains +46,2017-02-12,1.49,59073.9,4047.83,17976.54,1009.67,36039.86,20023.2,16016.66,0.0,organic,2017,Plains +47,2017-02-05,1.6,48964.14,3181.84,19535.39,151.77,26095.14,15341.1,10754.04,0.0,organic,2017,Plains +48,2017-01-29,1.55,49505.09,4305.53,16857.63,935.56,27406.37,16105.53,11300.84,0.0,organic,2017,Plains +49,2017-01-22,1.57,55867.65,5924.1,18291.59,3406.4,28245.56,18114.66,10130.9,0.0,organic,2017,Plains +50,2017-01-15,1.56,64677.46,5384.45,18694.14,5562.78,35036.09,23848.37,11187.72,0.0,organic,2017,Plains +51,2017-01-08,1.67,56310.43,4527.73,18578.92,5649.58,27554.2,21617.03,5937.17,0.0,organic,2017,Plains +52,2017-01-01,1.62,47042.21,4547.17,15245.73,1366.36,25882.95,17253.74,8629.21,0.0,organic,2017,Plains +0,2017-12-31,1.51,25693.99,3639.53,3807.79,0.0,18246.67,1265.87,16973.41,7.39,organic,2017,Portland +1,2017-12-24,1.44,36918.84,3151.04,5172.61,1.67,28593.52,2146.48,26439.61,7.43,organic,2017,Portland +2,2017-12-17,1.54,26460.36,1531.05,4505.66,5.05,20418.6,4651.98,15753.53,13.09,organic,2017,Portland +3,2017-12-10,1.42,35195.1,2456.22,5456.26,13.45,27269.17,1496.88,25762.95,9.34,organic,2017,Portland +4,2017-12-03,1.52,29860.53,2244.93,5328.78,0.0,22286.82,989.99,21274.46,22.37,organic,2017,Portland +5,2017-11-26,1.47,32304.55,1191.41,5754.51,3.4,25355.23,1640.51,23642.86,71.86,organic,2017,Portland +6,2017-11-19,1.86,21054.36,1267.18,3948.46,3.35,15835.37,1427.56,14258.78,149.03,organic,2017,Portland +7,2017-11-12,1.86,18769.43,1791.82,2951.24,0.0,14026.37,1655.19,12367.46,3.72,organic,2017,Portland +8,2017-11-05,2.45,17023.02,2068.98,2392.02,0.0,12562.02,1473.33,11077.58,11.11,organic,2017,Portland +9,2017-10-29,2.49,17335.77,2011.28,2499.56,0.0,12824.93,1483.24,11325.08,16.61,organic,2017,Portland +10,2017-10-22,2.48,15825.16,1737.93,2304.96,1.66,11780.61,1490.66,10277.06,12.89,organic,2017,Portland +11,2017-10-15,2.71,16796.38,1671.14,2449.35,6.61,12669.28,1435.65,11233.63,0.0,organic,2017,Portland +12,2017-10-08,2.85,16818.84,1802.17,2450.42,1.64,12564.61,1712.22,10852.39,0.0,organic,2017,Portland +13,2017-10-01,2.86,16126.21,188.42,2362.6,1.64,13573.55,1314.56,12249.89,9.1,organic,2017,Portland +14,2017-09-24,2.81,13513.91,179.73,1941.11,0.0,11393.07,1399.19,9963.02,30.86,organic,2017,Portland +15,2017-09-17,2.83,14321.85,236.27,2269.84,9.78,11805.96,1404.53,10377.89,23.54,organic,2017,Portland +16,2017-09-10,2.84,14781.24,182.73,1918.62,6.53,12673.36,1401.92,11193.49,77.95,organic,2017,Portland +17,2017-09-03,2.84,17417.97,176.24,2517.99,0.0,14723.74,1616.39,13002.18,105.17,organic,2017,Portland +18,2017-08-27,2.85,15474.64,197.18,2404.96,22.63,12849.87,1238.37,11611.5,0.0,organic,2017,Portland +19,2017-08-20,2.57,15490.38,582.87,4084.97,13.06,10809.48,1081.11,9721.11,7.26,organic,2017,Portland +20,2017-08-13,2.33,20028.66,3505.69,2495.68,0.0,14027.29,1686.43,12340.86,0.0,organic,2017,Portland +21,2017-08-06,2.14,27316.23,8822.05,3672.5,18.46,14803.22,2466.44,12336.78,0.0,organic,2017,Portland +22,2017-07-30,2.29,28171.21,6085.95,8191.27,25.18,13868.81,1355.55,12513.26,0.0,organic,2017,Portland +23,2017-07-23,2.35,28248.08,2185.42,10316.01,8.19,15738.46,173.33,15565.13,0.0,organic,2017,Portland +24,2017-07-16,2.33,28189.28,3130.81,8104.86,5.04,16948.57,275.55,16673.02,0.0,organic,2017,Portland +25,2017-07-09,1.66,39752.74,2463.61,11058.61,0.0,26230.52,125.58,26104.94,0.0,organic,2017,Portland +26,2017-07-02,1.93,35248.52,6316.51,10620.11,5.02,18306.88,315.73,17991.15,0.0,organic,2017,Portland +27,2017-06-25,2.34,24536.33,6207.54,9746.83,3.34,8578.62,227.23,8351.39,0.0,organic,2017,Portland +28,2017-06-18,1.77,30476.21,6068.58,4075.79,8.35,20323.49,153.34,20170.15,0.0,organic,2017,Portland +29,2017-06-11,1.28,54820.68,6406.86,4677.44,10.02,43726.36,214.55,43511.81,0.0,organic,2017,Portland +30,2017-06-04,1.23,54996.69,4687.9,5471.44,38.34,44799.01,131.68,44667.33,0.0,organic,2017,Portland +31,2017-05-28,1.14,61244.5,2592.01,9302.65,31.96,49317.88,166.04,49151.84,0.0,organic,2017,Portland +32,2017-05-21,1.18,50366.31,6687.57,3688.01,8.42,39982.31,203.25,39779.06,0.0,organic,2017,Portland +33,2017-05-14,1.3,48275.47,5546.5,3638.93,8.47,39081.57,352.47,38729.1,0.0,organic,2017,Portland +34,2017-05-07,1.11,52220.44,7740.99,4048.4,23.83,40407.22,159.67,40247.55,0.0,organic,2017,Portland +35,2017-04-30,1.11,44526.5,6225.21,3347.84,97.16,34856.29,147.76,34708.53,0.0,organic,2017,Portland +36,2017-04-23,1.16,45274.16,5451.4,3518.13,150.29,36154.34,223.45,35930.89,0.0,organic,2017,Portland +37,2017-04-16,1.15,45803.57,3515.55,5519.58,13.66,36754.78,235.96,36518.82,0.0,organic,2017,Portland +38,2017-04-09,1.19,47499.5,2571.34,8188.26,20.45,36719.45,170.92,36548.53,0.0,organic,2017,Portland +39,2017-04-02,0.78,66751.16,3229.32,8942.34,13.62,54565.88,143.33,54422.55,0.0,organic,2017,Portland +40,2017-03-26,0.68,77379.73,2870.05,5856.87,18.61,68634.2,148.03,68486.17,0.0,organic,2017,Portland +41,2017-03-19,1.28,30396.42,3656.07,5739.84,4.95,20995.56,197.33,20798.23,0.0,organic,2017,Portland +42,2017-03-12,1.19,34526.66,3661.47,3665.38,4.91,27194.9,162.44,27032.46,0.0,organic,2017,Portland +43,2017-03-05,0.76,62780.86,6745.63,5868.6,3.26,50163.37,629.12,49534.25,0.0,organic,2017,Portland +44,2017-02-26,1.23,30803.34,3411.42,5012.15,25.84,22353.93,516.54,21837.39,0.0,organic,2017,Portland +45,2017-02-19,1.45,25338.41,3759.62,4219.62,26.01,17333.16,5968.69,11364.47,0.0,organic,2017,Portland +46,2017-02-12,1.59,22901.55,2363.06,5774.75,26.09,14737.65,7610.05,7127.6,0.0,organic,2017,Portland +47,2017-02-05,0.93,38945.01,3761.94,5756.42,14.59,29412.06,960.58,28451.48,0.0,organic,2017,Portland +48,2017-01-29,0.99,35700.1,3147.45,4138.38,1.63,28412.64,849.74,27562.9,0.0,organic,2017,Portland +49,2017-01-22,0.96,37742.57,2500.96,4287.6,6.54,30947.47,321.1,30626.37,0.0,organic,2017,Portland +50,2017-01-15,0.98,42695.84,3851.49,4314.91,8.19,34521.25,310.38,34210.87,0.0,organic,2017,Portland +51,2017-01-08,1.01,47556.69,3790.24,6998.59,14.77,36753.09,279.31,36473.78,0.0,organic,2017,Portland +52,2017-01-01,0.99,31827.5,4842.14,3008.78,0.0,23976.58,173.02,23803.56,0.0,organic,2017,Portland +0,2017-12-31,2.06,13531.12,89.4,5189.69,203.49,8048.54,7934.12,114.42,0.0,organic,2017,RaleighGreensboro +1,2017-12-24,2.12,11091.83,131.68,4064.42,144.61,6751.12,6726.16,24.96,0.0,organic,2017,RaleighGreensboro +2,2017-12-17,2.03,10729.32,77.21,4392.7,150.91,6108.5,5862.83,245.67,0.0,organic,2017,RaleighGreensboro +3,2017-12-10,2.12,11025.4,59.16,4370.67,158.91,6436.66,6323.78,112.88,0.0,organic,2017,RaleighGreensboro +4,2017-12-03,2.11,10433.94,74.33,5140.66,214.87,5004.08,4908.58,95.5,0.0,organic,2017,RaleighGreensboro +5,2017-11-26,2.18,10080.77,143.37,3621.34,107.53,6208.53,6069.78,138.75,0.0,organic,2017,RaleighGreensboro +6,2017-11-19,2.32,9279.95,131.72,3703.25,93.25,5351.73,5306.4,45.33,0.0,organic,2017,RaleighGreensboro +7,2017-11-12,2.32,11244.3,95.76,4252.55,121.67,6774.32,6614.27,160.05,0.0,organic,2017,RaleighGreensboro +8,2017-11-05,2.29,12304.78,192.26,4978.84,173.5,6960.18,6880.73,79.45,0.0,organic,2017,RaleighGreensboro +9,2017-10-29,1.92,19837.54,181.87,4145.71,133.58,15376.38,15201.69,174.69,0.0,organic,2017,RaleighGreensboro +10,2017-10-22,2.2,15322.27,196.22,4273.42,109.06,10743.57,10586.84,156.73,0.0,organic,2017,RaleighGreensboro +11,2017-10-15,2.53,13272.0,442.38,3627.0,103.46,9099.16,8866.56,232.6,0.0,organic,2017,RaleighGreensboro +12,2017-10-08,2.85,12366.93,96.31,4599.62,125.61,7545.39,7471.59,73.8,0.0,organic,2017,RaleighGreensboro +13,2017-10-01,3.0,10741.93,140.46,4331.2,147.11,6123.16,5873.99,249.17,0.0,organic,2017,RaleighGreensboro +14,2017-09-24,2.38,14971.31,130.85,4470.68,116.31,10253.47,9603.33,650.14,0.0,organic,2017,RaleighGreensboro +15,2017-09-17,2.92,10297.07,89.79,4298.97,161.11,5747.2,5319.2,428.0,0.0,organic,2017,RaleighGreensboro +16,2017-09-10,2.89,13472.37,145.75,4564.2,137.53,8624.89,8026.52,598.37,0.0,organic,2017,RaleighGreensboro +17,2017-09-03,2.97,14052.55,169.06,4855.92,148.96,8878.61,8315.09,563.52,0.0,organic,2017,RaleighGreensboro +18,2017-08-27,3.04,12656.32,419.06,4851.9,145.09,7240.27,6960.97,279.3,0.0,organic,2017,RaleighGreensboro +19,2017-08-20,2.65,12011.77,384.39,4690.2,132.95,6804.23,6470.49,333.74,0.0,organic,2017,RaleighGreensboro +20,2017-08-13,2.29,11388.25,140.56,4659.38,135.63,6452.68,6441.72,10.96,0.0,organic,2017,RaleighGreensboro +21,2017-08-06,2.51,14133.77,138.72,5216.39,174.16,8604.5,8220.82,383.68,0.0,organic,2017,RaleighGreensboro +22,2017-07-30,2.11,9179.77,269.89,5176.93,195.51,3537.44,3277.55,259.89,0.0,organic,2017,RaleighGreensboro +23,2017-07-23,1.95,10503.59,159.08,5194.4,192.67,4957.44,4642.47,314.97,0.0,organic,2017,RaleighGreensboro +24,2017-07-16,1.99,10827.99,148.68,5715.34,222.11,4741.86,4579.11,162.75,0.0,organic,2017,RaleighGreensboro +25,2017-07-09,1.97,10835.76,101.76,5697.63,240.83,4795.54,3907.95,887.59,0.0,organic,2017,RaleighGreensboro +26,2017-07-02,2.05,8342.87,139.69,5019.56,219.17,2964.45,2841.94,122.51,0.0,organic,2017,RaleighGreensboro +27,2017-06-25,1.95,10089.71,173.53,5355.82,266.79,4293.57,3840.94,452.63,0.0,organic,2017,RaleighGreensboro +28,2017-06-18,1.91,10827.19,185.41,5446.58,288.95,4906.25,4235.27,670.98,0.0,organic,2017,RaleighGreensboro +29,2017-06-11,2.03,13340.43,296.11,5183.19,293.94,7567.19,6798.17,769.02,0.0,organic,2017,RaleighGreensboro +30,2017-06-04,2.38,9283.58,278.47,5303.7,280.8,3420.61,2204.98,1215.63,0.0,organic,2017,RaleighGreensboro +31,2017-05-28,2.55,10273.69,315.52,5326.02,364.99,4267.16,2844.43,1422.73,0.0,organic,2017,RaleighGreensboro +32,2017-05-21,2.63,8322.8,311.21,5215.69,311.21,2484.69,2169.64,315.05,0.0,organic,2017,RaleighGreensboro +33,2017-05-14,2.44,9771.04,182.76,6859.79,373.56,2354.93,2133.98,220.95,0.0,organic,2017,RaleighGreensboro +34,2017-05-07,2.61,9680.55,231.3,5522.61,307.07,3619.57,3168.9,450.67,0.0,organic,2017,RaleighGreensboro +35,2017-04-30,2.76,8391.71,302.62,4790.79,293.52,3004.78,2644.5,360.28,0.0,organic,2017,RaleighGreensboro +36,2017-04-23,2.73,8720.86,298.89,5183.86,256.68,2981.43,2649.32,332.11,0.0,organic,2017,RaleighGreensboro +37,2017-04-16,2.24,10247.33,202.49,6574.76,531.29,2938.79,2488.55,450.24,0.0,organic,2017,RaleighGreensboro +38,2017-04-09,2.07,12113.04,208.57,6330.09,401.45,5172.93,3146.38,2026.55,0.0,organic,2017,RaleighGreensboro +39,2017-04-02,2.21,11544.33,231.24,6808.06,416.45,4088.58,3442.51,646.07,0.0,organic,2017,RaleighGreensboro +40,2017-03-26,1.94,11276.9,236.74,6075.77,440.09,4524.3,2563.32,1960.98,0.0,organic,2017,RaleighGreensboro +41,2017-03-19,1.83,6478.95,251.2,4806.55,342.44,1078.76,102.5,976.26,0.0,organic,2017,RaleighGreensboro +42,2017-03-12,1.9,6858.2,248.79,4782.34,360.74,1466.33,1232.62,233.71,0.0,organic,2017,RaleighGreensboro +43,2017-03-05,1.54,7644.87,310.11,3737.67,220.26,3376.83,1772.87,1603.96,0.0,organic,2017,RaleighGreensboro +44,2017-02-26,1.56,8608.11,241.98,4059.23,328.88,3978.02,2617.49,1360.53,0.0,organic,2017,RaleighGreensboro +45,2017-02-19,1.55,8726.67,169.95,4133.16,283.98,4139.58,3118.21,1021.37,0.0,organic,2017,RaleighGreensboro +46,2017-02-12,1.54,9911.34,239.38,4073.5,292.17,5306.29,4476.52,829.77,0.0,organic,2017,RaleighGreensboro +47,2017-02-05,1.77,9668.72,219.34,3567.45,282.75,5599.18,5467.43,131.75,0.0,organic,2017,RaleighGreensboro +48,2017-01-29,1.63,12400.14,210.3,5718.04,367.53,6104.27,5464.33,639.94,0.0,organic,2017,RaleighGreensboro +49,2017-01-22,1.59,10830.75,224.66,4242.03,477.69,5886.37,5420.39,465.98,0.0,organic,2017,RaleighGreensboro +50,2017-01-15,1.62,10210.4,185.33,5492.56,523.31,4009.2,3842.0,167.2,0.0,organic,2017,RaleighGreensboro +51,2017-01-08,1.52,11276.02,179.81,4508.4,369.14,6218.67,6018.6,200.07,0.0,organic,2017,RaleighGreensboro +52,2017-01-01,1.78,8038.22,121.25,3157.17,299.93,4459.87,4271.94,187.93,0.0,organic,2017,RaleighGreensboro +0,2017-12-31,1.39,13838.29,496.98,2962.71,94.76,10283.84,9802.71,481.13,0.0,organic,2017,RichmondNorfolk +1,2017-12-24,1.41,12966.31,527.99,2640.21,65.74,9732.37,9557.06,175.31,0.0,organic,2017,RichmondNorfolk +2,2017-12-17,1.43,12837.29,531.72,2596.59,60.05,9648.93,9084.68,564.25,0.0,organic,2017,RichmondNorfolk +3,2017-12-10,1.4,12385.8,365.36,2618.38,68.67,9333.39,9023.05,310.34,0.0,organic,2017,RichmondNorfolk +4,2017-12-03,1.5,11304.93,591.86,3015.71,62.15,7635.21,7481.2,154.01,0.0,organic,2017,RichmondNorfolk +5,2017-11-26,1.58,10285.18,441.93,2360.47,39.34,7443.44,7353.1,90.34,0.0,organic,2017,RichmondNorfolk +6,2017-11-19,1.62,9572.38,469.82,2619.23,36.54,6446.79,6399.28,47.51,0.0,organic,2017,RichmondNorfolk +7,2017-11-12,1.57,11495.44,632.19,2374.29,63.61,8425.35,8314.51,110.84,0.0,organic,2017,RichmondNorfolk +8,2017-11-05,1.64,10865.72,1262.85,2499.88,52.94,7050.05,6880.75,169.3,0.0,organic,2017,RichmondNorfolk +9,2017-10-29,1.67,10158.08,327.71,2184.05,36.01,7610.31,7023.4,586.91,0.0,organic,2017,RichmondNorfolk +10,2017-10-22,1.62,12275.26,370.45,2692.51,53.05,9159.25,8792.65,366.6,0.0,organic,2017,RichmondNorfolk +11,2017-10-15,1.6,15559.82,323.77,2409.46,66.32,12760.27,11870.29,889.98,0.0,organic,2017,RichmondNorfolk +12,2017-10-08,1.56,16660.78,416.49,2475.61,67.47,13701.21,13577.23,123.98,0.0,organic,2017,RichmondNorfolk +13,2017-10-01,1.6,14274.34,250.53,2545.53,18.17,11460.11,10711.65,748.46,0.0,organic,2017,RichmondNorfolk +14,2017-09-24,1.76,14075.51,257.62,2561.93,53.35,11202.61,9417.16,1785.45,0.0,organic,2017,RichmondNorfolk +15,2017-09-17,1.59,14824.51,336.19,2732.34,44.13,11711.85,10680.64,1031.21,0.0,organic,2017,RichmondNorfolk +16,2017-09-10,2.0,13661.82,526.93,3525.9,42.94,9566.05,7880.01,1686.04,0.0,organic,2017,RichmondNorfolk +17,2017-09-03,2.05,12472.67,654.67,3231.63,56.08,8530.29,6523.37,2006.92,0.0,organic,2017,RichmondNorfolk +18,2017-08-27,1.96,11862.16,517.0,3473.29,114.73,7757.14,6903.89,853.25,0.0,organic,2017,RichmondNorfolk +19,2017-08-20,1.93,12811.35,573.89,3458.89,59.59,8718.98,7254.65,1464.33,0.0,organic,2017,RichmondNorfolk +20,2017-08-13,1.79,11129.0,541.48,3363.51,112.95,7111.06,7044.98,66.08,0.0,organic,2017,RichmondNorfolk +21,2017-08-06,1.66,12743.98,513.56,3881.12,71.87,8277.43,7343.81,933.62,0.0,organic,2017,RichmondNorfolk +22,2017-07-30,1.56,14439.15,623.91,4519.06,138.65,9157.53,8250.67,906.86,0.0,organic,2017,RichmondNorfolk +23,2017-07-23,1.45,17819.23,490.84,4973.46,117.18,12237.75,11553.5,684.25,0.0,organic,2017,RichmondNorfolk +24,2017-07-16,1.71,11521.01,556.0,4078.58,201.95,6684.48,6042.57,641.91,0.0,organic,2017,RichmondNorfolk +25,2017-07-09,1.81,11717.1,720.65,5308.78,142.87,5544.8,3341.86,2202.94,0.0,organic,2017,RichmondNorfolk +26,2017-07-02,1.84,10106.75,649.11,4909.0,127.57,4421.07,3123.96,1297.11,0.0,organic,2017,RichmondNorfolk +27,2017-06-25,1.64,12534.75,656.89,5010.34,83.67,6783.85,3312.08,3471.77,0.0,organic,2017,RichmondNorfolk +28,2017-06-18,1.78,10408.49,709.84,4861.94,114.37,4722.34,3346.59,1375.75,0.0,organic,2017,RichmondNorfolk +29,2017-06-11,1.56,11925.84,666.26,4779.4,149.16,6331.02,3456.32,2874.7,0.0,organic,2017,RichmondNorfolk +30,2017-06-04,1.72,11637.27,740.89,4505.97,176.87,6213.54,3221.65,2991.89,0.0,organic,2017,RichmondNorfolk +31,2017-05-28,1.6,12214.35,771.94,4134.06,160.29,7148.06,2792.14,4355.92,0.0,organic,2017,RichmondNorfolk +32,2017-05-21,1.52,11063.56,536.61,4072.81,205.25,6248.89,3079.19,3169.7,0.0,organic,2017,RichmondNorfolk +33,2017-05-14,1.72,9767.94,561.89,4265.52,195.63,4744.9,4343.18,401.72,0.0,organic,2017,RichmondNorfolk +34,2017-05-07,1.68,9163.85,514.87,4408.58,216.59,4023.81,2347.45,1676.36,0.0,organic,2017,RichmondNorfolk +35,2017-04-30,1.77,10361.33,597.65,5030.44,184.19,4549.05,3554.8,994.25,0.0,organic,2017,RichmondNorfolk +36,2017-04-23,1.65,10330.09,641.94,4484.77,159.23,5044.15,3311.15,1733.0,0.0,organic,2017,RichmondNorfolk +37,2017-04-16,1.46,12066.89,649.64,4688.25,221.16,6507.84,4128.88,2378.96,0.0,organic,2017,RichmondNorfolk +38,2017-04-09,1.04,15659.62,659.45,4489.03,247.92,10263.22,2985.66,7277.56,0.0,organic,2017,RichmondNorfolk +39,2017-04-02,1.41,11559.75,783.17,4621.86,247.98,5906.74,3507.74,2399.0,0.0,organic,2017,RichmondNorfolk +40,2017-03-26,1.06,15307.02,674.2,4196.02,197.7,10239.1,3345.01,6894.09,0.0,organic,2017,RichmondNorfolk +41,2017-03-19,1.55,11613.35,757.42,3820.16,217.31,6818.46,5310.39,1508.07,0.0,organic,2017,RichmondNorfolk +42,2017-03-12,1.46,14100.75,599.65,3963.56,189.23,9348.31,8086.79,1261.52,0.0,organic,2017,RichmondNorfolk +43,2017-03-05,1.06,14497.7,635.96,3287.69,201.39,10372.66,4416.23,5956.43,0.0,organic,2017,RichmondNorfolk +44,2017-02-26,1.01,13878.02,721.23,3569.87,221.42,9365.5,3127.75,6237.75,0.0,organic,2017,RichmondNorfolk +45,2017-02-19,1.24,9098.81,522.24,3373.76,263.72,4939.09,2202.97,2736.12,0.0,organic,2017,RichmondNorfolk +46,2017-02-12,1.12,10485.46,424.16,3355.43,236.07,6469.8,2421.74,4048.06,0.0,organic,2017,RichmondNorfolk +47,2017-02-05,1.42,6511.84,527.83,2515.41,159.11,3309.49,2198.27,1111.22,0.0,organic,2017,RichmondNorfolk +48,2017-01-29,1.32,8024.8,592.19,3683.49,230.3,3518.82,1829.27,1689.55,0.0,organic,2017,RichmondNorfolk +49,2017-01-22,1.27,8066.77,436.2,2878.14,180.28,4572.15,2901.02,1671.13,0.0,organic,2017,RichmondNorfolk +50,2017-01-15,1.56,6047.0,434.68,2923.44,197.24,2491.64,2491.64,0.0,0.0,organic,2017,RichmondNorfolk +51,2017-01-08,1.48,8071.93,490.6,3085.34,205.36,4290.63,4290.63,0.0,0.0,organic,2017,RichmondNorfolk +52,2017-01-01,1.62,4920.41,584.97,2230.14,209.54,1895.76,1895.76,0.0,0.0,organic,2017,RichmondNorfolk +0,2017-12-31,1.5,5756.97,147.66,1513.56,0.0,4095.75,3747.09,348.66,0.0,organic,2017,Roanoke +1,2017-12-24,1.54,5711.05,210.66,1517.29,0.0,3983.1,3652.57,330.53,0.0,organic,2017,Roanoke +2,2017-12-17,1.58,6387.27,141.87,1437.09,0.0,4808.31,3559.59,1248.72,0.0,organic,2017,Roanoke +3,2017-12-10,1.47,7802.12,124.73,1438.67,0.0,6238.72,5375.63,863.09,0.0,organic,2017,Roanoke +4,2017-12-03,1.42,6811.91,195.13,1573.6,0.0,5043.18,4785.2,257.98,0.0,organic,2017,Roanoke +5,2017-11-26,1.56,6698.22,247.15,1535.64,0.0,4915.43,4892.04,23.39,0.0,organic,2017,Roanoke +6,2017-11-19,1.54,6534.46,231.4,1669.66,0.0,4633.4,4633.4,0.0,0.0,organic,2017,Roanoke +7,2017-11-12,1.46,8507.88,221.24,1429.79,0.0,6856.85,6829.19,27.66,0.0,organic,2017,Roanoke +8,2017-11-05,1.5,8255.71,163.9,1362.58,0.0,6729.23,6386.62,342.61,0.0,organic,2017,Roanoke +9,2017-10-29,1.53,9293.76,151.09,1301.57,0.0,7841.1,7140.34,700.76,0.0,organic,2017,Roanoke +10,2017-10-22,1.53,10892.04,262.63,1702.26,0.0,8927.15,8539.6,387.55,0.0,organic,2017,Roanoke +11,2017-10-15,1.64,10752.98,221.97,1582.91,0.0,8948.1,7871.92,1076.18,0.0,organic,2017,Roanoke +12,2017-10-08,1.72,8206.5,228.36,1675.12,0.0,6303.02,6206.86,96.16,0.0,organic,2017,Roanoke +13,2017-10-01,1.83,7771.43,271.56,1683.7,0.0,5816.17,4753.12,1063.05,0.0,organic,2017,Roanoke +14,2017-09-24,2.08,7802.86,226.04,1466.48,0.0,6110.34,3593.88,2516.46,0.0,organic,2017,Roanoke +15,2017-09-17,1.9,7847.81,232.91,1598.3,0.0,6016.6,4434.42,1582.18,0.0,organic,2017,Roanoke +16,2017-09-10,2.19,8032.49,258.82,1879.95,0.0,5893.72,3563.69,2330.03,0.0,organic,2017,Roanoke +17,2017-09-03,2.27,8020.1,358.1,1952.12,0.0,5709.88,3207.99,2501.89,0.0,organic,2017,Roanoke +18,2017-08-27,2.17,6628.13,311.6,2074.07,0.0,4242.46,3087.88,1154.58,0.0,organic,2017,Roanoke +19,2017-08-20,2.08,8040.25,352.99,1992.25,0.0,5695.01,4347.39,1347.62,0.0,organic,2017,Roanoke +20,2017-08-13,2.0,6017.04,295.77,1577.89,0.0,4143.38,3871.36,272.02,0.0,organic,2017,Roanoke +21,2017-08-06,1.81,7240.03,282.29,2012.36,0.0,4945.38,3799.45,1145.93,0.0,organic,2017,Roanoke +22,2017-07-30,1.59,7786.03,310.32,2134.34,0.0,5341.37,3780.03,1561.34,0.0,organic,2017,Roanoke +23,2017-07-23,1.49,9901.85,365.76,2772.19,0.0,6763.9,5244.98,1518.92,0.0,organic,2017,Roanoke +24,2017-07-16,1.64,6337.48,242.19,2225.86,0.0,3869.43,3079.26,790.17,0.0,organic,2017,Roanoke +25,2017-07-09,1.62,9008.58,327.53,2701.41,0.0,5979.64,1517.51,4462.13,0.0,organic,2017,Roanoke +26,2017-07-02,1.78,5965.12,212.95,2696.9,0.0,3055.27,1472.15,1583.12,0.0,organic,2017,Roanoke +27,2017-06-25,1.42,8870.49,253.77,2759.2,0.0,5857.52,1646.75,4210.77,0.0,organic,2017,Roanoke +28,2017-06-18,1.61,7557.29,385.86,3385.75,0.0,3785.68,1493.9,2291.78,0.0,organic,2017,Roanoke +29,2017-06-11,1.35,8361.55,279.3,3013.37,0.0,5068.88,1556.95,3511.93,0.0,organic,2017,Roanoke +30,2017-06-04,1.51,10058.68,317.8,2674.54,0.0,7066.34,1765.07,5301.27,0.0,organic,2017,Roanoke +31,2017-05-28,1.37,11900.47,297.27,2385.12,0.0,9218.08,2087.45,7130.63,0.0,organic,2017,Roanoke +32,2017-05-21,1.59,7576.78,336.52,2483.17,0.0,4757.09,2335.89,2421.2,0.0,organic,2017,Roanoke +33,2017-05-14,1.81,5838.07,230.45,2146.33,0.0,3461.29,2915.88,545.41,0.0,organic,2017,Roanoke +34,2017-05-07,1.72,7509.16,343.02,2428.09,0.0,4738.05,2137.38,2600.67,0.0,organic,2017,Roanoke +35,2017-04-30,1.87,6798.65,353.77,2775.79,0.0,3669.09,2372.94,1296.15,0.0,organic,2017,Roanoke +36,2017-04-23,1.58,7527.14,339.78,2413.71,0.0,4773.65,2203.3,2570.35,0.0,organic,2017,Roanoke +37,2017-04-16,1.24,10898.43,382.64,2457.06,0.0,8058.73,2881.64,5177.09,0.0,organic,2017,Roanoke +38,2017-04-09,0.89,15201.67,382.49,2930.05,0.0,11889.13,2331.66,9557.47,0.0,organic,2017,Roanoke +39,2017-04-02,1.19,10899.57,309.33,3031.18,0.0,7559.06,2514.95,5044.11,0.0,organic,2017,Roanoke +40,2017-03-26,0.84,15330.0,258.31,2811.96,0.0,12259.73,2142.46,10117.27,0.0,organic,2017,Roanoke +41,2017-03-19,1.2,7983.96,222.33,2146.38,0.0,5615.25,2557.65,3057.6,0.0,organic,2017,Roanoke +42,2017-03-12,1.13,8967.12,297.8,2537.83,0.0,6131.49,2334.33,3797.16,0.0,organic,2017,Roanoke +43,2017-03-05,0.7,15787.49,337.56,2105.48,0.0,13344.45,2068.61,11275.84,0.0,organic,2017,Roanoke +44,2017-02-26,0.77,14724.39,246.43,2759.77,0.0,11718.19,2299.58,9418.61,0.0,organic,2017,Roanoke +45,2017-02-19,0.94,10024.18,231.37,2672.7,0.0,7120.11,1894.37,5225.74,0.0,organic,2017,Roanoke +46,2017-02-12,0.88,11414.9,212.09,3013.89,0.0,8188.92,1869.28,6319.64,0.0,organic,2017,Roanoke +47,2017-02-05,1.14,9742.87,224.66,5303.06,0.0,4215.15,1977.81,2237.34,0.0,organic,2017,Roanoke +48,2017-01-29,1.18,7932.55,339.58,3824.05,0.0,3768.92,1293.27,2475.65,0.0,organic,2017,Roanoke +49,2017-01-22,1.16,7525.89,234.38,2584.95,0.0,4706.56,2177.11,2529.45,0.0,organic,2017,Roanoke +50,2017-01-15,1.6,5398.97,194.17,3113.34,0.0,2091.46,2091.46,0.0,0.0,organic,2017,Roanoke +51,2017-01-08,1.61,5241.2,263.74,2764.44,0.0,2213.02,2213.02,0.0,0.0,organic,2017,Roanoke +52,2017-01-01,1.51,3969.98,212.55,2337.72,0.0,1419.71,1257.08,162.63,0.0,organic,2017,Roanoke +0,2017-12-31,1.61,9655.29,3891.4,3759.45,0.0,2004.44,2004.44,0.0,0.0,organic,2017,Sacramento +1,2017-12-24,1.68,8177.33,2716.18,3016.72,0.0,2444.43,2431.1,13.33,0.0,organic,2017,Sacramento +2,2017-12-17,1.72,7034.37,1965.07,2423.74,0.0,2645.56,2645.56,0.0,0.0,organic,2017,Sacramento +3,2017-12-10,1.75,6765.28,1703.63,2659.43,0.0,2402.22,2395.55,6.67,0.0,organic,2017,Sacramento +4,2017-12-03,1.69,6289.72,2066.63,2100.86,0.0,2122.23,2105.56,16.67,0.0,organic,2017,Sacramento +5,2017-11-26,1.72,6851.13,2309.23,2494.13,0.0,2047.77,2047.77,0.0,0.0,organic,2017,Sacramento +6,2017-11-19,1.69,7725.77,2684.95,2463.04,0.0,2577.78,2577.78,0.0,0.0,organic,2017,Sacramento +7,2017-11-12,1.81,6581.85,2473.4,2399.57,0.0,1708.88,1708.88,0.0,0.0,organic,2017,Sacramento +8,2017-11-05,1.74,8454.27,2535.09,2818.07,0.0,3101.11,3101.11,0.0,0.0,organic,2017,Sacramento +9,2017-10-29,1.86,7341.92,2787.56,2909.91,0.0,1644.45,1644.45,0.0,0.0,organic,2017,Sacramento +10,2017-10-22,1.81,8059.52,2679.07,2828.24,0.0,2552.21,2548.88,3.33,0.0,organic,2017,Sacramento +11,2017-10-15,1.92,6689.14,2439.7,3012.02,0.0,1237.42,1237.42,0.0,0.0,organic,2017,Sacramento +12,2017-10-08,1.84,7804.28,2487.05,2762.42,0.0,2554.81,2551.48,3.33,0.0,organic,2017,Sacramento +13,2017-10-01,1.86,7334.65,2464.29,2785.94,0.0,2084.42,2077.75,6.67,0.0,organic,2017,Sacramento +14,2017-09-24,1.89,7344.32,2672.33,3111.54,0.0,1560.45,1557.12,3.33,0.0,organic,2017,Sacramento +15,2017-09-17,1.92,9174.58,3470.19,3797.05,0.0,1907.34,1907.34,0.0,0.0,organic,2017,Sacramento +16,2017-09-10,1.96,8035.15,3074.0,3484.74,0.0,1476.41,1476.41,0.0,0.0,organic,2017,Sacramento +17,2017-09-03,2.15,8230.33,2654.23,3298.64,0.0,2277.46,2277.46,0.0,0.0,organic,2017,Sacramento +18,2017-08-27,2.49,7197.78,2222.37,2802.72,0.0,2172.69,2172.69,0.0,0.0,organic,2017,Sacramento +19,2017-08-20,2.33,8187.92,2354.98,2815.2,1.31,3016.43,3013.1,3.33,0.0,organic,2017,Sacramento +20,2017-08-13,2.09,8707.0,2079.18,3059.01,0.0,3568.81,3565.48,3.33,0.0,organic,2017,Sacramento +21,2017-08-06,1.99,6886.41,1620.1,2516.0,0.0,2750.31,2741.33,8.98,0.0,organic,2017,Sacramento +22,2017-07-30,1.86,5676.06,811.56,2096.87,0.0,2767.63,2755.65,11.98,0.0,organic,2017,Sacramento +23,2017-07-23,1.97,7041.27,1474.65,2451.59,0.0,3115.03,3115.03,0.0,0.0,organic,2017,Sacramento +24,2017-07-16,2.19,5103.37,1251.0,2443.85,0.0,1408.52,1408.52,0.0,0.0,organic,2017,Sacramento +25,2017-07-09,2.36,3562.52,1253.12,1982.16,0.0,327.24,322.03,5.21,0.0,organic,2017,Sacramento +26,2017-07-02,2.32,4572.42,1472.51,2437.84,2.7,659.37,656.04,3.33,0.0,organic,2017,Sacramento +27,2017-06-25,2.37,5625.98,2005.87,2820.32,0.0,799.79,796.46,3.33,0.0,organic,2017,Sacramento +28,2017-06-18,2.48,7058.35,2609.09,3616.91,0.0,832.35,824.86,7.49,0.0,organic,2017,Sacramento +29,2017-06-11,2.5,6504.06,2177.24,3527.98,0.0,798.84,796.97,1.87,0.0,organic,2017,Sacramento +30,2017-06-04,2.43,6820.7,2184.08,3605.15,0.0,1031.47,1029.6,1.87,0.0,organic,2017,Sacramento +31,2017-05-28,2.46,6662.68,2305.34,3465.79,0.0,891.55,882.17,9.38,0.0,organic,2017,Sacramento +32,2017-05-21,2.4,5955.32,2135.74,2881.3,1.35,936.93,896.93,40.0,0.0,organic,2017,Sacramento +33,2017-05-14,2.43,5255.47,1982.43,2481.05,2.68,789.31,785.59,3.72,0.0,organic,2017,Sacramento +34,2017-05-07,2.52,5321.75,1861.76,3058.89,0.0,401.1,401.1,0.0,0.0,organic,2017,Sacramento +35,2017-04-30,2.39,6331.52,2222.42,3238.73,1.35,869.02,865.28,3.74,0.0,organic,2017,Sacramento +36,2017-04-23,2.29,6764.99,1967.94,3979.11,0.0,817.94,817.94,0.0,0.0,organic,2017,Sacramento +37,2017-04-16,2.35,6274.05,2025.64,3501.53,0.0,746.88,743.55,3.33,0.0,organic,2017,Sacramento +38,2017-04-09,2.37,6283.41,2155.7,3467.14,0.0,660.57,653.9,6.67,0.0,organic,2017,Sacramento +39,2017-04-02,2.31,6244.05,2073.38,3328.69,0.0,841.98,841.98,0.0,0.0,organic,2017,Sacramento +40,2017-03-26,2.44,6509.21,2084.95,3599.7,0.0,824.56,824.56,0.0,0.0,organic,2017,Sacramento +41,2017-03-19,2.46,5971.13,1795.34,3449.75,0.0,726.04,726.04,0.0,0.0,organic,2017,Sacramento +42,2017-03-12,2.36,6022.12,1643.55,3655.76,2.68,720.13,720.13,0.0,0.0,organic,2017,Sacramento +43,2017-03-05,2.5,6056.68,1736.82,3853.83,0.0,466.03,466.03,0.0,0.0,organic,2017,Sacramento +44,2017-02-26,2.06,6616.58,1808.8,4379.48,0.0,428.3,428.3,0.0,0.0,organic,2017,Sacramento +45,2017-02-19,2.32,5375.95,1718.41,3242.62,1.34,413.58,413.58,0.0,0.0,organic,2017,Sacramento +46,2017-02-12,2.25,5559.0,1708.08,3229.82,0.0,621.1,621.1,0.0,0.0,organic,2017,Sacramento +47,2017-02-05,1.6,7712.27,2241.28,5057.01,0.0,413.98,413.98,0.0,0.0,organic,2017,Sacramento +48,2017-01-29,2.02,6748.27,1652.72,4786.42,12.15,296.98,296.98,0.0,0.0,organic,2017,Sacramento +49,2017-01-22,1.89,6015.68,1800.88,3930.91,0.0,283.89,283.89,0.0,0.0,organic,2017,Sacramento +50,2017-01-15,2.31,5267.55,1502.96,3492.53,0.0,272.06,265.39,6.67,0.0,organic,2017,Sacramento +51,2017-01-08,2.15,5692.25,1630.79,3665.0,0.0,396.46,396.46,0.0,0.0,organic,2017,Sacramento +52,2017-01-01,2.24,5635.27,1906.72,3364.33,0.0,364.22,364.22,0.0,0.0,organic,2017,Sacramento +0,2017-12-31,2.0,14150.95,2721.78,7973.65,0.0,3455.52,3455.52,0.0,0.0,organic,2017,SanDiego +1,2017-12-24,1.82,15276.68,849.59,9042.84,0.0,5384.25,5384.25,0.0,0.0,organic,2017,SanDiego +2,2017-12-17,1.54,14047.41,1020.5,8775.1,0.0,4251.81,4251.81,0.0,0.0,organic,2017,SanDiego +3,2017-12-10,2.05,13284.31,2436.56,6895.21,0.0,3952.54,3952.54,0.0,0.0,organic,2017,SanDiego +4,2017-12-03,1.79,13476.62,761.67,7500.08,0.0,5214.87,5211.54,3.33,0.0,organic,2017,SanDiego +5,2017-11-26,2.17,11559.98,468.45,7239.24,0.0,3852.29,3852.29,0.0,0.0,organic,2017,SanDiego +6,2017-11-19,2.17,12348.84,692.38,7420.01,0.0,4236.45,4236.45,0.0,0.0,organic,2017,SanDiego +7,2017-11-12,2.13,11498.28,770.92,6108.74,0.0,4618.62,4618.62,0.0,0.0,organic,2017,SanDiego +8,2017-11-05,1.6,16452.21,761.73,10819.54,0.0,4870.94,4870.94,0.0,0.0,organic,2017,SanDiego +9,2017-10-29,2.13,12179.45,863.06,6224.07,0.0,5092.32,5092.32,0.0,0.0,organic,2017,SanDiego +10,2017-10-22,2.15,13012.35,951.67,6964.44,0.0,5096.24,5096.24,0.0,0.0,organic,2017,SanDiego +11,2017-10-15,2.25,11472.41,713.19,6513.89,0.0,4245.33,4234.23,11.1,0.0,organic,2017,SanDiego +12,2017-10-08,2.33,13013.83,754.58,8162.44,0.0,4096.81,4096.81,0.0,0.0,organic,2017,SanDiego +13,2017-10-01,2.27,13509.43,1595.59,8857.77,0.0,3056.07,3056.07,0.0,0.0,organic,2017,SanDiego +14,2017-09-24,2.23,14173.82,2804.46,10041.55,0.0,1327.81,1327.81,0.0,0.0,organic,2017,SanDiego +15,2017-09-17,2.39,12673.52,2229.66,9322.51,0.0,1121.35,1121.35,0.0,0.0,organic,2017,SanDiego +16,2017-09-10,2.37,12770.99,1925.87,9140.03,0.0,1705.09,1705.09,0.0,0.0,organic,2017,SanDiego +17,2017-09-03,2.01,15165.11,1139.04,10923.85,0.0,3102.22,3102.22,0.0,0.0,organic,2017,SanDiego +18,2017-08-27,2.57,11138.48,1397.94,7309.89,0.0,2430.65,2427.32,3.33,0.0,organic,2017,SanDiego +19,2017-08-20,2.42,14113.65,1007.89,7203.91,0.0,5901.85,5871.85,30.0,0.0,organic,2017,SanDiego +20,2017-08-13,2.32,12511.08,930.36,6082.22,0.0,5498.5,5495.17,3.33,0.0,organic,2017,SanDiego +21,2017-08-06,2.37,12981.7,1047.77,6973.51,0.0,4960.42,4960.42,0.0,0.0,organic,2017,SanDiego +22,2017-07-30,2.37,12594.87,819.66,6870.21,0.0,4905.0,4871.67,33.33,0.0,organic,2017,SanDiego +23,2017-07-23,2.31,13629.65,784.86,8530.78,0.0,4314.01,4310.68,3.33,0.0,organic,2017,SanDiego +24,2017-07-16,2.3,14060.23,693.61,9183.67,0.0,4182.95,4179.62,3.33,0.0,organic,2017,SanDiego +25,2017-07-09,1.91,19248.28,1037.82,10325.37,0.0,7885.09,7885.09,0.0,0.0,organic,2017,SanDiego +26,2017-07-02,2.0,19913.72,1108.18,11656.52,0.0,7149.02,7124.38,24.64,0.0,organic,2017,SanDiego +27,2017-06-25,1.73,17744.03,975.09,8290.7,0.0,8478.24,8478.24,0.0,0.0,organic,2017,SanDiego +28,2017-06-18,1.8,16862.3,1067.68,8361.69,0.0,7432.93,7400.09,32.84,0.0,organic,2017,SanDiego +29,2017-06-11,2.06,12549.97,1163.03,8506.74,1.59,2878.61,2849.42,29.19,0.0,organic,2017,SanDiego +30,2017-06-04,1.71,18703.01,1135.74,12172.77,1.6,5392.9,5392.9,0.0,0.0,organic,2017,SanDiego +31,2017-05-28,1.91,17421.67,843.78,9946.37,1.66,6629.86,6629.86,0.0,0.0,organic,2017,SanDiego +32,2017-05-21,2.05,15451.08,853.03,9892.77,1.65,4703.63,4700.0,3.63,0.0,organic,2017,SanDiego +33,2017-05-14,2.22,12594.05,1455.55,9485.09,1.66,1651.75,1621.18,30.57,0.0,organic,2017,SanDiego +34,2017-05-07,1.72,21798.32,1347.86,14683.9,1.67,5764.89,5703.48,61.41,0.0,organic,2017,SanDiego +35,2017-04-30,1.83,17826.5,1461.21,10052.54,1.61,6311.14,5252.77,1058.37,0.0,organic,2017,SanDiego +36,2017-04-23,1.97,14541.16,1088.81,9477.69,1.63,3973.03,719.12,3253.91,0.0,organic,2017,SanDiego +37,2017-04-16,2.08,14043.34,940.85,9921.7,0.0,3180.79,560.0,2620.79,0.0,organic,2017,SanDiego +38,2017-04-09,1.94,13786.93,1208.64,9538.85,1.65,3037.79,915.53,2122.26,0.0,organic,2017,SanDiego +39,2017-04-02,1.88,16174.36,1779.7,10473.46,0.0,3921.2,2792.24,1128.96,0.0,organic,2017,SanDiego +40,2017-03-26,2.06,14388.05,2883.71,10030.37,0.0,1473.97,686.67,787.3,0.0,organic,2017,SanDiego +41,2017-03-19,1.59,22169.84,927.81,13605.83,4.94,7631.26,1083.05,6548.21,0.0,organic,2017,SanDiego +42,2017-03-12,1.72,17226.14,991.9,9806.6,4.96,6422.68,2359.56,4063.12,0.0,organic,2017,SanDiego +43,2017-03-05,1.42,20616.04,1137.22,8737.49,0.0,10741.33,736.02,10005.31,0.0,organic,2017,SanDiego +44,2017-02-26,1.42,20055.23,1099.33,10427.06,0.0,8528.84,3657.65,4871.19,0.0,organic,2017,SanDiego +45,2017-02-19,1.4,19782.44,1266.28,10960.8,0.0,7555.36,7393.64,161.72,0.0,organic,2017,SanDiego +46,2017-02-12,1.66,9082.88,1014.35,7049.67,0.0,1018.86,856.72,162.14,0.0,organic,2017,SanDiego +47,2017-02-05,1.55,14096.05,1784.39,10882.94,0.0,1428.72,1270.99,157.73,0.0,organic,2017,SanDiego +48,2017-01-29,1.21,18191.46,1477.75,8949.53,4.86,7759.32,3304.61,4454.71,0.0,organic,2017,SanDiego +49,2017-01-22,1.73,10842.77,2019.23,6869.87,0.0,1953.67,626.78,1326.89,0.0,organic,2017,SanDiego +50,2017-01-15,1.82,11578.42,2529.2,7637.66,0.0,1411.56,993.41,418.15,0.0,organic,2017,SanDiego +51,2017-01-08,1.52,16775.97,2363.28,9429.06,0.0,4983.63,3266.31,1717.32,0.0,organic,2017,SanDiego +52,2017-01-01,1.45,15752.25,1385.18,8618.28,0.0,5748.79,957.31,4791.48,0.0,organic,2017,SanDiego +0,2017-12-31,1.52,24699.21,14037.89,8786.88,0.0,1874.44,1871.11,3.33,0.0,organic,2017,SanFrancisco +1,2017-12-24,2.01,18541.03,7759.8,8376.79,0.0,2404.44,2404.44,0.0,0.0,organic,2017,SanFrancisco +2,2017-12-17,2.1,17850.72,7411.52,8344.76,0.0,2094.44,2094.44,0.0,0.0,organic,2017,SanFrancisco +3,2017-12-10,2.27,15142.03,7080.05,7071.98,0.0,990.0,990.0,0.0,0.0,organic,2017,SanFrancisco +4,2017-12-03,2.07,14737.28,8275.24,5745.39,0.0,716.65,712.21,4.44,0.0,organic,2017,SanFrancisco +5,2017-11-26,2.06,15701.21,8640.78,6277.06,0.0,783.37,783.37,0.0,0.0,organic,2017,SanFrancisco +6,2017-11-19,2.06,17621.85,9956.34,6931.07,0.0,734.44,734.44,0.0,0.0,organic,2017,SanFrancisco +7,2017-11-12,2.07,19344.03,10941.23,7789.47,0.0,613.33,608.89,4.44,0.0,organic,2017,SanFrancisco +8,2017-11-05,2.05,20213.21,10983.96,8063.69,0.0,1165.56,1161.12,4.44,0.0,organic,2017,SanFrancisco +9,2017-10-29,2.09,19950.9,11099.63,8152.39,0.0,698.88,694.44,4.44,0.0,organic,2017,SanFrancisco +10,2017-10-22,2.08,18852.58,9739.13,7981.22,0.0,1132.23,1132.23,0.0,0.0,organic,2017,SanFrancisco +11,2017-10-15,2.09,19027.31,10237.78,8211.76,0.0,577.77,577.77,0.0,0.0,organic,2017,SanFrancisco +12,2017-10-08,2.07,20337.21,10832.88,8426.55,0.0,1077.78,1077.78,0.0,0.0,organic,2017,SanFrancisco +13,2017-10-01,2.04,22703.05,11899.79,9824.74,0.0,978.52,978.52,0.0,0.0,organic,2017,SanFrancisco +14,2017-09-24,2.06,19095.21,10381.1,8026.03,0.0,688.08,688.08,0.0,0.0,organic,2017,SanFrancisco +15,2017-09-17,2.04,32191.54,18705.05,12704.86,0.0,781.63,781.63,0.0,0.0,organic,2017,SanFrancisco +16,2017-09-10,2.05,28335.3,16389.89,11491.2,0.0,454.21,454.21,0.0,0.0,organic,2017,SanFrancisco +17,2017-09-03,2.08,22836.09,12620.57,9443.2,0.0,772.32,767.88,4.44,0.0,organic,2017,SanFrancisco +18,2017-08-27,3.0,19329.49,10517.41,7907.99,0.0,904.09,900.76,3.33,0.0,organic,2017,SanFrancisco +19,2017-08-20,2.93,21524.58,9571.06,7792.22,0.0,4161.3,4161.3,0.0,0.0,organic,2017,SanFrancisco +20,2017-08-13,2.57,22296.14,8857.4,8680.4,0.0,4758.34,4758.34,0.0,0.0,organic,2017,SanFrancisco +21,2017-08-06,2.33,13350.56,3753.8,5234.25,0.0,4362.51,4356.01,6.5,0.0,organic,2017,SanFrancisco +22,2017-07-30,2.14,10110.25,1825.73,3948.19,0.0,4336.33,4326.5,9.83,0.0,organic,2017,SanFrancisco +23,2017-07-23,2.44,16831.7,5952.05,6286.11,0.0,4593.54,4577.62,15.92,0.0,organic,2017,SanFrancisco +24,2017-07-16,2.4,14099.42,4163.34,5797.11,0.0,4138.97,4137.35,1.62,0.0,organic,2017,SanFrancisco +25,2017-07-09,2.45,8311.12,2009.13,3654.42,2.92,2644.65,2622.33,22.32,0.0,organic,2017,SanFrancisco +26,2017-07-02,2.59,12279.96,4003.36,5495.51,0.0,2781.09,2765.59,15.5,0.0,organic,2017,SanFrancisco +27,2017-06-25,2.66,15691.4,5755.58,6914.77,0.0,3021.05,3010.92,10.13,0.0,organic,2017,SanFrancisco +28,2017-06-18,2.76,24037.58,10701.89,10234.08,0.0,3101.61,3069.94,31.67,0.0,organic,2017,SanFrancisco +29,2017-06-11,2.77,25806.28,10768.91,11690.84,4.37,3342.16,3338.11,4.05,0.0,organic,2017,SanFrancisco +30,2017-06-04,2.72,23896.87,9678.79,10552.04,2.91,3663.13,3609.78,53.35,0.0,organic,2017,SanFrancisco +31,2017-05-28,2.73,24852.33,10640.43,10979.17,8.75,3223.98,3201.3,22.68,0.0,organic,2017,SanFrancisco +32,2017-05-21,2.65,22558.59,9604.14,10281.74,4.36,2668.35,2642.91,25.44,0.0,organic,2017,SanFrancisco +33,2017-05-14,2.64,20842.19,8772.82,8839.82,2.91,3226.64,3204.39,22.25,0.0,organic,2017,SanFrancisco +34,2017-05-07,2.54,19401.8,7404.38,8501.99,0.0,3495.43,3475.92,19.51,0.0,organic,2017,SanFrancisco +35,2017-04-30,2.58,22792.24,9036.95,10350.79,2.91,3401.59,3391.48,10.11,0.0,organic,2017,SanFrancisco +36,2017-04-23,2.56,21330.52,7818.54,10178.28,2.92,3330.78,3322.66,8.12,0.0,organic,2017,SanFrancisco +37,2017-04-16,2.59,23032.34,9013.66,10581.45,5.84,3431.39,3388.38,43.01,0.0,organic,2017,SanFrancisco +38,2017-04-09,2.54,21231.88,7773.14,9709.29,0.0,3749.45,3727.93,21.52,0.0,organic,2017,SanFrancisco +39,2017-04-02,2.59,21303.86,8314.99,9720.42,0.0,3268.45,3268.45,0.0,0.0,organic,2017,SanFrancisco +40,2017-03-26,2.83,20170.65,7369.03,9827.33,0.0,2974.29,2974.29,0.0,0.0,organic,2017,SanFrancisco +41,2017-03-19,2.88,18687.22,6332.48,9140.83,11.7,3202.21,3202.21,0.0,0.0,organic,2017,SanFrancisco +42,2017-03-12,2.9,17686.1,6727.84,7914.27,0.0,3043.99,3043.99,0.0,0.0,organic,2017,SanFrancisco +43,2017-03-05,2.92,21218.15,8013.98,10054.06,0.0,3150.11,3150.11,0.0,0.0,organic,2017,SanFrancisco +44,2017-02-26,2.52,18753.79,6707.73,8785.72,0.0,3260.34,3260.34,0.0,0.0,organic,2017,SanFrancisco +45,2017-02-19,2.58,19202.54,7333.07,8809.03,0.0,3060.44,3060.44,0.0,0.0,organic,2017,SanFrancisco +46,2017-02-12,2.59,19433.9,7271.61,8960.86,2.88,3198.55,3198.55,0.0,0.0,organic,2017,SanFrancisco +47,2017-02-05,1.61,25769.82,10715.26,12410.67,8.76,2635.13,2635.13,0.0,0.0,organic,2017,SanFrancisco +48,2017-01-29,2.7,17708.49,7224.2,7671.88,2.86,2809.55,2809.55,0.0,0.0,organic,2017,SanFrancisco +49,2017-01-22,2.03,20441.93,8435.86,9045.98,2.86,2957.23,2957.23,0.0,0.0,organic,2017,SanFrancisco +50,2017-01-15,2.7,17202.67,5875.7,8476.23,0.0,2850.74,2841.2,9.54,0.0,organic,2017,SanFrancisco +51,2017-01-08,2.58,18096.56,6273.0,8466.99,0.0,3356.57,3347.06,9.51,0.0,organic,2017,SanFrancisco +52,2017-01-01,2.54,19910.51,7268.66,10452.56,0.0,2189.29,2189.29,0.0,0.0,organic,2017,SanFrancisco +0,2017-12-31,1.24,82749.14,1450.69,29692.0,23.44,51583.01,1469.39,50019.56,94.06,organic,2017,Seattle +1,2017-12-24,1.75,42805.68,928.21,13694.01,26.04,28157.42,3377.7,24684.25,95.47,organic,2017,Seattle +2,2017-12-17,1.25,80744.59,872.8,24764.43,28.57,55078.79,22511.93,32512.02,54.84,organic,2017,Seattle +3,2017-12-10,1.07,144862.82,1035.21,39167.18,43.9,104616.53,4627.52,99798.2,190.81,organic,2017,Seattle +4,2017-12-03,1.19,98030.75,1019.98,29524.69,55.28,67430.8,1978.94,65389.0,62.86,organic,2017,Seattle +5,2017-11-26,1.76,35304.27,582.45,11806.84,46.6,22868.38,1202.81,21536.14,129.43,organic,2017,Seattle +6,2017-11-19,2.03,27570.9,792.08,10568.84,38.64,16171.34,985.11,15159.04,27.19,organic,2017,Seattle +7,2017-11-12,2.06,26826.82,932.33,10692.37,23.09,15179.03,1219.02,13948.61,11.4,organic,2017,Seattle +8,2017-11-05,2.34,22872.63,788.17,8753.24,7.67,13323.55,1001.42,12312.18,9.95,organic,2017,Seattle +9,2017-10-29,2.43,26592.14,1118.1,11280.32,16.56,14177.16,1095.88,13069.96,11.32,organic,2017,Seattle +10,2017-10-22,2.3,29230.93,1276.83,12683.1,15.26,15255.74,1354.57,13871.5,29.67,organic,2017,Seattle +11,2017-10-15,2.69,25512.65,1121.98,9881.49,25.43,14483.75,1049.37,13434.38,0.0,organic,2017,Seattle +12,2017-10-08,2.8,27717.86,1079.7,11176.2,7.6,15454.36,1402.31,14045.01,7.04,organic,2017,Seattle +13,2017-10-01,2.86,25718.23,770.12,9708.8,7.6,15231.71,1062.22,14155.42,14.07,organic,2017,Seattle +14,2017-09-24,2.83,23238.29,846.0,8040.13,18.99,14333.17,1385.82,12885.47,61.88,organic,2017,Seattle +15,2017-09-17,2.86,21772.12,883.47,8062.13,7.57,12818.95,1109.17,11692.96,16.82,organic,2017,Seattle +16,2017-09-10,2.87,27205.13,1051.52,10952.09,8.82,15192.7,1109.64,14018.66,64.4,organic,2017,Seattle +17,2017-09-03,2.89,30853.99,1289.56,12808.63,8.84,16746.96,938.52,15793.0,15.44,organic,2017,Seattle +18,2017-08-27,2.96,26845.68,1134.59,11055.6,12.57,14642.92,1079.26,13563.66,0.0,organic,2017,Seattle +19,2017-08-20,2.87,24670.83,1189.85,11984.19,16.39,11480.4,1107.05,10370.55,2.8,organic,2017,Seattle +20,2017-08-13,2.65,27149.47,1215.98,11028.92,7.58,14896.99,1580.51,13312.27,4.21,organic,2017,Seattle +21,2017-08-06,2.58,29977.08,1335.08,13120.04,36.29,15485.67,1685.57,13800.1,0.0,organic,2017,Seattle +22,2017-07-30,2.6,28587.18,1131.67,13395.46,76.57,13983.48,1377.69,12605.79,0.0,organic,2017,Seattle +23,2017-07-23,2.61,25301.81,729.0,12909.58,11.45,11651.78,484.21,11167.57,0.0,organic,2017,Seattle +24,2017-07-16,2.61,28034.45,1003.18,12855.06,20.85,14155.36,611.69,13543.67,0.0,organic,2017,Seattle +25,2017-07-09,2.12,40058.59,1411.24,16587.8,24.73,22034.82,281.45,21753.37,0.0,organic,2017,Seattle +26,2017-07-02,2.35,34268.25,1634.38,18664.45,43.0,13926.42,262.08,13664.34,0.0,organic,2017,Seattle +27,2017-06-25,2.65,31895.13,1739.77,21572.4,46.96,8536.0,290.0,8246.0,0.0,organic,2017,Seattle +28,2017-06-18,1.83,44487.33,1540.72,14636.84,33.95,28275.82,302.04,27973.78,0.0,organic,2017,Seattle +29,2017-06-11,1.6,60009.35,1631.85,14860.39,0.0,43517.11,433.06,43084.05,0.0,organic,2017,Seattle +30,2017-06-04,1.45,64141.55,2133.74,15783.16,0.0,46224.65,263.33,45961.32,0.0,organic,2017,Seattle +31,2017-05-28,1.46,59377.0,2231.32,12440.49,0.0,44705.19,335.1,44370.09,0.0,organic,2017,Seattle +32,2017-05-21,1.53,55027.93,3074.66,11527.34,7.95,40417.98,795.62,39622.36,0.0,organic,2017,Seattle +33,2017-05-14,1.62,49291.33,1601.12,13061.38,41.19,34587.64,1325.19,33262.45,0.0,organic,2017,Seattle +34,2017-05-07,1.51,56578.63,1762.76,16113.72,10.69,38691.46,497.52,38193.94,0.0,organic,2017,Seattle +35,2017-04-30,1.39,55920.43,1574.25,12759.95,4.01,41582.22,698.72,40883.5,0.0,organic,2017,Seattle +36,2017-04-23,1.39,56242.52,1787.17,12544.82,4.07,41906.46,495.17,41411.29,0.0,organic,2017,Seattle +37,2017-04-16,1.45,54764.06,1647.85,14021.33,10.88,39084.0,502.92,38581.08,0.0,organic,2017,Seattle +38,2017-04-09,1.44,52647.91,1602.38,13738.79,4.09,37302.65,514.02,36788.63,0.0,organic,2017,Seattle +39,2017-04-02,1.02,76855.75,1334.79,18147.07,45.03,57328.86,349.3,56979.56,0.0,organic,2017,Seattle +40,2017-03-26,0.7,117379.74,1221.44,13622.19,6.8,102529.31,456.23,102073.08,0.0,organic,2017,Seattle +41,2017-03-19,1.52,45637.49,1575.36,14762.91,4.06,29295.16,787.25,28507.91,0.0,organic,2017,Seattle +42,2017-03-12,1.18,65106.0,1547.48,19478.68,16.82,44063.02,1126.13,42936.89,0.0,organic,2017,Seattle +43,2017-03-05,0.99,68078.93,959.06,14930.47,15.44,52173.96,601.07,51572.89,0.0,organic,2017,Seattle +44,2017-02-26,1.58,38286.08,821.13,12370.73,13.32,25080.9,1732.63,23348.27,0.0,organic,2017,Seattle +45,2017-02-19,2.26,29024.68,800.29,14582.23,12.06,13630.1,9407.45,4222.65,0.0,organic,2017,Seattle +46,2017-02-12,1.79,38095.07,684.04,16188.04,25.14,21197.85,9270.16,11927.69,0.0,organic,2017,Seattle +47,2017-02-05,0.98,51462.4,906.24,10333.71,18.8,40203.65,541.93,39661.72,0.0,organic,2017,Seattle +48,2017-01-29,1.22,45744.02,636.48,10502.66,58.27,34546.61,1544.23,33002.38,0.0,organic,2017,Seattle +49,2017-01-22,1.32,39780.18,654.95,10318.19,9.24,28797.8,557.91,28239.89,0.0,organic,2017,Seattle +50,2017-01-15,1.25,48313.72,447.27,11513.38,1.32,36351.75,690.75,35661.0,0.0,organic,2017,Seattle +51,2017-01-08,1.23,50943.98,537.65,11503.88,6.58,38895.87,583.94,38311.93,0.0,organic,2017,Seattle +52,2017-01-01,1.23,41381.43,486.56,11213.59,2.63,29678.65,510.07,29168.58,0.0,organic,2017,Seattle +0,2017-12-31,1.36,16505.2,72.42,4072.89,116.33,12243.56,11889.19,354.37,0.0,organic,2017,SouthCarolina +1,2017-12-24,1.48,12762.43,118.57,3514.42,79.12,9050.32,8708.91,341.41,0.0,organic,2017,SouthCarolina +2,2017-12-17,1.44,13189.97,69.2,3091.47,78.86,9950.44,9296.79,653.65,0.0,organic,2017,SouthCarolina +3,2017-12-10,1.42,13083.41,84.05,2990.27,70.89,9938.2,9440.67,497.53,0.0,organic,2017,SouthCarolina +4,2017-12-03,1.49,12670.32,79.51,3753.83,98.72,8738.26,8449.86,288.4,0.0,organic,2017,SouthCarolina +5,2017-11-26,1.54,12659.93,81.64,3171.89,45.88,9360.52,8877.68,482.84,0.0,organic,2017,SouthCarolina +6,2017-11-19,1.56,12562.5,89.27,3201.7,85.36,9186.17,8899.71,286.46,0.0,organic,2017,SouthCarolina +7,2017-11-12,1.64,14375.75,75.29,3360.95,39.33,10900.18,10426.89,473.29,0.0,organic,2017,SouthCarolina +8,2017-11-05,1.68,13736.56,125.12,3697.79,112.44,9801.21,9239.73,561.48,0.0,organic,2017,SouthCarolina +9,2017-10-29,1.69,15261.11,132.44,2891.29,66.22,12171.16,10955.01,1216.15,0.0,organic,2017,SouthCarolina +10,2017-10-22,1.7,15014.96,183.93,3156.87,87.34,11586.82,11103.78,483.04,0.0,organic,2017,SouthCarolina +11,2017-10-15,1.78,15150.22,231.95,3011.81,76.97,11829.49,11628.2,201.29,0.0,organic,2017,SouthCarolina +12,2017-10-08,2.04,14402.07,136.03,3139.37,60.66,11066.01,10838.11,227.9,0.0,organic,2017,SouthCarolina +13,2017-10-01,2.15,12921.65,182.4,3400.73,81.2,9257.32,8506.2,751.12,0.0,organic,2017,SouthCarolina +14,2017-09-24,2.1,14716.18,138.3,3523.55,102.81,10951.52,8975.77,1975.75,0.0,organic,2017,SouthCarolina +15,2017-09-17,2.21,11850.68,184.23,3603.67,86.44,7976.34,6711.54,1264.8,0.0,organic,2017,SouthCarolina +16,2017-09-10,2.02,14718.3,178.69,2712.13,113.06,11714.42,11246.85,467.57,0.0,organic,2017,SouthCarolina +17,2017-09-03,2.11,14334.93,207.92,3882.22,127.89,10116.9,8988.45,1128.45,0.0,organic,2017,SouthCarolina +18,2017-08-27,2.03,14071.97,225.39,3924.73,86.75,9835.1,9260.43,574.67,0.0,organic,2017,SouthCarolina +19,2017-08-20,1.88,14864.18,322.82,3927.75,88.54,10525.07,10329.68,195.39,0.0,organic,2017,SouthCarolina +20,2017-08-13,1.78,13678.65,195.52,3482.19,140.67,9860.27,9842.82,17.45,0.0,organic,2017,SouthCarolina +21,2017-08-06,1.74,11964.74,205.93,3665.23,135.34,7958.24,7694.74,263.5,0.0,organic,2017,SouthCarolina +22,2017-07-30,1.57,14475.54,178.36,3739.96,83.3,10473.92,9811.05,662.87,0.0,organic,2017,SouthCarolina +23,2017-07-23,1.81,12851.13,92.72,4559.49,113.74,8085.18,7206.04,879.14,0.0,organic,2017,SouthCarolina +24,2017-07-16,1.83,12087.77,69.9,4666.74,116.89,7234.24,6789.03,445.21,0.0,organic,2017,SouthCarolina +25,2017-07-09,1.76,14990.91,116.35,5293.97,155.96,9424.63,7728.7,1695.93,0.0,organic,2017,SouthCarolina +26,2017-07-02,1.82,14824.81,218.66,5553.97,171.9,8880.28,7340.9,1539.38,0.0,organic,2017,SouthCarolina +27,2017-06-25,1.67,17275.62,191.83,5205.01,117.4,11761.38,9122.35,2639.03,0.0,organic,2017,SouthCarolina +28,2017-06-18,1.72,13816.79,235.14,5136.73,132.12,8312.8,6835.95,1476.85,0.0,organic,2017,SouthCarolina +29,2017-06-11,1.61,14897.51,567.58,4048.33,139.47,10142.13,7496.73,2645.4,0.0,organic,2017,SouthCarolina +30,2017-06-04,1.89,9543.8,761.59,4252.82,128.16,4401.23,2476.04,1925.19,0.0,organic,2017,SouthCarolina +31,2017-05-28,1.97,8937.3,790.46,4574.28,201.95,3370.61,953.24,2417.37,0.0,organic,2017,SouthCarolina +32,2017-05-21,1.86,8777.8,744.08,4624.3,193.97,3215.45,916.5,2298.95,0.0,organic,2017,SouthCarolina +33,2017-05-14,1.91,7927.37,998.2,5280.45,259.53,1389.19,277.31,1111.88,0.0,organic,2017,SouthCarolina +34,2017-05-07,1.8,7048.36,352.76,4779.08,119.66,1796.86,270.59,1526.27,0.0,organic,2017,SouthCarolina +35,2017-04-30,1.87,7072.22,600.75,4505.47,112.36,1853.64,194.65,1658.99,0.0,organic,2017,SouthCarolina +36,2017-04-23,1.97,6587.58,964.45,4213.41,200.04,1209.68,173.84,1035.84,0.0,organic,2017,SouthCarolina +37,2017-04-16,1.69,7761.81,645.02,5275.47,253.45,1587.87,255.87,1332.0,0.0,organic,2017,SouthCarolina +38,2017-04-09,1.4,12281.48,669.35,5400.57,283.3,5928.26,1361.79,4566.47,0.0,organic,2017,SouthCarolina +39,2017-04-02,1.5,10286.24,502.88,5423.91,218.18,4141.27,964.96,3176.31,0.0,organic,2017,SouthCarolina +40,2017-03-26,1.7,7812.03,709.1,4844.72,260.45,1997.76,220.04,1777.72,0.0,organic,2017,SouthCarolina +41,2017-03-19,1.34,8769.05,483.39,4025.31,205.2,4055.15,169.08,3886.07,0.0,organic,2017,SouthCarolina +42,2017-03-12,1.38,11551.46,758.63,3866.61,203.16,6723.06,3672.71,3050.35,0.0,organic,2017,SouthCarolina +43,2017-03-05,0.99,17212.92,796.72,3353.02,211.52,12851.66,4300.38,8551.28,0.0,organic,2017,SouthCarolina +44,2017-02-26,1.13,14902.59,580.25,3513.05,228.94,10580.35,4931.05,5649.3,0.0,organic,2017,SouthCarolina +45,2017-02-19,1.4,11183.49,627.48,3342.81,139.12,7074.08,4986.66,2087.42,0.0,organic,2017,SouthCarolina +46,2017-02-12,1.38,9862.15,430.33,3098.64,152.5,6180.68,4690.21,1490.47,0.0,organic,2017,SouthCarolina +47,2017-02-05,1.45,9116.85,488.39,3011.86,182.42,5434.18,4162.07,1272.11,0.0,organic,2017,SouthCarolina +48,2017-01-29,1.43,9208.26,332.61,3466.84,214.77,5194.04,4009.54,1184.5,0.0,organic,2017,SouthCarolina +49,2017-01-22,1.44,8519.07,321.4,3190.68,234.85,4772.14,3826.57,945.57,0.0,organic,2017,SouthCarolina +50,2017-01-15,1.45,9692.83,344.06,3697.15,253.5,5398.12,4430.4,967.72,0.0,organic,2017,SouthCarolina +51,2017-01-08,1.48,9552.09,304.42,3669.2,222.07,5356.4,4469.22,887.18,0.0,organic,2017,SouthCarolina +52,2017-01-01,1.67,6866.1,296.57,2833.99,185.96,3549.58,2687.3,862.28,0.0,organic,2017,SouthCarolina +0,2017-12-31,1.41,115959.77,25221.46,3103.46,0.0,87634.85,82290.07,5344.78,0.0,organic,2017,SouthCentral +1,2017-12-24,1.47,126306.81,22484.56,3829.0,0.0,99993.25,97351.92,2641.33,0.0,organic,2017,SouthCentral +2,2017-12-17,1.45,116534.02,19933.3,3375.24,0.0,93225.48,89571.37,3654.11,0.0,organic,2017,SouthCentral +3,2017-12-10,1.5,102658.15,18348.97,3120.89,0.0,81188.29,70929.35,10258.94,0.0,organic,2017,SouthCentral +4,2017-12-03,1.59,106526.9,22085.74,3150.27,0.0,81290.89,67077.55,14213.34,0.0,organic,2017,SouthCentral +5,2017-11-26,1.57,91204.54,17430.38,3137.84,0.0,70636.32,69765.16,871.16,0.0,organic,2017,SouthCentral +6,2017-11-19,1.54,115865.76,22430.41,3239.93,0.0,90195.42,89527.0,668.42,0.0,organic,2017,SouthCentral +7,2017-11-12,1.67,117223.76,24716.13,3479.9,0.0,89027.73,88069.33,958.4,0.0,organic,2017,SouthCentral +8,2017-11-05,1.69,99714.13,20163.6,2648.96,0.0,76901.57,74677.27,2224.3,0.0,organic,2017,SouthCentral +9,2017-10-29,1.73,105902.71,20556.39,2692.5,0.0,82653.82,80872.33,1781.49,0.0,organic,2017,SouthCentral +10,2017-10-22,1.73,109427.04,18976.94,2868.24,0.0,87581.86,85795.3,1786.56,0.0,organic,2017,SouthCentral +11,2017-10-15,1.74,115437.92,24823.67,3241.9,0.0,87372.35,85526.15,1846.2,0.0,organic,2017,SouthCentral +12,2017-10-08,1.75,106062.64,27054.58,3391.43,0.0,75616.63,75373.41,243.22,0.0,organic,2017,SouthCentral +13,2017-10-01,1.75,107773.96,31572.3,2854.98,0.0,73346.68,72854.87,491.81,0.0,organic,2017,SouthCentral +14,2017-09-24,1.77,124121.46,43104.01,2957.09,0.0,78060.36,74777.97,3282.39,0.0,organic,2017,SouthCentral +15,2017-09-17,1.8,108093.32,49755.71,3371.39,0.0,54966.22,53033.25,1932.97,0.0,organic,2017,SouthCentral +16,2017-09-10,1.75,108438.31,31218.95,4601.22,0.0,72618.14,71103.81,1514.33,0.0,organic,2017,SouthCentral +17,2017-09-03,1.78,109958.23,30727.41,4626.58,0.0,74604.24,71340.48,3263.76,0.0,organic,2017,SouthCentral +18,2017-08-27,1.81,125183.67,36270.97,4496.79,0.0,84415.91,82658.23,1757.68,0.0,organic,2017,SouthCentral +19,2017-08-20,1.64,115769.96,29483.18,5017.19,0.0,81269.59,77509.12,3760.47,0.0,organic,2017,SouthCentral +20,2017-08-13,1.52,112607.87,26288.07,4083.7,0.0,82236.1,81577.02,659.08,0.0,organic,2017,SouthCentral +21,2017-08-06,1.48,141584.65,34146.34,4622.76,0.0,102815.55,101574.31,1241.24,0.0,organic,2017,SouthCentral +22,2017-07-30,1.52,124143.15,34533.3,4894.84,0.0,84715.01,82561.9,2153.11,0.0,organic,2017,SouthCentral +23,2017-07-23,1.52,131449.42,45346.41,6099.91,0.0,80003.1,78170.25,1832.85,0.0,organic,2017,SouthCentral +24,2017-07-16,1.46,144301.93,31546.7,5690.47,0.0,107064.76,105059.9,2004.86,0.0,organic,2017,SouthCentral +25,2017-07-09,1.13,180648.11,35464.23,7272.31,0.0,137911.57,134528.08,3383.49,0.0,organic,2017,SouthCentral +26,2017-07-02,1.17,169099.91,41073.19,5504.69,0.0,122522.03,118293.26,4228.77,0.0,organic,2017,SouthCentral +27,2017-06-25,1.36,130227.23,48461.43,6365.33,0.0,75400.47,69874.51,5525.96,0.0,organic,2017,SouthCentral +28,2017-06-18,1.27,149975.22,38471.13,9716.75,0.0,101787.34,94445.95,7341.39,0.0,organic,2017,SouthCentral +29,2017-06-11,1.17,183857.14,38447.04,9085.51,0.0,136324.59,122121.81,14202.78,0.0,organic,2017,SouthCentral +30,2017-06-04,1.13,197098.71,34348.51,14133.82,0.0,148616.38,143879.62,4736.76,0.0,organic,2017,SouthCentral +31,2017-05-28,1.19,187973.68,32930.32,18293.4,0.0,136749.96,131941.91,4808.05,0.0,organic,2017,SouthCentral +32,2017-05-21,1.45,147667.8,31741.16,14655.16,0.0,101271.48,96031.26,5240.22,0.0,organic,2017,SouthCentral +33,2017-05-14,1.46,142740.06,30921.33,12795.99,0.0,99022.74,93390.04,5632.7,0.0,organic,2017,SouthCentral +34,2017-05-07,1.34,138588.03,30711.6,11489.92,0.0,96386.51,87975.05,8411.46,0.0,organic,2017,SouthCentral +35,2017-04-30,1.31,126586.54,41198.05,8563.75,0.0,76824.74,59357.39,17467.35,0.0,organic,2017,SouthCentral +36,2017-04-23,1.19,144414.88,40490.03,7341.55,9.0,96574.3,59848.8,36725.5,0.0,organic,2017,SouthCentral +37,2017-04-16,1.04,204871.52,41474.4,7200.29,12.02,156184.81,145920.93,10263.88,0.0,organic,2017,SouthCentral +38,2017-04-09,1.06,173816.89,43305.45,9697.83,0.0,120813.61,93379.58,27434.03,0.0,organic,2017,SouthCentral +39,2017-04-02,1.14,169883.35,50715.72,6377.87,0.0,112789.76,101411.38,11378.38,0.0,organic,2017,SouthCentral +40,2017-03-26,1.03,197899.23,46746.72,5189.22,0.0,145963.29,135199.37,10763.92,0.0,organic,2017,SouthCentral +41,2017-03-19,1.03,160600.06,38297.69,4561.04,0.0,117741.33,110594.93,7146.4,0.0,organic,2017,SouthCentral +42,2017-03-12,1.04,168236.96,42098.81,4983.58,0.0,121154.57,80700.79,40453.78,0.0,organic,2017,SouthCentral +43,2017-03-05,0.99,155011.12,35367.23,5175.81,5.91,114462.17,95379.07,19083.1,0.0,organic,2017,SouthCentral +44,2017-02-26,0.99,171145.0,34520.03,6936.39,0.0,129688.58,117252.31,12436.27,0.0,organic,2017,SouthCentral +45,2017-02-19,1.0,147729.4,32258.65,5881.61,5.89,109583.25,94503.56,15079.69,0.0,organic,2017,SouthCentral +46,2017-02-12,1.12,121268.68,34932.59,5509.9,2.91,80823.28,70954.77,9868.51,0.0,organic,2017,SouthCentral +47,2017-02-05,1.12,104656.52,30563.62,4482.2,0.0,69610.7,63084.5,6526.2,0.0,organic,2017,SouthCentral +48,2017-01-29,1.08,121203.53,35172.06,5405.54,0.0,80625.93,76958.46,3667.47,0.0,organic,2017,SouthCentral +49,2017-01-22,1.02,147163.14,28151.07,6856.25,0.0,112155.82,107713.44,4442.38,0.0,organic,2017,SouthCentral +50,2017-01-15,1.06,109017.25,22335.2,6350.11,0.0,80331.94,78546.46,1785.48,0.0,organic,2017,SouthCentral +51,2017-01-08,1.1,104424.88,26212.5,6181.32,0.0,72031.06,69782.27,2248.79,0.0,organic,2017,SouthCentral +52,2017-01-01,1.23,66616.54,22474.95,4797.17,17.37,39327.05,37358.81,1968.24,0.0,organic,2017,SouthCentral +0,2017-12-31,1.4,92000.75,1052.21,15703.49,169.38,75075.67,69576.29,5499.38,0.0,organic,2017,Southeast +1,2017-12-24,1.57,90080.71,1409.87,16980.39,96.76,71593.69,63498.43,8095.26,0.0,organic,2017,Southeast +2,2017-12-17,1.5,81483.62,1152.01,14184.34,95.22,66052.05,59307.33,6744.72,0.0,organic,2017,Southeast +3,2017-12-10,1.48,79396.08,907.78,12906.41,91.79,65490.1,58892.94,6597.16,0.0,organic,2017,Southeast +4,2017-12-03,1.54,73280.14,1201.3,15651.12,143.43,56284.29,53422.1,2862.19,0.0,organic,2017,Southeast +5,2017-11-26,1.56,77114.49,1025.51,14256.23,57.5,61775.25,57164.51,4610.74,0.0,organic,2017,Southeast +6,2017-11-19,1.59,81736.75,1073.19,16938.74,113.55,63611.27,58343.44,5267.83,0.0,organic,2017,Southeast +7,2017-11-12,1.73,81645.24,1041.38,16284.96,53.27,64265.63,59724.74,4540.89,0.0,organic,2017,Southeast +8,2017-11-05,1.8,89263.65,1631.92,17868.58,138.66,69624.49,57092.21,12532.28,0.0,organic,2017,Southeast +9,2017-10-29,1.84,92281.1,1300.49,15386.24,96.43,75497.94,58528.26,16969.68,0.0,organic,2017,Southeast +10,2017-10-22,1.91,90426.45,1696.37,17846.02,107.66,70776.4,57692.92,13083.48,0.0,organic,2017,Southeast +11,2017-10-15,1.99,72393.25,1416.56,16951.37,118.81,53906.51,49798.36,4108.15,0.0,organic,2017,Southeast +12,2017-10-08,2.13,76471.6,1400.23,16197.16,96.54,58777.67,56973.78,1803.89,0.0,organic,2017,Southeast +13,2017-10-01,2.29,83783.04,2020.76,18485.31,135.54,63141.43,52500.31,10641.12,0.0,organic,2017,Southeast +14,2017-09-24,2.25,90946.17,2085.26,19427.02,132.87,69301.02,46009.03,23291.99,0.0,organic,2017,Southeast +15,2017-09-17,2.33,71648.47,2089.25,17722.64,103.36,51733.22,33649.14,18084.08,0.0,organic,2017,Southeast +16,2017-09-10,2.17,77245.2,2028.56,16157.29,160.15,58899.2,51415.21,7483.99,0.0,organic,2017,Southeast +17,2017-09-03,2.26,77686.48,2180.86,19175.72,171.85,56158.05,40265.41,15892.64,0.0,organic,2017,Southeast +18,2017-08-27,2.16,77416.4,2655.59,23890.3,110.75,50759.76,43832.07,6927.69,0.0,organic,2017,Southeast +19,2017-08-20,1.96,89270.61,2949.29,23183.75,129.31,63008.26,59685.26,3323.0,0.0,organic,2017,Southeast +20,2017-08-13,1.85,76353.2,2129.87,17537.18,183.1,56503.05,56394.33,108.72,0.0,organic,2017,Southeast +21,2017-08-06,1.78,64344.45,1389.06,16770.11,186.56,45998.72,42780.02,3218.7,0.0,organic,2017,Southeast +22,2017-07-30,1.63,77530.96,1310.67,17344.96,138.42,58736.91,51428.61,7308.3,0.0,organic,2017,Southeast +23,2017-07-23,1.72,78813.04,1465.16,21646.39,186.22,55515.27,47328.82,8186.45,0.0,organic,2017,Southeast +24,2017-07-16,1.78,70097.22,1230.72,21752.43,156.17,46957.9,40900.26,6057.64,0.0,organic,2017,Southeast +25,2017-07-09,1.72,90791.94,1959.39,29773.64,249.44,58809.47,46063.02,12746.45,0.0,organic,2017,Southeast +26,2017-07-02,1.8,108360.53,4302.01,40687.72,250.51,63120.29,45687.72,17432.57,0.0,organic,2017,Southeast +27,2017-06-25,1.67,111509.08,4346.4,37186.27,153.28,69823.13,40703.91,29119.22,0.0,organic,2017,Southeast +28,2017-06-18,1.77,94314.28,4845.97,38181.12,176.3,51110.89,34664.22,16446.67,0.0,organic,2017,Southeast +29,2017-06-11,1.43,98734.76,9471.52,17769.48,195.84,71297.92,34473.25,36824.67,0.0,organic,2017,Southeast +30,2017-06-04,1.82,77032.09,12332.67,16277.88,208.25,48213.29,30135.45,18077.84,0.0,organic,2017,Southeast +31,2017-05-28,1.81,84319.76,11588.66,17819.29,279.21,54632.6,29944.08,24688.52,0.0,organic,2017,Southeast +32,2017-05-21,1.67,87299.49,11348.27,19091.4,257.81,56602.01,29557.75,27044.26,0.0,organic,2017,Southeast +33,2017-05-14,1.78,69261.08,17886.01,19384.39,355.06,31635.62,15349.13,16286.49,0.0,organic,2017,Southeast +34,2017-05-07,1.58,69763.54,6765.64,19700.9,180.72,43116.28,12489.88,30626.4,0.0,organic,2017,Southeast +35,2017-04-30,1.9,54311.43,11330.87,18748.52,161.45,24070.59,9721.62,14348.97,0.0,organic,2017,Southeast +36,2017-04-23,1.87,58969.91,17692.58,18109.96,279.38,22887.99,14573.23,8314.76,0.0,organic,2017,Southeast +37,2017-04-16,1.78,60348.45,10404.69,19431.24,358.76,30153.76,9641.86,20511.9,0.0,organic,2017,Southeast +38,2017-04-09,1.34,85742.82,9260.67,17981.54,412.84,58087.77,11973.99,46113.78,0.0,organic,2017,Southeast +39,2017-04-02,1.51,81061.62,9605.32,18324.17,338.06,52794.07,22407.02,30387.05,0.0,organic,2017,Southeast +40,2017-03-26,1.48,75769.87,10057.03,16776.81,327.15,48608.88,23597.71,25011.17,0.0,organic,2017,Southeast +41,2017-03-19,1.58,52790.71,9709.84,13759.38,269.26,29052.23,6652.65,22399.58,0.0,organic,2017,Southeast +42,2017-03-12,1.41,63661.35,10628.05,13728.81,279.09,39025.4,9399.84,29625.56,0.0,organic,2017,Southeast +43,2017-03-05,1.11,95526.15,13231.55,12552.42,275.95,69466.23,12241.84,57224.39,0.0,organic,2017,Southeast +44,2017-02-26,1.12,89221.79,9596.11,12259.82,331.84,67034.02,13420.58,53613.44,0.0,organic,2017,Southeast +45,2017-02-19,1.39,65605.97,9588.84,11456.39,228.44,44332.3,20468.32,23863.98,0.0,organic,2017,Southeast +46,2017-02-12,1.29,69669.46,7177.42,11876.06,253.98,50362.0,28837.29,21524.71,0.0,organic,2017,Southeast +47,2017-02-05,1.54,52925.32,9542.26,12078.59,234.87,31069.6,11391.87,19677.73,0.0,organic,2017,Southeast +48,2017-01-29,1.43,53543.13,4423.96,12562.99,317.33,36238.85,13961.85,22277.0,0.0,organic,2017,Southeast +49,2017-01-22,1.36,58686.47,4163.56,12655.77,353.2,41513.94,21717.79,19796.15,0.0,organic,2017,Southeast +50,2017-01-15,1.36,63939.14,4716.66,12386.68,392.83,46442.97,24971.94,21471.03,0.0,organic,2017,Southeast +51,2017-01-08,1.41,61788.03,5147.21,14914.5,341.38,41384.94,20688.4,20696.54,0.0,organic,2017,Southeast +52,2017-01-01,1.43,49777.56,4157.31,9930.6,262.28,35427.37,15637.05,19790.32,0.0,organic,2017,Southeast +0,2017-12-31,1.82,2468.87,251.57,692.89,0.0,1524.41,426.67,1097.74,0.0,organic,2017,Spokane +1,2017-12-24,1.77,4467.88,148.01,1445.8,0.0,2874.07,762.34,2106.96,4.77,organic,2017,Spokane +2,2017-12-17,2.14,2675.19,181.95,1028.88,0.0,1464.36,911.92,552.44,0.0,organic,2017,Spokane +3,2017-12-10,2.06,2721.99,256.63,832.45,0.0,1632.91,612.23,1020.68,0.0,organic,2017,Spokane +4,2017-12-03,1.92,2575.42,120.24,813.79,0.0,1641.39,398.89,1240.11,2.39,organic,2017,Spokane +5,2017-11-26,2.04,3284.64,156.61,1186.4,8.58,1933.05,560.0,1358.75,14.3,organic,2017,Spokane +6,2017-11-19,2.2,2838.6,184.35,1208.98,0.0,1445.27,367.77,1034.63,42.87,organic,2017,Spokane +7,2017-11-12,2.17,3113.68,276.49,1165.5,0.0,1671.69,506.66,1165.03,0.0,organic,2017,Spokane +8,2017-11-05,2.54,2596.51,215.25,1023.49,0.0,1357.77,380.0,977.77,0.0,organic,2017,Spokane +9,2017-10-29,2.48,2797.66,272.0,946.72,0.0,1578.94,520.0,1058.94,0.0,organic,2017,Spokane +10,2017-10-22,2.11,3627.68,368.11,1504.17,0.0,1755.4,598.89,1156.51,0.0,organic,2017,Spokane +11,2017-10-15,2.55,2819.91,103.65,1021.68,2.12,1692.46,566.66,1125.8,0.0,organic,2017,Spokane +12,2017-10-08,2.74,2803.12,236.06,946.35,0.0,1620.71,624.44,996.27,0.0,organic,2017,Spokane +13,2017-10-01,2.88,2413.84,148.64,825.79,0.0,1439.41,391.11,1043.71,4.59,organic,2017,Spokane +14,2017-09-24,2.95,2417.55,168.12,1025.14,0.0,1224.29,370.0,849.73,4.56,organic,2017,Spokane +15,2017-09-17,2.94,2375.19,181.23,861.34,0.0,1332.62,312.22,1020.4,0.0,organic,2017,Spokane +16,2017-09-10,2.86,2913.66,254.5,1032.25,0.0,1626.91,478.89,1148.02,0.0,organic,2017,Spokane +17,2017-09-03,2.93,3047.66,181.79,1194.91,0.0,1670.96,452.22,1218.74,0.0,organic,2017,Spokane +18,2017-08-27,2.84,2077.95,122.13,586.22,0.0,1369.6,308.89,1060.71,0.0,organic,2017,Spokane +19,2017-08-20,2.76,2232.94,214.41,1025.11,0.0,993.42,303.66,689.76,0.0,organic,2017,Spokane +20,2017-08-13,2.55,3503.34,290.02,1531.25,0.0,1682.07,563.54,1118.53,0.0,organic,2017,Spokane +21,2017-08-06,2.45,3628.33,272.73,1678.34,0.0,1677.26,572.35,1104.91,0.0,organic,2017,Spokane +22,2017-07-30,2.38,3374.92,127.96,1619.38,0.0,1627.58,587.08,1040.5,0.0,organic,2017,Spokane +23,2017-07-23,2.66,3010.56,145.69,2076.08,20.23,768.56,31.11,737.45,0.0,organic,2017,Spokane +24,2017-07-16,2.55,3536.14,324.26,1828.38,4.18,1379.32,105.55,1273.77,0.0,organic,2017,Spokane +25,2017-07-09,2.2,4236.47,358.58,1807.52,16.68,2053.69,37.23,2016.46,0.0,organic,2017,Spokane +26,2017-07-02,2.56,3959.98,305.84,2579.83,0.0,1074.31,83.89,990.42,0.0,organic,2017,Spokane +27,2017-06-25,2.5,3367.89,417.32,1868.61,0.0,1081.96,71.66,1010.3,0.0,organic,2017,Spokane +28,2017-06-18,1.71,4526.04,323.22,1545.67,0.0,2657.15,51.11,2606.04,0.0,organic,2017,Spokane +29,2017-06-11,1.45,6065.6,231.58,1649.99,0.0,4184.03,54.46,4129.57,0.0,organic,2017,Spokane +30,2017-06-04,1.56,5718.65,458.07,1976.71,0.0,3283.87,46.67,3237.2,0.0,organic,2017,Spokane +31,2017-05-28,1.48,5870.75,349.55,1639.55,16.65,3865.0,66.66,3798.34,0.0,organic,2017,Spokane +32,2017-05-21,1.53,4711.98,319.75,1148.21,68.52,3175.5,91.01,3084.49,0.0,organic,2017,Spokane +33,2017-05-14,1.56,5224.55,430.77,1195.66,25.22,3572.9,103.37,3469.53,0.0,organic,2017,Spokane +34,2017-05-07,1.58,5023.31,269.36,1452.03,18.94,3282.98,20.0,3262.98,0.0,organic,2017,Spokane +35,2017-04-30,1.72,4577.29,219.18,1582.71,27.4,2748.0,20.0,2728.0,0.0,organic,2017,Spokane +36,2017-04-23,1.77,4478.9,322.84,1586.56,8.5,2561.0,30.0,2531.0,0.0,organic,2017,Spokane +37,2017-04-16,1.57,4884.2,292.71,1306.43,5.38,3279.68,33.33,3246.35,0.0,organic,2017,Spokane +38,2017-04-09,1.76,4857.02,258.59,1820.91,0.0,2777.52,30.0,2747.52,0.0,organic,2017,Spokane +39,2017-04-02,1.32,5923.05,234.46,1746.63,0.0,3941.96,36.67,3905.29,0.0,organic,2017,Spokane +40,2017-03-26,1.02,8348.5,347.42,1704.92,0.0,6296.16,23.33,6272.83,0.0,organic,2017,Spokane +41,2017-03-19,1.91,3319.4,240.74,1487.07,0.0,1591.59,23.33,1568.26,0.0,organic,2017,Spokane +42,2017-03-12,1.19,5020.91,169.93,1599.48,11.68,3239.82,30.0,3209.82,0.0,organic,2017,Spokane +43,2017-03-05,1.38,3789.26,116.07,1156.47,13.72,2503.0,23.33,2479.67,0.0,organic,2017,Spokane +44,2017-02-26,1.64,3681.31,152.37,1154.78,1.0,2373.16,84.32,2288.84,0.0,organic,2017,Spokane +45,2017-02-19,2.34,2274.09,121.18,1042.15,0.0,1110.76,784.25,326.51,0.0,organic,2017,Spokane +46,2017-02-12,1.66,3673.62,79.25,1229.41,0.0,2364.96,578.99,1785.97,0.0,organic,2017,Spokane +47,2017-02-05,1.09,3239.7,52.94,789.96,0.0,2396.8,53.16,2343.64,0.0,organic,2017,Spokane +48,2017-01-29,1.26,4306.29,71.23,1070.47,0.0,3164.59,123.23,3041.36,0.0,organic,2017,Spokane +49,2017-01-22,1.28,3750.22,99.78,928.56,0.0,2721.88,63.35,2658.53,0.0,organic,2017,Spokane +50,2017-01-15,1.17,4471.01,24.44,1016.47,0.0,3430.1,35.08,3395.02,0.0,organic,2017,Spokane +51,2017-01-08,1.16,4113.7,14.26,914.68,0.0,3184.76,168.63,3016.13,0.0,organic,2017,Spokane +52,2017-01-01,1.21,2869.96,69.23,745.26,0.0,2055.47,7.92,2047.55,0.0,organic,2017,Spokane +0,2017-12-31,1.54,12274.98,1689.61,1140.91,0.0,9444.46,6613.72,2830.74,0.0,organic,2017,StLouis +1,2017-12-24,1.67,5123.55,1106.21,841.14,0.0,3176.2,1584.44,1591.76,0.0,organic,2017,StLouis +2,2017-12-17,1.63,5954.71,949.55,979.61,0.0,4025.55,2095.55,1930.0,0.0,organic,2017,StLouis +3,2017-12-10,1.72,5723.01,745.23,1060.12,0.0,3917.66,1241.12,2676.54,0.0,organic,2017,StLouis +4,2017-12-03,1.81,6102.5,804.3,1175.92,0.0,4122.28,1492.22,2630.06,0.0,organic,2017,StLouis +5,2017-11-26,2.0,5337.53,654.85,764.6,0.0,3918.08,1751.12,2166.96,0.0,organic,2017,StLouis +6,2017-11-19,1.64,5820.91,1329.71,678.38,0.0,3812.82,2116.39,1696.43,0.0,organic,2017,StLouis +7,2017-11-12,1.96,5719.05,10.52,1238.07,0.0,4470.46,2041.26,2429.2,0.0,organic,2017,StLouis +8,2017-11-05,1.77,6843.75,1.76,1255.74,0.0,5586.25,3920.93,1665.32,0.0,organic,2017,StLouis +9,2017-10-29,1.8,6098.89,14.42,924.45,0.0,5160.02,3222.62,1937.4,0.0,organic,2017,StLouis +10,2017-10-22,2.02,6578.62,44.43,1254.63,0.0,5279.56,1960.35,3319.21,0.0,organic,2017,StLouis +11,2017-10-15,2.14,7426.84,27.16,1200.53,0.0,6199.15,2020.75,4178.4,0.0,organic,2017,StLouis +12,2017-10-08,2.27,6086.65,19.03,733.82,0.0,5333.8,2024.86,3308.94,0.0,organic,2017,StLouis +13,2017-10-01,2.36,6583.11,26.77,913.31,0.0,5643.03,1750.22,3892.81,0.0,organic,2017,StLouis +14,2017-09-24,2.49,2935.97,8.94,475.6,0.0,2451.43,516.43,1935.0,0.0,organic,2017,StLouis +15,2017-09-17,2.71,5269.51,31.82,1053.07,0.0,4184.62,57.77,4126.85,0.0,organic,2017,StLouis +16,2017-09-10,2.69,5157.52,101.21,1107.34,0.0,3948.97,101.11,3847.86,0.0,organic,2017,StLouis +17,2017-09-03,2.81,4111.66,22.6,2396.41,19.81,1672.84,71.11,1601.73,0.0,organic,2017,StLouis +18,2017-08-27,2.84,3591.12,44.1,2900.22,10.77,636.03,190.01,446.02,0.0,organic,2017,StLouis +19,2017-08-20,2.64,4715.07,149.97,2885.47,18.05,1661.58,697.14,964.44,0.0,organic,2017,StLouis +20,2017-08-13,2.28,5429.19,238.64,1946.25,3.6,3240.7,1704.44,1536.26,0.0,organic,2017,StLouis +21,2017-08-06,2.15,8848.14,1494.5,1378.38,8.88,5966.38,1875.55,4090.83,0.0,organic,2017,StLouis +22,2017-07-30,2.11,6858.93,557.82,2534.81,16.0,3750.3,2144.44,1605.86,0.0,organic,2017,StLouis +23,2017-07-23,2.22,6999.43,656.83,3501.3,0.0,2841.3,1491.1,1350.2,0.0,organic,2017,StLouis +24,2017-07-16,2.22,7773.43,1987.54,2314.64,1.77,3469.48,1541.1,1928.38,0.0,organic,2017,StLouis +25,2017-07-09,1.79,9693.13,1623.63,2739.55,0.0,5329.95,5323.28,6.67,0.0,organic,2017,StLouis +26,2017-07-02,1.55,9274.18,136.65,2340.64,3.52,6793.37,6630.96,162.41,0.0,organic,2017,StLouis +27,2017-06-25,1.54,8241.57,67.64,1553.87,5.26,6614.8,3648.95,2965.85,0.0,organic,2017,StLouis +28,2017-06-18,1.63,9327.52,797.12,1738.65,10.49,6781.26,3648.33,3132.93,0.0,organic,2017,StLouis +29,2017-06-11,2.05,7973.35,2393.62,2139.09,12.2,3428.44,2034.3,1394.14,0.0,organic,2017,StLouis +30,2017-06-04,1.95,9652.72,2373.25,2106.82,0.0,5172.65,2621.83,2550.82,0.0,organic,2017,StLouis +31,2017-05-28,1.9,7251.55,1901.01,1675.52,1.74,3673.28,1672.25,2001.03,0.0,organic,2017,StLouis +32,2017-05-21,1.94,7221.48,1450.51,2164.36,3.45,3603.16,1618.04,1985.12,0.0,organic,2017,StLouis +33,2017-05-14,1.59,5693.95,229.87,1400.1,0.0,4063.98,1150.0,2913.98,0.0,organic,2017,StLouis +34,2017-05-07,1.7,5974.03,19.6,2127.32,1.73,3825.38,1556.08,2269.3,0.0,organic,2017,StLouis +35,2017-04-30,2.25,4551.65,60.1,3435.94,6.91,1048.7,1037.18,11.52,0.0,organic,2017,StLouis +36,2017-04-23,1.93,5647.44,305.95,2629.57,12.16,2699.76,2685.29,14.47,0.0,organic,2017,StLouis +37,2017-04-16,2.03,6470.01,1059.73,2846.32,0.0,2563.96,2400.84,163.12,0.0,organic,2017,StLouis +38,2017-04-09,1.42,10153.14,1802.26,1023.4,3.43,7324.05,1400.0,5924.05,0.0,organic,2017,StLouis +39,2017-04-02,1.23,13548.83,1692.44,637.88,0.0,11218.51,1363.58,9854.93,0.0,organic,2017,StLouis +40,2017-03-26,1.24,11292.61,1579.74,513.18,0.0,9199.69,903.33,8296.36,0.0,organic,2017,StLouis +41,2017-03-19,1.19,10420.76,1187.88,489.0,0.0,8743.88,1218.56,7525.32,0.0,organic,2017,StLouis +42,2017-03-12,1.16,10550.08,840.11,599.7,0.0,9110.27,1055.56,8054.71,0.0,organic,2017,StLouis +43,2017-03-05,1.23,8150.41,1233.15,462.58,0.0,6454.68,382.99,6071.69,0.0,organic,2017,StLouis +44,2017-02-26,1.18,7139.65,919.14,517.15,0.0,5703.36,1393.75,4309.61,0.0,organic,2017,StLouis +45,2017-02-19,1.1,8031.89,990.14,539.15,0.0,6502.6,828.52,5674.08,0.0,organic,2017,StLouis +46,2017-02-12,1.04,10825.69,1444.56,562.93,0.0,8818.2,1576.67,7241.53,0.0,organic,2017,StLouis +47,2017-02-05,1.32,5630.1,822.78,547.96,0.0,4259.36,890.0,3369.36,0.0,organic,2017,StLouis +48,2017-01-29,1.36,6269.88,1315.28,514.22,0.0,4440.38,811.11,3629.27,0.0,organic,2017,StLouis +49,2017-01-22,1.4,6534.61,1189.05,791.05,0.0,4554.51,1287.78,3266.73,0.0,organic,2017,StLouis +50,2017-01-15,1.45,7588.47,1997.04,657.61,0.0,4933.82,1305.0,3628.82,0.0,organic,2017,StLouis +51,2017-01-08,1.67,4065.65,1559.52,325.05,0.0,2181.08,1381.78,799.3,0.0,organic,2017,StLouis +52,2017-01-01,1.46,5850.8,1662.86,413.93,0.0,3774.01,716.11,3057.9,0.0,organic,2017,StLouis +0,2017-12-31,1.2,4873.1,51.97,54.57,0.0,4766.56,3051.42,1715.14,0.0,organic,2017,Syracuse +1,2017-12-24,1.21,5154.54,77.02,65.27,0.0,5012.25,4664.12,348.13,0.0,organic,2017,Syracuse +2,2017-12-17,1.18,4667.9,53.38,45.57,0.0,4568.95,2210.43,2358.52,0.0,organic,2017,Syracuse +3,2017-12-10,1.13,6431.82,19.38,76.24,0.0,6336.2,3246.44,3089.76,0.0,organic,2017,Syracuse +4,2017-12-03,1.23,4486.61,21.96,134.36,0.0,4330.29,2945.07,1385.22,0.0,organic,2017,Syracuse +5,2017-11-26,1.28,3420.98,54.32,44.03,0.0,3322.63,3072.61,250.02,0.0,organic,2017,Syracuse +6,2017-11-19,1.45,3574.89,61.68,82.24,0.0,3430.97,1751.84,1679.13,0.0,organic,2017,Syracuse +7,2017-11-12,1.42,5045.97,52.55,115.35,0.0,4878.07,2912.91,1965.16,0.0,organic,2017,Syracuse +8,2017-11-05,1.38,5329.36,76.51,38.25,0.0,5214.6,5041.26,173.34,0.0,organic,2017,Syracuse +9,2017-10-29,1.35,7073.65,78.85,61.04,0.0,6933.76,6933.76,0.0,0.0,organic,2017,Syracuse +10,2017-10-22,1.35,5189.51,74.88,74.94,0.0,5039.69,5039.69,0.0,0.0,organic,2017,Syracuse +11,2017-10-15,1.34,5963.47,86.38,66.06,0.0,5811.03,5811.03,0.0,0.0,organic,2017,Syracuse +12,2017-10-08,1.32,7491.15,54.15,124.32,0.0,7312.68,7312.68,0.0,0.0,organic,2017,Syracuse +13,2017-10-01,1.41,6358.44,127.81,61.21,0.0,6169.42,6169.42,0.0,0.0,organic,2017,Syracuse +14,2017-09-24,1.4,6416.81,95.09,88.8,0.0,6232.92,6229.59,3.33,0.0,organic,2017,Syracuse +15,2017-09-17,1.43,4674.76,120.62,66.66,0.0,4487.48,4247.07,240.41,0.0,organic,2017,Syracuse +16,2017-09-10,1.8,2095.4,85.58,65.73,0.0,1944.09,1118.06,826.03,0.0,organic,2017,Syracuse +17,2017-09-03,1.51,3798.02,130.51,87.0,0.0,3580.51,2644.18,936.33,0.0,organic,2017,Syracuse +18,2017-08-27,1.4,5300.56,76.5,61.01,0.0,5163.05,4669.53,493.52,0.0,organic,2017,Syracuse +19,2017-08-20,1.51,3978.93,65.45,101.54,0.0,3811.94,1606.79,2205.15,0.0,organic,2017,Syracuse +20,2017-08-13,1.39,4017.01,0.0,169.15,0.0,3847.86,2080.86,1767.0,0.0,organic,2017,Syracuse +21,2017-08-06,1.37,5742.08,0.0,114.91,0.0,5627.17,2087.51,3539.66,0.0,organic,2017,Syracuse +22,2017-07-30,1.44,4568.06,0.0,136.78,0.0,4431.28,1060.62,3370.66,0.0,organic,2017,Syracuse +23,2017-07-23,1.25,6588.03,0.0,164.12,0.0,6423.91,3009.25,3414.66,0.0,organic,2017,Syracuse +24,2017-07-16,1.35,5140.46,0.0,165.11,0.0,4975.35,3013.25,1962.1,0.0,organic,2017,Syracuse +25,2017-07-09,2.4,2789.76,0.0,148.65,0.0,2641.11,861.32,1779.79,0.0,organic,2017,Syracuse +26,2017-07-02,2.44,2508.3,0.0,263.71,0.0,2244.59,745.47,1499.12,0.0,organic,2017,Syracuse +27,2017-06-25,2.43,2664.0,1.28,137.32,0.0,2525.4,894.12,1631.28,0.0,organic,2017,Syracuse +28,2017-06-18,2.42,3405.58,0.0,144.6,0.0,3260.98,1100.84,2160.14,0.0,organic,2017,Syracuse +29,2017-06-11,2.37,3056.43,0.0,164.45,0.0,2891.98,1093.12,1798.86,0.0,organic,2017,Syracuse +30,2017-06-04,2.23,3153.41,0.0,143.45,0.0,3009.96,1266.47,1743.49,0.0,organic,2017,Syracuse +31,2017-05-28,2.09,3299.38,0.0,198.97,0.0,3100.41,1083.38,2017.03,0.0,organic,2017,Syracuse +32,2017-05-21,2.07,2976.18,0.0,262.29,0.0,2713.89,1109.61,1604.28,0.0,organic,2017,Syracuse +33,2017-05-14,2.0,4073.79,0.0,349.93,0.0,3723.86,1435.66,2288.2,0.0,organic,2017,Syracuse +34,2017-05-07,2.11,4181.73,0.0,260.65,0.0,3921.08,1018.47,2902.61,0.0,organic,2017,Syracuse +35,2017-04-30,1.88,1703.77,0.0,160.66,0.0,1543.11,1061.85,481.26,0.0,organic,2017,Syracuse +36,2017-04-23,2.08,3223.81,0.0,109.87,0.0,3113.94,958.29,2155.65,0.0,organic,2017,Syracuse +37,2017-04-16,2.05,3200.29,0.0,177.01,0.0,3023.28,1159.85,1863.43,0.0,organic,2017,Syracuse +38,2017-04-09,2.09,2857.82,0.0,172.93,0.0,2684.89,923.75,1761.14,0.0,organic,2017,Syracuse +39,2017-04-02,1.96,1628.79,0.0,326.09,0.0,1302.7,961.13,341.57,0.0,organic,2017,Syracuse +40,2017-03-26,2.12,2614.15,0.0,137.6,0.0,2476.55,753.67,1722.88,0.0,organic,2017,Syracuse +41,2017-03-19,2.04,2460.96,0.0,111.78,0.0,2349.18,917.98,1431.2,0.0,organic,2017,Syracuse +42,2017-03-12,2.05,2064.66,0.0,128.22,0.0,1936.44,711.49,1224.95,0.0,organic,2017,Syracuse +43,2017-03-05,1.84,1817.84,0.0,380.92,0.0,1436.92,887.72,549.2,0.0,organic,2017,Syracuse +44,2017-02-26,1.79,1336.09,0.0,207.99,0.0,1128.1,868.11,259.99,0.0,organic,2017,Syracuse +45,2017-02-19,1.84,2030.59,0.0,257.11,0.0,1773.48,1021.7,751.78,0.0,organic,2017,Syracuse +46,2017-02-12,1.66,2470.65,2.56,102.49,0.0,2365.6,1989.81,375.79,0.0,organic,2017,Syracuse +47,2017-02-05,1.8,3181.84,5.13,81.82,0.0,3094.89,1892.25,1202.64,0.0,organic,2017,Syracuse +48,2017-01-29,1.67,1749.51,0.0,106.8,0.0,1642.71,1473.19,169.52,0.0,organic,2017,Syracuse +49,2017-01-22,1.57,1880.89,19.02,65.93,0.0,1795.94,1795.94,0.0,0.0,organic,2017,Syracuse +50,2017-01-15,1.53,3179.45,2.53,156.91,0.0,3020.01,3000.33,19.68,0.0,organic,2017,Syracuse +51,2017-01-08,1.7,2443.57,0.0,113.63,0.0,2329.94,1777.21,552.73,0.0,organic,2017,Syracuse +52,2017-01-01,1.7,1811.03,6.3,42.83,0.0,1761.9,1263.57,498.33,0.0,organic,2017,Syracuse +0,2017-12-31,1.59,5528.74,76.28,474.42,0.0,4978.04,4716.25,261.79,0.0,organic,2017,Tampa +1,2017-12-24,1.64,7369.95,107.68,672.37,0.0,6589.9,5882.22,707.68,0.0,organic,2017,Tampa +2,2017-12-17,1.58,5609.58,65.61,564.27,0.0,4979.7,4912.21,67.49,0.0,organic,2017,Tampa +3,2017-12-10,1.56,5580.67,27.66,438.56,0.0,5114.45,5111.12,3.33,0.0,organic,2017,Tampa +4,2017-12-03,1.61,4677.74,40.64,534.88,0.0,4102.22,4091.12,11.1,0.0,organic,2017,Tampa +5,2017-11-26,1.58,5007.93,46.18,383.97,0.0,4577.78,4567.78,10.0,0.0,organic,2017,Tampa +6,2017-11-19,1.74,6739.72,101.99,789.78,0.0,5847.95,5031.44,816.51,0.0,organic,2017,Tampa +7,2017-11-12,1.82,5441.77,50.87,533.78,0.0,4857.12,4800.0,57.12,0.0,organic,2017,Tampa +8,2017-11-05,1.95,6566.58,117.74,949.73,0.0,5499.11,4451.12,1047.99,0.0,organic,2017,Tampa +9,2017-10-29,1.94,6320.26,92.65,741.78,0.0,5485.83,4392.21,1093.62,0.0,organic,2017,Tampa +10,2017-10-22,2.18,6399.75,108.7,1003.5,0.0,5287.55,3874.45,1413.1,0.0,organic,2017,Tampa +11,2017-10-15,2.7,3288.85,125.79,659.65,0.0,2503.41,1736.66,766.75,0.0,organic,2017,Tampa +12,2017-10-08,1.89,5500.88,103.57,527.61,0.0,4869.7,4750.0,119.7,0.0,organic,2017,Tampa +13,2017-10-01,2.14,7152.31,174.02,928.96,0.0,6049.33,5080.69,968.64,0.0,organic,2017,Tampa +14,2017-09-24,1.85,4633.29,96.46,399.84,0.0,4136.99,3827.77,309.22,0.0,organic,2017,Tampa +15,2017-09-17,1.78,1249.75,23.58,40.61,0.0,1185.56,1185.56,0.0,0.0,organic,2017,Tampa +16,2017-09-10,1.76,3548.76,33.93,2.62,0.0,3512.21,3505.54,6.67,0.0,organic,2017,Tampa +17,2017-09-03,1.74,2478.44,38.56,27.66,0.0,2412.22,2408.89,3.33,0.0,organic,2017,Tampa +18,2017-08-27,1.6,3287.16,31.26,23.68,0.0,3232.22,3225.55,6.67,0.0,organic,2017,Tampa +19,2017-08-20,1.55,4048.43,31.71,57.83,0.0,3958.89,3952.22,6.67,0.0,organic,2017,Tampa +20,2017-08-13,1.57,4124.63,11.93,52.71,0.0,4059.99,4059.99,0.0,0.0,organic,2017,Tampa +21,2017-08-06,1.6,3054.66,31.97,64.92,0.0,2957.77,2951.1,6.67,0.0,organic,2017,Tampa +22,2017-07-30,1.57,3724.2,41.69,43.63,0.0,3638.88,3628.88,10.0,0.0,organic,2017,Tampa +23,2017-07-23,1.55,3528.33,19.6,14.3,0.0,3494.43,3494.43,0.0,0.0,organic,2017,Tampa +24,2017-07-16,1.56,3525.61,22.61,39.69,0.0,3463.31,3459.98,3.33,0.0,organic,2017,Tampa +25,2017-07-09,1.68,3943.55,44.2,188.68,0.0,3710.67,3703.89,6.78,0.0,organic,2017,Tampa +26,2017-07-02,2.08,6570.14,451.16,2906.23,0.0,3212.75,3209.42,3.33,0.0,organic,2017,Tampa +27,2017-06-25,2.09,6199.5,488.9,2780.41,0.0,2930.19,2923.52,6.67,0.0,organic,2017,Tampa +28,2017-06-18,2.07,6480.98,475.83,2787.16,0.0,3217.99,3217.99,0.0,0.0,organic,2017,Tampa +29,2017-06-11,1.86,4577.12,933.06,206.39,0.0,3437.67,3434.34,3.33,0.0,organic,2017,Tampa +30,2017-06-04,1.99,5574.93,1368.31,156.3,0.0,4050.32,4050.32,0.0,0.0,organic,2017,Tampa +31,2017-05-28,1.79,7101.2,1104.19,125.33,0.0,5871.68,4797.54,1074.14,0.0,organic,2017,Tampa +32,2017-05-21,1.76,7514.33,1257.05,124.04,0.0,6133.24,5223.35,909.89,0.0,organic,2017,Tampa +33,2017-05-14,1.96,4946.02,2198.76,104.04,0.0,2643.22,2528.95,114.27,0.0,organic,2017,Tampa +34,2017-05-07,1.64,5564.72,811.85,37.89,0.0,4714.98,2881.11,1833.87,0.0,organic,2017,Tampa +35,2017-04-30,2.18,3715.02,1053.18,82.33,0.0,2579.51,2041.11,538.4,0.0,organic,2017,Tampa +36,2017-04-23,1.94,5282.78,2020.23,169.22,0.0,3093.33,3093.33,0.0,0.0,organic,2017,Tampa +37,2017-04-16,3.17,3018.56,1255.55,82.31,0.0,1680.7,1542.22,138.48,0.0,organic,2017,Tampa +38,2017-04-09,2.27,4154.91,957.86,54.13,0.0,3142.92,1275.82,1867.1,0.0,organic,2017,Tampa +39,2017-04-02,1.93,5864.06,1493.44,74.28,0.0,4296.34,3517.43,778.91,0.0,organic,2017,Tampa +40,2017-03-26,1.52,8253.8,1009.21,102.57,0.0,7142.02,5803.6,1338.42,0.0,organic,2017,Tampa +41,2017-03-19,1.97,3982.18,985.66,41.8,0.0,2954.72,1333.33,1621.39,0.0,organic,2017,Tampa +42,2017-03-12,2.56,2856.05,1233.55,97.2,0.0,1525.3,853.33,671.97,0.0,organic,2017,Tampa +43,2017-03-05,2.61,3705.46,1712.14,127.26,0.0,1866.06,1367.78,498.28,0.0,organic,2017,Tampa +44,2017-02-26,2.14,4102.72,969.32,74.28,0.0,3059.12,1234.44,1824.68,0.0,organic,2017,Tampa +45,2017-02-19,1.81,4237.44,1110.93,42.82,0.0,3083.69,2205.56,878.13,0.0,organic,2017,Tampa +46,2017-02-12,1.44,6411.93,742.02,89.76,0.0,5580.15,4682.59,897.56,0.0,organic,2017,Tampa +47,2017-02-05,1.93,4591.77,1500.06,70.24,0.0,3021.47,1728.88,1292.59,0.0,organic,2017,Tampa +48,2017-01-29,1.43,5251.73,263.33,46.22,0.0,4942.18,2496.67,2445.51,0.0,organic,2017,Tampa +49,2017-01-22,1.2,6939.71,252.11,33.77,0.0,6653.83,4266.66,2387.17,0.0,organic,2017,Tampa +50,2017-01-15,1.21,7526.04,320.78,60.1,0.0,7145.16,4763.33,2381.83,0.0,organic,2017,Tampa +51,2017-01-08,1.21,6520.7,285.78,50.14,0.0,6184.78,3836.67,2348.11,0.0,organic,2017,Tampa +52,2017-01-01,1.22,5905.05,287.57,36.42,0.0,5581.06,3530.0,2051.06,0.0,organic,2017,Tampa +0,2017-12-31,1.52,1243940.09,120545.76,248123.56,1279.48,873874.64,723304.51,150460.36,109.77,organic,2017,TotalUS +1,2017-12-24,1.64,1179930.12,103199.55,247166.08,1143.57,828217.63,700331.83,127746.86,138.94,organic,2017,TotalUS +2,2017-12-17,1.57,1148617.16,94905.86,248498.73,982.45,803682.1,673202.55,130360.58,118.97,organic,2017,TotalUS +3,2017-12-10,1.54,1217680.36,94279.26,258003.98,1003.84,863843.93,647239.76,216359.41,244.76,organic,2017,TotalUS +4,2017-12-03,1.62,1119325.0,99317.88,269450.85,1108.2,749121.8,592524.24,156438.84,158.72,organic,2017,TotalUS +5,2017-11-26,1.72,957800.72,77759.93,204612.15,978.29,673887.41,574547.2,99074.42,265.79,organic,2017,TotalUS +6,2017-11-19,1.77,967886.13,88110.88,213230.36,834.3,665229.98,587077.23,77963.17,189.58,organic,2017,TotalUS +7,2017-11-12,1.81,1044591.43,93312.94,217612.9,1074.64,732279.99,643083.53,89180.07,16.39,organic,2017,TotalUS +8,2017-11-05,1.82,1068530.09,88073.16,244925.18,1059.63,733972.36,648557.69,85378.96,35.71,organic,2017,TotalUS +9,2017-10-29,1.84,1123703.61,88668.95,218858.34,1150.03,814723.26,718162.0,96481.09,80.17,organic,2017,TotalUS +10,2017-10-22,1.82,1180823.79,89301.75,229689.25,1309.82,860336.8,767148.14,93130.75,57.91,organic,2017,TotalUS +11,2017-10-15,1.85,1172057.19,103557.18,218881.54,1369.62,848040.34,771105.65,76927.27,7.42,organic,2017,TotalUS +12,2017-10-08,1.9,1164140.49,100744.58,231652.64,1224.99,830309.99,771846.48,58417.76,45.75,organic,2017,TotalUS +13,2017-10-01,1.95,1072521.35,100319.38,230053.24,1966.94,739701.61,658536.46,81088.57,76.58,organic,2017,TotalUS +14,2017-09-24,1.94,1125443.38,116338.61,237876.77,1182.85,769536.9,639021.62,130401.43,113.85,organic,2017,TotalUS +15,2017-09-17,2.0,1074567.7,140979.17,243233.57,891.6,689301.75,582096.9,107163.76,41.09,organic,2017,TotalUS +16,2017-09-10,2.03,1093955.66,114942.21,249231.14,940.89,728658.92,622445.79,106080.9,132.23,organic,2017,TotalUS +17,2017-09-03,2.06,1075538.53,113516.0,256920.07,2256.96,702628.91,571725.58,130801.89,101.44,organic,2017,TotalUS +18,2017-08-27,2.09,1045992.02,112812.39,250861.84,2119.14,680088.21,588832.95,91249.96,5.3,organic,2017,TotalUS +19,2017-08-20,1.96,1071538.25,108658.66,262747.8,1154.19,698734.9,608822.05,89904.05,8.8,organic,2017,TotalUS +20,2017-08-13,1.88,1014709.07,98007.24,230106.14,1414.21,684998.04,612544.62,72449.02,4.4,organic,2017,TotalUS +21,2017-08-06,1.83,1059971.14,112592.04,236015.15,1552.51,709619.31,598479.83,111139.48,0.0,organic,2017,TotalUS +22,2017-07-30,1.78,1091590.78,100332.24,270534.58,2135.74,718295.3,594392.07,123903.23,0.0,organic,2017,TotalUS +23,2017-07-23,1.76,1214158.19,113467.66,317184.04,3700.92,779486.6,624771.07,154712.59,2.94,organic,2017,TotalUS +24,2017-07-16,1.78,1148354.84,94267.55,311432.79,4766.71,733949.04,596197.98,137751.06,0.0,organic,2017,TotalUS +25,2017-07-09,1.71,1130374.7,109023.66,333458.24,3424.69,684468.11,485919.33,198548.78,0.0,organic,2017,TotalUS +26,2017-07-02,1.74,1173393.06,128156.1,360890.48,3393.83,680952.65,459881.11,221071.54,0.0,organic,2017,TotalUS +27,2017-06-25,1.77,1101009.92,123317.1,341073.87,2613.51,634005.44,411977.56,222027.88,0.0,organic,2017,TotalUS +28,2017-06-18,1.71,1304554.29,169434.58,442594.36,2140.13,690385.22,435150.06,255235.16,0.0,organic,2017,TotalUS +29,2017-06-11,1.56,1397448.17,160841.97,339777.07,3623.46,893205.67,468156.32,425049.35,0.0,organic,2017,TotalUS +30,2017-06-04,1.64,1352960.47,165665.93,387057.95,2865.59,797371.0,525280.48,272090.52,0.0,organic,2017,TotalUS +31,2017-05-28,1.69,1302205.55,163384.37,357431.2,3195.15,778194.83,497848.02,280346.81,0.0,organic,2017,TotalUS +32,2017-05-21,1.71,1210560.61,166985.41,351498.5,4322.99,687753.71,436225.68,251528.03,0.0,organic,2017,TotalUS +33,2017-05-14,1.55,1375125.12,164697.92,339920.6,4618.45,865888.15,566862.84,299025.31,0.0,organic,2017,TotalUS +34,2017-05-07,1.57,1394126.23,172722.76,386288.18,4161.33,830953.96,489455.97,341497.99,0.0,organic,2017,TotalUS +35,2017-04-30,1.68,1248175.29,199039.61,421709.78,5187.46,622238.44,400529.93,221708.51,0.0,organic,2017,TotalUS +36,2017-04-23,1.61,1190461.18,152604.41,347557.13,3245.62,687054.02,460390.87,226663.15,0.0,organic,2017,TotalUS +37,2017-04-16,1.49,1493331.28,176684.11,437947.67,5096.43,873603.07,576538.3,297064.77,0.0,organic,2017,TotalUS +38,2017-04-09,1.43,1387436.32,148803.12,362152.44,8972.11,867508.65,512721.31,354787.34,0.0,organic,2017,TotalUS +39,2017-04-02,1.42,1492167.41,183101.86,430841.87,3767.76,874455.92,557296.92,317159.0,0.0,organic,2017,TotalUS +40,2017-03-26,1.29,1581127.36,160491.66,355541.13,3888.05,1061206.52,586139.54,475066.98,0.0,organic,2017,TotalUS +41,2017-03-19,1.5,1284018.65,172196.56,411359.03,3304.62,697158.44,486101.39,211057.05,0.0,organic,2017,TotalUS +42,2017-03-12,1.38,1337596.89,152896.45,330081.75,3188.52,851430.17,491035.95,360394.22,0.0,organic,2017,TotalUS +43,2017-03-05,1.16,1619398.24,184006.16,374220.48,2542.94,1058628.66,497098.27,561530.39,0.0,organic,2017,TotalUS +44,2017-02-26,1.21,1436663.15,150448.17,368526.18,3747.77,913941.03,505040.3,408900.73,0.0,organic,2017,TotalUS +45,2017-02-19,1.31,1634877.11,250591.21,632101.53,3295.09,748889.28,433926.87,314962.41,0.0,organic,2017,TotalUS +46,2017-02-12,1.41,1060775.98,136636.34,297764.4,3486.2,622889.04,410668.26,212220.78,0.0,organic,2017,TotalUS +47,2017-02-05,1.36,1015621.03,136100.39,314011.26,2238.78,563270.6,342705.32,220565.28,0.0,organic,2017,TotalUS +48,2017-01-29,1.43,953206.1,131808.29,292584.44,3524.96,525288.41,346391.91,178896.5,0.0,organic,2017,TotalUS +49,2017-01-22,1.37,994282.98,115700.02,281786.33,6707.82,590088.81,401805.9,188282.91,0.0,organic,2017,TotalUS +50,2017-01-15,1.44,975724.28,121132.79,280287.84,8750.08,565553.57,400292.46,165261.11,0.0,organic,2017,TotalUS +51,2017-01-08,1.43,990721.83,117721.87,283532.68,8697.35,580769.93,379088.19,201681.74,0.0,organic,2017,TotalUS +52,2017-01-01,1.48,808971.88,99820.77,273329.61,4425.75,431395.75,273456.0,157939.75,0.0,organic,2017,TotalUS +0,2017-12-31,1.48,229477.07,26883.07,53165.3,86.61,149342.09,66254.72,82977.6,109.77,organic,2017,West +1,2017-12-24,1.66,232395.98,30630.73,38800.38,84.09,162880.78,90385.44,72367.24,128.1,organic,2017,West +2,2017-12-17,1.49,252754.61,27144.23,47290.74,92.17,178227.47,117225.16,60883.34,118.97,organic,2017,West +3,2017-12-10,1.36,313686.31,19393.44,62916.63,117.57,231258.67,81413.7,149600.21,244.76,organic,2017,West +4,2017-12-03,1.5,247514.3,20229.67,51602.11,94.33,175588.19,70432.66,104996.81,158.72,organic,2017,West +5,2017-11-26,1.76,177222.64,19932.06,35313.11,178.4,121799.07,56364.39,65168.89,265.79,organic,2017,West +6,2017-11-19,1.96,152431.73,19683.27,31559.25,69.86,101119.35,60158.89,40770.88,189.58,organic,2017,West +7,2017-11-12,1.95,150594.48,20429.3,29316.64,61.67,100786.87,64189.33,36581.15,16.39,organic,2017,West +8,2017-11-05,2.13,138955.1,19917.54,26607.93,57.58,92372.05,59737.21,32599.13,35.71,organic,2017,West +9,2017-10-29,2.16,148010.22,20936.88,28269.2,60.13,98744.01,64497.41,34166.43,80.17,organic,2017,West +10,2017-10-22,2.0,168954.65,23092.88,31148.28,120.28,114593.21,79759.6,34775.7,57.91,organic,2017,West +11,2017-10-15,2.08,174251.28,31939.47,25749.52,162.84,116399.45,77304.07,39087.96,7.42,organic,2017,West +12,2017-10-08,2.37,153186.84,25306.59,26921.31,62.43,100896.51,65388.81,35461.95,45.75,organic,2017,West +13,2017-10-01,2.45,122625.26,16845.73,24294.75,25.18,81459.6,44948.19,36434.83,76.58,organic,2017,West +14,2017-09-24,2.4,111321.19,17650.08,22295.44,42.34,71333.33,40018.26,31209.23,105.84,organic,2017,West +15,2017-09-17,2.4,139471.62,22989.15,25396.53,55.47,91030.47,60324.57,30664.81,41.09,organic,2017,West +16,2017-09-10,2.46,149611.1,21079.04,30452.07,74.05,98005.94,61940.51,35933.2,132.23,organic,2017,West +17,2017-09-03,2.52,143490.06,19509.0,32862.27,50.28,91068.51,51643.01,39324.06,101.44,organic,2017,West +18,2017-08-27,2.51,154828.39,23404.34,32438.46,68.4,98917.19,65124.7,33792.49,0.0,organic,2017,West +19,2017-08-20,2.46,139145.2,19612.76,39964.08,89.75,79478.61,50741.24,28728.57,8.8,organic,2017,West +20,2017-08-13,2.24,157709.51,26941.72,37508.97,108.24,93150.58,56351.71,36794.47,4.4,organic,2017,West +21,2017-08-06,2.1,178606.86,42641.59,42953.57,315.01,92696.69,56820.93,35875.76,0.0,organic,2017,West +22,2017-07-30,2.1,180688.88,35365.17,51355.3,701.35,93267.06,60487.85,32779.21,0.0,organic,2017,West +23,2017-07-23,2.16,162321.68,29482.82,57477.12,1244.18,74117.56,36399.26,37715.36,2.94,organic,2017,West +24,2017-07-16,2.22,151281.1,20505.23,50838.62,1247.45,78689.8,32458.05,46231.75,0.0,organic,2017,West +25,2017-07-09,1.85,203127.73,36979.31,62194.83,199.61,103753.98,36610.96,67143.02,0.0,organic,2017,West +26,2017-07-02,1.88,212196.16,45612.22,67692.06,162.23,98729.65,34000.74,64728.91,0.0,organic,2017,West +27,2017-06-25,1.93,188845.44,30258.04,67981.62,110.31,90495.47,30115.47,60380.0,0.0,organic,2017,West +28,2017-06-18,1.68,215628.86,37443.94,48934.78,159.38,129090.76,31850.15,97240.61,0.0,organic,2017,West +29,2017-06-11,1.59,260068.85,52927.66,47810.13,209.8,159121.26,29519.07,129602.19,0.0,organic,2017,West +30,2017-06-04,1.52,263143.18,46575.21,50359.11,146.97,166061.89,31550.55,134511.34,0.0,organic,2017,West +31,2017-05-28,1.48,276578.14,64107.88,52767.88,461.27,159241.11,22367.6,136873.51,0.0,organic,2017,West +32,2017-05-21,1.52,252331.06,72450.49,48371.97,249.55,131259.05,19903.15,111355.9,0.0,organic,2017,West +33,2017-05-14,1.1,446864.94,64155.43,54107.85,268.13,328333.53,160414.47,167919.06,0.0,organic,2017,West +34,2017-05-07,1.19,442825.93,85438.01,70952.57,396.53,286038.82,84763.47,201275.35,0.0,organic,2017,West +35,2017-04-30,1.4,259279.19,61897.14,51045.63,294.91,146041.51,37095.98,108945.53,0.0,organic,2017,West +36,2017-04-23,1.26,296559.24,43410.75,50687.37,368.72,202092.4,92126.06,109966.34,0.0,organic,2017,West +37,2017-04-16,1.23,329223.21,47412.22,51720.12,200.73,229890.14,116527.51,113362.63,0.0,organic,2017,West +38,2017-04-09,1.18,348836.42,36813.79,54408.17,176.1,257438.36,145063.53,112374.83,0.0,organic,2017,West +39,2017-04-02,0.98,402676.23,34093.33,58330.53,207.85,310044.52,155701.41,154343.11,0.0,organic,2017,West +40,2017-03-26,0.9,456645.91,36169.35,51398.72,139.55,368938.29,152159.53,216778.76,0.0,organic,2017,West +41,2017-03-19,1.24,274558.89,38225.62,50707.86,64.73,185560.68,106162.68,79398.0,0.0,organic,2017,West +42,2017-03-12,1.16,308051.18,45583.97,54904.68,102.54,207459.99,112615.83,94844.16,0.0,organic,2017,West +43,2017-03-05,0.99,367519.17,61166.48,55123.99,126.8,251101.9,112844.19,138257.71,0.0,organic,2017,West +44,2017-02-26,1.14,308828.87,43171.62,63444.18,108.13,202104.94,99636.02,102468.92,0.0,organic,2017,West +45,2017-02-19,1.49,214694.22,40585.46,48454.22,90.63,125563.91,62154.02,63409.89,0.0,organic,2017,West +46,2017-02-12,1.52,214333.3,43227.87,61842.48,104.08,109158.87,63558.21,45600.66,0.0,organic,2017,West +47,2017-02-05,1.15,227693.33,35703.61,46107.73,71.74,145810.25,41936.54,103873.71,0.0,organic,2017,West +48,2017-01-29,1.29,205843.17,38850.43,44464.74,109.61,122418.39,37767.77,84650.62,0.0,organic,2017,West +49,2017-01-22,1.2,208810.31,32006.16,45982.34,70.4,130751.41,45987.98,84763.43,0.0,organic,2017,West +50,2017-01-15,1.06,268743.11,43816.58,41834.41,471.92,182620.2,62810.0,119810.2,0.0,organic,2017,West +51,2017-01-08,1.09,267702.99,29794.9,45439.29,125.69,192343.11,41364.31,150978.8,0.0,organic,2017,West +52,2017-01-01,1.19,189700.7,20783.06,35758.45,36.46,133122.73,33998.5,99124.23,0.0,organic,2017,West +0,2017-12-31,1.62,16552.71,1909.33,3538.48,60.91,11043.99,10821.63,222.36,0.0,organic,2017,WestTexNewMexico +1,2017-12-24,1.85,16740.76,1904.47,2246.26,0.0,12590.03,12235.55,354.48,0.0,organic,2017,WestTexNewMexico +2,2017-12-17,1.78,15409.21,1314.05,2079.36,0.0,12015.8,11964.2,51.6,0.0,organic,2017,WestTexNewMexico +3,2017-12-10,1.65,14628.7,1220.08,2293.05,0.0,11115.57,10928.4,187.17,0.0,organic,2017,WestTexNewMexico +4,2017-12-03,1.55,13729.33,1768.49,2732.92,0.0,9227.92,9002.58,225.34,0.0,organic,2017,WestTexNewMexico +5,2017-11-26,1.91,11191.35,2030.64,2072.44,0.0,7088.27,7049.99,38.28,0.0,organic,2017,WestTexNewMexico +6,2017-11-19,1.88,14228.82,1771.38,2580.56,0.0,9876.88,9649.27,227.61,0.0,organic,2017,WestTexNewMexico +7,2017-11-12,1.8,15670.44,1743.38,2795.92,0.0,11131.14,10827.23,303.91,0.0,organic,2017,WestTexNewMexico +8,2017-11-05,1.74,12169.3,2012.76,1503.09,0.0,8653.45,8566.79,86.66,0.0,organic,2017,WestTexNewMexico +9,2017-10-29,1.89,11952.28,1424.2,1259.66,0.0,9268.42,9071.16,168.43,28.83,organic,2017,WestTexNewMexico +10,2017-10-22,1.81,15424.38,2207.98,3361.12,14.39,9840.89,9703.2,137.69,0.0,organic,2017,WestTexNewMexico +11,2017-10-15,2.07,9575.81,1785.17,935.45,0.0,6855.19,6717.22,137.97,0.0,organic,2017,WestTexNewMexico +12,2017-10-08,2.39,10964.67,1952.2,2235.24,0.0,6777.23,6542.72,234.51,0.0,organic,2017,WestTexNewMexico +13,2017-10-01,2.37,8873.32,1474.43,1689.97,0.0,5708.92,5639.42,69.5,0.0,organic,2017,WestTexNewMexico +14,2017-09-24,2.26,9528.64,1545.34,2234.23,0.0,5749.07,5722.4,26.67,0.0,organic,2017,WestTexNewMexico +15,2017-09-17,2.36,10464.29,1845.14,2819.17,0.0,5799.98,5796.65,3.33,0.0,organic,2017,WestTexNewMexico +16,2017-09-10,2.38,11857.31,1562.1,4565.41,0.0,5729.8,5719.96,9.84,0.0,organic,2017,WestTexNewMexico +17,2017-09-03,2.39,7657.47,927.27,4056.73,0.0,2673.47,2629.18,44.29,0.0,organic,2017,WestTexNewMexico +18,2017-08-27,2.5,16137.93,2616.96,3672.96,0.0,9848.01,9816.58,31.43,0.0,organic,2017,WestTexNewMexico +19,2017-08-20,2.43,10788.29,1665.31,3993.41,0.0,5129.57,5010.27,119.3,0.0,organic,2017,WestTexNewMexico +20,2017-08-13,2.01,8435.52,1182.39,3688.93,11.24,3552.96,3403.12,149.84,0.0,organic,2017,WestTexNewMexico +21,2017-08-06,1.78,15242.53,2134.24,4592.66,331.6,8184.03,8171.22,12.81,0.0,organic,2017,WestTexNewMexico +22,2017-07-30,1.67,17633.69,2618.13,3169.61,1056.54,10789.41,10733.97,55.44,0.0,organic,2017,WestTexNewMexico +23,2017-07-23,1.6,19144.32,1832.11,4752.03,1914.09,10646.09,10577.95,68.14,0.0,organic,2017,WestTexNewMexico +24,2017-07-16,1.6,19126.81,1763.86,4382.01,2211.74,10769.2,10652.21,116.99,0.0,organic,2017,WestTexNewMexico +25,2017-07-09,1.65,18244.09,2295.76,3701.18,38.67,12208.48,11637.39,571.09,0.0,organic,2017,WestTexNewMexico +26,2017-07-02,1.59,20486.25,2454.99,3470.63,0.0,14560.63,10390.44,4170.19,0.0,organic,2017,WestTexNewMexico +27,2017-06-11,1.66,21170.11,3042.11,3588.46,0.0,14539.54,7757.19,6782.35,0.0,organic,2017,WestTexNewMexico +28,2017-06-04,1.59,25886.3,3305.88,3706.22,0.0,18874.2,8654.49,10219.71,0.0,organic,2017,WestTexNewMexico +29,2017-05-28,1.65,18798.8,2703.95,4148.35,11.11,11935.39,5244.73,6690.66,0.0,organic,2017,WestTexNewMexico +30,2017-05-21,1.73,16899.03,3988.8,5269.43,16.64,7624.16,4373.14,3251.02,0.0,organic,2017,WestTexNewMexico +31,2017-05-14,1.77,18131.79,5410.04,5406.61,0.0,7315.14,4198.56,3116.58,0.0,organic,2017,WestTexNewMexico +32,2017-05-07,1.74,16697.08,3986.53,4485.2,22.54,8202.81,5333.82,2868.99,0.0,organic,2017,WestTexNewMexico +33,2017-04-30,1.76,15686.98,1763.36,5824.8,2.82,8096.0,4515.13,3580.87,0.0,organic,2017,WestTexNewMexico +34,2017-04-23,1.63,19234.05,1758.8,7535.06,16.99,9923.2,5530.18,4393.02,0.0,organic,2017,WestTexNewMexico +35,2017-04-16,1.23,29765.63,2233.24,4805.48,17.29,22709.62,21441.99,1267.63,0.0,organic,2017,WestTexNewMexico +36,2017-04-09,1.19,30499.28,2386.19,3749.72,34.72,24328.65,24193.63,135.02,0.0,organic,2017,WestTexNewMexico +37,2017-04-02,1.04,28803.5,2551.72,2586.16,11.61,23654.01,23267.01,387.0,0.0,organic,2017,WestTexNewMexico +38,2017-03-26,1.11,32073.43,3041.33,3451.21,66.76,25514.13,25191.62,322.51,0.0,organic,2017,WestTexNewMexico +39,2017-03-19,1.11,26767.63,4255.75,3855.69,11.67,18644.52,13278.06,5366.46,0.0,organic,2017,WestTexNewMexico +40,2017-03-12,1.15,26522.49,3289.27,3877.22,26.38,19329.62,17880.59,1449.03,0.0,organic,2017,WestTexNewMexico +41,2017-03-05,1.23,24969.3,2292.42,4876.69,52.82,17747.37,17114.89,632.48,0.0,organic,2017,WestTexNewMexico +42,2017-02-26,1.16,39054.83,3021.26,15568.68,11.77,20453.12,20299.52,153.6,0.0,organic,2017,WestTexNewMexico +43,2017-02-19,1.24,25777.67,2208.27,5671.84,35.6,17861.96,17821.27,40.69,0.0,organic,2017,WestTexNewMexico +44,2017-02-12,1.4,28191.45,2248.71,9177.71,37.92,16727.11,16570.14,156.97,0.0,organic,2017,WestTexNewMexico +45,2017-02-05,1.31,21376.32,2161.38,5646.59,11.84,13556.51,13372.37,184.14,0.0,organic,2017,WestTexNewMexico +46,2017-01-29,1.3,17839.37,1486.34,4498.48,26.12,11828.43,11821.76,6.67,0.0,organic,2017,WestTexNewMexico +47,2017-01-22,1.21,16430.64,1413.93,2820.53,20.25,12175.93,12073.07,102.86,0.0,organic,2017,WestTexNewMexico +48,2017-01-15,1.19,17014.23,1203.87,2904.22,23.07,12883.07,12476.57,406.5,0.0,organic,2017,WestTexNewMexico +49,2017-01-08,1.18,14375.39,1327.98,2617.2,5.75,10424.46,10283.85,140.61,0.0,organic,2017,WestTexNewMexico +50,2017-01-01,1.28,15307.87,867.66,3434.02,37.3,10968.89,10815.88,153.01,0.0,organic,2017,WestTexNewMexico +0,2018-03-25,1.71,2321.82,42.95,272.41,0.0,2006.46,1996.46,10.0,0.0,organic,2018,Albany +1,2018-03-18,1.66,3154.45,275.89,297.96,0.0,2580.6,2577.27,3.33,0.0,organic,2018,Albany +2,2018-03-11,1.68,2570.52,131.67,229.56,0.0,2209.29,2209.29,0.0,0.0,organic,2018,Albany +3,2018-03-04,1.48,3851.3,311.55,296.77,0.0,3242.98,3239.65,3.33,0.0,organic,2018,Albany +4,2018-02-25,1.56,5356.63,816.56,532.59,0.0,4007.48,4007.48,0.0,0.0,organic,2018,Albany +5,2018-02-18,1.43,7566.17,4314.3,251.85,0.0,3000.02,3000.02,0.0,0.0,organic,2018,Albany +6,2018-02-11,1.43,3817.93,59.18,289.85,0.0,3468.9,3468.9,0.0,0.0,organic,2018,Albany +7,2018-02-04,1.52,4124.96,118.38,420.36,0.0,3586.22,3586.22,0.0,0.0,organic,2018,Albany +8,2018-01-28,1.32,6987.56,433.66,374.96,0.0,6178.94,6178.94,0.0,0.0,organic,2018,Albany +9,2018-01-21,1.54,3346.54,14.67,253.01,0.0,3078.86,3078.86,0.0,0.0,organic,2018,Albany +10,2018-01-14,1.47,4140.95,7.3,301.87,0.0,3831.78,3831.78,0.0,0.0,organic,2018,Albany +11,2018-01-07,1.54,4816.9,43.51,412.17,0.0,4361.22,4357.89,3.33,0.0,organic,2018,Albany +0,2018-03-25,1.56,18717.08,469.23,3942.82,0.0,14305.03,9398.45,4906.58,0.0,organic,2018,Atlanta +1,2018-03-18,1.48,19014.68,626.28,5411.88,0.0,12976.52,9134.72,3841.8,0.0,organic,2018,Atlanta +2,2018-03-11,1.43,23042.99,590.29,5224.55,0.0,17228.15,16438.54,789.61,0.0,organic,2018,Atlanta +3,2018-03-04,1.66,17082.0,597.4,5315.48,0.0,11169.12,9691.97,1477.15,0.0,organic,2018,Atlanta +4,2018-02-25,1.55,15348.44,530.19,5122.82,0.0,9695.43,9065.3,630.13,0.0,organic,2018,Atlanta +5,2018-02-18,1.56,11165.57,429.96,4037.32,0.0,6698.29,5920.95,777.34,0.0,organic,2018,Atlanta +6,2018-02-11,1.55,14843.93,384.86,3957.78,0.0,10501.29,7478.35,3022.94,0.0,organic,2018,Atlanta +7,2018-02-04,1.62,11900.41,384.29,4042.55,0.0,7473.57,5731.98,1741.59,0.0,organic,2018,Atlanta +8,2018-01-28,1.67,14446.26,390.17,5130.48,0.0,8925.61,5602.18,3323.43,0.0,organic,2018,Atlanta +9,2018-01-21,1.64,18554.97,349.05,3967.66,0.0,14238.26,6204.43,8033.83,0.0,organic,2018,Atlanta +10,2018-01-14,1.56,16151.7,291.55,3583.4,0.0,12276.75,7227.8,5048.95,0.0,organic,2018,Atlanta +11,2018-01-07,1.53,15714.11,405.37,4195.19,0.0,11113.55,7883.61,3229.94,0.0,organic,2018,Atlanta +0,2018-03-25,1.33,57606.42,2002.4,5548.18,82.68,49973.16,49957.61,15.55,0.0,organic,2018,BaltimoreWashington +1,2018-03-18,1.41,45505.0,2132.2,6130.5,76.41,37165.89,37157.4,8.49,0.0,organic,2018,BaltimoreWashington +2,2018-03-11,1.44,48044.77,1885.84,6874.81,96.69,39187.43,39177.43,10.0,0.0,organic,2018,BaltimoreWashington +3,2018-03-04,1.43,43300.77,2360.2,6371.68,93.52,34475.37,34475.37,0.0,0.0,organic,2018,BaltimoreWashington +4,2018-02-25,1.47,47421.15,1626.3,7913.27,49.45,37832.13,37822.13,10.0,0.0,organic,2018,BaltimoreWashington +5,2018-02-18,1.52,51564.7,2125.96,12402.09,79.77,36956.88,36927.99,28.89,0.0,organic,2018,BaltimoreWashington +6,2018-02-11,1.53,46355.69,1457.17,9060.57,68.22,35769.73,35769.73,0.0,0.0,organic,2018,BaltimoreWashington +7,2018-02-04,1.59,41615.66,1201.51,7408.22,85.69,32920.24,32904.68,15.56,0.0,organic,2018,BaltimoreWashington +8,2018-01-28,1.55,44059.08,1236.06,8807.18,147.27,33868.57,33859.68,8.89,0.0,organic,2018,BaltimoreWashington +9,2018-01-21,1.66,38098.21,1450.87,9262.48,65.08,27319.78,27315.34,4.44,0.0,organic,2018,BaltimoreWashington +10,2018-01-14,1.39,66149.27,1264.25,10025.87,105.72,54753.43,54746.77,6.66,0.0,organic,2018,BaltimoreWashington +11,2018-01-07,1.15,82282.71,1315.95,9962.1,134.19,70870.47,70863.8,6.67,0.0,organic,2018,BaltimoreWashington +0,2018-03-25,1.81,3119.2,76.12,1006.43,0.0,2036.65,618.64,1418.01,0.0,organic,2018,Boise +1,2018-03-18,1.85,2550.59,89.14,898.36,0.0,1563.09,287.9,1258.17,17.02,organic,2018,Boise +2,2018-03-11,1.8,3447.36,98.9,926.28,0.0,2422.18,664.03,1758.15,0.0,organic,2018,Boise +3,2018-03-04,1.79,2980.6,109.72,904.11,0.0,1966.77,526.56,1440.21,0.0,organic,2018,Boise +4,2018-02-25,1.82,2430.16,69.78,745.69,0.0,1614.69,472.96,1141.73,0.0,organic,2018,Boise +5,2018-02-18,1.82,2275.91,72.52,810.01,0.0,1393.38,725.39,667.99,0.0,organic,2018,Boise +6,2018-02-11,1.8,2855.33,46.25,791.61,0.0,2017.47,666.38,1351.09,0.0,organic,2018,Boise +7,2018-02-04,1.8,2594.9,76.84,590.46,0.0,1927.6,492.63,1376.55,58.42,organic,2018,Boise +8,2018-01-28,1.78,2419.64,52.42,580.64,0.0,1786.58,294.66,1490.43,1.49,organic,2018,Boise +9,2018-01-21,1.81,2446.13,41.05,577.32,0.0,1827.76,284.43,1541.86,1.47,organic,2018,Boise +10,2018-01-14,1.81,2130.13,51.93,802.89,0.0,1275.31,350.29,925.02,0.0,organic,2018,Boise +11,2018-01-07,1.77,2553.9,42.6,949.08,0.0,1562.22,552.06,1010.16,0.0,organic,2018,Boise +0,2018-03-25,1.74,38441.23,27.25,2031.54,0.0,36382.44,29466.95,6915.49,0.0,organic,2018,Boston +1,2018-03-18,1.83,34809.9,20.31,2456.48,0.0,32333.11,25094.65,7238.46,0.0,organic,2018,Boston +2,2018-03-11,1.85,30476.66,8.51,2114.28,0.0,28353.87,22732.95,5620.92,0.0,organic,2018,Boston +3,2018-03-04,1.92,23890.64,7.84,2254.05,0.0,21628.75,18636.4,2992.35,0.0,organic,2018,Boston +4,2018-02-25,1.79,31567.3,34.89,2390.82,0.0,29141.59,25069.34,4072.25,0.0,organic,2018,Boston +5,2018-02-18,1.83,27960.77,11.63,1603.22,0.0,26345.92,22938.29,3407.63,0.0,organic,2018,Boston +6,2018-02-11,1.85,24728.12,3.67,1795.79,3.67,22924.99,19367.62,3557.37,0.0,organic,2018,Boston +7,2018-02-04,1.83,28934.01,9.14,2504.27,3.66,26416.94,20660.94,5756.0,0.0,organic,2018,Boston +8,2018-01-28,1.72,30846.35,14.65,1628.45,0.0,29203.25,27876.23,1327.02,0.0,organic,2018,Boston +9,2018-01-21,1.82,26704.98,60.87,2647.48,0.0,23996.63,21985.03,2011.6,0.0,organic,2018,Boston +10,2018-01-14,1.73,29468.36,12.77,2380.23,0.0,27075.36,23926.76,3148.6,0.0,organic,2018,Boston +11,2018-01-07,1.91,30096.0,14.46,2704.48,0.0,27377.06,25121.53,2255.53,0.0,organic,2018,Boston +0,2018-03-25,1.03,38203.98,241.71,425.31,0.0,37536.96,25743.24,11793.72,0.0,organic,2018,BuffaloRochester +1,2018-03-18,1.17,16113.35,558.54,106.27,0.0,15448.54,4270.87,11177.67,0.0,organic,2018,BuffaloRochester +2,2018-03-11,1.24,12744.6,763.9,91.2,0.0,11889.5,1124.44,10765.06,0.0,organic,2018,BuffaloRochester +3,2018-03-04,1.38,8580.63,1197.38,159.65,0.0,7223.6,894.23,6329.37,0.0,organic,2018,BuffaloRochester +4,2018-02-25,1.27,11398.35,761.52,168.93,0.0,10467.9,2567.55,7900.35,0.0,organic,2018,BuffaloRochester +5,2018-02-18,1.23,12131.04,542.58,103.62,0.0,11484.84,5283.46,6201.38,0.0,organic,2018,BuffaloRochester +6,2018-02-11,1.21,9744.88,169.08,138.02,0.0,9437.78,2907.29,6530.49,0.0,organic,2018,BuffaloRochester +7,2018-02-04,1.18,14307.71,204.51,181.6,0.0,13921.6,4203.8,9717.8,0.0,organic,2018,BuffaloRochester +8,2018-01-28,1.17,13405.95,232.33,150.46,0.0,13023.16,11059.23,1963.93,0.0,organic,2018,BuffaloRochester +9,2018-01-21,1.23,7288.58,309.8,119.81,0.0,6858.97,3581.4,3277.57,0.0,organic,2018,BuffaloRochester +10,2018-01-14,1.19,10864.95,318.7,133.26,0.0,10412.99,3248.18,7164.81,0.0,organic,2018,BuffaloRochester +11,2018-01-07,1.17,9115.92,283.13,90.07,0.0,8742.72,4250.19,4492.53,0.0,organic,2018,BuffaloRochester +0,2018-03-25,1.7,190257.38,29644.09,70982.1,0.0,89631.19,89424.11,207.08,0.0,organic,2018,California +1,2018-03-18,1.75,202790.74,29398.11,70514.05,8.08,102870.5,102717.5,153.0,0.0,organic,2018,California +2,2018-03-11,1.58,236822.98,32765.76,83573.0,0.0,120484.22,120465.39,18.83,0.0,organic,2018,California +3,2018-03-04,1.57,239135.67,34245.39,67952.25,0.0,136938.03,136877.43,60.6,0.0,organic,2018,California +4,2018-02-25,1.82,179041.72,28991.22,83730.03,0.0,66320.47,66273.89,46.58,0.0,organic,2018,California +5,2018-02-18,1.97,167193.75,27895.41,73827.57,0.0,65470.77,65435.09,35.68,0.0,organic,2018,California +6,2018-02-11,1.85,168311.26,30354.0,56580.92,0.0,81376.34,81344.22,32.12,0.0,organic,2018,California +7,2018-02-04,1.56,188212.98,38078.53,60551.97,0.0,89582.48,89527.66,54.82,0.0,organic,2018,California +8,2018-01-28,1.87,170998.81,30070.62,58357.89,0.0,82570.3,82563.11,7.19,0.0,organic,2018,California +9,2018-01-21,1.69,181974.98,34411.37,64513.67,0.0,83049.94,83022.84,27.1,0.0,organic,2018,California +10,2018-01-14,1.61,216681.04,52253.4,95353.95,0.0,69073.69,69054.51,19.18,0.0,organic,2018,California +11,2018-01-07,1.95,156341.57,42992.91,56007.79,0.0,57340.87,57271.15,69.72,0.0,organic,2018,California +0,2018-03-25,1.77,12030.96,17.85,5964.29,161.23,5887.59,5792.37,95.22,0.0,organic,2018,Charlotte +1,2018-03-18,1.75,11986.57,30.26,5808.91,205.67,5941.73,5801.28,140.45,0.0,organic,2018,Charlotte +2,2018-03-11,1.73,13697.68,29.01,6861.78,222.69,6584.2,6511.53,72.67,0.0,organic,2018,Charlotte +3,2018-03-04,1.88,11882.61,31.41,6586.88,268.25,4996.07,4621.84,374.23,0.0,organic,2018,Charlotte +4,2018-02-25,1.91,11946.22,36.46,5987.21,190.71,5731.84,5667.58,64.26,0.0,organic,2018,Charlotte +5,2018-02-18,1.83,12417.57,22.67,5878.08,232.08,6284.74,5981.3,303.44,0.0,organic,2018,Charlotte +6,2018-02-11,1.92,11216.56,7.2,5645.05,238.86,5325.45,5176.75,148.7,0.0,organic,2018,Charlotte +7,2018-02-04,1.89,13273.93,26.28,5187.8,201.87,7857.98,7613.73,244.25,0.0,organic,2018,Charlotte +8,2018-01-28,1.76,12432.58,21.47,6626.86,271.36,5512.89,5080.46,432.43,0.0,organic,2018,Charlotte +9,2018-01-21,1.62,12422.7,8.94,5461.01,246.99,6705.76,6703.12,2.64,0.0,organic,2018,Charlotte +10,2018-01-14,1.45,19522.15,17.87,7132.92,241.85,12129.51,12116.18,13.33,0.0,organic,2018,Charlotte +11,2018-01-07,1.08,28741.11,22.16,6254.59,225.17,22239.19,22132.06,107.13,0.0,organic,2018,Charlotte +0,2018-03-25,1.69,35088.36,324.87,27550.29,0.0,7213.2,7176.54,36.66,0.0,organic,2018,Chicago +1,2018-03-18,1.66,35542.17,184.53,26955.74,0.0,8401.9,8398.57,3.33,0.0,organic,2018,Chicago +2,2018-03-11,1.66,41969.83,583.18,32382.95,0.0,9003.7,8990.36,13.34,0.0,organic,2018,Chicago +3,2018-03-04,1.62,46026.58,1107.05,35255.03,0.0,9664.5,9654.5,10.0,0.0,organic,2018,Chicago +4,2018-02-25,1.68,36432.65,246.73,29263.75,0.0,6922.17,6908.84,13.33,0.0,organic,2018,Chicago +5,2018-02-18,1.66,33678.58,259.18,24314.04,0.0,9105.36,9095.36,10.0,0.0,organic,2018,Chicago +6,2018-02-11,1.65,38202.17,409.68,26524.51,0.0,11267.98,11261.31,6.67,0.0,organic,2018,Chicago +7,2018-02-04,1.62,46956.84,313.29,32668.25,0.0,13975.3,13975.3,0.0,0.0,organic,2018,Chicago +8,2018-01-28,1.72,40770.94,215.4,31318.93,0.0,9236.61,9236.61,0.0,0.0,organic,2018,Chicago +9,2018-01-21,1.82,36688.67,83.93,28134.16,0.0,8470.58,8470.58,0.0,0.0,organic,2018,Chicago +10,2018-01-14,1.79,44955.89,133.39,31177.44,0.0,13645.06,13635.06,10.0,0.0,organic,2018,Chicago +11,2018-01-07,1.83,41573.25,118.84,29600.36,0.0,11854.05,11850.72,3.33,0.0,organic,2018,Chicago +0,2018-03-25,1.66,15502.38,728.9,4308.74,0.0,10464.74,7398.87,3065.87,0.0,organic,2018,CincinnatiDayton +1,2018-03-18,1.31,28721.72,932.06,10505.06,0.0,17284.6,8746.0,8538.6,0.0,organic,2018,CincinnatiDayton +2,2018-03-11,1.27,34517.3,1080.28,12488.67,0.0,20948.35,15617.99,5330.36,0.0,organic,2018,CincinnatiDayton +3,2018-03-04,1.68,11250.57,810.62,4420.73,0.0,6019.22,4449.27,1569.95,0.0,organic,2018,CincinnatiDayton +4,2018-02-25,1.78,15097.8,736.69,4538.31,0.0,9822.8,2275.92,7546.88,0.0,organic,2018,CincinnatiDayton +5,2018-02-18,1.64,9811.36,680.18,4321.38,0.0,4809.8,4698.48,111.32,0.0,organic,2018,CincinnatiDayton +6,2018-02-11,1.59,10754.39,535.84,3567.35,0.0,6651.2,5192.81,1458.39,0.0,organic,2018,CincinnatiDayton +7,2018-02-04,1.69,11196.3,628.58,4438.31,0.0,6129.41,4339.23,1790.18,0.0,organic,2018,CincinnatiDayton +8,2018-01-28,1.51,15027.47,702.32,4805.49,0.0,9519.66,3133.44,6386.22,0.0,organic,2018,CincinnatiDayton +9,2018-01-21,1.6,18364.37,678.73,5179.83,0.0,12505.81,2688.54,9817.27,0.0,organic,2018,CincinnatiDayton +10,2018-01-14,1.71,19434.36,610.29,5917.68,0.0,12906.39,4369.52,8536.87,0.0,organic,2018,CincinnatiDayton +11,2018-01-07,1.71,13141.82,710.55,5212.44,0.0,7218.83,3380.57,3838.26,0.0,organic,2018,CincinnatiDayton +0,2018-03-25,1.31,11125.08,533.97,1113.33,0.0,9477.78,7760.23,1717.55,0.0,organic,2018,Columbus +1,2018-03-18,1.2,32634.06,723.66,8582.89,0.0,23327.51,11776.03,11551.48,0.0,organic,2018,Columbus +2,2018-03-11,1.26,26620.79,820.89,10737.83,0.0,15062.07,12641.49,2420.58,0.0,organic,2018,Columbus +3,2018-03-04,1.48,7617.52,531.55,1246.43,0.0,5839.54,5689.68,149.86,0.0,organic,2018,Columbus +4,2018-02-25,1.57,7371.84,470.96,1510.35,0.0,5390.53,4640.71,749.82,0.0,organic,2018,Columbus +5,2018-02-18,1.44,7807.21,434.86,1521.43,0.0,5850.92,5850.92,0.0,0.0,organic,2018,Columbus +6,2018-02-11,1.42,8970.66,445.67,1117.03,0.0,7407.96,7086.27,321.69,0.0,organic,2018,Columbus +7,2018-02-04,1.47,7422.15,587.11,1186.62,0.0,5648.42,5453.09,195.33,0.0,organic,2018,Columbus +8,2018-01-28,1.43,7669.31,564.77,1557.33,0.0,5547.21,4090.06,1457.15,0.0,organic,2018,Columbus +9,2018-01-21,1.5,8977.97,613.65,1852.11,0.0,6512.21,4083.63,2428.58,0.0,organic,2018,Columbus +10,2018-01-14,1.3,10424.33,977.0,1620.14,0.0,7827.19,7350.79,476.4,0.0,organic,2018,Columbus +11,2018-01-07,1.15,12589.45,1639.81,1133.28,0.0,9816.36,9106.36,710.0,0.0,organic,2018,Columbus +0,2018-03-25,1.46,31489.27,5372.35,1047.92,0.0,25069.0,23054.17,2014.83,0.0,organic,2018,DallasFtWorth +1,2018-03-18,1.32,31122.09,5570.59,1317.02,0.0,24234.48,22630.41,1604.07,0.0,organic,2018,DallasFtWorth +2,2018-03-11,1.3,34357.21,6067.15,810.89,0.0,27479.17,25669.77,1809.4,0.0,organic,2018,DallasFtWorth +3,2018-03-04,1.38,28406.76,5610.19,618.5,0.0,22178.07,20545.89,1632.18,0.0,organic,2018,DallasFtWorth +4,2018-02-25,1.34,23520.36,3998.07,635.53,0.0,18886.76,17839.97,1046.79,0.0,organic,2018,DallasFtWorth +5,2018-02-18,1.36,25380.68,4546.52,787.2,0.0,20046.96,19653.07,393.89,0.0,organic,2018,DallasFtWorth +6,2018-02-11,1.34,28078.4,4681.33,437.65,0.0,22959.42,22690.02,269.4,0.0,organic,2018,DallasFtWorth +7,2018-02-04,1.37,28070.22,4977.37,561.14,0.0,22531.71,22281.2,250.51,0.0,organic,2018,DallasFtWorth +8,2018-01-28,1.45,26069.14,4936.84,476.06,0.0,20656.24,19613.2,1043.04,0.0,organic,2018,DallasFtWorth +9,2018-01-21,1.5,24032.87,4244.71,360.17,0.0,19427.99,17607.8,1820.19,0.0,organic,2018,DallasFtWorth +10,2018-01-14,1.54,25628.61,5179.65,577.3,0.0,19871.66,16878.39,2993.27,0.0,organic,2018,DallasFtWorth +11,2018-01-07,1.45,21286.58,4020.53,454.86,0.0,16811.19,14157.14,2654.05,0.0,organic,2018,DallasFtWorth +0,2018-03-25,1.6,24825.5,6516.4,685.92,44.09,17579.09,16514.58,1064.51,0.0,organic,2018,Denver +1,2018-03-18,1.67,21352.34,10539.17,797.06,33.21,9982.9,9087.45,895.45,0.0,organic,2018,Denver +2,2018-03-11,1.59,31590.9,7032.9,640.35,52.08,23865.57,23032.03,833.54,0.0,organic,2018,Denver +3,2018-03-04,1.55,24300.28,5776.81,588.5,10.66,17924.31,17177.3,747.01,0.0,organic,2018,Denver +4,2018-02-25,1.39,36823.42,8387.3,751.32,24.81,27659.99,26783.45,876.54,0.0,organic,2018,Denver +5,2018-02-18,1.35,36683.22,8065.46,597.63,49.7,27970.43,27804.78,165.65,0.0,organic,2018,Denver +6,2018-02-11,1.55,22388.13,5261.02,639.37,35.39,16452.35,16367.04,85.31,0.0,organic,2018,Denver +7,2018-02-04,1.51,16458.72,3746.88,496.84,23.49,12191.51,12101.76,89.75,0.0,organic,2018,Denver +8,2018-01-28,1.51,27513.73,6132.33,550.8,36.18,20794.42,20366.98,427.44,0.0,organic,2018,Denver +9,2018-01-21,1.55,30143.3,7841.79,687.2,32.61,21581.7,20613.26,968.44,0.0,organic,2018,Denver +10,2018-01-14,1.53,36501.82,8395.91,839.11,53.61,27213.19,25789.59,1423.6,0.0,organic,2018,Denver +11,2018-01-07,1.38,39706.28,8896.86,939.38,22.09,29847.95,28597.18,1250.77,0.0,organic,2018,Denver +0,2018-03-25,1.43,20507.49,687.46,2729.79,0.0,16887.0,13920.18,2966.82,0.0,organic,2018,Detroit +1,2018-03-18,1.2,63356.5,1452.72,18641.57,0.0,43210.85,22871.48,20339.37,0.0,organic,2018,Detroit +2,2018-03-11,1.23,52514.65,1549.8,20242.92,0.0,30687.37,27074.68,3612.69,0.0,organic,2018,Detroit +3,2018-03-04,1.16,24533.53,676.16,2624.4,0.0,21232.97,20853.85,379.12,0.0,organic,2018,Detroit +4,2018-02-25,1.45,15973.44,601.22,2864.17,0.0,12410.38,10325.46,2084.92,0.0,organic,2018,Detroit +5,2018-02-18,1.34,14647.97,577.71,2469.69,1.41,11579.79,11571.98,7.81,0.0,organic,2018,Detroit +6,2018-02-11,1.36,16655.03,606.28,2464.24,0.0,13547.38,12740.25,807.13,0.0,organic,2018,Detroit +7,2018-02-04,1.32,17541.66,580.19,2434.85,0.0,14480.83,13820.72,660.11,0.0,organic,2018,Detroit +8,2018-01-28,1.29,20073.36,738.01,3026.96,0.0,16298.93,12972.63,3326.3,0.0,organic,2018,Detroit +9,2018-01-21,1.41,22121.43,826.25,3379.62,0.0,17890.6,11215.49,6675.11,0.0,organic,2018,Detroit +10,2018-01-14,1.32,20636.96,750.22,3266.56,0.0,16598.98,15422.79,1176.19,0.0,organic,2018,Detroit +11,2018-01-07,1.22,23120.43,1649.74,3006.89,0.0,18452.29,16829.87,1622.42,0.0,organic,2018,Detroit +0,2018-03-25,1.34,8539.23,73.78,1301.09,0.0,7164.36,7162.69,1.67,0.0,organic,2018,GrandRapids +1,2018-03-18,1.33,9211.25,4.48,1362.75,0.0,7844.02,7815.81,28.21,0.0,organic,2018,GrandRapids +2,2018-03-11,1.32,8381.09,35.72,1201.8,0.0,7143.57,7143.57,0.0,0.0,organic,2018,GrandRapids +3,2018-03-04,1.01,17987.77,78.5,7765.2,0.0,10144.07,10144.07,0.0,0.0,organic,2018,GrandRapids +4,2018-02-25,1.34,7115.37,10.15,1084.45,0.0,6020.77,6007.44,13.33,0.0,organic,2018,GrandRapids +5,2018-02-18,1.29,7658.93,5.81,858.31,0.0,6794.81,6794.81,0.0,0.0,organic,2018,GrandRapids +6,2018-02-11,1.25,8859.53,11.55,2034.77,0.0,6813.21,6813.21,0.0,0.0,organic,2018,GrandRapids +7,2018-02-04,1.21,8320.22,15.77,626.63,0.0,7677.82,7677.82,0.0,0.0,organic,2018,GrandRapids +8,2018-01-28,1.26,8251.66,45.63,737.22,0.0,7468.81,7468.81,0.0,0.0,organic,2018,GrandRapids +9,2018-01-21,1.31,8566.64,4.26,1118.8,0.0,7443.58,7418.31,25.27,0.0,organic,2018,GrandRapids +10,2018-01-14,1.32,10308.41,14.16,1519.63,0.0,8774.62,8744.72,29.9,0.0,organic,2018,GrandRapids +11,2018-01-07,1.25,11449.3,12.71,3013.06,0.0,8423.53,8423.53,0.0,0.0,organic,2018,GrandRapids +0,2018-03-25,1.47,182492.41,5140.14,51115.63,0.0,125061.81,102033.82,23027.99,0.0,organic,2018,GreatLakes +1,2018-03-18,1.3,320320.99,6924.59,101003.84,4.97,212031.79,138687.27,73344.52,0.0,organic,2018,GreatLakes +2,2018-03-11,1.31,324172.31,7730.19,117026.23,0.0,199137.6,158988.83,40148.77,0.0,organic,2018,GreatLakes +3,2018-03-04,1.33,222950.32,6008.33,68134.36,0.0,147949.04,119193.36,28755.68,0.0,organic,2018,GreatLakes +4,2018-02-25,1.49,176612.49,4528.42,51477.74,0.0,119576.4,86332.21,33244.19,0.0,organic,2018,GreatLakes +5,2018-02-18,1.45,157146.89,4271.27,44540.75,1.63,108112.62,98871.98,9240.64,0.0,organic,2018,GreatLakes +6,2018-02-11,1.44,175088.87,4475.83,46711.13,1.63,123641.16,109613.32,14027.84,0.0,organic,2018,GreatLakes +7,2018-02-04,1.45,185270.31,4670.38,53564.29,0.0,126791.01,114470.1,12320.91,0.0,organic,2018,GreatLakes +8,2018-01-28,1.42,200318.01,4791.32,53866.78,0.0,141507.43,101734.66,39772.77,0.0,organic,2018,GreatLakes +9,2018-01-21,1.41,235021.5,5114.24,53205.28,0.0,176491.02,89986.79,86504.23,0.0,organic,2018,GreatLakes +10,2018-01-14,1.45,243959.31,5573.56,58518.98,0.0,179739.93,130909.33,48830.6,0.0,organic,2018,GreatLakes +11,2018-01-07,1.4,224698.1,8227.83,55921.31,0.0,160398.29,126158.83,34239.46,0.0,organic,2018,GreatLakes +0,2018-03-25,1.36,23169.17,371.93,239.04,9.87,22548.33,22545.0,3.33,0.0,organic,2018,HarrisburgScranton +1,2018-03-18,1.47,17815.44,791.32,428.09,6.63,16589.4,16589.4,0.0,0.0,organic,2018,HarrisburgScranton +2,2018-03-11,1.47,20504.66,393.48,267.87,22.22,19821.09,19811.09,10.0,0.0,organic,2018,HarrisburgScranton +3,2018-03-04,1.43,18968.96,659.11,396.33,20.94,17892.58,17889.25,3.33,0.0,organic,2018,HarrisburgScranton +4,2018-02-25,1.42,18414.33,330.05,369.57,5.01,17709.7,17706.37,3.33,0.0,organic,2018,HarrisburgScranton +5,2018-02-18,1.43,26996.61,3948.19,2895.75,15.24,20137.43,20134.1,3.33,0.0,organic,2018,HarrisburgScranton +6,2018-02-11,1.53,18314.18,217.6,254.81,20.89,17820.88,17798.66,22.22,0.0,organic,2018,HarrisburgScranton +7,2018-02-04,1.5,21055.52,322.53,300.03,6.03,20426.93,20329.15,97.78,0.0,organic,2018,HarrisburgScranton +8,2018-01-28,1.49,21849.91,409.5,280.03,19.17,21141.21,21137.86,3.35,0.0,organic,2018,HarrisburgScranton +9,2018-01-21,1.59,15829.03,225.43,166.81,19.2,15417.59,15410.91,6.68,0.0,organic,2018,HarrisburgScranton +10,2018-01-14,1.45,23826.74,175.52,199.52,5.07,23446.63,23446.63,0.0,0.0,organic,2018,HarrisburgScranton +11,2018-01-07,1.51,21095.12,208.15,312.97,13.01,20560.99,20550.99,10.0,0.0,organic,2018,HarrisburgScranton +0,2018-03-25,2.09,20242.65,144.4,10949.63,0.0,9148.62,9137.73,10.89,0.0,organic,2018,HartfordSpringfield +1,2018-03-18,1.88,31736.66,537.35,22724.89,0.0,8474.42,8472.87,1.55,0.0,organic,2018,HartfordSpringfield +2,2018-03-11,2.15,17722.27,147.46,8428.14,2.8,9143.87,9143.87,0.0,0.0,organic,2018,HartfordSpringfield +3,2018-03-04,1.9,27608.16,622.71,19631.02,0.0,7354.43,7354.43,0.0,0.0,organic,2018,HartfordSpringfield +4,2018-02-25,2.05,15721.06,213.6,7229.28,0.0,8278.18,8278.18,0.0,0.0,organic,2018,HartfordSpringfield +5,2018-02-18,1.48,49348.86,1201.04,40277.25,8.4,7862.17,7566.48,295.69,0.0,organic,2018,HartfordSpringfield +6,2018-02-11,2.1,11883.93,23.95,4455.68,8.38,7395.92,7389.71,6.21,0.0,organic,2018,HartfordSpringfield +7,2018-02-04,1.94,17404.84,142.97,8510.44,15.34,8736.09,8736.09,0.0,0.0,organic,2018,HartfordSpringfield +8,2018-01-28,1.9,18973.89,468.61,10161.69,2.79,8340.8,8340.8,0.0,0.0,organic,2018,HartfordSpringfield +9,2018-01-21,2.12,12308.98,97.64,4096.79,1.39,8113.16,8079.06,34.1,0.0,organic,2018,HartfordSpringfield +10,2018-01-14,2.02,14448.86,122.85,4410.11,0.0,9915.9,9911.02,4.88,0.0,organic,2018,HartfordSpringfield +11,2018-01-07,2.03,15204.66,76.07,4721.42,1.4,10405.77,10405.77,0.0,0.0,organic,2018,HartfordSpringfield +0,2018-03-25,1.31,36999.72,8247.81,67.33,0.0,28684.58,28094.58,590.0,0.0,organic,2018,Houston +1,2018-03-18,1.07,30564.4,7515.02,138.75,0.0,22910.63,22467.29,443.34,0.0,organic,2018,Houston +2,2018-03-11,1.26,40506.15,8456.51,165.94,0.0,31883.7,31440.37,443.33,0.0,organic,2018,Houston +3,2018-03-04,1.37,28699.66,6442.57,67.11,0.0,22189.98,21933.32,256.66,0.0,organic,2018,Houston +4,2018-02-25,1.41,25590.99,5721.05,68.95,0.0,19800.99,19544.33,256.66,0.0,organic,2018,Houston +5,2018-02-18,1.41,31029.02,6697.58,149.14,0.0,24182.3,24082.3,100.0,0.0,organic,2018,Houston +6,2018-02-11,1.4,24385.65,5208.72,60.53,0.0,19116.4,19029.73,86.67,0.0,organic,2018,Houston +7,2018-02-04,1.43,27155.44,10163.94,216.52,0.0,16774.98,16644.99,129.99,0.0,organic,2018,Houston +8,2018-01-28,1.45,26854.2,10288.17,114.77,0.0,16451.26,16394.59,56.67,0.0,organic,2018,Houston +9,2018-01-21,1.41,32722.61,7335.69,43.11,0.0,25343.81,25100.48,243.33,0.0,organic,2018,Houston +10,2018-01-14,1.49,35522.77,11013.42,108.93,0.0,24400.42,23953.75,446.67,0.0,organic,2018,Houston +11,2018-01-07,1.38,30428.43,9238.55,61.24,0.0,21128.64,20778.64,350.0,0.0,organic,2018,Houston +0,2018-03-25,1.28,9506.07,319.39,1427.13,0.0,7685.05,3437.74,4247.31,0.0,organic,2018,Indianapolis +1,2018-03-18,1.2,17377.59,384.68,3856.94,0.0,13122.54,7412.71,5709.83,0.0,organic,2018,Indianapolis +2,2018-03-11,1.22,15216.33,341.99,3553.23,0.0,11298.11,8448.16,2849.95,0.0,organic,2018,Indianapolis +3,2018-03-04,1.23,10713.61,283.05,1481.74,0.0,8706.42,6217.0,2489.42,0.0,organic,2018,Indianapolis +4,2018-02-25,1.45,9345.93,256.43,1278.39,0.0,7761.04,4655.23,3105.81,0.0,organic,2018,Indianapolis +5,2018-02-18,1.34,7478.79,230.01,1110.05,0.0,6084.89,3988.42,2096.47,0.0,organic,2018,Indianapolis +6,2018-02-11,1.34,8377.74,280.47,939.13,0.0,7105.49,5468.35,1637.14,0.0,organic,2018,Indianapolis +7,2018-02-04,1.36,9773.21,275.47,1302.43,0.0,8144.5,5633.86,2510.64,0.0,organic,2018,Indianapolis +8,2018-01-28,1.4,8935.85,205.04,1254.73,0.0,7455.25,4711.37,2743.88,0.0,organic,2018,Indianapolis +9,2018-01-21,1.48,9495.46,281.81,1266.88,0.0,7884.46,4149.72,3734.74,0.0,organic,2018,Indianapolis +10,2018-01-14,1.46,13651.18,221.76,1861.23,0.0,11544.01,8183.14,3360.87,0.0,organic,2018,Indianapolis +11,2018-01-07,1.46,9885.05,205.23,1460.83,0.0,8204.03,5889.7,2314.33,0.0,organic,2018,Indianapolis +0,2018-03-25,1.75,5518.73,171.22,806.65,3.93,4536.93,2944.89,1592.04,0.0,organic,2018,Jacksonville +1,2018-03-18,1.6,4077.51,87.69,667.47,3.93,3318.42,2769.35,549.07,0.0,organic,2018,Jacksonville +2,2018-03-11,1.53,3375.33,92.46,616.99,3.93,2661.95,2561.1,100.85,0.0,organic,2018,Jacksonville +3,2018-03-04,1.92,6562.68,176.31,1177.74,0.0,5208.63,2442.22,2766.41,0.0,organic,2018,Jacksonville +4,2018-02-25,1.73,4988.75,106.24,915.35,0.0,3967.16,2877.78,1089.38,0.0,organic,2018,Jacksonville +5,2018-02-18,1.89,5389.68,149.89,1094.56,2.62,4142.61,2283.94,1858.67,0.0,organic,2018,Jacksonville +6,2018-02-11,1.83,5216.61,165.47,836.48,6.51,4208.15,2420.23,1787.92,0.0,organic,2018,Jacksonville +7,2018-02-04,1.62,2838.38,57.22,465.58,0.0,2315.58,2008.9,306.68,0.0,organic,2018,Jacksonville +8,2018-01-28,2.01,5704.39,160.85,1076.66,6.49,4460.39,1776.66,2683.73,0.0,organic,2018,Jacksonville +9,2018-01-21,1.77,3510.16,67.15,597.85,6.46,2838.7,2105.56,733.14,0.0,organic,2018,Jacksonville +10,2018-01-14,1.57,2808.84,44.77,587.12,5.12,2171.83,2171.83,0.0,0.0,organic,2018,Jacksonville +11,2018-01-07,1.43,2989.39,43.23,531.48,0.0,2414.68,2400.05,14.63,0.0,organic,2018,Jacksonville +0,2018-03-25,1.65,10720.47,1541.02,1842.23,0.0,7337.22,7283.04,54.18,0.0,organic,2018,LasVegas +1,2018-03-18,1.66,11198.86,1458.43,2174.4,0.0,7566.03,7545.71,20.32,0.0,organic,2018,LasVegas +2,2018-03-11,1.62,13792.54,1966.47,2132.96,0.0,9693.11,9686.91,6.2,0.0,organic,2018,LasVegas +3,2018-03-04,1.66,11529.02,1575.2,2190.42,0.0,7763.4,7763.4,0.0,0.0,organic,2018,LasVegas +4,2018-02-25,1.66,10302.5,1407.85,1898.15,0.0,6996.5,6957.59,38.91,0.0,organic,2018,LasVegas +5,2018-02-18,1.64,11078.27,1473.68,1915.56,0.0,7689.03,7665.64,23.39,0.0,organic,2018,LasVegas +6,2018-02-11,1.7,9399.33,1244.97,1641.29,0.0,6513.07,6503.74,9.33,0.0,organic,2018,LasVegas +7,2018-02-04,1.79,9503.13,1479.32,1512.78,0.0,6511.03,6465.39,45.64,0.0,organic,2018,LasVegas +8,2018-01-28,1.78,8672.12,1005.73,2110.22,0.0,5556.17,5538.46,17.71,0.0,organic,2018,LasVegas +9,2018-01-21,1.91,7491.53,1096.07,1280.31,0.0,5115.15,5115.15,0.0,0.0,organic,2018,LasVegas +10,2018-01-14,1.98,9883.94,1497.55,2199.58,0.0,6186.81,6180.41,6.4,0.0,organic,2018,LasVegas +11,2018-01-07,1.73,10293.36,1701.33,2012.1,0.0,6579.93,6553.06,26.87,0.0,organic,2018,LasVegas +0,2018-03-25,1.74,91739.92,11197.66,29959.26,0.0,50583.0,50420.81,162.19,0.0,organic,2018,LosAngeles +1,2018-03-18,1.72,93566.16,10829.18,30437.33,0.0,52299.65,52187.11,112.54,0.0,organic,2018,LosAngeles +2,2018-03-11,1.39,141932.83,12839.05,36894.48,0.0,92199.3,92190.53,8.77,0.0,organic,2018,LosAngeles +3,2018-03-04,1.4,145608.11,14856.48,27596.01,0.0,103155.62,103108.51,47.11,0.0,organic,2018,LosAngeles +4,2018-02-25,1.74,90985.4,10382.97,35406.21,0.0,45196.22,45169.68,26.54,0.0,organic,2018,LosAngeles +5,2018-02-18,1.88,88854.41,9009.79,35316.2,0.0,44528.42,44519.43,8.99,0.0,organic,2018,LosAngeles +6,2018-02-11,1.74,92968.52,11627.06,23735.33,0.0,57606.13,57577.44,28.69,0.0,organic,2018,LosAngeles +7,2018-02-04,1.6,100274.88,12267.41,21472.21,0.0,66535.26,66486.1,49.16,0.0,organic,2018,LosAngeles +8,2018-01-28,1.73,97026.15,11366.1,25056.37,0.0,60603.68,60596.54,7.14,0.0,organic,2018,LosAngeles +9,2018-01-21,1.75,94441.5,9239.41,24527.98,0.0,60674.11,60647.03,27.08,0.0,organic,2018,LosAngeles +10,2018-01-14,1.68,106624.63,15769.61,39738.42,0.0,51116.6,51104.4,12.2,0.0,organic,2018,LosAngeles +11,2018-01-07,1.8,87517.23,20189.33,24193.04,0.0,43134.86,43077.03,57.83,0.0,organic,2018,LosAngeles +0,2018-03-25,1.46,4173.7,8.0,988.64,0.0,3177.06,2031.65,1145.41,0.0,organic,2018,Louisville +1,2018-03-18,1.38,4573.23,0.0,1367.86,0.0,3205.37,1470.9,1734.47,0.0,organic,2018,Louisville +2,2018-03-11,1.35,5905.79,1.3,1528.74,0.0,4375.75,2099.42,2276.33,0.0,organic,2018,Louisville +3,2018-03-04,1.43,5076.9,13.39,1011.72,0.0,4051.79,1959.38,2092.41,0.0,organic,2018,Louisville +4,2018-02-25,1.59,3673.2,1.0,1293.28,0.0,2378.92,1487.59,891.33,0.0,organic,2018,Louisville +5,2018-02-18,1.59,2064.9,0.0,1076.45,0.0,988.45,975.57,12.88,0.0,organic,2018,Louisville +6,2018-02-11,1.56,2174.66,6.0,883.15,0.0,1285.51,1027.05,258.46,0.0,organic,2018,Louisville +7,2018-02-04,1.48,3001.55,0.0,950.25,0.0,2051.3,1736.68,314.62,0.0,organic,2018,Louisville +8,2018-01-28,1.48,3245.58,1.27,1036.16,0.0,2208.15,1853.15,355.0,0.0,organic,2018,Louisville +9,2018-01-21,1.6,4170.14,1.0,1008.63,0.0,3160.51,1596.03,1564.48,0.0,organic,2018,Louisville +10,2018-01-14,1.54,3737.85,0.0,1199.91,0.0,2537.94,1769.94,768.0,0.0,organic,2018,Louisville +11,2018-01-07,1.38,4622.45,4.0,1207.46,0.0,3410.99,2226.12,1184.87,0.0,organic,2018,Louisville +0,2018-03-25,1.34,8620.15,111.52,296.6,0.0,8212.03,8212.03,0.0,0.0,organic,2018,MiamiFtLauderdale +1,2018-03-18,1.37,10458.41,351.4,439.42,0.0,9667.59,9656.48,11.11,0.0,organic,2018,MiamiFtLauderdale +2,2018-03-11,1.35,7949.82,71.89,283.8,0.0,7594.13,7573.34,20.79,0.0,organic,2018,MiamiFtLauderdale +3,2018-03-04,1.56,11549.64,420.45,893.13,0.0,10236.06,8935.54,1300.52,0.0,organic,2018,MiamiFtLauderdale +4,2018-02-25,1.6,10821.89,652.89,894.42,0.0,9274.58,7767.78,1506.8,0.0,organic,2018,MiamiFtLauderdale +5,2018-02-18,1.52,9673.24,138.51,772.24,0.0,8762.49,7794.44,968.05,0.0,organic,2018,MiamiFtLauderdale +6,2018-02-11,1.4,9320.83,139.48,429.95,0.0,8751.4,8423.13,328.27,0.0,organic,2018,MiamiFtLauderdale +7,2018-02-04,1.5,9193.3,261.74,589.27,0.0,8342.29,7622.22,720.07,0.0,organic,2018,MiamiFtLauderdale +8,2018-01-28,1.43,7883.77,162.09,272.81,0.0,7448.87,7448.87,0.0,0.0,organic,2018,MiamiFtLauderdale +9,2018-01-21,1.46,7557.32,127.92,285.41,0.0,7143.99,7143.99,0.0,0.0,organic,2018,MiamiFtLauderdale +10,2018-01-14,1.44,7957.68,50.65,203.7,0.0,7703.33,7700.0,3.33,0.0,organic,2018,MiamiFtLauderdale +11,2018-01-07,1.47,7496.04,52.94,293.77,0.0,7149.33,7135.99,13.34,0.0,organic,2018,MiamiFtLauderdale +0,2018-03-25,1.55,181040.19,3445.85,41893.24,641.59,135059.51,125890.81,9168.7,0.0,organic,2018,Midsouth +1,2018-03-18,1.52,179316.2,3930.14,48249.33,720.63,126416.1,109789.25,16626.85,0.0,organic,2018,Midsouth +2,2018-03-11,1.53,185141.54,3659.19,50387.09,836.2,130259.06,119351.93,10907.13,0.0,organic,2018,Midsouth +3,2018-03-04,1.61,170250.03,4165.25,46035.81,934.06,119114.91,108411.32,10703.59,0.0,organic,2018,Midsouth +4,2018-02-25,1.61,179220.19,3635.67,46267.02,672.63,128644.87,112039.31,16605.56,0.0,organic,2018,Midsouth +5,2018-02-18,1.62,167151.11,4053.94,55861.14,750.29,106476.61,104813.94,1662.67,0.0,organic,2018,Midsouth +6,2018-02-11,1.6,157203.29,2778.55,41083.21,661.32,112680.21,108074.63,4605.58,0.0,organic,2018,Midsouth +7,2018-02-04,1.69,158995.14,2791.08,40524.45,680.12,114996.2,110559.26,4436.94,0.0,organic,2018,Midsouth +8,2018-01-28,1.62,162896.45,3033.33,48878.5,911.57,110073.05,101010.31,9062.74,0.0,organic,2018,Midsouth +9,2018-01-21,1.68,152056.12,3204.14,44350.14,763.49,103738.35,84681.87,19056.48,0.0,organic,2018,Midsouth +10,2018-01-14,1.48,218369.75,2747.68,51221.04,926.79,163474.24,152552.08,10922.16,0.0,organic,2018,Midsouth +11,2018-01-07,1.22,283583.37,3107.8,47355.55,861.38,232258.64,223671.12,8587.52,0.0,organic,2018,Midsouth +0,2018-03-25,1.48,7250.69,43.77,1759.47,0.0,5447.45,4834.97,612.48,0.0,organic,2018,Nashville +1,2018-03-18,1.27,10422.05,20.41,2115.89,0.0,8285.75,4797.98,3487.77,0.0,organic,2018,Nashville +2,2018-03-11,1.32,10160.96,38.32,2553.36,0.0,7569.28,5132.05,2437.23,0.0,organic,2018,Nashville +3,2018-03-04,1.5,10565.18,41.88,2211.37,0.0,8311.93,6653.26,1658.67,0.0,organic,2018,Nashville +4,2018-02-25,1.48,10360.85,43.33,2258.33,0.0,8059.19,3862.2,4196.99,0.0,organic,2018,Nashville +5,2018-02-18,1.38,5810.43,23.53,2027.68,0.0,3759.22,3424.33,334.89,0.0,organic,2018,Nashville +6,2018-02-11,1.36,5194.01,43.62,1629.27,0.0,3521.12,3117.67,403.45,0.0,organic,2018,Nashville +7,2018-02-04,1.58,5109.24,54.15,2042.32,0.0,3012.77,2310.41,702.36,0.0,organic,2018,Nashville +8,2018-01-28,1.63,6610.16,41.96,2301.94,0.0,4266.26,2704.59,1561.67,0.0,organic,2018,Nashville +9,2018-01-21,1.68,8546.3,59.53,2081.22,0.0,6405.55,2314.95,4090.6,0.0,organic,2018,Nashville +10,2018-01-14,1.58,7618.85,47.32,2392.03,0.0,5179.5,3581.76,1597.74,0.0,organic,2018,Nashville +11,2018-01-07,1.57,7700.96,41.48,2384.27,0.0,5275.21,3330.37,1944.84,0.0,organic,2018,Nashville +0,2018-03-25,1.36,8024.7,275.67,94.25,0.0,7654.78,7288.89,365.89,0.0,organic,2018,NewOrleansMobile +1,2018-03-18,1.35,6622.76,695.79,129.78,0.0,5797.19,5755.56,41.63,0.0,organic,2018,NewOrleansMobile +2,2018-03-11,1.36,7149.27,605.53,123.61,0.0,6420.13,6237.77,182.36,0.0,organic,2018,NewOrleansMobile +3,2018-03-04,1.39,7466.34,521.04,142.08,0.0,6803.22,6275.55,527.67,0.0,organic,2018,NewOrleansMobile +4,2018-02-25,1.35,7788.21,230.68,237.47,0.0,7320.06,7169.99,150.07,0.0,organic,2018,NewOrleansMobile +5,2018-02-18,1.39,9239.49,290.98,188.28,0.0,8760.23,8156.67,603.56,0.0,organic,2018,NewOrleansMobile +6,2018-02-11,1.36,7801.52,183.18,130.5,0.0,7487.84,7163.33,324.51,0.0,organic,2018,NewOrleansMobile +7,2018-02-04,1.35,8345.08,196.63,121.26,0.0,8027.19,7856.66,170.53,0.0,organic,2018,NewOrleansMobile +8,2018-01-28,1.43,8245.33,258.61,212.78,0.0,7773.94,7341.1,432.84,0.0,organic,2018,NewOrleansMobile +9,2018-01-21,1.42,5509.3,259.52,123.76,0.0,5126.02,5035.55,90.47,0.0,organic,2018,NewOrleansMobile +10,2018-01-14,1.42,7130.97,158.28,101.58,0.0,6871.11,6847.77,23.34,0.0,organic,2018,NewOrleansMobile +11,2018-01-07,1.43,6860.0,122.51,161.19,0.0,6576.3,6528.88,47.42,0.0,organic,2018,NewOrleansMobile +0,2018-03-25,1.86,118503.55,12695.3,35094.5,205.59,70508.16,70377.52,130.64,0.0,organic,2018,NewYork +1,2018-03-18,1.7,189434.04,44234.93,80052.02,53.56,65093.53,64851.08,242.45,0.0,organic,2018,NewYork +2,2018-03-11,1.92,108114.03,10655.17,33419.62,144.52,63894.72,63842.58,52.14,0.0,organic,2018,NewYork +3,2018-03-04,1.69,133768.12,20987.96,52637.04,92.18,60050.94,59997.6,53.34,0.0,organic,2018,NewYork +4,2018-02-25,1.72,112128.84,12369.59,43197.79,217.92,56343.54,56343.54,0.0,0.0,organic,2018,NewYork +5,2018-02-18,1.36,495083.69,107369.04,329956.5,956.38,56801.77,55583.56,1218.21,0.0,organic,2018,NewYork +6,2018-02-11,1.92,79877.83,6604.28,15647.94,863.92,56761.69,55116.51,1645.18,0.0,organic,2018,NewYork +7,2018-02-04,1.83,93204.08,9300.64,21428.22,814.47,61660.75,61516.19,144.56,0.0,organic,2018,NewYork +8,2018-01-28,1.75,96380.28,13196.3,24933.01,128.24,58122.73,56090.23,2032.5,0.0,organic,2018,NewYork +9,2018-01-21,1.91,71760.69,5732.09,13124.59,157.72,52746.29,52130.98,615.31,0.0,organic,2018,NewYork +10,2018-01-14,1.91,86632.25,7433.43,17885.26,49.43,61264.13,60763.71,500.42,0.0,organic,2018,NewYork +11,2018-01-07,1.97,82637.97,6158.73,19251.81,47.04,57180.39,57180.39,0.0,0.0,organic,2018,NewYork +0,2018-03-25,1.58,374859.68,19823.16,58366.54,201.04,296468.94,265716.88,30752.06,0.0,organic,2018,Northeast +1,2018-03-18,1.64,419607.75,61608.19,131261.94,53.54,226684.08,195973.16,30710.92,0.0,organic,2018,Northeast +2,2018-03-11,1.76,288008.65,20619.84,53255.29,151.81,213981.71,185792.45,28189.26,0.0,organic,2018,Northeast +3,2018-03-04,1.65,313200.35,38734.87,90401.71,108.65,183955.12,168196.82,15758.3,0.0,organic,2018,Northeast +4,2018-02-25,1.63,303577.39,23250.65,66623.87,199.38,213503.49,193020.88,20482.61,0.0,organic,2018,Northeast +5,2018-02-18,1.39,793464.77,150620.0,425616.86,874.9,216353.01,197949.51,18403.5,0.0,organic,2018,Northeast +6,2018-02-11,1.69,233976.66,10690.15,28304.93,798.88,194182.7,175554.11,18628.59,0.0,organic,2018,Northeast +7,2018-02-04,1.66,273309.58,16597.29,41306.63,766.14,214639.52,188630.21,26009.31,0.0,organic,2018,Northeast +8,2018-01-28,1.56,319174.35,23903.56,45738.71,143.8,249388.28,242631.48,6756.8,0.0,organic,2018,Northeast +9,2018-01-21,1.75,215742.94,11683.16,26922.85,162.73,176974.2,167900.81,9073.39,0.0,organic,2018,Northeast +10,2018-01-14,1.67,272690.13,14282.25,33534.86,58.59,224814.43,206708.26,18106.17,0.0,organic,2018,Northeast +11,2018-01-07,1.75,264448.77,11605.47,35898.69,55.76,216888.85,205469.1,11419.75,0.0,organic,2018,Northeast +0,2018-03-25,1.63,22596.13,9.44,257.67,0.0,22329.02,22329.02,0.0,0.0,organic,2018,NorthernNewEngland +1,2018-03-18,1.62,22375.57,6.0,243.48,0.0,22126.09,22126.09,0.0,0.0,organic,2018,NorthernNewEngland +2,2018-03-11,1.64,18202.54,3.0,342.18,0.0,17857.36,17807.36,50.0,0.0,organic,2018,NorthernNewEngland +3,2018-03-04,1.54,14156.63,24.0,760.55,0.0,13372.08,13328.75,43.33,0.0,organic,2018,NorthernNewEngland +4,2018-02-25,1.5,30553.46,12.0,779.62,0.0,29761.84,29761.84,0.0,0.0,organic,2018,NorthernNewEngland +5,2018-02-18,1.58,29699.89,0.0,195.2,0.0,29504.69,29504.69,0.0,0.0,organic,2018,NorthernNewEngland +6,2018-02-11,1.39,22495.69,0.0,176.23,0.0,22319.46,22319.46,0.0,0.0,organic,2018,NorthernNewEngland +7,2018-02-04,1.57,19108.24,5.37,268.37,0.0,18834.5,18834.5,0.0,0.0,organic,2018,NorthernNewEngland +8,2018-01-28,1.29,50288.63,0.0,383.92,0.0,49904.71,49904.71,0.0,0.0,organic,2018,NorthernNewEngland +9,2018-01-21,1.59,22101.1,4.0,664.79,0.0,21432.31,21432.31,0.0,0.0,organic,2018,NorthernNewEngland +10,2018-01-14,1.46,22637.04,6.0,211.84,0.0,22419.2,22419.2,0.0,0.0,organic,2018,NorthernNewEngland +11,2018-01-07,1.75,26188.31,0.0,551.1,0.0,25637.21,25633.88,3.33,0.0,organic,2018,NorthernNewEngland +0,2018-03-25,1.45,11040.51,209.54,1106.74,0.0,9724.23,8756.67,967.56,0.0,organic,2018,Orlando +1,2018-03-18,1.58,12161.25,335.39,1385.16,0.0,10440.7,8351.9,2088.8,0.0,organic,2018,Orlando +2,2018-03-11,1.38,8686.28,202.25,688.21,0.0,7795.82,7614.44,181.38,0.0,organic,2018,Orlando +3,2018-03-04,1.58,10599.98,361.71,1244.48,0.0,8993.79,7341.04,1652.75,0.0,organic,2018,Orlando +4,2018-02-25,1.41,10092.35,230.59,806.41,0.0,9055.35,8597.78,457.57,0.0,organic,2018,Orlando +5,2018-02-18,1.57,9465.72,281.04,1239.92,0.0,7944.76,6697.78,1246.98,0.0,organic,2018,Orlando +6,2018-02-11,1.48,9487.94,228.09,909.96,0.0,8349.89,7405.55,944.34,0.0,organic,2018,Orlando +7,2018-02-04,1.36,7764.86,126.5,542.34,0.0,7096.02,7081.87,14.15,0.0,organic,2018,Orlando +8,2018-01-28,1.67,8402.79,197.96,1131.65,0.0,7073.18,5671.11,1402.07,0.0,organic,2018,Orlando +9,2018-01-21,1.53,6993.97,113.71,598.05,0.0,6282.21,6278.88,3.33,0.0,organic,2018,Orlando +10,2018-01-14,1.55,6659.77,86.64,639.81,0.0,5933.32,5926.66,6.66,0.0,organic,2018,Orlando +11,2018-01-07,1.56,7074.23,79.68,649.38,0.0,6345.17,6335.56,9.61,0.0,organic,2018,Orlando +0,2018-03-25,1.49,37893.5,3464.04,5737.9,9.42,28682.14,28637.44,44.7,0.0,organic,2018,Philadelphia +1,2018-03-18,1.58,40632.46,6924.19,13914.86,0.0,19793.41,19760.84,32.57,0.0,organic,2018,Philadelphia +2,2018-03-11,1.72,29514.08,4358.87,4695.61,0.0,20459.6,20459.6,0.0,0.0,organic,2018,Philadelphia +3,2018-03-04,1.51,33327.68,6525.07,6294.03,5.66,20502.92,20498.48,4.44,0.0,organic,2018,Philadelphia +4,2018-02-25,1.56,31548.98,4302.81,8227.53,4.2,19014.44,19011.11,3.33,0.0,organic,2018,Philadelphia +5,2018-02-18,1.37,75418.33,13696.39,42602.91,16.97,19102.06,19085.96,16.1,0.0,organic,2018,Philadelphia +6,2018-02-11,1.68,20349.55,1481.13,2510.65,13.13,16344.64,16333.54,11.1,0.0,organic,2018,Philadelphia +7,2018-02-04,1.63,27035.57,2687.03,3164.38,20.63,21163.53,21162.15,1.38,0.0,organic,2018,Philadelphia +8,2018-01-28,1.61,28257.18,3878.22,3721.44,7.64,20649.88,20602.87,47.01,0.0,organic,2018,Philadelphia +9,2018-01-21,1.73,23115.66,2121.11,2654.73,3.61,18336.21,18326.57,9.64,0.0,organic,2018,Philadelphia +10,2018-01-14,1.63,30339.71,2315.82,3563.73,8.4,24451.76,24402.26,49.5,0.0,organic,2018,Philadelphia +11,2018-01-07,1.69,27971.66,1954.92,3857.27,0.0,22159.47,22155.03,4.44,0.0,organic,2018,Philadelphia +0,2018-03-25,1.52,15372.8,2399.71,3164.8,0.0,9808.29,9789.7,18.59,0.0,organic,2018,PhoenixTucson +1,2018-03-18,1.54,15639.44,2130.06,3421.21,0.0,10088.17,10065.03,23.14,0.0,organic,2018,PhoenixTucson +2,2018-03-11,1.62,17727.19,2335.09,3082.62,0.0,12309.48,12278.25,31.23,0.0,organic,2018,PhoenixTucson +3,2018-03-04,1.69,15349.03,2467.3,3004.72,0.0,9877.01,9871.72,5.29,0.0,organic,2018,PhoenixTucson +4,2018-02-25,1.6,19089.16,4845.86,3196.8,0.0,11046.5,11031.95,14.55,0.0,organic,2018,PhoenixTucson +5,2018-02-18,1.51,18386.3,2832.82,3012.13,0.0,12541.35,12509.06,32.29,0.0,organic,2018,PhoenixTucson +6,2018-02-11,1.43,19026.47,2657.19,2889.56,0.0,13479.72,13442.8,36.92,0.0,organic,2018,PhoenixTucson +7,2018-02-04,1.62,14456.1,2260.81,2011.22,0.0,10184.07,10169.69,14.38,0.0,organic,2018,PhoenixTucson +8,2018-01-28,1.69,13125.79,1802.37,2243.06,0.0,9080.36,9073.81,6.55,0.0,organic,2018,PhoenixTucson +9,2018-01-21,1.78,12112.82,2178.78,1901.41,0.0,8032.63,8031.33,1.3,0.0,organic,2018,PhoenixTucson +10,2018-01-14,1.77,13514.36,3618.9,2795.53,0.0,7099.93,7086.72,13.21,0.0,organic,2018,PhoenixTucson +11,2018-01-07,1.76,16925.62,3822.41,2695.1,0.0,10408.11,10364.12,43.99,0.0,organic,2018,PhoenixTucson +0,2018-03-25,1.38,16411.89,956.73,10.91,0.0,15444.25,15430.91,13.34,0.0,organic,2018,Pittsburgh +1,2018-03-18,1.36,13856.99,991.86,30.88,0.0,12834.25,12827.59,6.66,0.0,organic,2018,Pittsburgh +2,2018-03-11,1.41,14486.33,986.55,19.71,0.0,13480.07,13476.74,3.33,0.0,organic,2018,Pittsburgh +3,2018-03-04,1.41,13219.33,1054.97,10.45,0.0,12153.91,12153.91,0.0,0.0,organic,2018,Pittsburgh +4,2018-02-25,1.38,12853.38,880.24,33.16,0.0,11939.98,11933.31,6.67,0.0,organic,2018,Pittsburgh +5,2018-02-18,1.36,15123.96,963.42,32.46,0.0,14128.08,14124.75,3.33,0.0,organic,2018,Pittsburgh +6,2018-02-11,1.34,14630.14,919.6,20.32,0.0,13690.22,13683.55,6.67,0.0,organic,2018,Pittsburgh +7,2018-02-04,1.4,11077.99,1053.22,25.24,0.0,9999.53,9999.53,0.0,0.0,organic,2018,Pittsburgh +8,2018-01-28,1.38,13137.18,1259.41,10.08,0.0,11867.69,11867.69,0.0,0.0,organic,2018,Pittsburgh +9,2018-01-21,1.47,7834.07,1296.15,18.33,0.0,6519.59,6519.59,0.0,0.0,organic,2018,Pittsburgh +10,2018-01-14,1.39,13344.06,1422.34,38.22,0.0,11883.5,11880.17,3.33,0.0,organic,2018,Pittsburgh +11,2018-01-07,1.38,13878.44,1016.81,6.6,0.0,12855.03,12855.03,0.0,0.0,organic,2018,Pittsburgh +0,2018-03-25,1.54,74180.36,4775.73,19162.3,0.0,50242.33,38235.54,12006.79,0.0,organic,2018,Plains +1,2018-03-18,1.58,69790.75,5124.88,20091.33,14.68,44559.86,32906.16,11653.7,0.0,organic,2018,Plains +2,2018-03-11,1.55,72624.66,4912.54,19192.2,7.35,48512.57,37059.78,11452.79,0.0,organic,2018,Plains +3,2018-03-04,1.55,74156.41,4937.37,18295.18,0.0,50923.86,35751.36,15172.5,0.0,organic,2018,Plains +4,2018-02-25,1.57,76998.78,5465.58,18240.36,0.0,53292.84,35159.1,18133.74,0.0,organic,2018,Plains +5,2018-02-18,1.63,66740.04,4145.56,16561.13,27.13,46006.22,30261.94,15744.28,0.0,organic,2018,Plains +6,2018-02-11,1.55,74511.33,3686.19,16026.88,0.0,54798.26,38151.7,16646.56,0.0,organic,2018,Plains +7,2018-02-04,1.55,62817.64,2624.36,15773.81,4.95,44414.52,32571.57,11842.95,0.0,organic,2018,Plains +8,2018-01-28,1.64,56920.22,2711.12,14479.56,0.0,39729.54,27818.91,11910.63,0.0,organic,2018,Plains +9,2018-01-21,1.69,65835.39,3266.67,17088.92,9.85,45469.95,32422.77,13047.18,0.0,organic,2018,Plains +10,2018-01-14,1.73,63884.71,4071.65,16536.4,2.44,43274.22,29216.82,14057.4,0.0,organic,2018,Plains +11,2018-01-07,1.72,61712.85,2216.22,18281.23,17.08,41198.32,30082.97,11112.64,2.71,organic,2018,Plains +0,2018-03-25,1.66,31275.39,1746.29,8110.67,0.0,21418.43,1712.1,19700.47,5.86,organic,2018,Portland +1,2018-03-18,1.78,26967.79,1433.7,7055.03,3.5,18475.56,1880.56,16587.23,7.77,organic,2018,Portland +2,2018-03-11,1.72,26924.36,1338.53,7520.53,0.0,18065.3,1900.73,16164.57,0.0,organic,2018,Portland +3,2018-03-04,1.57,35296.54,1772.0,6857.18,1.74,26665.62,1752.33,24882.44,30.85,organic,2018,Portland +4,2018-02-25,1.59,28796.94,2777.46,3529.3,0.0,22490.18,1870.63,20468.87,150.68,organic,2018,Portland +5,2018-02-18,1.8,20608.98,2304.48,4614.12,0.0,13690.38,3448.31,10232.51,9.56,organic,2018,Portland +6,2018-02-11,1.56,33493.93,2598.21,7330.17,8.57,23556.98,1415.85,22087.81,53.32,organic,2018,Portland +7,2018-02-04,1.46,35123.48,2697.49,4591.06,0.0,27834.93,1185.52,26586.83,62.58,organic,2018,Portland +8,2018-01-28,1.8,21678.23,2550.43,2656.25,0.0,16471.55,1006.14,15459.73,5.68,organic,2018,Portland +9,2018-01-21,1.8,25108.84,3170.73,3086.95,10.07,18841.09,1279.19,17489.16,72.74,organic,2018,Portland +10,2018-01-14,1.82,20964.96,3966.9,4441.29,0.0,12556.77,1364.14,11187.07,5.56,organic,2018,Portland +11,2018-01-07,1.59,27296.2,3740.22,6593.66,0.0,16962.32,1579.33,15382.99,0.0,organic,2018,Portland +0,2018-03-25,2.02,13379.77,86.84,5923.16,98.37,7271.4,6881.8,389.6,0.0,organic,2018,RaleighGreensboro +1,2018-03-18,1.93,14027.44,74.54,5983.12,135.09,7834.69,7330.45,504.24,0.0,organic,2018,RaleighGreensboro +2,2018-03-11,2.02,13869.87,93.04,6501.92,224.71,7050.2,6823.87,226.33,0.0,organic,2018,RaleighGreensboro +3,2018-03-04,1.98,15008.91,119.79,6357.72,154.02,8377.38,8147.84,229.54,0.0,organic,2018,RaleighGreensboro +4,2018-02-25,1.97,14215.62,161.11,5650.36,151.56,8252.59,7736.17,516.42,0.0,organic,2018,RaleighGreensboro +5,2018-02-18,1.99,14240.92,140.37,5695.17,122.61,8282.77,8197.97,84.8,0.0,organic,2018,RaleighGreensboro +6,2018-02-11,2.04,11804.91,72.38,4806.1,140.27,6786.16,6660.68,125.48,0.0,organic,2018,RaleighGreensboro +7,2018-02-04,2.25,14635.63,82.78,5175.05,151.37,9226.43,9000.42,226.01,0.0,organic,2018,RaleighGreensboro +8,2018-01-28,1.9,13996.05,145.91,6494.37,156.02,7199.75,6924.72,275.03,0.0,organic,2018,RaleighGreensboro +9,2018-01-21,1.86,14627.48,167.64,5921.25,176.32,8362.27,8026.25,336.02,0.0,organic,2018,RaleighGreensboro +10,2018-01-14,1.53,23359.01,119.42,6900.26,219.92,16119.41,15798.76,320.65,0.0,organic,2018,RaleighGreensboro +11,2018-01-07,1.02,48277.42,123.72,6416.92,209.38,41527.4,41246.49,280.91,0.0,organic,2018,RaleighGreensboro +0,2018-03-25,1.42,17340.49,295.16,3478.97,81.25,13485.11,12149.49,1335.62,0.0,organic,2018,RichmondNorfolk +1,2018-03-18,1.32,15940.36,459.28,3325.39,86.58,12069.11,10904.32,1164.79,0.0,organic,2018,RichmondNorfolk +2,2018-03-11,1.35,16213.23,363.43,3680.52,79.89,12089.39,11655.63,433.76,0.0,organic,2018,RichmondNorfolk +3,2018-03-04,1.43,14173.27,397.48,3653.91,119.44,10002.44,9479.36,523.08,0.0,organic,2018,RichmondNorfolk +4,2018-02-25,1.42,18023.03,485.27,3316.06,59.58,14162.12,11982.32,2179.8,0.0,organic,2018,RichmondNorfolk +5,2018-02-18,1.45,14413.06,468.13,3416.33,60.67,10467.93,10254.64,213.29,0.0,organic,2018,RichmondNorfolk +6,2018-02-11,1.36,18050.24,365.59,2906.21,44.28,14734.16,13970.51,763.65,0.0,organic,2018,RichmondNorfolk +7,2018-02-04,1.41,16592.21,352.86,3254.9,50.98,12933.47,12581.65,351.82,0.0,organic,2018,RichmondNorfolk +8,2018-01-28,1.44,15001.51,422.41,3934.4,93.87,10550.83,9656.85,893.98,0.0,organic,2018,RichmondNorfolk +9,2018-01-21,1.58,12458.09,521.57,3808.38,90.71,8037.43,6246.99,1790.44,0.0,organic,2018,RichmondNorfolk +10,2018-01-14,1.33,18253.0,354.81,3471.49,78.62,14348.08,13243.48,1104.6,0.0,organic,2018,RichmondNorfolk +11,2018-01-07,1.18,24634.86,563.16,3382.94,112.1,20576.66,19899.04,677.62,0.0,organic,2018,RichmondNorfolk +0,2018-03-25,1.6,9097.89,82.57,1984.01,0.0,7031.31,6152.25,879.06,0.0,organic,2018,Roanoke +1,2018-03-18,1.57,9095.2,110.35,2580.21,0.0,6404.64,4667.07,1737.57,0.0,organic,2018,Roanoke +2,2018-03-11,1.54,8380.75,168.6,2237.27,0.0,5974.88,5479.54,495.34,0.0,organic,2018,Roanoke +3,2018-03-04,1.78,6103.89,164.06,2155.05,0.0,3784.78,3393.22,391.56,0.0,organic,2018,Roanoke +4,2018-02-25,1.56,10168.42,194.34,2044.25,0.0,7929.83,5548.04,2381.79,0.0,organic,2018,Roanoke +5,2018-02-18,1.49,7517.03,154.15,2182.81,0.0,5180.07,5021.41,158.66,0.0,organic,2018,Roanoke +6,2018-02-11,1.44,8863.94,115.82,1767.7,0.0,6980.42,5962.17,1018.25,0.0,organic,2018,Roanoke +7,2018-02-04,1.53,8082.68,205.29,1857.77,0.0,6019.62,5345.21,674.41,0.0,organic,2018,Roanoke +8,2018-01-28,1.63,8243.33,221.71,2293.88,0.0,5727.74,4884.05,843.69,0.0,organic,2018,Roanoke +9,2018-01-21,1.67,7935.53,219.52,1633.41,0.0,6082.6,3524.73,2557.87,0.0,organic,2018,Roanoke +10,2018-01-14,1.55,9598.35,187.7,2080.55,0.0,7330.1,5644.04,1686.06,0.0,organic,2018,Roanoke +11,2018-01-07,1.48,8893.44,258.7,1976.19,0.0,6658.55,6089.92,568.63,0.0,organic,2018,Roanoke +0,2018-03-25,1.63,9608.95,1902.19,3572.34,0.0,4134.42,4124.42,10.0,0.0,organic,2018,Sacramento +1,2018-03-18,1.68,11828.91,1954.32,3597.7,0.0,6276.89,6270.22,6.67,0.0,organic,2018,Sacramento +2,2018-03-11,1.9,8634.75,2317.5,3561.2,0.0,2756.05,2752.63,3.42,0.0,organic,2018,Sacramento +3,2018-03-04,1.83,9611.48,2391.35,3880.13,0.0,3340.0,3340.0,0.0,0.0,organic,2018,Sacramento +4,2018-02-25,1.78,9497.75,2169.03,4285.39,0.0,3043.33,3036.67,6.66,0.0,organic,2018,Sacramento +5,2018-02-18,1.88,8499.84,2140.53,3537.09,0.0,2822.22,2818.89,3.33,0.0,organic,2018,Sacramento +6,2018-02-11,1.87,7802.04,2208.31,3192.62,0.0,2401.11,2401.11,0.0,0.0,organic,2018,Sacramento +7,2018-02-04,1.5,8713.26,2722.6,4194.0,0.0,1796.66,1796.66,0.0,0.0,organic,2018,Sacramento +8,2018-01-28,1.99,7631.73,2280.4,3098.0,0.0,2253.33,2253.33,0.0,0.0,organic,2018,Sacramento +9,2018-01-21,1.62,8933.22,3017.16,3954.94,0.0,1961.12,1961.12,0.0,0.0,organic,2018,Sacramento +10,2018-01-14,1.6,9939.69,3653.04,4484.42,0.0,1802.23,1802.23,0.0,0.0,organic,2018,Sacramento +11,2018-01-07,2.18,6511.97,2187.59,2577.71,0.0,1746.67,1746.67,0.0,0.0,organic,2018,Sacramento +0,2018-03-25,1.75,19086.94,865.91,10936.47,0.0,7284.56,7284.56,0.0,0.0,organic,2018,SanDiego +1,2018-03-18,1.75,18371.03,836.22,10877.69,0.0,6657.12,6657.12,0.0,0.0,organic,2018,SanDiego +2,2018-03-11,1.59,25324.3,1328.95,14303.09,0.0,9692.26,9692.26,0.0,0.0,organic,2018,SanDiego +3,2018-03-04,1.65,24614.51,1558.03,10118.36,0.0,12938.12,12934.79,3.33,0.0,organic,2018,SanDiego +4,2018-02-25,1.83,20171.93,1274.61,13035.32,0.0,5862.0,5858.67,3.33,0.0,organic,2018,SanDiego +5,2018-02-18,2.05,17875.93,946.25,10002.06,0.0,6927.62,6917.62,10.0,0.0,organic,2018,SanDiego +6,2018-02-11,1.88,18517.54,1101.05,8243.72,0.0,9172.77,9172.77,0.0,0.0,organic,2018,SanDiego +7,2018-02-04,1.81,17454.74,1158.41,7388.27,0.0,8908.06,8908.06,0.0,0.0,organic,2018,SanDiego +8,2018-01-28,1.91,17579.47,1145.64,8284.41,0.0,8149.42,8149.42,0.0,0.0,organic,2018,SanDiego +9,2018-01-21,1.95,18676.37,1088.49,9282.37,0.0,8305.51,8305.51,0.0,0.0,organic,2018,SanDiego +10,2018-01-14,1.81,21770.02,3285.98,14338.52,0.0,4145.52,4145.52,0.0,0.0,organic,2018,SanDiego +11,2018-01-07,2.06,16746.82,5150.82,9366.31,0.0,2229.69,2229.69,0.0,0.0,organic,2018,SanDiego +0,2018-03-25,1.64,34687.2,10102.62,10778.96,0.0,13805.62,13802.29,3.33,0.0,organic,2018,SanFrancisco +1,2018-03-18,1.86,38845.77,10129.17,10074.1,0.0,18642.5,18639.17,3.33,0.0,organic,2018,SanFrancisco +2,2018-03-11,2.16,25741.84,10368.17,10850.44,0.0,4523.23,4523.23,0.0,0.0,organic,2018,SanFrancisco +3,2018-03-04,2.07,25055.39,9521.74,10818.1,0.0,4715.55,4715.55,0.0,0.0,organic,2018,SanFrancisco +4,2018-02-25,2.11,24475.48,9731.2,11686.51,0.0,3057.77,3057.77,0.0,0.0,organic,2018,SanFrancisco +5,2018-02-18,2.25,21551.76,9721.38,9543.71,0.0,2286.67,2283.34,3.33,0.0,organic,2018,SanFrancisco +6,2018-02-11,2.22,21708.65,9960.19,9215.13,0.0,2533.33,2533.33,0.0,0.0,organic,2018,SanFrancisco +7,2018-02-04,1.34,28070.07,13610.05,12257.81,0.0,2202.21,2202.21,0.0,0.0,organic,2018,SanFrancisco +8,2018-01-28,2.27,20325.75,9368.06,8808.8,0.0,2148.89,2148.89,0.0,0.0,organic,2018,SanFrancisco +9,2018-01-21,1.36,27919.45,13037.67,11998.44,0.0,2883.34,2883.34,0.0,0.0,organic,2018,SanFrancisco +10,2018-01-14,1.32,37347.89,19301.15,14957.23,0.0,3089.51,3089.51,0.0,0.0,organic,2018,SanFrancisco +11,2018-01-07,2.3,20151.24,10165.34,8042.56,0.0,1943.34,1943.34,0.0,0.0,organic,2018,SanFrancisco +0,2018-03-25,1.48,96048.46,1753.94,41364.9,40.54,52889.08,8496.71,44278.26,114.11,organic,2018,Seattle +1,2018-03-18,1.83,45893.2,1490.12,15816.48,32.34,28554.26,2763.22,25662.29,128.75,organic,2018,Seattle +2,2018-03-11,1.54,69014.81,1542.56,26198.85,139.06,41134.34,2974.28,38160.06,0.0,organic,2018,Seattle +3,2018-03-04,1.27,156527.16,1999.5,37762.97,24.38,116740.31,2489.87,114116.48,133.96,organic,2018,Seattle +4,2018-02-25,1.36,105545.72,1285.8,23264.24,41.54,80954.14,2511.78,78344.09,98.27,organic,2018,Seattle +5,2018-02-18,1.86,40425.93,1033.98,12852.51,33.58,26505.86,11523.9,14950.62,31.34,organic,2018,Seattle +6,2018-02-11,1.22,101110.96,1318.39,31821.41,175.52,67795.64,4818.28,62844.86,132.5,organic,2018,Seattle +7,2018-02-04,1.14,124659.55,1345.94,32088.04,85.31,91140.26,1998.66,88880.93,260.67,organic,2018,Seattle +8,2018-01-28,1.99,35988.0,954.77,11558.54,32.0,23442.69,1487.79,21867.48,87.42,organic,2018,Seattle +9,2018-01-21,2.02,33986.68,928.1,12632.06,23.62,20402.9,1469.79,18905.41,27.7,organic,2018,Seattle +10,2018-01-14,2.03,36228.45,1147.33,18370.39,9.23,16701.5,1630.19,15063.98,7.33,organic,2018,Seattle +11,2018-01-07,1.26,98765.23,1404.78,33170.68,11.77,64178.0,2054.96,62104.14,18.9,organic,2018,Seattle +0,2018-03-25,1.38,16025.2,163.55,4234.24,81.45,11545.96,9882.44,1663.52,0.0,organic,2018,SouthCarolina +1,2018-03-18,1.35,16296.42,135.34,4345.05,111.34,11704.69,10661.48,1043.21,0.0,organic,2018,SouthCarolina +2,2018-03-11,1.36,17561.89,181.68,4942.56,99.85,12337.8,11957.7,380.1,0.0,organic,2018,SouthCarolina +3,2018-03-04,1.44,16468.01,206.2,5412.8,71.81,10777.2,9893.94,883.26,0.0,organic,2018,SouthCarolina +4,2018-02-25,1.41,17191.34,212.48,4438.03,95.27,12445.56,12088.07,357.49,0.0,organic,2018,SouthCarolina +5,2018-02-18,1.43,15443.91,145.58,4665.8,78.05,10554.48,9900.82,653.66,0.0,organic,2018,SouthCarolina +6,2018-02-11,1.47,14289.52,70.09,4206.95,84.14,9928.34,8754.94,1173.4,0.0,organic,2018,SouthCarolina +7,2018-02-04,1.42,16666.13,132.57,4063.83,102.86,12366.87,11819.92,546.95,0.0,organic,2018,SouthCarolina +8,2018-01-28,1.46,14938.24,110.46,5096.23,94.82,9636.73,8443.69,1193.04,0.0,organic,2018,SouthCarolina +9,2018-01-21,1.4,17566.45,105.95,4280.36,73.29,13106.85,11152.35,1954.5,0.0,organic,2018,SouthCarolina +10,2018-01-14,1.31,18678.63,67.8,4372.27,114.33,14124.23,13152.29,971.94,0.0,organic,2018,SouthCarolina +11,2018-01-07,1.26,19702.51,257.05,4243.68,151.13,15050.65,14269.86,780.79,0.0,organic,2018,SouthCarolina +0,2018-03-25,1.42,163496.7,29253.3,5080.04,0.0,129163.36,109052.26,20111.1,0.0,organic,2018,SouthCentral +1,2018-03-18,1.28,154056.32,27820.2,6264.66,0.0,119971.46,101198.09,18773.37,0.0,organic,2018,SouthCentral +2,2018-03-11,1.32,179212.94,29896.39,5707.77,0.0,143608.78,126427.81,17180.97,0.0,organic,2018,SouthCentral +3,2018-03-04,1.41,144664.26,25407.12,5094.72,0.0,114162.42,96833.15,17329.27,0.0,organic,2018,SouthCentral +4,2018-02-25,1.41,126906.61,20045.22,4781.58,0.0,102079.81,87202.79,14877.02,0.0,organic,2018,SouthCentral +5,2018-02-18,1.42,134888.08,23406.88,5128.16,27.46,106325.58,94331.46,11994.12,0.0,organic,2018,SouthCentral +6,2018-02-11,1.4,128955.64,20164.54,3290.73,0.0,105500.37,93391.83,12108.54,0.0,organic,2018,SouthCentral +7,2018-02-04,1.41,135996.73,29097.18,3815.01,0.0,103084.54,96116.6,6967.94,0.0,organic,2018,SouthCentral +8,2018-01-28,1.42,137453.79,29301.71,4418.91,0.0,103733.17,98629.14,5104.03,0.0,organic,2018,SouthCentral +9,2018-01-21,1.44,138349.93,22596.66,3200.09,0.0,112553.18,105354.48,7198.7,0.0,organic,2018,SouthCentral +10,2018-01-14,1.5,146720.73,31829.24,4472.99,0.0,110418.5,102266.31,8152.19,0.0,organic,2018,SouthCentral +11,2018-01-07,1.41,126323.33,25296.77,3848.62,3.0,97174.94,90151.57,7023.37,0.0,organic,2018,SouthCentral +0,2018-03-25,1.45,121917.39,1929.39,18391.86,110.05,101486.09,85313.41,16172.68,0.0,organic,2018,Southeast +1,2018-03-18,1.43,119853.94,2557.74,20398.98,133.09,96764.13,82917.28,13846.85,0.0,organic,2018,Southeast +2,2018-03-11,1.37,113559.93,2019.57,19238.35,130.1,92171.91,89311.39,2860.52,0.0,organic,2018,Southeast +3,2018-03-04,1.55,122700.54,2856.11,23002.28,104.25,96737.9,80786.88,15951.02,0.0,organic,2018,Southeast +4,2018-02-25,1.46,115509.8,2796.03,20114.88,105.74,92493.15,85039.04,7454.11,0.0,organic,2018,Southeast +5,2018-02-18,1.5,103546.73,1973.3,19701.21,100.93,81771.29,70925.9,10845.39,0.0,organic,2018,Southeast +6,2018-02-11,1.46,103704.87,1583.44,17086.95,134.96,84899.52,73615.54,11283.98,0.0,organic,2018,Southeast +7,2018-02-04,1.44,96702.5,1589.03,16827.96,118.89,78166.62,72587.74,5578.88,0.0,organic,2018,Southeast +8,2018-01-28,1.55,103243.02,1886.12,21288.86,121.72,79946.32,63894.49,16051.83,0.0,organic,2018,Southeast +9,2018-01-21,1.48,105688.73,1379.6,16329.87,114.48,87864.78,71192.79,16671.99,0.0,organic,2018,Southeast +10,2018-01-14,1.42,106345.74,1053.73,16596.47,158.66,88536.88,78949.63,9587.25,0.0,organic,2018,Southeast +11,2018-01-07,1.4,103034.09,1359.47,16209.36,194.07,85271.19,78886.47,6384.72,0.0,organic,2018,Southeast +0,2018-03-25,1.59,5750.56,266.92,1707.42,2.21,3774.01,638.89,3105.71,29.41,organic,2018,Spokane +1,2018-03-18,1.6,5793.89,242.52,1753.53,0.0,3797.84,837.78,2947.85,12.21,organic,2018,Spokane +2,2018-03-11,1.72,4790.07,307.23,1845.22,0.0,2637.62,1042.98,1594.64,0.0,organic,2018,Spokane +3,2018-03-04,1.6,5305.01,461.71,2076.61,0.0,2766.69,755.97,2010.72,0.0,organic,2018,Spokane +4,2018-02-25,1.64,4720.69,269.06,1496.26,0.0,2955.37,747.5,2207.87,0.0,organic,2018,Spokane +5,2018-02-18,1.64,4747.13,271.98,1421.43,0.0,3053.72,1301.83,1751.89,0.0,organic,2018,Spokane +6,2018-02-11,1.66,4099.32,243.98,1330.99,0.0,2524.35,583.17,1941.18,0.0,organic,2018,Spokane +7,2018-02-04,1.7,4561.62,277.76,1722.99,0.0,2560.87,593.4,1948.18,19.29,organic,2018,Spokane +8,2018-01-28,1.7,4300.76,195.24,1169.26,0.0,2936.26,535.55,2400.71,0.0,organic,2018,Spokane +9,2018-01-21,1.76,4532.08,227.35,1340.5,0.0,2964.23,745.55,2216.3,2.38,organic,2018,Spokane +10,2018-01-14,1.85,4412.54,150.54,1948.36,0.0,2313.64,564.45,1749.19,0.0,organic,2018,Spokane +11,2018-01-07,1.74,3788.91,212.72,1413.85,0.0,2162.34,600.0,1562.34,0.0,organic,2018,Spokane +0,2018-03-25,1.82,8210.37,1426.49,2452.5,0.0,4331.38,3427.78,903.6,0.0,organic,2018,StLouis +1,2018-03-18,1.8,7105.79,1052.26,2821.98,7.09,3224.46,3207.79,16.67,0.0,organic,2018,StLouis +2,2018-03-11,1.71,8092.62,1127.67,2916.23,0.0,4048.72,4022.23,26.49,0.0,organic,2018,StLouis +3,2018-03-04,1.76,6858.14,982.72,2294.52,0.0,3580.9,3054.45,526.45,0.0,organic,2018,StLouis +4,2018-02-25,1.69,7970.31,1546.57,774.53,0.0,5649.21,3548.89,2100.32,0.0,organic,2018,StLouis +5,2018-02-18,1.76,7007.39,1253.21,756.65,3.53,4994.0,2970.0,2024.0,0.0,organic,2018,StLouis +6,2018-02-11,1.75,7732.34,1448.4,752.88,1.75,5529.31,3018.89,2510.42,0.0,organic,2018,StLouis +7,2018-02-04,1.69,6493.79,1328.38,666.47,0.0,4498.94,2696.67,1802.27,0.0,organic,2018,StLouis +8,2018-01-28,1.76,6297.35,1399.87,649.18,0.0,4248.3,2360.0,1888.3,0.0,organic,2018,StLouis +9,2018-01-21,1.77,6887.8,1559.68,823.81,0.0,4504.31,2868.51,1635.8,0.0,organic,2018,StLouis +10,2018-01-14,1.97,8138.94,2054.96,1185.62,0.0,4898.36,2004.4,2893.96,0.0,organic,2018,StLouis +11,2018-01-07,1.49,11148.12,842.57,815.93,0.0,9489.62,7538.34,1951.28,0.0,organic,2018,StLouis +0,2018-03-25,1.04,14503.47,78.95,148.37,0.0,14276.15,9992.31,4283.84,0.0,organic,2018,Syracuse +1,2018-03-18,1.19,6981.22,162.32,87.87,0.0,6731.03,2782.91,3948.12,0.0,organic,2018,Syracuse +2,2018-03-11,1.25,4685.01,168.95,61.01,0.0,4455.05,775.9,3679.15,0.0,organic,2018,Syracuse +3,2018-03-04,1.42,3061.66,395.14,89.31,0.0,2577.21,721.5,1855.71,0.0,organic,2018,Syracuse +4,2018-02-25,1.3,4162.96,154.36,133.07,0.0,3875.53,1645.95,2229.58,0.0,organic,2018,Syracuse +5,2018-02-18,1.3,5092.83,310.36,84.43,0.0,4698.04,2136.41,2561.63,0.0,organic,2018,Syracuse +6,2018-02-11,1.23,4815.48,69.81,56.64,0.0,4689.03,1972.88,2716.15,0.0,organic,2018,Syracuse +7,2018-02-04,1.22,6294.16,85.22,152.09,0.0,6056.85,2847.48,3209.37,0.0,organic,2018,Syracuse +8,2018-01-28,1.19,6393.58,30.09,128.49,0.0,6235.0,5670.94,564.06,0.0,organic,2018,Syracuse +9,2018-01-21,1.27,3159.8,92.12,73.17,0.0,2994.51,2117.69,876.82,0.0,organic,2018,Syracuse +10,2018-01-14,1.25,4343.09,116.19,64.16,0.0,4162.74,1986.09,2176.65,0.0,organic,2018,Syracuse +11,2018-01-07,1.25,4764.47,59.95,133.89,0.0,4570.63,3125.05,1445.58,0.0,organic,2018,Syracuse +0,2018-03-25,1.41,10028.49,138.15,773.22,0.0,9117.12,8208.82,908.3,0.0,organic,2018,Tampa +1,2018-03-18,1.5,10311.24,190.28,901.77,0.0,9219.19,7687.03,1532.16,0.0,organic,2018,Tampa +2,2018-03-11,1.31,8115.07,101.14,392.38,0.0,7621.55,7494.08,127.47,0.0,organic,2018,Tampa +3,2018-03-04,1.51,9851.33,223.68,839.86,0.0,8787.79,7327.76,1460.03,0.0,organic,2018,Tampa +4,2018-02-25,1.37,9144.2,206.39,542.89,0.0,8394.92,7895.92,499.0,0.0,organic,2018,Tampa +5,2018-02-18,1.5,8534.53,131.47,781.0,0.0,7622.06,6452.23,1169.83,0.0,organic,2018,Tampa +6,2018-02-11,1.34,8467.46,40.73,486.03,0.0,7940.7,7499.96,440.74,0.0,organic,2018,Tampa +7,2018-02-04,1.32,7363.56,89.59,440.31,0.0,6833.66,6827.78,5.88,0.0,organic,2018,Tampa +8,2018-01-28,1.61,7695.89,156.01,859.2,0.0,6680.68,5567.39,1113.29,0.0,organic,2018,Tampa +9,2018-01-21,1.52,6871.05,76.66,407.09,0.0,6387.3,6375.55,11.75,0.0,organic,2018,Tampa +10,2018-01-14,1.53,7238.04,106.98,496.61,0.0,6634.45,6634.45,0.0,0.0,organic,2018,Tampa +11,2018-01-07,1.51,7370.53,42.17,400.58,0.0,6927.78,6921.12,6.66,0.0,organic,2018,Tampa +0,2018-03-25,1.55,1559967.2,121007.94,342853.1,1070.24,1093861.09,902774.79,190941.84,144.46,organic,2018,TotalUS +1,2018-03-18,1.54,1675804.22,170801.85,444949.69,1045.38,1058651.5,837351.85,221129.46,170.19,organic,2018,TotalUS +2,2018-03-11,1.52,1664234.88,129169.72,408763.5,1401.87,1124621.5,944572.5,180049.0,0.0,organic,2018,TotalUS +3,2018-03-04,1.52,1634430.77,142345.03,390129.5,1225.97,1099871.68,831885.5,267818.31,167.87,organic,2018,TotalUS +4,2018-02-25,1.57,1459852.55,122912.97,340374.83,1063.32,994471.5,765056.82,229158.56,256.12,organic,2018,TotalUS +5,2018-02-18,1.52,1814929.97,246515.35,680037.45,1905.46,886241.96,783017.98,103184.01,39.97,organic,2018,TotalUS +6,2018-02-11,1.56,1317000.47,98465.26,270798.27,1839.8,945638.02,768242.42,177144.0,251.6,organic,2018,TotalUS +7,2018-02-04,1.53,1384683.41,117922.52,287724.61,1703.52,977084.84,774695.74,201878.69,510.41,organic,2018,TotalUS +8,2018-01-28,1.61,1336979.09,118616.17,280080.34,1270.61,936859.49,796104.27,140652.84,102.38,organic,2018,TotalUS +9,2018-01-21,1.63,1283987.65,108705.28,259172.13,1490.02,914409.26,710654.4,203526.59,228.27,organic,2018,TotalUS +10,2018-01-14,1.59,1476651.08,145680.62,323669.83,1580.01,1005593.78,858772.69,146808.97,12.12,organic,2018,TotalUS +11,2018-01-07,1.51,1517332.7,129541.43,296490.29,1289.07,1089861.24,915452.78,174381.57,26.89,organic,2018,TotalUS +0,2018-03-25,1.6,271723.08,26996.28,77861.39,117.56,166747.85,87108.0,79495.39,144.46,organic,2018,West +1,2018-03-18,1.73,210067.47,33437.98,47165.54,110.4,129353.55,73163.12,56020.24,170.19,organic,2018,West +2,2018-03-11,1.63,264691.87,27566.25,60383.57,276.42,176465.63,107174.93,69290.7,0.0,organic,2018,West +3,2018-03-04,1.46,347373.17,25990.6,71213.19,79.01,250090.37,85835.17,164087.33,167.87,organic,2018,West +4,2018-02-25,1.49,301985.61,34200.18,49139.34,85.58,218560.51,99989.62,118314.77,256.12,organic,2018,West +5,2018-02-18,1.64,224798.6,30149.0,38800.64,123.13,155725.83,120428.13,35257.73,39.97,organic,2018,West +6,2018-02-11,1.47,275248.53,24732.55,61713.53,243.0,188559.45,88497.05,99810.8,251.6,organic,2018,West +7,2018-02-04,1.41,283378.47,22474.66,55360.49,133.41,205409.91,70232.59,134666.91,510.41,organic,2018,West +8,2018-01-28,1.8,185974.53,22918.4,33051.14,93.52,129911.47,77822.23,51986.86,102.38,organic,2018,West +9,2018-01-21,1.83,189317.99,27049.44,33561.32,439.47,128267.76,76091.99,51947.5,228.27,organic,2018,West +10,2018-01-14,1.82,207999.67,33869.12,47435.14,433.52,126261.89,89115.78,37133.99,12.12,organic,2018,West +11,2018-01-07,1.48,297190.6,34734.97,62967.74,157.77,199330.12,103761.55,95544.39,24.18,organic,2018,West +0,2018-03-25,1.62,15303.4,2325.3,2171.66,0.0,10806.44,10569.8,236.64,0.0,organic,2018,WestTexNewMexico +1,2018-03-18,1.56,15896.38,2055.35,1499.55,0.0,12341.48,12114.81,226.67,0.0,organic,2018,WestTexNewMexico +2,2018-03-11,1.56,22128.42,2162.67,3194.25,8.93,16762.57,16510.32,252.25,0.0,organic,2018,WestTexNewMexico +3,2018-03-04,1.54,17393.3,1832.24,1905.57,0.0,13655.49,13401.93,253.56,0.0,organic,2018,WestTexNewMexico +4,2018-02-25,1.57,18421.24,1974.26,2482.65,0.0,13964.33,13698.27,266.06,0.0,organic,2018,WestTexNewMexico +5,2018-02-18,1.56,17597.12,1892.05,1928.36,0.0,13776.71,13553.53,223.18,0.0,organic,2018,WestTexNewMexico +6,2018-02-11,1.57,15986.17,1924.28,1368.32,0.0,12693.57,12437.35,256.22,0.0,organic,2018,WestTexNewMexico +7,2018-02-04,1.63,17074.83,2046.96,1529.2,0.0,13498.67,13066.82,431.85,0.0,organic,2018,WestTexNewMexico +8,2018-01-28,1.71,13888.04,1191.7,3431.5,0.0,9264.84,8940.04,324.8,0.0,organic,2018,WestTexNewMexico +9,2018-01-21,1.87,13766.76,1191.92,2452.79,727.94,9394.11,9351.8,42.31,0.0,organic,2018,WestTexNewMexico +10,2018-01-14,1.93,16205.22,1527.63,2981.04,727.01,10969.54,10919.54,50.0,0.0,organic,2018,WestTexNewMexico +11,2018-01-07,1.62,17489.58,2894.77,2356.13,224.53,12014.15,11988.14,26.01,0.0,organic,2018,WestTexNewMexico diff --git a/testing-modules/groovy-spock/README.md b/testing-modules/groovy-spock/README.md index e61c56d470..14c4b145f9 100644 --- a/testing-modules/groovy-spock/README.md +++ b/testing-modules/groovy-spock/README.md @@ -3,3 +3,4 @@ - [Introduction to Testing with Spock and Groovy](http://www.baeldung.com/groovy-spock) - [Difference Between Stub, Mock, and Spy in the Spock Framework](https://www.baeldung.com/spock-stub-mock-spy) - [Guide to Spock Extensions](https://www.baeldung.com/spock-extensions) +- [Improving Test Coverage and Readability With Spock’s Data Pipes and Tables](https://www.baeldung.com/java-spock-improve-test-coverage-data-feeds-tables) diff --git a/testing-modules/groovy-spock/pom.xml b/testing-modules/groovy-spock/pom.xml index 7920713810..3e0ad45612 100644 --- a/testing-modules/groovy-spock/pom.xml +++ b/testing-modules/groovy-spock/pom.xml @@ -69,6 +69,7 @@ src/test/groovy **/*Specification.groovy + **/*Spec.groovy **/*Test.groovy diff --git a/testing-modules/groovy-spock/src/main/java/com/baeldung/spock/data/DataPipesSubject.java b/testing-modules/groovy-spock/src/main/java/com/baeldung/spock/data/DataPipesSubject.java new file mode 100644 index 0000000000..9d689a8347 --- /dev/null +++ b/testing-modules/groovy-spock/src/main/java/com/baeldung/spock/data/DataPipesSubject.java @@ -0,0 +1,13 @@ +package com.baeldung.spock.data; +public class DataPipesSubject { + long addWithATwist(final long first, final long second) { + if (first == 42 || second == 42) { + return 42; + } + return first + second; + } + + String addExclamation(final String first) { + return first + '!'; + } +} diff --git a/testing-modules/groovy-spock/src/test/groovy/com/baeldung/spock/data/DataPipesUnitTest.groovy b/testing-modules/groovy-spock/src/test/groovy/com/baeldung/spock/data/DataPipesUnitTest.groovy new file mode 100644 index 0000000000..1a1e3c0873 --- /dev/null +++ b/testing-modules/groovy-spock/src/test/groovy/com/baeldung/spock/data/DataPipesUnitTest.groovy @@ -0,0 +1,265 @@ +package com.baeldung.spock.data + +import spock.lang.Shared +import spock.lang.Specification +import spock.lang.Subject +import spock.lang.Title + +@Title("Test various ways of using data pipes") +class DataPipesUnitTest extends Specification { + + @Subject + def dataPipesSubject = new DataPipesSubject() + + def "given two numbers when we add them then our result is the sum of the inputs"() { + given: "some inputs" + def first = 1 + def second = 2 + + and: "an expected expectedResult" + def expectedResult = 3 + + when: "we add them together" + def result = dataPipesSubject.addWithATwist(first, second) + + then: "we get our expected answer" + result == expectedResult + } + + + def "given a where clause with our inputs when we add them then our result is the sum of the inputs"() { + when: "we add our inputs together" + def result = dataPipesSubject.addWithATwist(first, second) + + then: "we get our expected answer" + result == expectedResult + + where: "we have various inputs" + first = 1 + second = 2 + expectedResult = 3 + } + + + def "given an expect block to simplify our test when we add our inputs then our result is the sum of the two numbers"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + first = 1 + second = 2 + expectedResult = 3 + } + + + def "given some declared method parameters when we add our inputs then those types are used"(int first, int second, int expectedResult) { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + first = 1 + second = 2 + expectedResult = 3 + } + + + def "given data pipes when we add our inputs then our inputs are supplied from the data pipes"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + first << [1] + second << [2] + expectedResult << [3] + } + + + def "given two numbers from a combined data pipe, #first and #second, when we add our inputs then the result is matches the value from our expectedResult data pipe: #expectedResult"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + [first, second] << [ + [1, 2], + [2, 2], + [3, 5] + ] + + and: "an expected expectedResult" + expectedResult << [3, 4, 8] + } + + + def "given two numbers from a combined data pipe, #first and #second, when we add our inputs then our test runs for each set of numbers"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + [first, second] << [ + [1, 2], + [2, 2], + [3, 5] + ] + + and: "an expected expectedResult" + expectedResult = first + second + } + + + def "given multiple scenarios in our data pipes when we add our inputs then our test runs for each set of numbers"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + first << [1, 2, 3] + second << [2, 2, 5] + expectedResult << [3, 4, 8] + } + + + def "given a combined data feed when we add our numbers then our test runs for each set of numbers, #first and #second"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + [first, second, expectedResult] << [ + [1, 2, 3], + [2, 2, 4], + [3, 5, 8] + ] + } + + + def "given a map with our data when we add our inputs from a map then our test runs for each set of numbers, #first and #second"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs in the form of a map" + [first, second, expectedResult] << [ + [ + first : 1, + second : 2, + expectedResult: 3 + ], + [ + first : 2, + second : 2, + expectedResult: 4 + ] + ] + } + + + def "given a method to supply our data when we add our inputs then our test runs for each set of numbers, #first and #second"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs in the form of a map" + [first, second, expectedResult] << dataFeed() + } + + def dataFeed() { + [ + [ + first : 1, + second : 2, + expectedResult: 3 + ], + [ + first : 2, + second : 2, + expectedResult: 4 + ] + ] + } + + + def "given a table to supply our data when we add our inputs then our test runs for each set of numbers, #first and #second"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + first | second || expectedResult + 1 | 2 || 3 + 2 | 2 || 4 + 3 | 5 || 8 + } + + + def "given a semi-colon as table separator when we add our inputs then our test runs for each set of numbers, #first and #second"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + first; second; expectedResult + 1; 2; 3 + 2; 2; 4 + 3; 5; 8 + // Since IDE Code formatting doesn't understand Spock's use of ';' separator + // and inserts an extra space between ';;' it breaks the table syntax, + // so, to avoid this formatting issue we've just used a single ';' separator between inputs and outputs + // instead of our preferred double ';;' + } + + + def "given a larger table split into two tables when we add our inputs then our test runs for each set of numbers, #first and #second\"() {"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + first | second + 1 | 2 + 2 | 2 + 3 | 5 + __ + expectedResult | _ + 3 | _ + 4 | _ + 8 | _ + } + + + def "given some additional scenarios when we add our inputs then our code coverage increases"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + first | second || expectedResult + 1 | 2 || 3 + 2 | 2 || 4 + 3 | 5 || 8 + 42 | 10 || 42 + 1 | 42 || 42 + } + + static def STATIC_VARIABLE = 'When we have a very long string we can use a static variable' + @Shared + def SHARED_VARIABLE = 'When we have a very long string we can annotate our variable with @Shared' + + def "given long strings when our tables our too big then we can use shared or static variables to shorten the table"() { + expect: "our addition to get the right result" + dataPipesSubject.addExclamation(longString) == expectedResult + + where: "we have various inputs" + longString || expectedResult + 'When we have a very long string we can use a static or @Shared variable to make our tables easier to read' || 'When we have a very long string we can use a static or @Shared variable to make our tables easier to read!' + STATIC_VARIABLE || "$STATIC_VARIABLE!" + SHARED_VARIABLE || "$SHARED_VARIABLE!" + } + + + def "given a #scenario case when we add our inputs, #first and #second, then we get our expected result: #expectedResult"() { + expect: "our addition to get the right result" + dataPipesSubject.addWithATwist(first, second) == expectedResult + + where: "we have various inputs" + scenario | first | second || expectedResult + "simple" | 1 | 2 || 3 + "double 2" | 2 | 2 || 4 + "double 2 referenced" | 2 | first || first + second + "three plus eight" | 3 | 5 || 8 + "first special" | 42 | 10 || 42 + "second special" | 1 | 42 || 42 + } + +} diff --git a/testing-modules/jmeter/pom.xml b/testing-modules/jmeter/pom.xml index 67a21f6c86..868023e762 100644 --- a/testing-modules/jmeter/pom.xml +++ b/testing-modules/jmeter/pom.xml @@ -10,9 +10,9 @@ com.baeldung - parent-boot-2 + parent-boot-3 0.0.1-SNAPSHOT - ../../parent-boot-2 + ../../parent-boot-3 @@ -156,14 +156,11 @@ - - - 3.7.0 - + com.baeldung.dashboard.DashboardApplication 3.7.0 diff --git a/testing-modules/jmeter/src/main/java/com/baeldung/configuration/WebSecurityConfiguration.java b/testing-modules/jmeter/src/main/java/com/baeldung/configuration/WebSecurityConfiguration.java index 033281e07f..1893389fae 100644 --- a/testing-modules/jmeter/src/main/java/com/baeldung/configuration/WebSecurityConfiguration.java +++ b/testing-modules/jmeter/src/main/java/com/baeldung/configuration/WebSecurityConfiguration.java @@ -1,5 +1,7 @@ package com.baeldung.configuration; +import static org.springframework.security.config.Customizer.withDefaults; + import java.util.HashSet; import java.util.Set; @@ -12,6 +14,7 @@ import org.springframework.security.crypto.factory.PasswordEncoderFactories; import org.springframework.security.crypto.password.PasswordEncoder; import org.springframework.security.provisioning.InMemoryUserDetailsManager; import org.springframework.security.web.SecurityFilterChain; +import org.springframework.security.web.util.matcher.AntPathRequestMatcher; @Configuration public class WebSecurityConfiguration { @@ -30,15 +33,17 @@ public class WebSecurityConfiguration { } @Bean - public SecurityFilterChain securityFilter(HttpSecurity http) throws Exception { - + public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception { http - .authorizeRequests() - .antMatchers("/secured/**").authenticated() - .anyRequest().permitAll() - .and() - .httpBasic(); + .authorizeHttpRequests(authorizeRequests -> + authorizeRequests + .requestMatchers(new AntPathRequestMatcher("/secured/**")) + .authenticated() + .anyRequest().permitAll() + ) + .httpBasic(withDefaults()); return http.build(); + } } diff --git a/testing-modules/jmeter/src/main/java/com/baeldung/domain/Student.java b/testing-modules/jmeter/src/main/java/com/baeldung/domain/Student.java index 0f6150fc48..942a43b215 100644 --- a/testing-modules/jmeter/src/main/java/com/baeldung/domain/Student.java +++ b/testing-modules/jmeter/src/main/java/com/baeldung/domain/Student.java @@ -1,6 +1,6 @@ package com.baeldung.domain; -import javax.validation.constraints.NotNull; +import jakarta.validation.constraints.NotNull; import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.mapping.Document; diff --git a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/CalculatorUnitTest.java b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/CalculatorUnitTest.java index c563b01603..4b7bd54083 100644 --- a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/CalculatorUnitTest.java +++ b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/CalculatorUnitTest.java @@ -4,10 +4,10 @@ import org.junit.Test; import static org.junit.jupiter.api.Assertions.assertThrows; -public class CalculatorUnitTest { +class CalculatorUnitTest { @Test - public void whenDividerIsZero_thenDivideByZeroExceptionIsThrown() { + void whenDividerIsZero_thenDivideByZeroExceptionIsThrown() { Calculator calculator = new Calculator(); assertThrows(DivideByZeroException.class, diff --git a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/CustomNameUnitTest.java b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/CustomNameUnitTest.java index 9cf03ad3de..25200aa19f 100644 --- a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/CustomNameUnitTest.java +++ b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/CustomNameUnitTest.java @@ -6,7 +6,7 @@ import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; -public class CustomNameUnitTest { +class CustomNameUnitTest { @ParameterizedTest @ValueSource(strings = { "Hello", "World" }) diff --git a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/OrderedUnitTest.java b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/OrderedUnitTest.java new file mode 100644 index 0000000000..7dd37d80ee --- /dev/null +++ b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/OrderedUnitTest.java @@ -0,0 +1,25 @@ +package com.baeldung.junit5vstestng; + +import static org.junit.Assert.assertTrue; + +import org.junit.jupiter.api.MethodOrderer; +import org.junit.jupiter.api.Order; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.TestMethodOrder; + +@TestMethodOrder(MethodOrderer.OrderAnnotation.class) +class OrderedUnitTest { + + @Test + @Order(2) + void a_givenString_whenChangedtoInt_thenTrue() { + assertTrue(Integer.valueOf("10") instanceof Integer); + } + + @Test + @Order(1) + void b_givenInt_whenChangedtoString_thenTrue() { + assertTrue(String.valueOf(10) instanceof String); + } + +} diff --git a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/ParameterizedUnitTest.java b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/ParameterizedUnitTest.java index b5560650c4..2815550d66 100644 --- a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/ParameterizedUnitTest.java +++ b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/ParameterizedUnitTest.java @@ -12,7 +12,7 @@ import org.junit.jupiter.params.provider.EnumSource; import org.junit.jupiter.params.provider.MethodSource; import org.junit.jupiter.params.provider.ValueSource; -public class ParameterizedUnitTest { +class ParameterizedUnitTest { @ParameterizedTest @ValueSource(strings = { "Hello", "World" }) diff --git a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SelectClassesSuiteUnitTest.java b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SelectClassesSuiteUnitTest.java index f307a75274..9c6e995742 100644 --- a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SelectClassesSuiteUnitTest.java +++ b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SelectClassesSuiteUnitTest.java @@ -5,6 +5,6 @@ import org.junit.platform.suite.api.Suite; @Suite @SelectClasses({Class1UnitTest.class, Class2UnitTest.class}) -public class SelectClassesSuiteUnitTest { +class SelectClassesSuiteUnitTest { } diff --git a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SelectPackagesSuiteUnitTest.java b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SelectPackagesSuiteUnitTest.java index 088fc00853..acd96e612b 100644 --- a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SelectPackagesSuiteUnitTest.java +++ b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SelectPackagesSuiteUnitTest.java @@ -4,7 +4,7 @@ import org.junit.platform.suite.api.SelectPackages; import org.junit.platform.suite.api.Suite; @Suite -@SelectPackages({ "com.baeldung.java.suite.junit4", "com.baeldung.java.suite.junit5" }) -public class SelectPackagesSuiteUnitTest { +@SelectPackages({ "com.baeldung.junit4", "com.baeldung.junit5" }) +class SelectPackagesSuiteUnitTest { } diff --git a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SortedUnitTest.java b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SortedUnitTest.java new file mode 100644 index 0000000000..52312a2627 --- /dev/null +++ b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SortedUnitTest.java @@ -0,0 +1,22 @@ +package com.baeldung.junit5vstestng; + +import static org.junit.Assert.assertTrue; + +import org.junit.jupiter.api.MethodOrderer; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.TestMethodOrder; + +@TestMethodOrder(MethodOrderer.MethodName.class) +class SortedUnitTest { + + @Test + void a_givenString_whenChangedtoInt_thenTrue() { + assertTrue(Integer.valueOf("10") instanceof Integer); + } + + @Test + void b_givenInt_whenChangedtoString_thenTrue() { + assertTrue(String.valueOf(10) instanceof String); + } + +} diff --git a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SummationServiceUnitTest.java b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SummationServiceUnitTest.java index a8c02e9968..4e0c71a2d0 100644 --- a/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SummationServiceUnitTest.java +++ b/testing-modules/junit5-migration/src/test/java/com/baeldung/junit5vstestng/SummationServiceUnitTest.java @@ -9,43 +9,44 @@ import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; -public class SummationServiceUnitTest { +class SummationServiceUnitTest { private static List numbers; @BeforeAll - public static void initialize() { + static void initialize() { numbers = new ArrayList<>(); } - + @AfterAll - public static void tearDown() { + static void tearDown() { numbers = null; } - + @BeforeEach - public void runBeforeEachTest() { + void runBeforeEachTest() { numbers.add(1); numbers.add(2); numbers.add(3); } - + @AfterEach - public void runAfterEachTest() { + void runAfterEachTest() { numbers.clear(); } - + @Test - public void givenNumbers_sumEquals_thenCorrect() { + void givenNumbers_sumEquals_thenCorrect() { int sum = numbers.stream() .reduce(0, Integer::sum); Assert.assertEquals(6, sum); } - @Ignore + @Disabled @Test - public void givenEmptyList_sumEqualsZero_thenCorrect() { + void givenEmptyList_sumEqualsZero_thenCorrect() { int sum = numbers.stream() .reduce(0, Integer::sum); Assert.assertEquals(6, sum); diff --git a/testing-modules/mockito-2/pom.xml b/testing-modules/mockito-2/pom.xml index 100c9d7015..9e9d208266 100644 --- a/testing-modules/mockito-2/pom.xml +++ b/testing-modules/mockito-2/pom.xml @@ -18,10 +18,17 @@ ${mockito-inline.version} test + + org.mockito + mockito-junit-jupiter + ${mockito.version} + test + 4.8.1 + 5.9.0 \ No newline at end of file diff --git a/testing-modules/mockito-2/src/test/java/com/baeldung/injection/ConstructorInjectionUnitTest.java b/testing-modules/mockito-2/src/test/java/com/baeldung/injection/ConstructorInjectionUnitTest.java new file mode 100644 index 0000000000..c94cbb4c02 --- /dev/null +++ b/testing-modules/mockito-2/src/test/java/com/baeldung/injection/ConstructorInjectionUnitTest.java @@ -0,0 +1,36 @@ +package com.baeldung.injection; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +import java.util.function.Function; + +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.ArgumentCaptor; +import org.mockito.Captor; +import org.mockito.Mock; +import org.mockito.junit.jupiter.MockitoExtension; + +@ExtendWith(MockitoExtension.class) +class ConstructorInjectionUnitTest { + + Function function; + + ArgumentCaptor captor; + + public ConstructorInjectionUnitTest(@Mock Function function, @Captor ArgumentCaptor captor) { + this.function = function; + this.captor = captor; + } + + @Test + void whenInjectedViaArgumentParameters_thenSetupCorrectly() { + when(function.apply("bael")).thenReturn("dung"); + assertEquals("dung", function.apply("bael")); + verify(function).apply(captor.capture()); + assertEquals("bael", captor.getValue()); + } + +} diff --git a/testing-modules/mockito-2/src/test/java/com/baeldung/injection/MethodParameterInjectionUnitTest.java b/testing-modules/mockito-2/src/test/java/com/baeldung/injection/MethodParameterInjectionUnitTest.java new file mode 100644 index 0000000000..27634a86ab --- /dev/null +++ b/testing-modules/mockito-2/src/test/java/com/baeldung/injection/MethodParameterInjectionUnitTest.java @@ -0,0 +1,51 @@ +package com.baeldung.injection; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +import java.util.function.Function; + +import org.junit.jupiter.api.RepeatedTest; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; +import org.mockito.ArgumentCaptor; +import org.mockito.Captor; +import org.mockito.Mock; +import org.mockito.junit.jupiter.MockitoExtension; + +@ExtendWith(MockitoExtension.class) +class MethodParameterInjectionUnitTest { + + @Test + void whenMockInjectedViaArgumentParameters_thenSetupCorrectly(@Mock Function mockFunction) { + when(mockFunction.apply("bael")).thenReturn("dung"); + assertEquals("dung", mockFunction.apply("bael")); + } + + @Test + void whenArgumentCaptorInjectedViaArgumentParameters_thenSetupCorrectly(@Mock Function mockFunction, @Captor ArgumentCaptor captor) { + mockFunction.apply("baeldung"); + verify(mockFunction).apply(captor.capture()); + assertEquals("baeldung", captor.getValue()); + } + + @RepeatedTest(2) + void whenInjectedInRepeatedTest_thenSetupCorrectly(@Mock Function mockFunction, @Captor ArgumentCaptor captor) { + mockFunction.apply("baeldung"); + verify(mockFunction).apply(captor.capture()); + assertEquals("baeldung", captor.getValue()); + } + + @ParameterizedTest + @ValueSource(strings = {"", "bael", "dung"}) + void whenInjectedInParameterizedTest_thenSetupCorrectly(String input, @Mock Function mockFunction, @Captor ArgumentCaptor captor) { + when(mockFunction.apply(input)).thenReturn("baeldung"); + assertEquals("baeldung", mockFunction.apply(input)); + verify(mockFunction).apply(captor.capture()); + assertEquals(input, captor.getValue()); + } + +} diff --git a/testing-modules/selenide/pom.xml b/testing-modules/selenide/pom.xml index 99538d2d14..791dead47d 100644 --- a/testing-modules/selenide/pom.xml +++ b/testing-modules/selenide/pom.xml @@ -17,7 +17,7 @@ com.codeborne selenide - 6.15.0 + ${selenide.version} test @@ -54,6 +54,7 @@ + 6.15.0 6.10 4.8.3 5.3.2 diff --git a/timefold-solver/pom.xml b/timefold-solver/pom.xml index a16afb9e54..8ef97c337a 100644 --- a/timefold-solver/pom.xml +++ b/timefold-solver/pom.xml @@ -36,8 +36,6 @@ - 17 - 17 1.4.0 diff --git a/web-modules/jakarta-ee/README.md b/web-modules/jakarta-ee/README.md index 54f372f736..bf4bef93c4 100644 --- a/web-modules/jakarta-ee/README.md +++ b/web-modules/jakarta-ee/README.md @@ -1,3 +1,4 @@ ### Relevant Articles: - [Introduction to Jakarta EE MVC / Eclipse Krazo](https://www.baeldung.com/java-ee-mvc-eclipse-krazo) +- [Get Specific Part From SOAP Message in Java](https://www.baeldung.com/java-soap-msg-specific-part) diff --git a/web-modules/javax-servlets-2/README.md b/web-modules/javax-servlets-2/README.md index 179264f90a..17420e8fd8 100644 --- a/web-modules/javax-servlets-2/README.md +++ b/web-modules/javax-servlets-2/README.md @@ -6,3 +6,4 @@ This module contains articles about Servlets. - [Check if a User Is Logged-in With Servlets and JSP](https://www.baeldung.com/servlets-jsp-check-user-login) - [How to Mock HttpServletRequest](https://www.baeldung.com/java-httpservletrequest-mock) - [Set a Parameter in an HttpServletRequest in Java](https://www.baeldung.com/java-servlet-request-set-parameter) +- [Get Client Information From HTTP Request in Java](https://www.baeldung.com/java-http-request-client-info) diff --git a/web-modules/pom.xml b/web-modules/pom.xml index 6119316a62..a23bc9a7a6 100644 --- a/web-modules/pom.xml +++ b/web-modules/pom.xml @@ -35,7 +35,6 @@ ratpack resteasy - restx rome spark-java struts-2 diff --git a/web-modules/restx/pom.xml b/web-modules/restx/pom.xml index 58877ca72c..f0b4bace48 100644 --- a/web-modules/restx/pom.xml +++ b/web-modules/restx/pom.xml @@ -9,9 +9,10 @@ war + parent-modules com.baeldung - web-modules 1.0.0-SNAPSHOT + ../../